@recursica/mantine-adapter 0.9.4 → 0.11.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/.storybook/commonArgTypes.ts +148 -0
- package/CHANGELOG.md +94 -0
- package/README.md +48 -332
- package/dist/index.d.ts +2 -8
- package/dist/mantine-adapter.cjs +2 -0
- package/dist/mantine-adapter.cjs.map +1 -0
- package/dist/mantine-adapter.css +1 -0
- package/dist/mantine-adapter.js +1963 -0
- package/dist/mantine-adapter.js.map +1 -0
- package/dist/src/components/Accordion/Accordion.d.ts +42 -0
- package/dist/src/components/Accordion/index.d.ts +1 -0
- package/dist/src/components/AssistiveElement/AssistiveElement.d.ts +10 -0
- package/dist/src/components/Avatar/Avatar.d.ts +9 -0
- package/dist/src/components/Avatar/index.d.ts +1 -0
- package/dist/src/components/Badge/Badge.d.ts +8 -0
- package/dist/src/components/Breadcrumb/Breadcrumb.d.ts +6 -0
- package/dist/src/components/Button/Button.d.ts +10 -0
- package/dist/src/components/Button/index.d.ts +1 -0
- package/dist/src/components/Card/Card.d.ts +38 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +13 -0
- package/dist/src/components/Checkbox/CheckboxGroup.d.ts +9 -0
- package/dist/src/components/Chip/Chip.d.ts +15 -0
- package/dist/src/components/Container/Container.d.ts +18 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +3 -0
- package/dist/src/components/Dropdown/Dropdown.d.ts +11 -0
- package/dist/src/components/FileInput/FileInput.d.ts +3 -0
- package/dist/src/components/FileUpload/FileUpload.d.ts +3 -0
- package/dist/src/components/Flex/Flex.d.ts +17 -0
- package/dist/src/components/FormControlLayout/FormControlLayout.d.ts +21 -0
- package/dist/src/components/FormControlWrapper/FormControlWrapper.d.ts +20 -0
- package/dist/src/components/Group/Group.d.ts +17 -0
- package/dist/src/components/HoverCard/HoverCard.d.ts +3 -0
- package/dist/src/components/Label/Label.d.ts +19 -0
- package/dist/src/components/Label/index.d.ts +1 -0
- package/dist/src/components/Link/Link.d.ts +3 -0
- package/dist/src/components/Loader/Loader.d.ts +10 -0
- package/dist/src/components/Menu/Menu.d.ts +3 -0
- package/dist/src/components/Modal/Modal.d.ts +3 -0
- package/dist/src/components/NumberInput/NumberInput.d.ts +3 -0
- package/dist/src/components/Pagination/Pagination.d.ts +3 -0
- package/dist/src/components/Panel/Panel.d.ts +3 -0
- package/dist/src/components/Popover/Popover.d.ts +3 -0
- package/dist/src/components/Radio/Radio.d.ts +13 -0
- package/dist/src/components/Radio/RadioGroup.d.ts +9 -0
- package/dist/src/components/ReadOnlyField/ReadOnlyBooleanField.d.ts +5 -0
- package/dist/src/components/ReadOnlyField/ReadOnlyField.d.ts +20 -0
- package/dist/src/components/ReadOnlyField/ReadOnlySwitchField.d.ts +5 -0
- package/dist/src/components/ReadOnlyField/ReadOnlyTextField.d.ts +8 -0
- package/dist/src/components/ReadOnlyField/WithReadOnlyWrapper.d.ts +28 -0
- package/dist/src/components/ReadOnlyField/index.d.ts +5 -0
- package/dist/src/components/Search/Search.d.ts +3 -0
- package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +3 -0
- package/dist/src/components/Slider/Slider.d.ts +3 -0
- package/dist/src/components/Stack/Stack.d.ts +15 -0
- package/dist/src/components/Stepper/Stepper.d.ts +3 -0
- package/dist/src/components/Switch/Switch.d.ts +13 -0
- package/dist/src/components/Switch/SwitchGroup.d.ts +9 -0
- package/dist/src/components/Table/Table.d.ts +3 -0
- package/dist/src/components/Tabs/Tabs.d.ts +3 -0
- package/dist/src/components/Text/Text.d.ts +17 -0
- package/dist/src/components/TextArea/TextArea.d.ts +15 -0
- package/dist/src/components/TextField/TextField.d.ts +9 -0
- package/dist/src/components/TimePicker/TimePicker.d.ts +3 -0
- package/dist/src/components/Timeline/Timeline.d.ts +3 -0
- package/dist/src/components/Title/Title.d.ts +13 -0
- package/dist/src/components/Toast/Toast.d.ts +3 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +3 -0
- package/dist/src/components/TransferList/TransferList.d.ts +3 -0
- package/dist/src/components/index.d.ts +48 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/types/index.d.ts +6 -0
- package/dist/src/utils/ColorSchemeWrapper.d.ts +3 -0
- package/dist/src/utils/RequireAccessibleLabel.d.ts +18 -0
- package/dist/src/utils/copyToClipboard.d.ts +8 -0
- package/dist/src/utils/filterStylingProps.d.ts +36 -0
- package/dist/src/utils/index.d.ts +1 -0
- package/dist/vite.config.d.ts +2 -0
- package/dist/vite.svg +1 -0
- package/dist/vitest.workspace.d.ts +2 -0
- package/package.json +74 -35
- package/src/OverStyling.stories.tsx +174 -0
- package/src/Version.stories.tsx +56 -0
- package/src/components/Accordion/ACCORDION_IMPLEMENTATION_NOTES.md +48 -0
- package/src/components/Accordion/Accordion.module.css +282 -0
- package/src/components/Accordion/Accordion.stories.tsx +145 -0
- package/src/components/Accordion/Accordion.tsx +200 -0
- package/src/components/Accordion/index.ts +1 -0
- package/src/components/AssistiveElement/AssistiveElement.module.css +111 -0
- package/src/components/AssistiveElement/AssistiveElement.stories.tsx +75 -0
- package/src/components/AssistiveElement/AssistiveElement.tsx +91 -0
- package/src/components/Avatar/AVATAR_IMPLEMENTATION_NOTES.md +24 -0
- package/src/components/Avatar/Avatar.module.css +340 -0
- package/src/components/Avatar/Avatar.stories.tsx +107 -0
- package/src/components/Avatar/Avatar.tsx +100 -0
- package/src/components/Avatar/index.ts +1 -0
- package/src/components/Badge/BADGE_IMPLEMENTATION_NOTES.md +18 -0
- package/src/components/Badge/Badge.module.css +124 -0
- package/src/components/Badge/Badge.stories.tsx +78 -0
- package/src/components/Badge/Badge.tsx +66 -0
- package/src/components/Breadcrumb/BREADCRUMB_IMPLEMENTATION_NOTES.md +14 -0
- package/src/components/Breadcrumb/Breadcrumb.module.css +26 -0
- package/src/components/Breadcrumb/Breadcrumb.stories.tsx +77 -0
- package/src/components/Breadcrumb/Breadcrumb.tsx +64 -0
- package/src/components/Button/Button.module.css +275 -0
- package/src/components/Button/Button.stories.tsx +103 -0
- package/src/components/Button/Button.tsx +122 -0
- package/src/components/Button/IMPLEMENTATION_NOTES.md +45 -0
- package/src/components/Button/index.ts +1 -0
- package/src/components/Card/CARD_IMPLEMENTATION_NOTES.md +10 -0
- package/src/components/Card/Card.module.css +60 -0
- package/src/components/Card/Card.stories.tsx +141 -0
- package/src/components/Card/Card.tsx +176 -0
- package/src/components/Checkbox/CHECKBOX_IMPLEMENTATION_NOTES.md +25 -0
- package/src/components/Checkbox/Checkbox.module.css +204 -0
- package/src/components/Checkbox/Checkbox.stories.tsx +94 -0
- package/src/components/Checkbox/Checkbox.tsx +159 -0
- package/src/components/Checkbox/CheckboxGroup.stories.tsx +139 -0
- package/src/components/Checkbox/CheckboxGroup.tsx +120 -0
- package/src/components/Chip/CHIP_IMPLEMENTATION_NOTES.md +35 -0
- package/src/components/Chip/Chip.module.css +218 -0
- package/src/components/Chip/Chip.stories.tsx +115 -0
- package/src/components/Chip/Chip.tsx +143 -0
- package/src/components/Container/CONTAINER_IMPLEMENTATION_NOTES.md +4 -0
- package/src/components/Container/Container.module.css +7 -0
- package/src/components/Container/Container.stories.tsx +118 -0
- package/src/components/Container/Container.tsx +89 -0
- package/src/components/DatePicker/DatePicker.stories.tsx +18 -0
- package/src/components/DatePicker/DatePicker.tsx +7 -0
- package/src/components/Dropdown/DROPDOWN_IMPLEMENTATION_NOTES.md +7 -0
- package/src/components/Dropdown/Dropdown.module.css +272 -0
- package/src/components/Dropdown/Dropdown.stories.tsx +91 -0
- package/src/components/Dropdown/Dropdown.tsx +174 -0
- package/src/components/FileInput/FileInput.stories.tsx +18 -0
- package/src/components/FileInput/FileInput.tsx +7 -0
- package/src/components/FileUpload/FileUpload.stories.tsx +18 -0
- package/src/components/FileUpload/FileUpload.tsx +7 -0
- package/src/components/Flex/FLEX_IMPLEMENTATION_NOTES.md +4 -0
- package/src/components/Flex/Flex.module.css +7 -0
- package/src/components/Flex/Flex.stories.tsx +128 -0
- package/src/components/Flex/Flex.tsx +68 -0
- package/src/components/FormControlLayout/FormControlLayout.module.css +80 -0
- package/src/components/FormControlLayout/FormControlLayout.stories.tsx +82 -0
- package/src/components/FormControlLayout/FormControlLayout.tsx +78 -0
- package/src/components/FormControlWrapper/FORMCONTROLWRAPPER_IMPLEMENTATION_NOTES.md +32 -0
- package/src/components/FormControlWrapper/FormControlWrapper.module.css +8 -0
- package/src/components/FormControlWrapper/FormControlWrapper.stories.tsx +129 -0
- package/src/components/FormControlWrapper/FormControlWrapper.tsx +157 -0
- package/src/components/Group/GROUP_IMPLEMENTATION_NOTES.md +4 -0
- package/src/components/Group/Group.module.css +7 -0
- package/src/components/Group/Group.stories.tsx +120 -0
- package/src/components/Group/Group.tsx +68 -0
- package/src/components/HoverCard/HoverCard.stories.tsx +17 -0
- package/src/components/HoverCard/HoverCard.tsx +7 -0
- package/src/components/Label/LABEL_IMPLEMENTATION_NOTES.md +48 -0
- package/src/components/Label/Label.module.css +140 -0
- package/src/components/Label/Label.stories.tsx +122 -0
- package/src/components/Label/Label.tsx +127 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link/Link.stories.tsx +17 -0
- package/src/components/Link/Link.tsx +7 -0
- package/src/components/Loader/Loader.module.css +60 -0
- package/src/components/Loader/Loader.stories.tsx +103 -0
- package/src/components/Loader/Loader.tsx +76 -0
- package/src/components/Menu/Menu.stories.tsx +17 -0
- package/src/components/Menu/Menu.tsx +7 -0
- package/src/components/Modal/Modal.stories.tsx +17 -0
- package/src/components/Modal/Modal.tsx +7 -0
- package/src/components/NumberInput/NumberInput.stories.tsx +18 -0
- package/src/components/NumberInput/NumberInput.tsx +7 -0
- package/src/components/Pagination/Pagination.stories.tsx +17 -0
- package/src/components/Pagination/Pagination.tsx +7 -0
- package/src/components/Panel/Panel.stories.tsx +17 -0
- package/src/components/Panel/Panel.tsx +7 -0
- package/src/components/Popover/Popover.stories.tsx +17 -0
- package/src/components/Popover/Popover.tsx +7 -0
- package/src/components/Radio/Radio.module.css +207 -0
- package/src/components/Radio/Radio.stories.tsx +90 -0
- package/src/components/Radio/Radio.tsx +174 -0
- package/src/components/Radio/RadioGroup.stories.tsx +117 -0
- package/src/components/Radio/RadioGroup.tsx +118 -0
- package/src/components/ReadOnlyField/READ_ONLY_FIELD_IMPLEMENTATION_NOTES.md +15 -0
- package/src/components/ReadOnlyField/ReadOnlyBooleanField.tsx +21 -0
- package/src/components/ReadOnlyField/ReadOnlyField.module.css +49 -0
- package/src/components/ReadOnlyField/ReadOnlyField.stories.tsx +163 -0
- package/src/components/ReadOnlyField/ReadOnlyField.tsx +102 -0
- package/src/components/ReadOnlyField/ReadOnlySwitchField.tsx +21 -0
- package/src/components/ReadOnlyField/ReadOnlyTextField.tsx +48 -0
- package/src/components/ReadOnlyField/WithReadOnlyWrapper.tsx +93 -0
- package/src/components/ReadOnlyField/index.ts +5 -0
- package/src/components/Search/Search.stories.tsx +17 -0
- package/src/components/Search/Search.tsx +7 -0
- package/src/components/SegmentedControl/SegmentedControl.stories.tsx +18 -0
- package/src/components/SegmentedControl/SegmentedControl.tsx +7 -0
- package/src/components/Slider/Slider.stories.tsx +18 -0
- package/src/components/Slider/Slider.tsx +7 -0
- package/src/components/Stack/STACK_IMPLEMENTATION_NOTES.md +4 -0
- package/src/components/Stack/Stack.module.css +7 -0
- package/src/components/Stack/Stack.stories.tsx +108 -0
- package/src/components/Stack/Stack.tsx +66 -0
- package/src/components/Stepper/Stepper.stories.tsx +17 -0
- package/src/components/Stepper/Stepper.tsx +7 -0
- package/src/components/Switch/SWITCH_IMPLEMENTATION_NOTES.md +28 -0
- package/src/components/Switch/Switch.module.css +199 -0
- package/src/components/Switch/Switch.stories.tsx +111 -0
- package/src/components/Switch/Switch.tsx +168 -0
- package/src/components/Switch/SwitchGroup.stories.tsx +132 -0
- package/src/components/Switch/SwitchGroup.tsx +118 -0
- package/src/components/Table/Table.stories.tsx +17 -0
- package/src/components/Table/Table.tsx +7 -0
- package/src/components/Tabs/Tabs.stories.tsx +17 -0
- package/src/components/Tabs/Tabs.tsx +7 -0
- package/src/components/Text/Text.stories.tsx +88 -0
- package/src/components/Text/Text.tsx +54 -0
- package/src/components/TextArea/TEXTAREA_IMPLEMENTATION_NOTES.md +7 -0
- package/src/components/TextArea/TextArea.module.css +225 -0
- package/src/components/TextArea/TextArea.stories.tsx +91 -0
- package/src/components/TextArea/TextArea.tsx +152 -0
- package/src/components/TextField/TEXTFIELD_IMPLEMENTATION_NOTES.md +19 -0
- package/src/components/TextField/TextField.module.css +225 -0
- package/src/components/TextField/TextField.stories.tsx +162 -0
- package/src/components/TextField/TextField.tsx +139 -0
- package/src/components/TimePicker/TimePicker.stories.tsx +18 -0
- package/src/components/TimePicker/TimePicker.tsx +7 -0
- package/src/components/Timeline/Timeline.stories.tsx +17 -0
- package/src/components/Timeline/Timeline.tsx +7 -0
- package/src/components/Title/Title.stories.tsx +63 -0
- package/src/components/Title/Title.tsx +45 -0
- package/src/components/Toast/Toast.stories.tsx +17 -0
- package/src/components/Toast/Toast.tsx +7 -0
- package/src/components/Tooltip/Tooltip.stories.tsx +17 -0
- package/src/components/Tooltip/Tooltip.tsx +7 -0
- package/src/components/TransferList/TransferList.stories.tsx +17 -0
- package/src/components/TransferList/TransferList.tsx +7 -0
- package/src/components/index.ts +48 -0
- package/src/env.d.ts +7 -0
- package/src/index.ts +3 -0
- package/src/types/index.ts +9 -0
- package/src/types/mantine.d.ts +7 -0
- package/src/types/scss-modules.d.ts +9 -0
- package/src/utils/ColorSchemeWrapper.tsx +27 -0
- package/src/utils/RequireAccessibleLabel.ts +12 -0
- package/src/utils/copyToClipboard.ts +36 -0
- package/src/utils/filterStylingProps.ts +141 -0
- package/src/utils/index.ts +1 -0
- package/dist/adapter/generateBorderRadiusType.d.ts +0 -3
- package/dist/adapter/generateBorderRadiusType.d.ts.map +0 -1
- package/dist/adapter/generateColorTypes.d.ts +0 -6
- package/dist/adapter/generateColorTypes.d.ts.map +0 -1
- package/dist/adapter/generateIcons.d.ts +0 -8
- package/dist/adapter/generateIcons.d.ts.map +0 -1
- package/dist/adapter/generateMantineTheme.d.ts +0 -19
- package/dist/adapter/generateMantineTheme.d.ts.map +0 -1
- package/dist/adapter/generatePrettierignore.d.ts +0 -3
- package/dist/adapter/generatePrettierignore.d.ts.map +0 -1
- package/dist/adapter/generateRecursicaObject.d.ts +0 -7
- package/dist/adapter/generateRecursicaObject.d.ts.map +0 -1
- package/dist/adapter/generateRecursicaThemes.d.ts +0 -12
- package/dist/adapter/generateRecursicaThemes.d.ts.map +0 -1
- package/dist/adapter/generateRecursicaTokens.d.ts +0 -3
- package/dist/adapter/generateRecursicaTokens.d.ts.map +0 -1
- package/dist/adapter/generateSpacersType.d.ts +0 -3
- package/dist/adapter/generateSpacersType.d.ts.map +0 -1
- package/dist/adapter/generateUiKit.d.ts +0 -8
- package/dist/adapter/generateUiKit.d.ts.map +0 -1
- package/dist/adapter/generateVanillaExtractThemes.d.ts +0 -12
- package/dist/adapter/generateVanillaExtractThemes.d.ts.map +0 -1
- package/dist/adapter/index.d.ts +0 -44
- package/dist/adapter/index.d.ts.map +0 -1
- package/dist/cli.d.ts +0 -6
- package/dist/cli.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -921
- package/dist/index.js.map +0 -1
- package/dist/main.cjs +0 -928
- package/dist/main.cjs.map +0 -1
- package/dist/main.d.ts +0 -2
- package/dist/main.d.ts.map +0 -1
- package/dist/main.js +0 -926
- package/dist/main.js.map +0 -1
- package/dist/shared/processTokens.d.ts +0 -22
- package/dist/shared/processTokens.d.ts.map +0 -1
- package/dist/types.d.ts +0 -62
- package/dist/types.d.ts.map +0 -1
- package/dist/utils/fileCheck.d.ts +0 -8
- package/dist/utils/fileCheck.d.ts.map +0 -1
- package/dist/utils/loadConfig.d.ts +0 -24
- package/dist/utils/loadConfig.d.ts.map +0 -1
- package/dist/webworker.d.ts +0 -2
- package/dist/webworker.d.ts.map +0 -1
- package/dist/webworker.js +0 -791
|
@@ -0,0 +1,1963 @@
|
|
|
1
|
+
import { jsx as e, jsxs as B, Fragment as ne } from "react/jsx-runtime";
|
|
2
|
+
import j, { forwardRef as $, useId as Ye, useEffect as Ze } from "react";
|
|
3
|
+
import { Accordion as ue, Avatar as He, Badge as Ke, Breadcrumbs as Ue, Button as Qe, Card as _e, Input as We, Box as fe, Checkbox as ke, Chip as Xe, Container as Je, Select as eo, Flex as oo, Group as to, Loader as ro, Radio as we, Stack as ao, Switch as Ae, CheckIcon as so, CloseIcon as no, Text as lo, Textarea as io, Title as co } from "@mantine/core";
|
|
4
|
+
const po = [
|
|
5
|
+
"className",
|
|
6
|
+
"classNames",
|
|
7
|
+
"style",
|
|
8
|
+
"styles",
|
|
9
|
+
"vars",
|
|
10
|
+
// Internal structure hooks
|
|
11
|
+
"p",
|
|
12
|
+
"px",
|
|
13
|
+
"py",
|
|
14
|
+
"pt",
|
|
15
|
+
"pb",
|
|
16
|
+
"pl",
|
|
17
|
+
"pr",
|
|
18
|
+
// Padding
|
|
19
|
+
"bg",
|
|
20
|
+
"c",
|
|
21
|
+
"opacity",
|
|
22
|
+
// Color
|
|
23
|
+
"ff",
|
|
24
|
+
"fz",
|
|
25
|
+
"fw",
|
|
26
|
+
"lts",
|
|
27
|
+
"ta",
|
|
28
|
+
"lh",
|
|
29
|
+
"fs",
|
|
30
|
+
"tt",
|
|
31
|
+
"td",
|
|
32
|
+
// Typography
|
|
33
|
+
"bd",
|
|
34
|
+
"bdw",
|
|
35
|
+
"bds",
|
|
36
|
+
"bdc",
|
|
37
|
+
"bdr",
|
|
38
|
+
// Borders
|
|
39
|
+
"shadow",
|
|
40
|
+
// Effects
|
|
41
|
+
"w",
|
|
42
|
+
"miw",
|
|
43
|
+
"maw",
|
|
44
|
+
"h",
|
|
45
|
+
"mih",
|
|
46
|
+
"mah"
|
|
47
|
+
// Dimensions
|
|
48
|
+
], mo = /* @__PURE__ */ new Set([
|
|
49
|
+
"m",
|
|
50
|
+
"my",
|
|
51
|
+
"mx",
|
|
52
|
+
"mt",
|
|
53
|
+
"mb",
|
|
54
|
+
"ml",
|
|
55
|
+
"mr",
|
|
56
|
+
"gap",
|
|
57
|
+
"rowGap",
|
|
58
|
+
"columnGap",
|
|
59
|
+
"top",
|
|
60
|
+
"left",
|
|
61
|
+
"bottom",
|
|
62
|
+
"right"
|
|
63
|
+
]), Ce = {
|
|
64
|
+
"rec-none": "var(--recursica_brand_dimensions_general_none)",
|
|
65
|
+
"rec-sm": "var(--recursica_brand_dimensions_general_sm)",
|
|
66
|
+
"rec-default": "var(--recursica_brand_dimensions_general_default)",
|
|
67
|
+
"rec-md": "var(--recursica_brand_dimensions_general_md)",
|
|
68
|
+
"rec-lg": "var(--recursica_brand_dimensions_general_lg)",
|
|
69
|
+
"rec-xl": "var(--recursica_brand_dimensions_general_xl)",
|
|
70
|
+
"rec-2xl": "var(--recursica_brand_dimensions_general_2xl)"
|
|
71
|
+
};
|
|
72
|
+
function C(o, t) {
|
|
73
|
+
if (t)
|
|
74
|
+
return o;
|
|
75
|
+
const n = { ...o };
|
|
76
|
+
for (const a of po)
|
|
77
|
+
a in n && delete n[a];
|
|
78
|
+
for (const [a, r] of Object.entries(n))
|
|
79
|
+
typeof r == "string" && r.startsWith("rec-") && mo.has(a) && r in Ce && (n[a] = Ce[r]);
|
|
80
|
+
return n;
|
|
81
|
+
}
|
|
82
|
+
const uo = "Accordion-module__root___Dem6d", _o = "Accordion-module__item___7ryVk", bo = "Accordion-module__noDivider___Ni2tT", yo = "Accordion-module__control___b4wgX", ho = "Accordion-module__label___Ss7uW", fo = "Accordion-module__chevron___i-HVZ", No = "Accordion-module__iconLeftWrapper___5oLen", $o = "Accordion-module__panel___Wx50w", vo = "Accordion-module__content___PEM9t", Z = {
|
|
83
|
+
root: uo,
|
|
84
|
+
item: _o,
|
|
85
|
+
noDivider: bo,
|
|
86
|
+
control: yo,
|
|
87
|
+
label: ho,
|
|
88
|
+
chevron: fo,
|
|
89
|
+
iconLeftWrapper: No,
|
|
90
|
+
panel: $o,
|
|
91
|
+
content: vo
|
|
92
|
+
}, Pe = function({
|
|
93
|
+
variant: t = "unstyled",
|
|
94
|
+
overStyled: n = !1,
|
|
95
|
+
...a
|
|
96
|
+
}) {
|
|
97
|
+
const r = C(a, n), s = {
|
|
98
|
+
root: Z.root,
|
|
99
|
+
item: Z.item,
|
|
100
|
+
control: Z.control,
|
|
101
|
+
label: Z.label,
|
|
102
|
+
chevron: Z.chevron,
|
|
103
|
+
panel: Z.panel,
|
|
104
|
+
content: Z.content
|
|
105
|
+
}, c = r.classNames;
|
|
106
|
+
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
107
|
+
const d = c;
|
|
108
|
+
Object.keys(d).forEach((i) => {
|
|
109
|
+
s[i] ? s[i] = `${s[i]} ${d[i]}` : s[i] = d[i];
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
const l = r.className;
|
|
113
|
+
return /* @__PURE__ */ e(
|
|
114
|
+
ue,
|
|
115
|
+
{
|
|
116
|
+
variant: t,
|
|
117
|
+
className: l,
|
|
118
|
+
classNames: s,
|
|
119
|
+
...r
|
|
120
|
+
}
|
|
121
|
+
);
|
|
122
|
+
};
|
|
123
|
+
Pe.displayName = "Accordion";
|
|
124
|
+
const Se = $(function({ title: t, leftIcon: n, divider: a = !0, children: r, overStyled: s = !1, ...c }, l) {
|
|
125
|
+
const d = C(c, s), i = d.className, p = [a ? void 0 : Z.noDivider, i].filter(Boolean).join(" ") || void 0;
|
|
126
|
+
return /* @__PURE__ */ e(
|
|
127
|
+
ue.Item,
|
|
128
|
+
{
|
|
129
|
+
ref: l,
|
|
130
|
+
className: p,
|
|
131
|
+
...d,
|
|
132
|
+
children: t ? /* @__PURE__ */ B(ne, { children: [
|
|
133
|
+
/* @__PURE__ */ e(Ne, { leftIcon: n, children: t }),
|
|
134
|
+
/* @__PURE__ */ e($e, { children: r })
|
|
135
|
+
] }) : r
|
|
136
|
+
}
|
|
137
|
+
);
|
|
138
|
+
});
|
|
139
|
+
Se.displayName = "AccordionItem";
|
|
140
|
+
const Ne = $(function({ leftIcon: t, children: n, overStyled: a = !1, ...r }, s) {
|
|
141
|
+
const c = C(r, a), l = c.className;
|
|
142
|
+
return /* @__PURE__ */ e(
|
|
143
|
+
ue.Control,
|
|
144
|
+
{
|
|
145
|
+
ref: s,
|
|
146
|
+
className: l,
|
|
147
|
+
icon: t ? /* @__PURE__ */ e("span", { className: Z.iconLeftWrapper, "aria-hidden": !0, children: t }) : void 0,
|
|
148
|
+
...c,
|
|
149
|
+
children: n
|
|
150
|
+
}
|
|
151
|
+
);
|
|
152
|
+
});
|
|
153
|
+
Ne.displayName = "AccordionControl";
|
|
154
|
+
const $e = $(function({ overStyled: t = !1, ...n }, a) {
|
|
155
|
+
const r = C(n, t), s = r.className;
|
|
156
|
+
return /* @__PURE__ */ e(
|
|
157
|
+
ue.Panel,
|
|
158
|
+
{
|
|
159
|
+
ref: a,
|
|
160
|
+
className: s,
|
|
161
|
+
...r
|
|
162
|
+
}
|
|
163
|
+
);
|
|
164
|
+
});
|
|
165
|
+
$e.displayName = "AccordionPanel";
|
|
166
|
+
const ve = Pe;
|
|
167
|
+
ve.Item = Se;
|
|
168
|
+
ve.Control = Ne;
|
|
169
|
+
ve.Panel = $e;
|
|
170
|
+
const Co = "Avatar-module__root___fXu-J", xo = "Avatar-module__iconWrapper___ojly2", go = "Avatar-module__textWrapper___zp-jD", Wo = "Avatar-module__image___ieqGp", ko = "Avatar-module__placeholder___IDW7-", M = {
|
|
171
|
+
root: Co,
|
|
172
|
+
iconWrapper: xo,
|
|
173
|
+
textWrapper: go,
|
|
174
|
+
image: Wo,
|
|
175
|
+
placeholder: ko
|
|
176
|
+
}, wo = $(function({
|
|
177
|
+
size: t = "default",
|
|
178
|
+
variant: n = "solid",
|
|
179
|
+
icon: a,
|
|
180
|
+
className: r,
|
|
181
|
+
classNames: s,
|
|
182
|
+
children: c,
|
|
183
|
+
style: l,
|
|
184
|
+
src: d,
|
|
185
|
+
...i
|
|
186
|
+
}, p) {
|
|
187
|
+
const u = {
|
|
188
|
+
solid: "filled",
|
|
189
|
+
outline: "outline",
|
|
190
|
+
ghost: "transparent"
|
|
191
|
+
}, y = {
|
|
192
|
+
default: "md",
|
|
193
|
+
small: "sm",
|
|
194
|
+
large: "lg"
|
|
195
|
+
};
|
|
196
|
+
let m = "text";
|
|
197
|
+
d ? m = "image" : a && (m = "icon");
|
|
198
|
+
const _ = {
|
|
199
|
+
root: M.root,
|
|
200
|
+
image: M.image,
|
|
201
|
+
placeholder: M.placeholder
|
|
202
|
+
};
|
|
203
|
+
if (s && typeof s == "object" && !Array.isArray(s)) {
|
|
204
|
+
const h = s;
|
|
205
|
+
_.root = h.root ? `${M.root} ${h.root}` : M.root, _.image = h.image ? `${M.image} ${h.image}` : M.image, _.placeholder = h.placeholder ? `${M.placeholder} ${h.placeholder}` : M.placeholder;
|
|
206
|
+
}
|
|
207
|
+
return /* @__PURE__ */ e(
|
|
208
|
+
He,
|
|
209
|
+
{
|
|
210
|
+
ref: p,
|
|
211
|
+
className: r,
|
|
212
|
+
classNames: _,
|
|
213
|
+
variant: u[n],
|
|
214
|
+
size: y[t],
|
|
215
|
+
style: l,
|
|
216
|
+
src: d,
|
|
217
|
+
"data-variant": n,
|
|
218
|
+
"data-size": t,
|
|
219
|
+
"data-style": m,
|
|
220
|
+
...i,
|
|
221
|
+
children: a != null ? /* @__PURE__ */ e("span", { className: M.iconWrapper, "aria-hidden": !0, children: a }) : c != null ? /* @__PURE__ */ e("span", { className: M.textWrapper, children: c }) : void 0
|
|
222
|
+
}
|
|
223
|
+
);
|
|
224
|
+
});
|
|
225
|
+
wo.displayName = "Avatar";
|
|
226
|
+
const Ao = "Badge-module__root___5osNT", D = {
|
|
227
|
+
root: Ao
|
|
228
|
+
}, Po = $(function({ variant: t = "primary-color", overStyled: n = !1, ...a }, r) {
|
|
229
|
+
const s = C(a, n), c = {
|
|
230
|
+
root: D.root,
|
|
231
|
+
section: D.section,
|
|
232
|
+
label: D.label
|
|
233
|
+
}, l = s.classNames;
|
|
234
|
+
if (l && typeof l == "object" && !Array.isArray(l)) {
|
|
235
|
+
const p = l;
|
|
236
|
+
c.root = p.root ? `${D.root} ${p.root}` : D.root, c.section = p.section ?? D.section, c.label = p.label ?? D.label;
|
|
237
|
+
}
|
|
238
|
+
const d = s.className, i = d ? `${D.root} ${d}` : D.root;
|
|
239
|
+
return /* @__PURE__ */ e(
|
|
240
|
+
Ke,
|
|
241
|
+
{
|
|
242
|
+
ref: r,
|
|
243
|
+
variant: "filled",
|
|
244
|
+
"data-variant": t,
|
|
245
|
+
...s,
|
|
246
|
+
className: i,
|
|
247
|
+
classNames: c
|
|
248
|
+
}
|
|
249
|
+
);
|
|
250
|
+
});
|
|
251
|
+
Po.displayName = "Badge";
|
|
252
|
+
const So = "Breadcrumb-module__root___x-9ln", Oo = "Breadcrumb-module__separator___qrUX-", K = {
|
|
253
|
+
root: So,
|
|
254
|
+
separator: Oo
|
|
255
|
+
}, Ro = $(
|
|
256
|
+
function({ overStyled: t = !1, separator: n = ">", ...a }, r) {
|
|
257
|
+
const s = C(
|
|
258
|
+
{ separator: n, ...a },
|
|
259
|
+
t
|
|
260
|
+
), c = {
|
|
261
|
+
root: K.root,
|
|
262
|
+
separator: K.separator
|
|
263
|
+
}, l = s.classNames;
|
|
264
|
+
if (l && typeof l == "object" && !Array.isArray(l)) {
|
|
265
|
+
const p = l;
|
|
266
|
+
c.root = p.root ? `${K.root} ${p.root}` : K.root, c.separator = p.separator ? `${K.separator} ${p.separator}` : K.separator;
|
|
267
|
+
}
|
|
268
|
+
const d = s.className, i = d ? `${K.root} ${d}` : K.root;
|
|
269
|
+
return /* @__PURE__ */ e(
|
|
270
|
+
Ue,
|
|
271
|
+
{
|
|
272
|
+
ref: r,
|
|
273
|
+
...s,
|
|
274
|
+
className: i,
|
|
275
|
+
classNames: c
|
|
276
|
+
}
|
|
277
|
+
);
|
|
278
|
+
}
|
|
279
|
+
);
|
|
280
|
+
Ro.displayName = "Breadcrumb";
|
|
281
|
+
const To = "Button-module__root___Q2R8-", Lo = "Button-module__label___UJ3Zt", Io = "Button-module__labelText___rFV5p", zo = "Button-module__iconWrapper___uEKPa", Fo = "Button-module__section___f2mKr", q = {
|
|
282
|
+
root: To,
|
|
283
|
+
label: Lo,
|
|
284
|
+
labelText: Io,
|
|
285
|
+
iconWrapper: zo,
|
|
286
|
+
section: Fo
|
|
287
|
+
};
|
|
288
|
+
function Eo(o) {
|
|
289
|
+
return o == null || o === "" ? !1 : typeof o == "string" ? o.trim() !== "" : !0;
|
|
290
|
+
}
|
|
291
|
+
const Bo = $(
|
|
292
|
+
function({
|
|
293
|
+
variant: t = "solid",
|
|
294
|
+
size: n = "default",
|
|
295
|
+
icon: a,
|
|
296
|
+
children: r,
|
|
297
|
+
overStyled: s = !1,
|
|
298
|
+
...c
|
|
299
|
+
}, l) {
|
|
300
|
+
const d = {
|
|
301
|
+
solid: "filled",
|
|
302
|
+
outline: "outline",
|
|
303
|
+
text: "subtle"
|
|
304
|
+
}, i = {
|
|
305
|
+
default: "md",
|
|
306
|
+
small: "sm"
|
|
307
|
+
}, p = C(c, s), u = p;
|
|
308
|
+
delete u.fullWidth;
|
|
309
|
+
const y = !!a || !!u.leftSection, m = !!u.rightSection, _ = (y || m) && !Eo(r);
|
|
310
|
+
typeof process < "u" && process.env.NODE_ENV !== "production" && _ && !u["aria-label"] && console.warn(
|
|
311
|
+
'[Recursica Button] Icon-only buttons must provide an accessible name. Pass aria-label (e.g. aria-label="Submit").'
|
|
312
|
+
);
|
|
313
|
+
const h = {
|
|
314
|
+
root: q.root,
|
|
315
|
+
section: q.section,
|
|
316
|
+
label: q.label
|
|
317
|
+
}, v = u.classNames;
|
|
318
|
+
if (v && typeof v == "object" && !Array.isArray(v)) {
|
|
319
|
+
const b = v;
|
|
320
|
+
h.root = b.root ? `${q.root} ${b.root}` : q.root, h.section = b.section ?? q.section, h.label = b.label ?? q.label;
|
|
321
|
+
}
|
|
322
|
+
const f = u.className, x = f ? `${q.root} ${f}` : q.root;
|
|
323
|
+
return /* @__PURE__ */ e(
|
|
324
|
+
Qe,
|
|
325
|
+
{
|
|
326
|
+
ref: l,
|
|
327
|
+
className: x,
|
|
328
|
+
classNames: h,
|
|
329
|
+
variant: d[t],
|
|
330
|
+
size: i[n],
|
|
331
|
+
leftSection: a != null ? /* @__PURE__ */ e("span", { className: q.iconWrapper, "aria-hidden": !0, children: a }) : void 0,
|
|
332
|
+
"data-variant": t,
|
|
333
|
+
"data-size": n,
|
|
334
|
+
..._ ? { "data-icon-only": "" } : {},
|
|
335
|
+
...p,
|
|
336
|
+
children: /* @__PURE__ */ e("span", { className: q.labelText, children: r })
|
|
337
|
+
}
|
|
338
|
+
);
|
|
339
|
+
}
|
|
340
|
+
);
|
|
341
|
+
Bo.displayName = "Button";
|
|
342
|
+
const jo = "Card-module__root___c9KvZ", Vo = "Card-module__header___PTXf2", Go = "Card-module__footer___Mu-JC", Mo = "Card-module__section___BRT8H", qo = "Card-module__content___oFIQa", H = {
|
|
343
|
+
root: jo,
|
|
344
|
+
header: Vo,
|
|
345
|
+
footer: Go,
|
|
346
|
+
section: Mo,
|
|
347
|
+
content: qo
|
|
348
|
+
}, Oe = $(function({ overStyled: t = !1, ...n }, a) {
|
|
349
|
+
const r = C(n, t), s = {
|
|
350
|
+
root: H.root
|
|
351
|
+
}, c = r.classNames;
|
|
352
|
+
if (c && typeof c == "object" && !Array.isArray(c)) {
|
|
353
|
+
const d = c;
|
|
354
|
+
Object.keys(d).forEach((i) => {
|
|
355
|
+
s[i] ? s[i] = `${s[i]} ${d[i]}` : s[i] = d[i];
|
|
356
|
+
});
|
|
357
|
+
}
|
|
358
|
+
const l = r.className;
|
|
359
|
+
return /* @__PURE__ */ e(
|
|
360
|
+
_e,
|
|
361
|
+
{
|
|
362
|
+
ref: a,
|
|
363
|
+
className: l,
|
|
364
|
+
classNames: s,
|
|
365
|
+
...r
|
|
366
|
+
}
|
|
367
|
+
);
|
|
368
|
+
});
|
|
369
|
+
Oe.displayName = "Card";
|
|
370
|
+
const Re = $(
|
|
371
|
+
function({ overStyled: t = !1, ...n }, a) {
|
|
372
|
+
const r = C(n, t), s = r.className;
|
|
373
|
+
return /* @__PURE__ */ e(
|
|
374
|
+
_e.Section,
|
|
375
|
+
{
|
|
376
|
+
ref: a,
|
|
377
|
+
className: s ? `${H.section} ${s}` : H.section,
|
|
378
|
+
...r
|
|
379
|
+
}
|
|
380
|
+
);
|
|
381
|
+
}
|
|
382
|
+
);
|
|
383
|
+
Re.displayName = "CardSection";
|
|
384
|
+
const Te = $(
|
|
385
|
+
function({ overStyled: t = !1, ...n }, a) {
|
|
386
|
+
const r = C(n, t), s = r.className;
|
|
387
|
+
return /* @__PURE__ */ e(
|
|
388
|
+
_e.Section,
|
|
389
|
+
{
|
|
390
|
+
ref: a,
|
|
391
|
+
className: s ? `${H.header} ${s}` : H.header,
|
|
392
|
+
...r
|
|
393
|
+
}
|
|
394
|
+
);
|
|
395
|
+
}
|
|
396
|
+
);
|
|
397
|
+
Te.displayName = "CardHeader";
|
|
398
|
+
const Le = $(
|
|
399
|
+
function({ overStyled: t = !1, ...n }, a) {
|
|
400
|
+
const r = C(n, t), s = r.className;
|
|
401
|
+
return /* @__PURE__ */ e(
|
|
402
|
+
_e.Section,
|
|
403
|
+
{
|
|
404
|
+
ref: a,
|
|
405
|
+
className: s ? `${H.footer} ${s}` : H.footer,
|
|
406
|
+
...r
|
|
407
|
+
}
|
|
408
|
+
);
|
|
409
|
+
}
|
|
410
|
+
);
|
|
411
|
+
Le.displayName = "CardFooter";
|
|
412
|
+
const Ie = $(
|
|
413
|
+
function({ overStyled: t = !1, ...n }, a) {
|
|
414
|
+
const r = C(n, t), s = r.className;
|
|
415
|
+
return /* @__PURE__ */ e(
|
|
416
|
+
"div",
|
|
417
|
+
{
|
|
418
|
+
ref: a,
|
|
419
|
+
className: s ? `${H.content} ${s}` : H.content,
|
|
420
|
+
...r
|
|
421
|
+
}
|
|
422
|
+
);
|
|
423
|
+
}
|
|
424
|
+
);
|
|
425
|
+
Ie.displayName = "CardContent";
|
|
426
|
+
const be = Oe;
|
|
427
|
+
be.Section = Re;
|
|
428
|
+
be.Header = Te;
|
|
429
|
+
be.Footer = Le;
|
|
430
|
+
be.Content = Ie;
|
|
431
|
+
const Do = "Label-module__root___e6HXZ", Yo = "Label-module__labelText___rieFR", Zo = "Label-module__required___Ggrzc", Ho = "Label-module__optionalText___Y2yun", Ko = "Label-module__actionAreaWrapper___ELoZK", Uo = "Label-module__editIconWrapper___NG2xW", G = {
|
|
432
|
+
root: Do,
|
|
433
|
+
labelText: Yo,
|
|
434
|
+
required: Zo,
|
|
435
|
+
optionalText: Ho,
|
|
436
|
+
actionAreaWrapper: Ko,
|
|
437
|
+
editIconWrapper: Uo
|
|
438
|
+
}, ze = $(function({
|
|
439
|
+
labelSize: t = "default",
|
|
440
|
+
labelAlignment: n,
|
|
441
|
+
required: a = !1,
|
|
442
|
+
labelOptionalText: r,
|
|
443
|
+
labelWithEditIcon: s,
|
|
444
|
+
labelActionArea: c,
|
|
445
|
+
onLabelEditClick: l,
|
|
446
|
+
children: d,
|
|
447
|
+
overStyled: i = !1,
|
|
448
|
+
...p
|
|
449
|
+
}, u) {
|
|
450
|
+
const y = n || "left";
|
|
451
|
+
let m;
|
|
452
|
+
a || (r === !0 ? m = "optional" : r && (m = r));
|
|
453
|
+
const _ = C(p, i), h = _, v = {
|
|
454
|
+
label: G.root,
|
|
455
|
+
required: G.required
|
|
456
|
+
}, f = h.classNames;
|
|
457
|
+
if (f && typeof f == "object" && !Array.isArray(f)) {
|
|
458
|
+
const k = f;
|
|
459
|
+
v.label = k.label ? `${G.root} ${k.label}` : G.root, v.required = k.required ? `${G.required} ${k.required}` : G.required;
|
|
460
|
+
}
|
|
461
|
+
const x = h.className, b = x ? `${G.root} ${x}` : G.root;
|
|
462
|
+
return /* @__PURE__ */ B(
|
|
463
|
+
We.Label,
|
|
464
|
+
{
|
|
465
|
+
ref: u,
|
|
466
|
+
className: b,
|
|
467
|
+
classNames: v,
|
|
468
|
+
"data-size": t,
|
|
469
|
+
"data-alignment": y,
|
|
470
|
+
required: a && !s,
|
|
471
|
+
..._,
|
|
472
|
+
children: [
|
|
473
|
+
/* @__PURE__ */ e("span", { className: G.labelText, children: d }),
|
|
474
|
+
m && /* @__PURE__ */ e("span", { className: G.optionalText, children: typeof m == "string" ? `(${m})` : m }),
|
|
475
|
+
c ? /* @__PURE__ */ e("span", { className: G.actionAreaWrapper, children: c }) : s ? /* @__PURE__ */ e(
|
|
476
|
+
"button",
|
|
477
|
+
{
|
|
478
|
+
type: "button",
|
|
479
|
+
className: G.editIconWrapper,
|
|
480
|
+
"data-replaces-asterisk": a ? "true" : void 0,
|
|
481
|
+
onClick: l,
|
|
482
|
+
"aria-label": "Edit",
|
|
483
|
+
children: /* @__PURE__ */ e(
|
|
484
|
+
"svg",
|
|
485
|
+
{
|
|
486
|
+
width: "16",
|
|
487
|
+
height: "16",
|
|
488
|
+
viewBox: "0 0 16 16",
|
|
489
|
+
fill: "none",
|
|
490
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
491
|
+
children: /* @__PURE__ */ e(
|
|
492
|
+
"path",
|
|
493
|
+
{
|
|
494
|
+
d: "M11.5303 2.46967C11.8232 2.17678 12.2981 2.17678 12.591 2.46967L13.5303 3.40898C13.8232 3.70188 13.8232 4.17675 13.5303 4.46964L5.61288 12.3871C5.45268 12.5473 5.24434 12.6483 5.01809 12.6766L2.39534 13.0044C2.10091 13.0412 1.83856 12.7789 1.87538 12.4845L2.2032 9.86175C2.23147 9.63551 2.3325 9.42716 2.4927 9.26696L11.5303 2.46967Z",
|
|
495
|
+
stroke: "currentColor",
|
|
496
|
+
strokeLinecap: "round",
|
|
497
|
+
strokeLinejoin: "round"
|
|
498
|
+
}
|
|
499
|
+
)
|
|
500
|
+
}
|
|
501
|
+
)
|
|
502
|
+
}
|
|
503
|
+
) : null
|
|
504
|
+
]
|
|
505
|
+
}
|
|
506
|
+
);
|
|
507
|
+
});
|
|
508
|
+
ze.displayName = "Label";
|
|
509
|
+
const Qo = "FormControlLayout-module__root___yNDhZ", Xo = "FormControlLayout-module__leftSection___GBM1r", Jo = "FormControlLayout-module__rightSection___bcL4v", ie = {
|
|
510
|
+
root: Qo,
|
|
511
|
+
leftSection: Xo,
|
|
512
|
+
rightSection: Jo
|
|
513
|
+
}, U = $(function({
|
|
514
|
+
formLayout: t = "stacked",
|
|
515
|
+
labelSize: n = "default",
|
|
516
|
+
controlMaxWidth: a,
|
|
517
|
+
controlMinWidth: r,
|
|
518
|
+
leftSection: s,
|
|
519
|
+
children: c,
|
|
520
|
+
className: l,
|
|
521
|
+
style: d,
|
|
522
|
+
...i
|
|
523
|
+
}, p) {
|
|
524
|
+
const u = l ? `${ie.root} ${l}` : ie.root, m = s != null || t === "side-by-side";
|
|
525
|
+
return /* @__PURE__ */ B(
|
|
526
|
+
"div",
|
|
527
|
+
{
|
|
528
|
+
ref: p,
|
|
529
|
+
className: u,
|
|
530
|
+
"data-form-layout": t,
|
|
531
|
+
style: {
|
|
532
|
+
...d,
|
|
533
|
+
...a ? { "--form-control-max-width": a } : {},
|
|
534
|
+
...r ? { "--form-control-min-width": r } : {}
|
|
535
|
+
},
|
|
536
|
+
...i,
|
|
537
|
+
children: [
|
|
538
|
+
m && /* @__PURE__ */ e("div", { className: ie.leftSection, "data-size": n, children: s }),
|
|
539
|
+
/* @__PURE__ */ e("div", { className: ie.rightSection, children: c })
|
|
540
|
+
]
|
|
541
|
+
}
|
|
542
|
+
);
|
|
543
|
+
});
|
|
544
|
+
U.displayName = "FormControlLayout";
|
|
545
|
+
const et = "AssistiveElement-module__root___WhQ43", ot = "AssistiveElement-module__textWrapper___sfy5E", tt = "AssistiveElement-module__iconWrapper___gObRF", ye = {
|
|
546
|
+
root: et,
|
|
547
|
+
textWrapper: ot,
|
|
548
|
+
iconWrapper: tt
|
|
549
|
+
}, rt = () => /* @__PURE__ */ B(
|
|
550
|
+
"svg",
|
|
551
|
+
{
|
|
552
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
553
|
+
viewBox: "0 0 24 24",
|
|
554
|
+
fill: "none",
|
|
555
|
+
stroke: "currentColor",
|
|
556
|
+
strokeWidth: "2",
|
|
557
|
+
strokeLinecap: "round",
|
|
558
|
+
strokeLinejoin: "round",
|
|
559
|
+
children: [
|
|
560
|
+
/* @__PURE__ */ e("circle", { cx: "12", cy: "12", r: "10" }),
|
|
561
|
+
/* @__PURE__ */ e("path", { d: "M12 16v-4" }),
|
|
562
|
+
/* @__PURE__ */ e("path", { d: "M12 8h.01" })
|
|
563
|
+
]
|
|
564
|
+
}
|
|
565
|
+
), at = () => /* @__PURE__ */ B(
|
|
566
|
+
"svg",
|
|
567
|
+
{
|
|
568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
569
|
+
viewBox: "0 0 24 24",
|
|
570
|
+
fill: "none",
|
|
571
|
+
stroke: "currentColor",
|
|
572
|
+
strokeWidth: "2",
|
|
573
|
+
strokeLinecap: "round",
|
|
574
|
+
strokeLinejoin: "round",
|
|
575
|
+
children: [
|
|
576
|
+
/* @__PURE__ */ e("path", { d: "m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z" }),
|
|
577
|
+
/* @__PURE__ */ e("path", { d: "M12 9v4" }),
|
|
578
|
+
/* @__PURE__ */ e("path", { d: "M12 17h.01" })
|
|
579
|
+
]
|
|
580
|
+
}
|
|
581
|
+
), he = $(function({
|
|
582
|
+
assistiveVariant: t = "help",
|
|
583
|
+
assistiveWithIcon: n = !0,
|
|
584
|
+
children: a,
|
|
585
|
+
className: r,
|
|
586
|
+
overStyled: s = !1,
|
|
587
|
+
...c
|
|
588
|
+
}, l) {
|
|
589
|
+
const i = C(c, s), p = ye.root, u = r ? `${p} ${r}` : p, y = t === "error" ? at : rt;
|
|
590
|
+
return /* @__PURE__ */ B(
|
|
591
|
+
"div",
|
|
592
|
+
{
|
|
593
|
+
ref: l,
|
|
594
|
+
className: u,
|
|
595
|
+
"data-variant": t,
|
|
596
|
+
style: i.style,
|
|
597
|
+
...i,
|
|
598
|
+
children: [
|
|
599
|
+
n && /* @__PURE__ */ e("span", { className: ye.iconWrapper, children: /* @__PURE__ */ e(y, {}) }),
|
|
600
|
+
/* @__PURE__ */ e("span", { className: ye.textWrapper, children: a })
|
|
601
|
+
]
|
|
602
|
+
}
|
|
603
|
+
);
|
|
604
|
+
});
|
|
605
|
+
he.displayName = "AssistiveElement";
|
|
606
|
+
const st = "FormControlWrapper-module__inputSection___HenXk", xe = {
|
|
607
|
+
inputSection: st
|
|
608
|
+
}, de = $(function({
|
|
609
|
+
formLayout: t,
|
|
610
|
+
labelSize: n,
|
|
611
|
+
labelAlignment: a,
|
|
612
|
+
labelOptionalText: r,
|
|
613
|
+
labelWithEditIcon: s,
|
|
614
|
+
labelActionArea: c,
|
|
615
|
+
onLabelEditClick: l,
|
|
616
|
+
label: d,
|
|
617
|
+
description: i,
|
|
618
|
+
assistiveText: p,
|
|
619
|
+
assistiveWithIcon: u = !0,
|
|
620
|
+
controlMaxWidth: y,
|
|
621
|
+
controlMinWidth: m,
|
|
622
|
+
error: _,
|
|
623
|
+
required: h,
|
|
624
|
+
withAsterisk: v,
|
|
625
|
+
id: f,
|
|
626
|
+
children: x,
|
|
627
|
+
className: b,
|
|
628
|
+
overStyled: k = !1,
|
|
629
|
+
labelElement: N,
|
|
630
|
+
// Extracted safely preventing bleeding into HTML domains
|
|
631
|
+
...z
|
|
632
|
+
}, T) {
|
|
633
|
+
const P = Ye(), L = f || `recursica-fc-${P}`, I = p || i, S = I ? `${L}-assistive` : void 0, O = _ ? `${L}-error` : void 0, R = C(z, k), Q = b || R.className, le = xe.root, V = Q ? `${le} ${Q}` : le, qe = j.isValidElement(x) ? j.cloneElement(
|
|
634
|
+
x,
|
|
635
|
+
{
|
|
636
|
+
...I && !x.props["aria-describedby"] ? { "aria-describedby": S } : {},
|
|
637
|
+
..._ && !x.props["aria-errormessage"] ? { "aria-errormessage": O } : {}
|
|
638
|
+
}
|
|
639
|
+
) : x, De = d ? /* @__PURE__ */ e(
|
|
640
|
+
ze,
|
|
641
|
+
{
|
|
642
|
+
id: L,
|
|
643
|
+
labelAlignment: a,
|
|
644
|
+
labelOptionalText: r,
|
|
645
|
+
labelWithEditIcon: s,
|
|
646
|
+
labelActionArea: c,
|
|
647
|
+
onLabelEditClick: l,
|
|
648
|
+
required: v ?? h,
|
|
649
|
+
...N === "div" ? { as: "div" } : {},
|
|
650
|
+
children: d
|
|
651
|
+
}
|
|
652
|
+
) : void 0;
|
|
653
|
+
return /* @__PURE__ */ e(
|
|
654
|
+
U,
|
|
655
|
+
{
|
|
656
|
+
ref: T,
|
|
657
|
+
className: V,
|
|
658
|
+
formLayout: t,
|
|
659
|
+
labelSize: n,
|
|
660
|
+
controlMaxWidth: y,
|
|
661
|
+
controlMinWidth: m,
|
|
662
|
+
leftSection: De,
|
|
663
|
+
...R,
|
|
664
|
+
children: /* @__PURE__ */ B("div", { className: xe.inputSection, children: [
|
|
665
|
+
qe,
|
|
666
|
+
_ && /* @__PURE__ */ e(
|
|
667
|
+
he,
|
|
668
|
+
{
|
|
669
|
+
id: O,
|
|
670
|
+
assistiveVariant: "error",
|
|
671
|
+
assistiveWithIcon: u,
|
|
672
|
+
children: _
|
|
673
|
+
}
|
|
674
|
+
),
|
|
675
|
+
!_ && I && /* @__PURE__ */ e(
|
|
676
|
+
he,
|
|
677
|
+
{
|
|
678
|
+
id: S,
|
|
679
|
+
assistiveVariant: "help",
|
|
680
|
+
assistiveWithIcon: u,
|
|
681
|
+
children: I
|
|
682
|
+
}
|
|
683
|
+
)
|
|
684
|
+
] })
|
|
685
|
+
}
|
|
686
|
+
);
|
|
687
|
+
});
|
|
688
|
+
de.displayName = "FormControlWrapper";
|
|
689
|
+
const nt = "_root_1qhn7_3", lt = "_contents_1qhn7_18", J = {
|
|
690
|
+
root: nt,
|
|
691
|
+
contents: lt
|
|
692
|
+
}, it = $(function({ layer: o, contentsOnly: t, children: n, className: a, style: r, ...s }, c) {
|
|
693
|
+
const l = t ? a ? `${J.root} ${J.contents} ${a}` : `${J.root} ${J.contents}` : a ? `${J.root} ${a}` : J.root;
|
|
694
|
+
return /* @__PURE__ */ e(
|
|
695
|
+
"div",
|
|
696
|
+
{
|
|
697
|
+
ref: c,
|
|
698
|
+
className: l,
|
|
699
|
+
style: r,
|
|
700
|
+
...t ? {} : { "data-recursica-layer": String(o) },
|
|
701
|
+
...s,
|
|
702
|
+
children: n
|
|
703
|
+
}
|
|
704
|
+
);
|
|
705
|
+
});
|
|
706
|
+
it.displayName = "Layer";
|
|
707
|
+
const pe = ({ emptyText: o = "N/A" }) => /* @__PURE__ */ e(j.Fragment, { children: o });
|
|
708
|
+
pe.displayName = "EmptyValueRenderer";
|
|
709
|
+
pe.check = (o) => o == null || o === "" || Array.isArray(o) && o.length === 0;
|
|
710
|
+
const ge = "data-recursica-theme";
|
|
711
|
+
function Cr({
|
|
712
|
+
children: o,
|
|
713
|
+
theme: t = "light"
|
|
714
|
+
}) {
|
|
715
|
+
return Ze(() => {
|
|
716
|
+
const n = document.documentElement;
|
|
717
|
+
return n.setAttribute(ge, t), () => {
|
|
718
|
+
n.removeAttribute(ge);
|
|
719
|
+
};
|
|
720
|
+
}, [t]), /* @__PURE__ */ e(ne, { children: o });
|
|
721
|
+
}
|
|
722
|
+
const ct = "ReadOnlyField-module__textField___qKn25", me = {
|
|
723
|
+
textField: ct
|
|
724
|
+
}, ce = ({
|
|
725
|
+
value: o,
|
|
726
|
+
overStyled: t = !1,
|
|
727
|
+
...n
|
|
728
|
+
}) => {
|
|
729
|
+
const a = C(n, t), r = a.className;
|
|
730
|
+
return /* @__PURE__ */ e(
|
|
731
|
+
fe,
|
|
732
|
+
{
|
|
733
|
+
component: "p",
|
|
734
|
+
className: r ? `${me.textField} ${r}` : me.textField,
|
|
735
|
+
...a,
|
|
736
|
+
children: o != null ? j.isValidElement(o) ? o : Array.isArray(o) ? o.join(", ") : String(o) : ""
|
|
737
|
+
}
|
|
738
|
+
);
|
|
739
|
+
};
|
|
740
|
+
ce.displayName = "ReadOnlyTextField";
|
|
741
|
+
const Fe = $(
|
|
742
|
+
function({ value: t, type: n = "text", emptyValueComponent: a, overStyled: r = !1, ...s }, c) {
|
|
743
|
+
let l = null;
|
|
744
|
+
const d = C(s, r), i = a || pe, u = (i.check ? i.check(t) : pe.check(t)) ? /* @__PURE__ */ e(i, { value: t }) : t;
|
|
745
|
+
switch (n) {
|
|
746
|
+
case "boolean":
|
|
747
|
+
l = /* @__PURE__ */ e(
|
|
748
|
+
ce,
|
|
749
|
+
{
|
|
750
|
+
value: t === !0 ? "True" : t === !1 ? "False" : u,
|
|
751
|
+
overStyled: r
|
|
752
|
+
}
|
|
753
|
+
);
|
|
754
|
+
break;
|
|
755
|
+
case "switch":
|
|
756
|
+
l = /* @__PURE__ */ e(
|
|
757
|
+
ce,
|
|
758
|
+
{
|
|
759
|
+
value: t === !0 ? "On" : t === !1 ? "Off" : u,
|
|
760
|
+
overStyled: r
|
|
761
|
+
}
|
|
762
|
+
);
|
|
763
|
+
break;
|
|
764
|
+
case "text":
|
|
765
|
+
default:
|
|
766
|
+
l = /* @__PURE__ */ e(
|
|
767
|
+
ce,
|
|
768
|
+
{
|
|
769
|
+
value: u,
|
|
770
|
+
overStyled: r
|
|
771
|
+
}
|
|
772
|
+
);
|
|
773
|
+
break;
|
|
774
|
+
}
|
|
775
|
+
return /* @__PURE__ */ e(
|
|
776
|
+
de,
|
|
777
|
+
{
|
|
778
|
+
ref: c,
|
|
779
|
+
overStyled: r,
|
|
780
|
+
...d,
|
|
781
|
+
children: l
|
|
782
|
+
}
|
|
783
|
+
);
|
|
784
|
+
}
|
|
785
|
+
);
|
|
786
|
+
Fe.displayName = "ReadOnlyField";
|
|
787
|
+
const X = $(function({
|
|
788
|
+
readOnly: t,
|
|
789
|
+
readOnlyComponent: n,
|
|
790
|
+
readOnlyType: a = "text",
|
|
791
|
+
readOnlyValue: r,
|
|
792
|
+
readOnlyNativeProps: s,
|
|
793
|
+
emptyValueComponent: c,
|
|
794
|
+
activeComponent: l,
|
|
795
|
+
overStyled: d,
|
|
796
|
+
onLabelEditClick: i,
|
|
797
|
+
...p
|
|
798
|
+
}, u) {
|
|
799
|
+
return t ? n ? /* @__PURE__ */ e(
|
|
800
|
+
de,
|
|
801
|
+
{
|
|
802
|
+
ref: u,
|
|
803
|
+
...p,
|
|
804
|
+
onLabelEditClick: i,
|
|
805
|
+
overStyled: d,
|
|
806
|
+
children: /* @__PURE__ */ e(n, { ...s })
|
|
807
|
+
}
|
|
808
|
+
) : /* @__PURE__ */ e(
|
|
809
|
+
Fe,
|
|
810
|
+
{
|
|
811
|
+
ref: u,
|
|
812
|
+
type: a,
|
|
813
|
+
value: r,
|
|
814
|
+
emptyValueComponent: c,
|
|
815
|
+
onLabelEditClick: i,
|
|
816
|
+
overStyled: d,
|
|
817
|
+
...p
|
|
818
|
+
}
|
|
819
|
+
) : /* @__PURE__ */ e(
|
|
820
|
+
de,
|
|
821
|
+
{
|
|
822
|
+
ref: u,
|
|
823
|
+
...p,
|
|
824
|
+
onLabelEditClick: i,
|
|
825
|
+
overStyled: d,
|
|
826
|
+
children: l
|
|
827
|
+
}
|
|
828
|
+
);
|
|
829
|
+
});
|
|
830
|
+
X.displayName = "WithReadOnlyWrapper";
|
|
831
|
+
const dt = "Checkbox-module__groupRoot___cBS0o", pt = "Checkbox-module__root___mY3qk", mt = "Checkbox-module__body___5yC7q", ut = "Checkbox-module__inner___rTke4", _t = "Checkbox-module__input___2kt-h", bt = "Checkbox-module__icon___-O7i6", yt = "Checkbox-module__labelWrapper___GpZkr", ht = "Checkbox-module__label___cwRtI", w = {
|
|
832
|
+
groupRoot: dt,
|
|
833
|
+
root: pt,
|
|
834
|
+
body: mt,
|
|
835
|
+
inner: ut,
|
|
836
|
+
input: _t,
|
|
837
|
+
icon: bt,
|
|
838
|
+
labelWrapper: yt,
|
|
839
|
+
label: ht
|
|
840
|
+
}, Ee = $(
|
|
841
|
+
function(t, n) {
|
|
842
|
+
const {
|
|
843
|
+
overStyled: a = !1,
|
|
844
|
+
formLayout: r = "stacked",
|
|
845
|
+
// Label Wrappers
|
|
846
|
+
labelSize: s,
|
|
847
|
+
labelAlignment: c,
|
|
848
|
+
labelOptionalText: l,
|
|
849
|
+
labelWithEditIcon: d,
|
|
850
|
+
onLabelEditClick: i,
|
|
851
|
+
// Base Mantine Extracted Attributes
|
|
852
|
+
label: p,
|
|
853
|
+
description: u,
|
|
854
|
+
assistiveText: y,
|
|
855
|
+
assistiveWithIcon: m,
|
|
856
|
+
error: _,
|
|
857
|
+
required: h,
|
|
858
|
+
withAsterisk: v,
|
|
859
|
+
id: f,
|
|
860
|
+
className: x,
|
|
861
|
+
style: b,
|
|
862
|
+
children: k,
|
|
863
|
+
readOnly: N,
|
|
864
|
+
readOnlyComponent: z,
|
|
865
|
+
emptyValueComponent: T,
|
|
866
|
+
value: P,
|
|
867
|
+
defaultValue: L,
|
|
868
|
+
...I
|
|
869
|
+
} = t, S = C(I, a), O = S;
|
|
870
|
+
return delete O.size, /* @__PURE__ */ e(
|
|
871
|
+
X,
|
|
872
|
+
{
|
|
873
|
+
className: x,
|
|
874
|
+
style: b,
|
|
875
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_checkbox-item_properties_max-width)",
|
|
876
|
+
controlMinWidth: void 0,
|
|
877
|
+
overStyled: a,
|
|
878
|
+
labelElement: "div",
|
|
879
|
+
formLayout: r,
|
|
880
|
+
labelSize: s,
|
|
881
|
+
labelAlignment: c,
|
|
882
|
+
labelOptionalText: l,
|
|
883
|
+
labelWithEditIcon: d,
|
|
884
|
+
onLabelEditClick: i,
|
|
885
|
+
label: p,
|
|
886
|
+
description: u,
|
|
887
|
+
assistiveText: y,
|
|
888
|
+
assistiveWithIcon: m,
|
|
889
|
+
error: _,
|
|
890
|
+
required: h,
|
|
891
|
+
withAsterisk: v,
|
|
892
|
+
id: f,
|
|
893
|
+
readOnly: N && !!z,
|
|
894
|
+
readOnlyComponent: z,
|
|
895
|
+
emptyValueComponent: T,
|
|
896
|
+
readOnlyType: "text",
|
|
897
|
+
readOnlyValue: P !== void 0 ? P : L,
|
|
898
|
+
readOnlyNativeProps: t,
|
|
899
|
+
activeComponent: /* @__PURE__ */ e(
|
|
900
|
+
ke.Group,
|
|
901
|
+
{
|
|
902
|
+
ref: n,
|
|
903
|
+
...S,
|
|
904
|
+
disabled: N || O.disabled,
|
|
905
|
+
value: P,
|
|
906
|
+
defaultValue: L,
|
|
907
|
+
children: /* @__PURE__ */ e("div", { className: w.groupRoot, "data-layout": r, children: j.Children.map(k, (g) => j.isValidElement(g) ? j.cloneElement(g, {
|
|
908
|
+
disabled: N || g.props.disabled
|
|
909
|
+
}) : g) })
|
|
910
|
+
}
|
|
911
|
+
)
|
|
912
|
+
}
|
|
913
|
+
);
|
|
914
|
+
}
|
|
915
|
+
);
|
|
916
|
+
Ee.displayName = "CheckboxGroup";
|
|
917
|
+
const Be = $(
|
|
918
|
+
function(t, n) {
|
|
919
|
+
const {
|
|
920
|
+
overStyled: a = !1,
|
|
921
|
+
readOnly: r,
|
|
922
|
+
readOnlyComponent: s,
|
|
923
|
+
disabled: c,
|
|
924
|
+
formLayout: l,
|
|
925
|
+
labelSize: d,
|
|
926
|
+
controlMaxWidth: i,
|
|
927
|
+
controlMinWidth: p,
|
|
928
|
+
...u
|
|
929
|
+
} = t, y = C(u, a), m = y;
|
|
930
|
+
delete m.size, delete m.color, delete m.radius, delete m.variant, delete m.iconColor;
|
|
931
|
+
const _ = {
|
|
932
|
+
root: w.root,
|
|
933
|
+
body: w.body,
|
|
934
|
+
inner: w.inner,
|
|
935
|
+
input: w.input,
|
|
936
|
+
icon: w.icon,
|
|
937
|
+
labelWrapper: w.labelWrapper,
|
|
938
|
+
label: w.label
|
|
939
|
+
}, h = m.classNames;
|
|
940
|
+
if (h && typeof h == "object" && !Array.isArray(h)) {
|
|
941
|
+
const b = h;
|
|
942
|
+
_.root = b.root ? `${w.root} ${b.root}` : w.root, _.body = b.body ? `${w.body} ${b.body}` : w.body, _.inner = b.inner ? `${w.inner} ${b.inner}` : w.inner, _.input = b.input ? `${w.input} ${b.input}` : w.input, _.icon = b.icon ? `${w.icon} ${b.icon}` : w.icon, _.labelWrapper = b.labelWrapper ? `${w.labelWrapper} ${b.labelWrapper}` : w.labelWrapper, _.label = b.label ? `${w.label} ${b.label}` : w.label;
|
|
943
|
+
}
|
|
944
|
+
const v = m.className, f = v ? `${w.root} ${v}` : w.root;
|
|
945
|
+
if (r && s) {
|
|
946
|
+
const b = !!(m.checked ?? m.defaultChecked), N = /* @__PURE__ */ e(
|
|
947
|
+
s,
|
|
948
|
+
{
|
|
949
|
+
...t,
|
|
950
|
+
checked: b,
|
|
951
|
+
label: m.label
|
|
952
|
+
}
|
|
953
|
+
);
|
|
954
|
+
return l ? /* @__PURE__ */ e(
|
|
955
|
+
U,
|
|
956
|
+
{
|
|
957
|
+
formLayout: l,
|
|
958
|
+
labelSize: d,
|
|
959
|
+
controlMaxWidth: i,
|
|
960
|
+
controlMinWidth: p,
|
|
961
|
+
children: N
|
|
962
|
+
}
|
|
963
|
+
) : /* @__PURE__ */ e(ne, { children: N });
|
|
964
|
+
}
|
|
965
|
+
const x = /* @__PURE__ */ e(
|
|
966
|
+
ke,
|
|
967
|
+
{
|
|
968
|
+
ref: n,
|
|
969
|
+
className: f,
|
|
970
|
+
classNames: _,
|
|
971
|
+
disabled: r || c,
|
|
972
|
+
...y
|
|
973
|
+
}
|
|
974
|
+
);
|
|
975
|
+
return l ? /* @__PURE__ */ e(
|
|
976
|
+
U,
|
|
977
|
+
{
|
|
978
|
+
formLayout: l,
|
|
979
|
+
labelSize: d,
|
|
980
|
+
controlMaxWidth: i,
|
|
981
|
+
controlMinWidth: p,
|
|
982
|
+
children: x
|
|
983
|
+
}
|
|
984
|
+
) : x;
|
|
985
|
+
}
|
|
986
|
+
);
|
|
987
|
+
Be.displayName = "Checkbox";
|
|
988
|
+
Be.Group = Ee;
|
|
989
|
+
const ft = "Chip-module__root___f5pFk", Nt = "Chip-module__label___Ov9pg", $t = "Chip-module__mantineIconWrapper___KLSz6", vt = "Chip-module__innerWrapper___EnrTF", Ct = "Chip-module__children___zbRAR", xt = "Chip-module__leadingIcon___JBtjQ", gt = "Chip-module__removeIcon___pVju-", F = {
|
|
990
|
+
root: ft,
|
|
991
|
+
label: Nt,
|
|
992
|
+
mantineIconWrapper: $t,
|
|
993
|
+
innerWrapper: vt,
|
|
994
|
+
children: Ct,
|
|
995
|
+
leadingIcon: xt,
|
|
996
|
+
removeIcon: gt
|
|
997
|
+
};
|
|
998
|
+
function Wt(o) {
|
|
999
|
+
return /* @__PURE__ */ B(
|
|
1000
|
+
"svg",
|
|
1001
|
+
{
|
|
1002
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1003
|
+
width: "24",
|
|
1004
|
+
height: "24",
|
|
1005
|
+
viewBox: "0 0 24 24",
|
|
1006
|
+
fill: "none",
|
|
1007
|
+
stroke: "currentColor",
|
|
1008
|
+
strokeWidth: "2",
|
|
1009
|
+
strokeLinecap: "round",
|
|
1010
|
+
strokeLinejoin: "round",
|
|
1011
|
+
...o,
|
|
1012
|
+
children: [
|
|
1013
|
+
/* @__PURE__ */ e("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
|
|
1014
|
+
/* @__PURE__ */ e("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
|
|
1015
|
+
]
|
|
1016
|
+
}
|
|
1017
|
+
);
|
|
1018
|
+
}
|
|
1019
|
+
const kt = $(function({
|
|
1020
|
+
error: t = !1,
|
|
1021
|
+
icon: n,
|
|
1022
|
+
onRemove: a,
|
|
1023
|
+
removeLabel: r = "Remove",
|
|
1024
|
+
children: s,
|
|
1025
|
+
overStyled: c = !1,
|
|
1026
|
+
...l
|
|
1027
|
+
}, d) {
|
|
1028
|
+
const i = C(l, c), p = i, u = {
|
|
1029
|
+
root: F.root,
|
|
1030
|
+
label: F.label,
|
|
1031
|
+
input: F.input,
|
|
1032
|
+
iconWrapper: F.mantineIconWrapper,
|
|
1033
|
+
checkIcon: F.checkIcon
|
|
1034
|
+
}, y = p.classNames;
|
|
1035
|
+
if (y && typeof y == "object" && !Array.isArray(y)) {
|
|
1036
|
+
const f = y;
|
|
1037
|
+
u.root = f.root ? `${F.root} ${f.root}` : F.root, u.label = f.label ? `${F.label} ${f.label}` : F.label;
|
|
1038
|
+
}
|
|
1039
|
+
const m = p.className, _ = m ? `${F.root} ${m}` : F.root;
|
|
1040
|
+
return /* @__PURE__ */ e(
|
|
1041
|
+
Xe,
|
|
1042
|
+
{
|
|
1043
|
+
ref: d,
|
|
1044
|
+
className: _,
|
|
1045
|
+
classNames: u,
|
|
1046
|
+
...(t ? "" : void 0) !== void 0 ? { "data-error": "" } : {},
|
|
1047
|
+
...!s && (!!n || !!a) ? { "data-icon-only": "" } : {},
|
|
1048
|
+
...i,
|
|
1049
|
+
children: /* @__PURE__ */ B("span", { className: F.innerWrapper, children: [
|
|
1050
|
+
n && /* @__PURE__ */ e("span", { className: F.leadingIcon, "aria-hidden": !0, children: n }),
|
|
1051
|
+
/* @__PURE__ */ e("span", { className: F.children, children: s }),
|
|
1052
|
+
a && /* @__PURE__ */ e(
|
|
1053
|
+
"span",
|
|
1054
|
+
{
|
|
1055
|
+
role: "button",
|
|
1056
|
+
className: F.removeIcon,
|
|
1057
|
+
onClick: (f) => {
|
|
1058
|
+
f.preventDefault(), f.stopPropagation(), a(f);
|
|
1059
|
+
},
|
|
1060
|
+
"aria-label": r,
|
|
1061
|
+
onKeyDown: (f) => {
|
|
1062
|
+
(f.key === "Enter" || f.key === " ") && (f.preventDefault(), f.stopPropagation(), a(
|
|
1063
|
+
f
|
|
1064
|
+
));
|
|
1065
|
+
},
|
|
1066
|
+
tabIndex: 0,
|
|
1067
|
+
children: /* @__PURE__ */ e(Wt, {})
|
|
1068
|
+
}
|
|
1069
|
+
)
|
|
1070
|
+
] })
|
|
1071
|
+
}
|
|
1072
|
+
);
|
|
1073
|
+
});
|
|
1074
|
+
kt.displayName = "Chip";
|
|
1075
|
+
const wt = "Container-module__root___UVssr", oe = {
|
|
1076
|
+
root: wt
|
|
1077
|
+
}, At = $(
|
|
1078
|
+
function({ children: t, size: n, overStyled: a = !1, ...r }, s) {
|
|
1079
|
+
const c = C(r, a), l = c, d = {
|
|
1080
|
+
"rec-sm": "sm",
|
|
1081
|
+
"rec-default": "md",
|
|
1082
|
+
"rec-md": "md",
|
|
1083
|
+
"rec-lg": "lg",
|
|
1084
|
+
"rec-xl": "xl",
|
|
1085
|
+
"rec-2xl": "xl"
|
|
1086
|
+
}, i = typeof n == "string" && d[n] ? d[n] : n, p = {
|
|
1087
|
+
root: oe.root
|
|
1088
|
+
}, u = l.classNames;
|
|
1089
|
+
if (u && typeof u == "object" && !Array.isArray(u)) {
|
|
1090
|
+
const _ = u;
|
|
1091
|
+
p.root = _.root ? `${oe.root} ${_.root}` : oe.root;
|
|
1092
|
+
}
|
|
1093
|
+
const y = l.className, m = y ? `${oe.root} ${y}` : oe.root;
|
|
1094
|
+
return /* @__PURE__ */ e(
|
|
1095
|
+
Je,
|
|
1096
|
+
{
|
|
1097
|
+
ref: s,
|
|
1098
|
+
size: i,
|
|
1099
|
+
className: m,
|
|
1100
|
+
classNames: p,
|
|
1101
|
+
...c,
|
|
1102
|
+
children: t
|
|
1103
|
+
}
|
|
1104
|
+
);
|
|
1105
|
+
}
|
|
1106
|
+
);
|
|
1107
|
+
At.displayName = "Container";
|
|
1108
|
+
const xr = (o) => /* @__PURE__ */ e("div", { ...o, children: "DatePicker" }), Pt = "Dropdown-module__root___uVyL0", St = "Dropdown-module__input___dK4dN", Ot = "Dropdown-module__section___j3MRB", Rt = "Dropdown-module__dropdown___gG-Sw", Tt = "Dropdown-module__option___nAGU-", E = {
|
|
1109
|
+
root: Pt,
|
|
1110
|
+
input: St,
|
|
1111
|
+
section: Ot,
|
|
1112
|
+
dropdown: Rt,
|
|
1113
|
+
option: Tt
|
|
1114
|
+
}, Lt = $(
|
|
1115
|
+
function(t, n) {
|
|
1116
|
+
const {
|
|
1117
|
+
overStyled: a = !1,
|
|
1118
|
+
formLayout: r = "stacked",
|
|
1119
|
+
containerWidth: s,
|
|
1120
|
+
// Label & Wrapper Maps
|
|
1121
|
+
labelSize: c,
|
|
1122
|
+
labelAlignment: l,
|
|
1123
|
+
labelOptionalText: d,
|
|
1124
|
+
labelWithEditIcon: i,
|
|
1125
|
+
onLabelEditClick: p,
|
|
1126
|
+
label: u,
|
|
1127
|
+
assistiveText: y,
|
|
1128
|
+
assistiveWithIcon: m,
|
|
1129
|
+
error: _,
|
|
1130
|
+
required: h,
|
|
1131
|
+
withAsterisk: v,
|
|
1132
|
+
id: f,
|
|
1133
|
+
className: x,
|
|
1134
|
+
style: b,
|
|
1135
|
+
disabled: k,
|
|
1136
|
+
readOnly: N,
|
|
1137
|
+
readOnlyComponent: z,
|
|
1138
|
+
emptyValueComponent: T,
|
|
1139
|
+
value: P,
|
|
1140
|
+
defaultValue: L,
|
|
1141
|
+
data: I,
|
|
1142
|
+
...S
|
|
1143
|
+
} = t, O = C(S, a), g = O;
|
|
1144
|
+
delete g.size, delete g.variant, delete g.radius;
|
|
1145
|
+
const R = {
|
|
1146
|
+
wrapper: E.root,
|
|
1147
|
+
// The nested Input internal relative wrapper bounding box
|
|
1148
|
+
input: E.input,
|
|
1149
|
+
section: E.section,
|
|
1150
|
+
dropdown: E.dropdown,
|
|
1151
|
+
option: E.option
|
|
1152
|
+
}, Q = g.classNames;
|
|
1153
|
+
if (Q && typeof Q == "object" && !Array.isArray(Q)) {
|
|
1154
|
+
const V = Q;
|
|
1155
|
+
R.wrapper = V.wrapper ? `${E.root} ${V.wrapper}` : E.root, R.input = V.input ? `${E.input} ${V.input}` : E.input, R.section = V.section ? `${E.section} ${V.section}` : E.section, R.dropdown = V.dropdown ? `${E.dropdown} ${V.dropdown}` : E.dropdown, R.option = V.option ? `${E.option} ${V.option}` : E.option;
|
|
1156
|
+
}
|
|
1157
|
+
const le = {
|
|
1158
|
+
...b || {},
|
|
1159
|
+
width: s || "100%"
|
|
1160
|
+
};
|
|
1161
|
+
return /* @__PURE__ */ e(
|
|
1162
|
+
X,
|
|
1163
|
+
{
|
|
1164
|
+
className: x,
|
|
1165
|
+
style: le,
|
|
1166
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_dropdown_properties_max-width)",
|
|
1167
|
+
controlMinWidth: "var(--recursica_ui-kit_components_dropdown_properties_min-width)",
|
|
1168
|
+
overStyled: a,
|
|
1169
|
+
formLayout: r,
|
|
1170
|
+
labelSize: c,
|
|
1171
|
+
labelAlignment: l,
|
|
1172
|
+
labelOptionalText: d,
|
|
1173
|
+
labelWithEditIcon: i,
|
|
1174
|
+
onLabelEditClick: p,
|
|
1175
|
+
label: u,
|
|
1176
|
+
assistiveText: y,
|
|
1177
|
+
assistiveWithIcon: m,
|
|
1178
|
+
error: _,
|
|
1179
|
+
required: h,
|
|
1180
|
+
withAsterisk: v,
|
|
1181
|
+
id: f,
|
|
1182
|
+
readOnly: N,
|
|
1183
|
+
readOnlyComponent: z,
|
|
1184
|
+
emptyValueComponent: T,
|
|
1185
|
+
readOnlyType: "text",
|
|
1186
|
+
readOnlyValue: P !== void 0 ? String(P) : L ? String(L) : void 0,
|
|
1187
|
+
readOnlyNativeProps: t,
|
|
1188
|
+
activeComponent: (
|
|
1189
|
+
/* Naked Select execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1190
|
+
/* @__PURE__ */ e(
|
|
1191
|
+
eo,
|
|
1192
|
+
{
|
|
1193
|
+
ref: n,
|
|
1194
|
+
classNames: R,
|
|
1195
|
+
disabled: k,
|
|
1196
|
+
value: P,
|
|
1197
|
+
defaultValue: L,
|
|
1198
|
+
data: I || [],
|
|
1199
|
+
label: void 0,
|
|
1200
|
+
description: void 0,
|
|
1201
|
+
error: void 0,
|
|
1202
|
+
required: void 0,
|
|
1203
|
+
withAsterisk: void 0,
|
|
1204
|
+
wrapperProps: {
|
|
1205
|
+
"data-disabled": k ? "true" : void 0,
|
|
1206
|
+
"data-error": _ ? "true" : void 0
|
|
1207
|
+
},
|
|
1208
|
+
...O
|
|
1209
|
+
}
|
|
1210
|
+
)
|
|
1211
|
+
)
|
|
1212
|
+
}
|
|
1213
|
+
);
|
|
1214
|
+
}
|
|
1215
|
+
);
|
|
1216
|
+
Lt.displayName = "Dropdown";
|
|
1217
|
+
const gr = (o) => /* @__PURE__ */ e("div", { ...o, children: "FileInput" }), Wr = (o) => /* @__PURE__ */ e("div", { ...o, children: "FileUpload" }), It = "Flex-module__root___yYser", te = {
|
|
1218
|
+
root: It
|
|
1219
|
+
}, zt = $(function({ children: t, overStyled: n = !1, gap: a = "rec-default", ...r }, s) {
|
|
1220
|
+
const c = C({ ...r, gap: a }, n), l = c, d = {
|
|
1221
|
+
root: te.root
|
|
1222
|
+
}, i = l.classNames;
|
|
1223
|
+
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1224
|
+
const y = i;
|
|
1225
|
+
d.root = y.root ? `${te.root} ${y.root}` : te.root;
|
|
1226
|
+
}
|
|
1227
|
+
const p = l.className, u = p ? `${te.root} ${p}` : te.root;
|
|
1228
|
+
return /* @__PURE__ */ e(
|
|
1229
|
+
oo,
|
|
1230
|
+
{
|
|
1231
|
+
ref: s,
|
|
1232
|
+
className: u,
|
|
1233
|
+
classNames: d,
|
|
1234
|
+
...c,
|
|
1235
|
+
children: t
|
|
1236
|
+
}
|
|
1237
|
+
);
|
|
1238
|
+
});
|
|
1239
|
+
zt.displayName = "Flex";
|
|
1240
|
+
const Ft = "Group-module__root___ftO64", re = {
|
|
1241
|
+
root: Ft
|
|
1242
|
+
}, Et = $(function({ children: t, overStyled: n = !1, gap: a = "rec-default", ...r }, s) {
|
|
1243
|
+
const c = C({ ...r, gap: a }, n), l = c, d = {
|
|
1244
|
+
root: re.root
|
|
1245
|
+
}, i = l.classNames;
|
|
1246
|
+
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1247
|
+
const y = i;
|
|
1248
|
+
d.root = y.root ? `${re.root} ${y.root}` : re.root;
|
|
1249
|
+
}
|
|
1250
|
+
const p = l.className, u = p ? `${re.root} ${p}` : re.root;
|
|
1251
|
+
return /* @__PURE__ */ e(
|
|
1252
|
+
to,
|
|
1253
|
+
{
|
|
1254
|
+
ref: s,
|
|
1255
|
+
className: u,
|
|
1256
|
+
classNames: d,
|
|
1257
|
+
...c,
|
|
1258
|
+
children: t
|
|
1259
|
+
}
|
|
1260
|
+
);
|
|
1261
|
+
});
|
|
1262
|
+
Et.displayName = "Group";
|
|
1263
|
+
const kr = (o) => /* @__PURE__ */ e("div", { ...o, children: "HoverCard" }), wr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Link" }), Bt = "Loader-module__root___6iYOP", ae = {
|
|
1264
|
+
root: Bt
|
|
1265
|
+
}, jt = $(function({ variant: t = "oval", size: n = "default", overStyled: a = !1, ...r }, s) {
|
|
1266
|
+
const l = {
|
|
1267
|
+
sm: "small",
|
|
1268
|
+
md: "default",
|
|
1269
|
+
lg: "large",
|
|
1270
|
+
small: "small",
|
|
1271
|
+
default: "default",
|
|
1272
|
+
large: "large"
|
|
1273
|
+
}[n] || "default", d = C(r, a), i = {
|
|
1274
|
+
root: ae.root
|
|
1275
|
+
}, p = d.classNames;
|
|
1276
|
+
if (p && typeof p == "object" && !Array.isArray(p)) {
|
|
1277
|
+
const m = p;
|
|
1278
|
+
i.root = m.root ? `${ae.root} ${m.root}` : ae.root;
|
|
1279
|
+
}
|
|
1280
|
+
const u = d.className, y = u ? `${ae.root} ${u}` : ae.root;
|
|
1281
|
+
return /* @__PURE__ */ e(
|
|
1282
|
+
ro,
|
|
1283
|
+
{
|
|
1284
|
+
ref: s,
|
|
1285
|
+
type: t,
|
|
1286
|
+
"data-variant": t,
|
|
1287
|
+
"data-size": l,
|
|
1288
|
+
...d,
|
|
1289
|
+
className: y,
|
|
1290
|
+
classNames: i
|
|
1291
|
+
}
|
|
1292
|
+
);
|
|
1293
|
+
});
|
|
1294
|
+
jt.displayName = "Loader";
|
|
1295
|
+
const Ar = (o) => /* @__PURE__ */ e("div", { ...o, children: "Menu" }), Pr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Modal" }), Sr = (o) => /* @__PURE__ */ e("div", { ...o, children: "NumberInput" }), Or = (o) => /* @__PURE__ */ e("div", { ...o, children: "Pagination" }), Rr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Panel" }), Tr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Popover" }), Vt = "Radio-module__groupRoot___bfUii", Gt = "Radio-module__root___kAjTD", Mt = "Radio-module__body___q2Wpj", qt = "Radio-module__inner___QaTBB", Dt = "Radio-module__radio___MfgN-", Yt = "Radio-module__icon___DWznm", Zt = "Radio-module__labelWrapper___dB0Gi", Ht = "Radio-module__label___vAFIP", A = {
|
|
1296
|
+
groupRoot: Vt,
|
|
1297
|
+
root: Gt,
|
|
1298
|
+
body: Mt,
|
|
1299
|
+
inner: qt,
|
|
1300
|
+
radio: Dt,
|
|
1301
|
+
icon: Yt,
|
|
1302
|
+
labelWrapper: Zt,
|
|
1303
|
+
label: Ht
|
|
1304
|
+
}, je = $(
|
|
1305
|
+
function(t, n) {
|
|
1306
|
+
const {
|
|
1307
|
+
overStyled: a = !1,
|
|
1308
|
+
formLayout: r = "stacked",
|
|
1309
|
+
// Label Wrappers
|
|
1310
|
+
labelSize: s,
|
|
1311
|
+
labelAlignment: c,
|
|
1312
|
+
labelOptionalText: l,
|
|
1313
|
+
labelWithEditIcon: d,
|
|
1314
|
+
onLabelEditClick: i,
|
|
1315
|
+
// Base Mantine Extracted Attributes
|
|
1316
|
+
label: p,
|
|
1317
|
+
description: u,
|
|
1318
|
+
assistiveText: y,
|
|
1319
|
+
assistiveWithIcon: m,
|
|
1320
|
+
error: _,
|
|
1321
|
+
required: h,
|
|
1322
|
+
withAsterisk: v,
|
|
1323
|
+
id: f,
|
|
1324
|
+
className: x,
|
|
1325
|
+
style: b,
|
|
1326
|
+
children: k,
|
|
1327
|
+
readOnly: N,
|
|
1328
|
+
readOnlyComponent: z,
|
|
1329
|
+
emptyValueComponent: T,
|
|
1330
|
+
value: P,
|
|
1331
|
+
defaultValue: L,
|
|
1332
|
+
...I
|
|
1333
|
+
} = t, S = C(I, a), O = S;
|
|
1334
|
+
return delete O.size, /* @__PURE__ */ e(
|
|
1335
|
+
X,
|
|
1336
|
+
{
|
|
1337
|
+
className: x,
|
|
1338
|
+
style: b,
|
|
1339
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_radio-button-item_properties_max-width)",
|
|
1340
|
+
controlMinWidth: void 0,
|
|
1341
|
+
overStyled: a,
|
|
1342
|
+
labelElement: "div",
|
|
1343
|
+
formLayout: r,
|
|
1344
|
+
labelSize: s,
|
|
1345
|
+
labelAlignment: c,
|
|
1346
|
+
labelOptionalText: l,
|
|
1347
|
+
labelWithEditIcon: d,
|
|
1348
|
+
onLabelEditClick: i,
|
|
1349
|
+
label: p,
|
|
1350
|
+
description: u,
|
|
1351
|
+
assistiveText: y,
|
|
1352
|
+
assistiveWithIcon: m,
|
|
1353
|
+
error: _,
|
|
1354
|
+
required: h,
|
|
1355
|
+
withAsterisk: v,
|
|
1356
|
+
id: f,
|
|
1357
|
+
readOnly: N && !!z,
|
|
1358
|
+
readOnlyComponent: z,
|
|
1359
|
+
emptyValueComponent: T,
|
|
1360
|
+
readOnlyType: "text",
|
|
1361
|
+
readOnlyValue: P !== void 0 ? P : L,
|
|
1362
|
+
readOnlyNativeProps: t,
|
|
1363
|
+
activeComponent: /* @__PURE__ */ e(
|
|
1364
|
+
we.Group,
|
|
1365
|
+
{
|
|
1366
|
+
ref: n,
|
|
1367
|
+
...S,
|
|
1368
|
+
disabled: N || O.disabled,
|
|
1369
|
+
value: P,
|
|
1370
|
+
defaultValue: L,
|
|
1371
|
+
children: /* @__PURE__ */ e("div", { className: A.groupRoot, "data-layout": r, children: j.Children.map(k, (g) => j.isValidElement(g) ? j.cloneElement(g, {
|
|
1372
|
+
disabled: N || g.props.disabled
|
|
1373
|
+
}) : g) })
|
|
1374
|
+
}
|
|
1375
|
+
)
|
|
1376
|
+
}
|
|
1377
|
+
);
|
|
1378
|
+
}
|
|
1379
|
+
);
|
|
1380
|
+
je.displayName = "RadioGroup";
|
|
1381
|
+
const Kt = ({ className: o, style: t }) => /* @__PURE__ */ e(
|
|
1382
|
+
"svg",
|
|
1383
|
+
{
|
|
1384
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1385
|
+
viewBox: "0 0 16 16",
|
|
1386
|
+
fill: "currentColor",
|
|
1387
|
+
className: o,
|
|
1388
|
+
style: t,
|
|
1389
|
+
children: /* @__PURE__ */ e("circle", { cx: "8", cy: "8", r: "5" })
|
|
1390
|
+
}
|
|
1391
|
+
), Ve = $(
|
|
1392
|
+
function(t, n) {
|
|
1393
|
+
const {
|
|
1394
|
+
overStyled: a = !1,
|
|
1395
|
+
readOnly: r,
|
|
1396
|
+
readOnlyComponent: s,
|
|
1397
|
+
disabled: c,
|
|
1398
|
+
formLayout: l,
|
|
1399
|
+
labelSize: d,
|
|
1400
|
+
controlMaxWidth: i,
|
|
1401
|
+
controlMinWidth: p,
|
|
1402
|
+
...u
|
|
1403
|
+
} = t, y = C(u, a), m = y;
|
|
1404
|
+
delete m.size, delete m.color, delete m.radius, delete m.variant, delete m.iconColor;
|
|
1405
|
+
const _ = {
|
|
1406
|
+
root: A.root,
|
|
1407
|
+
body: A.body,
|
|
1408
|
+
inner: A.inner,
|
|
1409
|
+
radio: A.radio,
|
|
1410
|
+
icon: A.icon,
|
|
1411
|
+
labelWrapper: A.labelWrapper,
|
|
1412
|
+
label: A.label
|
|
1413
|
+
}, h = m.classNames;
|
|
1414
|
+
if (h && typeof h == "object" && !Array.isArray(h)) {
|
|
1415
|
+
const b = h;
|
|
1416
|
+
_.root = b.root ? `${A.root} ${b.root}` : A.root, _.body = b.body ? `${A.body} ${b.body}` : A.body, _.inner = b.inner ? `${A.inner} ${b.inner}` : A.inner, _.radio = b.radio ? `${A.radio} ${b.radio}` : A.radio, _.icon = b.icon ? `${A.icon} ${b.icon}` : A.icon, _.labelWrapper = b.labelWrapper ? `${A.labelWrapper} ${b.labelWrapper}` : A.labelWrapper, _.label = b.label ? `${A.label} ${b.label}` : A.label;
|
|
1417
|
+
}
|
|
1418
|
+
const v = m.className, f = v ? `${A.root} ${v}` : A.root;
|
|
1419
|
+
if (r && s) {
|
|
1420
|
+
const b = !!(m.checked ?? m.defaultChecked), N = /* @__PURE__ */ e(
|
|
1421
|
+
s,
|
|
1422
|
+
{
|
|
1423
|
+
...t,
|
|
1424
|
+
checked: b,
|
|
1425
|
+
label: m.label
|
|
1426
|
+
}
|
|
1427
|
+
);
|
|
1428
|
+
return l ? /* @__PURE__ */ e(
|
|
1429
|
+
U,
|
|
1430
|
+
{
|
|
1431
|
+
formLayout: l,
|
|
1432
|
+
labelSize: d,
|
|
1433
|
+
controlMaxWidth: i,
|
|
1434
|
+
controlMinWidth: p,
|
|
1435
|
+
children: N
|
|
1436
|
+
}
|
|
1437
|
+
) : /* @__PURE__ */ e(ne, { children: N });
|
|
1438
|
+
}
|
|
1439
|
+
const x = /* @__PURE__ */ e(
|
|
1440
|
+
we,
|
|
1441
|
+
{
|
|
1442
|
+
ref: n,
|
|
1443
|
+
icon: Kt,
|
|
1444
|
+
className: f,
|
|
1445
|
+
classNames: _,
|
|
1446
|
+
disabled: r || c,
|
|
1447
|
+
...y
|
|
1448
|
+
}
|
|
1449
|
+
);
|
|
1450
|
+
return l ? /* @__PURE__ */ e(
|
|
1451
|
+
U,
|
|
1452
|
+
{
|
|
1453
|
+
formLayout: l,
|
|
1454
|
+
labelSize: d,
|
|
1455
|
+
controlMaxWidth: i,
|
|
1456
|
+
controlMinWidth: p,
|
|
1457
|
+
children: x
|
|
1458
|
+
}
|
|
1459
|
+
) : x;
|
|
1460
|
+
}
|
|
1461
|
+
);
|
|
1462
|
+
Ve.displayName = "Radio";
|
|
1463
|
+
Ve.Group = je;
|
|
1464
|
+
const Ut = ({ checked: o, label: t }) => /* @__PURE__ */ B(
|
|
1465
|
+
fe,
|
|
1466
|
+
{
|
|
1467
|
+
component: "span",
|
|
1468
|
+
className: me.textField,
|
|
1469
|
+
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
1470
|
+
children: [
|
|
1471
|
+
t && /* @__PURE__ */ B("span", { style: { fontWeight: 500 }, children: [
|
|
1472
|
+
t,
|
|
1473
|
+
":"
|
|
1474
|
+
] }),
|
|
1475
|
+
/* @__PURE__ */ e("span", { children: o ? "On" : "Off" })
|
|
1476
|
+
]
|
|
1477
|
+
}
|
|
1478
|
+
);
|
|
1479
|
+
Ut.displayName = "ReadOnlySwitchField";
|
|
1480
|
+
const Qt = ({ checked: o, label: t }) => /* @__PURE__ */ B(
|
|
1481
|
+
fe,
|
|
1482
|
+
{
|
|
1483
|
+
component: "span",
|
|
1484
|
+
className: me.textField,
|
|
1485
|
+
style: { display: "inline-flex", gap: "8px", alignItems: "baseline" },
|
|
1486
|
+
children: [
|
|
1487
|
+
t && /* @__PURE__ */ B("span", { style: { fontWeight: 500 }, children: [
|
|
1488
|
+
t,
|
|
1489
|
+
":"
|
|
1490
|
+
] }),
|
|
1491
|
+
/* @__PURE__ */ e("span", { children: o ? "True" : "False" })
|
|
1492
|
+
]
|
|
1493
|
+
}
|
|
1494
|
+
);
|
|
1495
|
+
Qt.displayName = "ReadOnlyBooleanField";
|
|
1496
|
+
const Lr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Search" }), Ir = (o) => /* @__PURE__ */ e("div", { ...o, children: "SegmentedControl" }), zr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Slider" }), Xt = "Stack-module__root___NUN-x", se = {
|
|
1497
|
+
root: Xt
|
|
1498
|
+
}, Jt = $(function({ children: t, overStyled: n = !1, gap: a = "rec-default", ...r }, s) {
|
|
1499
|
+
const c = C({ ...r, gap: a }, n), l = c, d = {
|
|
1500
|
+
root: se.root
|
|
1501
|
+
}, i = l.classNames;
|
|
1502
|
+
if (i && typeof i == "object" && !Array.isArray(i)) {
|
|
1503
|
+
const y = i;
|
|
1504
|
+
d.root = y.root ? `${se.root} ${y.root}` : se.root;
|
|
1505
|
+
}
|
|
1506
|
+
const p = l.className, u = p ? `${se.root} ${p}` : se.root;
|
|
1507
|
+
return /* @__PURE__ */ e(
|
|
1508
|
+
ao,
|
|
1509
|
+
{
|
|
1510
|
+
ref: s,
|
|
1511
|
+
className: u,
|
|
1512
|
+
classNames: d,
|
|
1513
|
+
...c,
|
|
1514
|
+
children: t
|
|
1515
|
+
}
|
|
1516
|
+
);
|
|
1517
|
+
});
|
|
1518
|
+
Jt.displayName = "Stack";
|
|
1519
|
+
const Fr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Stepper" }), er = "Switch-module__root___Y5Ydi", or = "Switch-module__body___Sw9Wr", tr = "Switch-module__track___7ObdZ", rr = "Switch-module__thumb___-FTeK", ar = "Switch-module__labelWrapper___YSOwx", sr = "Switch-module__label___LrH7V", nr = "Switch-module__thumbIconWrapper___sCY-1", lr = "Switch-module__checkIcon___ZBAQN", ir = "Switch-module__closeIcon___bLLGw", cr = "Switch-module__groupRoot___-Uepi", W = {
|
|
1520
|
+
root: er,
|
|
1521
|
+
body: or,
|
|
1522
|
+
track: tr,
|
|
1523
|
+
thumb: rr,
|
|
1524
|
+
labelWrapper: ar,
|
|
1525
|
+
label: sr,
|
|
1526
|
+
thumbIconWrapper: nr,
|
|
1527
|
+
checkIcon: lr,
|
|
1528
|
+
closeIcon: ir,
|
|
1529
|
+
groupRoot: cr
|
|
1530
|
+
}, Ge = $(
|
|
1531
|
+
function(t, n) {
|
|
1532
|
+
const {
|
|
1533
|
+
overStyled: a = !1,
|
|
1534
|
+
formLayout: r = "stacked",
|
|
1535
|
+
// Label Wrappers
|
|
1536
|
+
labelSize: s,
|
|
1537
|
+
labelAlignment: c,
|
|
1538
|
+
labelOptionalText: l,
|
|
1539
|
+
labelWithEditIcon: d,
|
|
1540
|
+
onLabelEditClick: i,
|
|
1541
|
+
// Base Mantine Extracted Attributes
|
|
1542
|
+
label: p,
|
|
1543
|
+
description: u,
|
|
1544
|
+
assistiveText: y,
|
|
1545
|
+
assistiveWithIcon: m,
|
|
1546
|
+
error: _,
|
|
1547
|
+
required: h,
|
|
1548
|
+
withAsterisk: v,
|
|
1549
|
+
id: f,
|
|
1550
|
+
className: x,
|
|
1551
|
+
style: b,
|
|
1552
|
+
children: k,
|
|
1553
|
+
readOnly: N,
|
|
1554
|
+
readOnlyComponent: z,
|
|
1555
|
+
emptyValueComponent: T,
|
|
1556
|
+
value: P,
|
|
1557
|
+
defaultValue: L,
|
|
1558
|
+
...I
|
|
1559
|
+
} = t, S = C(I, a), O = S;
|
|
1560
|
+
return delete O.size, /* @__PURE__ */ e(
|
|
1561
|
+
X,
|
|
1562
|
+
{
|
|
1563
|
+
className: x,
|
|
1564
|
+
style: b,
|
|
1565
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_switch_properties_max-width)",
|
|
1566
|
+
controlMinWidth: void 0,
|
|
1567
|
+
overStyled: a,
|
|
1568
|
+
labelElement: "div",
|
|
1569
|
+
formLayout: r,
|
|
1570
|
+
labelSize: s,
|
|
1571
|
+
labelAlignment: c,
|
|
1572
|
+
labelOptionalText: l,
|
|
1573
|
+
labelWithEditIcon: d,
|
|
1574
|
+
onLabelEditClick: i,
|
|
1575
|
+
label: p,
|
|
1576
|
+
description: u,
|
|
1577
|
+
assistiveText: y,
|
|
1578
|
+
assistiveWithIcon: m,
|
|
1579
|
+
error: _,
|
|
1580
|
+
required: h,
|
|
1581
|
+
withAsterisk: v,
|
|
1582
|
+
id: f,
|
|
1583
|
+
readOnly: N && !!z,
|
|
1584
|
+
readOnlyComponent: z,
|
|
1585
|
+
emptyValueComponent: T,
|
|
1586
|
+
readOnlyType: "text",
|
|
1587
|
+
readOnlyValue: P !== void 0 ? P : L,
|
|
1588
|
+
readOnlyNativeProps: t,
|
|
1589
|
+
activeComponent: /* @__PURE__ */ e(
|
|
1590
|
+
Ae.Group,
|
|
1591
|
+
{
|
|
1592
|
+
ref: n,
|
|
1593
|
+
...S,
|
|
1594
|
+
disabled: N || O.disabled,
|
|
1595
|
+
value: P,
|
|
1596
|
+
defaultValue: L,
|
|
1597
|
+
children: /* @__PURE__ */ e("div", { className: W.groupRoot, children: j.Children.map(k, (g) => j.isValidElement(g) ? j.cloneElement(g, {
|
|
1598
|
+
disabled: N || g.props.disabled
|
|
1599
|
+
}) : g) })
|
|
1600
|
+
}
|
|
1601
|
+
)
|
|
1602
|
+
}
|
|
1603
|
+
);
|
|
1604
|
+
}
|
|
1605
|
+
);
|
|
1606
|
+
Ge.displayName = "SwitchGroup";
|
|
1607
|
+
const Me = $(
|
|
1608
|
+
function(t, n) {
|
|
1609
|
+
const {
|
|
1610
|
+
overStyled: a = !1,
|
|
1611
|
+
readOnly: r,
|
|
1612
|
+
readOnlyComponent: s,
|
|
1613
|
+
disabled: c,
|
|
1614
|
+
thumbIcon: l,
|
|
1615
|
+
formLayout: d,
|
|
1616
|
+
labelSize: i,
|
|
1617
|
+
controlMaxWidth: p,
|
|
1618
|
+
controlMinWidth: u,
|
|
1619
|
+
...y
|
|
1620
|
+
} = t, m = C(y, a), _ = m;
|
|
1621
|
+
delete _.size, delete _.color, delete _.radius, delete _.variant;
|
|
1622
|
+
const h = {
|
|
1623
|
+
root: W.root,
|
|
1624
|
+
body: W.body,
|
|
1625
|
+
track: W.track,
|
|
1626
|
+
thumb: W.thumb,
|
|
1627
|
+
trackLabel: W.trackLabel,
|
|
1628
|
+
labelWrapper: W.labelWrapper,
|
|
1629
|
+
label: W.label
|
|
1630
|
+
}, v = _.classNames;
|
|
1631
|
+
if (v && typeof v == "object" && !Array.isArray(v)) {
|
|
1632
|
+
const N = v;
|
|
1633
|
+
h.root = N.root ? `${W.root} ${N.root}` : W.root, h.body = N.body ? `${W.body} ${N.body}` : W.body, h.track = N.track ? `${W.track} ${N.track}` : W.track, h.thumb = N.thumb ? `${W.thumb} ${N.thumb}` : W.thumb, h.trackLabel = N.trackLabel ? `${W.trackLabel} ${N.trackLabel}` : W.trackLabel, h.labelWrapper = N.labelWrapper ? `${W.labelWrapper} ${N.labelWrapper}` : W.labelWrapper, h.label = N.label ? `${W.label} ${N.label}` : W.label;
|
|
1634
|
+
}
|
|
1635
|
+
const f = _.className, x = f ? `${W.root} ${f}` : W.root;
|
|
1636
|
+
if (r && s) {
|
|
1637
|
+
const N = !!(_.checked ?? _.defaultChecked), T = /* @__PURE__ */ e(
|
|
1638
|
+
s,
|
|
1639
|
+
{
|
|
1640
|
+
...t,
|
|
1641
|
+
checked: N,
|
|
1642
|
+
label: _.label
|
|
1643
|
+
}
|
|
1644
|
+
);
|
|
1645
|
+
return d ? /* @__PURE__ */ e(
|
|
1646
|
+
U,
|
|
1647
|
+
{
|
|
1648
|
+
formLayout: d,
|
|
1649
|
+
labelSize: i,
|
|
1650
|
+
controlMaxWidth: p,
|
|
1651
|
+
controlMinWidth: u,
|
|
1652
|
+
children: T
|
|
1653
|
+
}
|
|
1654
|
+
) : /* @__PURE__ */ e(ne, { children: T });
|
|
1655
|
+
}
|
|
1656
|
+
const b = /* @__PURE__ */ B("div", { className: W.thumbIconWrapper, children: [
|
|
1657
|
+
/* @__PURE__ */ e(so, { className: W.checkIcon }),
|
|
1658
|
+
/* @__PURE__ */ e(no, { className: W.closeIcon })
|
|
1659
|
+
] }), k = /* @__PURE__ */ e(
|
|
1660
|
+
Ae,
|
|
1661
|
+
{
|
|
1662
|
+
ref: n,
|
|
1663
|
+
className: x,
|
|
1664
|
+
classNames: h,
|
|
1665
|
+
disabled: r || c,
|
|
1666
|
+
thumbIcon: l ?? b,
|
|
1667
|
+
...m
|
|
1668
|
+
}
|
|
1669
|
+
);
|
|
1670
|
+
return d ? /* @__PURE__ */ e(
|
|
1671
|
+
U,
|
|
1672
|
+
{
|
|
1673
|
+
formLayout: d,
|
|
1674
|
+
labelSize: i,
|
|
1675
|
+
controlMaxWidth: p,
|
|
1676
|
+
controlMinWidth: u,
|
|
1677
|
+
children: k
|
|
1678
|
+
}
|
|
1679
|
+
) : k;
|
|
1680
|
+
}
|
|
1681
|
+
);
|
|
1682
|
+
Me.displayName = "Switch";
|
|
1683
|
+
Me.Group = Ge;
|
|
1684
|
+
const Er = (o) => /* @__PURE__ */ e("div", { ...o, children: "Table" }), Br = (o) => /* @__PURE__ */ e("div", { ...o, children: "Tabs" }), dr = $(function({ overStyled: t = !1, variant: n = "body", ...a }, r) {
|
|
1685
|
+
const s = C(a, t), c = s.className, l = `recursica_brand_typography_${n}`, d = c ? `${l} ${c}` : l;
|
|
1686
|
+
return /* @__PURE__ */ e(
|
|
1687
|
+
lo,
|
|
1688
|
+
{
|
|
1689
|
+
ref: r,
|
|
1690
|
+
className: d,
|
|
1691
|
+
...s
|
|
1692
|
+
}
|
|
1693
|
+
);
|
|
1694
|
+
});
|
|
1695
|
+
dr.displayName = "Text";
|
|
1696
|
+
const pr = "TextArea-module__root___3dyeu", mr = "TextArea-module__input___8l36v", ee = {
|
|
1697
|
+
root: pr,
|
|
1698
|
+
input: mr
|
|
1699
|
+
}, ur = $(
|
|
1700
|
+
function(t, n) {
|
|
1701
|
+
const {
|
|
1702
|
+
overStyled: a = !1,
|
|
1703
|
+
formLayout: r = "stacked",
|
|
1704
|
+
// Label & Wrapper Maps
|
|
1705
|
+
labelSize: s,
|
|
1706
|
+
labelAlignment: c,
|
|
1707
|
+
labelOptionalText: l,
|
|
1708
|
+
labelWithEditIcon: d,
|
|
1709
|
+
onLabelEditClick: i,
|
|
1710
|
+
label: p,
|
|
1711
|
+
assistiveText: u,
|
|
1712
|
+
assistiveWithIcon: y,
|
|
1713
|
+
error: m,
|
|
1714
|
+
required: _,
|
|
1715
|
+
withAsterisk: h,
|
|
1716
|
+
id: v,
|
|
1717
|
+
className: f,
|
|
1718
|
+
style: x,
|
|
1719
|
+
disabled: b,
|
|
1720
|
+
readOnly: k,
|
|
1721
|
+
readOnlyComponent: N,
|
|
1722
|
+
emptyValueComponent: z,
|
|
1723
|
+
value: T,
|
|
1724
|
+
defaultValue: P,
|
|
1725
|
+
...L
|
|
1726
|
+
} = t, I = C(L, a), S = I;
|
|
1727
|
+
delete S.size, delete S.variant, delete S.radius;
|
|
1728
|
+
const O = {
|
|
1729
|
+
wrapper: ee.root,
|
|
1730
|
+
// The nested Input internal relative wrapper bounding box
|
|
1731
|
+
input: ee.input
|
|
1732
|
+
}, g = S.classNames;
|
|
1733
|
+
if (g && typeof g == "object" && !Array.isArray(g)) {
|
|
1734
|
+
const R = g;
|
|
1735
|
+
O.wrapper = R.wrapper ? `${ee.root} ${R.wrapper}` : ee.root, O.input = R.input ? `${ee.input} ${R.input}` : ee.input;
|
|
1736
|
+
}
|
|
1737
|
+
return /* @__PURE__ */ e(
|
|
1738
|
+
X,
|
|
1739
|
+
{
|
|
1740
|
+
className: f,
|
|
1741
|
+
style: x,
|
|
1742
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_text-field_properties_max-width)",
|
|
1743
|
+
controlMinWidth: "var(--recursica_ui-kit_components_text-field_properties_min-width)",
|
|
1744
|
+
overStyled: a,
|
|
1745
|
+
formLayout: r,
|
|
1746
|
+
labelSize: s,
|
|
1747
|
+
labelAlignment: c,
|
|
1748
|
+
labelOptionalText: l,
|
|
1749
|
+
labelWithEditIcon: d,
|
|
1750
|
+
onLabelEditClick: i,
|
|
1751
|
+
label: p,
|
|
1752
|
+
assistiveText: u,
|
|
1753
|
+
assistiveWithIcon: y,
|
|
1754
|
+
error: m,
|
|
1755
|
+
required: _,
|
|
1756
|
+
withAsterisk: h,
|
|
1757
|
+
id: v,
|
|
1758
|
+
readOnly: k,
|
|
1759
|
+
readOnlyComponent: N,
|
|
1760
|
+
emptyValueComponent: z,
|
|
1761
|
+
readOnlyType: "text",
|
|
1762
|
+
readOnlyValue: T !== void 0 ? T : P,
|
|
1763
|
+
readOnlyNativeProps: t,
|
|
1764
|
+
activeComponent: (
|
|
1765
|
+
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1766
|
+
/* @__PURE__ */ e(
|
|
1767
|
+
io,
|
|
1768
|
+
{
|
|
1769
|
+
ref: n,
|
|
1770
|
+
classNames: O,
|
|
1771
|
+
disabled: b,
|
|
1772
|
+
value: T,
|
|
1773
|
+
defaultValue: P,
|
|
1774
|
+
label: void 0,
|
|
1775
|
+
description: void 0,
|
|
1776
|
+
error: void 0,
|
|
1777
|
+
required: void 0,
|
|
1778
|
+
withAsterisk: void 0,
|
|
1779
|
+
wrapperProps: {
|
|
1780
|
+
"data-disabled": b ? "true" : void 0,
|
|
1781
|
+
"data-error": m ? "true" : void 0
|
|
1782
|
+
},
|
|
1783
|
+
...I
|
|
1784
|
+
}
|
|
1785
|
+
)
|
|
1786
|
+
)
|
|
1787
|
+
}
|
|
1788
|
+
);
|
|
1789
|
+
}
|
|
1790
|
+
);
|
|
1791
|
+
ur.displayName = "TextArea";
|
|
1792
|
+
const _r = "TextField-module__root___2ZYkG", br = "TextField-module__input___RL-My", yr = "TextField-module__section___bCIJ0", Y = {
|
|
1793
|
+
root: _r,
|
|
1794
|
+
input: br,
|
|
1795
|
+
section: yr
|
|
1796
|
+
}, hr = $(
|
|
1797
|
+
function(t, n) {
|
|
1798
|
+
const {
|
|
1799
|
+
overStyled: a = !1,
|
|
1800
|
+
formLayout: r = "stacked",
|
|
1801
|
+
// Label & Wrapper Maps
|
|
1802
|
+
labelSize: s,
|
|
1803
|
+
labelAlignment: c,
|
|
1804
|
+
labelOptionalText: l,
|
|
1805
|
+
labelWithEditIcon: d,
|
|
1806
|
+
onLabelEditClick: i,
|
|
1807
|
+
label: p,
|
|
1808
|
+
assistiveText: u,
|
|
1809
|
+
assistiveWithIcon: y,
|
|
1810
|
+
error: m,
|
|
1811
|
+
required: _,
|
|
1812
|
+
withAsterisk: h,
|
|
1813
|
+
id: v,
|
|
1814
|
+
className: f,
|
|
1815
|
+
style: x,
|
|
1816
|
+
disabled: b,
|
|
1817
|
+
readOnly: k,
|
|
1818
|
+
readOnlyComponent: N,
|
|
1819
|
+
emptyValueComponent: z,
|
|
1820
|
+
value: T,
|
|
1821
|
+
defaultValue: P,
|
|
1822
|
+
...L
|
|
1823
|
+
} = t, I = C(L, a), S = I;
|
|
1824
|
+
delete S.size, delete S.variant, delete S.radius;
|
|
1825
|
+
const O = {
|
|
1826
|
+
wrapper: Y.root,
|
|
1827
|
+
// The nested Input internal relative wrapper bounding box
|
|
1828
|
+
input: Y.input,
|
|
1829
|
+
section: Y.section
|
|
1830
|
+
}, g = S.classNames;
|
|
1831
|
+
if (g && typeof g == "object" && !Array.isArray(g)) {
|
|
1832
|
+
const R = g;
|
|
1833
|
+
O.wrapper = R.wrapper ? `${Y.root} ${R.wrapper}` : Y.root, O.input = R.input ? `${Y.input} ${R.input}` : Y.input, O.section = R.section ? `${Y.section} ${R.section}` : Y.section;
|
|
1834
|
+
}
|
|
1835
|
+
return /* @__PURE__ */ e(
|
|
1836
|
+
X,
|
|
1837
|
+
{
|
|
1838
|
+
className: f,
|
|
1839
|
+
style: x,
|
|
1840
|
+
controlMaxWidth: "var(--recursica_ui-kit_components_text-field_properties_max-width)",
|
|
1841
|
+
controlMinWidth: "var(--recursica_ui-kit_components_text-field_properties_min-width)",
|
|
1842
|
+
overStyled: a,
|
|
1843
|
+
formLayout: r,
|
|
1844
|
+
labelSize: s,
|
|
1845
|
+
labelAlignment: c,
|
|
1846
|
+
labelOptionalText: l,
|
|
1847
|
+
labelWithEditIcon: d,
|
|
1848
|
+
onLabelEditClick: i,
|
|
1849
|
+
label: p,
|
|
1850
|
+
assistiveText: u,
|
|
1851
|
+
assistiveWithIcon: y,
|
|
1852
|
+
error: m,
|
|
1853
|
+
required: _,
|
|
1854
|
+
withAsterisk: h,
|
|
1855
|
+
id: v,
|
|
1856
|
+
readOnly: k,
|
|
1857
|
+
readOnlyComponent: N,
|
|
1858
|
+
emptyValueComponent: z,
|
|
1859
|
+
readOnlyType: "text",
|
|
1860
|
+
readOnlyValue: T !== void 0 ? T : P,
|
|
1861
|
+
readOnlyNativeProps: t,
|
|
1862
|
+
activeComponent: (
|
|
1863
|
+
/* Naked Input execution safely decoupled from Mantine's macro Input.Wrapper DOM hooks */
|
|
1864
|
+
/* @__PURE__ */ e(
|
|
1865
|
+
We,
|
|
1866
|
+
{
|
|
1867
|
+
ref: n,
|
|
1868
|
+
classNames: O,
|
|
1869
|
+
disabled: b,
|
|
1870
|
+
value: T,
|
|
1871
|
+
defaultValue: P,
|
|
1872
|
+
wrapperProps: {
|
|
1873
|
+
"data-disabled": b ? "true" : void 0,
|
|
1874
|
+
"data-error": m ? "true" : void 0
|
|
1875
|
+
},
|
|
1876
|
+
...I
|
|
1877
|
+
}
|
|
1878
|
+
)
|
|
1879
|
+
)
|
|
1880
|
+
}
|
|
1881
|
+
);
|
|
1882
|
+
}
|
|
1883
|
+
);
|
|
1884
|
+
hr.displayName = "TextField";
|
|
1885
|
+
const jr = (o) => /* @__PURE__ */ e("div", { ...o, children: "TimePicker" }), Vr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Timeline" }), fr = $(function({ overStyled: t = !1, order: n = 1, ...a }, r) {
|
|
1886
|
+
const s = C(a, t), c = s.className, l = `recursica_brand_typography_h${n}`, d = c ? `${l} ${c}` : l;
|
|
1887
|
+
return /* @__PURE__ */ e(
|
|
1888
|
+
co,
|
|
1889
|
+
{
|
|
1890
|
+
ref: r,
|
|
1891
|
+
order: n,
|
|
1892
|
+
className: d,
|
|
1893
|
+
...s
|
|
1894
|
+
}
|
|
1895
|
+
);
|
|
1896
|
+
});
|
|
1897
|
+
fr.displayName = "Title";
|
|
1898
|
+
const Gr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Toast" }), Mr = (o) => /* @__PURE__ */ e("div", { ...o, children: "Tooltip" }), qr = (o) => /* @__PURE__ */ e("div", { ...o, children: "TransferList" });
|
|
1899
|
+
export {
|
|
1900
|
+
ve as Accordion,
|
|
1901
|
+
Ne as AccordionControl,
|
|
1902
|
+
Se as AccordionItem,
|
|
1903
|
+
$e as AccordionPanel,
|
|
1904
|
+
wo as Avatar,
|
|
1905
|
+
Po as Badge,
|
|
1906
|
+
Ro as Breadcrumb,
|
|
1907
|
+
Bo as Button,
|
|
1908
|
+
be as Card,
|
|
1909
|
+
Ie as CardContent,
|
|
1910
|
+
Le as CardFooter,
|
|
1911
|
+
Te as CardHeader,
|
|
1912
|
+
Re as CardSection,
|
|
1913
|
+
Be as Checkbox,
|
|
1914
|
+
Ee as CheckboxGroup,
|
|
1915
|
+
kt as Chip,
|
|
1916
|
+
At as Container,
|
|
1917
|
+
xr as DatePicker,
|
|
1918
|
+
Lt as Dropdown,
|
|
1919
|
+
pe as EmptyValueRenderer,
|
|
1920
|
+
gr as FileInput,
|
|
1921
|
+
Wr as FileUpload,
|
|
1922
|
+
zt as Flex,
|
|
1923
|
+
U as FormControlLayout,
|
|
1924
|
+
Et as Group,
|
|
1925
|
+
kr as HoverCard,
|
|
1926
|
+
ze as Label,
|
|
1927
|
+
it as Layer,
|
|
1928
|
+
wr as Link,
|
|
1929
|
+
jt as Loader,
|
|
1930
|
+
Ar as Menu,
|
|
1931
|
+
Pr as Modal,
|
|
1932
|
+
Sr as NumberInput,
|
|
1933
|
+
Or as Pagination,
|
|
1934
|
+
Rr as Panel,
|
|
1935
|
+
Tr as Popover,
|
|
1936
|
+
Ve as Radio,
|
|
1937
|
+
je as RadioGroup,
|
|
1938
|
+
Qt as ReadOnlyBooleanField,
|
|
1939
|
+
Fe as ReadOnlyField,
|
|
1940
|
+
Ut as ReadOnlySwitchField,
|
|
1941
|
+
ce as ReadOnlyTextField,
|
|
1942
|
+
Cr as RecursicaThemeProvider,
|
|
1943
|
+
Lr as Search,
|
|
1944
|
+
Ir as SegmentedControl,
|
|
1945
|
+
zr as Slider,
|
|
1946
|
+
Jt as Stack,
|
|
1947
|
+
Fr as Stepper,
|
|
1948
|
+
Me as Switch,
|
|
1949
|
+
Ge as SwitchGroup,
|
|
1950
|
+
Er as Table,
|
|
1951
|
+
Br as Tabs,
|
|
1952
|
+
dr as Text,
|
|
1953
|
+
ur as TextArea,
|
|
1954
|
+
hr as TextField,
|
|
1955
|
+
jr as TimePicker,
|
|
1956
|
+
Vr as Timeline,
|
|
1957
|
+
fr as Title,
|
|
1958
|
+
Gr as Toast,
|
|
1959
|
+
Mr as Tooltip,
|
|
1960
|
+
qr as TransferList,
|
|
1961
|
+
X as WithReadOnlyWrapper
|
|
1962
|
+
};
|
|
1963
|
+
//# sourceMappingURL=mantine-adapter.js.map
|