@xenide-io/the-old-ui-theme 0.2.6 → 0.2.9

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 (110) hide show
  1. package/dist/chunk-SHF57J7U.mjs +2910 -0
  2. package/dist/index-CmS6hcUk.d.mts +753 -0
  3. package/dist/index-CmS6hcUk.d.ts +753 -0
  4. package/dist/index.d.mts +5 -755
  5. package/dist/index.d.ts +5 -755
  6. package/dist/index.js +43 -23
  7. package/dist/index.mjs +252 -2846
  8. package/dist/ui.d.mts +3 -0
  9. package/dist/ui.d.ts +3 -0
  10. package/dist/ui.js +2946 -0
  11. package/dist/ui.mjs +139 -0
  12. package/package.json +11 -3
  13. package/src/components/charts/index.ts +8 -0
  14. package/src/components/charts/ph-insight-charts.tsx +162 -0
  15. package/src/components/dashboard/DashboardFiltersBar.tsx +19 -0
  16. package/src/components/dashboard/DashboardGrid.tsx +23 -0
  17. package/src/components/dashboard/DashboardInsightPlaceholder.tsx +37 -0
  18. package/src/components/dashboard/DashboardKpiCard.tsx +25 -0
  19. package/src/components/dashboard/DashboardToolbar.tsx +23 -0
  20. package/src/components/dashboard/DashboardWell.tsx +10 -0
  21. package/src/components/dashboard/InsightMiniCard.tsx +26 -0
  22. package/src/components/dashboard/InsightShell.tsx +37 -0
  23. package/src/components/dashboard/InsightShellHeader.tsx +22 -0
  24. package/src/components/dashboard/MiniTrendBars.tsx +51 -0
  25. package/src/components/dashboard/index.ts +31 -0
  26. package/src/components/dashboard/types.ts +9 -0
  27. package/src/components/icons/IconBase.tsx +39 -0
  28. package/src/components/icons/createIconBase.tsx +27 -0
  29. package/src/components/icons/icons.tsx +367 -0
  30. package/src/components/icons/index.ts +3 -0
  31. package/src/components/sections/AccordionShowcase.tsx +45 -0
  32. package/src/components/sections/AlertShowcase.tsx +39 -0
  33. package/src/components/sections/AvatarShowcase.tsx +80 -0
  34. package/src/components/sections/BadgeShowcase.tsx +65 -0
  35. package/src/components/sections/ButtonShowcase.tsx +312 -0
  36. package/src/components/sections/CalendarShowcase.tsx +35 -0
  37. package/src/components/sections/CardShowcase.tsx +143 -0
  38. package/src/components/sections/ChartShowcase.tsx +190 -0
  39. package/src/components/sections/CodeMockupShowcase.tsx +56 -0
  40. package/src/components/sections/ColorPalette.tsx +117 -0
  41. package/src/components/sections/CommandPaletteShowcase.tsx +48 -0
  42. package/src/components/sections/CountdownShowcase.tsx +43 -0
  43. package/src/components/sections/DashboardShowcase.tsx +191 -0
  44. package/src/components/sections/DiffShowcase.tsx +70 -0
  45. package/src/components/sections/DrawerShowcase.tsx +97 -0
  46. package/src/components/sections/DropdownShowcase.tsx +100 -0
  47. package/src/components/sections/EmptyStateShowcase.tsx +50 -0
  48. package/src/components/sections/FilterChipsShowcase.tsx +50 -0
  49. package/src/components/sections/FormShowcase.tsx +126 -0
  50. package/src/components/sections/HoverCardShowcase.tsx +50 -0
  51. package/src/components/sections/IconShowcase.tsx +247 -0
  52. package/src/components/sections/IndicatorShowcase.tsx +52 -0
  53. package/src/components/sections/KbdShowcase.tsx +31 -0
  54. package/src/components/sections/ModalShowcase.tsx +210 -0
  55. package/src/components/sections/NavigationShowcase.tsx +199 -0
  56. package/src/components/sections/ProgressShowcase.tsx +85 -0
  57. package/src/components/sections/SegmentedControlShowcase.tsx +49 -0
  58. package/src/components/sections/SetupThemeShowcase.tsx +262 -0
  59. package/src/components/sections/StackShowcase.tsx +33 -0
  60. package/src/components/sections/StatShowcase.tsx +129 -0
  61. package/src/components/sections/StepperShowcase.tsx +37 -0
  62. package/src/components/sections/SwapShowcase.tsx +91 -0
  63. package/src/components/sections/TabShowcase.tsx +84 -0
  64. package/src/components/sections/TableShowcase.tsx +140 -0
  65. package/src/components/sections/TimelineShowcase.tsx +83 -0
  66. package/src/components/sections/ToastShowcase.tsx +108 -0
  67. package/src/components/sections/TooltipShowcase.tsx +44 -0
  68. package/src/components/sections/UtilityShowcase.tsx +81 -0
  69. package/src/components/ui/Accordion.tsx +77 -0
  70. package/src/components/ui/Alert.tsx +68 -0
  71. package/src/components/ui/Avatar.tsx +97 -0
  72. package/src/components/ui/Badge.tsx +55 -0
  73. package/src/components/ui/Button.tsx +110 -0
  74. package/src/components/ui/ButtonChrome.tsx +20 -0
  75. package/src/components/ui/Calendar.tsx +116 -0
  76. package/src/components/ui/Card.tsx +60 -0
  77. package/src/components/ui/ChatBubble.tsx +71 -0
  78. package/src/components/ui/CodeBlock.tsx +48 -0
  79. package/src/components/ui/CollapsibleSection.tsx +49 -0
  80. package/src/components/ui/CommandPalette.tsx +137 -0
  81. package/src/components/ui/ComponentDocs.tsx +52 -0
  82. package/src/components/ui/Drawer.tsx +71 -0
  83. package/src/components/ui/DropdownMenu.tsx +138 -0
  84. package/src/components/ui/EmptyState.tsx +33 -0
  85. package/src/components/ui/FilterChips.tsx +50 -0
  86. package/src/components/ui/HoverCard.tsx +36 -0
  87. package/src/components/ui/Indicator.tsx +61 -0
  88. package/src/components/ui/Input.tsx +359 -0
  89. package/src/components/ui/Kbd.tsx +38 -0
  90. package/src/components/ui/Modal.tsx +75 -0
  91. package/src/components/ui/Navigation.tsx +94 -0
  92. package/src/components/ui/Panel.tsx +18 -0
  93. package/src/components/ui/Progress.tsx +59 -0
  94. package/src/components/ui/Rating.tsx +65 -0
  95. package/src/components/ui/SearchInput.tsx +106 -0
  96. package/src/components/ui/SegmentedControl.tsx +44 -0
  97. package/src/components/ui/ShowcaseWrapper.tsx +136 -0
  98. package/src/components/ui/Stat.tsx +39 -0
  99. package/src/components/ui/Stepper.tsx +75 -0
  100. package/src/components/ui/Table.tsx +55 -0
  101. package/src/components/ui/Tabs.tsx +53 -0
  102. package/src/components/ui/Terminal.tsx +54 -0
  103. package/src/components/ui/ThemeDomSync.tsx +17 -0
  104. package/src/components/ui/ThemeManager.tsx +18 -0
  105. package/src/components/ui/ThemeSwitcher.tsx +46 -0
  106. package/src/components/ui/Timeline.tsx +60 -0
  107. package/src/components/ui/Toast.tsx +70 -0
  108. package/src/components/ui/Typography.tsx +129 -0
  109. package/src/components/ui/index.ts +92 -0
  110. package/src/styles/themes.css +118 -0
