@work-rjkashyap/unified-ui 0.2.2 → 0.2.4
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.
- package/CHANGELOG.md +123 -6
- package/bin/cli.mjs +0 -0
- package/dist/{chunk-TESKVASH.cjs → chunk-5TP7J7T4.cjs} +57 -57
- package/dist/{chunk-2AERX4AM.mjs → chunk-AQJ7H5SF.mjs} +1153 -302
- package/dist/{chunk-YFH5JPAA.mjs → chunk-EQWESXRH.mjs} +1 -1
- package/dist/{chunk-PRQIFQRK.cjs → chunk-EUHL6H76.cjs} +1170 -298
- package/dist/{chunk-TVCJRD3S.mjs → chunk-IVZAB7BV.mjs} +9 -9
- package/dist/{chunk-QEFOXYBO.cjs → chunk-ZBGR7MUW.cjs} +9 -9
- package/dist/components.cjs +373 -289
- package/dist/components.d.cts +780 -37
- package/dist/components.d.ts +780 -37
- package/dist/components.mjs +1 -1
- package/dist/index.cjs +423 -339
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +3 -3
- package/dist/theme.cjs +32 -32
- package/dist/theme.d.cts +2 -2
- package/dist/theme.d.ts +2 -2
- package/dist/theme.mjs +2 -2
- package/dist/tokens.cjs +19 -19
- package/dist/tokens.d.cts +1 -1
- package/dist/tokens.d.ts +1 -1
- package/dist/tokens.mjs +1 -1
- package/dist/{z-index-G0PBTHL2.d.cts → z-index-Dd8IllRx.d.cts} +9 -9
- package/dist/{z-index-G0PBTHL2.d.ts → z-index-Dd8IllRx.d.ts} +9 -9
- package/package.json +2 -2
- package/styles.css +17 -14
package/styles.css
CHANGED
|
@@ -193,14 +193,17 @@
|
|
|
193
193
|
--shadow-focus-ring: 0 0 0 2px oklch(0.708 0 0 / 40%);
|
|
194
194
|
|
|
195
195
|
/* --- Z-Index --- */
|
|
196
|
+
/* Values use wide spacing so popover-type layers (dropdown, popover,
|
|
197
|
+
tooltip) always render above modal/overlay layers — even when opened
|
|
198
|
+
from inside a dialog, sheet, or drawer. */
|
|
196
199
|
--z-base: 0;
|
|
197
|
-
--z-
|
|
198
|
-
--z-
|
|
199
|
-
--z-
|
|
200
|
-
--z-
|
|
201
|
-
--z-popover:
|
|
202
|
-
--z-toast:
|
|
203
|
-
--z-tooltip:
|
|
200
|
+
--z-sticky: 10;
|
|
201
|
+
--z-overlay: 40;
|
|
202
|
+
--z-modal: 50;
|
|
203
|
+
--z-dropdown: 60;
|
|
204
|
+
--z-popover: 70;
|
|
205
|
+
--z-toast: 80;
|
|
206
|
+
--z-tooltip: 90;
|
|
204
207
|
--z-max: 9999;
|
|
205
208
|
|
|
206
209
|
/* --- Motion Durations --- */
|
|
@@ -522,13 +525,13 @@
|
|
|
522
525
|
|
|
523
526
|
/* --- Z-Index --- */
|
|
524
527
|
--z-index-base: 0;
|
|
525
|
-
--z-index-
|
|
526
|
-
--z-index-
|
|
527
|
-
--z-index-
|
|
528
|
-
--z-index-
|
|
529
|
-
--z-index-popover:
|
|
530
|
-
--z-index-toast:
|
|
531
|
-
--z-index-tooltip:
|
|
528
|
+
--z-index-sticky: 10;
|
|
529
|
+
--z-index-overlay: 40;
|
|
530
|
+
--z-index-modal: 50;
|
|
531
|
+
--z-index-dropdown: 60;
|
|
532
|
+
--z-index-popover: 70;
|
|
533
|
+
--z-index-toast: 80;
|
|
534
|
+
--z-index-tooltip: 90;
|
|
532
535
|
--z-index-max: 9999;
|
|
533
536
|
|
|
534
537
|
/* --- Transition Durations --- */
|