mainstack-design-system 0.5.0 → 0.5.2

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.
@@ -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";
@@ -1,8 +1,9 @@
1
1
  /** @format */
2
2
  import { ReactNode } from "react";
3
3
  export interface ITagsUpdate {
4
- status: "Successful" | "Pending" | "Failed";
4
+ status: "Successful" | "Pending" | "Failed" | "Default";
5
+ label?: string;
5
6
  icon?: ReactNode;
6
7
  }
7
- declare const TagsUpdate: ({ status, icon }: ITagsUpdate) => import("react/jsx-runtime").JSX.Element;
8
+ declare const TagsUpdate: ({ status, icon, label }: ITagsUpdate) => import("react/jsx-runtime").JSX.Element;
8
9
  export default TagsUpdate;
@@ -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;
@@ -1,8 +1,9 @@
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;
6
6
  type Story = typeof meta;
7
7
  export declare const Default: Story;
8
+ export declare const WithLabel: Story;
8
9
  export declare const WithIcon: Story;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mainstack-design-system",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",