@syscore/ui-library 1.1.9 → 1.1.11

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 (141) hide show
  1. package/client/App.tsx +47 -0
  2. package/client/components/icons/ConceptIcons.tsx +667 -0
  3. package/client/components/icons/NavAccount.tsx +31 -0
  4. package/client/components/icons/NavBullet.tsx +19 -0
  5. package/client/components/icons/NavLogo.tsx +36 -0
  6. package/client/components/icons/ProviderBadges.tsx +295 -0
  7. package/client/components/icons/ProviderSeals.tsx +319 -0
  8. package/client/components/icons/SealHealthSafetyRating.tsx +65 -0
  9. package/client/components/icons/SealIwbiMember.tsx +86 -0
  10. package/client/components/icons/SealWell.tsx +84 -0
  11. package/client/components/icons/SealWellCertification.tsx +138 -0
  12. package/client/components/icons/SealWellCommunity.tsx +122 -0
  13. package/client/components/icons/SealWellResidence.tsx +122 -0
  14. package/client/components/icons/SealWorksWithWell.tsx +140 -0
  15. package/client/components/icons/UtilityAccordion.tsx +21 -0
  16. package/client/components/icons/UtilityChevronDown.tsx +36 -0
  17. package/client/components/icons/UtilityClassification.tsx +45 -0
  18. package/client/components/icons/UtilityClose.tsx +41 -0
  19. package/client/components/icons/UtilityDrag.tsx +69 -0
  20. package/client/components/icons/UtilityEdit.tsx +42 -0
  21. package/client/components/icons/UtilityOptions.tsx +45 -0
  22. package/client/components/icons/UtilityPortfolio.tsx +87 -0
  23. package/client/components/icons/UtilityReset.tsx +41 -0
  24. package/client/components/icons/UtilityScoring.tsx +43 -0
  25. package/client/components/icons/UtilitySearch.tsx +38 -0
  26. package/client/components/icons/UtilitySort.tsx +52 -0
  27. package/client/components/icons/UtilityText.tsx +34 -0
  28. package/client/components/icons/WaterMarkWWWProducts.tsx +26 -0
  29. package/client/components/icons/WaterMarkWellProjects.tsx +30 -0
  30. package/client/components/icons/WatermarkMemberOrg.tsx +59 -0
  31. package/client/components/icons/WellSeal.tsx +79 -0
  32. package/client/components/icons/X.tsx +35 -0
  33. package/client/components/ui/Navigation.tsx +958 -0
  34. package/client/components/ui/SearchField.tsx +157 -0
  35. package/client/components/ui/StrategyTable.tsx +303 -0
  36. package/client/components/ui/Tag.tsx +127 -0
  37. package/client/components/ui/alert-dialog.tsx +1 -1
  38. package/client/components/ui/button.tsx +67 -127
  39. package/client/components/ui/calendar.tsx +2 -2
  40. package/client/components/ui/card.tsx +10 -13
  41. package/client/components/ui/carousel.tsx +56 -46
  42. package/client/components/ui/command.tsx +27 -16
  43. package/client/components/ui/dialog.tsx +113 -92
  44. package/client/components/ui/label.tsx +5 -3
  45. package/client/components/ui/menubar.tsx +1 -1
  46. package/client/components/ui/pagination.tsx +3 -3
  47. package/client/components/ui/sidebar.tsx +1 -1
  48. package/client/components/ui/tabs.tsx +350 -5
  49. package/client/components/ui/toggle.tsx +71 -19
  50. package/client/components/ui/tooltip.tsx +69 -18
  51. package/client/global.css +635 -58
  52. package/client/hooks/UseTabs.tsx +35 -0
  53. package/client/hooks/use-mobile.tsx +21 -0
  54. package/client/hooks/use-segmented-control.ts +42 -0
  55. package/client/hooks/use-toast.ts +188 -0
  56. package/client/pages/Index.tsx +88 -0
  57. package/client/pages/NotFound.tsx +29 -0
  58. package/client/ui/Accordion/Accordion.stories.tsx +74 -0
  59. package/client/ui/Alert/Alert.stories.tsx +82 -0
  60. package/client/ui/AlertDialog/AlertDialog.stories.tsx +106 -0
  61. package/client/ui/AspectRatio.stories.tsx +78 -0
  62. package/client/ui/Avatar/Avatar.stories.tsx +94 -0
  63. package/client/ui/Badge/Badge.stories.tsx +60 -0
  64. package/client/ui/Breadcrumb/Breadcrumb.stories.tsx +97 -0
  65. package/client/ui/Button.stories.tsx +429 -0
  66. package/client/ui/Calendar/Calendar.stories.tsx +99 -0
  67. package/client/ui/Card.stories.tsx +84 -0
  68. package/client/ui/Carousel/Carousel.stories.tsx +85 -0
  69. package/client/ui/Chart/Chart.stories.tsx +58 -0
  70. package/client/ui/Checkbox/Checkbox.stories.tsx +112 -0
  71. package/client/ui/Collapsible/Collapsible.stories.tsx +101 -0
  72. package/client/ui/Colors.stories.tsx +1041 -0
  73. package/client/ui/Command/Command.stories.tsx +97 -0
  74. package/client/ui/ContextMenu/ContextMenu.stories.tsx +74 -0
  75. package/client/ui/Dialog.stories.tsx +69 -0
  76. package/client/ui/Drawer/Drawer.stories.tsx +87 -0
  77. package/client/ui/DropdownMenu/DropdownMenu.stories.tsx +139 -0
  78. package/client/ui/Form/Form.stories.tsx +74 -0
  79. package/client/ui/HoverCard/HoverCard.stories.tsx +94 -0
  80. package/client/ui/Icons.stories.tsx +328 -0
  81. package/client/ui/Input/Input.stories.tsx +69 -0
  82. package/client/ui/InputOTP/InputOTP.stories.tsx +85 -0
  83. package/client/ui/Label.stories.tsx +66 -0
  84. package/client/ui/Menubar/Menubar.stories.tsx +88 -0
  85. package/client/ui/Navigation.stories.tsx +57 -0
  86. package/client/ui/NavigationMenu/NavigationMenu.stories.tsx +106 -0
  87. package/client/ui/Pagination/Pagination.stories.tsx +115 -0
  88. package/client/ui/Popover/Popover.stories.tsx +99 -0
  89. package/client/ui/Progress/Progress.stories.tsx +63 -0
  90. package/client/ui/RadioGroup/RadioGroup.stories.tsx +110 -0
  91. package/client/ui/Resizable/Resizable.stories.tsx +88 -0
  92. package/client/ui/ScrollArea/ScrollArea.stories.tsx +64 -0
  93. package/client/ui/SearchField.stories.tsx +63 -0
  94. package/client/ui/Select/Select.stories.tsx +111 -0
  95. package/client/ui/Separator/Separator.stories.tsx +67 -0
  96. package/client/ui/Sheet/Sheet.stories.tsx +138 -0
  97. package/client/ui/Sidebar/Sidebar.stories.tsx +92 -0
  98. package/client/ui/Skeleton/Skeleton.stories.tsx +65 -0
  99. package/client/ui/Slider/Slider.stories.tsx +101 -0
  100. package/client/ui/Sonner/Sonner.stories.tsx +48 -0
  101. package/client/ui/StrategyTable.stories.tsx +138 -0
  102. package/client/ui/Switch/Switch.stories.tsx +96 -0
  103. package/client/ui/Table/Table.stories.tsx +135 -0
  104. package/client/ui/Tabs.stories.tsx +33 -0
  105. package/client/ui/Tag.stories.tsx +190 -0
  106. package/client/ui/Textarea/Textarea.stories.tsx +56 -0
  107. package/client/ui/Toast/Toast.stories.tsx +76 -0
  108. package/client/ui/Toaster/Toaster.stories.tsx +52 -0
  109. package/client/ui/Toggle.stories.tsx +248 -0
  110. package/client/ui/ToggleGroup/ToggleGroup.stories.tsx +88 -0
  111. package/client/ui/Tooltip.stories.tsx +72 -0
  112. package/client/ui/Typography.stories.tsx +421 -0
  113. package/client/ui/WELLDashboard/WELLDashboard.stories.tsx +115 -0
  114. package/client/ui/WELLDashboard/index.tsx +221 -0
  115. package/client/vite-env.d.ts +1 -0
  116. package/dist/ui/fonts/FT-Made/FTMade-Regular.otf +0 -0
  117. package/dist/ui/fonts/FT-Made/FTMade-Regular.ttf +0 -0
  118. package/dist/ui/fonts/FT-Made/FTMade-Regular.woff +0 -0
  119. package/dist/ui/fonts/FT-Made/FTMade-Regular.woff2 +0 -0
  120. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-black.otf +0 -0
  121. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-blackitalic.otf +0 -0
  122. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-bold.otf +0 -0
  123. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-bolditalic.otf +0 -0
  124. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extrabold.otf +0 -0
  125. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extrabolditalic.otf +0 -0
  126. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extralight.otf +0 -0
  127. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-extralightitalic.otf +0 -0
  128. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-italic.otf +0 -0
  129. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-light.otf +0 -0
  130. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-lightitalic.otf +0 -0
  131. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-medium.otf +0 -0
  132. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-mediumitalic.otf +0 -0
  133. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-regular.otf +0 -0
  134. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-semibold.otf +0 -0
  135. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-semibolditalic.otf +0 -0
  136. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-thin.otf +0 -0
  137. package/dist/ui/fonts/Mazzard-M/mazzardsoftm-thinitalic.otf +0 -0
  138. package/dist/ui/index.cjs.js +1 -1
  139. package/dist/ui/index.d.ts +2 -1
  140. package/dist/ui/index.es.js +563 -329
  141. package/package.json +4 -2
