@exxatdesignux/ui 0.2.7 → 0.2.8

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 (54) hide show
  1. package/package.json +1 -1
  2. package/template/app/globals.css +1 -1
  3. package/template/components/ui/avatar.tsx +1 -1
  4. package/template/components/ui/badge.tsx +1 -1
  5. package/template/components/ui/banner.tsx +1 -1
  6. package/template/components/ui/breadcrumb.tsx +1 -1
  7. package/template/components/ui/button.tsx +1 -1
  8. package/template/components/ui/calendar.tsx +1 -1
  9. package/template/components/ui/card.tsx +1 -1
  10. package/template/components/ui/chart.tsx +1 -1
  11. package/template/components/ui/checkbox.tsx +1 -1
  12. package/template/components/ui/coach-mark.tsx +1 -1
  13. package/template/components/ui/collapsible.tsx +1 -1
  14. package/template/components/ui/command.tsx +1 -1
  15. package/template/components/ui/date-picker-field.tsx +1 -1
  16. package/template/components/ui/dialog.tsx +1 -1
  17. package/template/components/ui/drag-handle-grip.tsx +1 -1
  18. package/template/components/ui/drawer.tsx +1 -1
  19. package/template/components/ui/dropdown-menu.tsx +1 -1
  20. package/template/components/ui/field.tsx +1 -1
  21. package/template/components/ui/form.tsx +1 -1
  22. package/template/components/ui/input-group.tsx +1 -1
  23. package/template/components/ui/input-mask.tsx +1 -1
  24. package/template/components/ui/input.tsx +1 -1
  25. package/template/components/ui/kbd.tsx +1 -1
  26. package/template/components/ui/label.tsx +1 -1
  27. package/template/components/ui/payment-card-fields.tsx +1 -1
  28. package/template/components/ui/popover.tsx +1 -1
  29. package/template/components/ui/radio-group.tsx +1 -1
  30. package/template/components/ui/select.tsx +1 -1
  31. package/template/components/ui/selection-tile-grid.tsx +1 -1
  32. package/template/components/ui/separator.tsx +1 -1
  33. package/template/components/ui/sheet.tsx +1 -1
  34. package/template/components/ui/sidebar.tsx +1 -1
  35. package/template/components/ui/skeleton.tsx +1 -1
  36. package/template/components/ui/sonner.tsx +1 -1
  37. package/template/components/ui/status-badge.tsx +1 -1
  38. package/template/components/ui/table.tsx +1 -1
  39. package/template/components/ui/tabs.tsx +1 -1
  40. package/template/components/ui/textarea.tsx +1 -1
  41. package/template/components/ui/tip.tsx +1 -1
  42. package/template/components/ui/toggle-group.tsx +1 -1
  43. package/template/components/ui/toggle-switch.tsx +1 -1
  44. package/template/components/ui/toggle.tsx +1 -1
  45. package/template/components/ui/tooltip.tsx +1 -1
  46. package/template/components/ui/view-segmented-control.tsx +1 -1
  47. package/template/fontawesome-subset.manifest.json +2 -2
  48. package/template/hooks/use-app-theme.ts +1 -1
  49. package/template/hooks/use-coach-mark.ts +1 -1
  50. package/template/hooks/use-mobile.ts +1 -1
  51. package/template/hooks/use-mod-key-label.ts +1 -1
  52. package/template/lib/date-filter.ts +1 -1
  53. package/template/lib/utils.ts +1 -1
  54. package/template/scripts/fontawesome-subset-audit.mjs +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exxatdesignux/ui",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Exxat shared design system (components, hooks, tokens). Monorepo setup: clone repo then pnpm bootstrap at workspace root — see github.com/ExxatDesign/Exxat-DS-Workspace README.",
5
5
  "type": "module",
6
6
  "private": false,
@@ -13,7 +13,7 @@
13
13
  @import "shadcn/tailwind.css";
14
14
 
15
15
  /* Ensure Tailwind scans the shared UI package for utility classes */
16
- @source "../../../packages/ui/src";
16
+ @source "../node_modules/@exxatdesignux/ui/src";
17
17
 
18
18
  /* RTL layout direction support */
