@indigina/ui-kit 1.0.155 → 1.0.157

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.
@@ -7,6 +7,7 @@ export interface KitCtaPanelConfirmation<T> {
7
7
  title: string;
8
8
  description?: string;
9
9
  icon: KitSvgIcon;
10
+ checkboxLabel?: string;
10
11
  dropdownLabel?: string;
11
12
  defaultDropdownItem?: KitDropdownItem<T>;
12
13
  dropdownItems?: KitDropdownItem<T>[];
@@ -5,8 +5,9 @@ import * as i3 from "../kit-svg-icon/kit-svg-icon.module";
5
5
  import * as i4 from "../kit-dropdown/kit-dropdown.module";
6
6
  import * as i5 from "@angular/forms";
7
7
  import * as i6 from "../kit-cta-panel-action/kit-cta-panel-action.module";
8
+ import * as i7 from "../kit-checkbox/kit-checkbox.module";
8
9
  export declare class KitCtaPanelConfirmationModule {
9
10
  static ɵfac: i0.ɵɵFactoryDeclaration<KitCtaPanelConfirmationModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<KitCtaPanelConfirmationModule, [typeof i1.KitCtaPanelConfirmationComponent], [typeof i2.CommonModule, typeof i3.KitSvgIconModule, typeof i4.KitDropdownModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i3.KitSvgIconModule, typeof i4.KitDropdownModule, typeof i6.KitCtaPanelActionModule], [typeof i1.KitCtaPanelConfirmationComponent]>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KitCtaPanelConfirmationModule, [typeof i1.KitCtaPanelConfirmationComponent], [typeof i2.CommonModule, typeof i3.KitSvgIconModule, typeof i4.KitDropdownModule, typeof i5.FormsModule, typeof i5.ReactiveFormsModule, typeof i3.KitSvgIconModule, typeof i4.KitDropdownModule, typeof i6.KitCtaPanelActionModule, typeof i7.KitCheckboxModule], [typeof i1.KitCtaPanelConfirmationComponent]>;
11
12
  static ɵinj: i0.ɵɵInjectorDeclaration<KitCtaPanelConfirmationModule>;
12
13
  }
@@ -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
@@ -7,7 +7,7 @@
7
7
  "components",
8
8
  "shared"
9
9
  ],
10
- "version": "1.0.155",
10
+ "version": "1.0.157",
11
11
  "peerDependencies": {
12
12
  "@angular/common": "15.1.0",
13
13
  "@angular/core": "15.1.0"
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';
@@ -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 */