@mt-gloss/ui 0.1.132 → 0.1.134
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/{BaseAsyncButton-aDQ_TjJi.js → BaseAsyncButton-CJlY7Uik.js} +1 -1
- package/{Expandable-CvT19-Bf.js → Expandable-DA4NFzCR.js} +2768 -2720
- package/{UIContext-Dm0GYHFT.js → UIContext-CGQI_KJk.js} +658 -519
- package/catalog.js +4 -4
- package/index.js +1233 -1215
- package/internals.js +3 -3
- package/lib/base/BaseAccordion/BaseAccordion.d.ts +24 -4
- package/lib/base/BaseCard/BaseCard.d.ts +48 -8
- package/lib/base/BaseCheckbox/BaseCheckbox.d.ts +6 -1
- package/lib/base/BaseInput/BaseInput.d.ts +6 -1
- package/lib/base/BaseMaskedInput/BaseMaskedInput.d.ts +6 -1
- package/lib/base/BaseMenu/BaseMenu.d.ts +12 -2
- package/lib/base/BaseRadio/BaseRadio.d.ts +6 -1
- package/lib/base/BaseRating/BaseRating.d.ts +6 -1
- package/lib/base/BaseSegmentedControl/BaseSegmentedControl.d.ts +6 -1
- package/lib/base/BaseSelect/BaseSelect.d.ts +12 -2
- package/lib/base/BaseTextarea/BaseTextarea.d.ts +6 -1
- package/lib/base/BaseToggle/BaseToggle.d.ts +6 -1
- package/lib/base/BaseTooltip/BaseTooltip.d.ts +6 -1
- package/lib/composites/forms/PasswordInput.d.ts +6 -1
- package/lib/composites/forms/PhoneInput.d.ts +6 -1
- package/lib/composites/forms/SearchInput.d.ts +6 -1
- package/lib/composites/forms/TagInput.d.ts +6 -1
- package/lib/composites/inputs/FilterChip.d.ts +6 -1
- package/lib/composites/overlay/SplitButton/SplitButton.d.ts +6 -1
- package/lib/containers/ContainerDialog/ContainerDialog.d.ts +18 -3
- package/lib/containers/ContainerFormSection/ContainerFormSection.d.ts +6 -1
- package/lib/containers/ContainerPanel/ContainerPanel.d.ts +6 -1
- package/lib/containers/ContainerTable/ContainerTable.d.ts +6 -1
- package/lib/containers/ContainerToolbar/ContainerToolbar.d.ts +6 -1
- package/lib/primitives/dashboard/ResizePill/ResizePill.d.ts +7 -1
- package/lib/wrappers/Actionable/Actionable.d.ts +6 -1
- package/lib/wrappers/AsyncLoader/AsyncLoader.d.ts +6 -1
- package/lib/wrappers/ButtonGroup/ButtonGroup.d.ts +6 -1
- package/lib/wrappers/CheckboxGroup/CheckboxGroup.d.ts +6 -1
- package/lib/wrappers/Dismissible/Dismissible.d.ts +6 -1
- package/lib/wrappers/Expandable/Expandable.d.ts +6 -1
- package/lib/wrappers/InputGroup/InputGroup.d.ts +12 -2
- package/lib/wrappers/RadioGroup/RadioGroup.d.ts +6 -1
- package/lib/wrappers/Selectable/Selectable.d.ts +6 -1
- package/lib/wrappers/Sortable/Sortable.d.ts +6 -1
- package/package.json +1 -1
|
@@ -47,6 +47,11 @@ export interface GroupRadioProps {
|
|
|
47
47
|
description?: React.ReactNode;
|
|
48
48
|
disabled?: boolean;
|
|
49
49
|
}
|
|
50
|
-
export declare const GroupRadio:
|
|
50
|
+
export declare const GroupRadio: {
|
|
51
|
+
({ ref, value, ...props }: GroupRadioProps & {
|
|
52
|
+
ref?: React.Ref<HTMLInputElement>;
|
|
53
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
54
|
+
displayName: string;
|
|
55
|
+
};
|
|
51
56
|
export { RadioGroup as PresetRadioGroup };
|
|
52
57
|
export type { RadioGroupProps as PresetRadioGroupProps };
|
|
@@ -16,4 +16,9 @@ export interface SelectableProps {
|
|
|
16
16
|
*
|
|
17
17
|
* Usage: <Selectable selected={isSelected} onSelect={handleSelect}><Card>...</Card></Selectable>
|
|
18
18
|
*/
|
|
19
|
-
export declare const Selectable:
|
|
19
|
+
export declare const Selectable: {
|
|
20
|
+
({ ref, selected, onSelect, disabled, showCheckbox, children, }: SelectableProps & {
|
|
21
|
+
ref?: React.Ref<HTMLElement>;
|
|
22
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
displayName: string;
|
|
24
|
+
};
|
|
@@ -24,4 +24,9 @@ export interface SortableProps {
|
|
|
24
24
|
* </SortableContext>
|
|
25
25
|
* </DndContext>
|
|
26
26
|
*/
|
|
27
|
-
export declare const Sortable:
|
|
27
|
+
export declare const Sortable: {
|
|
28
|
+
({ ref, id, disabled, children, }: SortableProps & {
|
|
29
|
+
ref?: React.Ref<HTMLElement>;
|
|
30
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
displayName: string;
|
|
32
|
+
};
|