mainstack-design-system 0.4.9 → 0.5.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.
@@ -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;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const EncryptedIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default EncryptedIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const FingerprintIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default FingerprintIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const QuestionMarkIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default QuestionMarkIcon;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mainstack-design-system",
3
- "version": "0.4.9",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",