package/dist/ui.d.mts ADDED
@@ -0,0 +1,3 @@
1
+ export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as Avatar, e as AvatarGroup, f as AvatarGroupProps, g as AvatarProps, h as AvatarSize, i as AvatarStatus, B as Badge, j as BadgeProps, k as BadgeSize, l as BadgeVariant, m as BreadcrumbItem, n as Breadcrumbs, o as BreadcrumbsProps, p as Button, q as ButtonChrome, r as ButtonChromeProps, s as ButtonProps, t as ButtonShape, u as ButtonSize, v as ButtonVariant, C as Calendar, w as Caption, x as Card, y as CardProps, z as CardVariant, D as ChatBubble, E as ChatBubbleProps, F as ChatBubbleVariant, G as Checkbox, H as CheckboxProps, I as CodeBlock, J as CollapsibleSection, K as CommandPalette, L as ComponentDocs, M as ComponentDocsProps, N as ComponentPropRow, O as Display, P as Drawer, Q as DrawerProps, R as DrawerSide, S as DrawerSize, T as DropdownAlign, U as DropdownButton, V as DropdownButtonProps, W as DropdownItem, X as DropdownMenu, Y as DropdownMenuProps, Z as EmptyState, _ as FileUpload, $ as FileUploadProps, a0 as FilterChips, a1 as H1, a2 as H2, a3 as H3, a4 as H4, a5 as H5, a6 as HoverCard, ab as Icon, ag as IconByName, aJ as IconName, aP as IconProps, bb as Indicator, bc as IndicatorPosition, bd as IndicatorProps, be as Input, bf as InputProps, bg as InputSize, bh as InputVariant, bi as Kbd, bj as KbdProps, bk as KbdVariant, bl as Label, bm as Lead, bn as Modal, bo as ModalProps, bp as ModalSize, bq as Mono, br as Overline, bs as P, bu as Pagination, bv as PaginationProps, bw as Panel, bx as PanelProps, by as Progress, bz as ProgressProps, bA as Radio, bB as RadioProps, bC as Range, bD as RangeProps, bE as Rating, bF as RatingProps, bG as SearchGroup, bH as SearchGroupProps, bI as SearchInput, bJ as SearchInputProps, bK as SegmentedControl, bL as Select, bM as SelectProps, bN as ShowcaseWrapper, bO as Small, bP as Stat, bQ as StatProps, bR as StatTone, bS as Stepper, bT as TabItem, bU as Table, bV as TableColumn, bW as TableProps, bX as Tabs, bY as TabsProps, bZ as TabsVariant, b_ as Terminal, b$ as TerminalProps, c0 as Textarea, c1 as TextareaProps, c2 as ThemeDomSync, c3 as ThemeManager, c4 as ThemeManagerProps, c5 as ThemeSwitcher, c6 as ThemeSwitcherProps, c7 as Timeline, c8 as TimelineEvent, c9 as TimelineProps, ca as Toast, cb as ToastProps, cc as ToastStack, cd as ToastStackProps, ce as ToastStatus, cf as Toggle, cg as ToggleProps } from './index-CmS6hcUk.mjs';
2
+ import 'react/jsx-runtime';
3
+ import 'react';
package/dist/ui.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as Avatar, e as AvatarGroup, f as AvatarGroupProps, g as AvatarProps, h as AvatarSize, i as AvatarStatus, B as Badge, j as BadgeProps, k as BadgeSize, l as BadgeVariant, m as BreadcrumbItem, n as Breadcrumbs, o as BreadcrumbsProps, p as Button, q as ButtonChrome, r as ButtonChromeProps, s as ButtonProps, t as ButtonShape, u as ButtonSize, v as ButtonVariant, C as Calendar, w as Caption, x as Card, y as CardProps, z as CardVariant, D as ChatBubble, E as ChatBubbleProps, F as ChatBubbleVariant, G as Checkbox, H as CheckboxProps, I as CodeBlock, J as CollapsibleSection, K as CommandPalette, L as ComponentDocs, M as ComponentDocsProps, N as ComponentPropRow, O as Display, P as Drawer, Q as DrawerProps, R as DrawerSide, S as DrawerSize, T as DropdownAlign, U as DropdownButton, V as DropdownButtonProps, W as DropdownItem, X as DropdownMenu, Y as DropdownMenuProps, Z as EmptyState, _ as FileUpload, $ as FileUploadProps, a0 as FilterChips, a1 as H1, a2 as H2, a3 as H3, a4 as H4, a5 as H5, a6 as HoverCard, ab as Icon, ag as IconByName, aJ as IconName, aP as IconProps, bb as Indicator, bc as IndicatorPosition, bd as IndicatorProps, be as Input, bf as InputProps, bg as InputSize, bh as InputVariant, bi as Kbd, bj as KbdProps, bk as KbdVariant, bl as Label, bm as Lead, bn as Modal, bo as ModalProps, bp as ModalSize, bq as Mono, br as Overline, bs as P, bu as Pagination, bv as PaginationProps, bw as Panel, bx as PanelProps, by as Progress, bz as ProgressProps, bA as Radio, bB as RadioProps, bC as Range, bD as RangeProps, bE as Rating, bF as RatingProps, bG as SearchGroup, bH as SearchGroupProps, bI as SearchInput, bJ as SearchInputProps, bK as SegmentedControl, bL as Select, bM as SelectProps, bN as ShowcaseWrapper, bO as Small, bP as Stat, bQ as StatProps, bR as StatTone, bS as Stepper, bT as TabItem, bU as Table, bV as TableColumn, bW as TableProps, bX as Tabs, bY as TabsProps, bZ as TabsVariant, b_ as Terminal, b$ as TerminalProps, c0 as Textarea, c1 as TextareaProps, c2 as ThemeDomSync, c3 as ThemeManager, c4 as ThemeManagerProps, c5 as ThemeSwitcher, c6 as ThemeSwitcherProps, c7 as Timeline, c8 as TimelineEvent, c9 as TimelineProps, ca as Toast, cb as ToastProps, cc as ToastStack, cd as ToastStackProps, ce as ToastStatus, cf as Toggle, cg as ToggleProps } from './index-CmS6hcUk.js';
2
+ import 'react/jsx-runtime';
3
+ import 'react';