@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
|
@@ -358,20 +358,20 @@ var shadowDark = {
|
|
|
358
358
|
var zIndex = {
|
|
359
359
|
/** Default document flow — no explicit stacking */
|
|
360
360
|
base: "0",
|
|
361
|
-
/** Dropdowns, select menus, autocomplete lists */
|
|
362
|
-
dropdown: "10",
|
|
363
361
|
/** Sticky headers, floating action bars, pinned columns */
|
|
364
|
-
sticky: "
|
|
362
|
+
sticky: "10",
|
|
365
363
|
/** Backdrop overlays behind modals and drawers */
|
|
366
|
-
overlay: "
|
|
364
|
+
overlay: "40",
|
|
367
365
|
/** Modals, dialogs, sheets, drawers */
|
|
368
|
-
modal: "
|
|
369
|
-
/**
|
|
370
|
-
|
|
366
|
+
modal: "50",
|
|
367
|
+
/** Dropdowns, select menus, context menus — renders above modals */
|
|
368
|
+
dropdown: "60",
|
|
369
|
+
/** Popovers, comboboxes, date pickers — renders above modals */
|
|
370
|
+
popover: "70",
|
|
371
371
|
/** Toast notifications — always visible above all content */
|
|
372
|
-
toast: "
|
|
372
|
+
toast: "80",
|
|
373
373
|
/** Tooltips — highest interactive z-layer */
|
|
374
|
-
tooltip: "
|
|
374
|
+
tooltip: "90",
|
|
375
375
|
/** Emergency escape hatch — use sparingly and document why */
|
|
376
376
|
max: "9999"
|
|
377
377
|
};
|
|
@@ -360,20 +360,20 @@ var shadowDark = {
|
|
|
360
360
|
var zIndex = {
|
|
361
361
|
/** Default document flow — no explicit stacking */
|
|
362
362
|
base: "0",
|
|
363
|
-
/** Dropdowns, select menus, autocomplete lists */
|
|
364
|
-
dropdown: "10",
|
|
365
363
|
/** Sticky headers, floating action bars, pinned columns */
|
|
366
|
-
sticky: "
|
|
364
|
+
sticky: "10",
|
|
367
365
|
/** Backdrop overlays behind modals and drawers */
|
|
368
|
-
overlay: "
|
|
366
|
+
overlay: "40",
|
|
369
367
|
/** Modals, dialogs, sheets, drawers */
|
|
370
|
-
modal: "
|
|
371
|
-
/**
|
|
372
|
-
|
|
368
|
+
modal: "50",
|
|
369
|
+
/** Dropdowns, select menus, context menus — renders above modals */
|
|
370
|
+
dropdown: "60",
|
|
371
|
+
/** Popovers, comboboxes, date pickers — renders above modals */
|
|
372
|
+
popover: "70",
|
|
373
373
|
/** Toast notifications — always visible above all content */
|
|
374
|
-
toast: "
|
|
374
|
+
toast: "80",
|
|
375
375
|
/** Tooltips — highest interactive z-layer */
|
|
376
|
-
tooltip: "
|
|
376
|
+
tooltip: "90",
|
|
377
377
|
/** Emergency escape hatch — use sparingly and document why */
|
|
378
378
|
max: "9999"
|
|
379
379
|
};
|