@xenide-io/the-old-ui-theme 0.2.9 → 0.3.0
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/README.md +1 -1
- package/dist/{chunk-SHF57J7U.mjs → chunk-FDMD3IIN.mjs} +1573 -652
- package/dist/index-D1RTT2Ap.d.mts +1044 -0
- package/dist/index-D1RTT2Ap.d.ts +1044 -0
- package/dist/index.d.mts +10 -7
- package/dist/index.d.ts +10 -7
- package/dist/index.js +1705 -744
- package/dist/index.mjs +61 -1
- package/dist/tailwind-preset.js +7 -0
- package/dist/tailwind-preset.mjs +7 -0
- package/dist/ui.d.mts +3 -2
- package/dist/ui.d.ts +3 -2
- package/dist/ui.js +1584 -666
- package/dist/ui.mjs +31 -1
- package/package.json +18 -4
- package/src/app/globals.css +1005 -227
- package/src/components/icons/IconBase.tsx +20 -12
- package/src/components/icons/createIconBase.tsx +12 -7
- package/src/components/icons/icons.tsx +208 -18
- package/src/components/sections/AlertShowcase.tsx +2 -1
- package/src/components/sections/BadgeShowcase.tsx +1 -1
- package/src/components/sections/ButtonShowcase.tsx +6 -10
- package/src/components/sections/CardShowcase.tsx +22 -6
- package/src/components/sections/DropdownShowcase.tsx +4 -6
- package/src/components/sections/FilterChipsShowcase.tsx +74 -26
- package/src/components/sections/FormShowcase.tsx +2 -1
- package/src/components/sections/IconShowcase.tsx +86 -206
- package/src/components/sections/KbdShowcase.tsx +47 -21
- package/src/components/sections/ModalShowcase.tsx +7 -6
- package/src/components/sections/ProductLayoutsShowcase.tsx +138 -0
- package/src/components/sections/ProgressShowcase.tsx +50 -53
- package/src/components/sections/SwapShowcase.tsx +13 -5
- package/src/components/ui/Alert.tsx +28 -19
- package/src/components/ui/AuthLayout.tsx +58 -0
- package/src/components/ui/Badge.tsx +10 -5
- package/src/components/ui/Button.tsx +22 -12
- package/src/components/ui/ButtonChrome.tsx +1 -1
- package/src/components/ui/Calendar.tsx +6 -7
- package/src/components/ui/Card.tsx +21 -11
- package/src/components/ui/CollapsibleSection.tsx +11 -11
- package/src/components/ui/DropdownMenu.tsx +189 -65
- package/src/components/ui/FilterBar.tsx +165 -0
- package/src/components/ui/FilterChips.tsx +65 -35
- package/src/components/ui/FilterControls.tsx +30 -0
- package/src/components/ui/FormField.tsx +69 -0
- package/src/components/ui/Input.tsx +166 -140
- package/src/components/ui/Kbd.tsx +88 -13
- package/src/components/ui/Loader.tsx +96 -0
- package/src/components/ui/Modal.tsx +66 -36
- package/src/components/ui/SettingsLayout.tsx +94 -0
- package/src/components/ui/ShowcaseWrapper.tsx +4 -16
- package/src/components/ui/Stepper.tsx +5 -6
- package/src/components/ui/first-slice.test.tsx +98 -0
- package/src/components/ui/index.ts +62 -3
- package/src/components/ui/interaction-primitives.test.tsx +77 -0
- package/src/components/ui/kbd-icons.test.tsx +90 -0
- package/src/components/ui/product-patterns.test.tsx +77 -0
- package/src/styles/themes.css +411 -1
- package/tailwind-preset.ts +7 -0
- package/dist/index-CmS6hcUk.d.mts +0 -753
- package/dist/index-CmS6hcUk.d.ts +0 -753
package/dist/index.mjs
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
import {
|
|
2
2
|
Accordion,
|
|
3
3
|
Alert,
|
|
4
|
+
AuthCard,
|
|
5
|
+
AuthDivider,
|
|
6
|
+
AuthLayout,
|
|
4
7
|
Avatar,
|
|
5
8
|
AvatarGroup,
|
|
6
9
|
Badge,
|
|
7
10
|
Breadcrumbs,
|
|
8
11
|
Button,
|
|
9
12
|
ButtonChrome,
|
|
13
|
+
CANONICAL_ICONS,
|
|
10
14
|
Calendar,
|
|
11
15
|
Caption,
|
|
12
16
|
Card,
|
|
@@ -22,9 +26,15 @@ import {
|
|
|
22
26
|
DropdownButton,
|
|
23
27
|
DropdownItem,
|
|
24
28
|
DropdownMenu,
|
|
29
|
+
DropdownRadioGroup,
|
|
30
|
+
DropdownRadioItem,
|
|
25
31
|
EmptyState,
|
|
26
32
|
FileUpload,
|
|
33
|
+
FilterBar,
|
|
27
34
|
FilterChips,
|
|
35
|
+
FilterControls,
|
|
36
|
+
FilterMenu,
|
|
37
|
+
FormField,
|
|
28
38
|
H1,
|
|
29
39
|
H2,
|
|
30
40
|
H3,
|
|
@@ -49,14 +59,20 @@ import {
|
|
|
49
59
|
IconChevronRight,
|
|
50
60
|
IconClipboardEdit,
|
|
51
61
|
IconClose,
|
|
62
|
+
IconCodePreview,
|
|
52
63
|
IconCohort,
|
|
64
|
+
IconCommandCursor,
|
|
53
65
|
IconCopy,
|
|
54
66
|
IconCumulativeChart,
|
|
67
|
+
IconDataReel,
|
|
55
68
|
IconDatabase,
|
|
56
69
|
IconDownload,
|
|
57
70
|
IconEdit,
|
|
58
71
|
IconErrorOutline,
|
|
72
|
+
IconEventStream,
|
|
59
73
|
IconExclamation,
|
|
74
|
+
IconExperimentSplit,
|
|
75
|
+
IconFeatureGate,
|
|
60
76
|
IconFlag,
|
|
61
77
|
IconFlare,
|
|
62
78
|
IconFlask,
|
|
@@ -64,19 +80,24 @@ import {
|
|
|
64
80
|
IconGridView,
|
|
65
81
|
IconHandClick,
|
|
66
82
|
IconHome,
|
|
83
|
+
IconInfo,
|
|
84
|
+
IconInsightBoard,
|
|
67
85
|
IconLayers,
|
|
68
86
|
IconListView,
|
|
69
87
|
IconLogout,
|
|
70
88
|
IconMail,
|
|
71
89
|
IconMoon,
|
|
90
|
+
IconOldWindow,
|
|
72
91
|
IconPanelRight,
|
|
73
92
|
IconPerson,
|
|
74
93
|
IconPlayCircle,
|
|
75
94
|
IconPlus,
|
|
76
95
|
IconPremium,
|
|
77
96
|
IconQueryEditor,
|
|
97
|
+
IconQueryStack,
|
|
78
98
|
IconRadar,
|
|
79
99
|
IconRecording,
|
|
100
|
+
IconReplayFrame,
|
|
80
101
|
IconRobot,
|
|
81
102
|
IconRocket,
|
|
82
103
|
IconSave,
|
|
@@ -87,6 +108,7 @@ import {
|
|
|
87
108
|
IconStar,
|
|
88
109
|
IconSubArrowRight,
|
|
89
110
|
IconSun,
|
|
111
|
+
IconSurveyCard,
|
|
90
112
|
IconSurveys,
|
|
91
113
|
IconSync,
|
|
92
114
|
IconTableChart,
|
|
@@ -102,11 +124,15 @@ import {
|
|
|
102
124
|
Kbd,
|
|
103
125
|
Label,
|
|
104
126
|
Lead,
|
|
127
|
+
Loader,
|
|
128
|
+
LoadingState,
|
|
105
129
|
Modal,
|
|
106
130
|
Mono,
|
|
131
|
+
OLD_UI_ICONS,
|
|
107
132
|
Overline,
|
|
108
133
|
P,
|
|
109
134
|
PH_ICONS,
|
|
135
|
+
PH_ICON_ALIASES,
|
|
110
136
|
Pagination,
|
|
111
137
|
Panel,
|
|
112
138
|
Progress,
|
|
@@ -117,8 +143,12 @@ import {
|
|
|
117
143
|
SearchInput,
|
|
118
144
|
SegmentedControl,
|
|
119
145
|
Select,
|
|
146
|
+
SettingsLayout,
|
|
147
|
+
SettingsNav,
|
|
120
148
|
ShowcaseWrapper,
|
|
149
|
+
Skeleton,
|
|
121
150
|
Small,
|
|
151
|
+
SortMenu,
|
|
122
152
|
Stat,
|
|
123
153
|
Stepper,
|
|
124
154
|
THEMES,
|
|
@@ -142,7 +172,7 @@ import {
|
|
|
142
172
|
isThemeId,
|
|
143
173
|
persistTheme,
|
|
144
174
|
readStoredTheme
|
|
145
|
-
} from "./chunk-
|
|
175
|
+
} from "./chunk-FDMD3IIN.mjs";
|
|
146
176
|
import {
|
|
147
177
|
__objRest,
|
|
148
178
|
__spreadProps,
|
|
@@ -1221,12 +1251,16 @@ function InsightMiniCard(_a) {
|
|
|
1221
1251
|
export {
|
|
1222
1252
|
Accordion,
|
|
1223
1253
|
Alert,
|
|
1254
|
+
AuthCard,
|
|
1255
|
+
AuthDivider,
|
|
1256
|
+
AuthLayout,
|
|
1224
1257
|
Avatar,
|
|
1225
1258
|
AvatarGroup,
|
|
1226
1259
|
Badge,
|
|
1227
1260
|
Breadcrumbs,
|
|
1228
1261
|
Button,
|
|
1229
1262
|
ButtonChrome,
|
|
1263
|
+
CANONICAL_ICONS,
|
|
1230
1264
|
Calendar,
|
|
1231
1265
|
Caption,
|
|
1232
1266
|
Card,
|
|
@@ -1248,9 +1282,15 @@ export {
|
|
|
1248
1282
|
DropdownButton,
|
|
1249
1283
|
DropdownItem,
|
|
1250
1284
|
DropdownMenu,
|
|
1285
|
+
DropdownRadioGroup,
|
|
1286
|
+
DropdownRadioItem,
|
|
1251
1287
|
EmptyState,
|
|
1252
1288
|
FileUpload,
|
|
1289
|
+
FilterBar,
|
|
1253
1290
|
FilterChips,
|
|
1291
|
+
FilterControls,
|
|
1292
|
+
FilterMenu,
|
|
1293
|
+
FormField,
|
|
1254
1294
|
H1,
|
|
1255
1295
|
H2,
|
|
1256
1296
|
H3,
|
|
@@ -1277,14 +1317,20 @@ export {
|
|
|
1277
1317
|
IconChevronRight,
|
|
1278
1318
|
IconClipboardEdit,
|
|
1279
1319
|
IconClose,
|
|
1320
|
+
IconCodePreview,
|
|
1280
1321
|
IconCohort,
|
|
1322
|
+
IconCommandCursor,
|
|
1281
1323
|
IconCopy,
|
|
1282
1324
|
IconCumulativeChart,
|
|
1325
|
+
IconDataReel,
|
|
1283
1326
|
IconDatabase,
|
|
1284
1327
|
IconDownload,
|
|
1285
1328
|
IconEdit,
|
|
1286
1329
|
IconErrorOutline,
|
|
1330
|
+
IconEventStream,
|
|
1287
1331
|
IconExclamation,
|
|
1332
|
+
IconExperimentSplit,
|
|
1333
|
+
IconFeatureGate,
|
|
1288
1334
|
IconFlag,
|
|
1289
1335
|
IconFlare,
|
|
1290
1336
|
IconFlask,
|
|
@@ -1292,19 +1338,24 @@ export {
|
|
|
1292
1338
|
IconGridView,
|
|
1293
1339
|
IconHandClick,
|
|
1294
1340
|
IconHome,
|
|
1341
|
+
IconInfo,
|
|
1342
|
+
IconInsightBoard,
|
|
1295
1343
|
IconLayers,
|
|
1296
1344
|
IconListView,
|
|
1297
1345
|
IconLogout,
|
|
1298
1346
|
IconMail,
|
|
1299
1347
|
IconMoon,
|
|
1348
|
+
IconOldWindow,
|
|
1300
1349
|
IconPanelRight,
|
|
1301
1350
|
IconPerson,
|
|
1302
1351
|
IconPlayCircle,
|
|
1303
1352
|
IconPlus,
|
|
1304
1353
|
IconPremium,
|
|
1305
1354
|
IconQueryEditor,
|
|
1355
|
+
IconQueryStack,
|
|
1306
1356
|
IconRadar,
|
|
1307
1357
|
IconRecording,
|
|
1358
|
+
IconReplayFrame,
|
|
1308
1359
|
IconRobot,
|
|
1309
1360
|
IconRocket,
|
|
1310
1361
|
IconSave,
|
|
@@ -1315,6 +1366,7 @@ export {
|
|
|
1315
1366
|
IconStar,
|
|
1316
1367
|
IconSubArrowRight,
|
|
1317
1368
|
IconSun,
|
|
1369
|
+
IconSurveyCard,
|
|
1318
1370
|
IconSurveys,
|
|
1319
1371
|
IconSync,
|
|
1320
1372
|
IconTableChart,
|
|
@@ -1338,12 +1390,16 @@ export {
|
|
|
1338
1390
|
Kbd,
|
|
1339
1391
|
Label,
|
|
1340
1392
|
Lead,
|
|
1393
|
+
Loader,
|
|
1394
|
+
LoadingState,
|
|
1341
1395
|
MiniTrendBars,
|
|
1342
1396
|
Modal,
|
|
1343
1397
|
Mono,
|
|
1398
|
+
OLD_UI_ICONS,
|
|
1344
1399
|
Overline,
|
|
1345
1400
|
P,
|
|
1346
1401
|
PH_ICONS,
|
|
1402
|
+
PH_ICON_ALIASES,
|
|
1347
1403
|
Pagination,
|
|
1348
1404
|
Panel,
|
|
1349
1405
|
Progress,
|
|
@@ -1354,8 +1410,12 @@ export {
|
|
|
1354
1410
|
SearchInput,
|
|
1355
1411
|
SegmentedControl,
|
|
1356
1412
|
Select,
|
|
1413
|
+
SettingsLayout,
|
|
1414
|
+
SettingsNav,
|
|
1357
1415
|
ShowcaseWrapper,
|
|
1416
|
+
Skeleton,
|
|
1358
1417
|
Small,
|
|
1418
|
+
SortMenu,
|
|
1359
1419
|
Stat,
|
|
1360
1420
|
Stepper,
|
|
1361
1421
|
THEMES,
|
package/dist/tailwind-preset.js
CHANGED
|
@@ -56,9 +56,13 @@ var posthogThemePreset = {
|
|
|
56
56
|
ph: {
|
|
57
57
|
canvas: "var(--ph-canvas)",
|
|
58
58
|
surface: "var(--ph-surface)",
|
|
59
|
+
inset: "var(--ph-surface-inset)",
|
|
60
|
+
raised: "var(--ph-surface-raised)",
|
|
61
|
+
overlay: "var(--ph-surface-overlay)",
|
|
59
62
|
muted: "var(--ph-muted)",
|
|
60
63
|
toolbar: "var(--ph-toolbar)",
|
|
61
64
|
border: "var(--ph-border)",
|
|
65
|
+
"border-subtle": "var(--ph-border-subtle)",
|
|
62
66
|
strong: "var(--ph-border-strong)",
|
|
63
67
|
ink: "var(--ph-text-primary)",
|
|
64
68
|
subtle: "var(--ph-text-secondary)",
|
|
@@ -72,6 +76,9 @@ var posthogThemePreset = {
|
|
|
72
76
|
warning: "var(--ph-warning)",
|
|
73
77
|
danger: "var(--ph-danger)",
|
|
74
78
|
info: "var(--ph-info)",
|
|
79
|
+
selected: "var(--ph-selected-bg)",
|
|
80
|
+
"selected-ink": "var(--ph-selected-text)",
|
|
81
|
+
focus: "var(--ph-focus-ring)",
|
|
75
82
|
"btn-primary-face": "var(--ph-primary-button-face)",
|
|
76
83
|
"btn-primary-border": "var(--ph-primary-button-border)",
|
|
77
84
|
"btn-primary-frame": "var(--ph-primary-frame-bg)",
|
package/dist/tailwind-preset.mjs
CHANGED
|
@@ -34,9 +34,13 @@ var posthogThemePreset = {
|
|
|
34
34
|
ph: {
|
|
35
35
|
canvas: "var(--ph-canvas)",
|
|
36
36
|
surface: "var(--ph-surface)",
|
|
37
|
+
inset: "var(--ph-surface-inset)",
|
|
38
|
+
raised: "var(--ph-surface-raised)",
|
|
39
|
+
overlay: "var(--ph-surface-overlay)",
|
|
37
40
|
muted: "var(--ph-muted)",
|
|
38
41
|
toolbar: "var(--ph-toolbar)",
|
|
39
42
|
border: "var(--ph-border)",
|
|
43
|
+
"border-subtle": "var(--ph-border-subtle)",
|
|
40
44
|
strong: "var(--ph-border-strong)",
|
|
41
45
|
ink: "var(--ph-text-primary)",
|
|
42
46
|
subtle: "var(--ph-text-secondary)",
|
|
@@ -50,6 +54,9 @@ var posthogThemePreset = {
|
|
|
50
54
|
warning: "var(--ph-warning)",
|
|
51
55
|
danger: "var(--ph-danger)",
|
|
52
56
|
info: "var(--ph-info)",
|
|
57
|
+
selected: "var(--ph-selected-bg)",
|
|
58
|
+
"selected-ink": "var(--ph-selected-text)",
|
|
59
|
+
focus: "var(--ph-focus-ring)",
|
|
53
60
|
"btn-primary-face": "var(--ph-primary-button-face)",
|
|
54
61
|
"btn-primary-border": "var(--ph-primary-button-border)",
|
|
55
62
|
"btn-primary-frame": "var(--ph-primary-frame-bg)",
|
package/dist/ui.d.mts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as
|
|
2
|
-
import 'react/jsx-runtime';
|
|
1
|
+
export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as AuthCard, e as AuthCardProps, f as AuthDivider, g as AuthDividerProps, h as AuthLayout, i as AuthLayoutProps, j as Avatar, k as AvatarGroup, l as AvatarGroupProps, m as AvatarProps, n as AvatarSize, o as AvatarStatus, B as Badge, p as BadgeProps, q as BadgeSize, r as BadgeVariant, s as BreadcrumbItem, t as Breadcrumbs, u as BreadcrumbsProps, v as Button, w as ButtonChrome, x as ButtonChromeProps, y as ButtonProps, z as ButtonShape, C as ButtonSize, D as ButtonVariant, F as Calendar, G as CanonicalIconName, H as Caption, I as Card, J as CardProps, K as CardVariant, L as ChatBubble, M as ChatBubbleProps, N as ChatBubbleVariant, O as Checkbox, P as CheckboxProps, Q as CodeBlock, R as CollapsibleSection, S as CommandPalette, T as ComponentDocs, U as ComponentDocsProps, V as ComponentPropRow, W as Display, X as Drawer, Y as DrawerProps, Z as DrawerSide, _ as DrawerSize, $ as DropdownAlign, a0 as DropdownButton, a1 as DropdownButtonProps, a2 as DropdownItem, a3 as DropdownItemProps, a4 as DropdownMenu, a5 as DropdownMenuProps, a6 as DropdownRadioGroup, a7 as DropdownRadioGroupProps, a8 as DropdownRadioItem, a9 as DropdownRadioItemProps, aa as DropdownSide, ab as EmptyState, ac as FileUpload, ad as FileUploadProps, ae as FilterBar, af as FilterBarProps, ag as FilterChip, ah as FilterChips, ai as FilterChipsProps, aj as FilterControls, ak as FilterControlsProps, al as FilterMenu, am as FilterMenuOption, an as FilterMenuProps, ao as FormField, ap as FormFieldControlProps, aq as FormFieldProps, ar as H1, as as H2, at as H3, au as H4, av as H5, aw as HoverCard, aC as Icon, ay as IconAliasName, aH as IconByName, bg as IconName, bn as IconProps, bO as Indicator, bP as IndicatorPosition, bQ as IndicatorProps, bR as Input, bS as InputProps, bT as InputSize, bU as InputVariant, bV as Kbd, bW as KbdPlatform, bX as KbdProps, bY as KbdVariant, bZ as Label, b_ as Lead, b$ as Loader, c0 as LoaderProps, c1 as LoaderSize, c2 as LoaderVariant, c3 as LoadingState, c4 as LoadingStateProps, c5 as Modal, c6 as ModalProps, c7 as ModalSize, c8 as Mono, ca as Overline, cb as P, ce as Pagination, cf as PaginationProps, cg as Panel, ch as PanelProps, ci as Progress, cj as ProgressProps, ck as Radio, cl as RadioProps, cm as Range, cn as RangeProps, co as Rating, cp as RatingProps, cq as SearchGroup, cr as SearchGroupProps, cs as SearchInput, ct as SearchInputProps, cu as SegmentedControl, cv as Select, cw as SelectProps, cx as SettingsLayout, cy as SettingsLayoutProps, cz as SettingsNav, cA as SettingsNavGroup, cB as SettingsNavItem, cC as SettingsNavProps, cD as ShowcaseWrapper, cE as Skeleton, cF as SkeletonProps, cG as SkeletonShape, cH as Small, cI as SortMenu, cJ as SortMenuProps, cK as Stat, cL as StatProps, cM as StatTone, cN as Stepper, cO as TabItem, cP as Table, cQ as TableColumn, cR as TableProps, cS as Tabs, cT as TabsProps, cU as TabsVariant, cV as Terminal, cW as TerminalProps, cX as Textarea, cY as TextareaProps, cZ as ThemeDomSync, c_ as ThemeManager, c$ as ThemeManagerProps, d0 as ThemeSwitcher, d1 as ThemeSwitcherProps, d2 as Timeline, d3 as TimelineEvent, d4 as TimelineProps, d5 as Toast, d6 as ToastProps, d7 as ToastStack, d8 as ToastStackProps, d9 as ToastStatus, da as Toggle, db as ToggleProps } from './index-D1RTT2Ap.mjs';
|
|
3
2
|
import 'react';
|
|
3
|
+
import 'react/jsx-runtime';
|
|
4
|
+
import '@radix-ui/react-dropdown-menu';
|
package/dist/ui.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as
|
|
2
|
-
import 'react/jsx-runtime';
|
|
1
|
+
export { A as Accordion, a as Alert, b as AlertProps, c as AlertStatus, d as AuthCard, e as AuthCardProps, f as AuthDivider, g as AuthDividerProps, h as AuthLayout, i as AuthLayoutProps, j as Avatar, k as AvatarGroup, l as AvatarGroupProps, m as AvatarProps, n as AvatarSize, o as AvatarStatus, B as Badge, p as BadgeProps, q as BadgeSize, r as BadgeVariant, s as BreadcrumbItem, t as Breadcrumbs, u as BreadcrumbsProps, v as Button, w as ButtonChrome, x as ButtonChromeProps, y as ButtonProps, z as ButtonShape, C as ButtonSize, D as ButtonVariant, F as Calendar, G as CanonicalIconName, H as Caption, I as Card, J as CardProps, K as CardVariant, L as ChatBubble, M as ChatBubbleProps, N as ChatBubbleVariant, O as Checkbox, P as CheckboxProps, Q as CodeBlock, R as CollapsibleSection, S as CommandPalette, T as ComponentDocs, U as ComponentDocsProps, V as ComponentPropRow, W as Display, X as Drawer, Y as DrawerProps, Z as DrawerSide, _ as DrawerSize, $ as DropdownAlign, a0 as DropdownButton, a1 as DropdownButtonProps, a2 as DropdownItem, a3 as DropdownItemProps, a4 as DropdownMenu, a5 as DropdownMenuProps, a6 as DropdownRadioGroup, a7 as DropdownRadioGroupProps, a8 as DropdownRadioItem, a9 as DropdownRadioItemProps, aa as DropdownSide, ab as EmptyState, ac as FileUpload, ad as FileUploadProps, ae as FilterBar, af as FilterBarProps, ag as FilterChip, ah as FilterChips, ai as FilterChipsProps, aj as FilterControls, ak as FilterControlsProps, al as FilterMenu, am as FilterMenuOption, an as FilterMenuProps, ao as FormField, ap as FormFieldControlProps, aq as FormFieldProps, ar as H1, as as H2, at as H3, au as H4, av as H5, aw as HoverCard, aC as Icon, ay as IconAliasName, aH as IconByName, bg as IconName, bn as IconProps, bO as Indicator, bP as IndicatorPosition, bQ as IndicatorProps, bR as Input, bS as InputProps, bT as InputSize, bU as InputVariant, bV as Kbd, bW as KbdPlatform, bX as KbdProps, bY as KbdVariant, bZ as Label, b_ as Lead, b$ as Loader, c0 as LoaderProps, c1 as LoaderSize, c2 as LoaderVariant, c3 as LoadingState, c4 as LoadingStateProps, c5 as Modal, c6 as ModalProps, c7 as ModalSize, c8 as Mono, ca as Overline, cb as P, ce as Pagination, cf as PaginationProps, cg as Panel, ch as PanelProps, ci as Progress, cj as ProgressProps, ck as Radio, cl as RadioProps, cm as Range, cn as RangeProps, co as Rating, cp as RatingProps, cq as SearchGroup, cr as SearchGroupProps, cs as SearchInput, ct as SearchInputProps, cu as SegmentedControl, cv as Select, cw as SelectProps, cx as SettingsLayout, cy as SettingsLayoutProps, cz as SettingsNav, cA as SettingsNavGroup, cB as SettingsNavItem, cC as SettingsNavProps, cD as ShowcaseWrapper, cE as Skeleton, cF as SkeletonProps, cG as SkeletonShape, cH as Small, cI as SortMenu, cJ as SortMenuProps, cK as Stat, cL as StatProps, cM as StatTone, cN as Stepper, cO as TabItem, cP as Table, cQ as TableColumn, cR as TableProps, cS as Tabs, cT as TabsProps, cU as TabsVariant, cV as Terminal, cW as TerminalProps, cX as Textarea, cY as TextareaProps, cZ as ThemeDomSync, c_ as ThemeManager, c$ as ThemeManagerProps, d0 as ThemeSwitcher, d1 as ThemeSwitcherProps, d2 as Timeline, d3 as TimelineEvent, d4 as TimelineProps, d5 as Toast, d6 as ToastProps, d7 as ToastStack, d8 as ToastStackProps, d9 as ToastStatus, da as Toggle, db as ToggleProps } from './index-D1RTT2Ap.js';
|
|
3
2
|
import 'react';
|
|
3
|
+
import 'react/jsx-runtime';
|
|
4
|
+
import '@radix-ui/react-dropdown-menu';
|