@progress-chef/platform-shared-components 0.0.74 → 0.0.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/IconFont.css +30 -26
- package/assets/IconFont.scss +30 -26
- package/assets/IconFont.ttf +0 -0
- package/assets/IconFont.woff +0 -0
- package/assets/IconFont.woff2 +0 -0
- package/esm2022/lib/atoms/atoms.module.mjs +5 -12
- package/esm2022/lib/atoms/text-area/text-area.component.mjs +9 -3
- package/esm2022/lib/atoms/textbox/textbox.component.mjs +10 -3
- package/esm2022/lib/atoms/textbox/textbox.module.mjs +5 -4
- package/esm2022/public-api.mjs +1 -3
- package/fesm2022/progress-chef-platform-shared-components.mjs +24 -108
- package/fesm2022/progress-chef-platform-shared-components.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +1 -2
- package/lib/atoms/text-area/text-area.component.d.ts +4 -2
- package/lib/atoms/textbox/textbox.component.d.ts +3 -1
- package/lib/atoms/textbox/textbox.module.d.ts +2 -1
- package/package.json +7 -8
- package/public-api.d.ts +0 -2
- package/esm2022/lib/atoms/uploader/uploader.component.mjs +0 -53
- package/esm2022/lib/atoms/uploader/uploader.module.mjs +0 -49
- package/lib/atoms/uploader/uploader.component.d.ts +0 -15
- package/lib/atoms/uploader/uploader.module.d.ts +0 -13
|
@@ -42,8 +42,6 @@ import { ListViewModule } from '@progress/kendo-angular-listview';
|
|
|
42
42
|
import * as i1$4 from '@progress/kendo-angular-utils';
|
|
43
43
|
import { DragTargetContainerDirective, DropTargetContainerDirective, UtilsModule } from '@progress/kendo-angular-utils';
|
|
44
44
|
import { BrowserModule } from '@angular/platform-browser';
|
|
45
|
-
import * as i1$5 from '@progress/kendo-angular-upload';
|
|
46
|
-
import { UploadsModule } from '@progress/kendo-angular-upload';
|
|
47
45
|
import * as i2$7 from '@progress/kendo-angular-dialog';
|
|
48
46
|
import { DialogsModule, DialogModule as DialogModule$1 } from '@progress/kendo-angular-dialog';
|
|
49
47
|
import * as i5 from '@progress/kendo-angular-grid';
|
|
@@ -1510,6 +1508,8 @@ class TextareaComponent {
|
|
|
1510
1508
|
this.themesService = themesService;
|
|
1511
1509
|
this.placeholder = 'Enter here';
|
|
1512
1510
|
this.resizable = 'vertical';
|
|
1511
|
+
this.readonly = false;
|
|
1512
|
+
this.disabled = false;
|
|
1513
1513
|
this.value = '';
|
|
1514
1514
|
this.control = new FormControl();
|
|
1515
1515
|
this.inputChange = new EventEmitter();
|
|
@@ -1526,11 +1526,11 @@ class TextareaComponent {
|
|
|
1526
1526
|
this.emitOnFocus.emit();
|
|
1527
1527
|
}
|
|
1528
1528
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, deps: [{ token: i1$1.ThemesService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1529
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: ["
|
|
1529
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextareaComponent, selector: "lib-text-area", inputs: { placeholder: "placeholder", resizable: "resizable", readonly: "readonly", disabled: "disabled", rows: "rows", cols: "cols", width: "width", value: "value", control: "control", focus: "focus" }, outputs: { inputChange: "inputChange", emitOnBlur: "emitOnBlur", emitOnFocus: "emitOnFocus" }, viewQueries: [{ propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true }], ngImport: i0, template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: ["::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"], dependencies: [{ kind: "component", type: i3$1.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
1530
1530
|
}
|
|
1531
1531
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextareaComponent, decorators: [{
|
|
1532
1532
|
type: Component,
|
|
1533
|
-
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n>\n</kendo-textarea>\n", styles: ["
|
|
1533
|
+
args: [{ selector: 'lib-text-area', template: "<kendo-textarea\n #textarea\n [placeholder]=\"placeholder\"\n [resizable]=\"resizable\"\n [rows]=\"rows\"\n [cols]=\"cols\"\n [style.width.px]=\"width\"\n [(ngModel)]=\"value\"\n [formControl]=\"control\"\n (ngModelChange)=\"emitValueChange($event)\"\n (blur)=\"onBlur()\"\n (focus)=\"onFocus()\"\n [readonly]=\"readonly\"\n [disabled]=\"disabled\"\n>\n</kendo-textarea>\n", styles: ["::ng-deep kendo-textarea.k-disabled{pointer-events:auto}\n"] }]
|
|
1534
1534
|
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { textarea: [{
|
|
1535
1535
|
type: ViewChild,
|
|
1536
1536
|
args: ['textarea', { static: false }]
|
|
@@ -1538,6 +1538,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1538
1538
|
type: Input
|
|
1539
1539
|
}], resizable: [{
|
|
1540
1540
|
type: Input
|
|
1541
|
+
}], readonly: [{
|
|
1542
|
+
type: Input
|
|
1543
|
+
}], disabled: [{
|
|
1544
|
+
type: Input
|
|
1541
1545
|
}], rows: [{
|
|
1542
1546
|
type: Input
|
|
1543
1547
|
}], cols: [{
|
|
@@ -1596,6 +1600,8 @@ class TextboxComponent {
|
|
|
1596
1600
|
this.control = new FormControl();
|
|
1597
1601
|
this.value = '';
|
|
1598
1602
|
this.type = '';
|
|
1603
|
+
this.showError = false;
|
|
1604
|
+
this.errorMessage = "Error";
|
|
1599
1605
|
this.inputChange = new EventEmitter();
|
|
1600
1606
|
this.focusEvent = new EventEmitter();
|
|
1601
1607
|
this.blurEvent = new EventEmitter();
|
|
@@ -1634,11 +1640,11 @@ class TextboxComponent {
|
|
|
1634
1640
|
this.blurEvent.emit();
|
|
1635
1641
|
}
|
|
1636
1642
|
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 }); }
|
|
1637
|
-
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
|
|
1643
|
+
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", showError: "showError", errorMessage: "errorMessage" }, outputs: { inputChange: "inputChange", focusEvent: "focusEvent", blurEvent: "blurEvent" }, viewQueries: [{ propertyName: "textbox", first: true, predicate: ["textbox"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div title=\"{{isDisabled ? value : ''}}\">\n <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 <div *ngIf=\"showError\">\n <lib-typography [defaultText]=\"errorMessage\" class=\"error-text\" />\n </div>\n</div>\n", styles: ["kendo-textbox lib-icon{padding: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", "projectedIcon", "fontSize", "type"] }, { kind: "component", type: TypographyComponent, selector: "lib-typography", inputs: ["type", "defaultText", "isLabel", "hiddenLabel"] }] }); }
|
|
1638
1644
|
}
|
|
1639
1645
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxComponent, decorators: [{
|
|
1640
1646
|
type: Component,
|
|
1641
|
-
args: [{ selector: 'lib-textbox', template: "<kendo-textbox #textbox [style.width.px]=\"width\" [placeholder]=\"placeholder\" [clearButton]=\"clearButton\"\n
|
|
1647
|
+
args: [{ selector: 'lib-textbox', template: "<div title=\"{{isDisabled ? value : ''}}\">\n <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 <div *ngIf=\"showError\">\n <lib-typography [defaultText]=\"errorMessage\" class=\"error-text\" />\n </div>\n</div>\n", styles: ["kendo-textbox lib-icon{padding:7px;cursor:pointer}\n"] }]
|
|
1642
1648
|
}], ctorParameters: function () { return [{ type: i1$1.ThemesService }]; }, propDecorators: { textbox: [{
|
|
1643
1649
|
type: ViewChild,
|
|
1644
1650
|
args: ['textbox', { static: false }]
|
|
@@ -1666,6 +1672,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1666
1672
|
type: Input
|
|
1667
1673
|
}], type: [{
|
|
1668
1674
|
type: Input
|
|
1675
|
+
}], showError: [{
|
|
1676
|
+
type: Input
|
|
1677
|
+
}], errorMessage: [{
|
|
1678
|
+
type: Input
|
|
1669
1679
|
}], inputChange: [{
|
|
1670
1680
|
type: Output
|
|
1671
1681
|
}], focusEvent: [{
|
|
@@ -1676,15 +1686,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1676
1686
|
|
|
1677
1687
|
class TextboxModule {
|
|
1678
1688
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1679
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, declarations: [TextboxComponent], imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule], exports: [TextboxComponent] }); }
|
|
1680
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule] }); }
|
|
1689
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, declarations: [TextboxComponent], imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule, TypographyModule], exports: [TextboxComponent] }); }
|
|
1690
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule, TypographyModule] }); }
|
|
1681
1691
|
}
|
|
1682
1692
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: TextboxModule, decorators: [{
|
|
1683
1693
|
type: NgModule,
|
|
1684
1694
|
args: [{
|
|
1685
1695
|
declarations: [TextboxComponent],
|
|
1686
1696
|
exports: [TextboxComponent],
|
|
1687
|
-
imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule],
|
|
1697
|
+
imports: [CommonModule, InputsModule, ReactiveFormsModule, IconModule, TypographyModule],
|
|
1688
1698
|
}]
|
|
1689
1699
|
}] });
|
|
1690
1700
|
|
|
@@ -3140,94 +3150,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3140
3150
|
}]
|
|
3141
3151
|
}] });
|
|
3142
3152
|
|
|
3143
|
-
class UploaderComponent {
|
|
3144
|
-
constructor() {
|
|
3145
|
-
this.uploadSaveUrl = "node/enrollment/v1/bulk-enroll"; // should represent an actual API endpoint
|
|
3146
|
-
this.uploadRemoveUrl = "";
|
|
3147
|
-
this.control = new FormControl();
|
|
3148
|
-
this.model = [];
|
|
3149
|
-
this.myRestrictions = {
|
|
3150
|
-
allowedExtensions: [".png"],
|
|
3151
|
-
maxFileSize: 4194304,
|
|
3152
|
-
minFileSize: 576,
|
|
3153
|
-
};
|
|
3154
|
-
this.chunkSettings = {
|
|
3155
|
-
size: 102400,
|
|
3156
|
-
autoRetryAfter: 1000,
|
|
3157
|
-
maxAutoRetries: 0,
|
|
3158
|
-
resumable: true
|
|
3159
|
-
};
|
|
3160
|
-
}
|
|
3161
|
-
ngOnChanges(changes) {
|
|
3162
|
-
if (changes['isDisabled']) {
|
|
3163
|
-
if (changes['isDisabled']?.currentValue) {
|
|
3164
|
-
this.control.disable();
|
|
3165
|
-
}
|
|
3166
|
-
else {
|
|
3167
|
-
this.control.enable();
|
|
3168
|
-
}
|
|
3169
|
-
}
|
|
3170
|
-
}
|
|
3171
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3172
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: UploaderComponent, selector: "lib-uploader", inputs: { uploadSaveUrl: "uploadSaveUrl", uploadRemoveUrl: "uploadRemoveUrl", control: "control", model: "model", myRestrictions: "myRestrictions", chunkSettings: "chunkSettings" }, usesOnChanges: true, ngImport: i0, template: "<kendo-upload #uploader [saveUrl]=\"uploadSaveUrl\" [removeUrl]=\"uploadRemoveUrl\" [autoUpload]=\"true\" [multiple]=\"true\"\n [batch]=\"false\" [disabled]=\"false\" [restrictions]=\"myRestrictions\" [chunkable]=\"chunkSettings\" [concurrent]=\"true\"\n [formControl]=\"control\" [(ngModel)]=\"model\">\n</kendo-upload>\n", styles: [""], dependencies: [{ kind: "component", type: i1$5.UploadComponent, selector: "kendo-upload", inputs: ["autoUpload", "batch", "withCredentials", "saveField", "saveHeaders", "saveMethod", "saveUrl", "responseType", "removeField", "removeHeaders", "removeMethod", "removeUrl", "chunkable", "concurrent", "multiple", "disabled", "showFileList", "tabindex", "zoneId", "tabIndex", "accept", "restrictions", "focusableId", "actionsLayout"], outputs: ["blur", "cancel", "clear", "complete", "error", "focus", "pause", "remove", "resume", "select", "success", "upload", "uploadProgress", "valueChange"], exportAs: ["kendoUpload"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }] }); }
|
|
3173
|
-
}
|
|
3174
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploaderComponent, decorators: [{
|
|
3175
|
-
type: Component,
|
|
3176
|
-
args: [{ selector: 'lib-uploader', template: "<kendo-upload #uploader [saveUrl]=\"uploadSaveUrl\" [removeUrl]=\"uploadRemoveUrl\" [autoUpload]=\"true\" [multiple]=\"true\"\n [batch]=\"false\" [disabled]=\"false\" [restrictions]=\"myRestrictions\" [chunkable]=\"chunkSettings\" [concurrent]=\"true\"\n [formControl]=\"control\" [(ngModel)]=\"model\">\n</kendo-upload>\n" }]
|
|
3177
|
-
}], propDecorators: { uploadSaveUrl: [{
|
|
3178
|
-
type: Input
|
|
3179
|
-
}], uploadRemoveUrl: [{
|
|
3180
|
-
type: Input
|
|
3181
|
-
}], control: [{
|
|
3182
|
-
type: Input
|
|
3183
|
-
}], model: [{
|
|
3184
|
-
type: Input
|
|
3185
|
-
}], myRestrictions: [{
|
|
3186
|
-
type: Input
|
|
3187
|
-
}], chunkSettings: [{
|
|
3188
|
-
type: Input
|
|
3189
|
-
}] } });
|
|
3190
|
-
|
|
3191
|
-
class UploaderModule {
|
|
3192
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3193
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: UploaderModule, declarations: [UploaderComponent], imports: [CommonModule,
|
|
3194
|
-
UploadsModule,
|
|
3195
|
-
ButtonsModule,
|
|
3196
|
-
FormsModule,
|
|
3197
|
-
ReactiveFormsModule,
|
|
3198
|
-
LayoutModule,
|
|
3199
|
-
TypographyModule], exports: [UploaderComponent,
|
|
3200
|
-
UploadsModule] }); }
|
|
3201
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploaderModule, imports: [CommonModule,
|
|
3202
|
-
UploadsModule,
|
|
3203
|
-
ButtonsModule,
|
|
3204
|
-
FormsModule,
|
|
3205
|
-
ReactiveFormsModule,
|
|
3206
|
-
LayoutModule,
|
|
3207
|
-
TypographyModule, UploadsModule] }); }
|
|
3208
|
-
}
|
|
3209
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UploaderModule, decorators: [{
|
|
3210
|
-
type: NgModule,
|
|
3211
|
-
args: [{
|
|
3212
|
-
declarations: [
|
|
3213
|
-
UploaderComponent
|
|
3214
|
-
],
|
|
3215
|
-
imports: [
|
|
3216
|
-
CommonModule,
|
|
3217
|
-
UploadsModule,
|
|
3218
|
-
ButtonsModule,
|
|
3219
|
-
FormsModule,
|
|
3220
|
-
ReactiveFormsModule,
|
|
3221
|
-
LayoutModule,
|
|
3222
|
-
TypographyModule
|
|
3223
|
-
],
|
|
3224
|
-
exports: [
|
|
3225
|
-
UploaderComponent,
|
|
3226
|
-
UploadsModule
|
|
3227
|
-
]
|
|
3228
|
-
}]
|
|
3229
|
-
}] });
|
|
3230
|
-
|
|
3231
3153
|
class AtomsModule {
|
|
3232
3154
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3233
3155
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, imports: [AlertModule,
|
|
@@ -3270,8 +3192,7 @@ class AtomsModule {
|
|
|
3270
3192
|
DragAndDropModule,
|
|
3271
3193
|
SwitchModule,
|
|
3272
3194
|
ChipModule,
|
|
3273
|
-
ChipListModule,
|
|
3274
|
-
UploaderModule], exports: [AlertModule,
|
|
3195
|
+
ChipListModule], exports: [AlertModule,
|
|
3275
3196
|
AngularPopupModule,
|
|
3276
3197
|
AvatarModule,
|
|
3277
3198
|
BreadcrumbModule,
|
|
@@ -3308,8 +3229,7 @@ class AtomsModule {
|
|
|
3308
3229
|
DragAndDropModule,
|
|
3309
3230
|
SwitchModule,
|
|
3310
3231
|
ChipModule,
|
|
3311
|
-
ChipListModule
|
|
3312
|
-
UploaderModule] }); }
|
|
3232
|
+
ChipListModule] }); }
|
|
3313
3233
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, imports: [AlertModule,
|
|
3314
3234
|
AngularPopupModule,
|
|
3315
3235
|
AvatarModule,
|
|
@@ -3350,8 +3270,7 @@ class AtomsModule {
|
|
|
3350
3270
|
DragAndDropModule,
|
|
3351
3271
|
SwitchModule,
|
|
3352
3272
|
ChipModule,
|
|
3353
|
-
ChipListModule,
|
|
3354
|
-
UploaderModule, AlertModule,
|
|
3273
|
+
ChipListModule, AlertModule,
|
|
3355
3274
|
AngularPopupModule,
|
|
3356
3275
|
AvatarModule,
|
|
3357
3276
|
BreadcrumbModule,
|
|
@@ -3388,8 +3307,7 @@ class AtomsModule {
|
|
|
3388
3307
|
DragAndDropModule,
|
|
3389
3308
|
SwitchModule,
|
|
3390
3309
|
ChipModule,
|
|
3391
|
-
ChipListModule
|
|
3392
|
-
UploaderModule] }); }
|
|
3310
|
+
ChipListModule] }); }
|
|
3393
3311
|
}
|
|
3394
3312
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AtomsModule, decorators: [{
|
|
3395
3313
|
type: NgModule,
|
|
@@ -3436,7 +3354,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3436
3354
|
SwitchModule,
|
|
3437
3355
|
ChipModule,
|
|
3438
3356
|
ChipListModule,
|
|
3439
|
-
UploaderModule
|
|
3440
3357
|
],
|
|
3441
3358
|
exports: [
|
|
3442
3359
|
AlertModule,
|
|
@@ -3477,7 +3394,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3477
3394
|
SwitchModule,
|
|
3478
3395
|
ChipModule,
|
|
3479
3396
|
ChipListModule,
|
|
3480
|
-
UploaderModule
|
|
3481
3397
|
],
|
|
3482
3398
|
}]
|
|
3483
3399
|
}] });
|
|
@@ -5091,5 +5007,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
5091
5007
|
* Generated bundle index. Do not edit.
|
|
5092
5008
|
*/
|
|
5093
5009
|
|
|
5094
|
-
export { ALERT_TYPE, AlertComponent, AlertModule, AngularPopupComponent, AngularPopupModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonGroupModule, ButtonModule, CardActionsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardModule, CheckboxComponent, CheckboxModule, ChipComponent, ChipListComponent, ChipListModule, ChipModule, ClipboardComponent, ClipboardModule, ConfirmationDialogComponent, ContainerComponent, ContainerModule, CustomColumnTemplate, DateRangeComponent, DateRangeModule, DatepickerComponent, DatepickerModule, DialogActionsComponent, DialogComponent, DialogModule, DialogTitlebarComponent, DragAndDropComponent, DragAndDropModule, DropdownComponent, DropdownModule, DropdownTreeModule, DropdowntreeComponent, ExpansionPanelComponent, ExpansionPanelModule, GridFormComponent, GridLayoutComponent, GridLayoutItemComponent, GridLayoutModule, GridPaginationComponent, GridPaginationModule, GridPaginationSpacerComponent, GridSpacerComponent, GridsModule, IconComponent, IconModule, LabelComponent, LabelsModule, LibGridComponent, ListViewComponent, ListViewsModule, 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, StepperComponent, StepperModule, StyleTokensModule, SwitchComponent, SwitchModule, TabstripComponent, TabstripModule, TabstripTabComponent, TextAreaModule, TextareaComponent, TextboxComponent, TextboxModule, TimeSchedulerModule, TimeschedulerComponent, ToastNotificationModule, ToastNotificationService, TooltipComponent, TooltipModule, Type, TypographyComponent, TypographyModule
|
|
5010
|
+
export { ALERT_TYPE, AlertComponent, AlertModule, AngularPopupComponent, AngularPopupModule, AtomsModule, AvatarComponent, AvatarModule, BreadcrumbComponent, BreadcrumbModule, ButtonComponent, ButtonGroupComponent, ButtonGroupModule, ButtonModule, CardActionsComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CardModule, CheckboxComponent, CheckboxModule, ChipComponent, ChipListComponent, ChipListModule, ChipModule, ClipboardComponent, ClipboardModule, ConfirmationDialogComponent, ContainerComponent, ContainerModule, CustomColumnTemplate, DateRangeComponent, DateRangeModule, DatepickerComponent, DatepickerModule, DialogActionsComponent, DialogComponent, DialogModule, DialogTitlebarComponent, DragAndDropComponent, DragAndDropModule, DropdownComponent, DropdownModule, DropdownTreeModule, DropdowntreeComponent, ExpansionPanelComponent, ExpansionPanelModule, GridFormComponent, GridLayoutComponent, GridLayoutItemComponent, GridLayoutModule, GridPaginationComponent, GridPaginationModule, GridPaginationSpacerComponent, GridSpacerComponent, GridsModule, IconComponent, IconModule, LabelComponent, LabelsModule, LibGridComponent, ListViewComponent, ListViewsModule, 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, StepperComponent, StepperModule, StyleTokensModule, SwitchComponent, SwitchModule, TabstripComponent, TabstripModule, TabstripTabComponent, TextAreaModule, TextareaComponent, TextboxComponent, TextboxModule, TimeSchedulerModule, TimeschedulerComponent, ToastNotificationModule, ToastNotificationService, TooltipComponent, TooltipModule, Type, TypographyComponent, TypographyModule };
|
|
5095
5011
|
//# sourceMappingURL=progress-chef-platform-shared-components.mjs.map
|