@indigina/ui-kit 1.0.154 → 1.0.156
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/assets/icons/rotate-left.svg +4 -0
- package/esm2020/lib/components/kit-location-stepper/kit-location-stepper.component.mjs +2 -2
- package/esm2020/lib/components/kit-skeleton/kit-skeleton.component.mjs +49 -0
- package/esm2020/lib/components/kit-skeleton/kit-skeleton.module.mjs +28 -0
- package/esm2020/lib/components/kit-svg-icon/kit-svg-icon.const.mjs +2 -1
- package/esm2020/lib/components/kit-svg-sprite/kit-svg-sprite.component.mjs +3 -3
- package/esm2020/public-api.mjs +4 -1
- package/fesm2015/indigina-ui-kit.mjs +77 -5
- package/fesm2015/indigina-ui-kit.mjs.map +1 -1
- package/fesm2020/indigina-ui-kit.mjs +77 -5
- package/fesm2020/indigina-ui-kit.mjs.map +1 -1
- package/lib/components/kit-skeleton/kit-skeleton.component.d.ts +30 -0
- package/lib/components/kit-skeleton/kit-skeleton.module.d.ts +9 -0
- package/lib/components/kit-svg-icon/kit-svg-icon.const.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/styles/styles.scss +1 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare enum KitSkeletonShape {
|
|
3
|
+
TEXT = "text",
|
|
4
|
+
CIRCLE = "circle",
|
|
5
|
+
RECTANGLE = "rectangle"
|
|
6
|
+
}
|
|
7
|
+
export declare enum KitSkeletonAnimation {
|
|
8
|
+
PULSE = "pulse",
|
|
9
|
+
WAVE = "wave"
|
|
10
|
+
}
|
|
11
|
+
export declare class KitSkeletonComponent {
|
|
12
|
+
/**
|
|
13
|
+
Defines the width of the skeleton component
|
|
14
|
+
*/
|
|
15
|
+
width: string | number | null;
|
|
16
|
+
/**
|
|
17
|
+
Defines the height of the skeleton component
|
|
18
|
+
*/
|
|
19
|
+
height: string | number | null;
|
|
20
|
+
/**
|
|
21
|
+
Defines the shape of the skeleton
|
|
22
|
+
*/
|
|
23
|
+
shape: KitSkeletonShape;
|
|
24
|
+
/**
|
|
25
|
+
Defines the animation of the skeleton
|
|
26
|
+
*/
|
|
27
|
+
animation: KitSkeletonAnimation | false;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitSkeletonComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitSkeletonComponent, "kit-skeleton", never, { "width": "width"; "height": "height"; "shape": "shape"; "animation": "animation"; }, {}, never, never, false, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./kit-skeleton.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@progress/kendo-angular-indicators";
|
|
5
|
+
export declare class KitSkeletonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KitSkeletonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<KitSkeletonModule, [typeof i1.KitSkeletonComponent], [typeof i2.CommonModule, typeof i3.IndicatorsModule], [typeof i1.KitSkeletonComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<KitSkeletonModule>;
|
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -72,3 +72,5 @@ export { KitDialogActionsComponent } from './lib/components/kit-dialog-actions/k
|
|
|
72
72
|
export { KitDialogActionsModule } from './lib/components/kit-dialog-actions/kit-dialog-actions.module';
|
|
73
73
|
export { KitTimepickerComponent } from './lib/components/kit-timepicker/kit-timepicker.component';
|
|
74
74
|
export { KitTimepickerModule } from './lib/components/kit-timepicker/kit-timepicker.module';
|
|
75
|
+
export { KitSkeletonComponent, KitSkeletonShape, KitSkeletonAnimation } from './lib/components/kit-skeleton/kit-skeleton.component';
|
|
76
|
+
export { KitSkeletonModule } from './lib/components/kit-skeleton/kit-skeleton.module';
|
package/styles/styles.scss
CHANGED
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
@import "@progress/kendo-theme-default/scss/switch";
|
|
10
10
|
@import "@progress/kendo-theme-default/scss/tooltip";
|
|
11
11
|
@import "@progress/kendo-theme-default/scss/dialog";
|
|
12
|
+
@import "@progress/kendo-theme-default/scss/skeleton";
|
|
12
13
|
@import "ngx-toastr/toastr";
|
|
13
14
|
|
|
14
15
|
/* styles which need to be included by default into app styles */
|