@leanix/components 0.4.246 → 0.4.247
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/esm2022/index.mjs +2 -1
- package/esm2022/lib/core-ui/components/skeleton/skeleton.component.mjs +26 -0
- package/fesm2022/leanix-components.mjs +25 -1
- package/fesm2022/leanix-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/core-ui/components/skeleton/skeleton.component.d.ts +17 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -32,6 +32,7 @@ export * from './lib/core-ui/components/file-download-button/file-download-butto
|
|
32
32
|
export * from './lib/core-ui/components/icon-scale/icon-scale.component';
|
33
33
|
export * from './lib/core-ui/components/integration-link-card/integration-link-card.component';
|
34
34
|
export * from './lib/core-ui/components/integration-link-card/integration-link-card-group.component';
|
35
|
+
export * from './lib/core-ui/components/skeleton/skeleton.component';
|
35
36
|
export * from './lib/core-ui/components/spinner/spinner.component';
|
36
37
|
export * from './lib/core-ui/components/stepper/stepper.component';
|
37
38
|
export * from './lib/core-ui/components/table/table-header/table-header.component';
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class SkeletonComponent {
|
3
|
+
/**
|
4
|
+
* Width of the skeleton element. Valid CSS values are supported. Default is 100% width of the parent.
|
5
|
+
*/
|
6
|
+
width?: string;
|
7
|
+
/**
|
8
|
+
* Height of the skeleton element. Valid CSS values are supported. Default is 100% height of the parent.
|
9
|
+
*/
|
10
|
+
height?: string;
|
11
|
+
/**
|
12
|
+
* Border radius of the skeleton element. Valid CSS values are supported. Default is 4px.
|
13
|
+
*/
|
14
|
+
borderRadius?: string;
|
15
|
+
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>;
|
17
|
+
}
|