mainstack-design-system 0.5.3 → 0.5.5

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.
@@ -33,5 +33,5 @@ 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
35
  export { default as UrlInput } from "./InputFields/UrlInput";
36
- export { default as TagsUpdate } from "./notifications/TagsUpdate";
36
+ export { default as Tag } from "./notifications/Tag";
37
37
  export { customSnackbar, CustomSnackbarContainer, SnackbarType, } from "./notifications/Snackbar";
@@ -0,0 +1,9 @@
1
+ /** @format */
2
+ import { ReactNode } from "react";
3
+ export interface ITag {
4
+ status: "Successful" | "Pending" | "Failed" | "Default";
5
+ label?: string;
6
+ icon?: ReactNode;
7
+ }
8
+ declare const Tag: ({ status, icon, label }: ITag) => import("react/jsx-runtime").JSX.Element;
9
+ export default Tag;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const Book5FilledIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default Book5FilledIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const ContactSupportIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default ContactSupportIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const FootPrintIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default FootPrintIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const IntegrationsIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default IntegrationsIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const PaidFilledIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default PaidFilledIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const PersonBookFilledIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default PersonBookFilledIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/icons";
3
+ declare const PersonBookIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default PersonBookIcon;
@@ -47,6 +47,7 @@ export { default as BlockIcon } from "./BlockIcon";
47
47
  export { default as BoltFilledIcon } from "./BoltFilledIcon";
48
48
  export { default as BoltIcon } from "./BoltIcon";
49
49
  export { default as BookOnlineIcon } from "./BookOnlineIcon";
50
+ export { default as Book5FilledIcon } from "./Book5FilledIcon";
50
51
  export { default as BugReportIcon } from "./BugReportIcon";
51
52
  export { default as BusinessCenterFilledIcon } from "./BusinessCenterFilledIcon";
52
53
  export { default as BusinessCenterIcon } from "./BusinessCenterIcon";
@@ -211,6 +212,7 @@ export { default as OpenInNewIcon } from "./OpenInNewIcon";
211
212
  export { default as OthersIcon } from "./OthersIcon";
212
213
  export { default as PageViewIcon } from "./PageViewIcon";
213
214
  export { default as PaidIcon } from "./PaidIcon";
215
+ export { default as PaidFilledIcon } from "./PaidFilledIcon";
214
216
  export { default as PaletteFilledIcon } from "./PaletteFilledIcon";
215
217
  export { default as PaletteIcon } from "./PaletteIcon";
216
218
  export { default as PauseIcon } from "./PauseIcon";
@@ -315,3 +317,8 @@ export { default as WorkshopsIcon } from "./WorkshopsIcon";
315
317
  export { default as QuestionMarkIcon } from "./QuestionMarkIcon";
316
318
  export { default as FingerprintIcon } from "./FingerprintIcon";
317
319
  export { default as EncryptedIcon } from "./EncryptedIcon";
320
+ export { default as ContactSupportIcon } from "./ContactSupportIcon";
321
+ export { default as FootPrintIcon } from "./FootPrintIcon";
322
+ export { default as IntegrationsIcon } from "./IntegrationsIcon";
323
+ export { default as PersonBookIcon } from "./PersonBookIcon";
324
+ export { default as PersonBookFilledIcon } from "./PersonBookFilledIcon";
@@ -47,6 +47,7 @@ declare const IconsObject: {
47
47
  BoltFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
48
48
  BoltIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
49
49
  BookOnlineIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
50
+ Book5FilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
50
51
  BugReportIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
51
52
  BarChartFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
52
53
  BusinessCenterFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -210,6 +211,7 @@ declare const IconsObject: {
210
211
  OpenInNewIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
211
212
  OthersIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
212
213
  PageViewIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
214
+ PaidFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
213
215
  PaidIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
214
216
  PaletteFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
215
217
  PaletteIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
@@ -315,5 +317,10 @@ declare const IconsObject: {
315
317
  FingerprintIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
316
318
  QuestionMarkIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
317
319
  EncryptedIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
320
+ ContactSupportIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
321
+ FootPrintIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
322
+ IntegrationsIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
323
+ PersonBookIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
324
+ PersonBookFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
318
325
  };
319
326
  export default IconsObject;
@@ -1,7 +1,7 @@
1
1
  /** @format */
2
- import { TagsUpdate } from "components";
2
+ import { Tag } from "components";
3
3
  import type { Meta } from "@storybook/react";
4
- declare const meta: Meta<typeof TagsUpdate>;
4
+ declare const meta: Meta<typeof Tag>;
5
5
  export default meta;
6
6
  type Story = typeof meta;
7
7
  export declare const Default: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mainstack-design-system",
3
- "version": "0.5.3",
3
+ "version": "0.5.5",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",
@@ -1,9 +0,0 @@
1
- /** @format */
2
- import { ReactNode } from "react";
3
- export interface ITagsUpdate {
4
- status: "Successful" | "Pending" | "Failed" | "Default";
5
- label?: string;
6
- icon?: ReactNode;
7
- }
8
- declare const TagsUpdate: ({ status, icon, label }: ITagsUpdate) => import("react/jsx-runtime").JSX.Element;
9
- export default TagsUpdate;