@indigina/ui-kit 1.0.155 → 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/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/public-api.mjs +4 -1
- package/fesm2015/indigina-ui-kit.mjs +72 -1
- package/fesm2015/indigina-ui-kit.mjs.map +1 -1
- package/fesm2020/indigina-ui-kit.mjs +72 -1
- 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/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/styles/styles.scss +1 -0
|
@@ -25,6 +25,8 @@ import { RouterModule } from '@angular/router';
|
|
|
25
25
|
import { v4 } from 'uuid';
|
|
26
26
|
import * as i1$5 from '@progress/kendo-angular-dialog';
|
|
27
27
|
import { DialogModule, WindowModule } from '@progress/kendo-angular-dialog';
|
|
28
|
+
import * as i1$6 from '@progress/kendo-angular-indicators';
|
|
29
|
+
import { IndicatorsModule } from '@progress/kendo-angular-indicators';
|
|
28
30
|
|
|
29
31
|
var KitButtonType;
|
|
30
32
|
(function (KitButtonType) {
|
|
@@ -3208,11 +3210,80 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImpor
|
|
|
3208
3210
|
}]
|
|
3209
3211
|
}] });
|
|
3210
3212
|
|
|
3213
|
+
var KitSkeletonShape;
|
|
3214
|
+
(function (KitSkeletonShape) {
|
|
3215
|
+
KitSkeletonShape["TEXT"] = "text";
|
|
3216
|
+
KitSkeletonShape["CIRCLE"] = "circle";
|
|
3217
|
+
KitSkeletonShape["RECTANGLE"] = "rectangle";
|
|
3218
|
+
})(KitSkeletonShape || (KitSkeletonShape = {}));
|
|
3219
|
+
var KitSkeletonAnimation;
|
|
3220
|
+
(function (KitSkeletonAnimation) {
|
|
3221
|
+
KitSkeletonAnimation["PULSE"] = "pulse";
|
|
3222
|
+
KitSkeletonAnimation["WAVE"] = "wave";
|
|
3223
|
+
})(KitSkeletonAnimation || (KitSkeletonAnimation = {}));
|
|
3224
|
+
class KitSkeletonComponent {
|
|
3225
|
+
constructor() {
|
|
3226
|
+
/**
|
|
3227
|
+
Defines the width of the skeleton component
|
|
3228
|
+
*/
|
|
3229
|
+
this.width = null;
|
|
3230
|
+
/**
|
|
3231
|
+
Defines the height of the skeleton component
|
|
3232
|
+
*/
|
|
3233
|
+
this.height = null;
|
|
3234
|
+
/**
|
|
3235
|
+
Defines the shape of the skeleton
|
|
3236
|
+
*/
|
|
3237
|
+
this.shape = KitSkeletonShape.TEXT;
|
|
3238
|
+
/**
|
|
3239
|
+
Defines the animation of the skeleton
|
|
3240
|
+
*/
|
|
3241
|
+
this.animation = KitSkeletonAnimation.WAVE;
|
|
3242
|
+
}
|
|
3243
|
+
}
|
|
3244
|
+
KitSkeletonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
3245
|
+
KitSkeletonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.0", type: KitSkeletonComponent, selector: "kit-skeleton", inputs: { width: "width", height: "height", shape: "shape", animation: "animation" }, ngImport: i0, template: "<kendo-skeleton class=\"kit-skeleton\"\n [width]=\"width\"\n [height]=\"height\"\n [shape]=\"shape\"\n [animation]=\"animation\"\n></kendo-skeleton>\n", dependencies: [{ kind: "component", type: i1$6.SkeletonComponent, selector: "kendo-skeleton", inputs: ["animation", "shape", "width", "height"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonComponent, decorators: [{
|
|
3247
|
+
type: Component,
|
|
3248
|
+
args: [{ selector: 'kit-skeleton', changeDetection: ChangeDetectionStrategy.OnPush, template: "<kendo-skeleton class=\"kit-skeleton\"\n [width]=\"width\"\n [height]=\"height\"\n [shape]=\"shape\"\n [animation]=\"animation\"\n></kendo-skeleton>\n" }]
|
|
3249
|
+
}], propDecorators: { width: [{
|
|
3250
|
+
type: Input
|
|
3251
|
+
}], height: [{
|
|
3252
|
+
type: Input
|
|
3253
|
+
}], shape: [{
|
|
3254
|
+
type: Input
|
|
3255
|
+
}], animation: [{
|
|
3256
|
+
type: Input
|
|
3257
|
+
}] } });
|
|
3258
|
+
|
|
3259
|
+
class KitSkeletonModule {
|
|
3260
|
+
}
|
|
3261
|
+
KitSkeletonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3262
|
+
KitSkeletonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonModule, declarations: [KitSkeletonComponent], imports: [CommonModule,
|
|
3263
|
+
IndicatorsModule], exports: [KitSkeletonComponent] });
|
|
3264
|
+
KitSkeletonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonModule, imports: [CommonModule,
|
|
3265
|
+
IndicatorsModule] });
|
|
3266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.0", ngImport: i0, type: KitSkeletonModule, decorators: [{
|
|
3267
|
+
type: NgModule,
|
|
3268
|
+
args: [{
|
|
3269
|
+
declarations: [
|
|
3270
|
+
KitSkeletonComponent,
|
|
3271
|
+
],
|
|
3272
|
+
imports: [
|
|
3273
|
+
CommonModule,
|
|
3274
|
+
IndicatorsModule,
|
|
3275
|
+
],
|
|
3276
|
+
exports: [
|
|
3277
|
+
KitSkeletonComponent,
|
|
3278
|
+
],
|
|
3279
|
+
}]
|
|
3280
|
+
}] });
|
|
3281
|
+
|
|
3211
3282
|
// KitButton
|
|
3212
3283
|
|
|
3213
3284
|
/**
|
|
3214
3285
|
* Generated bundle index. Do not edit.
|
|
3215
3286
|
*/
|
|
3216
3287
|
|
|
3217
|
-
export { AbstractKitCtaPanelConfirmationComponent, KitAutocompleteComponent, KitAutocompleteDirective, KitAutocompleteModule, KitAutocompleteState, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonModule, KitButtonType, KitCheckboxComponent, KitCheckboxModule, KitCheckboxState, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelAbstractConfirmationModule, KitCtaPanelActionComponent, KitCtaPanelActionModule, KitCtaPanelConfirmationComponent, KitCtaPanelConfirmationModule, KitCtaPanelItemComponent, KitCtaPanelItemModule, KitCtaPanelItemType, KitDaterangeComponent, KitDaterangeIconPosition, KitDaterangeModule, KitDaterangeType, KitDatetimepickerComponent, KitDatetimepickerModule, KitDialogActionsComponent, KitDialogActionsModule, KitDialogComponent, KitDialogModule, KitDialogService, KitDropdownComponent, KitDropdownModule, KitDropdownState, KitInputMessageComponent, KitInputMessageModule, KitInputMessageType, KitLoaderComponent, KitLoaderModule, KitLocationStepperComponent, KitLocationStepperModule, KitNavigationTabsComponent, KitNavigationTabsItemIconType, KitNavigationTabsModule, KitNoteComponent, KitNoteModule, KitNotificationComponent, KitNotificationModule, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxModule, KitPillComponent, KitPillModule, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonModule, KitSvgIcon, KitSvgIconComponent, KitSvgIconModule, KitSvgSpriteComponent, KitSvgSpriteModule, KitSwitchComponent, KitSwitchMode, KitSwitchModule, KitSwitchState, KitTextLabelComponent, KitTextLabelModule, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaModule, KitTextareaState, KitTextboxComponent, KitTextboxModule, KitTimepickerComponent, KitTimepickerModule, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleModule, KitTooltipDirective, KitTooltipModule, KitTooltipPosition, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxModule, KitUnitsTextboxType, buildRandomUUID };
|
|
3288
|
+
export { AbstractKitCtaPanelConfirmationComponent, KitAutocompleteComponent, KitAutocompleteDirective, KitAutocompleteModule, KitAutocompleteState, KitButtonComponent, KitButtonIconPosition, KitButtonKind, KitButtonModule, KitButtonType, KitCheckboxComponent, KitCheckboxModule, KitCheckboxState, KitCtaPanelAbstractConfirmationComponent, KitCtaPanelAbstractConfirmationModule, KitCtaPanelActionComponent, KitCtaPanelActionModule, KitCtaPanelConfirmationComponent, KitCtaPanelConfirmationModule, KitCtaPanelItemComponent, KitCtaPanelItemModule, KitCtaPanelItemType, KitDaterangeComponent, KitDaterangeIconPosition, KitDaterangeModule, KitDaterangeType, KitDatetimepickerComponent, KitDatetimepickerModule, KitDialogActionsComponent, KitDialogActionsModule, KitDialogComponent, KitDialogModule, KitDialogService, KitDropdownComponent, KitDropdownModule, KitDropdownState, KitInputMessageComponent, KitInputMessageModule, KitInputMessageType, KitLoaderComponent, KitLoaderModule, KitLocationStepperComponent, KitLocationStepperModule, KitNavigationTabsComponent, KitNavigationTabsItemIconType, KitNavigationTabsModule, KitNoteComponent, KitNoteModule, KitNotificationComponent, KitNotificationModule, KitNotificationType, KitNumericTextboxComponent, KitNumericTextboxModule, KitPillComponent, KitPillModule, KitQueryParamsName, KitQueryParamsService, KitRadioButtonComponent, KitRadioButtonModule, KitSkeletonAnimation, KitSkeletonComponent, KitSkeletonModule, KitSkeletonShape, KitSvgIcon, KitSvgIconComponent, KitSvgIconModule, KitSvgSpriteComponent, KitSvgSpriteModule, KitSwitchComponent, KitSwitchMode, KitSwitchModule, KitSwitchState, KitTextLabelComponent, KitTextLabelModule, KitTextareaAutoresizeDirective, KitTextareaComponent, KitTextareaModule, KitTextareaState, KitTextboxComponent, KitTextboxModule, KitTimepickerComponent, KitTimepickerModule, KitToastrModule, KitToastrPosition, KitToastrService, KitToastrType, KitToggleComponent, KitToggleModule, KitTooltipDirective, KitTooltipModule, KitTooltipPosition, KitUnitsTextboxComponent, KitUnitsTextboxDropdownPosition, KitUnitsTextboxModule, KitUnitsTextboxType, buildRandomUUID };
|
|
3218
3289
|
//# sourceMappingURL=indigina-ui-kit.mjs.map
|