design-angular-kit 1.0.0-0 → 1.0.0-1
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/README.md +1 -1
- package/esm2020/lib/badge/badge.directive.mjs +3 -3
- package/esm2020/lib/breadcrumb/breadcrumb-item.component.mjs +3 -3
- package/esm2020/lib/breadcrumb/breadcrumb.component.mjs +3 -3
- package/esm2020/lib/button/button.directive.mjs +3 -3
- package/esm2020/lib/button/button.module.mjs +4 -4
- package/esm2020/lib/checkbox/checkbox.component.mjs +3 -3
- package/esm2020/lib/collapse/collapse-group.component.mjs +3 -3
- package/esm2020/lib/collapse/collapse-item.component.mjs +3 -3
- package/esm2020/lib/collapse/collapse.config.mjs +3 -3
- package/esm2020/lib/collapse/collapse.directive.mjs +3 -3
- package/esm2020/lib/collapse/collapse.module.mjs +4 -4
- package/esm2020/lib/design-angular-kit.module.mjs +4 -4
- package/esm2020/lib/dropdown/dropdown-divider.component.mjs +3 -3
- package/esm2020/lib/dropdown/dropdown-item.component.mjs +3 -3
- package/esm2020/lib/dropdown/dropdown.component.mjs +3 -3
- package/esm2020/lib/dropdown/dropdown.config.mjs +3 -3
- package/esm2020/lib/dropdown/dropdown.directive.mjs +18 -18
- package/esm2020/lib/dropdown/dropdown.module.mjs +4 -4
- package/esm2020/lib/form-input/form-input.component.mjs +3 -3
- package/esm2020/lib/form-input/it-prefix.directive.mjs +3 -3
- package/esm2020/lib/form-input/it-suffix.directive.mjs +3 -3
- package/esm2020/lib/form-input/it-text-prefix.directive.mjs +3 -3
- package/esm2020/lib/form-input/it-text-suffix.directive.mjs +3 -3
- package/esm2020/lib/form-input/mark-matching-text.pipe.mjs +3 -3
- package/esm2020/lib/icon/icon.component.mjs +3 -3
- package/esm2020/lib/icon/icon.module.mjs +4 -4
- package/esm2020/lib/popover/popover.config.mjs +3 -3
- package/esm2020/lib/popover/popover.directive.mjs +3 -3
- package/esm2020/lib/popover/popover.module.mjs +4 -4
- package/esm2020/lib/progress-bar/progress-bar.component.mjs +3 -3
- package/esm2020/lib/radio/radio.component.mjs +6 -6
- package/esm2020/lib/radio/unique-selection-dispatcher.mjs +3 -3
- package/esm2020/lib/tabs/tab-group.component.mjs +3 -3
- package/esm2020/lib/tabs/tab.component.mjs +3 -3
- package/esm2020/lib/tabs/tabs.module.mjs +4 -4
- package/esm2020/lib/toggle/toggle.component.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.config.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.directive.mjs +3 -3
- package/esm2020/lib/tooltip/tooltip.module.mjs +4 -4
- package/esm2020/lib/util/focus-mouse.directive.mjs +3 -3
- package/esm2020/lib/util/utils.module.mjs +4 -4
- package/fesm2015/design-angular-kit.mjs +150 -150
- package/fesm2020/design-angular-kit.mjs +150 -150
- package/package.json +5 -4
|
@@ -121,9 +121,9 @@ ProgressBarComponent.PROGRESS_BAR_DEFAULT_MIN = 0;
|
|
|
121
121
|
ProgressBarComponent.PROGRESS_BAR_DEFAULT_MAX = 100;
|
|
122
122
|
ProgressBarComponent.PROGRESS_BAR_DEFAULT_VALUE = 0;
|
|
123
123
|
ProgressBarComponent.PROGRESS_BAR_DEFAULT_LABEL = '';
|
|
124
|
-
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
125
|
-
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
126
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
124
|
+
ProgressBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ProgressBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
125
|
+
ProgressBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ProgressBarComponent, selector: "it-progress-bar", inputs: { min: "min", max: "max", value: "value", label: "label", indeterminate: "indeterminate", indeterminateHiddenText: "indeterminateHiddenText", color: "color" }, ngImport: i0, template: "<ng-container *ngIf = \"label; else progressBarEl\">\n <div class=\"progress-bar-wrapper\">\n <div class=\"progress-bar-label\"><span class=\"visually-hidden\">Progresso </span>{{label}}</div>\n <ng-container *ngTemplateOutlet=\"progressBarEl\"></ng-container>\n </div>\n</ng-container>\n\n<ng-template #progressBarEl>\n <div class=\"progress\" [class.progress-indeterminate] = \"indeterminate\">\n <span class=\"visually-hidden\" *ngIf=\"indeterminate && indeterminateHiddenText\">{{indeterminateHiddenText}}</span>\n <div role=\"progressbar\" [id]=\"progressbarId\" \n [ngClass]=\"progressBarClass\" \n [ngStyle]=\"pgStyle()\"\n [attr.aria-valuenow]=\"value\" [attr.aria-valuemin]=\"min\" [attr.aria-valuemax]=\"max\" >\n </div>\n </div>\n</ng-template>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
126
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ProgressBarComponent, decorators: [{
|
|
127
127
|
type: Component,
|
|
128
128
|
args: [{ selector: 'it-progress-bar', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf = \"label; else progressBarEl\">\n <div class=\"progress-bar-wrapper\">\n <div class=\"progress-bar-label\"><span class=\"visually-hidden\">Progresso </span>{{label}}</div>\n <ng-container *ngTemplateOutlet=\"progressBarEl\"></ng-container>\n </div>\n</ng-container>\n\n<ng-template #progressBarEl>\n <div class=\"progress\" [class.progress-indeterminate] = \"indeterminate\">\n <span class=\"visually-hidden\" *ngIf=\"indeterminate && indeterminateHiddenText\">{{indeterminateHiddenText}}</span>\n <div role=\"progressbar\" [id]=\"progressbarId\" \n [ngClass]=\"progressBarClass\" \n [ngStyle]=\"pgStyle()\"\n [attr.aria-valuenow]=\"value\" [attr.aria-valuemin]=\"min\" [attr.aria-valuemax]=\"max\" >\n </div>\n </div>\n</ng-template>" }]
|
|
129
129
|
}], ctorParameters: function () { return []; }, propDecorators: { min: [{
|
|
@@ -249,9 +249,9 @@ class CheckboxComponent {
|
|
|
249
249
|
this.change.emit(event);
|
|
250
250
|
}
|
|
251
251
|
}
|
|
252
|
-
CheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
253
|
-
CheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
252
|
+
CheckboxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: CheckboxComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
253
|
+
CheckboxComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: CheckboxComponent, selector: "it-checkbox", inputs: { checked: "checked", grouped: "grouped", label: "label", disabled: "disabled", inline: "inline", indeterminate: "indeterminate" }, outputs: { indeterminateChange: "indeterminateChange", change: "change" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => CheckboxComponent), multi: true }], viewQueries: [{ propertyName: "_inputElement", first: true, predicate: ["input"], descendants: true }], ngImport: i0, template: "<div class=\"form-check\" [class.form-check-group] = \"grouped\" [class.form-check-inline] = \"inline\" >\n <input #input type=\"checkbox\"\n [id]=\"inputId\"\n [class.focus--mouse] = \"focus\"\n [class.semi-checked] = \"indeterminate\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n (change)=\"handleChange($event)\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n >\n <label\n [attr.for]=\"inputId\" *ngIf = \"label\">{{label}}</label>\n \n <ng-content></ng-content>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: CheckboxComponent, decorators: [{
|
|
255
255
|
type: Component,
|
|
256
256
|
args: [{ selector: 'it-checkbox', providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => CheckboxComponent), multi: true }], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-check\" [class.form-check-group] = \"grouped\" [class.form-check-inline] = \"inline\" >\n <input #input type=\"checkbox\"\n [id]=\"inputId\"\n [class.focus--mouse] = \"focus\"\n [class.semi-checked] = \"indeterminate\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n (change)=\"handleChange($event)\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n >\n <label\n [attr.for]=\"inputId\" *ngIf = \"label\">{{label}}</label>\n \n <ng-content></ng-content>\n</div>" }]
|
|
257
257
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { _inputElement: [{
|
|
@@ -282,9 +282,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
282
282
|
*/
|
|
283
283
|
class ItPopoverConfig extends NgbPopoverConfig {
|
|
284
284
|
}
|
|
285
|
-
ItPopoverConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
286
|
-
ItPopoverConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.
|
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
285
|
+
ItPopoverConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverConfig, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
286
|
+
ItPopoverConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverConfig, providedIn: 'root' });
|
|
287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverConfig, decorators: [{
|
|
288
288
|
type: Injectable,
|
|
289
289
|
args: [{ providedIn: 'root' }]
|
|
290
290
|
}] });
|
|
@@ -305,9 +305,9 @@ class ItPopover extends NgbPopover {
|
|
|
305
305
|
super.ngOnDestroy();
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
|
-
ItPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
309
|
-
ItPopover.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
308
|
+
ItPopover.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopover, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ViewContainerRef }, { token: ItPopoverConfig }, { token: i0.NgZone }, { token: DOCUMENT }, { token: i0.ChangeDetectorRef }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
309
|
+
ItPopover.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItPopover, selector: "[itPopover]", inputs: { itPopover: "itPopover" }, exportAs: ["itPopover"], usesInheritance: true, ngImport: i0 });
|
|
310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopover, decorators: [{
|
|
311
311
|
type: Directive,
|
|
312
312
|
args: [{ selector: '[itPopover]', exportAs: 'itPopover' }]
|
|
313
313
|
}], ctorParameters: function () {
|
|
@@ -321,10 +321,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
321
321
|
|
|
322
322
|
class ItPopoverModule {
|
|
323
323
|
}
|
|
324
|
-
ItPopoverModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
325
|
-
ItPopoverModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
326
|
-
ItPopoverModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
324
|
+
ItPopoverModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
325
|
+
ItPopoverModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverModule, declarations: [ItPopover], imports: [CommonModule, NgbPopoverModule], exports: [ItPopover] });
|
|
326
|
+
ItPopoverModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverModule, imports: [CommonModule, NgbPopoverModule] });
|
|
327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPopoverModule, decorators: [{
|
|
328
328
|
type: NgModule,
|
|
329
329
|
args: [{
|
|
330
330
|
declarations: [ItPopover],
|
|
@@ -347,9 +347,9 @@ class FocusMouseDirective {
|
|
|
347
347
|
this.elementRef.nativeElement.classList.remove('focus--mouse');
|
|
348
348
|
}
|
|
349
349
|
}
|
|
350
|
-
FocusMouseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
351
|
-
FocusMouseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
352
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
350
|
+
FocusMouseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FocusMouseDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
351
|
+
FocusMouseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: FocusMouseDirective, selector: "[focusMouse]", host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" } }, exportAs: ["focusMouse"], ngImport: i0 });
|
|
352
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FocusMouseDirective, decorators: [{
|
|
353
353
|
type: Directive,
|
|
354
354
|
args: [{
|
|
355
355
|
selector: '[focusMouse]',
|
|
@@ -430,9 +430,9 @@ class ToggleComponent {
|
|
|
430
430
|
this.change.emit(event);
|
|
431
431
|
}
|
|
432
432
|
}
|
|
433
|
-
ToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
434
|
-
ToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
433
|
+
ToggleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ToggleComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
434
|
+
ToggleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ToggleComponent, selector: "it-toggle", inputs: { checked: "checked", label: "label", disabled: "disabled" }, outputs: { change: "change" }, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ToggleComponent), multi: true }], ngImport: i0, template: "<div class=\"form-check\">\n <div class=\"toggles\">\n <label [attr.for]=inputId>\n {{label}}\n <input type=checkbox\n focusMouse\n [id]=inputId\n [checked]=checked\n [disabled]=disabled\n (change)=handleChange($event)>\n <span class=\"lever\"></span>\n </label>\n </div>\n</div>", styles: [""], dependencies: [{ kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ToggleComponent, decorators: [{
|
|
436
436
|
type: Component,
|
|
437
437
|
args: [{ selector: 'it-toggle', providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ToggleComponent), multi: true }], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-check\">\n <div class=\"toggles\">\n <label [attr.for]=inputId>\n {{label}}\n <input type=checkbox\n focusMouse\n [id]=inputId\n [checked]=checked\n [disabled]=disabled\n (change)=handleChange($event)>\n <span class=\"lever\"></span>\n </label>\n </div>\n</div>" }]
|
|
438
438
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { checked: [{
|
|
@@ -491,9 +491,9 @@ class UniqueSelectionDispatcher {
|
|
|
491
491
|
this._listeners = [];
|
|
492
492
|
}
|
|
493
493
|
}
|
|
494
|
-
UniqueSelectionDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
495
|
-
UniqueSelectionDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.
|
|
496
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
494
|
+
UniqueSelectionDispatcher.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UniqueSelectionDispatcher, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
495
|
+
UniqueSelectionDispatcher.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UniqueSelectionDispatcher, providedIn: 'root' });
|
|
496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: UniqueSelectionDispatcher, decorators: [{
|
|
497
497
|
type: Injectable,
|
|
498
498
|
args: [{ providedIn: 'root' }]
|
|
499
499
|
}] });
|
|
@@ -621,13 +621,13 @@ class RadioGroupDirective {
|
|
|
621
621
|
this.onTouched = fn;
|
|
622
622
|
}
|
|
623
623
|
}
|
|
624
|
-
RadioGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
625
|
-
RadioGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
624
|
+
RadioGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: RadioGroupDirective, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
625
|
+
RadioGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: RadioGroupDirective, selector: "it-radio-group", inputs: { name: "name", value: "value", selected: "selected", disabled: "disabled" }, outputs: { change: "change" }, host: { properties: { "attr.role": "this.role" } }, providers: [{
|
|
626
626
|
provide: NG_VALUE_ACCESSOR,
|
|
627
627
|
useExisting: forwardRef(() => RadioGroupDirective),
|
|
628
628
|
multi: true
|
|
629
629
|
}], queries: [{ propertyName: "_radios", predicate: i0.forwardRef(function () { return RadioButtonComponent; }), descendants: true }], exportAs: ["itRadioGroup"], ngImport: i0 });
|
|
630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
630
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: RadioGroupDirective, decorators: [{
|
|
631
631
|
type: Directive,
|
|
632
632
|
args: [{
|
|
633
633
|
selector: 'it-radio-group',
|
|
@@ -759,9 +759,9 @@ class RadioButtonComponent {
|
|
|
759
759
|
}
|
|
760
760
|
}
|
|
761
761
|
}
|
|
762
|
-
RadioButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
763
|
-
RadioButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
764
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
762
|
+
RadioButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: RadioButtonComponent, deps: [{ token: RadioGroupDirective, optional: true }, { token: i0.ChangeDetectorRef }, { token: UniqueSelectionDispatcher }], target: i0.ɵɵFactoryTarget.Component });
|
|
763
|
+
RadioButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: RadioButtonComponent, selector: "it-radio-button", inputs: { name: "name", label: "label", checked: "checked", value: "value", disabled: "disabled" }, outputs: { change: "change" }, exportAs: ["itRadioButton"], ngImport: i0, template: "<div class=\"form-check\">\n <input type=\"radio\"\n focusMouse\n [id]=\"id\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n [attr.name]=\"name\"\n (change)=\"_onInputChange($event)\">\n <label\n [attr.for]=\"id\">{{label}}</label>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
764
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: RadioButtonComponent, decorators: [{
|
|
765
765
|
type: Component,
|
|
766
766
|
args: [{ selector: 'it-radio-button', exportAs: 'itRadioButton', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-check\">\n <input type=\"radio\"\n focusMouse\n [id]=\"id\"\n [checked]=\"checked\"\n [disabled]=\"disabled\"\n [attr.name]=\"name\"\n (change)=\"_onInputChange($event)\">\n <label\n [attr.for]=\"id\">{{label}}</label>\n</div>\n" }]
|
|
767
767
|
}], ctorParameters: function () {
|
|
@@ -789,9 +789,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
789
789
|
*/
|
|
790
790
|
class ItTooltipConfig extends NgbTooltipConfig {
|
|
791
791
|
}
|
|
792
|
-
ItTooltipConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
793
|
-
ItTooltipConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.
|
|
794
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
792
|
+
ItTooltipConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipConfig, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
793
|
+
ItTooltipConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipConfig, providedIn: 'root' });
|
|
794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipConfig, decorators: [{
|
|
795
795
|
type: Injectable,
|
|
796
796
|
args: [{ providedIn: 'root' }]
|
|
797
797
|
}] });
|
|
@@ -819,9 +819,9 @@ class ItTooltip extends NgbTooltip {
|
|
|
819
819
|
super.ngOnDestroy();
|
|
820
820
|
}
|
|
821
821
|
}
|
|
822
|
-
ItTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
823
|
-
ItTooltip.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
824
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
822
|
+
ItTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltip, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ViewContainerRef }, { token: ItTooltipConfig }, { token: i0.NgZone }, { token: DOCUMENT }, { token: i0.ChangeDetectorRef }, { token: i0.ApplicationRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
823
|
+
ItTooltip.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItTooltip, selector: "[itTooltip]", inputs: { itTooltip: "itTooltip" }, exportAs: ["itTooltip"], usesInheritance: true, ngImport: i0 });
|
|
824
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltip, decorators: [{
|
|
825
825
|
type: Directive,
|
|
826
826
|
args: [{
|
|
827
827
|
selector: '[itTooltip]',
|
|
@@ -838,10 +838,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
838
838
|
|
|
839
839
|
class ItTooltipModule {
|
|
840
840
|
}
|
|
841
|
-
ItTooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
842
|
-
ItTooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
843
|
-
ItTooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
844
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
841
|
+
ItTooltipModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
842
|
+
ItTooltipModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipModule, declarations: [ItTooltip], imports: [CommonModule, NgbTooltipModule], exports: [ItTooltip] });
|
|
843
|
+
ItTooltipModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipModule, imports: [CommonModule, NgbTooltipModule] });
|
|
844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTooltipModule, decorators: [{
|
|
845
845
|
type: NgModule,
|
|
846
846
|
args: [{
|
|
847
847
|
declarations: [ItTooltip],
|
|
@@ -958,9 +958,9 @@ class IconComponent {
|
|
|
958
958
|
}
|
|
959
959
|
}
|
|
960
960
|
IconComponent.ICON_BASE_URL = 'bootstrap-italia/dist/svg/sprites.svg#';
|
|
961
|
-
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
962
|
-
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
963
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
961
|
+
IconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: IconComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
962
|
+
IconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: IconComponent, selector: "it-icon", inputs: { rounded: "rounded", roundedColor: "roundedColor", icon: "icon", wai: "wai", size: "size", color: "color", bgColor: "bgColor", padded: "padded", expand: "expand", position: "position", verticalAlign: "verticalAlign" }, ngImport: i0, template: "<ng-container *ngIf = \"iconName && svgPath\">\n <ng-container *ngIf = \"rounded; else svgIcon\">\n <span [class] = \"'rounded-icon' + roundedColorClass\">\n <ng-container *ngTemplateOutlet=\"svgIcon\"></ng-container>\n </span>\n </ng-container>\n</ng-container>\n<ng-template #svgIcon>\n <svg\n class=\"icon {{iconName}} {{size}} icon-{{color}} {{ bgColor ? 'bg-' + bgColor : '' }} {{position}} align-{{verticalAlign}}\" \n [class.icon-expand]=\"expand\" [class.icon-padded]=\"padded\">\n\n <use [attr.xlink:href]=\"svgPath\" [attr.href]=\"svgPath\"></use>\n</svg> \n</ng-template>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: IconComponent, decorators: [{
|
|
964
964
|
type: Component,
|
|
965
965
|
args: [{ selector: 'it-icon', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container *ngIf = \"iconName && svgPath\">\n <ng-container *ngIf = \"rounded; else svgIcon\">\n <span [class] = \"'rounded-icon' + roundedColorClass\">\n <ng-container *ngTemplateOutlet=\"svgIcon\"></ng-container>\n </span>\n </ng-container>\n</ng-container>\n<ng-template #svgIcon>\n <svg\n class=\"icon {{iconName}} {{size}} icon-{{color}} {{ bgColor ? 'bg-' + bgColor : '' }} {{position}} align-{{verticalAlign}}\" \n [class.icon-expand]=\"expand\" [class.icon-padded]=\"padded\">\n\n <use [attr.xlink:href]=\"svgPath\" [attr.href]=\"svgPath\"></use>\n</svg> \n</ng-template>" }]
|
|
966
966
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { rounded: [{
|
|
@@ -989,18 +989,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
989
989
|
|
|
990
990
|
class ItDropdownConfig extends NgbDropdownConfig {
|
|
991
991
|
}
|
|
992
|
-
ItDropdownConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
993
|
-
ItDropdownConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.
|
|
994
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
992
|
+
ItDropdownConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownConfig, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
993
|
+
ItDropdownConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownConfig, providedIn: 'root' });
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownConfig, decorators: [{
|
|
995
995
|
type: Injectable,
|
|
996
996
|
args: [{ providedIn: 'root' }]
|
|
997
997
|
}] });
|
|
998
998
|
|
|
999
999
|
class ItNavbar extends NgbNavbar {
|
|
1000
1000
|
}
|
|
1001
|
-
ItNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1002
|
-
ItNavbar.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1001
|
+
ItNavbar.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItNavbar, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1002
|
+
ItNavbar.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItNavbar, selector: ".navbar", usesInheritance: true, ngImport: i0 });
|
|
1003
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItNavbar, decorators: [{
|
|
1004
1004
|
type: Directive,
|
|
1005
1005
|
args: [{ selector: '.navbar' }]
|
|
1006
1006
|
}] });
|
|
@@ -1015,9 +1015,9 @@ class ItDropdownItem extends NgbDropdownItem {
|
|
|
1015
1015
|
super(elementRef, _renderer);
|
|
1016
1016
|
}
|
|
1017
1017
|
}
|
|
1018
|
-
ItDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1019
|
-
ItDropdownItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1018
|
+
ItDropdownItem.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownItem, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1019
|
+
ItDropdownItem.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItDropdownItem, selector: "[itDropdownItem]", usesInheritance: true, ngImport: i0 });
|
|
1020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownItem, decorators: [{
|
|
1021
1021
|
type: Directive,
|
|
1022
1022
|
args: [{
|
|
1023
1023
|
selector: '[itDropdownItem]'
|
|
@@ -1035,9 +1035,9 @@ class ItDropdownMenu extends NgbDropdownMenu {
|
|
|
1035
1035
|
super.menuItems = this.menuItems;
|
|
1036
1036
|
}
|
|
1037
1037
|
}
|
|
1038
|
-
ItDropdownMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1039
|
-
ItDropdownMenu.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1040
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1038
|
+
ItDropdownMenu.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownMenu, deps: [{ token: forwardRef(() => ItDropdown) }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1039
|
+
ItDropdownMenu.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItDropdownMenu, selector: "[itDropdownMenu]", host: { properties: { "attr.data-popper-placement": "placement" } }, queries: [{ propertyName: "menuItems", predicate: ItDropdownItem }], usesInheritance: true, ngImport: i0 });
|
|
1040
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownMenu, decorators: [{
|
|
1041
1041
|
type: Directive,
|
|
1042
1042
|
args: [{
|
|
1043
1043
|
selector: '[itDropdownMenu]',
|
|
@@ -1069,9 +1069,9 @@ class ItDropdownAnchor extends NgbDropdownAnchor {
|
|
|
1069
1069
|
this.dropdown = dropdown;
|
|
1070
1070
|
}
|
|
1071
1071
|
}
|
|
1072
|
-
ItDropdownAnchor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1073
|
-
ItDropdownAnchor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1074
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1072
|
+
ItDropdownAnchor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownAnchor, deps: [{ token: forwardRef(() => ItDropdown) }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1073
|
+
ItDropdownAnchor.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItDropdownAnchor, selector: "[itDropdownAnchor]", usesInheritance: true, ngImport: i0 });
|
|
1074
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownAnchor, decorators: [{
|
|
1075
1075
|
type: Directive,
|
|
1076
1076
|
args: [{ selector: '[itDropdownAnchor]' }]
|
|
1077
1077
|
}], ctorParameters: function () {
|
|
@@ -1091,9 +1091,9 @@ class ItDropdownToggle extends NgbDropdownToggle {
|
|
|
1091
1091
|
this.dropdown = dropdown;
|
|
1092
1092
|
}
|
|
1093
1093
|
}
|
|
1094
|
-
ItDropdownToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1095
|
-
ItDropdownToggle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1094
|
+
ItDropdownToggle.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownToggle, deps: [{ token: forwardRef(() => ItDropdown) }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1095
|
+
ItDropdownToggle.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItDropdownToggle, selector: "[itDropdownToggle]", host: { properties: { "class": "placement" } }, providers: [{ provide: ItDropdownAnchor, useExisting: forwardRef(() => ItDropdownToggle) }], usesInheritance: true, ngImport: i0 });
|
|
1096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownToggle, decorators: [{
|
|
1097
1097
|
type: Directive,
|
|
1098
1098
|
args: [{
|
|
1099
1099
|
selector: '[itDropdownToggle]',
|
|
@@ -1133,9 +1133,9 @@ class ItDropdown extends NgbDropdown {
|
|
|
1133
1133
|
}
|
|
1134
1134
|
ngOnDestroy() { super.ngOnDestroy(); }
|
|
1135
1135
|
}
|
|
1136
|
-
ItDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1137
|
-
ItDropdown.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1138
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1136
|
+
ItDropdown.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: ItDropdownConfig }, { token: DOCUMENT }, { token: i0.NgZone }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ItNavbar, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1137
|
+
ItDropdown.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItDropdown, selector: "[itDropdown]", outputs: { openChange: "openChange" }, queries: [{ propertyName: "_itMenu", first: true, predicate: ItDropdownMenu, descendants: true }, { propertyName: "_itAnchor", first: true, predicate: ItDropdownAnchor, descendants: true }], exportAs: ["itDropdown"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdown, decorators: [{
|
|
1139
1139
|
type: Directive,
|
|
1140
1140
|
args: [{ selector: '[itDropdown]', exportAs: 'itDropdown' }]
|
|
1141
1141
|
}], ctorParameters: function () {
|
|
@@ -1291,9 +1291,9 @@ class ItButtonDirective {
|
|
|
1291
1291
|
return cssClass;
|
|
1292
1292
|
}
|
|
1293
1293
|
}
|
|
1294
|
-
ItButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1295
|
-
ItButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1296
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1294
|
+
ItButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItButtonDirective, deps: [{ token: ItDropdownToggle, host: true, optional: true }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1295
|
+
ItButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItButtonDirective, selector: "[itButton]", inputs: { autoUpdateIconColor: "autoUpdateIconColor", color: ["itButton", "color"], disabled: "disabled", outline: "outline", block: "block", size: "size" }, host: { listeners: { "focus": "onFocus()", "blur": "onBlur()" }, properties: { "class": "this.hostClasses" } }, queries: [{ propertyName: "progressBar", first: true, predicate: ProgressBarComponent, descendants: true }, { propertyName: "iconComponents", predicate: IconComponent }], exportAs: ["itButton"], ngImport: i0 });
|
|
1296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItButtonDirective, decorators: [{
|
|
1297
1297
|
type: Directive,
|
|
1298
1298
|
args: [{
|
|
1299
1299
|
selector: '[itButton]',
|
|
@@ -1337,10 +1337,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1337
1337
|
|
|
1338
1338
|
class ItIconModule {
|
|
1339
1339
|
}
|
|
1340
|
-
ItIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1341
|
-
ItIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1342
|
-
ItIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1343
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1340
|
+
ItIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1341
|
+
ItIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItIconModule, declarations: [IconComponent], imports: [CommonModule], exports: [IconComponent] });
|
|
1342
|
+
ItIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItIconModule, imports: [CommonModule] });
|
|
1343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItIconModule, decorators: [{
|
|
1344
1344
|
type: NgModule,
|
|
1345
1345
|
args: [{
|
|
1346
1346
|
imports: [CommonModule],
|
|
@@ -1351,10 +1351,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1351
1351
|
|
|
1352
1352
|
class ItButtonModule {
|
|
1353
1353
|
}
|
|
1354
|
-
ItButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1355
|
-
ItButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1356
|
-
ItButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1357
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1354
|
+
ItButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1355
|
+
ItButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItButtonModule, declarations: [ItButtonDirective], imports: [ItIconModule], exports: [ItButtonDirective] });
|
|
1356
|
+
ItButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItButtonModule, imports: [ItIconModule] });
|
|
1357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItButtonModule, decorators: [{
|
|
1358
1358
|
type: NgModule,
|
|
1359
1359
|
args: [{
|
|
1360
1360
|
declarations: [ItButtonDirective],
|
|
@@ -1419,9 +1419,9 @@ class BadgeDirective {
|
|
|
1419
1419
|
].join(' ');
|
|
1420
1420
|
}
|
|
1421
1421
|
}
|
|
1422
|
-
BadgeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1423
|
-
BadgeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1424
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1422
|
+
BadgeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BadgeDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1423
|
+
BadgeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: BadgeDirective, selector: "[itBadge]", inputs: { badgeColor: "badgeColor", badgeText: ["itBadge", "badgeText"], isPill: "isPill" }, host: { properties: { "innerText": "this.badgeText", "class": "this.hostClasses" } }, exportAs: ["itBadge"], ngImport: i0 });
|
|
1424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BadgeDirective, decorators: [{
|
|
1425
1425
|
type: Directive,
|
|
1426
1426
|
args: [{
|
|
1427
1427
|
selector: '[itBadge]',
|
|
@@ -1444,9 +1444,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1444
1444
|
|
|
1445
1445
|
class ItCollapseConfig extends NgbCollapseConfig {
|
|
1446
1446
|
}
|
|
1447
|
-
ItCollapseConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1448
|
-
ItCollapseConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.
|
|
1449
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1447
|
+
ItCollapseConfig.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseConfig, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
1448
|
+
ItCollapseConfig.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseConfig, providedIn: 'root' });
|
|
1449
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseConfig, decorators: [{
|
|
1450
1450
|
type: Injectable,
|
|
1451
1451
|
args: [{ providedIn: 'root' }]
|
|
1452
1452
|
}] });
|
|
@@ -1486,9 +1486,9 @@ class ItCollapseDirective extends NgbCollapse {
|
|
|
1486
1486
|
}
|
|
1487
1487
|
}
|
|
1488
1488
|
}
|
|
1489
|
-
ItCollapseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1490
|
-
ItCollapseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1489
|
+
ItCollapseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseDirective, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: ItCollapseConfig }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive });
|
|
1490
|
+
ItCollapseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItCollapseDirective, selector: "[itCollapse]", inputs: { itCollapse: "itCollapse" }, outputs: { itCollapseChange: "itCollapseChange" }, exportAs: ["itCollapse"], usesInheritance: true, usesOnChanges: true, ngImport: i0 });
|
|
1491
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseDirective, decorators: [{
|
|
1492
1492
|
type: Directive,
|
|
1493
1493
|
args: [{
|
|
1494
1494
|
// tslint:disable-next-line:directive-selector
|
|
@@ -1550,9 +1550,9 @@ class ItCollapseItemComponent {
|
|
|
1550
1550
|
this.hiddenEvent.emit(this);
|
|
1551
1551
|
}
|
|
1552
1552
|
}
|
|
1553
|
-
ItCollapseItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1554
|
-
ItCollapseItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1555
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1553
|
+
ItCollapseItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseItemComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1554
|
+
ItCollapseItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ItCollapseItemComponent, selector: "it-collapse-item", inputs: { header: "header" }, outputs: { showEvent: "show", shownEvent: "shown", hideEvent: "hide", hiddenEvent: "hidden" }, viewQueries: [{ propertyName: "directive", first: true, predicate: ItCollapseDirective, descendants: true, static: true }], ngImport: i0, template: "<div class=\"collapse-header\" [id]=\"headingId\">\n <button #toggleButton focusMouse data-toggle=\"collapse\" [attr.aria-expanded]=\"!collapse.isCollapsed\" [attr.aria-controls]=\"id\" (click)=\"collapse.toggle()\" [ngClass]=\"{'collapsed' : collapse.isCollapsed}\">\n {{header}}\n </button>\n</div>\n<div [id]=\"id\" #collapse=\"itCollapse\" itCollapse (shown)=\"shown()\" (hidden)=\"hidden()\" role=\"tabpanel\" [attr.aria-labelledby]=\"headingId\">\n <div class=\"collapse-body\">\n <ng-content></ng-content>\n </div>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }, { kind: "directive", type: ItCollapseDirective, selector: "[itCollapse]", inputs: ["itCollapse"], outputs: ["itCollapseChange"], exportAs: ["itCollapse"] }] });
|
|
1555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseItemComponent, decorators: [{
|
|
1556
1556
|
type: Component,
|
|
1557
1557
|
args: [{ selector: 'it-collapse-item', template: "<div class=\"collapse-header\" [id]=\"headingId\">\n <button #toggleButton focusMouse data-toggle=\"collapse\" [attr.aria-expanded]=\"!collapse.isCollapsed\" [attr.aria-controls]=\"id\" (click)=\"collapse.toggle()\" [ngClass]=\"{'collapsed' : collapse.isCollapsed}\">\n {{header}}\n </button>\n</div>\n<div [id]=\"id\" #collapse=\"itCollapse\" itCollapse (shown)=\"shown()\" (hidden)=\"hidden()\" role=\"tabpanel\" [attr.aria-labelledby]=\"headingId\">\n <div class=\"collapse-body\">\n <ng-content></ng-content>\n </div>\n</div>\n" }]
|
|
1558
1558
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { directive: [{
|
|
@@ -1612,9 +1612,9 @@ class ItCollapseGroupComponent {
|
|
|
1612
1612
|
}
|
|
1613
1613
|
}
|
|
1614
1614
|
}
|
|
1615
|
-
ItCollapseGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1616
|
-
ItCollapseGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
1617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1615
|
+
ItCollapseGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
1616
|
+
ItCollapseGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ItCollapseGroupComponent, selector: "it-collapse-group", inputs: { accordion: "accordion" }, host: { listeners: { "click": "onClick($event.target)" } }, queries: [{ propertyName: "_items", predicate: i0.forwardRef(function () { return ItCollapseItemComponent; }), descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div [id]=\"id\" class=\"collapse-div\" role=\"tablist\">\n <ng-content></ng-content>\n</div>", styles: [""] });
|
|
1617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseGroupComponent, decorators: [{
|
|
1618
1618
|
type: Component,
|
|
1619
1619
|
args: [{ selector: 'it-collapse-group', template: "<div [id]=\"id\" class=\"collapse-div\" role=\"tablist\">\n <ng-content></ng-content>\n</div>" }]
|
|
1620
1620
|
}], propDecorators: { accordion: [{
|
|
@@ -1629,10 +1629,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1629
1629
|
|
|
1630
1630
|
class ItUtilsModule {
|
|
1631
1631
|
}
|
|
1632
|
-
ItUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1633
|
-
ItUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1634
|
-
ItUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1635
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1632
|
+
ItUtilsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItUtilsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1633
|
+
ItUtilsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItUtilsModule, declarations: [FocusMouseDirective], exports: [FocusMouseDirective] });
|
|
1634
|
+
ItUtilsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItUtilsModule });
|
|
1635
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItUtilsModule, decorators: [{
|
|
1636
1636
|
type: NgModule,
|
|
1637
1637
|
args: [{
|
|
1638
1638
|
declarations: [FocusMouseDirective],
|
|
@@ -1642,10 +1642,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1642
1642
|
|
|
1643
1643
|
class ItCollapseModule {
|
|
1644
1644
|
}
|
|
1645
|
-
ItCollapseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1646
|
-
ItCollapseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
1647
|
-
ItCollapseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
1648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1645
|
+
ItCollapseModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1646
|
+
ItCollapseModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseModule, declarations: [ItCollapseDirective, ItCollapseItemComponent, ItCollapseGroupComponent], imports: [CommonModule, NgbCollapseModule, ItUtilsModule], exports: [ItCollapseDirective, ItCollapseItemComponent, ItCollapseGroupComponent] });
|
|
1647
|
+
ItCollapseModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseModule, imports: [CommonModule, NgbCollapseModule, ItUtilsModule] });
|
|
1648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItCollapseModule, decorators: [{
|
|
1649
1649
|
type: NgModule,
|
|
1650
1650
|
args: [{
|
|
1651
1651
|
imports: [CommonModule, NgbCollapseModule, ItUtilsModule],
|
|
@@ -1853,9 +1853,9 @@ FormInputPasswordUtils.DEFAULT_CONFIG = {
|
|
|
1853
1853
|
|
|
1854
1854
|
class ItPrefixDirective {
|
|
1855
1855
|
}
|
|
1856
|
-
ItPrefixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1857
|
-
ItPrefixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1858
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1856
|
+
ItPrefixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPrefixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1857
|
+
ItPrefixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItPrefixDirective, selector: "[itPrefix]", ngImport: i0 });
|
|
1858
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItPrefixDirective, decorators: [{
|
|
1859
1859
|
type: Directive,
|
|
1860
1860
|
args: [{
|
|
1861
1861
|
selector: '[itPrefix]'
|
|
@@ -1864,9 +1864,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1864
1864
|
|
|
1865
1865
|
class ItSuffixDirective {
|
|
1866
1866
|
}
|
|
1867
|
-
ItSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1868
|
-
ItSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1869
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1867
|
+
ItSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1868
|
+
ItSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItSuffixDirective, selector: "[itSuffix]", ngImport: i0 });
|
|
1869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItSuffixDirective, decorators: [{
|
|
1870
1870
|
type: Directive,
|
|
1871
1871
|
args: [{
|
|
1872
1872
|
selector: '[itSuffix]'
|
|
@@ -1875,9 +1875,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1875
1875
|
|
|
1876
1876
|
class ItTextPrefixDirective {
|
|
1877
1877
|
}
|
|
1878
|
-
ItTextPrefixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1879
|
-
ItTextPrefixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1880
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1878
|
+
ItTextPrefixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTextPrefixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1879
|
+
ItTextPrefixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItTextPrefixDirective, selector: "[itTextPrefix]", ngImport: i0 });
|
|
1880
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTextPrefixDirective, decorators: [{
|
|
1881
1881
|
type: Directive,
|
|
1882
1882
|
args: [{
|
|
1883
1883
|
selector: '[itTextPrefix]'
|
|
@@ -1886,9 +1886,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
1886
1886
|
|
|
1887
1887
|
class ItTextSuffixDirective {
|
|
1888
1888
|
}
|
|
1889
|
-
ItTextSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1890
|
-
ItTextSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.
|
|
1891
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1889
|
+
ItTextSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTextSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
1890
|
+
ItTextSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: ItTextSuffixDirective, selector: "[itTextSuffix]", ngImport: i0 });
|
|
1891
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTextSuffixDirective, decorators: [{
|
|
1892
1892
|
type: Directive,
|
|
1893
1893
|
args: [{
|
|
1894
1894
|
selector: '[itTextSuffix]'
|
|
@@ -1919,9 +1919,9 @@ class MarkMatchingTextPipe {
|
|
|
1919
1919
|
return allString;
|
|
1920
1920
|
}
|
|
1921
1921
|
}
|
|
1922
|
-
MarkMatchingTextPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
1923
|
-
MarkMatchingTextPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.
|
|
1924
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
1922
|
+
MarkMatchingTextPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: MarkMatchingTextPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe });
|
|
1923
|
+
MarkMatchingTextPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: MarkMatchingTextPipe, name: "markMatchingText" });
|
|
1924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: MarkMatchingTextPipe, decorators: [{
|
|
1925
1925
|
type: Pipe,
|
|
1926
1926
|
args: [{
|
|
1927
1927
|
name: 'markMatchingText'
|
|
@@ -2321,13 +2321,13 @@ class FormInputComponent {
|
|
|
2321
2321
|
}
|
|
2322
2322
|
}
|
|
2323
2323
|
}
|
|
2324
|
-
FormInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2325
|
-
FormInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2324
|
+
FormInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FormInputComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2325
|
+
FormInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: FormInputComponent, selector: "it-input", inputs: { readonlyPlainText: "readonlyPlainText", enablePasswordStrengthMeter: "enablePasswordStrengthMeter", autocompleteWrapperSize: "autocompleteWrapperSize", passwordStrengthMeterConfig: "passwordStrengthMeterConfig", id: "id", name: "name", type: "type", label: "label", labelVisuallyHidden: "labelVisuallyHidden", min: "min", max: "max", step: "step", note: "note", placeholder: "placeholder", icon: "icon", disabled: "disabled", currency: "currency", percentage: "percentage", adaptive: "adaptive", readonly: "readonly", autoCompleteData: "autoCompleteData", disableCapsLockAlert: "disableCapsLockAlert", capsLockActiveLabel: "capsLockActiveLabel" }, outputs: { change: "change" }, host: { listeners: { "window:click": "onKeyUp($event)", "window:keydown": "onKeyUp($event)", "window:keyup": "onKeyUp($event)" } }, providers: [{
|
|
2326
2326
|
provide: NG_VALUE_ACCESSOR,
|
|
2327
2327
|
useExisting: forwardRef(() => FormInputComponent),
|
|
2328
2328
|
multi: true
|
|
2329
2329
|
}], queries: [{ propertyName: "_prefixChildren", predicate: ItPrefixDirective, descendants: true }, { propertyName: "_textPrefixChildren", predicate: ItTextPrefixDirective, descendants: true }, { propertyName: "_suffixChildren", predicate: ItSuffixDirective, descendants: true }, { propertyName: "_textSuffixChildren", predicate: ItTextSuffixDirective, descendants: true }], viewQueries: [{ propertyName: "_inputElement", first: true, predicate: ["inputElement"], descendants: true }], ngImport: i0, template: "<div class=\"form-group\" [class.autocomplete-wrapper-big]=\"autocompleteWrapperSize === 'big'\">\n <div class=\"input-group\" *ngIf = \"isInputGroup; else formInputWithLabel\">\n <ng-container *ngIf=\"_textPrefixChildren.length || _prefixChildren.length || icon\">\n <div class=\"input-group-prepend\">\n\n <!-- Gli elementi figli di \"it-input\" con la direttiva \"itTextPrefix\" -->\n <ng-container *ngIf=\"_textPrefixChildren.length || icon\">\n\n <div class=\"input-group-text\" >\n <ng-container *ngIf=\"icon\">\n <it-icon [icon] = \"icon\" size=\"icon-sm\"></it-icon>\n </ng-container>\n\n <ng-container *ngIf=\"_textPrefixChildren.length\">\n <ng-content select = \"[itTextPrefix]\"></ng-content>\n </ng-container>\n </div>\n </ng-container>\n \n <ng-container *ngIf=\"_prefixChildren.length\">\n <!-- Gli elementi figli di \"it-input\" con la direttiva \"itPrefix\" -->\n <ng-content select = \"[itPrefix]\"></ng-content>\n </ng-container>\n </div>\n </ng-container>\n\n <ng-container [ngTemplateOutlet]=\"formInputWithLabel\"></ng-container>\n\n <ng-container *ngIf=\"_suffixChildren.length || _textSuffixChildren.length\">\n <div class=\"input-group-append\">\n <!-- Gli elementi figli di \"it-input\" con la direttiva \"itTextSuffix\" -->\n <ng-container *ngIf=\"_textSuffixChildren.length\">\n <div class=\"input-group-text\" >\n <ng-content select = \"[itTextSuffix]\"></ng-content>\n </div>\n </ng-container>\n \n <ng-container *ngIf=\"_suffixChildren.length\">\n <!-- Gli elementi figli di \"it-input\" con la direttiva \"itSuffix\" -->\n <ng-content select = \"[itSuffix]\"></ng-content>\n </ng-container>\n </div>\n </ng-container>\n \n \n </div>\n\n\n\n <ng-template #formInput>\n <input #inputElement\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n (change)=\"onChange()\"\n (input)=\"onInput()\"\n [type]=\"type\"\n [id]=\"id\"\n [min]=\"min\"\n [max]=\"max\"\n [step]=\"step\"\n [class.focus--mouse]=\"focus\"\n [class.input-password]=\"isPasswordMode\"\n [attr.name]=\"name\"\n [disabled]=\"disabled\"\n [readonly]=\"readonly\"\n [placeholder]=\"placeholder\"\n [style.width]=\"adaptive && valueLength ? 'calc(44px + ' + valueLength + 'ch)' : null\"\n [ngClass]=\"{\n 'form-control' : (!readonly || !readonlyPlainText) && type !== INPUT_TYPES.NUMBER,\n 'form-control-plaintext' : readonly && readonlyPlainText,\n 'autocomplete' : isAutocompletable()\n }\"\n [attr.aria-describedby]=\"note ? noteId : undefined\"/> \n </ng-template>\n\n\n\n <ng-template #formInputWithLabel>\n <label [attr.for]=\"id\" *ngIf=\"label\" \n [class.visually-hidden]=\"labelVisuallyHidden\"\n [class.input-number-label]=\"type === INPUT_TYPES.NUMBER\"\n [class.active] = \"isLabelActive && !labelVisuallyHidden\" >\n {{label}}\n </label>\n \n <!-- INIZIO gestione input di tipo NUMBER -->\n\n <ng-container *ngIf=\"type === INPUT_TYPES.NUMBER; else formInput\">\n <span class=\"input-number\" \n [class.input-number-adaptive]=\"adaptive\"\n [class.input-number-currency]=\"currency\" \n [class.input-number-percentage]=\"percentage\">\n\n <ng-container [ngTemplateOutlet]=\"formInput\"></ng-container>\n\n <button class=\"input-number-add\" (click)=\"incrementNumberValue()\" focusMouse>\n <span class=\"visually-hidden\">Aumenta valore di {{step}} Euro</span>\n </button>\n <button class=\"input-number-sub\" (click)=\"decrementNumberValue()\" focusMouse>\n <span class=\"visually-hidden\">Diminuisci valore di {{step}} Euro</span>\n </button>\n </span>\n </ng-container>\n\n <!-- FINE gestione input di tipo NUMBER -->\n\n </ng-template>\n\n <small [id]=\"noteId\" class=\"form-text\" *ngIf=\"note\">\n {{note}}\n </small>\n\n\n <!-- INIZIO gestione input di tipo PASSWORD -->\n\n <ng-container *ngIf=\"isPasswordMode\">\n <!-- Icona dell'occhio per la vedere/nascondere la password -->\n <span \n class = \"password-icon\"\n aria-hidden=\"true\"\n (click)=\"isPasswordVisible = !isPasswordVisible\">\n <it-icon [icon]=\"'it-password-' + (isPasswordVisible ? 'invisible' : 'visible')\" size=\"icon-sm\" color=\"default\"></it-icon>\n </span>\n\n <!-- Indicatore di sicurezza della password -->\n <div class=\"password-strength-meter\" *ngIf=\"isPasswordMode && enablePasswordStrengthMeter\">\n <small class=\"form-text\" \n [ngClass] = \"['text-' + passwordScoreColor]\"\n *ngIf = \"passwordStrengthMeterConfig.showText\">{{ passwordScoreText }}\n </small>\n <div class=\"password-meter progress rounded-0 position-absolute\">\n <div class=\"row position-absolute w-100 m-0\">\n <div class=\"col-3 border-start border-end border-white\"></div>\n <div class=\"col-3 border-start border-end border-white\"></div>\n <div class=\"col-3 border-start border-end border-white\"></div>\n <div class=\"col-3 border-start border-end border-white\"></div>\n </div>\n\n <div class=\"progress-bar\" \n [class]=\"['bg-' + passwordScoreColor]\"\n role=\"progressbar\" [attr.aria-valuenow]=\"passwordScore >= 0 ? passwordScore : 0\" aria-valuemin=\"0\" aria-valuemax=\"100\" [style.width.%]=\"passwordScore >= 0 ? passwordScore : 0\">\n </div>\n </div>\n </div>\n\n </ng-container>\n\n <!-- FINE gestione input di tipo PASSWORD -->\n\n\n\n\n <!-- Avviso CAPS LOCK Attivo -->\n <small *ngIf=\"isCapsLockActive && !disableCapsLockAlert && type !== INPUT_TYPES.NUMBER\" class=\"password-caps form-text text-warning position-absolute bg-white w-100\">{{capsLockActiveLabel}}</small>\n\n\n\n <!-- INIZIO gestione AUTOCOMPLETAMENTO -->\n\n\n <!-- Icona lente per autocompletamento -->\n <span class=\"autocomplete-icon\" aria-hidden=\"true\" *ngIf=\"isAutocompletable()\">\n <it-icon icon = \"it-search\" size=\"icon-sm\" color=\"default\"></it-icon>\n </span>\n\n\n <!-- Lista di autocompletamento -->\n <ul class=\"autocomplete-list\" *ngIf=\"isAutocompletable()\" [class.autocomplete-list-show]=\"showAutocompletion\">\n <li *ngFor=\"let entry of getRelatedEntries(); trackBy: autocompleteItemTrackByValueFn\" (click)=\"onEntryClick(entry, $event)\">\n <a [href]=\"entry.link\" >\n <ng-container *ngTemplateOutlet=\"autocompleteItemTemplate\"></ng-container>\n </a>\n <ng-template #autocompleteItemTemplate>\n <div class=\"avatar size-sm\" *ngIf=\"entry.avatarSrcPath\">\n <img [src]=\"entry.avatarSrcPath\" [alt]=\"entry.avatarAltText\">\n </div>\n <it-icon *ngIf=\"entry.icon\" [icon]=\"entry.icon\" size=\"icon-sm\"></it-icon>\n <span class=\"autocomplete-list-text\">\n <span [innerHTML] = \"entry.original | markMatchingText: value\"></span>\n <em *ngIf=\"entry.label\">{{entry.label}}</em>\n </span>\n </ng-template>\n </li>\n </ul>\n\n</div>\n\n <!-- FINE gestione AUTOCOMPLETAMENTO -->", styles: ["label{pointer-events:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }, { kind: "component", type: IconComponent, selector: "it-icon", inputs: ["rounded", "roundedColor", "icon", "wai", "size", "color", "bgColor", "padded", "expand", "position", "verticalAlign"] }, { kind: "pipe", type: MarkMatchingTextPipe, name: "markMatchingText" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2330
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FormInputComponent, decorators: [{
|
|
2331
2331
|
type: Component,
|
|
2332
2332
|
args: [{ selector: 'it-input', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{
|
|
2333
2333
|
provide: NG_VALUE_ACCESSOR,
|
|
@@ -2475,9 +2475,9 @@ class DropdownItemComponent {
|
|
|
2475
2475
|
return `${this.icon} ${this.iconPosition}`;
|
|
2476
2476
|
}
|
|
2477
2477
|
}
|
|
2478
|
-
DropdownItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2479
|
-
DropdownItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2478
|
+
DropdownItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2479
|
+
DropdownItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DropdownItemComponent, selector: "it-dropdown-item", inputs: { link: "link", active: "active", disabled: "disabled", large: "large", icon: "icon", iconPosition: "iconPosition", iconColor: "iconColor" }, ngImport: i0, template: "<li [id]=\"id\">\n <a itDropdownItem focusMouse\n [attr.href]=\"link\"\n [attr.tabindex]=\"this.disabled ? -1 : 0\"\n [class]=\"dropdownItemClass\"\n [ngClass]=\"{\n 'large' : large, \n 'active' : active,\n 'disabled' : disabled,\n 'disabled-item-link' : disabled,\n 'left-icon': iconPosition === 'left',\n 'right-icon': iconPosition === 'right'\n }\">\n <span>\n <ng-content></ng-content>\n </span>\n <it-icon *ngIf = \"icon\" [icon]=\"icon\" [position]=\"iconPosition\" [color] = \"iconColor\"></it-icon>\n </a>\n</li>", styles: [".disabled-item-link{pointer-events:none}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconComponent, selector: "it-icon", inputs: ["rounded", "roundedColor", "icon", "wai", "size", "color", "bgColor", "padded", "expand", "position", "verticalAlign"] }, { kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }, { kind: "directive", type: ItDropdownItem, selector: "[itDropdownItem]" }] });
|
|
2480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownItemComponent, decorators: [{
|
|
2481
2481
|
type: Component,
|
|
2482
2482
|
args: [{ selector: 'it-dropdown-item', template: "<li [id]=\"id\">\n <a itDropdownItem focusMouse\n [attr.href]=\"link\"\n [attr.tabindex]=\"this.disabled ? -1 : 0\"\n [class]=\"dropdownItemClass\"\n [ngClass]=\"{\n 'large' : large, \n 'active' : active,\n 'disabled' : disabled,\n 'disabled-item-link' : disabled,\n 'left-icon': iconPosition === 'left',\n 'right-icon': iconPosition === 'right'\n }\">\n <span>\n <ng-content></ng-content>\n </span>\n <it-icon *ngIf = \"icon\" [icon]=\"icon\" [position]=\"iconPosition\" [color] = \"iconColor\"></it-icon>\n </a>\n</li>", styles: [".disabled-item-link{pointer-events:none}\n"] }]
|
|
2483
2483
|
}], propDecorators: { link: [{
|
|
@@ -2598,9 +2598,9 @@ class DropdownComponent {
|
|
|
2598
2598
|
return this._menuPlacement === 'top-start';
|
|
2599
2599
|
}
|
|
2600
2600
|
}
|
|
2601
|
-
DropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2602
|
-
DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2603
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2601
|
+
DropdownComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2602
|
+
DropdownComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DropdownComponent, selector: "it-dropdown", inputs: { menuHeading: "menuHeading", expandIcon: "expandIcon", expandIconPosition: "expandIconPosition", menuPlacement: "menuPlacement", dark: "dark", fullWidth: "fullWidth", color: "color", label: "label", autoUpdateMenuItemsIconColor: "autoUpdateMenuItemsIconColor" }, outputs: { onOpen: "onOpen", onClose: "onClose" }, queries: [{ propertyName: "menuItems", predicate: DropdownItemComponent }], ngImport: i0, template: "<div itDropdown (openChange)=\"onOpenChange($event)\" \n [placement]=\"menuPlacement\"\n [class.dropstart] = \"isDropstart\"\n [class.dropend] = \"isDropend\"\n [class.dropup] = \"isDropup\">\n <button class=\"dropdown-toggle\" [itButton]=\"color\" itDropdownToggle id=\"dropdownMenuButton\" aria-haspopup=\"true\">\n <it-icon *ngIf = \"expandIcon && expandIconPosition === 'start'\" [icon]=\"expandIcon\" [expand]=\"true\"> </it-icon>\n {{label}}\n <it-icon *ngIf = \"expandIcon && expandIconPosition === 'end'\" [icon]=\"expandIcon\" [expand]=\"true\"> </it-icon>\n </button>\n <div itDropdownMenu aria-labelledby=\"dropdownMenuButton\" [class.dark]=\"dark\" [class.full-width]=\"fullWidth\">\n <div class=\"link-list-wrapper\">\n <div class=\"link-list-heading\" *ngIf = \"menuHeading\">{{menuHeading}}</div>\n <ul class=\"link-list\">\n <ng-content></ng-content>\n </ul>\n </div>\n </div>\n</div>\n", styles: [".dropup .dropdown-toggle:after{display:none}.dropup .dropdown-toggle .icon-expand,.dropup .btn-dropdown .icon-expand{transform:scaleY(-1)}.dropup .btn-dropdown[aria-expanded=true] .icon-expand,.dropup .dropdown-toggle[aria-expanded=true] .icon-expand{transform:scaleY(1)}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: IconComponent, selector: "it-icon", inputs: ["rounded", "roundedColor", "icon", "wai", "size", "color", "bgColor", "padded", "expand", "position", "verticalAlign"] }, { kind: "directive", type: ItButtonDirective, selector: "[itButton]", inputs: ["autoUpdateIconColor", "itButton", "disabled", "outline", "block", "size"], exportAs: ["itButton"] }, { kind: "directive", type: ItDropdown, selector: "[itDropdown]", outputs: ["openChange"], exportAs: ["itDropdown"] }, { kind: "directive", type: ItDropdownMenu, selector: "[itDropdownMenu]" }, { kind: "directive", type: ItDropdownToggle, selector: "[itDropdownToggle]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownComponent, decorators: [{
|
|
2604
2604
|
type: Component,
|
|
2605
2605
|
args: [{ selector: 'it-dropdown', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div itDropdown (openChange)=\"onOpenChange($event)\" \n [placement]=\"menuPlacement\"\n [class.dropstart] = \"isDropstart\"\n [class.dropend] = \"isDropend\"\n [class.dropup] = \"isDropup\">\n <button class=\"dropdown-toggle\" [itButton]=\"color\" itDropdownToggle id=\"dropdownMenuButton\" aria-haspopup=\"true\">\n <it-icon *ngIf = \"expandIcon && expandIconPosition === 'start'\" [icon]=\"expandIcon\" [expand]=\"true\"> </it-icon>\n {{label}}\n <it-icon *ngIf = \"expandIcon && expandIconPosition === 'end'\" [icon]=\"expandIcon\" [expand]=\"true\"> </it-icon>\n </button>\n <div itDropdownMenu aria-labelledby=\"dropdownMenuButton\" [class.dark]=\"dark\" [class.full-width]=\"fullWidth\">\n <div class=\"link-list-wrapper\">\n <div class=\"link-list-heading\" *ngIf = \"menuHeading\">{{menuHeading}}</div>\n <ul class=\"link-list\">\n <ng-content></ng-content>\n </ul>\n </div>\n </div>\n</div>\n", styles: [".dropup .dropdown-toggle:after{display:none}.dropup .dropdown-toggle .icon-expand,.dropup .btn-dropdown .icon-expand{transform:scaleY(-1)}.dropup .btn-dropdown[aria-expanded=true] .icon-expand,.dropup .dropdown-toggle[aria-expanded=true] .icon-expand{transform:scaleY(1)}\n"] }]
|
|
2606
2606
|
}], propDecorators: { menuItems: [{
|
|
@@ -2632,9 +2632,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
2632
2632
|
|
|
2633
2633
|
class DropdownDividerComponent {
|
|
2634
2634
|
}
|
|
2635
|
-
DropdownDividerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2636
|
-
DropdownDividerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2635
|
+
DropdownDividerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownDividerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2636
|
+
DropdownDividerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DropdownDividerComponent, selector: "it-dropdown-divider", ngImport: i0, template: "<li>\n <span class=\"divider\"></span>\n</li>", styles: [""] });
|
|
2637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DropdownDividerComponent, decorators: [{
|
|
2638
2638
|
type: Component,
|
|
2639
2639
|
args: [{ selector: 'it-dropdown-divider', template: "<li>\n <span class=\"divider\"></span>\n</li>" }]
|
|
2640
2640
|
}] });
|
|
@@ -2686,9 +2686,9 @@ class BreadcrumbItemComponent {
|
|
|
2686
2686
|
return 'breadcrumb-item ' + ((_a = this.customClass) !== null && _a !== void 0 ? _a : '') + (this.isLast ? ' active' : '');
|
|
2687
2687
|
}
|
|
2688
2688
|
}
|
|
2689
|
-
BreadcrumbItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2690
|
-
BreadcrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2691
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2689
|
+
BreadcrumbItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BreadcrumbItemComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2690
|
+
BreadcrumbItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: BreadcrumbItemComponent, selector: "it-breadcrumb-item", inputs: { link: "link", icon: "icon", iconColor: "iconColor", customClass: "customClass" }, ngImport: i0, template: "<li [class]=\"breadcrumbClass\" [id]=\"id\">\n <it-icon [icon] = \"icon\" [color] = \"iconColor\"></it-icon>\n\n <a [href]=\"link\" focusMouse>\n <ng-content></ng-content>\n </a> \n <span class=\"separator\" *ngIf=\"!isLast\">{{separator}}</span>\n</li>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }, { kind: "component", type: IconComponent, selector: "it-icon", inputs: ["rounded", "roundedColor", "icon", "wai", "size", "color", "bgColor", "padded", "expand", "position", "verticalAlign"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BreadcrumbItemComponent, decorators: [{
|
|
2692
2692
|
type: Component,
|
|
2693
2693
|
args: [{ selector: 'it-breadcrumb-item', changeDetection: ChangeDetectionStrategy.OnPush, template: "<li [class]=\"breadcrumbClass\" [id]=\"id\">\n <it-icon [icon] = \"icon\" [color] = \"iconColor\"></it-icon>\n\n <a [href]=\"link\" focusMouse>\n <ng-content></ng-content>\n </a> \n <span class=\"separator\" *ngIf=\"!isLast\">{{separator}}</span>\n</li>\n" }]
|
|
2694
2694
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }]; }, propDecorators: { link: [{
|
|
@@ -2767,9 +2767,9 @@ class BreadcrumbComponent {
|
|
|
2767
2767
|
});
|
|
2768
2768
|
}
|
|
2769
2769
|
}
|
|
2770
|
-
BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2771
|
-
BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2770
|
+
BreadcrumbComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BreadcrumbComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2771
|
+
BreadcrumbComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: BreadcrumbComponent, selector: "it-breadcrumb", inputs: { dark: "dark", separator: "separator", customClass: "customClass", ariaLabel: "ariaLabel" }, queries: [{ propertyName: "_items", predicate: i0.forwardRef(function () { return BreadcrumbItemComponent; }), descendants: true }], usesOnChanges: true, ngImport: i0, template: "<nav class=\"breadcrumb-container\" [attr.aria-label]=\"ariaLabel\" [id]=\"id\">\n <ol [ngClass]=\"breadcrumbClass\">\n <ng-content></ng-content>\n </ol>\n</nav>", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BreadcrumbComponent, decorators: [{
|
|
2773
2773
|
type: Component,
|
|
2774
2774
|
args: [{ selector: 'it-breadcrumb', changeDetection: ChangeDetectionStrategy.OnPush, template: "<nav class=\"breadcrumb-container\" [attr.aria-label]=\"ariaLabel\" [id]=\"id\">\n <ol [ngClass]=\"breadcrumbClass\">\n <ng-content></ng-content>\n </ol>\n</nav>" }]
|
|
2775
2775
|
}], propDecorators: { dark: [{
|
|
@@ -2832,9 +2832,9 @@ class ItTabComponent {
|
|
|
2832
2832
|
}
|
|
2833
2833
|
}
|
|
2834
2834
|
}
|
|
2835
|
-
ItTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
2836
|
-
ItTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
2837
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
2835
|
+
ItTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2836
|
+
ItTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ItTabComponent, selector: "it-tab", inputs: { label: "label", ariaLabel: ["aria-label", "ariaLabel"], ariaLabelledby: ["aria-labelledby", "ariaLabelledby"], disabled: "disabled", icon: "icon" }, viewQueries: [{ propertyName: "_implicitContent", first: true, predicate: TemplateRef, descendants: true, static: true }], exportAs: ["itTab"], usesOnChanges: true, ngImport: i0, template: "<ng-template><ng-content></ng-content></ng-template>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabComponent, decorators: [{
|
|
2838
2838
|
type: Component,
|
|
2839
2839
|
args: [{ selector: 'it-tab', exportAs: 'itTab', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<ng-template><ng-content></ng-content></ng-template>\n" }]
|
|
2840
2840
|
}], propDecorators: { label: [{
|
|
@@ -3004,9 +3004,9 @@ class ItTabGroupComponent {
|
|
|
3004
3004
|
this.changeTab(index);
|
|
3005
3005
|
}
|
|
3006
3006
|
}
|
|
3007
|
-
ItTabGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
3008
|
-
ItTabGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.
|
|
3009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
3007
|
+
ItTabGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabGroupComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
3008
|
+
ItTabGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: ItTabGroupComponent, selector: "it-tab-group", inputs: { pill: "pill", selectedIndex: "selectedIndex", dark: "dark" }, outputs: { selectedIndexChange: "selectedIndexChange", selectedTabChange: "selectedTabChange" }, queries: [{ propertyName: "_tabs", predicate: ItTabComponent }], exportAs: ["itTabGroup"], ngImport: i0, template: "<ul class=\"nav\" [ngClass]=\"{'nav-dark': dark, 'nav-tabs': !pill, 'nav-pills mb-3': pill}\" role=\"tablist\">\n\n <li class=\"nav-item\" *ngFor=\"let tab of _tabs; let i = index\">\n <a\n focusMouse\n href=\"#\"\n role=\"tab\"\n [attr.aria-controls]=\"_getTabContentId(i)\"\n [attr.aria-selected]=\"selectedIndex == i\"\n [attr.aria-label]=\"tab.ariaLabel || null\"\n [attr.aria-labelledby]=\"(!tab.ariaLabel && tab.ariaLabelledby) ? tab.ariaLabelledby : null\"\n [ngClass]=\"{ 'nav-link': true, 'active': selectedIndex == i, 'disabled': tab.disabled }\"\n [id]=\"_getTabLabelId(i)\"\n (click)=\"_handleClick($event, i)\"\n >\n <i *ngIf=\"tab.icon\" class=\"it-ico-lg d-block text-center\" [ngClass]=\"tab.icon\"></i>\n {{tab.label}}\n </a>\n </li>\n</ul>\n<div class=\"tab-content\">\n <ng-container *ngFor=\"let tab of _tabs; let i = index\">\n <div\n [ngClass]=\"{ 'tab-pane p-3': true, 'show active': selectedIndex == i }\"\n [id]=\"_getTabContentId(i)\"\n role=\"tabpanel\"\n [attr.aria-labelledby]=\"_getTabLabelId(i)\">\n <ng-container *ngTemplateOutlet=\"tab._implicitContent\"></ng-container>\n </div>\n </ng-container>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: FocusMouseDirective, selector: "[focusMouse]", exportAs: ["focusMouse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabGroupComponent, decorators: [{
|
|
3010
3010
|
type: Component,
|
|
3011
3011
|
args: [{ selector: 'it-tab-group', exportAs: 'itTabGroup', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ul class=\"nav\" [ngClass]=\"{'nav-dark': dark, 'nav-tabs': !pill, 'nav-pills mb-3': pill}\" role=\"tablist\">\n\n <li class=\"nav-item\" *ngFor=\"let tab of _tabs; let i = index\">\n <a\n focusMouse\n href=\"#\"\n role=\"tab\"\n [attr.aria-controls]=\"_getTabContentId(i)\"\n [attr.aria-selected]=\"selectedIndex == i\"\n [attr.aria-label]=\"tab.ariaLabel || null\"\n [attr.aria-labelledby]=\"(!tab.ariaLabel && tab.ariaLabelledby) ? tab.ariaLabelledby : null\"\n [ngClass]=\"{ 'nav-link': true, 'active': selectedIndex == i, 'disabled': tab.disabled }\"\n [id]=\"_getTabLabelId(i)\"\n (click)=\"_handleClick($event, i)\"\n >\n <i *ngIf=\"tab.icon\" class=\"it-ico-lg d-block text-center\" [ngClass]=\"tab.icon\"></i>\n {{tab.label}}\n </a>\n </li>\n</ul>\n<div class=\"tab-content\">\n <ng-container *ngFor=\"let tab of _tabs; let i = index\">\n <div\n [ngClass]=\"{ 'tab-pane p-3': true, 'show active': selectedIndex == i }\"\n [id]=\"_getTabContentId(i)\"\n role=\"tabpanel\"\n [attr.aria-labelledby]=\"_getTabLabelId(i)\">\n <ng-container *ngTemplateOutlet=\"tab._implicitContent\"></ng-container>\n </div>\n </ng-container>\n</div>\n" }]
|
|
3012
3012
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { _tabs: [{
|
|
@@ -3026,10 +3026,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
3026
3026
|
|
|
3027
3027
|
class ItDropdownModule {
|
|
3028
3028
|
}
|
|
3029
|
-
ItDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
3030
|
-
ItDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
3031
|
-
ItDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
3032
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
3029
|
+
ItDropdownModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3030
|
+
ItDropdownModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownModule, declarations: [DropdownComponent, DropdownDividerComponent, DropdownItemComponent, ItDropdown, ItNavbar, ItDropdownMenu, ItDropdownAnchor, ItDropdownToggle, ItDropdownItem], imports: [CommonModule, NgbDropdownModule, ItIconModule, ItButtonModule, ItUtilsModule], exports: [DropdownComponent, DropdownDividerComponent, DropdownItemComponent, ItDropdown, ItNavbar, ItDropdownMenu, ItDropdownAnchor, ItDropdownToggle, ItDropdownItem] });
|
|
3031
|
+
ItDropdownModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownModule, imports: [CommonModule, NgbDropdownModule, ItIconModule, ItButtonModule, ItUtilsModule] });
|
|
3032
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItDropdownModule, decorators: [{
|
|
3033
3033
|
type: NgModule,
|
|
3034
3034
|
args: [{
|
|
3035
3035
|
declarations: [DropdownComponent, DropdownDividerComponent, DropdownItemComponent, ItDropdown, ItNavbar, ItDropdownMenu, ItDropdownAnchor, ItDropdownToggle, ItDropdownItem],
|
|
@@ -3040,10 +3040,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
3040
3040
|
|
|
3041
3041
|
class ItTabsModule {
|
|
3042
3042
|
}
|
|
3043
|
-
ItTabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
3044
|
-
ItTabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
3045
|
-
ItTabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
3046
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
3043
|
+
ItTabsModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3044
|
+
ItTabsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: ItTabsModule, declarations: [ItTabComponent, ItTabGroupComponent], imports: [CommonModule, ItUtilsModule], exports: [ItTabComponent, ItTabGroupComponent] });
|
|
3045
|
+
ItTabsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabsModule, imports: [CommonModule, ItUtilsModule] });
|
|
3046
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: ItTabsModule, decorators: [{
|
|
3047
3047
|
type: NgModule,
|
|
3048
3048
|
args: [{
|
|
3049
3049
|
declarations: [ItTabComponent, ItTabGroupComponent],
|
|
@@ -3054,8 +3054,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.11", ngImpo
|
|
|
3054
3054
|
|
|
3055
3055
|
class DesignAngularKitModule {
|
|
3056
3056
|
}
|
|
3057
|
-
DesignAngularKitModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.
|
|
3058
|
-
DesignAngularKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.
|
|
3057
|
+
DesignAngularKitModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DesignAngularKitModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3058
|
+
DesignAngularKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DesignAngularKitModule, declarations: [CheckboxComponent,
|
|
3059
3059
|
ToggleComponent,
|
|
3060
3060
|
RadioGroupDirective,
|
|
3061
3061
|
RadioButtonComponent,
|
|
@@ -3097,7 +3097,7 @@ DesignAngularKitModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
|
|
|
3097
3097
|
ItCollapseModule,
|
|
3098
3098
|
ItDropdownModule,
|
|
3099
3099
|
ItUtilsModule] });
|
|
3100
|
-
DesignAngularKitModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.
|
|
3100
|
+
DesignAngularKitModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DesignAngularKitModule, imports: [CommonModule,
|
|
3101
3101
|
ItUtilsModule,
|
|
3102
3102
|
FormsModule,
|
|
3103
3103
|
ItPopoverModule,
|
|
@@ -3113,7 +3113,7 @@ DesignAngularKitModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
3113
3113
|
ItCollapseModule,
|
|
3114
3114
|
ItDropdownModule,
|
|
3115
3115
|
ItUtilsModule] });
|
|
3116
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.
|
|
3116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DesignAngularKitModule, decorators: [{
|
|
3117
3117
|
type: NgModule,
|
|
3118
3118
|
args: [{
|
|
3119
3119
|
imports: [
|