Skip to content

Commit 5dc45b8

Browse files
committed
water
2 parents 22d7ad2 + 1e8a69e commit 5dc45b8

File tree

6 files changed

+50
-28
lines changed

6 files changed

+50
-28
lines changed

.github/workflows/lint.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: MDC Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
- feature/**
9+
paths:
10+
- '**.js'
11+
- '**.ts'
12+
- '**.css'
13+
- '**.scss'
14+
- '**.html'
15+
16+
jobs:
17+
build:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v1
21+
- uses: actions/setup-node@v1
22+
with:
23+
node-version: 10
24+
- run: npm i
25+
- run: npm run lint

.travis.yml

-6
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ after_script:
3232
matrix:
3333
include:
3434

35-
- node_js: 10
36-
env:
37-
- TEST_SUITE=lint
38-
script:
39-
- if has_testable_files; then npm run lint && npm run test:feature-targeting; else log_untestable_files; fi
40-
4135
- node_js: 10
4236
env:
4337
- TEST_SUITE=build

packages/mdc-ripple/README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,7 @@ In order to fully style the ripple effect for different states (hover/focus/pres
6767
@include mdc-ripple-surface;
6868
@include mdc-ripple-radius-bounded;
6969
@include mdc-states-base-color(black);
70-
@include mdc-states-hover-opacity(.1);
71-
@include mdc-states-focus-opacity(.3);
72-
@include mdc-states-press-opacity(.4);
70+
@include mdc-states-opacities((hover: .1, focus: .3, press: .4));
7371
}
7472
```
7573

@@ -109,12 +107,12 @@ These mixins can also be used to emit activated or selected styles, by applying
109107
Mixin | Description
110108
--- | ---
111109
`mdc-states-base-color($color)` | Mandatory. Sets up base state styles using the provided color
112-
`mdc-states-hover-opacity($opacity)` | Mandatory. Adds styles for hover state using the provided opacity
113-
`mdc-states-focus-opacity($opacity, $has-nested-focusable-element)` | Mandatory. Adds styles for focus state using the provided opacity
114-
`mdc-states-press-opacity($opacity)` | Mandatory. Adds styles for press state using the provided opacity
110+
`mdc-states-opacities($opacity-map, $has-nested-focusable-element)` | Sets the opacity of the ripple in any of the `hover`, `focus`, or `press` states. The `opacity-map` can specify one or more of these states as keys. States not specified in the map resort to default opacity values.
115111

116112
> _NOTE_: `$has-nested-focusable-element` defaults to `false` but should be set to `true` if the component contains a focusable element (e.g. an input) inside the root element.
117113
114+
> _DEPRECATED_: The individual mixins `mdc-states-hover-opacity($opacity)`, `mdc-states-focus-opacity($opacity, $has-nested-focusable-element)`, and `mdc-states-press-opacity($opacity)` are deprecated in favor of the unified `mdc-states-opacities($opacity-map, $has-nested-focusable-element)` mixin above.
115+
118116
#### Sass Functions
119117

120118
Function | Description

packages/mdc-ripple/_mixins.scss

+20
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,26 @@
210210
}
211211
}
212212

213+
///
214+
/// Customizes ripple opacities in `hover`, `focus`, or `press` states
215+
/// @param {map} $opacity-map - map specifying custom opacity of zero or more states
216+
/// @param {bool} $has-nested-focusable-element - whether the component contains a focusable element in the root
217+
///
218+
@mixin mdc-states-opacities($opacity-map: (), $has-nested-focusable-element: false, $query: mdc-feature-all()) {
219+
// Ensure sufficient specificity to override base state opacities
220+
@if map-has-key($opacity-map, hover) {
221+
@include mdc-states-hover-opacity(map-get($opacity-map, hover), $query: $query);
222+
}
223+
224+
@if map-has-key($opacity-map, focus) {
225+
@include mdc-states-focus-opacity(map-get($opacity-map, focus), $has-nested-focusable-element, $query: $query);
226+
}
227+
228+
@if map-has-key($opacity-map, press) {
229+
@include mdc-states-press-opacity(map-get($opacity-map, press), $query: $query);
230+
}
231+
}
232+
213233
@mixin mdc-states-hover-opacity(
214234
$opacity, $query: mdc-feature-all(), $ripple-target: "&") {
215235
$feat-color: mdc-feature-create-target($query, color);

packages/mdc-switch/_mixins.scss

+1-11
Original file line numberDiff line numberDiff line change
@@ -252,17 +252,7 @@
252252
@mixin mdc-switch-ripple-states-opacity($opacity-map: (), $query: mdc-feature-all()) {
253253
// Ensure sufficient specificity to override base state opacities
254254
&.mdc-switch .mdc-switch__thumb-underlay {
255-
@if map-has-key($opacity-map, "hover") {
256-
@include mdc-states-hover-opacity(map-get($opacity-map, "hover"), $query);
257-
}
258-
259-
@if map-has-key($opacity-map, "focus") {
260-
@include mdc-states-focus-opacity(map-get($opacity-map, "focus"), $query);
261-
}
262-
263-
@if map-has-key($opacity-map, "press") {
264-
@include mdc-states-press-opacity(map-get($opacity-map, "press"), $query);
265-
}
255+
@include mdc-states-opacities($opacity-map, $query: $query);
266256
}
267257
}
268258

scripts/travis-env-vars.sh

-5
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,6 @@ if [[ "$TEST_SUITE" == 'unit' ]]; then
8181
check_for_testable_files '^karma\.conf\.js$' '^packages/.+\.(js|ts)$' '^test/unit/.+\.(js|ts)$'
8282
fi
8383

84-
if [[ "$TEST_SUITE" == 'lint' ]]; then
85-
# Only run linter if JS/Sass files changed
86-
check_for_testable_files '\.(js|ts|css|scss)$'
87-
fi
88-
8984
if [[ "$TEST_SUITE" == 'build' ]]; then
9085
# Only run build if package JS/Sass files changed
9186
check_for_testable_files '^packages/.+\.(js|ts|css|scss)$'

0 commit comments

Comments
 (0)