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.
@@ -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";
@@ -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";
@@ -1,5 +1,5 @@
1
1
  /** @format */
2
- import UrlInput from "components/InputFields/UrlInput";
2
+ import { UrlInput } from "components";
3
3
  import type { Meta, StoryObj } from "@storybook/react";
4
4
  declare const meta: Meta<typeof UrlInput>;
5
5
  export default meta;
@@ -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;
@@ -1,5 +1,5 @@
1
1
  /** @format */
2
- import TagsUpdate from "components/notifications/TagsUpdate";
2
+ import { TagsUpdate } from "components";
3
3
  import type { Meta } from "@storybook/react";
4
4
  declare const meta: Meta<typeof TagsUpdate>;
5
5
  export default meta;
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.1",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",