@leanix/components 0.4.271 → 0.4.273
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.
@@ -12,6 +12,10 @@ export declare class SkeletonComponent {
|
|
12
12
|
* Border radius of the skeleton element. Valid CSS values are supported. Default is 4px.
|
13
13
|
*/
|
14
14
|
borderRadius?: string;
|
15
|
+
/**
|
16
|
+
* Color of the skeleton element. 'dark' or 'light' are supported. Default is 'light'.
|
17
|
+
*/
|
18
|
+
color: 'dark' | 'light';
|
15
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "lx-skeleton", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; }, {}, never, never, true, never>;
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "lx-skeleton", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
17
21
|
}
|