@broxus/react-uikit 0.1.0 → 0.1.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.
|
@@ -259,11 +259,6 @@
|
|
|
259
259
|
@if mixin-exists(hook-drawer-mask) {
|
|
260
260
|
@include hook-drawer-mask;
|
|
261
261
|
}
|
|
262
|
-
|
|
263
|
-
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
|
|
264
|
-
-webkit-backdrop-filter: blur(var(--drawer-mask-backdrop-filter));
|
|
265
|
-
backdrop-filter: var(--drawer-mask-backdrop-filter);
|
|
266
|
-
}
|
|
267
262
|
}
|
|
268
263
|
|
|
269
264
|
.uk-drawer-open .uk-drawer-mask {
|
|
@@ -286,7 +281,6 @@
|
|
|
286
281
|
--drawer-large-height: 768px;
|
|
287
282
|
--drawer-width: 360px;
|
|
288
283
|
--drawer-large-width: 768px;
|
|
289
|
-
--drawer-mask-backdrop-filter: #{$drawer-mask-backdrop-filter};
|
|
290
284
|
--drawer-mask-background: #{$drawer-mask-background};
|
|
291
285
|
--drawer-z-index: calc(var(--global-z-index) + 30);
|
|
292
286
|
--drawer-transition-duration: var(--transition-medium-fast-duration);
|
|
@@ -349,7 +349,6 @@
|
|
|
349
349
|
:root {
|
|
350
350
|
--modal-z-index: #{$global-z-index + 10};
|
|
351
351
|
--modal-mask-background: #{$modal-mask-background};
|
|
352
|
-
--modal-mask-backdrop-filter: #{$modal-mask-backdrop-filter};
|
|
353
352
|
--modal-padding-horizontal: #{$modal-padding-horizontal};
|
|
354
353
|
--modal-padding-horizontal-s: var(--global-gutter);
|
|
355
354
|
--modal-padding-horizontal-m: var(--global-medium-gutter);
|
|
@@ -673,7 +673,6 @@ $inverse-dotnav-item-active-background: rgba($inverse-global-color, 90%)
|
|
|
673
673
|
// ========================================================================
|
|
674
674
|
|
|
675
675
|
$drawer-content-background: $global-background !default;
|
|
676
|
-
$drawer-mask-backdrop-filter: blur(3px) !default;
|
|
677
676
|
$drawer-mask-background: rgb(0 0 0 / 30%) !default;
|
|
678
677
|
|
|
679
678
|
|
|
@@ -1206,7 +1205,6 @@ $inverse-marker-hover-color: $global-color !default;
|
|
|
1206
1205
|
|
|
1207
1206
|
$modal-z-index: $global-z-index + 10 !default;
|
|
1208
1207
|
$modal-mask-background: rgb(0 0 0 / 30%) !default;
|
|
1209
|
-
$modal-mask-backdrop-filter: blur(3px) !default;
|
|
1210
1208
|
$modal-padding-horizontal: 15px !default;
|
|
1211
1209
|
$modal-padding-horizontal-s: $global-gutter !default;
|
|
1212
1210
|
$modal-padding-horizontal-m: $global-medium-gutter !default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@broxus/react-uikit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Broxus React UIkit library",
|
|
5
5
|
"license": "GNU GPL v3.0",
|
|
6
6
|
"author": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"import": "./dist/esm/index.js",
|
|
19
19
|
"require": "./dist/cjs/index.js"
|
|
20
20
|
},
|
|
21
|
-
"./styles": "./
|
|
21
|
+
"./styles": "./dist/esm/styles",
|
|
22
22
|
"./package.json": "./package.json"
|
|
23
23
|
},
|
|
24
24
|
"files": [
|
|
@@ -38,16 +38,15 @@
|
|
|
38
38
|
"build:cjs": "tsc --project tsconfig.json --module CommonJS --outDir dist/cjs",
|
|
39
39
|
"build:esm": "tsc --project tsconfig.json --module ES2015 --outDir dist/esm",
|
|
40
40
|
"build:watch": "npx yarn build:esm -w --preserveWatchOutput",
|
|
41
|
-
"styles:cjs:copy": "copyfiles \"src/**/*.
|
|
42
|
-
"styles:esm:copy": "copyfiles \"src/**/*.
|
|
43
|
-
"styles:watch": "chokidar \"src/**/*.
|
|
41
|
+
"styles:cjs:copy": "copyfiles \"src/**/*.scss\" -u 1 dist/cjs",
|
|
42
|
+
"styles:esm:copy": "copyfiles \"src/**/*.scss\" -u 1 dist/esm",
|
|
43
|
+
"styles:watch": "chokidar \"src/**/*.scss\" -c \"npx yarn styles:esm:copy\"",
|
|
44
44
|
"dev": "npx yarn build:watch & npx yarn styles:watch",
|
|
45
45
|
"cleanup": "rimraf dist",
|
|
46
|
-
"
|
|
47
|
-
"postinstall": "npx yarn build"
|
|
46
|
+
"prepublish": "npx yarn cleanup & npx yarn build"
|
|
48
47
|
},
|
|
49
48
|
"dependencies": {
|
|
50
|
-
"@broxus/js-utils": "^1.0.
|
|
49
|
+
"@broxus/js-utils": "^1.0.2",
|
|
51
50
|
"classnames": "^2.3.0",
|
|
52
51
|
"rc-checkbox": "^2.3.2",
|
|
53
52
|
"rc-collapse": "^3.3.1",
|
|
@@ -56,7 +55,7 @@
|
|
|
56
55
|
"rc-dropdown": "^4.0.1",
|
|
57
56
|
"rc-input-number": "^7.3.6",
|
|
58
57
|
"rc-motion": "^2.6.2",
|
|
59
|
-
"rc-overflow": "^1.2.
|
|
58
|
+
"rc-overflow": "^1.2.8",
|
|
60
59
|
"rc-select": "^14.1.9",
|
|
61
60
|
"rc-tabs": "^11.16.1",
|
|
62
61
|
"rc-textarea": "^0.3.7",
|
|
@@ -65,13 +64,7 @@
|
|
|
65
64
|
"shallowequal": "^1.1.0",
|
|
66
65
|
"uikit": "^3.15.1"
|
|
67
66
|
},
|
|
68
|
-
"devDependencies": {
|
|
69
|
-
"chokidar-cli": "^3.0.0",
|
|
70
|
-
"copyfiles": "^2.4.1",
|
|
71
|
-
"rimraf": "^3.0.2"
|
|
72
|
-
},
|
|
73
67
|
"peerDependencies": {
|
|
74
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
75
|
-
"typescript": ">= 4.7.0"
|
|
68
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
76
69
|
}
|
|
77
70
|
}
|