mainstack-design-system 0.6.0 → 0.6.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.
@@ -15,6 +15,7 @@ interface IInput extends InputProps {
15
15
  isAvailable?: boolean;
16
16
  isNotAvailable?: boolean;
17
17
  width?: string;
18
+ usernamePrefix?: string;
18
19
  }
19
- declare const UsernameInput: ({ label, name, id, value, onChange, defaultValue, placeholder, inputLeftMargin, isChecking, isAvailable, isNotAvailable, errorMessage, width, ...props }: IInput) => import("react/jsx-runtime").JSX.Element;
20
+ declare const UsernameInput: ({ label, name, id, value, onChange, defaultValue, placeholder, inputLeftMargin, isChecking, isAvailable, isNotAvailable, errorMessage, width, usernamePrefix, ...props }: IInput) => import("react/jsx-runtime").JSX.Element;
20
21
  export default UsernameInput;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/react";
3
+ declare const CourseFilledIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default CourseFilledIcon;
@@ -0,0 +1,4 @@
1
+ /** @format */
2
+ import { IconProps } from "@chakra-ui/react";
3
+ declare const CourseIcon: (props: IconProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default CourseIcon;
@@ -322,3 +322,5 @@ export { default as FootPrintIcon } from "./FootPrintIcon";
322
322
  export { default as IntegrationsIcon } from "./IntegrationsIcon";
323
323
  export { default as PersonBookIcon } from "./PersonBookIcon";
324
324
  export { default as PersonBookFilledIcon } from "./PersonBookFilledIcon";
325
+ export { default as CourseIcon } from "./CourseIcon";
326
+ export { default as CourseFilledIcon } from "./CourseFilledIcon";
@@ -322,5 +322,7 @@ declare const IconsObject: {
322
322
  IntegrationsIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
323
323
  PersonBookIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
324
324
  PersonBookFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
325
+ CourseIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
326
+ CourseFilledIcon: (props: import("@chakra-ui/icon/dist/icon").IconProps) => import("react/jsx-runtime").JSX.Element;
325
327
  };
326
328
  export default IconsObject;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mainstack-design-system",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "type": "module",
5
5
  "main": "build/mainstack-design-system.js",
6
6
  "types": "build/src/index.d.ts",