@acorex/components 4.2.43 → 4.2.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/property-editor/editors/number-editor/number.editor.mjs +28 -25
- package/esm2020/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.mjs +72 -0
- package/esm2020/lib/property-editor/editors/selectbox-editor/selectbox.module.mjs +5 -5
- package/esm2020/lib/property-editor/editors/selection-editor/selection-editor.mjs +26 -29
- package/esm2020/lib/property-editor/editors/text-editor/text.editor.mjs +5 -3
- package/esm2020/lib/property-editor/property-editor.module.mjs +17 -6
- package/esm2020/lib/search-bar/search-bar.component.mjs +59 -21
- package/esm2020/lib/search-bar/search-bar.module.mjs +5 -4
- package/fesm2015/acorex-components.mjs +232 -117
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +193 -81
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/property-editor/editors/number-editor/number.editor.d.ts +1 -0
- package/lib/property-editor/editors/searchbar-selectbox-editor/searchbar-selectbox-editor.d.ts +29 -0
- package/lib/property-editor/editors/selectbox-editor/selectbox.module.d.ts +7 -6
- package/lib/property-editor/editors/selection-editor/selection-editor.d.ts +1 -0
- package/lib/property-editor/editors/text-editor/text.editor.d.ts +3 -0
- package/lib/search-bar/search-bar.component.d.ts +6 -1
- package/lib/search-bar/search-bar.module.d.ts +2 -1
- package/package.json +1 -1
|
@@ -10308,7 +10308,7 @@ class AXSearchBarComponent {
|
|
|
10308
10308
|
this._filterItems.push({
|
|
10309
10309
|
name: el.property.name,
|
|
10310
10310
|
title: el.property.title,
|
|
10311
|
-
textValue: el
|
|
10311
|
+
textValue: this.handleTextValue(el),
|
|
10312
10312
|
value: el.value,
|
|
10313
10313
|
component: el
|
|
10314
10314
|
});
|
|
@@ -10320,7 +10320,7 @@ class AXSearchBarComponent {
|
|
|
10320
10320
|
.value();
|
|
10321
10321
|
}
|
|
10322
10322
|
clearItem(name) {
|
|
10323
|
-
this._editors.find((
|
|
10323
|
+
this._editors.find((x) => x.property.property.name === name).clear();
|
|
10324
10324
|
}
|
|
10325
10325
|
refresh() {
|
|
10326
10326
|
this._items = JSON.parse(JSON.stringify(this._items));
|
|
@@ -10330,53 +10330,55 @@ class AXSearchBarComponent {
|
|
|
10330
10330
|
}
|
|
10331
10331
|
handleValueChange(e) {
|
|
10332
10332
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p;
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
if (e.property.editorOptions.
|
|
10337
|
-
|
|
10338
|
-
|
|
10339
|
-
text.
|
|
10340
|
-
}
|
|
10341
|
-
|
|
10342
|
-
|
|
10343
|
-
|
|
10344
|
-
|
|
10345
|
-
|
|
10346
|
-
}
|
|
10333
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
10334
|
+
let value = [];
|
|
10335
|
+
let text = [];
|
|
10336
|
+
if (((_a = e.property.editorOptions) === null || _a === void 0 ? void 0 : _a.valueField) && e.value != null) {
|
|
10337
|
+
if (e.property.editorOptions.returnAllData) {
|
|
10338
|
+
value = e.value;
|
|
10339
|
+
text = yield this.handleTextValue(e);
|
|
10340
|
+
}
|
|
10341
|
+
else if (((_b = e.property.editorOptions) === null || _b === void 0 ? void 0 : _b.mode) == 'multiple') {
|
|
10342
|
+
e.value.forEach((element) => {
|
|
10343
|
+
value.push(element[e.property.editorOptions.valueField]);
|
|
10344
|
+
text.push(element[e.property.editorOptions.textField]);
|
|
10345
|
+
});
|
|
10346
|
+
}
|
|
10347
|
+
else {
|
|
10348
|
+
if (e.value.length) {
|
|
10349
|
+
value = e.value[0][e.property.editorOptions.valueField];
|
|
10350
|
+
text = e.value[0][e.property.editorOptions.textField];
|
|
10351
|
+
}
|
|
10352
|
+
}
|
|
10347
10353
|
}
|
|
10348
10354
|
else {
|
|
10349
|
-
value = e.value
|
|
10350
|
-
text = e.value
|
|
10355
|
+
value = e.value;
|
|
10356
|
+
text = e.value;
|
|
10357
|
+
}
|
|
10358
|
+
const findEl = this._filterItemsClone.find((el) => el.name == e.property.name);
|
|
10359
|
+
if (findEl) {
|
|
10360
|
+
findEl.value = value;
|
|
10361
|
+
findEl.textValue = text ? text.toString() : null;
|
|
10362
|
+
}
|
|
10363
|
+
else if (e.value != null) {
|
|
10364
|
+
this._filterItemsClone.push({
|
|
10365
|
+
name: e.property.name,
|
|
10366
|
+
title: e.property.title,
|
|
10367
|
+
value,
|
|
10368
|
+
textValue: text.toString(),
|
|
10369
|
+
component: e,
|
|
10370
|
+
filterOptions: {
|
|
10371
|
+
filters: ((_d = (_c = e.property) === null || _c === void 0 ? void 0 : _c.filterOptions) === null || _d === void 0 ? void 0 : _d.filters) ? e.property.filterOptions.filters : [],
|
|
10372
|
+
logic: ((_f = (_e = e.property) === null || _e === void 0 ? void 0 : _e.filterOptions) === null || _f === void 0 ? void 0 : _f.logic) ? e.property.filterOptions.logic : 'and',
|
|
10373
|
+
ignoreCase: ((_h = (_g = e.property) === null || _g === void 0 ? void 0 : _g.filterOptions) === null || _h === void 0 ? void 0 : _h.ignoreCase) ? e.property.filterOptions.ignoreCase : true,
|
|
10374
|
+
joinType: ((_k = (_j = e.property) === null || _j === void 0 ? void 0 : _j.filterOptions) === null || _k === void 0 ? void 0 : _k.joinType) ? e.property.filterOptions.joinType : 'INNER',
|
|
10375
|
+
operator: ((_m = (_l = e.property) === null || _l === void 0 ? void 0 : _l.filterOptions) === null || _m === void 0 ? void 0 : _m.operator) ? e.property.filterOptions.operator : null,
|
|
10376
|
+
truncateDate: ((_p = (_o = e.property) === null || _o === void 0 ? void 0 : _o.filterOptions) === null || _p === void 0 ? void 0 : _p.truncateDate) ? e.property.filterOptions.truncateDate : true
|
|
10377
|
+
}
|
|
10378
|
+
});
|
|
10351
10379
|
}
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
value = e.value;
|
|
10355
|
-
text = e.value;
|
|
10356
|
-
}
|
|
10357
|
-
const findEl = this._filterItemsClone.find((el) => el.name == e.property.name);
|
|
10358
|
-
if (findEl) {
|
|
10359
|
-
findEl.value = value;
|
|
10360
|
-
findEl.textValue = text.toString();
|
|
10361
|
-
}
|
|
10362
|
-
else if (e.value != null) {
|
|
10363
|
-
this._filterItemsClone.push({
|
|
10364
|
-
name: e.property.name,
|
|
10365
|
-
title: e.property.title,
|
|
10366
|
-
value,
|
|
10367
|
-
textValue: text.toString(),
|
|
10368
|
-
component: e,
|
|
10369
|
-
filterOptions: {
|
|
10370
|
-
filters: ((_d = (_c = e.property) === null || _c === void 0 ? void 0 : _c.filterOptions) === null || _d === void 0 ? void 0 : _d.filters) ? e.property.filterOptions.filters : [],
|
|
10371
|
-
logic: ((_f = (_e = e.property) === null || _e === void 0 ? void 0 : _e.filterOptions) === null || _f === void 0 ? void 0 : _f.logic) ? e.property.filterOptions.logic : 'and',
|
|
10372
|
-
ignoreCase: ((_h = (_g = e.property) === null || _g === void 0 ? void 0 : _g.filterOptions) === null || _h === void 0 ? void 0 : _h.ignoreCase) ? e.property.filterOptions.ignoreCase : true,
|
|
10373
|
-
joinType: ((_k = (_j = e.property) === null || _j === void 0 ? void 0 : _j.filterOptions) === null || _k === void 0 ? void 0 : _k.joinType) ? e.property.filterOptions.joinType : 'INNER',
|
|
10374
|
-
operator: ((_m = (_l = e.property) === null || _l === void 0 ? void 0 : _l.filterOptions) === null || _m === void 0 ? void 0 : _m.operator) ? e.property.filterOptions.operator : null,
|
|
10375
|
-
truncateDate: ((_p = (_o = e.property) === null || _o === void 0 ? void 0 : _o.filterOptions) === null || _p === void 0 ? void 0 : _p.truncateDate) ? e.property.filterOptions.truncateDate : true
|
|
10376
|
-
}
|
|
10377
|
-
});
|
|
10378
|
-
}
|
|
10379
|
-
this.onValueChange.emit(e);
|
|
10380
|
+
this.onValueChange.emit(e);
|
|
10381
|
+
});
|
|
10380
10382
|
}
|
|
10381
10383
|
handleItemRemoveClick(item) {
|
|
10382
10384
|
this._editors.forEach((e) => {
|
|
@@ -10387,9 +10389,14 @@ class AXSearchBarComponent {
|
|
|
10387
10389
|
this._filterItems = this._filterItems.filter((el) => el.name != item.name);
|
|
10388
10390
|
}
|
|
10389
10391
|
search() {
|
|
10390
|
-
this.
|
|
10391
|
-
|
|
10392
|
-
|
|
10392
|
+
this.form.validate().then((c) => {
|
|
10393
|
+
if (c.result) {
|
|
10394
|
+
this._filterItems = JSON.parse(JSON.stringify(this._filterItemsClone.filter((el) => el.value != null && el.value != '')));
|
|
10395
|
+
this.handleButtonClick();
|
|
10396
|
+
console.log(this._filterItems);
|
|
10397
|
+
this.onSearchValue.emit(this._filterItems);
|
|
10398
|
+
}
|
|
10399
|
+
});
|
|
10393
10400
|
}
|
|
10394
10401
|
clear() {
|
|
10395
10402
|
this._editors.forEach((e) => {
|
|
@@ -10425,19 +10432,50 @@ class AXSearchBarComponent {
|
|
|
10425
10432
|
}
|
|
10426
10433
|
return className.toString().replace(/,/, ' ');
|
|
10427
10434
|
}
|
|
10435
|
+
_handleShowTitleSelected(item) {
|
|
10436
|
+
if (item.component.property.editorClass !== 'ax/editors/check') {
|
|
10437
|
+
return item.title + ':';
|
|
10438
|
+
}
|
|
10439
|
+
}
|
|
10440
|
+
_handleShowValueSelected(item) {
|
|
10441
|
+
if (item.component.property.editorClass === 'ax/editors/check') {
|
|
10442
|
+
return item.title;
|
|
10443
|
+
}
|
|
10444
|
+
else {
|
|
10445
|
+
return item.textValue;
|
|
10446
|
+
}
|
|
10447
|
+
}
|
|
10428
10448
|
ngOnInit() { }
|
|
10449
|
+
handleTextValue(dataItem) {
|
|
10450
|
+
if (dataItem.value.length) {
|
|
10451
|
+
let text = '';
|
|
10452
|
+
dataItem.value.forEach((element, index) => {
|
|
10453
|
+
text +=
|
|
10454
|
+
index === dataItem.value.length - 1
|
|
10455
|
+
? element[dataItem.property.editorOptions.textField]
|
|
10456
|
+
: element[dataItem.property.editorOptions.textField] + ',';
|
|
10457
|
+
});
|
|
10458
|
+
return text;
|
|
10459
|
+
}
|
|
10460
|
+
else {
|
|
10461
|
+
return;
|
|
10462
|
+
}
|
|
10463
|
+
}
|
|
10429
10464
|
}
|
|
10430
10465
|
AXSearchBarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
10431
|
-
AXSearchBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXSearchBarComponent, selector: "ax-search-bar", inputs: { size: "size", disabled: "disabled", items: "items", rtl: "rtl" }, outputs: { onValueChange: "onValueChange", onSearchValue: "onSearchValue" }, viewQueries: [{ propertyName: "dropdown", first: true, predicate: ["dropdown"], descendants: true, static: true }, { propertyName: "_editors", predicate: AXPropertyEditorRendererDirective, descendants: true }], ngImport: i0, template: "<ax-drop-down [fitParent]=\"true\" [size]=\"size\" [showDropDownButton]=\"false\" icon=\"far fa-sliders-h\" #dropdown\r\n maxHeight=\"unset\">\r\n <ng-container start>\r\n <ng-content select=\"[start]\">\r\n </ng-content>\r\n </ng-container>\r\n <ng-container header>\r\n <div class=\"ax chips-container\">\r\n <div class=\"chips\" *ngFor=\"let item of _filterItems\">\r\n <span class=\"chips-text\">\r\n <b>{{item
|
|
10466
|
+
AXSearchBarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXSearchBarComponent, selector: "ax-search-bar", inputs: { size: "size", disabled: "disabled", items: "items", rtl: "rtl" }, outputs: { onValueChange: "onValueChange", onSearchValue: "onSearchValue" }, viewQueries: [{ propertyName: "dropdown", first: true, predicate: ["dropdown"], descendants: true, static: true }, { propertyName: "form", first: true, predicate: AXValidationFormComponent, descendants: true }, { propertyName: "_editors", predicate: AXPropertyEditorRendererDirective, descendants: true }], ngImport: i0, template: "<ax-drop-down [fitParent]=\"true\" [size]=\"size\" [showDropDownButton]=\"false\" icon=\"far fa-sliders-h\" #dropdown\r\n maxHeight=\"unset\">\r\n <ng-container start>\r\n <ng-content select=\"[start]\">\r\n </ng-content>\r\n </ng-container>\r\n <ng-container header>\r\n <div class=\"ax chips-container\">\r\n <div class=\"chips\" *ngFor=\"let item of _filterItems\">\r\n <span class=\"chips-text\" style=\"direction:rtl;\">\r\n <b>{{_handleShowTitleSelected(item)}}</b> {{_handleShowValueSelected(item)}}\r\n </span>\r\n <span class=\"close-icon\" (click)=\"handleItemRemoveClick(item)\">\r\n <i class=\"far fa-times close\"></i>\r\n </span>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container panel>\r\n <div class=\"panel-box\">\r\n <ax-validation-form #form>\r\n <div *ngFor=\"let item of _items\" class=\"row\">\r\n <div *ngFor=\"let prop of item.items\" class=\"{{renderCol(prop.property.col)}}\">\r\n <!-- <ax-form-group> -->\r\n <div *ngIf=\"prop.property.visible != false\">\r\n <ax-label>{{prop.property.title}}</ax-label>\r\n <ng-container ax-property-editor-renderer [validationForm]=\"form\" [property]=\"prop\"\r\n [context]=\"_context\" (onValueChange)=\"handleValueChange($event)\"></ng-container>\r\n </div>\r\n <!-- </ax-form-group> -->\r\n </div>\r\n </div>\r\n <div class=\"footer-button\">\r\n <ax-button (click)=\"search()\">{{'common.search' | trans}}</ax-button>\r\n <ax-button type=\"blank danger\" (click)=\"clear()\">{{'dataGrid.clearFilter' | trans}}</ax-button>\r\n </div>\r\n </ax-validation-form>\r\n </div>\r\n </ng-container>\r\n <ng-container end>\r\n <ax-button end icon=\"far fa-sliders-h icon\" type=\"light blank\" [disabled]=\"disabled\" [size]=\"size\"\r\n [tabIndex]=\"-1\" (click)=\"handleButtonClick()\">{{'common.search' | trans}}</ax-button>\r\n </ng-container>\r\n\r\n</ax-drop-down>", styles: [".ax.chips-container{height:100%}.panel-box{padding:1rem}.panel-box .footer-button{margin-top:1rem;display:flex;align-items:center;gap:.5rem}\n"], components: [{ type: AXDropdownComponent, selector: "ax-drop-down", inputs: ["rtl", "readonly", "loading"], outputs: ["dropdownToggle", "onButtonClick"] }, { type: AXValidationFormComponent, selector: "ax-validation-form", inputs: ["validateOn"], outputs: ["onInit"] }, { type: AXLabelComponent, selector: "ax-label", inputs: ["size"] }, { type: AXButtonComponent, selector: "ax-button", inputs: ["type", "icon", "submitBehavior", "cancelBehavior", "block", "loading", "selected"] }], directives: [{ type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: AXPropertyEditorRendererDirective, selector: "[ax-property-editor-renderer]", inputs: ["property", "validationForm", "context", "host", "groupId"], outputs: ["onValueChange"] }], pipes: { "trans": i1$2.AXTranslatorPipe } });
|
|
10432
10467
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarComponent, decorators: [{
|
|
10433
10468
|
type: Component,
|
|
10434
|
-
args: [{ selector: 'ax-search-bar', template: "<ax-drop-down [fitParent]=\"true\" [size]=\"size\" [showDropDownButton]=\"false\" icon=\"far fa-sliders-h\" #dropdown\r\n maxHeight=\"unset\">\r\n <ng-container start>\r\n <ng-content select=\"[start]\">\r\n </ng-content>\r\n </ng-container>\r\n <ng-container header>\r\n <div class=\"ax chips-container\">\r\n <div class=\"chips\" *ngFor=\"let item of _filterItems\">\r\n <span class=\"chips-text\">\r\n <b>{{item
|
|
10469
|
+
args: [{ selector: 'ax-search-bar', template: "<ax-drop-down [fitParent]=\"true\" [size]=\"size\" [showDropDownButton]=\"false\" icon=\"far fa-sliders-h\" #dropdown\r\n maxHeight=\"unset\">\r\n <ng-container start>\r\n <ng-content select=\"[start]\">\r\n </ng-content>\r\n </ng-container>\r\n <ng-container header>\r\n <div class=\"ax chips-container\">\r\n <div class=\"chips\" *ngFor=\"let item of _filterItems\">\r\n <span class=\"chips-text\" style=\"direction:rtl;\">\r\n <b>{{_handleShowTitleSelected(item)}}</b> {{_handleShowValueSelected(item)}}\r\n </span>\r\n <span class=\"close-icon\" (click)=\"handleItemRemoveClick(item)\">\r\n <i class=\"far fa-times close\"></i>\r\n </span>\r\n </div>\r\n </div>\r\n </ng-container>\r\n <ng-container panel>\r\n <div class=\"panel-box\">\r\n <ax-validation-form #form>\r\n <div *ngFor=\"let item of _items\" class=\"row\">\r\n <div *ngFor=\"let prop of item.items\" class=\"{{renderCol(prop.property.col)}}\">\r\n <!-- <ax-form-group> -->\r\n <div *ngIf=\"prop.property.visible != false\">\r\n <ax-label>{{prop.property.title}}</ax-label>\r\n <ng-container ax-property-editor-renderer [validationForm]=\"form\" [property]=\"prop\"\r\n [context]=\"_context\" (onValueChange)=\"handleValueChange($event)\"></ng-container>\r\n </div>\r\n <!-- </ax-form-group> -->\r\n </div>\r\n </div>\r\n <div class=\"footer-button\">\r\n <ax-button (click)=\"search()\">{{'common.search' | trans}}</ax-button>\r\n <ax-button type=\"blank danger\" (click)=\"clear()\">{{'dataGrid.clearFilter' | trans}}</ax-button>\r\n </div>\r\n </ax-validation-form>\r\n </div>\r\n </ng-container>\r\n <ng-container end>\r\n <ax-button end icon=\"far fa-sliders-h icon\" type=\"light blank\" [disabled]=\"disabled\" [size]=\"size\"\r\n [tabIndex]=\"-1\" (click)=\"handleButtonClick()\">{{'common.search' | trans}}</ax-button>\r\n </ng-container>\r\n\r\n</ax-drop-down>", styles: [".ax.chips-container{height:100%}.panel-box{padding:1rem}.panel-box .footer-button{margin-top:1rem;display:flex;align-items:center;gap:.5rem}\n"] }]
|
|
10435
10470
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { dropdown: [{
|
|
10436
10471
|
type: ViewChild,
|
|
10437
10472
|
args: ['dropdown', { static: true }]
|
|
10438
10473
|
}], _editors: [{
|
|
10439
10474
|
type: ViewChildren,
|
|
10440
10475
|
args: [AXPropertyEditorRendererDirective]
|
|
10476
|
+
}], form: [{
|
|
10477
|
+
type: ViewChild,
|
|
10478
|
+
args: [AXValidationFormComponent]
|
|
10441
10479
|
}], size: [{
|
|
10442
10480
|
type: Input
|
|
10443
10481
|
}], disabled: [{
|
|
@@ -11615,6 +11653,7 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
11615
11653
|
this.minValue = null;
|
|
11616
11654
|
this.maxValue = null;
|
|
11617
11655
|
this.clearButton = false;
|
|
11656
|
+
this.showCounter = true;
|
|
11618
11657
|
}
|
|
11619
11658
|
handleValueChange(e) {
|
|
11620
11659
|
super.handleValueChange(e.value);
|
|
@@ -11626,34 +11665,36 @@ class AXNumberBoxPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
11626
11665
|
}
|
|
11627
11666
|
AXNumberBoxPropertyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXNumberBoxPropertyEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
11628
11667
|
AXNumberBoxPropertyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXNumberBoxPropertyEditorComponent, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXNumberBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: `
|
|
11629
|
-
|
|
11630
|
-
|
|
11631
|
-
|
|
11632
|
-
|
|
11633
|
-
|
|
11634
|
-
|
|
11635
|
-
|
|
11636
|
-
|
|
11637
|
-
|
|
11638
|
-
|
|
11639
|
-
|
|
11640
|
-
|
|
11668
|
+
<ax-number-box
|
|
11669
|
+
(onValueChanged)="handleValueChange($event)"
|
|
11670
|
+
[value]="value"
|
|
11671
|
+
[showSeparator]="showSeparator"
|
|
11672
|
+
[decimalNumber]="decimalNumber"
|
|
11673
|
+
[min]="minValue"
|
|
11674
|
+
[max]="maxValue"
|
|
11675
|
+
[allowClear]="clearButton"
|
|
11676
|
+
[showCounter]="showCounter"
|
|
11677
|
+
>
|
|
11678
|
+
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
11679
|
+
</ax-number-box>
|
|
11680
|
+
`, isInline: true, components: [{ type: AXNumberBoxComponent, selector: "ax-number-box", inputs: ["min", "max", "showSeparator", "showCurrency", "showCounter", "scrollWeel", "showDoubleCounter", "maxLength", "intStep", "decimalNumber", "customStep"] }, { type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
|
|
11641
11681
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXNumberBoxPropertyEditorComponent, decorators: [{
|
|
11642
11682
|
type: Component,
|
|
11643
11683
|
args: [{
|
|
11644
11684
|
template: `
|
|
11645
|
-
|
|
11646
|
-
|
|
11647
|
-
|
|
11648
|
-
|
|
11649
|
-
|
|
11650
|
-
|
|
11651
|
-
|
|
11652
|
-
|
|
11653
|
-
|
|
11654
|
-
|
|
11655
|
-
|
|
11656
|
-
|
|
11685
|
+
<ax-number-box
|
|
11686
|
+
(onValueChanged)="handleValueChange($event)"
|
|
11687
|
+
[value]="value"
|
|
11688
|
+
[showSeparator]="showSeparator"
|
|
11689
|
+
[decimalNumber]="decimalNumber"
|
|
11690
|
+
[min]="minValue"
|
|
11691
|
+
[max]="maxValue"
|
|
11692
|
+
[allowClear]="clearButton"
|
|
11693
|
+
[showCounter]="showCounter"
|
|
11694
|
+
>
|
|
11695
|
+
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
11696
|
+
</ax-number-box>
|
|
11697
|
+
`
|
|
11657
11698
|
}]
|
|
11658
11699
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { textBox: [{
|
|
11659
11700
|
type: ViewChild,
|
|
@@ -11848,6 +11889,72 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11848
11889
|
}]
|
|
11849
11890
|
}], ctorParameters: function () { return []; } });
|
|
11850
11891
|
|
|
11892
|
+
class AXSearchBarSelectBoxEditorComponent extends AXProperyEditorComponent {
|
|
11893
|
+
constructor(cdr) {
|
|
11894
|
+
super(cdr);
|
|
11895
|
+
this.cdr = cdr;
|
|
11896
|
+
this.valueField = 'id';
|
|
11897
|
+
this.textField = 'text';
|
|
11898
|
+
this.mode = 'single';
|
|
11899
|
+
this.selectionDataMode = 'value';
|
|
11900
|
+
this.allowSearch = true;
|
|
11901
|
+
this.allowNull = true;
|
|
11902
|
+
this.disabled = false;
|
|
11903
|
+
this.items = [];
|
|
11904
|
+
this.remoteOperation = false;
|
|
11905
|
+
this.returnAllData = false;
|
|
11906
|
+
this.provideData = (e) => {
|
|
11907
|
+
return new Promise((resolve) => {
|
|
11908
|
+
const func = () => {
|
|
11909
|
+
if (Array.isArray(this.items)) {
|
|
11910
|
+
resolve(this.items.slice());
|
|
11911
|
+
}
|
|
11912
|
+
else if (typeof this.items === 'function') {
|
|
11913
|
+
const a = Object.assign(e, { sender: this });
|
|
11914
|
+
resolve(this.items(a));
|
|
11915
|
+
}
|
|
11916
|
+
else {
|
|
11917
|
+
resolve([]);
|
|
11918
|
+
}
|
|
11919
|
+
};
|
|
11920
|
+
const intVal = setInterval(() => {
|
|
11921
|
+
if (this.initiated) {
|
|
11922
|
+
func();
|
|
11923
|
+
clearInterval(intVal);
|
|
11924
|
+
}
|
|
11925
|
+
}, 50);
|
|
11926
|
+
});
|
|
11927
|
+
};
|
|
11928
|
+
}
|
|
11929
|
+
get filter() {
|
|
11930
|
+
return this._filter;
|
|
11931
|
+
}
|
|
11932
|
+
set filter(v) {
|
|
11933
|
+
var _a;
|
|
11934
|
+
this._filter = v;
|
|
11935
|
+
if (this.value && this.initiated) {
|
|
11936
|
+
this.value = null;
|
|
11937
|
+
(_a = this.selectBox) === null || _a === void 0 ? void 0 : _a.refresh();
|
|
11938
|
+
}
|
|
11939
|
+
}
|
|
11940
|
+
handleValueChange(e) {
|
|
11941
|
+
super.handleValueChange(e.selectedItems);
|
|
11942
|
+
}
|
|
11943
|
+
ngAfterViewInit() {
|
|
11944
|
+
this.registerForValidationForm(this.selectBox);
|
|
11945
|
+
this.onRenderCompleted.emit();
|
|
11946
|
+
}
|
|
11947
|
+
}
|
|
11948
|
+
AXSearchBarSelectBoxEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarSelectBoxEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
11949
|
+
AXSearchBarSelectBoxEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXSearchBarSelectBoxEditorComponent, selector: "ng-component", viewQueries: [{ propertyName: "selectBox", first: true, predicate: AXSelectBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-select-box [mode]=\"mode\" [textField]=\"textField\" [valueField]=\"valueField\" [remoteOperation]=\"remoteOperation\"\r\n [selectedItems]=\"value\" [allowSearch]=\"allowSearch\" [allowNull]=\"allowNull\" [readonly]=\"readonly\"\r\n [disabled]=\"disabled\" (selectionChanged)=\"handleValueChange($event)\">\r\n <ax-data-source [provideData]=\"provideData\">\r\n </ax-data-source>\r\n <ax-validation [rules]=\"validation?.rules\">\r\n </ax-validation>\r\n</ax-select-box>", components: [{ type: AXSelectBoxComponent, selector: "ax-select-box", inputs: ["showDropDownButton", "rowInputTemplate", "showCheckBox", "readonly", "rtl", "disabled", "placeholder", "size", "allowNull", "textAlign", "bufferSize", "remoteOperation", "dataSource", "validation", "disabledCallback", "allowSearch", "textField", "valueField", "disabledField", "mode", "items", "selectedItems", "selectedValues"], outputs: ["dropdownToggle", "itemsChange", "onBlur", "onFocus", "selectionChanged", "selectedItemsChange", "selectedValuesChange"] }, { type: AXDataSourceComponent, selector: "ax-data-source", inputs: ["provideData", "params"] }, { type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
|
|
11950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarSelectBoxEditorComponent, decorators: [{
|
|
11951
|
+
type: Component,
|
|
11952
|
+
args: [{ template: "<ax-select-box [mode]=\"mode\" [textField]=\"textField\" [valueField]=\"valueField\" [remoteOperation]=\"remoteOperation\"\r\n [selectedItems]=\"value\" [allowSearch]=\"allowSearch\" [allowNull]=\"allowNull\" [readonly]=\"readonly\"\r\n [disabled]=\"disabled\" (selectionChanged)=\"handleValueChange($event)\">\r\n <ax-data-source [provideData]=\"provideData\">\r\n </ax-data-source>\r\n <ax-validation [rules]=\"validation?.rules\">\r\n </ax-validation>\r\n</ax-select-box>" }]
|
|
11953
|
+
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { selectBox: [{
|
|
11954
|
+
type: ViewChild,
|
|
11955
|
+
args: [AXSelectBoxComponent, { static: false }]
|
|
11956
|
+
}] } });
|
|
11957
|
+
|
|
11851
11958
|
class AXSelectBoxPropertyEditorComponent extends AXProperyEditorComponent {
|
|
11852
11959
|
constructor(cdr) {
|
|
11853
11960
|
super(cdr);
|
|
@@ -11920,16 +12027,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
11920
12027
|
}] } });
|
|
11921
12028
|
|
|
11922
12029
|
class AXSelectBoxPropertyEditorModule {
|
|
11923
|
-
constructor() {
|
|
11924
|
-
}
|
|
12030
|
+
constructor() { }
|
|
11925
12031
|
}
|
|
11926
12032
|
AXSelectBoxPropertyEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectBoxPropertyEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
11927
|
-
AXSelectBoxPropertyEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectBoxPropertyEditorModule, declarations: [AXSelectBoxPropertyEditorComponent], imports: [CommonModule, FormsModule, AXSelectBoxModule, AXDataSourceModule, AXValidationModule], exports: [AXSelectBoxPropertyEditorComponent] });
|
|
12033
|
+
AXSelectBoxPropertyEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectBoxPropertyEditorModule, declarations: [AXSelectBoxPropertyEditorComponent, AXSearchBarSelectBoxEditorComponent], imports: [CommonModule, FormsModule, AXSelectBoxModule, AXDataSourceModule, AXValidationModule], exports: [AXSelectBoxPropertyEditorComponent] });
|
|
11928
12034
|
AXSelectBoxPropertyEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectBoxPropertyEditorModule, providers: [], imports: [[CommonModule, FormsModule, AXSelectBoxModule, AXDataSourceModule, AXValidationModule]] });
|
|
11929
12035
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectBoxPropertyEditorModule, decorators: [{
|
|
11930
12036
|
type: NgModule,
|
|
11931
12037
|
args: [{
|
|
11932
|
-
declarations: [AXSelectBoxPropertyEditorComponent],
|
|
12038
|
+
declarations: [AXSelectBoxPropertyEditorComponent, AXSearchBarSelectBoxEditorComponent],
|
|
11933
12039
|
imports: [CommonModule, FormsModule, AXSelectBoxModule, AXDataSourceModule, AXValidationModule],
|
|
11934
12040
|
exports: [AXSelectBoxPropertyEditorComponent],
|
|
11935
12041
|
providers: []
|
|
@@ -11949,6 +12055,7 @@ class AXSelectionListPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
11949
12055
|
this.direction = 'horizontal';
|
|
11950
12056
|
this.textField = null;
|
|
11951
12057
|
this.valueField = null;
|
|
12058
|
+
this.selectedItems = [];
|
|
11952
12059
|
}
|
|
11953
12060
|
handleValueChange(e) {
|
|
11954
12061
|
super.handleValueChange(e);
|
|
@@ -11960,42 +12067,38 @@ class AXSelectionListPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
11960
12067
|
}
|
|
11961
12068
|
AXSelectionListPropertyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectionListPropertyEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
11962
12069
|
AXSelectionListPropertyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXSelectionListPropertyEditorComponent, selector: "ng-component", viewQueries: [{ propertyName: "selectionList", first: true, predicate: AXSelectionListComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: `
|
|
11963
|
-
<ax-selection-list
|
|
11964
|
-
|
|
11965
|
-
|
|
11966
|
-
|
|
11967
|
-
|
|
11968
|
-
|
|
11969
|
-
|
|
11970
|
-
|
|
11971
|
-
|
|
11972
|
-
|
|
11973
|
-
[direction]="direction"
|
|
12070
|
+
<ax-selection-list
|
|
12071
|
+
[disabled]="disabled"
|
|
12072
|
+
[size]="size"
|
|
12073
|
+
[readonly]="readonly"
|
|
12074
|
+
[value]="value"
|
|
12075
|
+
[items]="items"
|
|
12076
|
+
[mode]="mode"
|
|
12077
|
+
(selectedItemsChange)="handleValueChange($event)"
|
|
12078
|
+
[direction]="direction"
|
|
12079
|
+
[(selectedItems)]="selectedItems"
|
|
11974
12080
|
>
|
|
11975
|
-
|
|
11976
|
-
</ax-validation>
|
|
12081
|
+
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
11977
12082
|
</ax-selection-list>
|
|
11978
|
-
|
|
12083
|
+
`, isInline: true, components: [{ type: AXSelectionListComponent, selector: "ax-selection-list", inputs: ["readonly", "value", "disabled", "size", "direction", "items", "mode", "textField", "valueField", "selectedItems", "selectedValues"], outputs: ["selectedItemsChange", "selectedValuesChange"] }, { type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
|
|
11979
12084
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSelectionListPropertyEditorComponent, decorators: [{
|
|
11980
12085
|
type: Component,
|
|
11981
12086
|
args: [{
|
|
11982
12087
|
template: `
|
|
11983
|
-
<ax-selection-list
|
|
11984
|
-
|
|
11985
|
-
|
|
11986
|
-
|
|
11987
|
-
|
|
11988
|
-
|
|
11989
|
-
|
|
11990
|
-
|
|
11991
|
-
|
|
11992
|
-
|
|
11993
|
-
[direction]="direction"
|
|
12088
|
+
<ax-selection-list
|
|
12089
|
+
[disabled]="disabled"
|
|
12090
|
+
[size]="size"
|
|
12091
|
+
[readonly]="readonly"
|
|
12092
|
+
[value]="value"
|
|
12093
|
+
[items]="items"
|
|
12094
|
+
[mode]="mode"
|
|
12095
|
+
(selectedItemsChange)="handleValueChange($event)"
|
|
12096
|
+
[direction]="direction"
|
|
12097
|
+
[(selectedItems)]="selectedItems"
|
|
11994
12098
|
>
|
|
11995
|
-
|
|
11996
|
-
</ax-validation>
|
|
12099
|
+
<ax-validation [rules]="validation?.rules"> </ax-validation>
|
|
11997
12100
|
</ax-selection-list>
|
|
11998
|
-
|
|
12101
|
+
`
|
|
11999
12102
|
}]
|
|
12000
12103
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { selectionList: [{
|
|
12001
12104
|
type: ViewChild,
|
|
@@ -12126,6 +12229,8 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
12126
12229
|
super(cdr);
|
|
12127
12230
|
this.cdr = cdr;
|
|
12128
12231
|
this.clearButton = false;
|
|
12232
|
+
this.maskGuid = false;
|
|
12233
|
+
this.showMask = true;
|
|
12129
12234
|
}
|
|
12130
12235
|
handleValueChange(e) {
|
|
12131
12236
|
super.handleValueChange(e.value);
|
|
@@ -12136,10 +12241,10 @@ class AXTextPropertyEditorComponent extends AXProperyEditorComponent {
|
|
|
12136
12241
|
}
|
|
12137
12242
|
}
|
|
12138
12243
|
AXTextPropertyEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXTextPropertyEditorComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
12139
|
-
AXTextPropertyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXTextPropertyEditorComponent, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"
|
|
12244
|
+
AXTextPropertyEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: AXTextPropertyEditorComponent, selector: "ng-component", viewQueries: [{ propertyName: "textBox", first: true, predicate: AXTextBoxComponent, descendants: true }], usesInheritance: true, ngImport: i0, template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"\r\n [allowClear]=\"clearButton\" [mask]=\"mask\" [maskGuid]=\"maskGuid\" [showMask]=\"showMask\">\r\n <ax-validation [rules]=\"validation?.rules\">\r\n </ax-validation>\r\n</ax-text-box>", components: [{ type: AXTextBoxComponent, selector: "ax-text-box", inputs: ["mask", "type", "showMask", "maxLength", "maskGuid", "maskPlaceholder", "maskKeepCharPositions"] }, { type: AXValidationComponent, selector: "ax-validation", inputs: ["rules", "validateOn"], outputs: ["rulesChange", "showMessage"] }] });
|
|
12140
12245
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXTextPropertyEditorComponent, decorators: [{
|
|
12141
12246
|
type: Component,
|
|
12142
|
-
args: [{ template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"
|
|
12247
|
+
args: [{ template: "<ax-text-box (onValueChanged)=\"handleValueChange($event)\" [value]=\"value\" [readonly]=\"readonly\"\r\n [allowClear]=\"clearButton\" [mask]=\"mask\" [maskGuid]=\"maskGuid\" [showMask]=\"showMask\">\r\n <ax-validation [rules]=\"validation?.rules\">\r\n </ax-validation>\r\n</ax-text-box>" }]
|
|
12143
12248
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { textBox: [{
|
|
12144
12249
|
type: ViewChild,
|
|
12145
12250
|
args: [AXTextBoxComponent]
|
|
@@ -13304,6 +13409,10 @@ AXProppertyEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
13304
13409
|
component: AXSelectBoxPropertyEditorComponent,
|
|
13305
13410
|
path: 'ax/editors/select'
|
|
13306
13411
|
},
|
|
13412
|
+
{
|
|
13413
|
+
component: AXSearchBarSelectBoxEditorComponent,
|
|
13414
|
+
path: 'ax/editors/selectBox'
|
|
13415
|
+
},
|
|
13307
13416
|
{
|
|
13308
13417
|
component: AXNumberBoxPropertyEditorComponent,
|
|
13309
13418
|
path: 'ax/editors/number'
|
|
@@ -13327,14 +13436,15 @@ AXProppertyEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0",
|
|
|
13327
13436
|
{
|
|
13328
13437
|
component: ColumnPropertyEditorComponent,
|
|
13329
13438
|
path: 'ax/editors/column'
|
|
13330
|
-
},
|
|
13439
|
+
},
|
|
13440
|
+
{
|
|
13331
13441
|
component: AXDatePropertyEditorComponent,
|
|
13332
13442
|
path: 'ax/editors/date'
|
|
13333
13443
|
},
|
|
13334
13444
|
{
|
|
13335
13445
|
component: AXTimePropertyEditorComponent,
|
|
13336
13446
|
path: 'ax/editors/time'
|
|
13337
|
-
}
|
|
13447
|
+
}
|
|
13338
13448
|
])
|
|
13339
13449
|
]] });
|
|
13340
13450
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXProppertyEditorModule, decorators: [{
|
|
@@ -13363,6 +13473,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
13363
13473
|
component: AXSelectBoxPropertyEditorComponent,
|
|
13364
13474
|
path: 'ax/editors/select'
|
|
13365
13475
|
},
|
|
13476
|
+
{
|
|
13477
|
+
component: AXSearchBarSelectBoxEditorComponent,
|
|
13478
|
+
path: 'ax/editors/selectBox'
|
|
13479
|
+
},
|
|
13366
13480
|
{
|
|
13367
13481
|
component: AXNumberBoxPropertyEditorComponent,
|
|
13368
13482
|
path: 'ax/editors/number'
|
|
@@ -13386,32 +13500,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
|
|
|
13386
13500
|
{
|
|
13387
13501
|
component: ColumnPropertyEditorComponent,
|
|
13388
13502
|
path: 'ax/editors/column'
|
|
13389
|
-
},
|
|
13503
|
+
},
|
|
13504
|
+
{
|
|
13390
13505
|
component: AXDatePropertyEditorComponent,
|
|
13391
13506
|
path: 'ax/editors/date'
|
|
13392
13507
|
},
|
|
13393
13508
|
{
|
|
13394
13509
|
component: AXTimePropertyEditorComponent,
|
|
13395
13510
|
path: 'ax/editors/time'
|
|
13396
|
-
}
|
|
13511
|
+
}
|
|
13397
13512
|
])
|
|
13398
13513
|
],
|
|
13399
13514
|
exports: [AXPropertyEditorRendererDirective],
|
|
13400
13515
|
declarations: [AXPropertyEditorRendererDirective],
|
|
13401
|
-
providers: []
|
|
13516
|
+
providers: []
|
|
13402
13517
|
}]
|
|
13403
13518
|
}] });
|
|
13404
13519
|
|
|
13405
13520
|
class AXSearchBarModule {
|
|
13406
13521
|
}
|
|
13407
13522
|
AXSearchBarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
13408
|
-
AXSearchBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, declarations: [AXSearchBarComponent], imports: [CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule], exports: [AXSearchBarComponent] });
|
|
13409
|
-
AXSearchBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, providers: [], imports: [[CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule]] });
|
|
13523
|
+
AXSearchBarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, declarations: [AXSearchBarComponent], imports: [CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule, AXValidationModule], exports: [AXSearchBarComponent] });
|
|
13524
|
+
AXSearchBarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, providers: [], imports: [[CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule, AXValidationModule]] });
|
|
13410
13525
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: AXSearchBarModule, decorators: [{
|
|
13411
13526
|
type: NgModule,
|
|
13412
13527
|
args: [{
|
|
13413
13528
|
declarations: [AXSearchBarComponent],
|
|
13414
|
-
imports: [CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule],
|
|
13529
|
+
imports: [CommonModule, FormsModule, AXDropdownModule, AXButtonModule, AXTextBoxModule, AXProppertyEditorModule, AXFormGroupModule, AXLabelModule, AXTranslatorModule, AXValidationModule],
|
|
13415
13530
|
exports: [AXSearchBarComponent],
|
|
13416
13531
|
providers: [],
|
|
13417
13532
|
}]
|