@pismo/marola 1.0.0-beta.21 → 1.0.0-beta.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{Button-DiLqcAJG.js → Button-BAljjMv3.js} +2 -2
- package/dist/{ClickAwayListener-BaJ-OV_7.js → ClickAwayListener-DbEYZpyh.js} +3 -3
- package/dist/{Popup-lLWZt2wk.js → Popup-Ck3XlWMq.js} +3 -3
- package/dist/{Portal-B_Es6eUL.js → Portal-oY3enyAm.js} +2 -2
- package/dist/SelectButton-oWzluvmj.js +63 -0
- package/dist/{Toggle-CRfZgFJp.js → Toggle-Buew6bzm.js} +8 -7
- package/dist/assets/Autocomplete.css +1 -1
- package/dist/assets/SelectButton.css +1 -1
- package/dist/{combineHooksSlotProps-BtBYUV_B.js → combineHooksSlotProps-C-zYvfnF.js} +1 -1
- package/dist/components/Autocomplete/Autocomplete.d.ts +8 -39
- package/dist/components/Autocomplete/Autocomplete.js +369 -400
- package/dist/components/Autocomplete/Autocomplete.stories.d.ts +2 -1
- package/dist/components/Button/Button.js +1 -1
- package/dist/components/Chip/Chip.js +4 -3
- package/dist/components/Dialog/CloseIconButton.js +1 -1
- package/dist/components/Dialog/Dialog.js +4 -4
- package/dist/components/Dialog/Dialog.stories.d.ts +1 -1
- package/dist/components/IconButton/IconButton.js +1 -1
- package/dist/components/Input/Input.d.ts +41 -2
- package/dist/components/Input/Input.js +500 -100
- package/dist/components/Input/Input.stories.d.ts +3 -3
- package/dist/components/InputSearch/InputSearch.stories.d.ts +2 -2
- package/dist/components/ResultWithChips/ResultWithChips.js +1 -1
- package/dist/components/RowItem/RowItem.js +4 -3
- package/dist/components/Select/Select.d.ts +6 -0
- package/dist/components/Select/Select.js +391 -358
- package/dist/components/Select/SelectButton.js +1 -1
- package/dist/components/Snackbar/Snackbar.js +3 -3
- package/dist/components/Tabs/Tab.js +3 -3
- package/dist/components/Tabs/TabPanel.js +1 -1
- package/dist/components/Tabs/Tabs.js +3 -3
- package/dist/components/Toggle/Toggle.js +1 -1
- package/dist/components/ToggleGroup/Toggle.js +3 -2
- package/dist/components/ToggleGroup/ToggleGroup.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +3 -3
- package/dist/{index-D3Wj0eid.js → index-bQFToy-I.js} +1 -1
- package/dist/main.js +1 -1
- package/dist/{ownerDocument-B61GUaFs.js → ownerDocument-YGhwAnr1.js} +1 -1
- package/dist/{useButton-Bn3MNH8I.js → useButton-DcihopJG.js} +1 -1
- package/dist/{useList-BpJT77u3.js → useList-B9C55YB7.js} +2 -2
- package/dist/{useSlotProps-kRhf7Gil.js → useSlotProps-C_I1kEHr.js} +73 -72
- package/package.json +1 -1
- package/dist/Input.module-ZTRZRcNt.js +0 -405
- package/dist/SelectButton-CoOT2txy.js +0 -61
|
@@ -4,8 +4,9 @@ import "../../clsx-DB4S2d7J.js";
|
|
|
4
4
|
import "../Adornment/Adornment.js";
|
|
5
5
|
import "../Icon/Icon.js";
|
|
6
6
|
import "../Typography/Typography.js";
|
|
7
|
+
import "../Input/Input.js";
|
|
7
8
|
import "../Button/Button.js";
|
|
8
|
-
import { R as
|
|
9
|
+
import { R as b, R as c } from "../../Toggle-Buew6bzm.js";
|
|
9
10
|
import "../Dialog/Dialog.js";
|
|
10
11
|
import "../IconButton/IconButton.js";
|
|
11
12
|
import "../Select/Select.js";
|
|
@@ -14,6 +15,6 @@ import "../Tabs/Tabs.js";
|
|
|
14
15
|
import "../../Group-B3p31ftp.js";
|
|
15
16
|
import "../../contexts/SnackbarProvider/SnackbarProvider.js";
|
|
16
17
|
export {
|
|
17
|
-
|
|
18
|
-
|
|
18
|
+
b as RowItem,
|
|
19
|
+
c as default
|
|
19
20
|
};
|
|
@@ -15,7 +15,13 @@ export type SelectProps = {
|
|
|
15
15
|
placeholder?: string;
|
|
16
16
|
prefix?: string;
|
|
17
17
|
className?: string;
|
|
18
|
+
id?: string;
|
|
18
19
|
value?: string;
|
|
20
|
+
label?: string;
|
|
21
|
+
classNameWrapper?: string;
|
|
22
|
+
classNameLabel?: string;
|
|
23
|
+
testIdLabel?: string;
|
|
24
|
+
testIdWrapper?: string;
|
|
19
25
|
'data-testid'?: string;
|
|
20
26
|
onChange?: (value: string | null, event?: React.SyntheticEvent<Element, Event> | null) => void;
|
|
21
27
|
};
|