@epam/ai-dial-ui-kit 0.11.0-dev.35 → 0.11.0-dev.37
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/{JsonEditor-Bwbskv6W.js → JsonEditor-GXjQTZv5.js} +1 -1
- package/dist/{JsonEditor-B_vNRfJP.cjs → JsonEditor-KBnr19az.cjs} +1 -1
- package/dist/{MarkdownEditor-wPmRHdpw.cjs → MarkdownEditor-C4Xf_B4H.cjs} +1 -1
- package/dist/{MarkdownEditor-Ds0geuX8.js → MarkdownEditor-DrYZyap7.js} +1 -1
- package/dist/components-manifest.json +14 -2
- package/dist/dial-ui-kit.cjs.js +1 -1
- package/dist/dial-ui-kit.es.js +1 -1
- package/dist/{index-Dooq2EWu.js → index-BNn5xWbt.js} +61 -40
- package/dist/{index-BdrWy5ZV.cjs → index-C3Y8W4vu.cjs} +2 -2
- package/dist/src/components/Skeleton/Skeleton.d.ts +4 -0
- package/package.json +1 -1
|
@@ -18,6 +18,8 @@ export interface DialSkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
18
18
|
variant?: DialSkeletonVariant;
|
|
19
19
|
width?: string | number;
|
|
20
20
|
height?: string | number;
|
|
21
|
+
overlay?: ReactNode;
|
|
22
|
+
color?: string;
|
|
21
23
|
}
|
|
22
24
|
/**
|
|
23
25
|
* DialSkeleton
|
|
@@ -74,5 +76,7 @@ export interface DialSkeletonProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
74
76
|
* @param [width] - Width of the skeleton
|
|
75
77
|
* @param [height] - Height of the skeleton
|
|
76
78
|
* @param [className] - Additional CSS classes
|
|
79
|
+
* @param [overlay] - Content to overlay on top of the skeleton (e.g., a spinner)
|
|
80
|
+
* @param [color] - Custom background color for the skeleton elements (overrides the default token)
|
|
77
81
|
*/
|
|
78
82
|
export declare const DialSkeleton: FC<DialSkeletonProps>;
|