mainstack-design-system 0.4.9 → 0.5.1
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/build/mainstack-design-system.js +10811 -10597
- package/build/src/components/InputFields/SelectInput/SelectInput.d.ts +3 -2
- package/build/src/components/index.d.ts +2 -0
- package/build/src/icons/EncryptedIcon.d.ts +4 -0
- package/build/src/icons/FingerprintIcon.d.ts +4 -0
- package/build/src/icons/QuestionMarkIcon.d.ts +4 -0
- package/build/src/icons/index.d.ts +3 -0
- package/build/src/stories/InputFields/UrlInput.stories.d.ts +1 -1
- package/build/src/stories/icons/index.d.ts +3 -0
- package/build/src/stories/notifications/TagsUpdate.stories.d.ts +1 -1
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export interface ISelectInputProps {
|
|
|
12
12
|
name: string;
|
|
13
13
|
placeholder?: string;
|
|
14
14
|
onChange?: (e: any) => void;
|
|
15
|
+
onInputChange?: (e: any) => void;
|
|
15
16
|
onBlur?: (e: any) => void;
|
|
16
17
|
options: Array<OptionType>;
|
|
17
18
|
value?: any;
|
|
@@ -26,5 +27,5 @@ export interface ISelectInputProps {
|
|
|
26
27
|
openMenuOnFocus?: boolean;
|
|
27
28
|
}
|
|
28
29
|
export declare const DropdownIndicator: (props: DropdownIndicatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
export declare const SelectInput: ({ label, id, name, placeholder, onBlur, onChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, openMenuOnFocus, }: ISelectInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
export declare const CreatableSelectInput: ({ label, id, name, placeholder, onBlur, onChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, }: ISelectInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
export declare const SelectInput: ({ label, id, name, placeholder, onBlur, onChange, onInputChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, openMenuOnFocus, }: ISelectInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export declare const CreatableSelectInput: ({ label, id, name, placeholder, onBlur, onChange, onInputChange, value, defaultValue, options, isMulti, hideSelectedOptions, CustomOption, CustomMultiValue, disabled, noOptionsMessage, fontFamily, }: ISelectInputProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -32,4 +32,6 @@ export { default as Subtitle } from "./Typography/Subtitle";
|
|
|
32
32
|
export { default as FileUploader } from "./Uploader/FileUploader";
|
|
33
33
|
export { default as ImageUploader } from "./Uploader/ImageUploader";
|
|
34
34
|
export { default as Loader } from "./Animations/Loader";
|
|
35
|
+
export { default as UrlInput } from "./InputFields/UrlInput";
|
|
36
|
+
export { default as TagsUpdate } from "./notifications/TagsUpdate";
|
|
35
37
|
export { customSnackbar, CustomSnackbarContainer, SnackbarType, } from "./notifications/Snackbar";
|
|
@@ -312,3 +312,6 @@ export { default as WebinarsIcon } from "./WebinarsIcon";
|
|
|
312
312
|
export { default as WidgetsFilledIcon } from "./WidgetsFilledIcon";
|
|
313
313
|
export { default as WidgetsIcon } from "./WidgetsIcon";
|
|
314
314
|
export { default as WorkshopsIcon } from "./WorkshopsIcon";
|
|
315
|
+
export { default as QuestionMarkIcon } from "./QuestionMarkIcon";
|
|
316
|
+
export { default as FingerprintIcon } from "./FingerprintIcon";
|
|
317
|
+
export { default as EncryptedIcon } from "./EncryptedIcon";
|
|
@@ -312,5 +312,8 @@ declare const IconsObject: {
|
|
|
312
312
|
WidgetsFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
313
313
|
WidgetsIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
314
314
|
WorkshopsIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
315
|
+
FingerprintIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
316
|
+
QuestionMarkIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
317
|
+
EncryptedIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
|
|
315
318
|
};
|
|
316
319
|
export default IconsObject;
|