@acorex/components 5.1.1 → 5.1.2
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/base/mixin/base-menu-mixin.class.mjs +135 -0
- package/esm2020/lib/base/mixin/mixin.class.mjs +4 -3
- package/esm2020/lib/calendar/calendar.component.mjs +9 -3
- package/esm2020/lib/datepicker/datepicker.component.mjs +6 -6
- package/esm2020/lib/menu/menu.component.mjs +39 -27
- package/esm2020/lib/menu/menu.module.mjs +6 -4
- package/esm2020/lib/tabs/tab-item.component.mjs +7 -4
- package/esm2020/lib/tabs/tabs.component.mjs +4 -3
- package/fesm2015/acorex-components.mjs +193 -43
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +191 -41
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/base/mixin/base-menu-mixin.class.d.ts +51 -0
- package/lib/base/mixin/datalist-component.class.d.ts +8 -8
- package/lib/base/mixin/interactive-mixin.class.d.ts +2 -2
- package/lib/base/mixin/mixin.class.d.ts +72 -26
- package/lib/base/mixin/value-mixin.class.d.ts +8 -8
- package/lib/button/button-item.component.d.ts +2 -2
- package/lib/datepicker/datepicker.component.d.ts +11 -10
- package/lib/menu/menu.component.d.ts +9 -12
- package/lib/menu/menu.module.d.ts +3 -1
- package/lib/tabs/tab-item.component.d.ts +1 -1
- package/lib/tabs/tabs.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -128,6 +128,139 @@ const BASE_OUTPUT = [];
|
|
|
128
128
|
|
|
129
129
|
;
|
|
130
130
|
|
|
131
|
+
function _BaseMenuComponentMixin(Base) {
|
|
132
|
+
var _isLoading, _loadedItems, _items, _a;
|
|
133
|
+
return _a = class extends Base {
|
|
134
|
+
constructor(...args) {
|
|
135
|
+
super(...args);
|
|
136
|
+
this.textField = 'text';
|
|
137
|
+
this.valueField = 'id';
|
|
138
|
+
_isLoading.set(this, false);
|
|
139
|
+
_loadedItems.set(this, []);
|
|
140
|
+
this.visible = 'visible';
|
|
141
|
+
this.openMode = 'click';
|
|
142
|
+
this.onMenuItemClick = new EventEmitter();
|
|
143
|
+
_items.set(this, []);
|
|
144
|
+
}
|
|
145
|
+
get loadedCount() {
|
|
146
|
+
var _b;
|
|
147
|
+
return ((_b = __classPrivateFieldGet(this, _loadedItems, "f")) === null || _b === void 0 ? void 0 : _b.length) || 0;
|
|
148
|
+
}
|
|
149
|
+
get items() {
|
|
150
|
+
return __classPrivateFieldGet(this, _items, "f");
|
|
151
|
+
}
|
|
152
|
+
set items(v) {
|
|
153
|
+
if (Array.isArray(v)) {
|
|
154
|
+
__classPrivateFieldSet(this, _items, this._formatData(v), "f");
|
|
155
|
+
}
|
|
156
|
+
else if (typeof v === 'function') {
|
|
157
|
+
__classPrivateFieldSet(this, _items, v, "f");
|
|
158
|
+
}
|
|
159
|
+
else {
|
|
160
|
+
__classPrivateFieldSet(this, _items, [], "f");
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
get displayItems() {
|
|
164
|
+
if (Array.isArray(this.items)) {
|
|
165
|
+
return __classPrivateFieldGet(this, _items, "f") || [];
|
|
166
|
+
}
|
|
167
|
+
else if (typeof __classPrivateFieldGet(this, _items, "f") == 'function') {
|
|
168
|
+
return __classPrivateFieldGet(this, _loadedItems, "f") || [];
|
|
169
|
+
}
|
|
170
|
+
return [];
|
|
171
|
+
}
|
|
172
|
+
get isLoading() {
|
|
173
|
+
return __classPrivateFieldGet(this, _isLoading, "f");
|
|
174
|
+
}
|
|
175
|
+
_formatData(v) {
|
|
176
|
+
return _.unionBy(v.map((o, i) => {
|
|
177
|
+
if (typeof o == 'object')
|
|
178
|
+
return o;
|
|
179
|
+
else {
|
|
180
|
+
const no = {};
|
|
181
|
+
no[Array.isArray(this.textField) ? this.textField[0] : this.textField] = o;
|
|
182
|
+
return no;
|
|
183
|
+
}
|
|
184
|
+
}));
|
|
185
|
+
}
|
|
186
|
+
_findNode(parentId, _children, source) {
|
|
187
|
+
if (source.length > 0) {
|
|
188
|
+
source.forEach((element) => {
|
|
189
|
+
if (element.id == parentId) {
|
|
190
|
+
element.children = _children;
|
|
191
|
+
}
|
|
192
|
+
else {
|
|
193
|
+
if (element === null || element === void 0 ? void 0 : element.children)
|
|
194
|
+
this._findNode(parentId, _children, element.children);
|
|
195
|
+
}
|
|
196
|
+
});
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
_fetchData(parentId) {
|
|
200
|
+
if (__classPrivateFieldGet(this, _isLoading, "f")) {
|
|
201
|
+
return;
|
|
202
|
+
}
|
|
203
|
+
if (__classPrivateFieldGet(this, _items, "f")) {
|
|
204
|
+
__classPrivateFieldSet(this, _isLoading, true, "f");
|
|
205
|
+
setTimeout(() => {
|
|
206
|
+
__classPrivateFieldGet(this, _items, "f").call(this, { parentId: parentId })
|
|
207
|
+
.then((c) => {
|
|
208
|
+
if (Array.isArray(c)) {
|
|
209
|
+
if (parentId) {
|
|
210
|
+
this._findNode(parentId, c, this.displayItems);
|
|
211
|
+
}
|
|
212
|
+
else {
|
|
213
|
+
__classPrivateFieldSet(this, _loadedItems, c, "f");
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
this._cdr.markForCheck();
|
|
217
|
+
})
|
|
218
|
+
.finally(() => {
|
|
219
|
+
__classPrivateFieldSet(this, _isLoading, false, "f");
|
|
220
|
+
});
|
|
221
|
+
}, 1000);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
_onInternalInit() {
|
|
225
|
+
if (typeof __classPrivateFieldGet(this, _items, "f") == 'function') {
|
|
226
|
+
this._fetchData();
|
|
227
|
+
}
|
|
228
|
+
super._onInternalInit();
|
|
229
|
+
}
|
|
230
|
+
_getItemDisplayTextTemplte(item) {
|
|
231
|
+
if (item)
|
|
232
|
+
return Array.isArray(this.textField)
|
|
233
|
+
? this.textField.map((c) => item[c]).join(',')
|
|
234
|
+
: item[this.textField];
|
|
235
|
+
else
|
|
236
|
+
return 'Loading...';
|
|
237
|
+
}
|
|
238
|
+
_trackLoaded(index, item) {
|
|
239
|
+
return item[this.textField];
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
_isLoading = new WeakMap(),
|
|
243
|
+
_loadedItems = new WeakMap(),
|
|
244
|
+
_items = new WeakMap(),
|
|
245
|
+
_a;
|
|
246
|
+
}
|
|
247
|
+
const BASEMENU_INPUTS = [
|
|
248
|
+
'textField',
|
|
249
|
+
'valueField',
|
|
250
|
+
'items',
|
|
251
|
+
'id',
|
|
252
|
+
'parentId',
|
|
253
|
+
'icon',
|
|
254
|
+
'tooltip',
|
|
255
|
+
'isOpen',
|
|
256
|
+
'isActive',
|
|
257
|
+
'visible',
|
|
258
|
+
'disableField',
|
|
259
|
+
'hasChildField',
|
|
260
|
+
'openMode',
|
|
261
|
+
];
|
|
262
|
+
const BASEMENU_OUTPUT = ['onMenuItemClick'];
|
|
263
|
+
|
|
131
264
|
function _ButtonComponentMixin(Base) {
|
|
132
265
|
return class extends Base {
|
|
133
266
|
constructor(...args) {
|
|
@@ -1058,8 +1191,8 @@ const AXBaseSelectionValueMixin = _SizableComponenetMixin(_InteractiveComponenet
|
|
|
1058
1191
|
const AXBaseValueDropdownMixin = _InteractiveComponenetMixin(_DropdownComponenetMixin(_DatalistComponenetMixin(_ValueComponenetMixin(AXBaseComponent))));
|
|
1059
1192
|
const AXBaseSelectionDropdownMixin = _DropdownComponenetMixin(AXBaseSelectionValueMixin);
|
|
1060
1193
|
const AXBaseDropdownMixin = _SizableComponenetMixin(_InteractiveComponenetMixin(_DropdownComponenetMixin(AXBaseComponent)));
|
|
1061
|
-
const
|
|
1062
|
-
const AXAvatarMixin =
|
|
1194
|
+
const AXBaseMenuMixin = _InteractiveComponenetMixin(_BaseMenuComponentMixin(AXBaseComponent));
|
|
1195
|
+
const AXAvatarMixin = _ColorLookComponentMixin(AXBaseComponent);
|
|
1063
1196
|
|
|
1064
1197
|
/**
|
|
1065
1198
|
* Contains native event
|
|
@@ -2695,7 +2828,8 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2695
2828
|
}
|
|
2696
2829
|
onInit() {
|
|
2697
2830
|
this._initValues();
|
|
2698
|
-
this.
|
|
2831
|
+
if (!this.value)
|
|
2832
|
+
this.goToday();
|
|
2699
2833
|
}
|
|
2700
2834
|
_genearteSlots() {
|
|
2701
2835
|
if (!this._viewStartDate)
|
|
@@ -2854,8 +2988,9 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2854
2988
|
this._navNextPrev(true);
|
|
2855
2989
|
}
|
|
2856
2990
|
focus() {
|
|
2857
|
-
|
|
2858
|
-
|
|
2991
|
+
const func = (s) => this._getHostElement().querySelector(s);
|
|
2992
|
+
const div = func('.ax-calendar-slots>div.ax-state-selected') || func('.ax-calendar-slots>div');
|
|
2993
|
+
div === null || div === void 0 ? void 0 : div.focus();
|
|
2859
2994
|
}
|
|
2860
2995
|
_navNextPrev(prev) {
|
|
2861
2996
|
const sign = (prev ? -1 : 1);
|
|
@@ -2881,6 +3016,9 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2881
3016
|
htmlElement: this._getHostElement()
|
|
2882
3017
|
});
|
|
2883
3018
|
this._genearteSlots();
|
|
3019
|
+
setTimeout(() => {
|
|
3020
|
+
this.focus();
|
|
3021
|
+
}, 50);
|
|
2884
3022
|
}
|
|
2885
3023
|
get __hostClass() {
|
|
2886
3024
|
const _classes = {
|
|
@@ -4507,13 +4645,13 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4507
4645
|
}
|
|
4508
4646
|
onInit() {
|
|
4509
4647
|
this._popoverTitle = this.placeholder || AXTranslator.get('datepicker.popover.title');
|
|
4510
|
-
this.popover.onOpened.subscribe(() => {
|
|
4511
|
-
this._calendar.focus();
|
|
4512
|
-
});
|
|
4513
4648
|
}
|
|
4514
4649
|
_updateDisplayText() {
|
|
4515
4650
|
this.displayText = this.value ? AXDateTime.convert(this.value, this.type).format(this._format) : null;
|
|
4516
4651
|
}
|
|
4652
|
+
_handlePopoverOpened(e) {
|
|
4653
|
+
this._calendar.navTo(this.value || new AXDateTime(new Date(), this.type));
|
|
4654
|
+
}
|
|
4517
4655
|
_handleArrowClickEvent(e) {
|
|
4518
4656
|
this.toggle();
|
|
4519
4657
|
}
|
|
@@ -4628,10 +4766,10 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4628
4766
|
}
|
|
4629
4767
|
}
|
|
4630
4768
|
AXDatePickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDatePickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i1$3.AXPlatform }], target: i0.ɵɵFactoryTarget.Component });
|
|
4631
|
-
AXDatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXDatePickerComponent, selector: "ax-date-picker", inputs: { isOpen: "isOpen", fitParent: "fitParent", dropdownWidth: "dropdownWidth", position: "position", disabled: "disabled", tabIndex: "tabIndex", readonly: "readonly", allowNull: "allowNull", value: "value", debounceTime: "debounceTime", name: "name", checked: "checked", placeholder: "placeholder", maxLength: "maxLength", type: "type", depth: "depth", activeView: "activeView", min: "min", max: "max", disabledDates: "disabledDates", holidayDates: "holidayDates", format: "format" }, outputs: { onOpened: "onOpened", onClosed: "onClosed", onBlur: "onBlur", onFocus: "onFocus", valueChange: "valueChange", onValueChanged: "onValueChanged", depthChange: "depthChange", typeChange: "typeChange", disabledDatesChange: "disabledDatesChange", holidayDatesChange: "holidayDatesChange", onNavigate: "onNavigate", formatChange: "formatChange" }, host: { classAttribute: "ax-editor-container ax-drop-down" }, viewQueries: [{ propertyName: "popover", first: true, predicate: AXPopoverComponent, descendants: true, static: true }, { propertyName: "_calendar", first: true, predicate: AXCalendarComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-content select=\"ax-prefix\">\r\n</ng-content>\r\n<div class=\"ax-dropdown-content\">\r\n <input class=\"ax-input\" type=\"text\" [attr.placeholder]=\"placeholder\" [class.ax-state-disabled]=\"disabled\"\r\n [class.ax-state-readonly]=\"readonly\" [disabled]=\"disabled\" [readonly]=\"readonly\" [tabindex]=\"tabIndex\"\r\n [ngModel]=\"displayText\" (focus)=\"_emitOnFocusEvent($event)\" (mouseup)=\"_handleOnInputClickEvent($event)\"\r\n (blur)=\"_emitOnBlurEvent($event)\" (keydown)=\"_handleOnKeydownEvent($event)\">\r\n</div>\r\n<ax-button [disabled]=\"disabled\" [tabIndex]=\"-1\" color=\"light\" look=\"blank\" (onClick)=\"_handleArrowClickEvent($event)\">\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n</ax-button>\r\n<ng-content select=\"ax-suffix\">\r\n</ng-content>\r\n<ng-content select=\"ax-validation-rule\">\r\n</ng-content>\r\n<ng-content select=\"ax-calendar-options\">\r\n\r\n</ng-content>\r\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\">\r\n <div class=\"ax-overlay-pane ax-w-80\">\r\n <div *ngIf=\"_isMobile\" class=\"ax-overlay-pane-header\">\r\n <span >{{placeholder || 'Choose a date'}}</span>\r\n <i class=\"ax-ic ax-ic-close \"\r\n (click)=\"close()\" tabindex=\"1\"></i>\r\n </div>\r\n <ax-calendar #calendar [disabled]=\"disabled\" [readonly]=\"readonly\" \r\n [(value)]=\"value\" \r\n [min]=\"min\" \r\n [max]=\"max\"\r\n [disabledDates]=\"disabledDates\" \r\n [holidayDates]=\"holidayDates\" \r\n [depth]=\"depth\" \r\n (onNavigate)=\"_handleOnNavigate($event)\"\r\n [type]=\"type\">\r\n </ax-calendar>\r\n </div>\r\n</ax-popover>", components: [{ type: AXButtonComponent, selector: "ax-button", inputs: ["disabled", "tabIndex", "size", "color", "look", "text", "submitBehavior", "cancelBehavior", "toggleable", "selected"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange"] }, { type: AXIconComponent, selector: "ax-icon", inputs: ["icon"] }, { type: AXPopoverComponent, selector: "ax-popover", inputs: ["target", "position", "openTrigger", "closeTrigger", "hasBackdrop", "backdropClass"], outputs: ["onOpened", "onClosed"] }, { type: AXCalendarComponent, selector: "ax-calendar", inputs: ["readonly", "allowNull", "value", "debounceTime", "name", "checked", "disabled", "tabIndex", "depth", "activeView", "min", "max", "disabledDates", "type", "holidayDates"], outputs: ["valueChange", "onValueChanged", "onBlur", "onFocus", "depthChange", "typeChange", "disabledDatesChange", "holidayDatesChange", "onNavigate"] }], directives: [{ type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4769
|
+
AXDatePickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXDatePickerComponent, selector: "ax-date-picker", inputs: { isOpen: "isOpen", fitParent: "fitParent", dropdownWidth: "dropdownWidth", position: "position", disabled: "disabled", tabIndex: "tabIndex", readonly: "readonly", allowNull: "allowNull", value: "value", debounceTime: "debounceTime", name: "name", checked: "checked", placeholder: "placeholder", maxLength: "maxLength", type: "type", depth: "depth", activeView: "activeView", min: "min", max: "max", disabledDates: "disabledDates", holidayDates: "holidayDates", format: "format" }, outputs: { onOpened: "onOpened", onClosed: "onClosed", onBlur: "onBlur", onFocus: "onFocus", valueChange: "valueChange", onValueChanged: "onValueChanged", depthChange: "depthChange", typeChange: "typeChange", disabledDatesChange: "disabledDatesChange", holidayDatesChange: "holidayDatesChange", onNavigate: "onNavigate", formatChange: "formatChange" }, host: { classAttribute: "ax-editor-container ax-drop-down" }, viewQueries: [{ propertyName: "popover", first: true, predicate: AXPopoverComponent, descendants: true, static: true }, { propertyName: "_calendar", first: true, predicate: AXCalendarComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-content select=\"ax-prefix\">\r\n</ng-content>\r\n<div class=\"ax-dropdown-content\">\r\n <input class=\"ax-input\" type=\"text\" [attr.placeholder]=\"placeholder\" [class.ax-state-disabled]=\"disabled\"\r\n [class.ax-state-readonly]=\"readonly\" [disabled]=\"disabled\" [readonly]=\"readonly\" [tabindex]=\"tabIndex\"\r\n [ngModel]=\"displayText\" (focus)=\"_emitOnFocusEvent($event)\" (mouseup)=\"_handleOnInputClickEvent($event)\"\r\n (blur)=\"_emitOnBlurEvent($event)\" (keydown)=\"_handleOnKeydownEvent($event)\">\r\n</div>\r\n<ax-button [disabled]=\"disabled\" [tabIndex]=\"-1\" color=\"light\" look=\"blank\" (onClick)=\"_handleArrowClickEvent($event)\">\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n</ax-button>\r\n<ng-content select=\"ax-suffix\">\r\n</ng-content>\r\n<ng-content select=\"ax-validation-rule\">\r\n</ng-content>\r\n<ng-content select=\"ax-calendar-options\">\r\n\r\n</ng-content>\r\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\" (onOpened)=\"_handlePopoverOpened($event)\">\r\n <div class=\"ax-overlay-pane ax-w-80\">\r\n <div *ngIf=\"_isMobile\" class=\"ax-overlay-pane-header\">\r\n <span >{{placeholder || 'Choose a date'}}</span>\r\n <i class=\"ax-ic ax-ic-close \"\r\n (click)=\"close()\" tabindex=\"1\"></i>\r\n </div>\r\n <ax-calendar #calendar [disabled]=\"disabled\" [readonly]=\"readonly\" \r\n [(value)]=\"value\" \r\n [min]=\"min\" \r\n [max]=\"max\"\r\n [disabledDates]=\"disabledDates\" \r\n [holidayDates]=\"holidayDates\" \r\n [depth]=\"depth\" \r\n (onNavigate)=\"_handleOnNavigate($event)\"\r\n [type]=\"type\">\r\n </ax-calendar>\r\n </div>\r\n</ax-popover>", components: [{ type: AXButtonComponent, selector: "ax-button", inputs: ["disabled", "tabIndex", "size", "color", "look", "text", "submitBehavior", "cancelBehavior", "toggleable", "selected"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange"] }, { type: AXIconComponent, selector: "ax-icon", inputs: ["icon"] }, { type: AXPopoverComponent, selector: "ax-popover", inputs: ["target", "position", "openTrigger", "closeTrigger", "hasBackdrop", "backdropClass"], outputs: ["onOpened", "onClosed"] }, { type: AXCalendarComponent, selector: "ax-calendar", inputs: ["readonly", "allowNull", "value", "debounceTime", "name", "checked", "disabled", "tabIndex", "depth", "activeView", "min", "max", "disabledDates", "type", "holidayDates"], outputs: ["valueChange", "onValueChanged", "onBlur", "onFocus", "depthChange", "typeChange", "disabledDatesChange", "holidayDatesChange", "onNavigate"] }], directives: [{ type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4632
4770
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDatePickerComponent, decorators: [{
|
|
4633
4771
|
type: Component,
|
|
4634
|
-
args: [{ selector: 'ax-date-picker', inputs: [...DROPDOWN_INPUTS, ...INTERACTIVE_INPUTS, ...VALUE_INPUTS, ...TEXTBOX_INPUTS, ...CALENDAR_INPUTS], outputs: [...DROPDOWN_OUTPUT, ...INTERACTIVE_OUTPUT, ...VALUE_OUTPUT, ...TEXTBOX_OUTPUT, ...CALENDAR_OUTPUTS], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class: 'ax-editor-container ax-drop-down' }, template: "<ng-content select=\"ax-prefix\">\r\n</ng-content>\r\n<div class=\"ax-dropdown-content\">\r\n <input class=\"ax-input\" type=\"text\" [attr.placeholder]=\"placeholder\" [class.ax-state-disabled]=\"disabled\"\r\n [class.ax-state-readonly]=\"readonly\" [disabled]=\"disabled\" [readonly]=\"readonly\" [tabindex]=\"tabIndex\"\r\n [ngModel]=\"displayText\" (focus)=\"_emitOnFocusEvent($event)\" (mouseup)=\"_handleOnInputClickEvent($event)\"\r\n (blur)=\"_emitOnBlurEvent($event)\" (keydown)=\"_handleOnKeydownEvent($event)\">\r\n</div>\r\n<ax-button [disabled]=\"disabled\" [tabIndex]=\"-1\" color=\"light\" look=\"blank\" (onClick)=\"_handleArrowClickEvent($event)\">\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n</ax-button>\r\n<ng-content select=\"ax-suffix\">\r\n</ng-content>\r\n<ng-content select=\"ax-validation-rule\">\r\n</ng-content>\r\n<ng-content select=\"ax-calendar-options\">\r\n\r\n</ng-content>\r\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\">\r\n <div class=\"ax-overlay-pane ax-w-80\">\r\n <div *ngIf=\"_isMobile\" class=\"ax-overlay-pane-header\">\r\n <span >{{placeholder || 'Choose a date'}}</span>\r\n <i class=\"ax-ic ax-ic-close \"\r\n (click)=\"close()\" tabindex=\"1\"></i>\r\n </div>\r\n <ax-calendar #calendar [disabled]=\"disabled\" [readonly]=\"readonly\" \r\n [(value)]=\"value\" \r\n [min]=\"min\" \r\n [max]=\"max\"\r\n [disabledDates]=\"disabledDates\" \r\n [holidayDates]=\"holidayDates\" \r\n [depth]=\"depth\" \r\n (onNavigate)=\"_handleOnNavigate($event)\"\r\n [type]=\"type\">\r\n </ax-calendar>\r\n </div>\r\n</ax-popover>" }]
|
|
4772
|
+
args: [{ selector: 'ax-date-picker', inputs: [...DROPDOWN_INPUTS, ...INTERACTIVE_INPUTS, ...VALUE_INPUTS, ...TEXTBOX_INPUTS, ...CALENDAR_INPUTS], outputs: [...DROPDOWN_OUTPUT, ...INTERACTIVE_OUTPUT, ...VALUE_OUTPUT, ...TEXTBOX_OUTPUT, ...CALENDAR_OUTPUTS], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class: 'ax-editor-container ax-drop-down' }, template: "<ng-content select=\"ax-prefix\">\r\n</ng-content>\r\n<div class=\"ax-dropdown-content\">\r\n <input class=\"ax-input\" type=\"text\" [attr.placeholder]=\"placeholder\" [class.ax-state-disabled]=\"disabled\"\r\n [class.ax-state-readonly]=\"readonly\" [disabled]=\"disabled\" [readonly]=\"readonly\" [tabindex]=\"tabIndex\"\r\n [ngModel]=\"displayText\" (focus)=\"_emitOnFocusEvent($event)\" (mouseup)=\"_handleOnInputClickEvent($event)\"\r\n (blur)=\"_emitOnBlurEvent($event)\" (keydown)=\"_handleOnKeydownEvent($event)\">\r\n</div>\r\n<ax-button [disabled]=\"disabled\" [tabIndex]=\"-1\" color=\"light\" look=\"blank\" (onClick)=\"_handleArrowClickEvent($event)\">\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n</ax-button>\r\n<ng-content select=\"ax-suffix\">\r\n</ng-content>\r\n<ng-content select=\"ax-validation-rule\">\r\n</ng-content>\r\n<ng-content select=\"ax-calendar-options\">\r\n\r\n</ng-content>\r\n<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\" (onOpened)=\"_handlePopoverOpened($event)\">\r\n <div class=\"ax-overlay-pane ax-w-80\">\r\n <div *ngIf=\"_isMobile\" class=\"ax-overlay-pane-header\">\r\n <span >{{placeholder || 'Choose a date'}}</span>\r\n <i class=\"ax-ic ax-ic-close \"\r\n (click)=\"close()\" tabindex=\"1\"></i>\r\n </div>\r\n <ax-calendar #calendar [disabled]=\"disabled\" [readonly]=\"readonly\" \r\n [(value)]=\"value\" \r\n [min]=\"min\" \r\n [max]=\"max\"\r\n [disabledDates]=\"disabledDates\" \r\n [holidayDates]=\"holidayDates\" \r\n [depth]=\"depth\" \r\n (onNavigate)=\"_handleOnNavigate($event)\"\r\n [type]=\"type\">\r\n </ax-calendar>\r\n </div>\r\n</ax-popover>" }]
|
|
4635
4773
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.AXPlatform }]; }, propDecorators: { popover: [{
|
|
4636
4774
|
type: ViewChild,
|
|
4637
4775
|
args: [AXPopoverComponent, { static: true }]
|
|
@@ -5442,30 +5580,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
5442
5580
|
*
|
|
5443
5581
|
* @category Components
|
|
5444
5582
|
*/
|
|
5445
|
-
class AXMenuComponent extends
|
|
5446
|
-
/**
|
|
5447
|
-
* @ignore
|
|
5448
|
-
*/
|
|
5583
|
+
class AXMenuComponent extends AXBaseMenuMixin {
|
|
5449
5584
|
constructor(elementRef, cdr) {
|
|
5450
5585
|
super(elementRef, cdr);
|
|
5451
5586
|
this.elementRef = elementRef;
|
|
5452
5587
|
this.cdr = cdr;
|
|
5453
|
-
|
|
5454
|
-
|
|
5588
|
+
}
|
|
5589
|
+
onInit() {
|
|
5590
|
+
super.onInit();
|
|
5591
|
+
this._fetchData();
|
|
5592
|
+
}
|
|
5593
|
+
ngAfterViewInit() {
|
|
5594
|
+
super.onViewInit();
|
|
5455
5595
|
}
|
|
5456
5596
|
onMenuClick(e, item) {
|
|
5457
|
-
var _a;
|
|
5458
|
-
|
|
5459
|
-
|
|
5460
|
-
|
|
5597
|
+
var _a, _b, _c;
|
|
5598
|
+
if (!item[this.disableField]) {
|
|
5599
|
+
this.notActive(this.displayItems);
|
|
5600
|
+
if (((_a = item.children) === null || _a === void 0 ? void 0 : _a.length) > 0 || item[this.hasChildField]) {
|
|
5601
|
+
if (((_b = item.children) === null || _b === void 0 ? void 0 : _b.length) > 0 && item[this.hasChildField]) {
|
|
5602
|
+
item.children = [];
|
|
5603
|
+
}
|
|
5604
|
+
if (((_c = item.children) === null || _c === void 0 ? void 0 : _c.length) > 0) {
|
|
5605
|
+
this.closeChild(item.children);
|
|
5606
|
+
}
|
|
5607
|
+
item.isOpen = !item.isOpen;
|
|
5608
|
+
}
|
|
5609
|
+
item.isActive = !item.isActive;
|
|
5610
|
+
this.onMenuItemClick.emit({
|
|
5611
|
+
component: this,
|
|
5612
|
+
item: item,
|
|
5613
|
+
nativeEvent: e,
|
|
5614
|
+
});
|
|
5615
|
+
if (item.isOpen && item[this.hasChildField]) {
|
|
5616
|
+
this._fetchData(item.id);
|
|
5617
|
+
}
|
|
5461
5618
|
}
|
|
5462
|
-
item.isActive = !item.isActive;
|
|
5463
|
-
item.isOpen = !item.isOpen;
|
|
5464
|
-
this.onMenuItemClick.emit({
|
|
5465
|
-
component: this,
|
|
5466
|
-
item: item,
|
|
5467
|
-
nativeEvent: e,
|
|
5468
|
-
});
|
|
5469
5619
|
e.stopPropagation();
|
|
5470
5620
|
e.preventDefault();
|
|
5471
5621
|
}
|
|
@@ -5489,28 +5639,24 @@ class AXMenuComponent extends AXBaseComponentMixin {
|
|
|
5489
5639
|
}
|
|
5490
5640
|
}
|
|
5491
5641
|
AXMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5492
|
-
AXMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXMenuComponent, selector: "ax-menu", inputs: { items: "items" }, outputs: {
|
|
5642
|
+
AXMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXMenuComponent, selector: "ax-menu", inputs: { disabled: "disabled", tabIndex: "tabIndex", textField: "textField", valueField: "valueField", items: "items", id: "id", parentId: "parentId", icon: "icon", tooltip: "tooltip", isOpen: "isOpen", isActive: "isActive", visible: "visible", disableField: "disableField", hasChildField: "hasChildField", openMode: "openMode" }, outputs: { onBlur: "onBlur", onFocus: "onFocus" }, host: { classAttribute: "ax-menu" }, usesInheritance: true, ngImport: i0, template: "<ul>\r\n <ng-container *ngTemplateOutlet=\"recursiveListTmpl; context:{ list: displayItems }\"></ng-container>\r\n</ul>\r\n\r\n<ng-template #recursiveListTmpl let-list=\"list\">\r\n <ng-container *ngFor=\"let item of list; trackBy: _trackLoaded\">\r\n <li [class.ax-state-disabled]=\"item[disableField]\" *ngIf=\"item.visible !=false\" (click)=\"onMenuClick($event,item)\">\r\n <a [ngClass]=\"{'active': item.isActive}\">\r\n <div class=\"ax-menu-start-side\">\r\n <ax-icon [class]=\"item.icon || item[icon]\" *ngIf=\"item.icon || item[icon]\"></ax-icon>\r\n <span>{{_getItemDisplayTextTemplte(item)}}</span>\r\n </div>\r\n <div class=\"ax-menu-end-side\">\r\n <ax-icon [ngClass]=\"{'active-icon': item.isOpen}\"\r\n *ngIf=\"item?.children?.length > 0 && !isLoading || item[hasChildField] && !isLoading\" class=\"ax-ic-chevron\">\r\n </ax-icon>\r\n </div>\r\n\r\n <ax-loading *ngIf=\"isLoading && item.isActive && item.isOpen\">\r\n </ax-loading>\r\n </a>\r\n <ul [class.ax-state-disabled]=\"item[disableField]\" *ngIf=\"item?.children?.length > 0 && item.isOpen\">\r\n <ng-container *ngTemplateOutlet=\"recursiveListTmpl; context:{ list: item.children }\"></ng-container>\r\n </ul>\r\n </li>\r\n </ng-container>\r\n</ng-template>\r\n<ng-container *ngIf=\"isLoading\">\r\n <ng-template>\r\n <div class=\"ax-flex ax-items-center ax-justify-center ax-p-4\">\r\n <ax-loading text=\"{{ 'layout.loading.text' | trans }}\"></ax-loading>\r\n </div>\r\n </ng-template>\r\n</ng-container>", components: [{ type: AXIconComponent, selector: "ax-icon", inputs: ["icon"] }, { type: AXLoadingComponent, selector: "ax-loading", inputs: ["visible", "type", "text"], outputs: ["visibleChange"] }], directives: [{ type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], pipes: { "trans": i1$3.AXTranslatorPipe }, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5493
5643
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuComponent, decorators: [{
|
|
5494
5644
|
type: Component,
|
|
5495
|
-
args: [{ selector: 'ax-menu', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class:
|
|
5496
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }
|
|
5497
|
-
type: Input
|
|
5498
|
-
}], onMenuItemClick: [{
|
|
5499
|
-
type: Output
|
|
5500
|
-
}] } });
|
|
5645
|
+
args: [{ selector: 'ax-menu', inputs: [...INTERACTIVE_INPUTS, ...BASEMENU_INPUTS], outputs: [...INTERACTIVE_OUTPUT], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class: 'ax-menu' }, template: "<ul>\r\n <ng-container *ngTemplateOutlet=\"recursiveListTmpl; context:{ list: displayItems }\"></ng-container>\r\n</ul>\r\n\r\n<ng-template #recursiveListTmpl let-list=\"list\">\r\n <ng-container *ngFor=\"let item of list; trackBy: _trackLoaded\">\r\n <li [class.ax-state-disabled]=\"item[disableField]\" *ngIf=\"item.visible !=false\" (click)=\"onMenuClick($event,item)\">\r\n <a [ngClass]=\"{'active': item.isActive}\">\r\n <div class=\"ax-menu-start-side\">\r\n <ax-icon [class]=\"item.icon || item[icon]\" *ngIf=\"item.icon || item[icon]\"></ax-icon>\r\n <span>{{_getItemDisplayTextTemplte(item)}}</span>\r\n </div>\r\n <div class=\"ax-menu-end-side\">\r\n <ax-icon [ngClass]=\"{'active-icon': item.isOpen}\"\r\n *ngIf=\"item?.children?.length > 0 && !isLoading || item[hasChildField] && !isLoading\" class=\"ax-ic-chevron\">\r\n </ax-icon>\r\n </div>\r\n\r\n <ax-loading *ngIf=\"isLoading && item.isActive && item.isOpen\">\r\n </ax-loading>\r\n </a>\r\n <ul [class.ax-state-disabled]=\"item[disableField]\" *ngIf=\"item?.children?.length > 0 && item.isOpen\">\r\n <ng-container *ngTemplateOutlet=\"recursiveListTmpl; context:{ list: item.children }\"></ng-container>\r\n </ul>\r\n </li>\r\n </ng-container>\r\n</ng-template>\r\n<ng-container *ngIf=\"isLoading\">\r\n <ng-template>\r\n <div class=\"ax-flex ax-items-center ax-justify-center ax-p-4\">\r\n <ax-loading text=\"{{ 'layout.loading.text' | trans }}\"></ax-loading>\r\n </div>\r\n </ng-template>\r\n</ng-container>" }]
|
|
5646
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
|
|
5501
5647
|
|
|
5502
5648
|
const COMPONENT$9 = [AXMenuComponent];
|
|
5503
5649
|
const MODULES$9 = [CommonModule];
|
|
5504
5650
|
class AXMenuModule {
|
|
5505
5651
|
}
|
|
5506
5652
|
AXMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5507
|
-
AXMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, declarations: [AXMenuComponent], imports: [CommonModule, AXIconModule], exports: [AXMenuComponent] });
|
|
5508
|
-
AXMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, providers: [], imports: [[...MODULES$9, AXIconModule]] });
|
|
5653
|
+
AXMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, declarations: [AXMenuComponent], imports: [CommonModule, AXIconModule, AXLoadingModule, AXTranslationModule], exports: [AXMenuComponent] });
|
|
5654
|
+
AXMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, providers: [], imports: [[...MODULES$9, AXIconModule, AXLoadingModule, AXTranslationModule]] });
|
|
5509
5655
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, decorators: [{
|
|
5510
5656
|
type: NgModule,
|
|
5511
5657
|
args: [{
|
|
5512
5658
|
declarations: [...COMPONENT$9],
|
|
5513
|
-
imports: [...MODULES$9, AXIconModule],
|
|
5659
|
+
imports: [...MODULES$9, AXIconModule, AXLoadingModule, AXTranslationModule],
|
|
5514
5660
|
exports: [...COMPONENT$9],
|
|
5515
5661
|
providers: [],
|
|
5516
5662
|
}]
|
|
@@ -6751,8 +6897,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
6751
6897
|
|
|
6752
6898
|
const AXBaseTabItemMixin = _ClickableComponenetMixin(AXBaseComponent);
|
|
6753
6899
|
class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
6754
|
-
constructor(
|
|
6755
|
-
super(
|
|
6900
|
+
constructor(_elementRef, _cdr) {
|
|
6901
|
+
super(_elementRef, _cdr);
|
|
6756
6902
|
this.activeChange = new EventEmitter();
|
|
6757
6903
|
this._active = false;
|
|
6758
6904
|
this.disabledChange = new EventEmitter();
|
|
@@ -6764,7 +6910,10 @@ class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
|
6764
6910
|
set active(value) {
|
|
6765
6911
|
this._setOption({
|
|
6766
6912
|
name: 'active',
|
|
6767
|
-
value
|
|
6913
|
+
value,
|
|
6914
|
+
afterCallback: () => {
|
|
6915
|
+
this._cdr.markForCheck();
|
|
6916
|
+
}
|
|
6768
6917
|
});
|
|
6769
6918
|
}
|
|
6770
6919
|
get disabled() {
|
|
@@ -6874,10 +7023,10 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6874
7023
|
return this._contentTabs.toArray();
|
|
6875
7024
|
}
|
|
6876
7025
|
get selectedIndex() {
|
|
6877
|
-
return this.items.
|
|
7026
|
+
return this.items.indexOf(this._selectedItem);
|
|
6878
7027
|
}
|
|
6879
7028
|
get selectedItem() {
|
|
6880
|
-
return this.
|
|
7029
|
+
return this._selectedItem;
|
|
6881
7030
|
}
|
|
6882
7031
|
onRenderCssClass() {
|
|
6883
7032
|
const classList = Array.from(this._getHostElement().classList);
|
|
@@ -6904,6 +7053,7 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6904
7053
|
//
|
|
6905
7054
|
if (!tab || this.selectedItem == tabItem)
|
|
6906
7055
|
return;
|
|
7056
|
+
this._selectedItem = tabItem;
|
|
6907
7057
|
//
|
|
6908
7058
|
this.items.forEach(c => c.active = false);
|
|
6909
7059
|
tabItem.active = true;
|
|
@@ -7891,5 +8041,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
7891
8041
|
* Generated bundle index. Do not edit.
|
|
7892
8042
|
*/
|
|
7893
8043
|
|
|
7894
|
-
export { AXActionSheetComponent, AXActionSheetItemComponent, AXActionSheetModule, AXAlertButtonComponent, AXAlertComponent, AXAlertContentComponent, AXAlertFooterComponent, AXAlertModule, AXAlertSuffixComponent, AXAlertTitleComponent, AXAvatarComponent, AXAvatarGroup, AXAvatarMixin, AXAvatarModule, AXBadgeComponent, AXBadgeModule, AXBaseAlertMixin, AXBaseBadgeMixin, AXBaseButtonMixin, AXBaseClickableMixin, AXBaseComponent, AXBaseComponentMixin, AXBaseDatePickerMixin, AXBaseDropdownMixin, AXBaseItemButtonMixin,
|
|
8044
|
+
export { AXActionSheetComponent, AXActionSheetItemComponent, AXActionSheetModule, AXAlertButtonComponent, AXAlertComponent, AXAlertContentComponent, AXAlertFooterComponent, AXAlertModule, AXAlertSuffixComponent, AXAlertTitleComponent, AXAvatarComponent, AXAvatarGroup, AXAvatarMixin, AXAvatarModule, AXBadgeComponent, AXBadgeModule, AXBaseAlertMixin, AXBaseBadgeMixin, AXBaseButtonMixin, AXBaseClickableMixin, AXBaseComponent, AXBaseComponentMixin, AXBaseDatePickerMixin, AXBaseDropdownMixin, AXBaseItemButtonMixin, AXBaseMenuMixin, AXBasePageComponent, AXBaseSelectionDropdownMixin, AXBaseSelectionValueMixin, AXBaseTabItemMixin, AXBaseTextBoxMixin, AXBaseValueComponentMixin, AXBaseValueDropdownMixin, AXBreadCrumbsComponent, AXBreadCrumbsItemComponent, AXBreadcrumbsModule, AXButtonClickEvent, AXButtonComponent, AXButtonGroupComponent, AXButtonItemComponent, AXButtonModule, AXCalendarComponent, AXCalendarComponentMixin, AXCalendarModule, AXCarouselArrowsComponent, AXCarouselComponent, AXCarouselCore, AXCarouselItemComponent, AXCarouselModule, AXCarouselPagerComponent, AXCheckBoxComponent, AXCheckBoxModule, AXClickEvent, AXCollapseComponent, AXCollapseGroupComponent, AXCollapseModule, AXCommonModule, AXDataListComponent, AXDataListModule, AXDatePickerComponent, AXDatepickerModule, AXDecoratorAddOnComponent, AXDecoratorContentComponent, AXDecoratorHeaderComponent, AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDialogComponent, AXDialogModule, AXDialogService, AXDrawerComponent, AXDrawerContainerComponent, AXDrawerContentComponent, AXDrawerModule, AXDropdownModule, AXDropdownPanelComponent, AXEditorDecoratorModule, AXEvent, AXFocusEvent, AXFormComponent, AXFormFieldComponent, AXFormHintComponent, AXFormModule, AXHtmlEvent, AXIconComponent, AXIconModule, AXInfiniteScrollerDirective, AXInputMaskComponent, AXInputMaskModule, AXInteractiveComponenetMixin, AXItemClickEvent, AXLabelComponent, AXLabelModule, AXLoadingComponent, AXLoadingDirective, AXLoadingModule, AXLoadingService, AXLoadingSpinnerComponent, AXMenuComponent, AXMenuModule, AXNumberBoxComponent, AXNumberBoxModule, AXPageCloseEvent, AXPageClosedPromise, AXPageClosing, AXPageComponent, AXPageFooterComponent, AXPageHeaderComponent, AXPageModule, AXPageResult, AXPasswordBoxComponent, AXPasswordBoxModule, AXPickerComponent, AXPickerModule, AXPopoverComponent, AXPopoverModule, AXPopupComponent, AXPopupModule, AXPopupService, AXProgressBarComponent, AXProgressBarModule, AXRadioComponent, AXRadioModule, AXRangeChangedEvent, AXRangeSliderComponent, AXRangeSliderModule, AXRatingComponent, AXRatingModule, AXResponsiveDirective, AXResultComponent, AXResultModule, AXSelectBoxComponent, AXSelectBoxModule, AXSelectionListComponent, AXSelectionListModule, AXSelectionValueChangedEvent, AXSizableComponentMixin, AXSwitchComponent, AXSwitchModule, AXTabContentDirective, AXTabItemComponent, AXTabStripChangedEvent, AXTabsComponent, AXTabsModule, AXTextBoxComponent, AXTextBoxModule, AXTextareaComponent, AXTextareaModule, AXTimeBoxComponent, AXTimeBoxModule, AXToastComponent, AXToastModule, AXToastService, AXTooltipComponent, AXTooltipDirective, AXTooltipModule, AXTreeViewComponent, AXTreeViewModule, AXValidationModule, AXValidationRuleComponent, AXValidationRules, AXValueChangedEvent, AX_DIRECTIONS, AX_LOCATIONS, AX_STYLE_TYPES, BASE_INPUTS, BASE_OUTPUT, TAB_META_KEY, _BaseComponenetMixin };
|
|
7895
8045
|
//# sourceMappingURL=acorex-components.mjs.map
|