@pathscale/ui 0.1.0 → 0.1.1
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/LICENSE +1 -0
- package/README.md +59 -1
- package/dist/components/accordion/Accordion.d.ts +25 -0
- package/dist/components/accordion/index.d.ts +1 -0
- package/dist/components/alert/Alert.d.ts +17 -0
- package/dist/components/alert/index.d.ts +1 -0
- package/dist/components/artboard/Artboard.d.ts +9 -0
- package/dist/components/artboard/index.d.ts +1 -0
- package/dist/components/avatar/Avatar.d.ts +26 -0
- package/dist/components/avatar/AvatarGroup.d.ts +15 -0
- package/dist/components/avatar/index.d.ts +3 -8
- package/dist/components/background/Background.d.ts +5 -0
- package/dist/components/background/index.d.ts +1 -0
- package/dist/components/badge/Badge.d.ts +19 -0
- package/dist/components/badge/index.d.ts +1 -0
- package/dist/components/bottom-sheet/BottomSheet.d.ts +11 -0
- package/dist/components/bottom-sheet/index.d.ts +2 -0
- package/dist/components/breadcrumbs/Breadcrumbs.d.ts +7 -0
- package/dist/components/breadcrumbs/BreadcrumbsItem.d.ts +6 -0
- package/dist/components/breadcrumbs/index.d.ts +2 -0
- package/dist/components/browsermockup/BrowserMockup.d.ts +10 -0
- package/dist/components/browsermockup/index.d.ts +2 -0
- package/dist/components/button/Button.d.ts +36 -0
- package/dist/components/button/index.d.ts +1 -9
- package/dist/components/calendar/Calendar.d.ts +27 -0
- package/dist/components/calendar/index.d.ts +1 -0
- package/dist/components/card/Card.d.ts +28 -0
- package/dist/components/card/CardActions.d.ts +4 -0
- package/dist/components/card/CardBody.d.ts +4 -0
- package/dist/components/card/CardImage.d.ts +3 -0
- package/dist/components/card/CardTitle.d.ts +6 -0
- package/dist/components/card/index.d.ts +1 -0
- package/dist/components/carousel/Carousel.d.ts +15 -0
- package/dist/components/carousel/CarouselItem.d.ts +6 -0
- package/dist/components/carousel/index.d.ts +3 -0
- package/dist/components/chatbubble/ChatBubble.d.ts +13 -0
- package/dist/components/chatbubble/ChatBubbleAvatar.d.ts +6 -0
- package/dist/components/chatbubble/ChatBubbleFooter.d.ts +5 -0
- package/dist/components/chatbubble/ChatBubbleHeader.d.ts +5 -0
- package/dist/components/chatbubble/ChatBubbleMessage.d.ts +7 -0
- package/dist/components/chatbubble/ChatBubbleTime.d.ts +5 -0
- package/dist/components/chatbubble/index.d.ts +1 -0
- package/dist/components/checkbox/Checkbox.d.ts +20 -0
- package/dist/components/checkbox/index.d.ts +1 -0
- package/dist/components/codemockup/CodeMockup.d.ts +5 -0
- package/dist/components/codemockup/CodeMockupLine.d.ts +12 -0
- package/dist/components/codemockup/index.d.ts +2 -0
- package/dist/components/collapse/Collapse.d.ts +20 -0
- package/dist/components/collapse/CollapseContent.d.ts +4 -0
- package/dist/components/collapse/CollapseDetails.d.ts +17 -0
- package/dist/components/collapse/CollapseTitle.d.ts +9 -0
- package/dist/components/collapse/index.d.ts +4 -0
- package/dist/components/connectionstatus/ConnectionStatus.d.ts +59 -0
- package/dist/components/connectionstatus/index.d.ts +2 -0
- package/dist/components/copy-button/CopyButton.d.ts +11 -0
- package/dist/components/copy-button/index.d.ts +2 -0
- package/dist/components/countdown/Countdown.d.ts +7 -0
- package/dist/components/countdown/index.d.ts +1 -0
- package/dist/components/diff/Diff.d.ts +7 -0
- package/dist/components/diff/index.d.ts +1 -0
- package/dist/components/divider/Divider.d.ts +21 -0
- package/dist/components/divider/Divider.styles.d.ts +25 -0
- package/dist/components/divider/index.d.ts +2 -0
- package/dist/components/dock/Dock.d.ts +14 -0
- package/dist/components/dock/DockItem.d.ts +9 -0
- package/dist/components/dock/DockLabel.d.ts +6 -0
- package/dist/components/dock/index.d.ts +3 -0
- package/dist/components/drawer/Drawer.d.ts +14 -0
- package/dist/components/drawer/index.d.ts +1 -0
- package/dist/components/dropdown/Dropdown.d.ts +28 -0
- package/dist/components/dropdown/DropdownDetails.d.ts +14 -0
- package/dist/components/dropdown/DropdownItem.d.ts +19 -0
- package/dist/components/dropdown/DropdownMenu.d.ts +9 -0
- package/dist/components/dropdown/DropdownToggle.d.ts +17 -0
- package/dist/components/dropdown/dropdownContext.d.ts +9 -0
- package/dist/components/dropdown/index.d.ts +2 -0
- package/dist/components/fileinput/FileInput.d.ts +14 -0
- package/dist/components/fileinput/index.d.ts +1 -0
- package/dist/components/flex/Flex.d.ts +18 -0
- package/dist/components/flex/index.d.ts +1 -0
- package/dist/components/footer/Footer.d.ts +11 -0
- package/dist/components/footer/FooterTitle.d.ts +4 -0
- package/dist/components/footer/index.d.ts +3 -0
- package/dist/components/form/Form.d.ts +22 -0
- package/dist/components/form/FormDropdown.d.ts +25 -0
- package/dist/components/form/FormField.d.ts +14 -0
- package/dist/components/form/Label.d.ts +7 -0
- package/dist/components/form/NumberField.d.ts +20 -0
- package/dist/components/form/PasswordField.d.ts +16 -0
- package/dist/components/form/ValidatedForm.d.ts +26 -0
- package/dist/components/form/index.d.ts +4 -0
- package/dist/components/grid/Grid.d.ts +18 -0
- package/dist/components/grid/index.d.ts +1 -0
- package/dist/components/hero/Hero.d.ts +10 -0
- package/dist/components/hero/HeroContent.d.ts +6 -0
- package/dist/components/hero/HeroOverlay.d.ts +6 -0
- package/dist/components/hero/index.d.ts +4 -0
- package/dist/components/icon/Icon.d.ts +11 -0
- package/dist/components/icon/index.d.ts +1 -0
- package/dist/components/indicator/Indicator.d.ts +30 -0
- package/dist/components/indicator/index.d.ts +2 -0
- package/dist/components/input/Input.d.ts +23 -0
- package/dist/components/input/index.d.ts +3 -8
- package/dist/components/join/Join.d.ts +9 -0
- package/dist/components/join/index.d.ts +2 -0
- package/dist/components/kbd/Kbd.d.ts +4 -0
- package/dist/components/kbd/index.d.ts +1 -0
- package/dist/components/link/Link.d.ts +12 -0
- package/dist/components/link/index.d.ts +1 -0
- package/dist/components/loading/Loading.d.ts +14 -0
- package/dist/components/loading/index.d.ts +1 -0
- package/dist/components/mask/Mask.d.ts +14 -0
- package/dist/components/mask/index.d.ts +2 -0
- package/dist/components/menu/Menu.d.ts +21 -0
- package/dist/components/menu/MenuDetails.d.ts +8 -0
- package/dist/components/menu/MenuDropdown.d.ts +12 -0
- package/dist/components/menu/MenuItem.d.ts +9 -0
- package/dist/components/menu/MenuTitle.d.ts +8 -0
- package/dist/components/menu/index.d.ts +3 -0
- package/dist/components/modal/Modal.d.ts +26 -0
- package/dist/components/modal/ModalActions.d.ts +3 -0
- package/dist/components/modal/ModalBody.d.ts +3 -0
- package/dist/components/modal/ModalHeader.d.ts +3 -0
- package/dist/components/modal/ModalLegacy.d.ts +8 -0
- package/dist/components/modal/index.d.ts +6 -0
- package/dist/components/navbar/Navbar.d.ts +15 -0
- package/dist/components/navbar/NavbarRow.d.ts +9 -0
- package/dist/components/navbar/NavbarSection.d.ts +8 -0
- package/dist/components/navbar/NavbarStack.d.ts +10 -0
- package/dist/components/navbar/index.d.ts +4 -0
- package/dist/components/pagination/Pagination.d.ts +4 -0
- package/dist/components/pagination/index.d.ts +2 -0
- package/dist/components/phonemockup/PhoneMockup.d.ts +8 -0
- package/dist/components/phonemockup/index.d.ts +1 -0
- package/dist/components/progress/Progress.d.ts +14 -0
- package/dist/components/progress/index.d.ts +1 -0
- package/dist/components/props-table/PropsTable.d.ts +14 -0
- package/dist/components/props-table/index.d.ts +2 -0
- package/dist/components/radialprogress/RadialProgress.d.ts +10 -0
- package/dist/components/radialprogress/index.d.ts +1 -0
- package/dist/components/radio/Radio.d.ts +16 -0
- package/dist/components/radio/index.d.ts +1 -0
- package/dist/components/range/Range.d.ts +12 -0
- package/dist/components/range/index.d.ts +1 -0
- package/dist/components/rating/Rating.d.ts +23 -0
- package/dist/components/rating/RatingHidden.d.ts +4 -0
- package/dist/components/rating/RatingItem.d.ts +9 -0
- package/dist/components/rating/index.d.ts +4 -0
- package/dist/components/select/Select.d.ts +15 -0
- package/dist/components/select/index.d.ts +1 -0
- package/dist/components/showcase/ShowcaseBlock.d.ts +10 -0
- package/dist/components/showcase/index.d.ts +2 -0
- package/dist/components/showcase-section/ShowcaseSection.d.ts +8 -0
- package/dist/components/showcase-section/index.d.ts +2 -0
- package/dist/components/sidenav/Sidenav.d.ts +14 -0
- package/dist/components/sidenav/SidenavButton.d.ts +9 -0
- package/dist/components/sidenav/SidenavGroup.d.ts +10 -0
- package/dist/components/sidenav/SidenavItem.d.ts +8 -0
- package/dist/components/sidenav/SidenavLink.d.ts +9 -0
- package/dist/components/sidenav/SidenavMenu.d.ts +5 -0
- package/dist/components/sidenav/index.d.ts +12 -0
- package/dist/components/skeleton/Skeleton.d.ts +5 -0
- package/dist/components/skeleton/index.d.ts +1 -0
- package/dist/components/stack/Stack.d.ts +17 -0
- package/dist/components/stack/index.d.ts +2 -0
- package/dist/components/stat-card/StatCard.d.ts +22 -0
- package/dist/components/stat-card/StatCardSection.d.ts +5 -0
- package/dist/components/stat-card/index.d.ts +1 -0
- package/dist/components/stats/Stat.d.ts +12 -0
- package/dist/components/stats/StatSection.d.ts +6 -0
- package/dist/components/stats/Stats.d.ts +15 -0
- package/dist/components/stats/index.d.ts +1 -0
- package/dist/components/status/Status.d.ts +8 -0
- package/dist/components/status/index.d.ts +2 -0
- package/dist/components/steps/Step.d.ts +19 -0
- package/dist/components/steps/Steps.d.ts +18 -0
- package/dist/components/steps/index.d.ts +2 -0
- package/dist/components/streaming-table/StreamingTable.d.ts +26 -0
- package/dist/components/streaming-table/createRowStore.d.ts +7 -0
- package/dist/components/streaming-table/createStreamingTableStore.d.ts +13 -0
- package/dist/components/streaming-table/index.d.ts +5 -0
- package/dist/components/streaming-table/types.d.ts +46 -0
- package/dist/components/svgbackground/SvgBackground.d.ts +21 -0
- package/dist/components/svgbackground/index.d.ts +2 -0
- package/dist/components/swap/Swap.d.ts +12 -0
- package/dist/components/swap/index.d.ts +1 -0
- package/dist/components/table/EnhancedTable.d.ts +45 -0
- package/dist/components/table/Table.d.ts +18 -0
- package/dist/components/table/TableBody.d.ts +5 -0
- package/dist/components/table/TableCell.d.ts +7 -0
- package/dist/components/table/TableFooter.d.ts +7 -0
- package/dist/components/table/TableHead.d.ts +7 -0
- package/dist/components/table/TableHeadCell.d.ts +7 -0
- package/dist/components/table/TableRow.d.ts +8 -0
- package/dist/components/table/index.d.ts +4 -0
- package/dist/components/tabs/RadioTab.d.ts +16 -0
- package/dist/components/tabs/Tab.d.ts +12 -0
- package/dist/components/tabs/Tabs.d.ts +12 -0
- package/dist/components/tabs/index.d.ts +4 -0
- package/dist/components/textarea/Textarea.d.ts +14 -0
- package/dist/components/textarea/index.d.ts +1 -8
- package/dist/components/timeline/Timeline.d.ts +11 -0
- package/dist/components/timeline/TimelineEnd.d.ts +6 -0
- package/dist/components/timeline/TimelineItem.d.ts +8 -0
- package/dist/components/timeline/TimelineMiddle.d.ts +4 -0
- package/dist/components/timeline/TimelineStart.d.ts +6 -0
- package/dist/components/timeline/index.d.ts +5 -0
- package/dist/components/toast/Toast.d.ts +21 -0
- package/dist/components/toast/index.d.ts +1 -0
- package/dist/components/toastcontainer/ToastContainer.d.ts +2 -0
- package/dist/components/toastcontainer/index.d.ts +1 -0
- package/dist/components/toggle/Toggle.d.ts +19 -0
- package/dist/components/toggle/index.d.ts +1 -0
- package/dist/components/tooltip/Tooltip.d.ts +15 -0
- package/dist/components/tooltip/index.d.ts +1 -0
- package/dist/components/types.d.ts +15 -0
- package/dist/components/utils.d.ts +9 -0
- package/dist/components/windowmockup/WindowMockup.d.ts +11 -0
- package/dist/components/windowmockup/index.d.ts +1 -0
- package/dist/index.d.ts +93 -7
- package/dist/index.js +12922 -4
- package/dist/lib/iterable.d.ts +9 -0
- package/dist/lib/props/index.d.ts +1 -0
- package/dist/lib/props/types.d.ts +1 -0
- package/dist/lib/refs/index.d.ts +2 -0
- package/dist/lib/refs/mergeRefs.d.ts +7 -0
- package/dist/lib/refs/types.d.ts +1 -0
- package/dist/lib/style/classes.d.ts +33 -0
- package/dist/lib/style/index.d.ts +1 -0
- package/dist/lib/tag/createIsButton.d.ts +21 -0
- package/dist/lib/tag/createTagName.d.ts +12 -0
- package/dist/lib/tag/index.d.ts +2 -0
- package/dist/sidenav/Sidenav.css +150 -0
- package/dist/stores/index.d.ts +1 -0
- package/dist/stores/toastStore.d.ts +17 -0
- package/dist/styles/icons/generated-icons.css +1 -0
- package/package.json +63 -43
- package/dist/Avatar-CzIirpVq.d.ts +0 -33
- package/dist/Button-BOYHKShy.d.ts +0 -63
- package/dist/Input-CvNxe1rq.d.ts +0 -34
- package/dist/Textarea-5_oQknZn.d.ts +0 -37
- package/dist/chunk/3MUBOGZG.js +0 -213
- package/dist/chunk/EB7KXR65.js +0 -102
- package/dist/chunk/G6RG4LR7.js +0 -87
- package/dist/chunk/HEJAQSH5.jsx +0 -100
- package/dist/chunk/HKS7ET6T.js +0 -56
- package/dist/chunk/KACNXPUM.jsx +0 -103
- package/dist/chunk/NLD5D3P7.jsx +0 -94
- package/dist/chunk/P7WPLZNA.jsx +0 -59
- package/dist/chunk/UTRNHAP4.js +0 -95
- package/dist/chunk/VMEDFWWG.js +0 -102
- package/dist/chunk/WB6NEEQV.jsx +0 -107
- package/dist/chunk/YZ3ID3UY.jsx +0 -226
- package/dist/classes-B_S9K-9I.d.ts +0 -13
- package/dist/components/avatar/index.js +0 -1
- package/dist/components/avatar/index.jsx +0 -7
- package/dist/components/button/index.js +0 -1
- package/dist/components/button/index.jsx +0 -8
- package/dist/components/input/index.js +0 -1
- package/dist/components/input/index.jsx +0 -7
- package/dist/components/polymorphic/index.d.ts +0 -35
- package/dist/components/polymorphic/index.js +0 -1
- package/dist/components/polymorphic/index.jsx +0 -8
- package/dist/components/textarea/index.js +0 -1
- package/dist/components/textarea/index.jsx +0 -7
- package/dist/index.css +0 -73
- package/dist/index.jsx +0 -20
package/dist/chunk/3MUBOGZG.js
DELETED
|
@@ -1,213 +0,0 @@
|
|
|
1
|
-
import { PolymorphicButton_default } from './G6RG4LR7.js';
|
|
2
|
-
import { cva } from './HKS7ET6T.js';
|
|
3
|
-
import { createComponent, mergeProps as mergeProps$1 } from 'solid-js/web';
|
|
4
|
-
import { mergeProps, splitProps } from 'solid-js';
|
|
5
|
-
|
|
6
|
-
// src/components/button/Button.styles.ts
|
|
7
|
-
var buttonVariants = cva(
|
|
8
|
-
[
|
|
9
|
-
"inline-flex items-center font-medium outline-none select-none",
|
|
10
|
-
"not-disabled:cursor-pointer",
|
|
11
|
-
"disabled:cursor-not-allowed disabled:opacity-25",
|
|
12
|
-
"aria-busy:cursor-wait",
|
|
13
|
-
"transition active:transition-none"
|
|
14
|
-
],
|
|
15
|
-
{
|
|
16
|
-
variants: {
|
|
17
|
-
size: {
|
|
18
|
-
sm: "text-sm leading-tight",
|
|
19
|
-
md: "text-base leading-tight",
|
|
20
|
-
lg: "text-lg leading-tight"
|
|
21
|
-
},
|
|
22
|
-
color: {
|
|
23
|
-
inverse: "",
|
|
24
|
-
primary: "",
|
|
25
|
-
secondary: "",
|
|
26
|
-
tertiary: "",
|
|
27
|
-
accent: "",
|
|
28
|
-
positive: "",
|
|
29
|
-
destructive: ""
|
|
30
|
-
},
|
|
31
|
-
align: {
|
|
32
|
-
start: "justify-start",
|
|
33
|
-
center: "justify-center",
|
|
34
|
-
end: "justify-end"
|
|
35
|
-
},
|
|
36
|
-
shape: {
|
|
37
|
-
circle: "rounded-full",
|
|
38
|
-
rounded: "rounded-lg"
|
|
39
|
-
},
|
|
40
|
-
spacing: {
|
|
41
|
-
0: "gap-0 p-0",
|
|
42
|
-
xs: "gap-1.5 px-1.5 py-1.5",
|
|
43
|
-
sm: "gap-1.5 px-2 py-2",
|
|
44
|
-
md: "gap-1.5 px-3 py-2",
|
|
45
|
-
lg: "gap-1.5 px-3.5 py-2.5"
|
|
46
|
-
},
|
|
47
|
-
loading: {
|
|
48
|
-
true: "",
|
|
49
|
-
false: ""
|
|
50
|
-
},
|
|
51
|
-
stretched: {
|
|
52
|
-
true: "w-full",
|
|
53
|
-
false: "w-fit"
|
|
54
|
-
},
|
|
55
|
-
variant: {
|
|
56
|
-
fill: [
|
|
57
|
-
"not-disabled:hover:opacity-75 not-disabled:active:opacity-50",
|
|
58
|
-
"aria-[current]:opacity-75 data-expanded:opacity-75 data-open:opacity-75",
|
|
59
|
-
"focus-visible:opacity-75"
|
|
60
|
-
],
|
|
61
|
-
gray: [
|
|
62
|
-
"bg-bg-primary not-disabled:hover:bg-bg-secondary not-disabled:active:bg-bg-secondary not-disabled:active:opacity-75",
|
|
63
|
-
"aria-[current]:bg-bg-secondary data-expanded:bg-bg-secondary data-open:bg-bg-secondary",
|
|
64
|
-
"focus-visible:bg-bg-secondary"
|
|
65
|
-
],
|
|
66
|
-
ghost: [
|
|
67
|
-
"not-disabled:hover:bg-bg-primary not-disabled:active:bg-bg-primary not-disabled:active:opacity-75",
|
|
68
|
-
"aria-[current]:bg-bg-primary data-expanded:bg-bg-primary data-open:bg-bg-primary",
|
|
69
|
-
"focus-visible:bg-bg-primary"
|
|
70
|
-
]
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
compoundVariants: [
|
|
74
|
-
{
|
|
75
|
-
variant: "fill",
|
|
76
|
-
color: "inverse",
|
|
77
|
-
class: "bg-bg-inverse text-fg-inverse"
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
variant: "fill",
|
|
81
|
-
color: "primary",
|
|
82
|
-
class: "bg-bg-primary text-fg-body"
|
|
83
|
-
},
|
|
84
|
-
{
|
|
85
|
-
variant: "fill",
|
|
86
|
-
color: "secondary",
|
|
87
|
-
class: "bg-bg-secondary text-fg-body"
|
|
88
|
-
},
|
|
89
|
-
{
|
|
90
|
-
variant: "fill",
|
|
91
|
-
color: "tertiary",
|
|
92
|
-
class: "bg-bg-tertiary text-fg-body"
|
|
93
|
-
},
|
|
94
|
-
{
|
|
95
|
-
variant: "fill",
|
|
96
|
-
color: "accent",
|
|
97
|
-
class: "bg-bg-accent text-light"
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
variant: "fill",
|
|
101
|
-
color: "positive",
|
|
102
|
-
class: "bg-bg-positive text-light"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
variant: "fill",
|
|
106
|
-
color: "destructive",
|
|
107
|
-
class: "bg-bg-destructive text-light"
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
variant: "gray",
|
|
111
|
-
color: "inverse",
|
|
112
|
-
class: "text-fg-inverse"
|
|
113
|
-
},
|
|
114
|
-
{
|
|
115
|
-
variant: "gray",
|
|
116
|
-
color: "primary",
|
|
117
|
-
class: "text-fg-primary"
|
|
118
|
-
},
|
|
119
|
-
{
|
|
120
|
-
variant: "gray",
|
|
121
|
-
color: "secondary",
|
|
122
|
-
class: "text-fg-secondary"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
variant: "gray",
|
|
126
|
-
color: "tertiary",
|
|
127
|
-
class: "text-fg-tertiary"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
variant: "gray",
|
|
131
|
-
color: "accent",
|
|
132
|
-
class: "text-fg-accent"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
variant: "gray",
|
|
136
|
-
color: "positive",
|
|
137
|
-
class: "text-fg-positive"
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
variant: "gray",
|
|
141
|
-
color: "destructive",
|
|
142
|
-
class: "text-fg-destructive"
|
|
143
|
-
},
|
|
144
|
-
{
|
|
145
|
-
variant: "ghost",
|
|
146
|
-
color: "inverse",
|
|
147
|
-
class: "text-fg-inverse"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
variant: "ghost",
|
|
151
|
-
color: "primary",
|
|
152
|
-
class: "text-fg-primary"
|
|
153
|
-
},
|
|
154
|
-
{
|
|
155
|
-
variant: "ghost",
|
|
156
|
-
color: "secondary",
|
|
157
|
-
class: "text-fg-secondary"
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
variant: "ghost",
|
|
161
|
-
color: "tertiary",
|
|
162
|
-
class: "text-fg-tertiary"
|
|
163
|
-
},
|
|
164
|
-
{
|
|
165
|
-
variant: "ghost",
|
|
166
|
-
color: "accent",
|
|
167
|
-
class: "text-fg-accent"
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
variant: "ghost",
|
|
171
|
-
color: "positive",
|
|
172
|
-
class: "text-fg-positive"
|
|
173
|
-
},
|
|
174
|
-
{
|
|
175
|
-
variant: "ghost",
|
|
176
|
-
color: "destructive",
|
|
177
|
-
class: "text-fg-destructive"
|
|
178
|
-
}
|
|
179
|
-
],
|
|
180
|
-
defaultVariants: {
|
|
181
|
-
size: "md",
|
|
182
|
-
color: "primary",
|
|
183
|
-
align: "center",
|
|
184
|
-
shape: "rounded",
|
|
185
|
-
spacing: "md",
|
|
186
|
-
variant: "fill",
|
|
187
|
-
loading: false,
|
|
188
|
-
stretched: false
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
);
|
|
192
|
-
|
|
193
|
-
// src/components/button/Button.tsx
|
|
194
|
-
var Button = (props) => {
|
|
195
|
-
const defaultedProps = mergeProps({
|
|
196
|
-
color: "primary"
|
|
197
|
-
}, props);
|
|
198
|
-
const [variantProps, otherProps] = splitProps(defaultedProps, ["class", ...buttonVariants.variantKeys]);
|
|
199
|
-
return createComponent(PolymorphicButton_default, mergeProps$1({
|
|
200
|
-
get ["class"]() {
|
|
201
|
-
return buttonVariants(variantProps);
|
|
202
|
-
},
|
|
203
|
-
get ["aria-busy"]() {
|
|
204
|
-
return variantProps.loading ? "true" : void 0;
|
|
205
|
-
}
|
|
206
|
-
}, otherProps));
|
|
207
|
-
};
|
|
208
|
-
var Button_default = Button;
|
|
209
|
-
|
|
210
|
-
// src/components/button/index.ts
|
|
211
|
-
var button_default = Button_default;
|
|
212
|
-
|
|
213
|
-
export { button_default };
|
package/dist/chunk/EB7KXR65.js
DELETED
|
@@ -1,102 +0,0 @@
|
|
|
1
|
-
import { cva, classes } from './HKS7ET6T.js';
|
|
2
|
-
import { template, spread, mergeProps, insert, createComponent, effect, className } from 'solid-js/web';
|
|
3
|
-
import { splitProps, createSignal, createMemo, Show } from 'solid-js';
|
|
4
|
-
|
|
5
|
-
// src/components/textarea/Textarea.styles.ts
|
|
6
|
-
var textareaVariants = cva(
|
|
7
|
-
[
|
|
8
|
-
"block w-full rounded-md border bg-white px-3 py-2 text-sm",
|
|
9
|
-
"text-gray-900 placeholder-gray-400",
|
|
10
|
-
"focus:outline-none focus:ring-2 focus:ring-accent focus:border-transparent",
|
|
11
|
-
"disabled:opacity-50 disabled:cursor-not-allowed"
|
|
12
|
-
],
|
|
13
|
-
{
|
|
14
|
-
variants: {
|
|
15
|
-
size: {
|
|
16
|
-
sm: "text-sm py-1.5",
|
|
17
|
-
md: "text-base py-2",
|
|
18
|
-
lg: "text-lg py-3"
|
|
19
|
-
},
|
|
20
|
-
color: {
|
|
21
|
-
primary: "border-blue-500",
|
|
22
|
-
info: "border-cyan-500",
|
|
23
|
-
success: "border-green-500",
|
|
24
|
-
warning: "border-yellow-500",
|
|
25
|
-
danger: "border-red-500"
|
|
26
|
-
},
|
|
27
|
-
loading: {
|
|
28
|
-
true: "opacity-50 cursor-wait",
|
|
29
|
-
false: ""
|
|
30
|
-
},
|
|
31
|
-
resize: {
|
|
32
|
-
none: "resize-none",
|
|
33
|
-
both: "resize",
|
|
34
|
-
x: "resize-x",
|
|
35
|
-
y: "resize-y"
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
defaultVariants: {
|
|
39
|
-
size: "md",
|
|
40
|
-
color: "primary",
|
|
41
|
-
loading: false,
|
|
42
|
-
resize: "y"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
);
|
|
46
|
-
|
|
47
|
-
// src/components/textarea/Textarea.tsx
|
|
48
|
-
var _tmpl$ = /* @__PURE__ */ template(`<small> / `);
|
|
49
|
-
var _tmpl$2 = /* @__PURE__ */ template(`<div class="relative w-full"><textarea>`);
|
|
50
|
-
var Textarea = (props) => {
|
|
51
|
-
const [localProps, variantProps, otherProps] = splitProps(props, ["hasCounter", "value", "onInput", "onFocus", "onBlur", "maxLength"], ["class", ...textareaVariants.variantKeys]);
|
|
52
|
-
const [isFocused, setFocused] = createSignal(false);
|
|
53
|
-
const valueLength = createMemo(() => typeof localProps.value === "string" ? localProps.value.length : 0);
|
|
54
|
-
const showCounter = createMemo(() => localProps.maxLength && localProps.hasCounter);
|
|
55
|
-
return (() => {
|
|
56
|
-
var _el$ = _tmpl$2(), _el$2 = _el$.firstChild;
|
|
57
|
-
_el$2.addEventListener("blur", (e) => {
|
|
58
|
-
setFocused(false);
|
|
59
|
-
typeof localProps.onBlur === "function" && localProps.onBlur(e);
|
|
60
|
-
});
|
|
61
|
-
_el$2.addEventListener("focus", (e) => {
|
|
62
|
-
setFocused(true);
|
|
63
|
-
typeof localProps.onFocus === "function" && localProps.onFocus(e);
|
|
64
|
-
});
|
|
65
|
-
spread(_el$2, mergeProps({
|
|
66
|
-
get ["class"]() {
|
|
67
|
-
return textareaVariants(variantProps);
|
|
68
|
-
},
|
|
69
|
-
get value() {
|
|
70
|
-
return localProps.value;
|
|
71
|
-
},
|
|
72
|
-
get maxLength() {
|
|
73
|
-
return localProps.maxLength;
|
|
74
|
-
},
|
|
75
|
-
get onInput() {
|
|
76
|
-
return localProps.onInput;
|
|
77
|
-
},
|
|
78
|
-
get ["aria-invalid"]() {
|
|
79
|
-
return variantProps.color === "danger" ? "true" : void 0;
|
|
80
|
-
}
|
|
81
|
-
}, otherProps), false, false);
|
|
82
|
-
insert(_el$, createComponent(Show, {
|
|
83
|
-
get when() {
|
|
84
|
-
return showCounter();
|
|
85
|
-
},
|
|
86
|
-
get children() {
|
|
87
|
-
var _el$3 = _tmpl$(), _el$4 = _el$3.firstChild;
|
|
88
|
-
insert(_el$3, valueLength, _el$4);
|
|
89
|
-
insert(_el$3, () => localProps.maxLength, null);
|
|
90
|
-
effect(() => className(_el$3, classes("absolute bottom-1 right-2 text-xs text-gray-500 transition-opacity", isFocused() ? "opacity-100" : "opacity-0")));
|
|
91
|
-
return _el$3;
|
|
92
|
-
}
|
|
93
|
-
}), null);
|
|
94
|
-
return _el$;
|
|
95
|
-
})();
|
|
96
|
-
};
|
|
97
|
-
var Textarea_default = Textarea;
|
|
98
|
-
|
|
99
|
-
// src/components/textarea/index.ts
|
|
100
|
-
var textarea_default = Textarea_default;
|
|
101
|
-
|
|
102
|
-
export { textarea_default };
|
package/dist/chunk/G6RG4LR7.js
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { createComponent, Dynamic, mergeProps } from 'solid-js/web';
|
|
2
|
-
import { splitProps, createMemo, untrack, createSignal } from 'solid-js';
|
|
3
|
-
|
|
4
|
-
// src/components/polymorphic/Polymorphic.tsx
|
|
5
|
-
var Polymorphic = (props) => {
|
|
6
|
-
const [localProps, otherProps] = splitProps(props, ["as"]);
|
|
7
|
-
const cached = createMemo(() => localProps.as ?? "div");
|
|
8
|
-
return createMemo(() => {
|
|
9
|
-
const component = cached();
|
|
10
|
-
switch (typeof component) {
|
|
11
|
-
case "function":
|
|
12
|
-
return untrack(() => component(otherProps));
|
|
13
|
-
case "string":
|
|
14
|
-
return createComponent(Dynamic, mergeProps({
|
|
15
|
-
component
|
|
16
|
-
}, otherProps));
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
};
|
|
20
|
-
var Polymorphic_default = Polymorphic;
|
|
21
|
-
|
|
22
|
-
// src/lib/iterable.ts
|
|
23
|
-
function chain(callbacks) {
|
|
24
|
-
return (...args) => {
|
|
25
|
-
for (const callback of callbacks) callback?.(...args);
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
// src/lib/refs/mergeRefs.ts
|
|
30
|
-
function mergeRefs(...refs) {
|
|
31
|
-
return chain(refs);
|
|
32
|
-
}
|
|
33
|
-
function createTagName(props) {
|
|
34
|
-
return createMemo(
|
|
35
|
-
() => props.element()?.tagName.toLowerCase() ?? props.fallback
|
|
36
|
-
);
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// src/lib/tag/createIsButton.ts
|
|
40
|
-
var BUTTON_INPUT_TYPES = [
|
|
41
|
-
"button",
|
|
42
|
-
"color",
|
|
43
|
-
"file",
|
|
44
|
-
"image",
|
|
45
|
-
"reset",
|
|
46
|
-
"submit"
|
|
47
|
-
];
|
|
48
|
-
function isButton(tagName, type) {
|
|
49
|
-
if (tagName === "button") {
|
|
50
|
-
return true;
|
|
51
|
-
}
|
|
52
|
-
if (tagName === "input" && type !== void 0) {
|
|
53
|
-
return BUTTON_INPUT_TYPES.indexOf(type) !== -1;
|
|
54
|
-
}
|
|
55
|
-
return false;
|
|
56
|
-
}
|
|
57
|
-
function createIsButton(props) {
|
|
58
|
-
const tagName = createTagName({
|
|
59
|
-
element: props.element,
|
|
60
|
-
fallback: "button"
|
|
61
|
-
});
|
|
62
|
-
return createMemo(() => isButton(tagName(), props.type));
|
|
63
|
-
}
|
|
64
|
-
var PolymorphicButton = (props) => {
|
|
65
|
-
const [ref, setRef] = createSignal(null);
|
|
66
|
-
const [localProps, otherProps] = splitProps(props, ["ref", "type"]);
|
|
67
|
-
const isButton2 = createIsButton({
|
|
68
|
-
element: ref,
|
|
69
|
-
type: localProps.type
|
|
70
|
-
});
|
|
71
|
-
return createComponent(Polymorphic_default, mergeProps({
|
|
72
|
-
as: "button",
|
|
73
|
-
ref(r$) {
|
|
74
|
-
var _ref$ = mergeRefs(setRef, localProps.ref);
|
|
75
|
-
typeof _ref$ === "function" && _ref$(r$);
|
|
76
|
-
},
|
|
77
|
-
get type() {
|
|
78
|
-
return isButton2() ? "button" : void 0;
|
|
79
|
-
},
|
|
80
|
-
get role() {
|
|
81
|
-
return !isButton2() ? "button" : void 0;
|
|
82
|
-
}
|
|
83
|
-
}, otherProps));
|
|
84
|
-
};
|
|
85
|
-
var PolymorphicButton_default = PolymorphicButton;
|
|
86
|
-
|
|
87
|
-
export { PolymorphicButton_default, Polymorphic_default };
|
package/dist/chunk/HEJAQSH5.jsx
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
cva
|
|
3
|
-
} from "./P7WPLZNA.jsx";
|
|
4
|
-
|
|
5
|
-
// src/components/Avatar/Avatar.tsx
|
|
6
|
-
import {
|
|
7
|
-
createSignal,
|
|
8
|
-
createMemo,
|
|
9
|
-
createEffect,
|
|
10
|
-
mergeProps,
|
|
11
|
-
splitProps,
|
|
12
|
-
Show
|
|
13
|
-
} from "solid-js";
|
|
14
|
-
|
|
15
|
-
// src/components/Avatar/Avatar.styles.ts
|
|
16
|
-
var avatarVariants = cva(
|
|
17
|
-
[
|
|
18
|
-
"flex items-center justify-center mx-1",
|
|
19
|
-
"font-medium outline-none select-none transition active:transition-none",
|
|
20
|
-
"not-disabled:cursor-pointer",
|
|
21
|
-
"disabled:cursor-not-allowed disabled:opacity-25",
|
|
22
|
-
"aria-busy:cursor-wait"
|
|
23
|
-
],
|
|
24
|
-
{
|
|
25
|
-
variants: {
|
|
26
|
-
size: {
|
|
27
|
-
sm: "size-8 text-sm",
|
|
28
|
-
md: "size-16 text-base",
|
|
29
|
-
lg: "size-24 text-lg"
|
|
30
|
-
},
|
|
31
|
-
shape: {
|
|
32
|
-
circle: "rounded-full overflow-hidden",
|
|
33
|
-
rounded: "rounded-lg overflow-hidden"
|
|
34
|
-
},
|
|
35
|
-
variant: {
|
|
36
|
-
filled: "bg-gray-200 text-gray-800",
|
|
37
|
-
outlined: "border-2 border-gray-300 text-gray-800",
|
|
38
|
-
ghost: "text-gray-800"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
defaultVariants: {
|
|
42
|
-
size: "md",
|
|
43
|
-
shape: "circle",
|
|
44
|
-
variant: "filled"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
);
|
|
48
|
-
|
|
49
|
-
// src/components/Avatar/utils.ts
|
|
50
|
-
function parseCaption(alt) {
|
|
51
|
-
if (!alt) return "";
|
|
52
|
-
const parts = alt.split(" ");
|
|
53
|
-
if (parts.length >= 2 && parts[0] && parts[1]) {
|
|
54
|
-
return `${parts[0][0] ?? ""}${parts[1][0] ?? ""}`;
|
|
55
|
-
}
|
|
56
|
-
return "";
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// src/components/Avatar/Avatar.tsx
|
|
60
|
-
var Avatar = (rawProps) => {
|
|
61
|
-
const props = mergeProps({ alt: "User Avatar" }, rawProps);
|
|
62
|
-
const [variantProps, otherProps] = splitProps(props, [
|
|
63
|
-
"class",
|
|
64
|
-
...avatarVariants.variantKeys
|
|
65
|
-
]);
|
|
66
|
-
const [source, setSource] = createSignal(props.src || props.dataSrc);
|
|
67
|
-
createEffect(() => {
|
|
68
|
-
if (import.meta.env.PROD && props.dataSrc) {
|
|
69
|
-
setSource(props.dataSrc);
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
const backgroundColor = createMemo(
|
|
73
|
-
() => source() ? "" : props.class ?? "bg-blue-500"
|
|
74
|
-
);
|
|
75
|
-
const textColor = createMemo(
|
|
76
|
-
() => source() ? "" : props.text ?? "text-white"
|
|
77
|
-
);
|
|
78
|
-
const caption = createMemo(() => parseCaption(props.alt));
|
|
79
|
-
return <figure class={avatarVariants(variantProps)}>
|
|
80
|
-
<Show
|
|
81
|
-
when={source()}
|
|
82
|
-
fallback={<figcaption class="text-lg">{caption()}</figcaption>}
|
|
83
|
-
>
|
|
84
|
-
<img
|
|
85
|
-
src={source()}
|
|
86
|
-
data-src={props.dataSrc}
|
|
87
|
-
class="size-full object-cover"
|
|
88
|
-
{...otherProps}
|
|
89
|
-
/>
|
|
90
|
-
</Show>
|
|
91
|
-
</figure>;
|
|
92
|
-
};
|
|
93
|
-
var Avatar_default = Avatar;
|
|
94
|
-
|
|
95
|
-
// src/components/Avatar/index.ts
|
|
96
|
-
var Avatar_default2 = Avatar_default;
|
|
97
|
-
|
|
98
|
-
export {
|
|
99
|
-
Avatar_default2 as Avatar_default
|
|
100
|
-
};
|
package/dist/chunk/HKS7ET6T.js
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
// src/lib/style/classes.ts
|
|
2
|
-
function classes(...args) {
|
|
3
|
-
return args.flat().filter(Boolean).join(" ");
|
|
4
|
-
}
|
|
5
|
-
function falsyToString(value) {
|
|
6
|
-
return typeof value === "boolean" ? `${value}` : value === 0 ? "0" : value;
|
|
7
|
-
}
|
|
8
|
-
function cva(base, config) {
|
|
9
|
-
const fn = (props) => {
|
|
10
|
-
if (config?.variants == null) return classes(base, props?.class);
|
|
11
|
-
const { variants, defaultVariants } = config;
|
|
12
|
-
const getVariantClassNames = Object.keys(variants).map((variant) => {
|
|
13
|
-
const variantProp = props?.[variant];
|
|
14
|
-
const defaultVariantProp = defaultVariants?.[variant];
|
|
15
|
-
if (variantProp === null) return null;
|
|
16
|
-
const variantKey = falsyToString(variantProp) || falsyToString(
|
|
17
|
-
defaultVariantProp
|
|
18
|
-
);
|
|
19
|
-
return variants[variant]?.[variantKey];
|
|
20
|
-
});
|
|
21
|
-
const propsWithoutUndefined = Object.entries(props || {}).reduce(
|
|
22
|
-
(acc, [key, value]) => {
|
|
23
|
-
if (value !== void 0) {
|
|
24
|
-
acc[key] = value;
|
|
25
|
-
}
|
|
26
|
-
return acc;
|
|
27
|
-
},
|
|
28
|
-
{}
|
|
29
|
-
);
|
|
30
|
-
const getCompoundVariantClassNames = config?.compoundVariants?.reduce(
|
|
31
|
-
(acc, { class: cvClass, ...compoundVariantOptions }) => {
|
|
32
|
-
const isMatch = Object.entries(compoundVariantOptions).every(
|
|
33
|
-
([key, value]) => {
|
|
34
|
-
const currentValue = {
|
|
35
|
-
...defaultVariants,
|
|
36
|
-
...propsWithoutUndefined
|
|
37
|
-
}[key];
|
|
38
|
-
return Array.isArray(value) ? value.includes(currentValue) : currentValue === value;
|
|
39
|
-
}
|
|
40
|
-
);
|
|
41
|
-
return isMatch ? [...acc, cvClass] : acc;
|
|
42
|
-
},
|
|
43
|
-
[]
|
|
44
|
-
);
|
|
45
|
-
return classes(
|
|
46
|
-
base,
|
|
47
|
-
getVariantClassNames,
|
|
48
|
-
getCompoundVariantClassNames,
|
|
49
|
-
props?.class
|
|
50
|
-
);
|
|
51
|
-
};
|
|
52
|
-
fn.variantKeys = config?.variants ? Object.keys(config.variants) : [];
|
|
53
|
-
return fn;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export { classes, cva };
|
package/dist/chunk/KACNXPUM.jsx
DELETED
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
// src/components/polymorphic/Polymorphic.tsx
|
|
2
|
-
import {
|
|
3
|
-
createMemo,
|
|
4
|
-
splitProps,
|
|
5
|
-
untrack
|
|
6
|
-
} from "solid-js";
|
|
7
|
-
import { Dynamic } from "solid-js/web";
|
|
8
|
-
var Polymorphic = (props) => {
|
|
9
|
-
const [localProps, otherProps] = splitProps(props, ["as"]);
|
|
10
|
-
const cached = createMemo(() => localProps.as ?? "div");
|
|
11
|
-
return createMemo(() => {
|
|
12
|
-
const component = cached();
|
|
13
|
-
switch (typeof component) {
|
|
14
|
-
case "function":
|
|
15
|
-
return untrack(() => component(otherProps));
|
|
16
|
-
case "string":
|
|
17
|
-
return <Dynamic
|
|
18
|
-
component={component}
|
|
19
|
-
{...otherProps}
|
|
20
|
-
/>;
|
|
21
|
-
}
|
|
22
|
-
});
|
|
23
|
-
};
|
|
24
|
-
var Polymorphic_default = Polymorphic;
|
|
25
|
-
|
|
26
|
-
// src/lib/iterable.ts
|
|
27
|
-
function chain(callbacks) {
|
|
28
|
-
return (...args) => {
|
|
29
|
-
for (const callback of callbacks) callback?.(...args);
|
|
30
|
-
};
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
// src/lib/refs/mergeRefs.ts
|
|
34
|
-
function mergeRefs(...refs) {
|
|
35
|
-
return chain(refs);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// src/lib/tag/createIsButton.ts
|
|
39
|
-
import { createMemo as createMemo3 } from "solid-js";
|
|
40
|
-
|
|
41
|
-
// src/lib/tag/createTagName.ts
|
|
42
|
-
import { createMemo as createMemo2 } from "solid-js";
|
|
43
|
-
function createTagName(props) {
|
|
44
|
-
return createMemo2(
|
|
45
|
-
() => props.element()?.tagName.toLowerCase() ?? props.fallback
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// src/lib/tag/createIsButton.ts
|
|
50
|
-
var BUTTON_INPUT_TYPES = [
|
|
51
|
-
"button",
|
|
52
|
-
"color",
|
|
53
|
-
"file",
|
|
54
|
-
"image",
|
|
55
|
-
"reset",
|
|
56
|
-
"submit"
|
|
57
|
-
];
|
|
58
|
-
function isButton(tagName, type) {
|
|
59
|
-
if (tagName === "button") {
|
|
60
|
-
return true;
|
|
61
|
-
}
|
|
62
|
-
if (tagName === "input" && type !== void 0) {
|
|
63
|
-
return BUTTON_INPUT_TYPES.indexOf(type) !== -1;
|
|
64
|
-
}
|
|
65
|
-
return false;
|
|
66
|
-
}
|
|
67
|
-
function createIsButton(props) {
|
|
68
|
-
const tagName = createTagName({
|
|
69
|
-
element: props.element,
|
|
70
|
-
fallback: "button"
|
|
71
|
-
});
|
|
72
|
-
return createMemo3(() => isButton(tagName(), props.type));
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
// src/components/polymorphic/PolymorphicButton.tsx
|
|
76
|
-
import {
|
|
77
|
-
createSignal,
|
|
78
|
-
splitProps as splitProps2
|
|
79
|
-
} from "solid-js";
|
|
80
|
-
var PolymorphicButton = (props) => {
|
|
81
|
-
const [ref, setRef] = createSignal(null);
|
|
82
|
-
const [localProps, otherProps] = splitProps2(props, [
|
|
83
|
-
"ref",
|
|
84
|
-
"type"
|
|
85
|
-
]);
|
|
86
|
-
const isButton2 = createIsButton({
|
|
87
|
-
element: ref,
|
|
88
|
-
type: localProps.type
|
|
89
|
-
});
|
|
90
|
-
return <Polymorphic_default
|
|
91
|
-
as="button"
|
|
92
|
-
ref={mergeRefs(setRef, localProps.ref)}
|
|
93
|
-
type={isButton2() ? "button" : void 0}
|
|
94
|
-
role={!isButton2() ? "button" : void 0}
|
|
95
|
-
{...otherProps}
|
|
96
|
-
/>;
|
|
97
|
-
};
|
|
98
|
-
var PolymorphicButton_default = PolymorphicButton;
|
|
99
|
-
|
|
100
|
-
export {
|
|
101
|
-
Polymorphic_default,
|
|
102
|
-
PolymorphicButton_default
|
|
103
|
-
};
|