@nqlib/nqui 0.3.1 → 0.3.2
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/dist/App.d.ts.map +1 -1
- package/dist/components/AppLayout.d.ts.map +1 -1
- package/dist/components/app-sidebar.d.ts.map +1 -1
- package/dist/components/custom/command-palette.d.ts +19 -0
- package/dist/components/custom/command-palette.d.ts.map +1 -0
- package/dist/components/custom/enhanced-badge.d.ts +1 -1
- package/dist/components/custom/enhanced-button.d.ts +1 -1
- package/dist/components/custom/enhanced-checkbox.d.ts +1 -1
- package/dist/components/custom/enhanced-checkbox.d.ts.map +1 -1
- package/dist/components/custom/enhanced-scroll-area.d.ts +11 -13
- package/dist/components/custom/enhanced-scroll-area.d.ts.map +1 -1
- package/dist/components/custom/nqui-logo.d.ts +1 -0
- package/dist/components/custom/nqui-logo.d.ts.map +1 -1
- package/dist/components/custom/segmented-control.d.ts +48 -0
- package/dist/components/custom/segmented-control.d.ts.map +1 -0
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/button.d.ts +1 -1
- package/dist/components/ui/input-group.d.ts +1 -1
- package/dist/components/ui/sheet.d.ts +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/lib/keyboard.d.ts +1 -0
- package/dist/lib/keyboard.d.ts.map +1 -1
- package/dist/nqui.cjs.js +85 -85
- package/dist/nqui.es.js +13096 -12924
- package/dist/pages/ChartShowcase.d.ts.map +1 -1
- package/dist/pages/ComponentShowcase.d.ts.map +1 -1
- package/dist/pages/DataTableShowcase.d.ts +2 -0
- package/dist/pages/DataTableShowcase.d.ts.map +1 -0
- package/dist/styles.css +5 -5
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChartShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/ChartShowcase.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChartShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/ChartShowcase.tsx"],"names":[],"mappings":"AAwHA,MAAM,CAAC,OAAO,UAAU,aAAa,4CAorBpC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/ComponentShowcase.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ComponentShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/ComponentShowcase.tsx"],"names":[],"mappings":"AAscA,MAAM,CAAC,OAAO,UAAU,SAAS,4CAiiFhC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DataTableShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/DataTableShowcase.tsx"],"names":[],"mappings":"AAuBA,MAAM,CAAC,OAAO,UAAU,iBAAiB,4CA0IxC"}
|
package/dist/styles.css
CHANGED
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
* Used for: tooltips, hover cards
|
|
751
751
|
* Highest interactive layer to ensure tooltips appear above all UI
|
|
752
752
|
*/
|
|
753
|
-
--z-tooltip:
|
|
753
|
+
--z-tooltip: 9998;
|
|
754
754
|
|
|
755
755
|
/* Debug layer - debug tools (development only)
|
|
756
756
|
* Used for: debug panels, debug overlays, development tools
|
|
@@ -861,8 +861,8 @@
|
|
|
861
861
|
/* Sidebar */
|
|
862
862
|
--sidebar: oklch(0.985 0 0);
|
|
863
863
|
--sidebar-foreground: oklch(0.145 0 0);
|
|
864
|
-
--sidebar-primary:
|
|
865
|
-
--sidebar-primary-foreground:
|
|
864
|
+
--sidebar-primary: var(--primary);
|
|
865
|
+
--sidebar-primary-foreground: var(--primary-foreground);
|
|
866
866
|
--sidebar-accent: oklch(0.96 0 0);
|
|
867
867
|
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
868
868
|
--sidebar-border: oklch(0.922 0 0);
|
|
@@ -969,8 +969,8 @@
|
|
|
969
969
|
/* Sidebar for dark mode */
|
|
970
970
|
--sidebar: oklch(0.205 0 0);
|
|
971
971
|
--sidebar-foreground: oklch(0.985 0 0);
|
|
972
|
-
--sidebar-primary:
|
|
973
|
-
--sidebar-primary-foreground:
|
|
972
|
+
--sidebar-primary: var(--primary);
|
|
973
|
+
--sidebar-primary-foreground: var(--primary-foreground);
|
|
974
974
|
--sidebar-accent: oklch(0.269 0 0);
|
|
975
975
|
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
976
976
|
--sidebar-border: oklch(1 0 0 / 10%);
|