package/client/App.tsx ADDED
@@ -0,0 +1,47 @@
1
+ import "./global.css";
2
+
3
+ import { Toaster } from "@/components/ui/toaster";
4
+ import { createRoot } from "react-dom/client";
5
+ import { Toaster as Sonner } from "@/components/ui/sonner";
6
+ import { TooltipProvider } from "@/components/ui/tooltip";
7
+ import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
8
+ import { BrowserRouter, Routes, Route, Link } from "react-router-dom";
9
+ import Index from "./pages/Index";
10
+ import NotFound from "./pages/NotFound";
11
+
12
+ const queryClient = new QueryClient();
13
+
14
+ const App = () => (
15
+ <QueryClientProvider client={queryClient}>
16
+ <TooltipProvider>
17
+ <Toaster />
18
+ <Sonner />
19
+ <BrowserRouter>
20
+ <div className="min-h-screen">
21
+ <header className="sticky top-0 z-50 border-b bg-background/80 backdrop-blur-sm">
22
+ <div className="mx-auto flex max-w-6xl items-center justify-between px-6 py-3">
23
+ <Link to="/" className="flex items-center gap-2">
24
+ <span className="inline-flex h-7 w-7 items-center justify-center rounded-md bg-linear-to-b from-violet-500 to-violet-600 text-white shadow-xs">
25
+ A
26
+ </span>
27
+ <span className="text-sm font-bold tracking-tight text-foreground">
28
+ Aurora UI
29
+ </span>
30
+ </Link>
31
+ </div>
32
+ </header>
33
+
34
+ <main>
35
+ <Routes>
36
+ <Route path="/" element={<Index />} />
37
+ {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
38
+ <Route path="*" element={<NotFound />} />
39
+ </Routes>
40
+ </main>
41
+ </div>
42
+ </BrowserRouter>
43
+ </TooltipProvider>
44
+ </QueryClientProvider>
45
+ );
46
+
47
+ createRoot(document.getElementById("root")!).render(<App />);