@byline/ui 1.11.2 → 1.12.0
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.
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
4
|
:is(.backdrop-BgKon2, .byline-modal-backdrop) {
|
|
5
|
+
z-index: var(--z-index-modal);
|
|
5
6
|
background-color: #f5f5f559;
|
|
6
7
|
transition: opacity .2s;
|
|
7
8
|
position: fixed;
|
|
@@ -29,6 +30,7 @@
|
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
:is(.modal-wrapper-wF5Mv1, .byline-modal-wrapper) {
|
|
33
|
+
z-index: var(--z-index-modal);
|
|
32
34
|
flex-direction: column;
|
|
33
35
|
justify-content: flex-end;
|
|
34
36
|
align-items: center;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.12.0",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.9.0"
|
|
9
9
|
},
|
|
@@ -65,9 +65,9 @@
|
|
|
65
65
|
"react-diff-viewer-continued": "^4.2.2",
|
|
66
66
|
"zod": "^4.4.3",
|
|
67
67
|
"zod-form-data": "^3.0.1",
|
|
68
|
-
"@byline/admin": "1.
|
|
69
|
-
"@byline/client": "1.
|
|
70
|
-
"@byline/core": "1.
|
|
68
|
+
"@byline/admin": "1.12.0",
|
|
69
|
+
"@byline/client": "1.12.0",
|
|
70
|
+
"@byline/core": "1.12.0"
|
|
71
71
|
},
|
|
72
72
|
"peerDependencies": {
|
|
73
73
|
"react": "^19.0.0",
|
|
@@ -105,11 +105,11 @@
|
|
|
105
105
|
"dev": "run-p dev:*",
|
|
106
106
|
"dev:code": "rslib build --watch",
|
|
107
107
|
"build": "run-s build:*",
|
|
108
|
-
"build:clean": "
|
|
108
|
+
"build:clean": "node scripts/clean.js dist build",
|
|
109
109
|
"build:code": "rslib build",
|
|
110
110
|
"build:css": "lightningcss --bundle ./src/styles/reset.css ./src/styles/styles.css ./src/styles/typography.css --output-dir ./dist/styles",
|
|
111
111
|
"typecheck": "tsc --noEmit",
|
|
112
|
-
"clean": "
|
|
112
|
+
"clean": "node scripts/clean.js node_modules dist build types .turbo",
|
|
113
113
|
"lint": "biome check --write --unsafe --diagnostic-level=error",
|
|
114
114
|
"skip:test": "vitest",
|
|
115
115
|
"sync:uikit": "./scripts/sync-from-uikit.sh"
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
right: 0;
|
|
20
20
|
bottom: 0;
|
|
21
21
|
background-color: rgba(245, 245, 245, 0.35);
|
|
22
|
+
z-index: var(--z-index-modal);
|
|
22
23
|
transition: opacity 200ms ease;
|
|
23
24
|
}
|
|
24
25
|
|
|
@@ -47,6 +48,7 @@
|
|
|
47
48
|
left: 0;
|
|
48
49
|
right: 0;
|
|
49
50
|
bottom: 0;
|
|
51
|
+
z-index: var(--z-index-modal);
|
|
50
52
|
transition: opacity 200ms ease;
|
|
51
53
|
}
|
|
52
54
|
|