@preply/ds-web-core 0.4.3-beta.35 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -105,11 +105,21 @@
|
|
|
105
105
|
filter: brightness(@value);
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
.focus-outline(@namespace, @key) {
|
|
108
|
+
.focus-outline-color(@namespace, @key) {
|
|
109
109
|
@token: ~'--@{namespace}--@{key}-focus--outline-color';
|
|
110
110
|
outline-color: var(@token);
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
+
.focus-outline-width(@namespace, @key) {
|
|
114
|
+
@token: ~'--@{namespace}--@{key}-focus--outline-width';
|
|
115
|
+
outline-width: var(@token);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.focus-outline-offset(@namespace, @key) {
|
|
119
|
+
@token: ~'--@{namespace}--@{key}-focus--outline-offset';
|
|
120
|
+
outline-offset: var(@token);
|
|
121
|
+
}
|
|
122
|
+
|
|
113
123
|
.disabled-filter(@namespace, @key) {
|
|
114
124
|
// prettier-ignore
|
|
115
125
|
@brightness: .var(~'--@{namespace}--@{key}-disabled--brightness')[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@preply/ds-web-core",
|
|
3
|
-
"version": "0.4.3
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -19,12 +19,12 @@
|
|
|
19
19
|
"dev": "run build && run build:rollup -w"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@preply/ds-core": "^0.4.3
|
|
22
|
+
"@preply/ds-core": "^0.4.3"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@preply/ds-core": "0.
|
|
25
|
+
"@preply/ds-core": "^0.4.3",
|
|
26
26
|
"react": "^16.8.3",
|
|
27
27
|
"react-dom": "^16.8.3"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "3d711c032e68608984afb326d3f7d026846453f8"
|
|
30
30
|
}
|