@ambuj.bhaskar/react-component-library 0.20.6-alpha → 0.20.7-alpha
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/dist/assets/index.css +1 -1
- package/dist/index.cjs +142 -143
- package/dist/index.d.ts +3 -1
- package/dist/index.js +22216 -22070
- package/dist/index.umd.js +146 -147
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ export declare type AwiEmptyStateProps = {
|
|
|
323
323
|
textClass?: string;
|
|
324
324
|
noPadding?: boolean;
|
|
325
325
|
title?: string;
|
|
326
|
+
stateTitle?: string;
|
|
326
327
|
};
|
|
327
328
|
|
|
328
329
|
export declare const AwiGenerateHeader: default_2.FC<AwiGenerateHeaderProps>;
|
|
@@ -410,6 +411,7 @@ export declare interface AwiMessageProps {
|
|
|
410
411
|
isLoading?: boolean;
|
|
411
412
|
textClass?: string;
|
|
412
413
|
noPadding?: boolean;
|
|
414
|
+
iconName?: string;
|
|
413
415
|
}
|
|
414
416
|
|
|
415
417
|
export declare const AwiMessageScreen: React.FC<AwiMessageProps>;
|
|
@@ -896,7 +898,7 @@ declare type IconPositionType = "before" | "after";
|
|
|
896
898
|
|
|
897
899
|
export declare type IconProps = SVGprops & {
|
|
898
900
|
name: IconName;
|
|
899
|
-
size?: "xs" | "s" | "m" | "l" | "xl" | "auto";
|
|
901
|
+
size?: "xs" | "s" | "m" | "l" | "xl" | "auto" | "full";
|
|
900
902
|
className?: string;
|
|
901
903
|
color?: Color;
|
|
902
904
|
background?: Color | "none";
|