@club-employes/utopia 4.49.0 → 4.50.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.
|
@@ -101,6 +101,8 @@ declare const __VLS_component: DefineComponent<ModalProps, {}, {}, {}, {}, Compo
|
|
|
101
101
|
animation: ModalAnimation;
|
|
102
102
|
position: ModalPosition;
|
|
103
103
|
showCloseButton: boolean;
|
|
104
|
+
showHeader: boolean;
|
|
105
|
+
showFooter: boolean;
|
|
104
106
|
focusTrap: boolean;
|
|
105
107
|
blurBackdrop: boolean;
|
|
106
108
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
export { BottomSheet } from './BottomSheet';
|
|
2
|
-
export type { BottomSheetChangeReason, BottomSheetProps } from './BottomSheet';
|
|
2
|
+
export type { BottomSheetChangeReason, BottomSheetProps } from './BottomSheet/types';
|
|
3
3
|
export { DropDown } from './DropDown';
|
|
4
4
|
export { FeedbackState } from './FeedbackState';
|
|
5
|
+
export type { ErrorStateProps, FeedbackStateProps } from './FeedbackState/types';
|
|
5
6
|
export { FilterChip } from './FilterChip';
|
|
7
|
+
export type { FilterChipProps } from './FilterChip/types';
|
|
6
8
|
export { InputCode } from './InputCode';
|
|
7
9
|
export type { InputCodeProps } from './InputCode';
|
|
8
10
|
export { Modal } from './Modal';
|
|
11
|
+
export type { ModalChangeReason, ModalProps } from './Modal/types';
|
|
9
12
|
export { PriceTag } from './PriceTag';
|
|
10
13
|
export { SearchBox } from './SearchBox';
|
|
11
14
|
export { Slider } from './Slider';
|
package/dist/icons-list.json
CHANGED