@lifesg/react-design-system 2.5.1 → 2.6.0-canary.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/alert/alert.d.ts +1 -1
- package/alert/alert.style.d.ts +14 -1
- package/alert/index.js +150 -126
- package/alert/index.js.map +1 -1
- package/alert/types.d.ts +4 -0
- package/cjs/index.js +77 -21
- package/cjs/index.js.map +1 -1
- package/file-upload/file-upload.styles.d.ts +2 -2
- package/file-upload/index.js +754 -730
- package/file-upload/index.js.map +1 -1
- package/index.js +118 -62
- package/index.js.map +1 -1
- package/notification-banner/index.js +169 -137
- package/notification-banner/index.js.map +1 -1
- package/notification-banner/notification-banner.d.ts +1 -1
- package/notification-banner/notification-banner.styles.d.ts +8 -2
- package/notification-banner/types.d.ts +4 -0
- package/package.json +1 -1
- package/uneditable-section/index.js +238 -214
- package/uneditable-section/index.js.map +1 -1
- package/uneditable-section/section-item.styles.d.ts +1 -1
|
@@ -4,8 +4,8 @@ export declare const Title: import("styled-components").StyledComponent<"h4", im
|
|
|
4
4
|
export declare const TitleContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
5
5
|
export declare const Description: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, import("../text").TextProps, never>;
|
|
6
6
|
export declare const DescriptionContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
-
export declare const WarningAlert: import("styled-components").StyledComponent<({ type, className, children, actionLink, actionLinkIcon, sizeType, showIcon, ...otherProps }: import("../alert").AlertProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
7
|
+
export declare const WarningAlert: import("styled-components").StyledComponent<({ type, className, children, actionLink, actionLinkIcon, sizeType, showIcon, customIcon, maxCollapsedHeight, ...otherProps }: import("../alert").AlertProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
8
8
|
export declare const UploadButtonContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
9
9
|
export declare const UploadButton: import("styled-components").StyledComponent<(props: import("../button").ButtonProps & import("react").RefAttributes<HTMLButtonElement>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>, import("styled-components").DefaultTheme, {}, never>;
|
|
10
10
|
export declare const UploadButtonLabel: import("styled-components").StyledComponent<"label", import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
-
export declare const ErrorAlert: import("styled-components").StyledComponent<({ type, className, children, actionLink, actionLinkIcon, sizeType, showIcon, ...otherProps }: import("../alert").AlertProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|
|
11
|
+
export declare const ErrorAlert: import("styled-components").StyledComponent<({ type, className, children, actionLink, actionLinkIcon, sizeType, showIcon, customIcon, maxCollapsedHeight, ...otherProps }: import("../alert").AlertProps) => JSX.Element, import("styled-components").DefaultTheme, {}, never>;
|