19
19
  @custom-variant dark (&:is(.dark *));
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/avatar"
1
+ export * from "@exxatdesignux/ui/components/avatar"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/badge"
1
+ export * from "@exxatdesignux/ui/components/badge"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/banner"
1
+ export * from "@exxatdesignux/ui/components/banner"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/breadcrumb"
1
+ export * from "@exxatdesignux/ui/components/breadcrumb"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/button"
1
+ export * from "@exxatdesignux/ui/components/button"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/calendar"
1
+ export * from "@exxatdesignux/ui/components/calendar"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/card"
1
+ export * from "@exxatdesignux/ui/components/card"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/chart"
1
+ export * from "@exxatdesignux/ui/components/chart"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/checkbox"
1
+ export * from "@exxatdesignux/ui/components/checkbox"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/coach-mark"
1
+ export * from "@exxatdesignux/ui/components/coach-mark"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/collapsible"
1
+ export * from "@exxatdesignux/ui/components/collapsible"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/command"
1
+ export * from "@exxatdesignux/ui/components/command"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/date-picker-field"
1
+ export * from "@exxatdesignux/ui/components/date-picker-field"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/dialog"
1
+ export * from "@exxatdesignux/ui/components/dialog"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/drag-handle-grip"
1
+ export * from "@exxatdesignux/ui/components/drag-handle-grip"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/drawer"
1
+ export * from "@exxatdesignux/ui/components/drawer"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/dropdown-menu"
1
+ export * from "@exxatdesignux/ui/components/dropdown-menu"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/field"
1
+ export * from "@exxatdesignux/ui/components/field"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/form"
1
+ export * from "@exxatdesignux/ui/components/form"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/input-group"
1
+ export * from "@exxatdesignux/ui/components/input-group"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/input-mask"
1
+ export * from "@exxatdesignux/ui/components/input-mask"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/input"
1
+ export * from "@exxatdesignux/ui/components/input"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/kbd"
1
+ export * from "@exxatdesignux/ui/components/kbd"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/label"
1
+ export * from "@exxatdesignux/ui/components/label"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/payment-card-fields"
1
+ export * from "@exxatdesignux/ui/components/payment-card-fields"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/popover"
1
+ export * from "@exxatdesignux/ui/components/popover"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/radio-group"
1
+ export * from "@exxatdesignux/ui/components/radio-group"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/select"
1
+ export * from "@exxatdesignux/ui/components/select"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/selection-tile-grid"
1
+ export * from "@exxatdesignux/ui/components/selection-tile-grid"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/separator"
1
+ export * from "@exxatdesignux/ui/components/separator"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/sheet"
1
+ export * from "@exxatdesignux/ui/components/sheet"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/sidebar"
1
+ export * from "@exxatdesignux/ui/components/sidebar"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/skeleton"
1
+ export * from "@exxatdesignux/ui/components/skeleton"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/sonner"
1
+ export * from "@exxatdesignux/ui/components/sonner"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/status-badge"
1
+ export * from "@exxatdesignux/ui/components/status-badge"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/table"
1
+ export * from "@exxatdesignux/ui/components/table"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/tabs"
1
+ export * from "@exxatdesignux/ui/components/tabs"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/textarea"
1
+ export * from "@exxatdesignux/ui/components/textarea"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/tip"
1
+ export * from "@exxatdesignux/ui/components/tip"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/toggle-group"
1
+ export * from "@exxatdesignux/ui/components/toggle-group"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/toggle-switch"
1
+ export * from "@exxatdesignux/ui/components/toggle-switch"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/toggle"
1
+ export * from "@exxatdesignux/ui/components/toggle"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/tooltip"
1
+ export * from "@exxatdesignux/ui/components/tooltip"
@@ -1 +1 @@
1
- export * from "../../../../packages/ui/src/components/ui/view-segmented-control"
1
+ export * from "@exxatdesignux/ui/components/view-segmented-control"
@@ -2,8 +2,8 @@
2
2
  "kitId": "d9bd5774e0",
3
3
  "generatedAt": "2026-04-23T07:50:58.982Z",
4
4
  "sourcePaths": [
5
- "apps/web/{app,components,lib,contexts,hooks}",
6
- "packages/ui/src"
5
+ "{app,components,lib,contexts,hooks}",
6
+ "node_modules/@exxatdesignux/ui/src"
7
7
  ],
8
8
  "stylesDetected": [
9
9
  "duotone",
@@ -1 +1 @@
1
- export * from "../../../packages/ui/src/hooks/use-app-theme"
1
+ export * from "@exxatdesignux/ui/hooks/use-app-theme"
@@ -1 +1 @@
1
- export * from "../../../packages/ui/src/hooks/use-coach-mark"
1
+ export * from "@exxatdesignux/ui/hooks/use-coach-mark"
@@ -1 +1 @@
1
- export * from "../../../packages/ui/src/hooks/use-mobile"
1
+ export * from "@exxatdesignux/ui/hooks/use-mobile"
@@ -1 +1 @@
1
- export * from "../../../packages/ui/src/hooks/use-mod-key-label"
1
+ export * from "@exxatdesignux/ui/hooks/use-mod-key-label"
@@ -5,4 +5,4 @@ export {
5
5
  formatYmdForDisplay,
6
6
  ymdToLocalDate,
7
7
  localDateToYmd,
8
- } from "../../../packages/ui/src/lib/date-filter"
8
+ } from "@exxatdesignux/ui/lib/date-filter"
@@ -1 +1 @@
1
- export { cn } from "../../../packages/ui/src/lib/utils"
1
+ export { cn } from "@exxatdesignux/ui/lib/utils"
@@ -16,8 +16,7 @@ import { fileURLToPath } from "node:url"
16
16
 
17
17
  const __dirname = path.dirname(fileURLToPath(import.meta.url))
18
18
  const WEB_ROOT = path.join(__dirname, "..")
19
- const REPO_ROOT = path.join(WEB_ROOT, "..", "..")
20
- const UI_SRC = path.join(REPO_ROOT, "packages", "ui", "src")
19
+ const UI_SRC = path.join(WEB_ROOT, "node_modules", "@exxatdesignux/ui", "src")
21
20
 
22
21
  const IGNORE_DIR = new Set([
23
22
  "node_modules",
@@ -164,7 +163,7 @@ function main() {
164
163
  const manifest = {
165
164
  kitId: "d9bd5774e0",
166
165
  generatedAt: new Date().toISOString(),
167
- sourcePaths: ["apps/web/{app,components,lib,contexts,hooks}", "packages/ui/src"],
166
+ sourcePaths: ["{app,components,lib,contexts,hooks}", "node_modules/@exxatdesignux/ui/src"],
168
167
  stylesDetected: sortedStyles,
169
168
  duotoneNote:
170
169
  "Icons used as fa-duotone fa-solid … require Duotone + Solid in Kit settings (e.g. star-christmas).",