@progress-chef/platform-shared-components 0.0.16 → 0.0.18
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 +2 -2
- package/esm2022/lib/atoms/atoms.module.mjs +14 -7
- package/esm2022/lib/atoms/datepicker/datepicker.component.mjs +91 -0
- package/esm2022/lib/atoms/datepicker/datepicker.module.mjs +35 -0
- package/esm2022/lib/atoms/radio-button/radio-button.component.mjs +3 -3
- package/esm2022/lib/atoms/textbox/textbox.component.mjs +3 -3
- package/esm2022/public-api.mjs +3 -1
- package/fesm2022/progress-chef-platform-shared-components.mjs +131 -11
- package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +2 -1
- package/lib/atoms/datepicker/datepicker.component.d.ts +32 -0
- package/lib/atoms/datepicker/datepicker.module.d.ts +10 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
|
@@ -1201,11 +1201,11 @@ class RadioButtonComponent {
|
|
|
1201
1201
|
this.modelChange.emit(ev);
|
|
1202
1202
|
}
|
|
1203
1203
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioButtonComponent, deps: [{ token: i1$1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1204
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadioButtonComponent, selector: "lib-radio-button", inputs: { size: "size", name: "name", value: "value", control: "control", label: "label", labelPosition: "labelPosition", id: "id", model: "model" }, outputs: { modelChange: "modelChange" }, ngImport: i0, template: "<span *ngIf=\"label.length > 0 && labelPosition === 'before'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n \n</span>\n<input \n type=\"radio\"\n [size]=\"size\"\n [name]=\"name\"\n [value]=\"value\"\n [formControl]=\"control\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitModelChange($event)\"\n [id]=\"id\"\n kendoRadioButton/>\n<span *ngIf=\"label.length > 0 && labelPosition === 'after'\">\n
|
|
1204
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: RadioButtonComponent, selector: "lib-radio-button", inputs: { size: "size", name: "name", value: "value", control: "control", label: "label", labelPosition: "labelPosition", id: "id", model: "model" }, outputs: { modelChange: "modelChange" }, ngImport: i0, template: "<span *ngIf=\"label.length > 0 && labelPosition === 'before'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n \n</span>\n<input \n type=\"radio\"\n [size]=\"size\"\n [name]=\"name\"\n [value]=\"value\"\n [formControl]=\"control\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitModelChange($event)\"\n [id]=\"id\"\n kendoRadioButton/>\n<span *ngIf=\"label.length > 0 && labelPosition === 'after'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n</span>\n", styles: ["input{margin-right:1rem}\n"], dependencies: [{ kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3$1.RadioButtonDirective, selector: "input[kendoRadioButton]", inputs: ["size"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: TypographyComponent, selector: "lib-typography", inputs: ["type", "defaultText", "isLabel", "hiddenLabel"] }] }); }
|
|
1205
1205
|
}
|
|
1206
1206
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RadioButtonComponent, decorators: [{
|
|
1207
1207
|
type: Component,
|
|
1208
|
-
args: [{ selector: 'lib-radio-button', template: "<span *ngIf=\"label.length > 0 && labelPosition === 'before'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n \n</span>\n<input \n type=\"radio\"\n [size]=\"size\"\n [name]=\"name\"\n [value]=\"value\"\n [formControl]=\"control\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitModelChange($event)\"\n [id]=\"id\"\n kendoRadioButton/>\n<span *ngIf=\"label.length > 0 && labelPosition === 'after'\">\n
|
|
1208
|
+
args: [{ selector: 'lib-radio-button', template: "<span *ngIf=\"label.length > 0 && labelPosition === 'before'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n \n</span>\n<input \n type=\"radio\"\n [size]=\"size\"\n [name]=\"name\"\n [value]=\"value\"\n [formControl]=\"control\"\n [ngModel]=\"model\"\n (ngModelChange)=\"emitModelChange($event)\"\n [id]=\"id\"\n kendoRadioButton/>\n<span *ngIf=\"label.length > 0 && labelPosition === 'after'\">\n <label class=\"k-checkbox-label\" for=\"{{ id }}\">\n <lib-typography\n [defaultText]=\"label\"\n type=\"P_MULISH_14_REGULAR\">\n </lib-typography>\n </label>\n</span>\n", styles: ["input{margin-right:1rem}\n"] }]
|
|
1209
1209
|
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { size: [{
|
|
1210
1210
|
type: Input
|
|
1211
1211
|
}], name: [{
|
|
@@ -1571,11 +1571,11 @@ class TextboxComponent {
|
|
|
1571
1571
|
this.blurEvent.emit();
|
|
1572
1572
|
}
|
|
1573
1573
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxComponent, deps: [{ token: i1$1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1574
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextboxComponent, selector: "lib-textbox", inputs: { showEyeIcon: "showEyeIcon", clearButton: "clearButton", placeholder: "placeholder", width: "width", isDisabled: "isDisabled", readonly: "readonly", size: "size", rounded: "rounded", fillMode: "fillMode", control: "control", value: "value", type: "type" }, outputs: { inputChange: "inputChange", focusEvent: "focusEvent", blurEvent: "blurEvent" }, viewQueries: [{ propertyName: "textbox", first: true, predicate: ["textbox"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<kendo-textbox #textbox [style.width.px]=\"width\" [placeholder]=\"placeholder\" [clearButton]=\"clearButton\"\n [fillMode]=\"fillMode\" [readonly]=\"readonly\" [size]=\"size\" [rounded]=\"rounded\" [formControl]=\"control\"\n [(ngModel)]=\"value\" (ngModelChange)=\"emitValueChange($event)\" (focus)=\"onFocus()\" (blur)=\"onBlur()\">\n <ng-template *ngIf=\"this.type === 'password' && showEyeIcon\" kendoTextBoxSuffixTemplate>\n <lib-icon name=\"eye-open\" (click)=\"toggleVisibility()\" *ngIf=\"showPassword\"></lib-icon>\n <lib-icon name=\"eye-closed\" (click)=\"toggleVisibility()\" *ngIf=\"!showPassword\"></lib-icon>\n </ng-template>\n</kendo-textbox>\n", styles: ["kendo-textbox lib-icon{padding-right:
|
|
1574
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextboxComponent, selector: "lib-textbox", inputs: { showEyeIcon: "showEyeIcon", clearButton: "clearButton", placeholder: "placeholder", width: "width", isDisabled: "isDisabled", readonly: "readonly", size: "size", rounded: "rounded", fillMode: "fillMode", control: "control", value: "value", type: "type" }, outputs: { inputChange: "inputChange", focusEvent: "focusEvent", blurEvent: "blurEvent" }, viewQueries: [{ propertyName: "textbox", first: true, predicate: ["textbox"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<kendo-textbox #textbox [style.width.px]=\"width\" [placeholder]=\"placeholder\" [clearButton]=\"clearButton\"\n [fillMode]=\"fillMode\" [readonly]=\"readonly\" [size]=\"size\" [rounded]=\"rounded\" [formControl]=\"control\"\n [(ngModel)]=\"value\" (ngModelChange)=\"emitValueChange($event)\" (focus)=\"onFocus()\" (blur)=\"onBlur()\">\n <ng-template *ngIf=\"this.type === 'password' && showEyeIcon\" kendoTextBoxSuffixTemplate>\n <lib-icon name=\"eye-open\" (click)=\"toggleVisibility()\" *ngIf=\"showPassword\"></lib-icon>\n <lib-icon name=\"eye-closed\" (click)=\"toggleVisibility()\" *ngIf=\"!showPassword\"></lib-icon>\n </ng-template>\n</kendo-textbox>\n", styles: ["kendo-textbox lib-icon{padding-right:7px;cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i1$2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i3$1.TextBoxComponent, selector: "kendo-textbox", inputs: ["focusableId", "title", "type", "disabled", "readonly", "tabindex", "value", "selectOnFocus", "showSuccessIcon", "showErrorIcon", "clearButton", "successIcon", "successSvgIcon", "errorIcon", "errorSvgIcon", "clearButtonIcon", "clearButtonSvgIcon", "size", "rounded", "fillMode", "tabIndex", "placeholder", "maxlength"], outputs: ["valueChange", "inputFocus", "inputBlur", "focus", "blur"], exportAs: ["kendoTextBox"] }, { kind: "directive", type: i3$1.TextBoxSuffixTemplateDirective, selector: "[kendoTextBoxSuffixTemplate]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: IconComponent, selector: "lib-icon", inputs: ["name", "fontSize", "type"] }] }); }
|
|
1575
1575
|
}
|
|
1576
1576
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxComponent, decorators: [{
|
|
1577
1577
|
type: Component,
|
|
1578
|
-
args: [{ selector: 'lib-textbox', template: "<kendo-textbox #textbox [style.width.px]=\"width\" [placeholder]=\"placeholder\" [clearButton]=\"clearButton\"\n [fillMode]=\"fillMode\" [readonly]=\"readonly\" [size]=\"size\" [rounded]=\"rounded\" [formControl]=\"control\"\n [(ngModel)]=\"value\" (ngModelChange)=\"emitValueChange($event)\" (focus)=\"onFocus()\" (blur)=\"onBlur()\">\n <ng-template *ngIf=\"this.type === 'password' && showEyeIcon\" kendoTextBoxSuffixTemplate>\n <lib-icon name=\"eye-open\" (click)=\"toggleVisibility()\" *ngIf=\"showPassword\"></lib-icon>\n <lib-icon name=\"eye-closed\" (click)=\"toggleVisibility()\" *ngIf=\"!showPassword\"></lib-icon>\n </ng-template>\n</kendo-textbox>\n", styles: ["kendo-textbox lib-icon{padding-right:
|
|
1578
|
+
args: [{ selector: 'lib-textbox', template: "<kendo-textbox #textbox [style.width.px]=\"width\" [placeholder]=\"placeholder\" [clearButton]=\"clearButton\"\n [fillMode]=\"fillMode\" [readonly]=\"readonly\" [size]=\"size\" [rounded]=\"rounded\" [formControl]=\"control\"\n [(ngModel)]=\"value\" (ngModelChange)=\"emitValueChange($event)\" (focus)=\"onFocus()\" (blur)=\"onBlur()\">\n <ng-template *ngIf=\"this.type === 'password' && showEyeIcon\" kendoTextBoxSuffixTemplate>\n <lib-icon name=\"eye-open\" (click)=\"toggleVisibility()\" *ngIf=\"showPassword\"></lib-icon>\n <lib-icon name=\"eye-closed\" (click)=\"toggleVisibility()\" *ngIf=\"!showPassword\"></lib-icon>\n </ng-template>\n</kendo-textbox>\n", styles: ["kendo-textbox lib-icon{padding-right:7px;cursor:pointer}\n"] }]
|
|
1579
1579
|
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { textbox: [{
|
|
1580
1580
|
type: ViewChild,
|
|
1581
1581
|
args: ['textbox', { static: false }]
|
|
@@ -2291,6 +2291,120 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2291
2291
|
}]
|
|
2292
2292
|
}] });
|
|
2293
2293
|
|
|
2294
|
+
class DatepickerComponent {
|
|
2295
|
+
constructor(themesService) {
|
|
2296
|
+
this.themesService = themesService;
|
|
2297
|
+
this.calendarType = "infinite"; //"infinite" | "classic"
|
|
2298
|
+
this.isDisabled = true;
|
|
2299
|
+
this.readOnlyInput = true;
|
|
2300
|
+
this.min = new Date(0); // Minimum possible date
|
|
2301
|
+
this.max = new Date(8640000000000000); // Maximum possible date
|
|
2302
|
+
this.format = "dd-MMM-yyyy"; //short" | "medium" | "long" | "full"
|
|
2303
|
+
this.placeholder = "Choose a date ...";
|
|
2304
|
+
this.incompleteDateValidation = true;
|
|
2305
|
+
this.fillMode = "solid";
|
|
2306
|
+
this.rounded = "medium";
|
|
2307
|
+
this.size = "medium";
|
|
2308
|
+
this.modelChange = new EventEmitter();
|
|
2309
|
+
this.control = new FormControl();
|
|
2310
|
+
this.navigation = false;
|
|
2311
|
+
// @Input() isDisabled: boolean = false;
|
|
2312
|
+
// @Input() readOnly: boolean = true;
|
|
2313
|
+
this.onOpenEvent = new EventEmitter();
|
|
2314
|
+
this.onCloseEvent = new EventEmitter();
|
|
2315
|
+
}
|
|
2316
|
+
ngOnChanges(changes) {
|
|
2317
|
+
if (changes['isDisabled']) {
|
|
2318
|
+
if (changes['isDisabled']?.currentValue) {
|
|
2319
|
+
this.control.disable();
|
|
2320
|
+
}
|
|
2321
|
+
else {
|
|
2322
|
+
this.control.enable();
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2325
|
+
}
|
|
2326
|
+
onValueChange(ev) {
|
|
2327
|
+
this.modelChange.emit(ev);
|
|
2328
|
+
}
|
|
2329
|
+
onOpen(event) {
|
|
2330
|
+
this.onOpenEvent.emit(event);
|
|
2331
|
+
}
|
|
2332
|
+
onClose(event) {
|
|
2333
|
+
this.onCloseEvent.emit(event);
|
|
2334
|
+
}
|
|
2335
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerComponent, deps: [{ token: i1$1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2336
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DatepickerComponent, selector: "lib-datepicker", inputs: { calendarType: "calendarType", isDisabled: "isDisabled", readOnlyInput: "readOnlyInput", disabledDates: "disabledDates", min: "min", max: "max", format: "format", placeholder: "placeholder", incompleteDateValidation: "incompleteDateValidation", fillMode: "fillMode", rounded: "rounded", size: "size", control: "control", value: "value", navigation: "navigation" }, outputs: { modelChange: "modelChange", onOpenEvent: "onOpenEvent", onCloseEvent: "onCloseEvent" }, usesOnChanges: true, ngImport: i0, template: "<kendo-datepicker [calendarType]=\"calendarType\" [readOnlyInput]=\"readOnlyInput\"\n [disabledDates]=\"disabledDates\" [value]=\"value\" [min]=\"min\" [max]=\"max\" [format]=\"format\" [placeholder]=\"placeholder\"\n [incompleteDateValidation]=\"incompleteDateValidation\" [fillMode]=\"fillMode\" [rounded]=\"rounded\" [size]=\"size\" [navigation]=\"navigation\" \n (open)=\"onOpen($event)\" (valueChange)=\"onValueChange($event)\" [formControl]=\"control\"></kendo-datepicker>", styles: [""], dependencies: [{ kind: "component", type: i2$4.DatePickerComponent, selector: "kendo-datepicker", inputs: ["focusableId", "cellTemplate", "monthCellTemplate", "yearCellTemplate", "decadeCellTemplate", "centuryCellTemplate", "weekNumberTemplate", "headerTitleTemplate", "navigationItemTemplate", "activeView", "bottomView", "topView", "calendarType", "animateCalendarNavigation", "disabled", "readonly", "readOnlyInput", "popupSettings", "navigation", "min", "max", "incompleteDateValidation", "autoCorrectParts", "autoSwitchParts", "autoSwitchKeys", "enableMouseWheel", "allowCaretMode", "autoFill", "focusedDate", "value", "format", "twoDigitYearMax", "formatPlaceholder", "placeholder", "tabindex", "tabIndex", "disabledDates", "title", "subtitle", "rangeValidation", "disabledDatesValidation", "weekNumber", "size", "rounded", "fillMode", "adaptiveMode"], outputs: ["valueChange", "focus", "blur", "open", "close"], exportAs: ["kendo-datepicker"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
2337
|
+
}
|
|
2338
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerComponent, decorators: [{
|
|
2339
|
+
type: Component,
|
|
2340
|
+
args: [{ selector: 'lib-datepicker', template: "<kendo-datepicker [calendarType]=\"calendarType\" [readOnlyInput]=\"readOnlyInput\"\n [disabledDates]=\"disabledDates\" [value]=\"value\" [min]=\"min\" [max]=\"max\" [format]=\"format\" [placeholder]=\"placeholder\"\n [incompleteDateValidation]=\"incompleteDateValidation\" [fillMode]=\"fillMode\" [rounded]=\"rounded\" [size]=\"size\" [navigation]=\"navigation\" \n (open)=\"onOpen($event)\" (valueChange)=\"onValueChange($event)\" [formControl]=\"control\"></kendo-datepicker>" }]
|
|
2341
|
+
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { calendarType: [{
|
|
2342
|
+
type: Input
|
|
2343
|
+
}], isDisabled: [{
|
|
2344
|
+
type: Input
|
|
2345
|
+
}], readOnlyInput: [{
|
|
2346
|
+
type: Input
|
|
2347
|
+
}], disabledDates: [{
|
|
2348
|
+
type: Input
|
|
2349
|
+
}], min: [{
|
|
2350
|
+
type: Input
|
|
2351
|
+
}], max: [{
|
|
2352
|
+
type: Input
|
|
2353
|
+
}], format: [{
|
|
2354
|
+
type: Input
|
|
2355
|
+
}], placeholder: [{
|
|
2356
|
+
type: Input
|
|
2357
|
+
}], incompleteDateValidation: [{
|
|
2358
|
+
type: Input
|
|
2359
|
+
}], fillMode: [{
|
|
2360
|
+
type: Input
|
|
2361
|
+
}], rounded: [{
|
|
2362
|
+
type: Input
|
|
2363
|
+
}], size: [{
|
|
2364
|
+
type: Input
|
|
2365
|
+
}], modelChange: [{
|
|
2366
|
+
type: Output
|
|
2367
|
+
}], control: [{
|
|
2368
|
+
type: Input
|
|
2369
|
+
}], value: [{
|
|
2370
|
+
type: Input
|
|
2371
|
+
}], navigation: [{
|
|
2372
|
+
type: Input
|
|
2373
|
+
}], onOpenEvent: [{
|
|
2374
|
+
type: Output
|
|
2375
|
+
}], onCloseEvent: [{
|
|
2376
|
+
type: Output
|
|
2377
|
+
}] } });
|
|
2378
|
+
|
|
2379
|
+
class DatepickerModule {
|
|
2380
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2381
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DatepickerModule, declarations: [DatepickerComponent], imports: [DateInputsModule,
|
|
2382
|
+
ButtonsModule,
|
|
2383
|
+
FormsModule,
|
|
2384
|
+
ReactiveFormsModule], exports: [DatepickerComponent] }); }
|
|
2385
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerModule, imports: [DateInputsModule,
|
|
2386
|
+
ButtonsModule,
|
|
2387
|
+
FormsModule,
|
|
2388
|
+
ReactiveFormsModule] }); }
|
|
2389
|
+
}
|
|
2390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DatepickerModule, decorators: [{
|
|
2391
|
+
type: NgModule,
|
|
2392
|
+
args: [{
|
|
2393
|
+
declarations: [
|
|
2394
|
+
DatepickerComponent,
|
|
2395
|
+
],
|
|
2396
|
+
imports: [
|
|
2397
|
+
DateInputsModule,
|
|
2398
|
+
ButtonsModule,
|
|
2399
|
+
FormsModule,
|
|
2400
|
+
ReactiveFormsModule,
|
|
2401
|
+
],
|
|
2402
|
+
exports: [
|
|
2403
|
+
DatepickerComponent
|
|
2404
|
+
]
|
|
2405
|
+
}]
|
|
2406
|
+
}] });
|
|
2407
|
+
|
|
2294
2408
|
class AtomsModule {
|
|
2295
2409
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2296
2410
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, imports: [AlertModule,
|
|
@@ -2325,7 +2439,8 @@ class AtomsModule {
|
|
|
2325
2439
|
ToastNotificationModule,
|
|
2326
2440
|
TooltipModule,
|
|
2327
2441
|
TypographyModule,
|
|
2328
|
-
ClipboardModule
|
|
2442
|
+
ClipboardModule,
|
|
2443
|
+
DatepickerModule], exports: [AlertModule,
|
|
2329
2444
|
AngularPopupModule,
|
|
2330
2445
|
AvatarModule,
|
|
2331
2446
|
BreadcrumbModule,
|
|
@@ -2354,7 +2469,8 @@ class AtomsModule {
|
|
|
2354
2469
|
ToastNotificationModule,
|
|
2355
2470
|
TooltipModule,
|
|
2356
2471
|
TypographyModule,
|
|
2357
|
-
ClipboardModule
|
|
2472
|
+
ClipboardModule,
|
|
2473
|
+
DatepickerModule] }); }
|
|
2358
2474
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, imports: [AlertModule,
|
|
2359
2475
|
AngularPopupModule,
|
|
2360
2476
|
AvatarModule,
|
|
@@ -2387,7 +2503,8 @@ class AtomsModule {
|
|
|
2387
2503
|
ToastNotificationModule,
|
|
2388
2504
|
TooltipModule,
|
|
2389
2505
|
TypographyModule,
|
|
2390
|
-
ClipboardModule,
|
|
2506
|
+
ClipboardModule,
|
|
2507
|
+
DatepickerModule, AlertModule,
|
|
2391
2508
|
AngularPopupModule,
|
|
2392
2509
|
AvatarModule,
|
|
2393
2510
|
BreadcrumbModule,
|
|
@@ -2416,7 +2533,8 @@ class AtomsModule {
|
|
|
2416
2533
|
ToastNotificationModule,
|
|
2417
2534
|
TooltipModule,
|
|
2418
2535
|
TypographyModule,
|
|
2419
|
-
ClipboardModule
|
|
2536
|
+
ClipboardModule,
|
|
2537
|
+
DatepickerModule] }); }
|
|
2420
2538
|
}
|
|
2421
2539
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, decorators: [{
|
|
2422
2540
|
type: NgModule,
|
|
@@ -2454,7 +2572,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2454
2572
|
ToastNotificationModule,
|
|
2455
2573
|
TooltipModule,
|
|
2456
2574
|
TypographyModule,
|
|
2457
|
-
ClipboardModule
|
|
2575
|
+
ClipboardModule,
|
|
2576
|
+
DatepickerModule
|
|
2458
2577
|
],
|
|
2459
2578
|
exports: [
|
|
2460
2579
|
AlertModule,
|
|
@@ -2486,7 +2605,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2486
2605
|
ToastNotificationModule,
|
|
2487
2606
|
TooltipModule,
|
|
2488
2607
|
TypographyModule,
|
|
2489
|
-
ClipboardModule
|
|
2608
|
+
ClipboardModule,
|
|
2609
|
+
DatepickerModule
|
|
2490
2610
|
],
|
|
2491
2611
|
}]
|
|
2492
2612
|
}] });
|
|
@@ -3898,5 +4018,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3898
4018
|
* Generated bundle index. Do not edit.
|
|
3899
4019
|
*/
|
|
3900
4020
|
|
|
3901
|
-
export { ALERT_TYPE, AlertComponent, AlertModule, AngularPopupComponent, AngularPopupModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonGroupModule, ButtonModule, CardActionsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardModule, CheckboxComponent, CheckboxModule, ClipboardComponent, ClipboardModule, ContainerComponent, ContainerModule, DialogActionsComponent, DialogComponent, DialogModule, DialogTitlebarComponent, DropdownComponent, DropdownModule, DropdownTreeModule, DropdowntreeComponent, ExpansionPanelComponent, ExpansionPanelModule, GridFormComponent, GridLayoutComponent, GridLayoutItemComponent, GridLayoutModule, GridPaginationComponent, GridPaginationModule, GridPaginationSpacerComponent, GridSpacerComponent, GridsModule, IconComponent, IconModule, LabelComponent, LabelsModule, LibGridComponent, LoaderComponent, LoaderModule, LoaderSize, LoaderThemeColor, LoaderType, LoadingSpinnerComponent, LoadingSpinnerModule, MoleculesModule, MultiSelectDropdownComponent, MultiSelectDropdownModule, NotificationComponent, NotificationModule, NumericTextboxComponent, NumericTextboxModule, ProgressBarComponent, ProgressBarsModule, RadioButtonComponent, RadioButtonModule, SearchBoxComponent, SearchBoxModule, SharedComponent, SharedModule, SharedService, SliderComponent, SliderModule, StyleTokensModule, TabstripComponent, TabstripModule, TabstripTabComponent, TextAreaComponent, TextAreaModule, TextboxComponent, TextboxModule, TimeSchedulerModule, TimeschedulerComponent, ToastNotificationModule, ToastNotificationService, TooltipComponent, TooltipModule, Type, TypographyComponent, TypographyModule };
|
|
4021
|
+
export { ALERT_TYPE, AlertComponent, AlertModule, AngularPopupComponent, AngularPopupModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonGroupModule, ButtonModule, CardActionsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardModule, CheckboxComponent, CheckboxModule, ClipboardComponent, ClipboardModule, ContainerComponent, ContainerModule, DatepickerComponent, DatepickerModule, DialogActionsComponent, DialogComponent, DialogModule, DialogTitlebarComponent, DropdownComponent, DropdownModule, DropdownTreeModule, DropdowntreeComponent, ExpansionPanelComponent, ExpansionPanelModule, GridFormComponent, GridLayoutComponent, GridLayoutItemComponent, GridLayoutModule, GridPaginationComponent, GridPaginationModule, GridPaginationSpacerComponent, GridSpacerComponent, GridsModule, IconComponent, IconModule, LabelComponent, LabelsModule, LibGridComponent, LoaderComponent, LoaderModule, LoaderSize, LoaderThemeColor, LoaderType, LoadingSpinnerComponent, LoadingSpinnerModule, MoleculesModule, MultiSelectDropdownComponent, MultiSelectDropdownModule, NotificationComponent, NotificationModule, NumericTextboxComponent, NumericTextboxModule, ProgressBarComponent, ProgressBarsModule, RadioButtonComponent, RadioButtonModule, SearchBoxComponent, SearchBoxModule, SharedComponent, SharedModule, SharedService, SliderComponent, SliderModule, StyleTokensModule, TabstripComponent, TabstripModule, TabstripTabComponent, TextAreaComponent, TextAreaModule, TextboxComponent, TextboxModule, TimeSchedulerModule, TimeschedulerComponent, ToastNotificationModule, ToastNotificationService, TooltipComponent, TooltipModule, Type, TypographyComponent, TypographyModule };
|
|
3902
4022
|
//# sourceMappingURL=progress-chef-platform-shared-components.mjs.map
|