@recursica/mantine-adapter 0.7.0 → 0.8.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/CHANGELOG.md +6 -0
- package/dist/mantine-adapter.cjs +1 -1
- package/dist/mantine-adapter.cjs.map +1 -1
- package/dist/mantine-adapter.css +1 -1
- package/dist/mantine-adapter.js +963 -639
- package/dist/mantine-adapter.js.map +1 -1
- package/dist/src/components/Container/Container.d.ts +14 -0
- package/dist/src/components/Dropdown/Dropdown.d.ts +10 -2
- package/dist/src/components/Flex/Flex.d.ts +17 -0
- package/dist/src/components/Group/Group.d.ts +17 -0
- package/dist/src/components/Stack/Stack.d.ts +15 -0
- package/dist/src/components/TextArea/TextArea.d.ts +14 -2
- package/dist/src/components/index.d.ts +6 -0
- package/package.json +1 -1
- 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 +102 -0
- package/src/components/Container/Container.tsx +63 -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 +77 -5
- package/src/components/Dropdown/Dropdown.tsx +184 -5
- 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 +125 -0
- package/src/components/Flex/Flex.tsx +68 -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 +117 -0
- package/src/components/Group/Group.tsx +68 -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 +105 -0
- package/src/components/Stack/Stack.tsx +66 -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 +77 -5
- package/src/components/TextArea/TextArea.tsx +162 -5
- package/src/components/index.ts +6 -0
package/src/components/index.ts
CHANGED
|
@@ -7,10 +7,13 @@ export * from "./Card/Card";
|
|
|
7
7
|
export * from "./Checkbox/Checkbox";
|
|
8
8
|
export * from "./Checkbox/CheckboxGroup";
|
|
9
9
|
export * from "./Chip/Chip";
|
|
10
|
+
export * from "./Container/Container";
|
|
10
11
|
export * from "./DatePicker/DatePicker";
|
|
11
12
|
export * from "./Dropdown/Dropdown";
|
|
12
13
|
export * from "./FileInput/FileInput";
|
|
13
14
|
export * from "./FileUpload/FileUpload";
|
|
15
|
+
export * from "./Flex/Flex";
|
|
16
|
+
export * from "./Group/Group";
|
|
14
17
|
export * from "./HoverCard/HoverCard";
|
|
15
18
|
export * from "./Link/Link";
|
|
16
19
|
export * from "./Loader/Loader";
|
|
@@ -26,14 +29,17 @@ export * from "./ReadOnlyField";
|
|
|
26
29
|
export * from "./Search/Search";
|
|
27
30
|
export * from "./SegmentedControl/SegmentedControl";
|
|
28
31
|
export * from "./Slider/Slider";
|
|
32
|
+
export * from "./Stack/Stack";
|
|
29
33
|
export * from "./Stepper/Stepper";
|
|
30
34
|
export * from "./Switch/Switch";
|
|
31
35
|
export * from "./Table/Table";
|
|
32
36
|
export * from "./Tabs/Tabs";
|
|
37
|
+
export * from "./Text/Text";
|
|
33
38
|
export * from "./TextArea/TextArea";
|
|
34
39
|
export * from "./TextField/TextField";
|
|
35
40
|
export * from "./TimePicker/TimePicker";
|
|
36
41
|
export * from "./Timeline/Timeline";
|
|
42
|
+
export * from "./Title/Title";
|
|
37
43
|
export * from "./Toast/Toast";
|
|
38
44
|
export * from "./Tooltip/Tooltip";
|
|
39
45
|
export * from "./TransferList/TransferList";
|