@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.
- package/dist/chunk-SHF57J7U.mjs +2910 -0
- package/dist/index-CmS6hcUk.d.mts +753 -0
- package/dist/index-CmS6hcUk.d.ts +753 -0
- package/dist/index.d.mts +5 -755
- package/dist/index.d.ts +5 -755
- package/dist/index.js +43 -23
- package/dist/index.mjs +252 -2846
- package/dist/ui.d.mts +3 -0
- package/dist/ui.d.ts +3 -0
- package/dist/ui.js +2946 -0
- package/dist/ui.mjs +139 -0
- package/package.json +11 -3
- package/src/components/charts/index.ts +8 -0
- package/src/components/charts/ph-insight-charts.tsx +162 -0
- package/src/components/dashboard/DashboardFiltersBar.tsx +19 -0
- package/src/components/dashboard/DashboardGrid.tsx +23 -0
- package/src/components/dashboard/DashboardInsightPlaceholder.tsx +37 -0
- package/src/components/dashboard/DashboardKpiCard.tsx +25 -0
- package/src/components/dashboard/DashboardToolbar.tsx +23 -0
- package/src/components/dashboard/DashboardWell.tsx +10 -0
- package/src/components/dashboard/InsightMiniCard.tsx +26 -0
- package/src/components/dashboard/InsightShell.tsx +37 -0
- package/src/components/dashboard/InsightShellHeader.tsx +22 -0
- package/src/components/dashboard/MiniTrendBars.tsx +51 -0
- package/src/components/dashboard/index.ts +31 -0
- package/src/components/dashboard/types.ts +9 -0
- package/src/components/icons/IconBase.tsx +39 -0
- package/src/components/icons/createIconBase.tsx +27 -0
- package/src/components/icons/icons.tsx +367 -0
- package/src/components/icons/index.ts +3 -0
- package/src/components/sections/AccordionShowcase.tsx +45 -0
- package/src/components/sections/AlertShowcase.tsx +39 -0
- package/src/components/sections/AvatarShowcase.tsx +80 -0
- package/src/components/sections/BadgeShowcase.tsx +65 -0
- package/src/components/sections/ButtonShowcase.tsx +312 -0
- package/src/components/sections/CalendarShowcase.tsx +35 -0
- package/src/components/sections/CardShowcase.tsx +143 -0
- package/src/components/sections/ChartShowcase.tsx +190 -0
- package/src/components/sections/CodeMockupShowcase.tsx +56 -0
- package/src/components/sections/ColorPalette.tsx +117 -0
- package/src/components/sections/CommandPaletteShowcase.tsx +48 -0
- package/src/components/sections/CountdownShowcase.tsx +43 -0
- package/src/components/sections/DashboardShowcase.tsx +191 -0
- package/src/components/sections/DiffShowcase.tsx +70 -0
- package/src/components/sections/DrawerShowcase.tsx +97 -0
- package/src/components/sections/DropdownShowcase.tsx +100 -0
- package/src/components/sections/EmptyStateShowcase.tsx +50 -0
- package/src/components/sections/FilterChipsShowcase.tsx +50 -0
- package/src/components/sections/FormShowcase.tsx +126 -0
- package/src/components/sections/HoverCardShowcase.tsx +50 -0
- package/src/components/sections/IconShowcase.tsx +247 -0
- package/src/components/sections/IndicatorShowcase.tsx +52 -0
- package/src/components/sections/KbdShowcase.tsx +31 -0
- package/src/components/sections/ModalShowcase.tsx +210 -0
- package/src/components/sections/NavigationShowcase.tsx +199 -0
- package/src/components/sections/ProgressShowcase.tsx +85 -0
- package/src/components/sections/SegmentedControlShowcase.tsx +49 -0
- package/src/components/sections/SetupThemeShowcase.tsx +262 -0
- package/src/components/sections/StackShowcase.tsx +33 -0
- package/src/components/sections/StatShowcase.tsx +129 -0
- package/src/components/sections/StepperShowcase.tsx +37 -0
- package/src/components/sections/SwapShowcase.tsx +91 -0
- package/src/components/sections/TabShowcase.tsx +84 -0
- package/src/components/sections/TableShowcase.tsx +140 -0
- package/src/components/sections/TimelineShowcase.tsx +83 -0
- package/src/components/sections/ToastShowcase.tsx +108 -0
- package/src/components/sections/TooltipShowcase.tsx +44 -0
- package/src/components/sections/UtilityShowcase.tsx +81 -0
- package/src/components/ui/Accordion.tsx +77 -0
- package/src/components/ui/Alert.tsx +68 -0
- package/src/components/ui/Avatar.tsx +97 -0
- package/src/components/ui/Badge.tsx +55 -0
- package/src/components/ui/Button.tsx +110 -0
- package/src/components/ui/ButtonChrome.tsx +20 -0
- package/src/components/ui/Calendar.tsx +116 -0
- package/src/components/ui/Card.tsx +60 -0
- package/src/components/ui/ChatBubble.tsx +71 -0
- package/src/components/ui/CodeBlock.tsx +48 -0
- package/src/components/ui/CollapsibleSection.tsx +49 -0
- package/src/components/ui/CommandPalette.tsx +137 -0
- package/src/components/ui/ComponentDocs.tsx +52 -0
- package/src/components/ui/Drawer.tsx +71 -0
- package/src/components/ui/DropdownMenu.tsx +138 -0
- package/src/components/ui/EmptyState.tsx +33 -0
- package/src/components/ui/FilterChips.tsx +50 -0
- package/src/components/ui/HoverCard.tsx +36 -0
- package/src/components/ui/Indicator.tsx +61 -0
- package/src/components/ui/Input.tsx +359 -0
- package/src/components/ui/Kbd.tsx +38 -0
- package/src/components/ui/Modal.tsx +75 -0
- package/src/components/ui/Navigation.tsx +94 -0
- package/src/components/ui/Panel.tsx +18 -0
- package/src/components/ui/Progress.tsx +59 -0
- package/src/components/ui/Rating.tsx +65 -0
- package/src/components/ui/SearchInput.tsx +106 -0
- package/src/components/ui/SegmentedControl.tsx +44 -0
- package/src/components/ui/ShowcaseWrapper.tsx +136 -0
- package/src/components/ui/Stat.tsx +39 -0
- package/src/components/ui/Stepper.tsx +75 -0
- package/src/components/ui/Table.tsx +55 -0
- package/src/components/ui/Tabs.tsx +53 -0
- package/src/components/ui/Terminal.tsx +54 -0
- package/src/components/ui/ThemeDomSync.tsx +17 -0
- package/src/components/ui/ThemeManager.tsx +18 -0
- package/src/components/ui/ThemeSwitcher.tsx +46 -0
- package/src/components/ui/Timeline.tsx +60 -0
- package/src/components/ui/Toast.tsx +70 -0
- package/src/components/ui/Typography.tsx +129 -0
- package/src/components/ui/index.ts +92 -0
- 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';
|