@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.
Files changed (31) hide show
  1. package/dist/App.d.ts.map +1 -1
  2. package/dist/components/AppLayout.d.ts.map +1 -1
  3. package/dist/components/app-sidebar.d.ts.map +1 -1
  4. package/dist/components/custom/command-palette.d.ts +19 -0
  5. package/dist/components/custom/command-palette.d.ts.map +1 -0
  6. package/dist/components/custom/enhanced-badge.d.ts +1 -1
  7. package/dist/components/custom/enhanced-button.d.ts +1 -1
  8. package/dist/components/custom/enhanced-checkbox.d.ts +1 -1
  9. package/dist/components/custom/enhanced-checkbox.d.ts.map +1 -1
  10. package/dist/components/custom/enhanced-scroll-area.d.ts +11 -13
  11. package/dist/components/custom/enhanced-scroll-area.d.ts.map +1 -1
  12. package/dist/components/custom/nqui-logo.d.ts +1 -0
  13. package/dist/components/custom/nqui-logo.d.ts.map +1 -1
  14. package/dist/components/custom/segmented-control.d.ts +48 -0
  15. package/dist/components/custom/segmented-control.d.ts.map +1 -0
  16. package/dist/components/ui/badge.d.ts +1 -1
  17. package/dist/components/ui/button.d.ts +1 -1
  18. package/dist/components/ui/input-group.d.ts +1 -1
  19. package/dist/components/ui/sheet.d.ts +1 -1
  20. package/dist/index.d.ts +5 -1
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/lib/keyboard.d.ts +1 -0
  23. package/dist/lib/keyboard.d.ts.map +1 -1
  24. package/dist/nqui.cjs.js +85 -85
  25. package/dist/nqui.es.js +13096 -12924
  26. package/dist/pages/ChartShowcase.d.ts.map +1 -1
  27. package/dist/pages/ComponentShowcase.d.ts.map +1 -1
  28. package/dist/pages/DataTableShowcase.d.ts +2 -0
  29. package/dist/pages/DataTableShowcase.d.ts.map +1 -0
  30. package/dist/styles.css +5 -5
  31. package/package.json +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"ChartShowcase.d.ts","sourceRoot":"","sources":["../../src/pages/ChartShowcase.tsx"],"names":[],"mappings":"AAiIA,MAAM,CAAC,OAAO,UAAU,aAAa,4CAuxBpC"}
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":"AA6PA,MAAM,CAAC,OAAO,UAAU,SAAS,4CAk4EhC"}
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,2 @@
1
+ export default function DataTableShowcase(): import("react/jsx-runtime").JSX.Element;
2
+ //# sourceMappingURL=DataTableShowcase.d.ts.map
@@ -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: 70;
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: oklch(0.546 0.245 262.881);
865
- --sidebar-primary-foreground: oklch(0.97 0.014 254.604);
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: oklch(0.623 0.214 259.815);
973
- --sidebar-primary-foreground: oklch(0.97 0.014 254.604);
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%);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nqlib/nqui",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "A React component library with enhanced UI components and developer tools",
5
5
  "type": "module",
6
6
  "main": "./dist/nqui.cjs.js",