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.
- package/build/mainstack-design-system.js +2951 -2919
- package/build/src/components/InputFields/UsernameInput.d.ts +2 -1
- package/build/src/icons/CourseFilledIcon.d.ts +4 -0
- package/build/src/icons/CourseIcon.d.ts +4 -0
- package/build/src/icons/index.d.ts +2 -0
- package/build/src/stories/icons/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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;
|