@acorex/components 5.0.60 → 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/events.class.mjs +7 -1
- 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.class.mjs +16 -4
- package/esm2020/lib/calendar/calendar.component.mjs +33 -13
- package/esm2020/lib/carousel/carousel-arrows.component.mjs +11 -10
- package/esm2020/lib/carousel/carousel-pager.component.mjs +5 -5
- package/esm2020/lib/carousel/carousel-splidejs.class.mjs +11 -5
- package/esm2020/lib/carousel/carousel.class.mjs +1 -1
- package/esm2020/lib/carousel/carousel.component.mjs +164 -13
- package/esm2020/lib/carousel/carousel.module.mjs +1 -1
- package/esm2020/lib/datepicker/datepicker.component.mjs +20 -9
- package/esm2020/lib/menu/menu.component.mjs +39 -27
- package/esm2020/lib/menu/menu.module.mjs +6 -4
- package/esm2020/lib/picker/index.mjs +3 -0
- package/esm2020/lib/picker/picker.component.mjs +24 -0
- package/esm2020/lib/picker/picker.module.mjs +20 -0
- package/esm2020/lib/result/index.mjs +1 -1
- package/esm2020/lib/tabs/tab-item.component.mjs +7 -4
- package/esm2020/lib/tabs/tabs.component.mjs +4 -3
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/acorex-components.mjs +470 -86
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +467 -84
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/base/events.class.d.ts +14 -0
- 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/calendar/calendar.class.d.ts +9 -1
- package/lib/calendar/calendar.component.d.ts +4 -4
- package/lib/carousel/carousel-arrows.component.d.ts +1 -1
- package/lib/carousel/carousel.class.d.ts +20 -2
- package/lib/carousel/carousel.component.d.ts +41 -5
- package/lib/datepicker/datepicker.component.d.ts +22 -19
- package/lib/menu/menu.component.d.ts +9 -12
- package/lib/menu/menu.module.d.ts +3 -1
- package/lib/picker/index.d.ts +2 -0
- package/lib/picker/picker.component.d.ts +18 -0
- package/lib/picker/picker.module.d.ts +9 -0
- package/lib/tabs/tab-item.component.d.ts +1 -1
- package/lib/tabs/tabs.component.d.ts +1 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -0
|
@@ -126,6 +126,138 @@ const BASE_OUTPUT = [];
|
|
|
126
126
|
|
|
127
127
|
;
|
|
128
128
|
|
|
129
|
+
function _BaseMenuComponentMixin(Base) {
|
|
130
|
+
var _isLoading, _loadedItems, _items, _a;
|
|
131
|
+
return _a = class extends Base {
|
|
132
|
+
constructor(...args) {
|
|
133
|
+
super(...args);
|
|
134
|
+
this.textField = 'text';
|
|
135
|
+
this.valueField = 'id';
|
|
136
|
+
_isLoading.set(this, false);
|
|
137
|
+
_loadedItems.set(this, []);
|
|
138
|
+
this.visible = 'visible';
|
|
139
|
+
this.openMode = 'click';
|
|
140
|
+
this.onMenuItemClick = new EventEmitter();
|
|
141
|
+
_items.set(this, []);
|
|
142
|
+
}
|
|
143
|
+
get loadedCount() {
|
|
144
|
+
return __classPrivateFieldGet(this, _loadedItems, "f")?.length || 0;
|
|
145
|
+
}
|
|
146
|
+
get items() {
|
|
147
|
+
return __classPrivateFieldGet(this, _items, "f");
|
|
148
|
+
}
|
|
149
|
+
set items(v) {
|
|
150
|
+
if (Array.isArray(v)) {
|
|
151
|
+
__classPrivateFieldSet(this, _items, this._formatData(v), "f");
|
|
152
|
+
}
|
|
153
|
+
else if (typeof v === 'function') {
|
|
154
|
+
__classPrivateFieldSet(this, _items, v, "f");
|
|
155
|
+
}
|
|
156
|
+
else {
|
|
157
|
+
__classPrivateFieldSet(this, _items, [], "f");
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
get displayItems() {
|
|
161
|
+
if (Array.isArray(this.items)) {
|
|
162
|
+
return __classPrivateFieldGet(this, _items, "f") || [];
|
|
163
|
+
}
|
|
164
|
+
else if (typeof __classPrivateFieldGet(this, _items, "f") == 'function') {
|
|
165
|
+
return __classPrivateFieldGet(this, _loadedItems, "f") || [];
|
|
166
|
+
}
|
|
167
|
+
return [];
|
|
168
|
+
}
|
|
169
|
+
get isLoading() {
|
|
170
|
+
return __classPrivateFieldGet(this, _isLoading, "f");
|
|
171
|
+
}
|
|
172
|
+
_formatData(v) {
|
|
173
|
+
return _.unionBy(v.map((o, i) => {
|
|
174
|
+
if (typeof o == 'object')
|
|
175
|
+
return o;
|
|
176
|
+
else {
|
|
177
|
+
const no = {};
|
|
178
|
+
no[Array.isArray(this.textField) ? this.textField[0] : this.textField] = o;
|
|
179
|
+
return no;
|
|
180
|
+
}
|
|
181
|
+
}));
|
|
182
|
+
}
|
|
183
|
+
_findNode(parentId, _children, source) {
|
|
184
|
+
if (source.length > 0) {
|
|
185
|
+
source.forEach((element) => {
|
|
186
|
+
if (element.id == parentId) {
|
|
187
|
+
element.children = _children;
|
|
188
|
+
}
|
|
189
|
+
else {
|
|
190
|
+
if (element?.children)
|
|
191
|
+
this._findNode(parentId, _children, element.children);
|
|
192
|
+
}
|
|
193
|
+
});
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
_fetchData(parentId) {
|
|
197
|
+
if (__classPrivateFieldGet(this, _isLoading, "f")) {
|
|
198
|
+
return;
|
|
199
|
+
}
|
|
200
|
+
if (__classPrivateFieldGet(this, _items, "f")) {
|
|
201
|
+
__classPrivateFieldSet(this, _isLoading, true, "f");
|
|
202
|
+
setTimeout(() => {
|
|
203
|
+
__classPrivateFieldGet(this, _items, "f").call(this, { parentId: parentId })
|
|
204
|
+
.then((c) => {
|
|
205
|
+
if (Array.isArray(c)) {
|
|
206
|
+
if (parentId) {
|
|
207
|
+
this._findNode(parentId, c, this.displayItems);
|
|
208
|
+
}
|
|
209
|
+
else {
|
|
210
|
+
__classPrivateFieldSet(this, _loadedItems, c, "f");
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
this._cdr.markForCheck();
|
|
214
|
+
})
|
|
215
|
+
.finally(() => {
|
|
216
|
+
__classPrivateFieldSet(this, _isLoading, false, "f");
|
|
217
|
+
});
|
|
218
|
+
}, 1000);
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
_onInternalInit() {
|
|
222
|
+
if (typeof __classPrivateFieldGet(this, _items, "f") == 'function') {
|
|
223
|
+
this._fetchData();
|
|
224
|
+
}
|
|
225
|
+
super._onInternalInit();
|
|
226
|
+
}
|
|
227
|
+
_getItemDisplayTextTemplte(item) {
|
|
228
|
+
if (item)
|
|
229
|
+
return Array.isArray(this.textField)
|
|
230
|
+
? this.textField.map((c) => item[c]).join(',')
|
|
231
|
+
: item[this.textField];
|
|
232
|
+
else
|
|
233
|
+
return 'Loading...';
|
|
234
|
+
}
|
|
235
|
+
_trackLoaded(index, item) {
|
|
236
|
+
return item[this.textField];
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
_isLoading = new WeakMap(),
|
|
240
|
+
_loadedItems = new WeakMap(),
|
|
241
|
+
_items = new WeakMap(),
|
|
242
|
+
_a;
|
|
243
|
+
}
|
|
244
|
+
const BASEMENU_INPUTS = [
|
|
245
|
+
'textField',
|
|
246
|
+
'valueField',
|
|
247
|
+
'items',
|
|
248
|
+
'id',
|
|
249
|
+
'parentId',
|
|
250
|
+
'icon',
|
|
251
|
+
'tooltip',
|
|
252
|
+
'isOpen',
|
|
253
|
+
'isActive',
|
|
254
|
+
'visible',
|
|
255
|
+
'disableField',
|
|
256
|
+
'hasChildField',
|
|
257
|
+
'openMode',
|
|
258
|
+
];
|
|
259
|
+
const BASEMENU_OUTPUT = ['onMenuItemClick'];
|
|
260
|
+
|
|
129
261
|
function _ButtonComponentMixin(Base) {
|
|
130
262
|
return class extends Base {
|
|
131
263
|
constructor(...args) {
|
|
@@ -1053,8 +1185,8 @@ const AXBaseSelectionValueMixin = _SizableComponenetMixin(_InteractiveComponenet
|
|
|
1053
1185
|
const AXBaseValueDropdownMixin = _InteractiveComponenetMixin(_DropdownComponenetMixin(_DatalistComponenetMixin(_ValueComponenetMixin(AXBaseComponent))));
|
|
1054
1186
|
const AXBaseSelectionDropdownMixin = _DropdownComponenetMixin(AXBaseSelectionValueMixin);
|
|
1055
1187
|
const AXBaseDropdownMixin = _SizableComponenetMixin(_InteractiveComponenetMixin(_DropdownComponenetMixin(AXBaseComponent)));
|
|
1056
|
-
const
|
|
1057
|
-
const AXAvatarMixin =
|
|
1188
|
+
const AXBaseMenuMixin = _InteractiveComponenetMixin(_BaseMenuComponentMixin(AXBaseComponent));
|
|
1189
|
+
const AXAvatarMixin = _ColorLookComponentMixin(AXBaseComponent);
|
|
1058
1190
|
|
|
1059
1191
|
/**
|
|
1060
1192
|
* Contains native event
|
|
@@ -1106,6 +1238,12 @@ class AXFocusEvent extends AXHtmlEvent {
|
|
|
1106
1238
|
* @category Events
|
|
1107
1239
|
*/
|
|
1108
1240
|
class AXSelectionValueChangedEvent extends AXValueChangedEvent {
|
|
1241
|
+
}
|
|
1242
|
+
/**
|
|
1243
|
+
* Contains range start & end values
|
|
1244
|
+
* @category Events
|
|
1245
|
+
*/
|
|
1246
|
+
class AXRangeChangedEvent extends AXEvent {
|
|
1109
1247
|
}
|
|
1110
1248
|
|
|
1111
1249
|
// export type AXPlacement =
|
|
@@ -2528,9 +2666,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2528
2666
|
}]
|
|
2529
2667
|
}] });
|
|
2530
2668
|
|
|
2669
|
+
/**
|
|
2670
|
+
* Contains native event
|
|
2671
|
+
* @category Events
|
|
2672
|
+
*/
|
|
2673
|
+
class AXCalendarNavigateEvent extends AXRangeChangedEvent {
|
|
2674
|
+
}
|
|
2531
2675
|
class AXCalendarBaseComponent extends AXBaseComponent {
|
|
2532
2676
|
constructor(elementRef, cdr) {
|
|
2533
2677
|
super(elementRef, cdr);
|
|
2678
|
+
this.onSlotClick = new EventEmitter();
|
|
2679
|
+
this.onNavigate = new EventEmitter();
|
|
2534
2680
|
this.activeViewChange = new EventEmitter();
|
|
2535
2681
|
this._activeView = 'days';
|
|
2536
2682
|
this.typeChange = new EventEmitter();
|
|
@@ -2598,7 +2744,11 @@ AXCalendarBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
|
|
|
2598
2744
|
AXCalendarBaseComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarBaseComponent });
|
|
2599
2745
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarBaseComponent, decorators: [{
|
|
2600
2746
|
type: Injectable
|
|
2601
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
2747
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { onSlotClick: [{
|
|
2748
|
+
type: Output
|
|
2749
|
+
}], onNavigate: [{
|
|
2750
|
+
type: Output
|
|
2751
|
+
}], activeViewChange: [{
|
|
2602
2752
|
type: Output
|
|
2603
2753
|
}], activeView: [{
|
|
2604
2754
|
type: Input
|
|
@@ -2636,7 +2786,7 @@ const CALENDAR_INPUTS = [
|
|
|
2636
2786
|
'type',
|
|
2637
2787
|
'holidayDates',
|
|
2638
2788
|
];
|
|
2639
|
-
const CALENDAR_OUTPUTS = ['depthChange', 'typeChange', '
|
|
2789
|
+
const CALENDAR_OUTPUTS = ['depthChange', 'typeChange', 'disabledDatesChange', 'holidayDatesChange', 'onNavigate'];
|
|
2640
2790
|
|
|
2641
2791
|
const AXCalendarComponentMixin = _ClickableComponenetMixin(_InteractiveComponenetMixin(_ValueComponenetMixin(AXCalendarBaseComponent)));
|
|
2642
2792
|
class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
@@ -2648,7 +2798,7 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2648
2798
|
this._todayText = '';
|
|
2649
2799
|
this._slots = [];
|
|
2650
2800
|
this._dayNames = [];
|
|
2651
|
-
this.
|
|
2801
|
+
this._isUserInteraction = false;
|
|
2652
2802
|
}
|
|
2653
2803
|
get _viewRange() {
|
|
2654
2804
|
const current = this._viewStartDate || this._today;
|
|
@@ -2661,7 +2811,6 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2661
2811
|
case 'months':
|
|
2662
2812
|
return new AXDateTimeRange(current.startOf('year'), current.endOf('year').add('day', -1));
|
|
2663
2813
|
default:
|
|
2664
|
-
//return new AXDateTimeRange(current.startOf('month').startOf('week'), current.endOf('month').endOf('week'));
|
|
2665
2814
|
return new AXDateTimeRange(current.startOf('month'), current.endOf('month'));
|
|
2666
2815
|
}
|
|
2667
2816
|
}
|
|
@@ -2675,7 +2824,8 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2675
2824
|
}
|
|
2676
2825
|
onInit() {
|
|
2677
2826
|
this._initValues();
|
|
2678
|
-
this.
|
|
2827
|
+
if (!this.value)
|
|
2828
|
+
this.goToday();
|
|
2679
2829
|
}
|
|
2680
2830
|
_genearteSlots() {
|
|
2681
2831
|
if (!this._viewStartDate)
|
|
@@ -2742,8 +2892,8 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2742
2892
|
r.date = d.date;
|
|
2743
2893
|
r.text = d.dayOfMonth;
|
|
2744
2894
|
r.tooltip = d.format();
|
|
2745
|
-
r.disabled = (this.min && d.compare(this.min, 'day') == -1) || (this.max && d.compare(this.max, 'day') == 1);
|
|
2746
|
-
if (r.disabled
|
|
2895
|
+
r.disabled = ((this.min && d.compare(this.min, 'day') == -1) || (this.max && d.compare(this.max, 'day') == 1)) || this.isDisabled(d);
|
|
2896
|
+
if (r.disabled) {
|
|
2747
2897
|
r.cssClass = {
|
|
2748
2898
|
'ax-state-disabled': true,
|
|
2749
2899
|
};
|
|
@@ -2765,10 +2915,14 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2765
2915
|
}
|
|
2766
2916
|
}
|
|
2767
2917
|
_handlePrevClick(e) {
|
|
2918
|
+
this._isUserInteraction = true;
|
|
2768
2919
|
this.prev();
|
|
2920
|
+
this._isUserInteraction = false;
|
|
2769
2921
|
}
|
|
2770
2922
|
_handleNextClick(e) {
|
|
2923
|
+
this._isUserInteraction = true;
|
|
2771
2924
|
this.next();
|
|
2925
|
+
this._isUserInteraction = false;
|
|
2772
2926
|
}
|
|
2773
2927
|
_handleSlotClick(e, slot) {
|
|
2774
2928
|
if (slot.disabled || this.disabled)
|
|
@@ -2793,14 +2947,17 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2793
2947
|
this.onSlotClick.emit({
|
|
2794
2948
|
component: this,
|
|
2795
2949
|
item: slot.date,
|
|
2950
|
+
isUserInteraction: true,
|
|
2796
2951
|
nativeEvent: e
|
|
2797
2952
|
});
|
|
2798
2953
|
}
|
|
2799
2954
|
_handleNavClick(e) {
|
|
2955
|
+
this._isUserInteraction = true;
|
|
2800
2956
|
if (this.activeView == 'days')
|
|
2801
2957
|
this.activeView = 'months';
|
|
2802
2958
|
else if (this.activeView == 'months')
|
|
2803
2959
|
this.activeView = 'years';
|
|
2960
|
+
this._isUserInteraction = false;
|
|
2804
2961
|
}
|
|
2805
2962
|
_onOptionChanged(option) {
|
|
2806
2963
|
if (option.name == 'depth' || option.name == 'activeView' || option.name == 'disabledDates' || option.name == 'holidayDates') {
|
|
@@ -2815,8 +2972,10 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2815
2972
|
this._genearteSlots();
|
|
2816
2973
|
}
|
|
2817
2974
|
_handleGoToday() {
|
|
2975
|
+
this._isUserInteraction = true;
|
|
2818
2976
|
this._setDate(this._today.date);
|
|
2819
2977
|
this.goToday();
|
|
2978
|
+
this._isUserInteraction = false;
|
|
2820
2979
|
}
|
|
2821
2980
|
next() {
|
|
2822
2981
|
this._navNextPrev(false);
|
|
@@ -2825,7 +2984,9 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2825
2984
|
this._navNextPrev(true);
|
|
2826
2985
|
}
|
|
2827
2986
|
focus() {
|
|
2828
|
-
this._getHostElement().querySelector(
|
|
2987
|
+
const func = (s) => this._getHostElement().querySelector(s);
|
|
2988
|
+
const div = func('.ax-calendar-slots>div.ax-state-selected') || func('.ax-calendar-slots>div');
|
|
2989
|
+
div?.focus();
|
|
2829
2990
|
}
|
|
2830
2991
|
_navNextPrev(prev) {
|
|
2831
2992
|
const sign = (prev ? -1 : 1);
|
|
@@ -2841,7 +3002,18 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2841
3002
|
}
|
|
2842
3003
|
navTo(date) {
|
|
2843
3004
|
this._viewStartDate = AXDateTime.convert(date, this._today.calendar.name()).startOf();
|
|
3005
|
+
const vr = this._viewRange;
|
|
3006
|
+
this.onNavigate.emit({
|
|
3007
|
+
component: this,
|
|
3008
|
+
isUserInteraction: this._isUserInteraction,
|
|
3009
|
+
start: vr.startTime?.date,
|
|
3010
|
+
end: vr.endTime?.date,
|
|
3011
|
+
htmlElement: this._getHostElement()
|
|
3012
|
+
});
|
|
2844
3013
|
this._genearteSlots();
|
|
3014
|
+
setTimeout(() => {
|
|
3015
|
+
this.focus();
|
|
3016
|
+
}, 50);
|
|
2845
3017
|
}
|
|
2846
3018
|
get __hostClass() {
|
|
2847
3019
|
const _classes = {
|
|
@@ -2875,13 +3047,11 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2875
3047
|
}
|
|
2876
3048
|
}
|
|
2877
3049
|
AXCalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2878
|
-
AXCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCalendarComponent, selector: "ax-calendar", inputs: { readonly: "readonly", allowNull: "allowNull", value: "value", debounceTime: "debounceTime", name: "name", checked: "checked", disabled: "disabled", tabIndex: "tabIndex", depth: "depth", activeView: "activeView", min: "min", max: "max", disabledDates: "disabledDates", type: "type", holidayDates: "holidayDates" }, outputs: { valueChange: "valueChange", onValueChanged: "onValueChanged", onBlur: "onBlur", onFocus: "onFocus", depthChange: "depthChange", typeChange: "typeChange",
|
|
3050
|
+
AXCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCalendarComponent, selector: "ax-calendar", inputs: { readonly: "readonly", allowNull: "allowNull", value: "value", debounceTime: "debounceTime", name: "name", checked: "checked", disabled: "disabled", tabIndex: "tabIndex", depth: "depth", activeView: "activeView", min: "min", max: "max", disabledDates: "disabledDates", type: "type", holidayDates: "holidayDates" }, outputs: { valueChange: "valueChange", onValueChanged: "onValueChanged", onBlur: "onBlur", onFocus: "onFocus", depthChange: "depthChange", typeChange: "typeChange", disabledDatesChange: "disabledDatesChange", holidayDatesChange: "holidayDatesChange", onNavigate: "onNavigate" }, host: { properties: { "class": "this.__hostClass" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-calendar-header\">\r\n <div>\r\n <ng-container *ngIf=\"activeView=='days'; else elseTemplate\">\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[1]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[0]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n </ng-container>\r\n <ng-template #elseTemplate>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n </ng-template>\r\n </div>\r\n <div class=\"ax-flex\">\r\n <ax-button class=\"ax-prev-button\" color=\"light\" look=\"blank\" (onClick)=\"_handlePrevClick($event)\"\r\n [disabled]=\"disabled\">\r\n <ax-prefix>\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n </ax-prefix>\r\n </ax-button>\r\n <ax-button class=\"ax-next-button\" color=\"light\" look=\"blank\" (onClick)=\"_handleNextClick($event)\"\r\n [disabled]=\"disabled\">\r\n <ax-prefix>\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax-rotate-90\"></ax-icon>\r\n \r\n </ax-prefix>\r\n </ax-button>\r\n </div>\r\n\r\n</div>\r\n<div class=\"ax-calendar-body\">\r\n <div [ngSwitch]=\"activeView\">\r\n <ng-container *ngSwitchCase=\"'years'\">\r\n <div class=\"ax-calendar-slots ax-calendar-slots-year\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'months'\">\r\n <div class=\"ax-calendar-slots ax-calendar-slots-month\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [title]=\"slot.tooltip\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngSwitchDefault>\r\n <div class=\"ax-calendar-week\">\r\n <div *ngFor=\"let d of _dayNames\">{{d}}</div>\r\n </div>\r\n <div class=\"ax-calendar-slots ax-calendar-slots-day\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [title]=\"slot.tooltip\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n</div>\r\n<div class=\"ax-calendar-footer\">\r\n <ax-button class=\"dark:ax-text-danger\" [text]=\"_todayText\" color=\"dark\" look=\"blank\" size=\"sm\"\r\n (onClick)=\"_handleGoToday()\" [disabled]=\"disabled\"></ax-button>\r\n</div>", components: [{ type: AXButtonComponent, selector: "ax-button", inputs: ["disabled", "tabIndex", "size", "color", "look", "text", "submitBehavior", "cancelBehavior", "toggleable", "selected"], outputs: ["onBlur", "onFocus", "onClick", "selectedChange", "toggleableChange"] }, { type: AXDecoratorPrefixComponent, selector: "ax-prefix" }, { type: AXIconComponent, selector: "ax-icon", inputs: ["icon"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
2879
3051
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarComponent, decorators: [{
|
|
2880
3052
|
type: Component,
|
|
2881
|
-
args: [{ selector: 'ax-calendar', changeDetection: ChangeDetectionStrategy.OnPush, inputs: [...VALUE_INPUTS, ...INTERACTIVE_INPUTS, ...CALENDAR_INPUTS], outputs: [...VALUE_OUTPUT, ...INTERACTIVE_OUTPUT, ...CALENDAR_OUTPUTS], encapsulation: ViewEncapsulation.None, template: "<div class=\"ax-calendar-header\">\r\n <div>\r\n <ng-container *ngIf=\"activeView=='days'; else elseTemplate\">\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[1]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[0]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n </ng-container>\r\n <ng-template #elseTemplate>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n
|
|
2882
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
2883
|
-
type: Output
|
|
2884
|
-
}], __hostClass: [{
|
|
3053
|
+
args: [{ selector: 'ax-calendar', changeDetection: ChangeDetectionStrategy.OnPush, inputs: [...VALUE_INPUTS, ...INTERACTIVE_INPUTS, ...CALENDAR_INPUTS], outputs: [...VALUE_OUTPUT, ...INTERACTIVE_OUTPUT, ...CALENDAR_OUTPUTS], encapsulation: ViewEncapsulation.None, template: "<div class=\"ax-calendar-header\">\r\n <div>\r\n <ng-container *ngIf=\"activeView=='days'; else elseTemplate\">\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[1]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText.split(' ')[0]\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n </ng-container>\r\n <ng-template #elseTemplate>\r\n <ax-button class=\"ax-nav-button\" [text]=\"_navText\" color=\"light\" look=\"blank\"\r\n (onClick)=\"_handleNavClick($event)\" [disabled]=\"disabled\">\r\n </ax-button>\r\n </ng-template>\r\n </div>\r\n <div class=\"ax-flex\">\r\n <ax-button class=\"ax-prev-button\" color=\"light\" look=\"blank\" (onClick)=\"_handlePrevClick($event)\"\r\n [disabled]=\"disabled\">\r\n <ax-prefix>\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax--rotate-90\"></ax-icon>\r\n </ax-prefix>\r\n </ax-button>\r\n <ax-button class=\"ax-next-button\" color=\"light\" look=\"blank\" (onClick)=\"_handleNextClick($event)\"\r\n [disabled]=\"disabled\">\r\n <ax-prefix>\r\n <ax-icon icon=\"ax-ic ax-ic-chevron ax-transform ax-rotate-90\"></ax-icon>\r\n \r\n </ax-prefix>\r\n </ax-button>\r\n </div>\r\n\r\n</div>\r\n<div class=\"ax-calendar-body\">\r\n <div [ngSwitch]=\"activeView\">\r\n <ng-container *ngSwitchCase=\"'years'\">\r\n <div class=\"ax-calendar-slots ax-calendar-slots-year\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngSwitchCase=\"'months'\">\r\n <div class=\"ax-calendar-slots ax-calendar-slots-month\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [title]=\"slot.tooltip\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n <ng-container *ngSwitchDefault>\r\n <div class=\"ax-calendar-week\">\r\n <div *ngFor=\"let d of _dayNames\">{{d}}</div>\r\n </div>\r\n <div class=\"ax-calendar-slots ax-calendar-slots-day\">\r\n <div tabindex=\"0\" *ngFor=\"let slot of _slots\" [title]=\"slot.tooltip\" [ngClass]=\"slot.cssClass\"\r\n (click)=\"_handleSlotClick($event,slot)\">{{slot.text}}</div>\r\n </div>\r\n </ng-container>\r\n </div>\r\n\r\n</div>\r\n<div class=\"ax-calendar-footer\">\r\n <ax-button class=\"dark:ax-text-danger\" [text]=\"_todayText\" color=\"dark\" look=\"blank\" size=\"sm\"\r\n (onClick)=\"_handleGoToday()\" [disabled]=\"disabled\"></ax-button>\r\n</div>" }]
|
|
3054
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { __hostClass: [{
|
|
2885
3055
|
type: HostBinding,
|
|
2886
3056
|
args: ['class']
|
|
2887
3057
|
}] } });
|
|
@@ -2947,16 +3117,22 @@ class AXCarouselSplideJS {
|
|
|
2947
3117
|
type: this._instance.loop && !this._instance.rewind ? 'loop' : 'slide',
|
|
2948
3118
|
rewind: this._instance.rewind,
|
|
2949
3119
|
gap: this._instance.gap,
|
|
2950
|
-
perPage: this._instance.
|
|
2951
|
-
perMove:
|
|
3120
|
+
perPage: this._instance.perPage,
|
|
3121
|
+
perMove: this._instance.perMove,
|
|
2952
3122
|
start: this._instance.visibleIndex,
|
|
2953
3123
|
interval: this._instance.interval,
|
|
2954
3124
|
direction: this._instance.vertical ? 'ttb' : (this._instance.rtl ? 'rtl' : 'ltr'),
|
|
2955
3125
|
arrows: false,
|
|
2956
3126
|
pagination: false,
|
|
2957
3127
|
padding: this._instance.padding,
|
|
2958
|
-
autoWidth:
|
|
2959
|
-
focus: this._instance.centered ? 'center' :
|
|
3128
|
+
autoWidth: this._instance.autoWidth,
|
|
3129
|
+
focus: this._instance.centered ? 'center' : this._instance.focus,
|
|
3130
|
+
height: this._instance.height,
|
|
3131
|
+
heightRatio: this._instance.heightRatio,
|
|
3132
|
+
wheel: this._instance.wheel,
|
|
3133
|
+
width: this._instance.width,
|
|
3134
|
+
drag: this._instance.drag,
|
|
3135
|
+
snap: this._instance.snap,
|
|
2960
3136
|
};
|
|
2961
3137
|
}
|
|
2962
3138
|
next() {
|
|
@@ -3000,11 +3176,29 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3000
3176
|
this.core = core;
|
|
3001
3177
|
this.onOptionsChanged = new EventEmitter();
|
|
3002
3178
|
this.onSlideChanged = new EventEmitter();
|
|
3003
|
-
this.
|
|
3004
|
-
this.
|
|
3179
|
+
this.perMoveChange = new EventEmitter();
|
|
3180
|
+
this._perMove = 1;
|
|
3181
|
+
this.focusChange = new EventEmitter();
|
|
3182
|
+
this._focus = 0;
|
|
3183
|
+
this.heightRatioChange = new EventEmitter();
|
|
3184
|
+
this._heightRatio = 0;
|
|
3185
|
+
this.heightChange = new EventEmitter();
|
|
3186
|
+
this._height = 'auto';
|
|
3187
|
+
this.widthChange = new EventEmitter();
|
|
3188
|
+
this._width = 'fit-content';
|
|
3189
|
+
this.perPageChange = new EventEmitter();
|
|
3190
|
+
this._perPage = 1;
|
|
3005
3191
|
this.gap = 10;
|
|
3006
3192
|
this.autoplayChange = new EventEmitter();
|
|
3007
3193
|
this._autoplay = false;
|
|
3194
|
+
this.snapChange = new EventEmitter();
|
|
3195
|
+
this._snap = false;
|
|
3196
|
+
this.autoWidthChange = new EventEmitter();
|
|
3197
|
+
this._autoWidth = true;
|
|
3198
|
+
this.dragChange = new EventEmitter();
|
|
3199
|
+
this._drag = true;
|
|
3200
|
+
this.wheelChange = new EventEmitter();
|
|
3201
|
+
this._wheel = false;
|
|
3008
3202
|
this.intervalChange = new EventEmitter();
|
|
3009
3203
|
this._interval = 3000;
|
|
3010
3204
|
this.paddingChange = new EventEmitter();
|
|
@@ -3021,17 +3215,70 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3021
3215
|
this.onItemsChanged = new EventEmitter();
|
|
3022
3216
|
this._items = [];
|
|
3023
3217
|
}
|
|
3024
|
-
get
|
|
3025
|
-
return this.
|
|
3218
|
+
get perMove() {
|
|
3219
|
+
return this._perMove;
|
|
3026
3220
|
}
|
|
3027
|
-
set
|
|
3221
|
+
set perMove(v) {
|
|
3028
3222
|
const val = Math.max(1, coerceNumberProperty(v));
|
|
3029
|
-
if (val != this.
|
|
3030
|
-
this.
|
|
3031
|
-
if (this.
|
|
3223
|
+
if (val != this._perMove) {
|
|
3224
|
+
this._perMove = val;
|
|
3225
|
+
if (this._perMove > 1) {
|
|
3032
3226
|
this._vertical = false;
|
|
3033
3227
|
}
|
|
3034
|
-
this.
|
|
3228
|
+
this.perMoveChange.emit(this.perMove);
|
|
3229
|
+
this.onOptionsChanged.emit();
|
|
3230
|
+
}
|
|
3231
|
+
}
|
|
3232
|
+
get focus() {
|
|
3233
|
+
return this._focus;
|
|
3234
|
+
}
|
|
3235
|
+
set focus(v) {
|
|
3236
|
+
if (v != this._focus) {
|
|
3237
|
+
this._focus = v;
|
|
3238
|
+
this.paddingChange.emit(v);
|
|
3239
|
+
this.onOptionsChanged.emit();
|
|
3240
|
+
}
|
|
3241
|
+
}
|
|
3242
|
+
get heightRatio() {
|
|
3243
|
+
return this._heightRatio;
|
|
3244
|
+
}
|
|
3245
|
+
set heightRatio(v) {
|
|
3246
|
+
if (v != this._heightRatio) {
|
|
3247
|
+
this._heightRatio = v;
|
|
3248
|
+
this.paddingChange.emit(v);
|
|
3249
|
+
this.onOptionsChanged.emit();
|
|
3250
|
+
}
|
|
3251
|
+
}
|
|
3252
|
+
get height() {
|
|
3253
|
+
return this._height;
|
|
3254
|
+
}
|
|
3255
|
+
set height(v) {
|
|
3256
|
+
const val = v;
|
|
3257
|
+
if (val != this._height) {
|
|
3258
|
+
this._height = val;
|
|
3259
|
+
this.heightChange.emit(this.height);
|
|
3260
|
+
this.onOptionsChanged.emit();
|
|
3261
|
+
}
|
|
3262
|
+
}
|
|
3263
|
+
get width() {
|
|
3264
|
+
return this._width;
|
|
3265
|
+
}
|
|
3266
|
+
set width(v) {
|
|
3267
|
+
const val = v;
|
|
3268
|
+
if (val != this._width) {
|
|
3269
|
+
this._width = val;
|
|
3270
|
+
this.widthChange.emit(this.width);
|
|
3271
|
+
this.onOptionsChanged.emit();
|
|
3272
|
+
}
|
|
3273
|
+
}
|
|
3274
|
+
get perPage() {
|
|
3275
|
+
return this._perPage;
|
|
3276
|
+
}
|
|
3277
|
+
set perPage(v) {
|
|
3278
|
+
const val = v;
|
|
3279
|
+
if (val != this._perPage) {
|
|
3280
|
+
this._perPage = val;
|
|
3281
|
+
this.perPageChange.emit(this.perPage);
|
|
3035
3282
|
this.onOptionsChanged.emit();
|
|
3036
3283
|
}
|
|
3037
3284
|
}
|
|
@@ -3046,6 +3293,50 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3046
3293
|
this.onOptionsChanged.emit();
|
|
3047
3294
|
}
|
|
3048
3295
|
}
|
|
3296
|
+
get snap() {
|
|
3297
|
+
return this._snap;
|
|
3298
|
+
}
|
|
3299
|
+
set snap(v) {
|
|
3300
|
+
const val = coerceBooleanProperty(v);
|
|
3301
|
+
if (val != this._snap) {
|
|
3302
|
+
this._snap = val;
|
|
3303
|
+
this.snapChange.emit(this.snap);
|
|
3304
|
+
this.onOptionsChanged.emit();
|
|
3305
|
+
}
|
|
3306
|
+
}
|
|
3307
|
+
get autoWidth() {
|
|
3308
|
+
return this._autoWidth;
|
|
3309
|
+
}
|
|
3310
|
+
set autoWidth(v) {
|
|
3311
|
+
const val = coerceBooleanProperty(v);
|
|
3312
|
+
if (val != this._autoWidth) {
|
|
3313
|
+
this._autoWidth = val;
|
|
3314
|
+
this.autoWidthChange.emit(this.autoWidth);
|
|
3315
|
+
this.onOptionsChanged.emit();
|
|
3316
|
+
}
|
|
3317
|
+
}
|
|
3318
|
+
get drag() {
|
|
3319
|
+
return this._drag;
|
|
3320
|
+
}
|
|
3321
|
+
set drag(v) {
|
|
3322
|
+
const val = v;
|
|
3323
|
+
if (val != this._drag) {
|
|
3324
|
+
this._drag = val;
|
|
3325
|
+
this.dragChange.emit(this.drag);
|
|
3326
|
+
this.onOptionsChanged.emit();
|
|
3327
|
+
}
|
|
3328
|
+
}
|
|
3329
|
+
get wheel() {
|
|
3330
|
+
return this._wheel;
|
|
3331
|
+
}
|
|
3332
|
+
set wheel(v) {
|
|
3333
|
+
const val = coerceBooleanProperty(v);
|
|
3334
|
+
if (val != this._wheel) {
|
|
3335
|
+
this._wheel = val;
|
|
3336
|
+
this.wheelChange.emit(this.wheel);
|
|
3337
|
+
this.onOptionsChanged.emit();
|
|
3338
|
+
}
|
|
3339
|
+
}
|
|
3049
3340
|
get interval() {
|
|
3050
3341
|
return this._interval;
|
|
3051
3342
|
}
|
|
@@ -3172,7 +3463,7 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3172
3463
|
}
|
|
3173
3464
|
}
|
|
3174
3465
|
AXCarouselComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: AXCarouselCore }], target: i0.ɵɵFactoryTarget.Component });
|
|
3175
|
-
AXCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCarouselComponent, selector: "ax-carousel", inputs: {
|
|
3466
|
+
AXCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCarouselComponent, selector: "ax-carousel", inputs: { perMove: "perMove", focus: "focus", heightRatio: "heightRatio", height: "height", width: "width", perPage: "perPage", gap: "gap", autoplay: "autoplay", snap: "snap", autoWidth: "autoWidth", drag: "drag", wheel: "wheel", interval: "interval", padding: "padding", centered: "centered", vertical: "vertical", loop: "loop", rewind: "rewind" }, outputs: { onOptionsChanged: "onOptionsChanged", onSlideChanged: "onSlideChanged", perMoveChange: "perMoveChange", focusChange: "focusChange", heightRatioChange: "heightRatioChange", heightChange: "heightChange", widthChange: "widthChange", perPageChange: "perPageChange", autoplayChange: "autoplayChange", snapChange: "snapChange", autoWidthChange: "autoWidthChange", dragChange: "dragChange", wheelChange: "wheelChange", intervalChange: "intervalChange", paddingChange: "paddingChange", centeredChange: "centeredChange", verticalChange: "verticalChange", loopChange: "loopChange", rewindChange: "rewindChange", onItemsChanged: "onItemsChanged" }, host: { classAttribute: "ax-carousel" }, providers: [{
|
|
3176
3467
|
provide: AXCarouselCore,
|
|
3177
3468
|
useClass: AXCarouselSplideJS
|
|
3178
3469
|
}], usesInheritance: true, ngImport: i0, template: "<div class=\"ax-carousel-list-container\">\r\n <div class=\"ax-carousel-list\">\r\n <ng-content select=\"ax-carousel-item\">\r\n </ng-content>\r\n </div>\r\n <ng-content select=\"ax-carousel-arrows\">\r\n </ng-content>\r\n</div>\r\n\r\n<ng-content select=\"ax-carousel-pager\">\r\n</ng-content>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
@@ -3186,9 +3477,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3186
3477
|
type: Output
|
|
3187
3478
|
}], onSlideChanged: [{
|
|
3188
3479
|
type: Output
|
|
3189
|
-
}],
|
|
3480
|
+
}], perMoveChange: [{
|
|
3481
|
+
type: Output
|
|
3482
|
+
}], perMove: [{
|
|
3483
|
+
type: Input
|
|
3484
|
+
}], focusChange: [{
|
|
3485
|
+
type: Output
|
|
3486
|
+
}], focus: [{
|
|
3487
|
+
type: Input
|
|
3488
|
+
}], heightRatioChange: [{
|
|
3489
|
+
type: Output
|
|
3490
|
+
}], heightRatio: [{
|
|
3491
|
+
type: Input
|
|
3492
|
+
}], heightChange: [{
|
|
3493
|
+
type: Output
|
|
3494
|
+
}], height: [{
|
|
3495
|
+
type: Input
|
|
3496
|
+
}], widthChange: [{
|
|
3497
|
+
type: Output
|
|
3498
|
+
}], width: [{
|
|
3499
|
+
type: Input
|
|
3500
|
+
}], perPageChange: [{
|
|
3190
3501
|
type: Output
|
|
3191
|
-
}],
|
|
3502
|
+
}], perPage: [{
|
|
3192
3503
|
type: Input
|
|
3193
3504
|
}], gap: [{
|
|
3194
3505
|
type: Input
|
|
@@ -3196,6 +3507,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3196
3507
|
type: Output
|
|
3197
3508
|
}], autoplay: [{
|
|
3198
3509
|
type: Input
|
|
3510
|
+
}], snapChange: [{
|
|
3511
|
+
type: Output
|
|
3512
|
+
}], snap: [{
|
|
3513
|
+
type: Input
|
|
3514
|
+
}], autoWidthChange: [{
|
|
3515
|
+
type: Output
|
|
3516
|
+
}], autoWidth: [{
|
|
3517
|
+
type: Input
|
|
3518
|
+
}], dragChange: [{
|
|
3519
|
+
type: Output
|
|
3520
|
+
}], drag: [{
|
|
3521
|
+
type: Input
|
|
3522
|
+
}], wheelChange: [{
|
|
3523
|
+
type: Output
|
|
3524
|
+
}], wheel: [{
|
|
3525
|
+
type: Input
|
|
3199
3526
|
}], intervalChange: [{
|
|
3200
3527
|
type: Output
|
|
3201
3528
|
}], interval: [{
|
|
@@ -3260,23 +3587,23 @@ class AXCarouselArrowsComponent extends AXBaseComponentMixin {
|
|
|
3260
3587
|
}
|
|
3261
3588
|
AXCarouselArrowsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselArrowsComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: AXCarouselComponent, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
3262
3589
|
AXCarouselArrowsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCarouselArrowsComponent, selector: "ax-carousel-arrows", outputs: { onNextClick: "onNextClick", onPrevClick: "onPrevClick" }, host: { classAttribute: "ax-carousel-arrows" }, usesInheritance: true, ngImport: i0, template: `
|
|
3263
|
-
<button class="ax-carousel-arrow-prev" (click)="_handlePrevClick($event)">
|
|
3264
|
-
<i class="ax-ic ax-ic-
|
|
3590
|
+
<button class="ax-carousel-arrow-prev" [ngClass]="{'ax-vertical-arrow ax-top-arrow': this.parent.vertical}" (click)="_handlePrevClick($event)">
|
|
3591
|
+
<i class="ax-ic ax-ic-chevron"></i>
|
|
3265
3592
|
</button>
|
|
3266
|
-
<button class="ax-carousel-arrow-next" (click)="_handleNextClick($event)">
|
|
3267
|
-
<i class="ax-ic ax-ic-
|
|
3593
|
+
<button class="ax-carousel-arrow-next" [ngClass]="{'ax-vertical-arrow ax-bottom-arrow': this.parent.vertical}" (click)="_handleNextClick($event)">
|
|
3594
|
+
<i class="ax-ic ax-ic-chevron ax-block ax-rotate-180"></i>
|
|
3268
3595
|
</button>
|
|
3269
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3596
|
+
`, isInline: true, directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3270
3597
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselArrowsComponent, decorators: [{
|
|
3271
3598
|
type: Component,
|
|
3272
3599
|
args: [{
|
|
3273
3600
|
selector: 'ax-carousel-arrows',
|
|
3274
3601
|
template: `
|
|
3275
|
-
<button class="ax-carousel-arrow-prev" (click)="_handlePrevClick($event)">
|
|
3276
|
-
<i class="ax-ic ax-ic-
|
|
3602
|
+
<button class="ax-carousel-arrow-prev" [ngClass]="{'ax-vertical-arrow ax-top-arrow': this.parent.vertical}" (click)="_handlePrevClick($event)">
|
|
3603
|
+
<i class="ax-ic ax-ic-chevron"></i>
|
|
3277
3604
|
</button>
|
|
3278
|
-
<button class="ax-carousel-arrow-next" (click)="_handleNextClick($event)">
|
|
3279
|
-
<i class="ax-ic ax-ic-
|
|
3605
|
+
<button class="ax-carousel-arrow-next" [ngClass]="{'ax-vertical-arrow ax-bottom-arrow': this.parent.vertical}" (click)="_handleNextClick($event)">
|
|
3606
|
+
<i class="ax-ic ax-ic-chevron ax-block ax-rotate-180"></i>
|
|
3280
3607
|
</button>
|
|
3281
3608
|
`,
|
|
3282
3609
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -3301,7 +3628,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3301
3628
|
this._size = 1;
|
|
3302
3629
|
this._dots = [];
|
|
3303
3630
|
this._subs = [];
|
|
3304
|
-
_parent.
|
|
3631
|
+
_parent.perPageChange.subscribe(c => {
|
|
3305
3632
|
this._size = c;
|
|
3306
3633
|
this._generateDots();
|
|
3307
3634
|
});
|
|
@@ -3314,7 +3641,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3314
3641
|
});
|
|
3315
3642
|
}
|
|
3316
3643
|
onViewInit() {
|
|
3317
|
-
this._size = this._parent.
|
|
3644
|
+
this._size = this._parent.perPage;
|
|
3318
3645
|
this._visibleIndex = this._parent.visibleIndex;
|
|
3319
3646
|
this._generateDots();
|
|
3320
3647
|
}
|
|
@@ -3343,7 +3670,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3343
3670
|
}
|
|
3344
3671
|
AXCarouselPagerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselPagerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: AXCarouselComponent }], target: i0.ɵɵFactoryTarget.Component });
|
|
3345
3672
|
AXCarouselPagerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCarouselPagerComponent, selector: "ax-carousel-pager", host: { classAttribute: "ax-carousel-pager" }, usesInheritance: true, ngImport: i0, template: `
|
|
3346
|
-
<button
|
|
3673
|
+
<button *ngFor="let d of _dots;let i=index" [class.ax-state-active]="i==_pageIndex" (click)="_handleClick($event,i)">
|
|
3347
3674
|
</button>
|
|
3348
3675
|
`, isInline: true, directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3349
3676
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselPagerComponent, decorators: [{
|
|
@@ -3351,7 +3678,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3351
3678
|
args: [{
|
|
3352
3679
|
selector: 'ax-carousel-pager',
|
|
3353
3680
|
template: `
|
|
3354
|
-
<button
|
|
3681
|
+
<button *ngFor="let d of _dots;let i=index" [class.ax-state-active]="i==_pageIndex" (click)="_handleClick($event,i)">
|
|
3355
3682
|
</button>
|
|
3356
3683
|
`,
|
|
3357
3684
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -4302,20 +4629,28 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4302
4629
|
value: v
|
|
4303
4630
|
});
|
|
4304
4631
|
}
|
|
4305
|
-
|
|
4306
|
-
super.onViewInit();
|
|
4632
|
+
onInit() {
|
|
4307
4633
|
this._popoverTitle = this.placeholder || AXTranslator.get('datepicker.popover.title');
|
|
4308
|
-
|
|
4309
|
-
|
|
4310
|
-
|
|
4634
|
+
}
|
|
4635
|
+
_updateDisplayText() {
|
|
4636
|
+
this.displayText = this.value ? AXDateTime.convert(this.value, this.type).format(this._format) : null;
|
|
4637
|
+
}
|
|
4638
|
+
_handlePopoverOpened(e) {
|
|
4639
|
+
this._calendar.navTo(this.value || new AXDateTime(new Date(), this.type));
|
|
4311
4640
|
}
|
|
4312
4641
|
_handleArrowClickEvent(e) {
|
|
4313
4642
|
this.toggle();
|
|
4314
4643
|
}
|
|
4315
4644
|
_onValueChanged(oldValue, newValue) {
|
|
4316
|
-
this.
|
|
4645
|
+
this._updateDisplayText();
|
|
4317
4646
|
this.close();
|
|
4318
4647
|
}
|
|
4648
|
+
_onOptionChanged(option) {
|
|
4649
|
+
super._onOptionChanged(option);
|
|
4650
|
+
if (option.name == 'type') {
|
|
4651
|
+
this._updateDisplayText();
|
|
4652
|
+
}
|
|
4653
|
+
}
|
|
4319
4654
|
_handleOnKeydownEvent(e) {
|
|
4320
4655
|
const ignore = () => {
|
|
4321
4656
|
e.preventDefault();
|
|
@@ -4407,16 +4742,19 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4407
4742
|
e.preventDefault();
|
|
4408
4743
|
e.stopPropagation();
|
|
4409
4744
|
}
|
|
4745
|
+
_handleOnNavigate(e) {
|
|
4746
|
+
this.onNavigate.emit(e);
|
|
4747
|
+
}
|
|
4410
4748
|
_highlightPart(input, pos) {
|
|
4411
4749
|
const { start, end } = AXStringUtil.getWordBoundsAtPosition(input.value, pos != null ? pos : input.selectionStart);
|
|
4412
4750
|
input.setSelectionRange(start, end);
|
|
4413
4751
|
}
|
|
4414
4752
|
}
|
|
4415
4753
|
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 });
|
|
4416
|
-
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",
|
|
4754
|
+
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 });
|
|
4417
4755
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDatePickerComponent, decorators: [{
|
|
4418
4756
|
type: Component,
|
|
4419
|
-
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<ax-popover [target]=\"_target\" [position]=\"position\" [openTrigger]=\"'manual'\" [closeTrigger]=\"'clickout'\">\r\n <div class=\"ax-overlay-pane ax-w-
|
|
4757
|
+
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>" }]
|
|
4420
4758
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.AXPlatform }]; }, propDecorators: { popover: [{
|
|
4421
4759
|
type: ViewChild,
|
|
4422
4760
|
args: [AXPopoverComponent, { static: true }]
|
|
@@ -5222,29 +5560,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
5222
5560
|
*
|
|
5223
5561
|
* @category Components
|
|
5224
5562
|
*/
|
|
5225
|
-
class AXMenuComponent extends
|
|
5226
|
-
/**
|
|
5227
|
-
* @ignore
|
|
5228
|
-
*/
|
|
5563
|
+
class AXMenuComponent extends AXBaseMenuMixin {
|
|
5229
5564
|
constructor(elementRef, cdr) {
|
|
5230
5565
|
super(elementRef, cdr);
|
|
5231
5566
|
this.elementRef = elementRef;
|
|
5232
5567
|
this.cdr = cdr;
|
|
5233
|
-
|
|
5234
|
-
|
|
5568
|
+
}
|
|
5569
|
+
onInit() {
|
|
5570
|
+
super.onInit();
|
|
5571
|
+
this._fetchData();
|
|
5572
|
+
}
|
|
5573
|
+
ngAfterViewInit() {
|
|
5574
|
+
super.onViewInit();
|
|
5235
5575
|
}
|
|
5236
5576
|
onMenuClick(e, item) {
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5577
|
+
if (!item[this.disableField]) {
|
|
5578
|
+
this.notActive(this.displayItems);
|
|
5579
|
+
if (item.children?.length > 0 || item[this.hasChildField]) {
|
|
5580
|
+
if (item.children?.length > 0 && item[this.hasChildField]) {
|
|
5581
|
+
item.children = [];
|
|
5582
|
+
}
|
|
5583
|
+
if (item.children?.length > 0) {
|
|
5584
|
+
this.closeChild(item.children);
|
|
5585
|
+
}
|
|
5586
|
+
item.isOpen = !item.isOpen;
|
|
5587
|
+
}
|
|
5588
|
+
item.isActive = !item.isActive;
|
|
5589
|
+
this.onMenuItemClick.emit({
|
|
5590
|
+
component: this,
|
|
5591
|
+
item: item,
|
|
5592
|
+
nativeEvent: e,
|
|
5593
|
+
});
|
|
5594
|
+
if (item.isOpen && item[this.hasChildField]) {
|
|
5595
|
+
this._fetchData(item.id);
|
|
5596
|
+
}
|
|
5240
5597
|
}
|
|
5241
|
-
item.isActive = !item.isActive;
|
|
5242
|
-
item.isOpen = !item.isOpen;
|
|
5243
|
-
this.onMenuItemClick.emit({
|
|
5244
|
-
component: this,
|
|
5245
|
-
item: item,
|
|
5246
|
-
nativeEvent: e,
|
|
5247
|
-
});
|
|
5248
5598
|
e.stopPropagation();
|
|
5249
5599
|
e.preventDefault();
|
|
5250
5600
|
}
|
|
@@ -5266,28 +5616,24 @@ class AXMenuComponent extends AXBaseComponentMixin {
|
|
|
5266
5616
|
}
|
|
5267
5617
|
}
|
|
5268
5618
|
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 });
|
|
5269
|
-
AXMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXMenuComponent, selector: "ax-menu", inputs: { items: "items" }, outputs: {
|
|
5619
|
+
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 });
|
|
5270
5620
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuComponent, decorators: [{
|
|
5271
5621
|
type: Component,
|
|
5272
|
-
args: [{ selector: 'ax-menu', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class:
|
|
5273
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }
|
|
5274
|
-
type: Input
|
|
5275
|
-
}], onMenuItemClick: [{
|
|
5276
|
-
type: Output
|
|
5277
|
-
}] } });
|
|
5622
|
+
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>" }]
|
|
5623
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
|
|
5278
5624
|
|
|
5279
5625
|
const COMPONENT$9 = [AXMenuComponent];
|
|
5280
5626
|
const MODULES$9 = [CommonModule];
|
|
5281
5627
|
class AXMenuModule {
|
|
5282
5628
|
}
|
|
5283
5629
|
AXMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5284
|
-
AXMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, declarations: [AXMenuComponent], imports: [CommonModule, AXIconModule], exports: [AXMenuComponent] });
|
|
5285
|
-
AXMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, providers: [], imports: [[...MODULES$9, AXIconModule]] });
|
|
5630
|
+
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] });
|
|
5631
|
+
AXMenuModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, providers: [], imports: [[...MODULES$9, AXIconModule, AXLoadingModule, AXTranslationModule]] });
|
|
5286
5632
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, decorators: [{
|
|
5287
5633
|
type: NgModule,
|
|
5288
5634
|
args: [{
|
|
5289
5635
|
declarations: [...COMPONENT$9],
|
|
5290
|
-
imports: [...MODULES$9, AXIconModule],
|
|
5636
|
+
imports: [...MODULES$9, AXIconModule, AXLoadingModule, AXTranslationModule],
|
|
5291
5637
|
exports: [...COMPONENT$9],
|
|
5292
5638
|
providers: [],
|
|
5293
5639
|
}]
|
|
@@ -5608,6 +5954,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
5608
5954
|
}]
|
|
5609
5955
|
}] });
|
|
5610
5956
|
|
|
5957
|
+
class AXPickerComponent extends AXBaseComponent {
|
|
5958
|
+
/**
|
|
5959
|
+
* @ignore
|
|
5960
|
+
*/
|
|
5961
|
+
constructor(elementRef, cdr) {
|
|
5962
|
+
super(elementRef, cdr);
|
|
5963
|
+
this.items = [];
|
|
5964
|
+
}
|
|
5965
|
+
}
|
|
5966
|
+
AXPickerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5967
|
+
AXPickerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXPickerComponent, selector: "ax-picker", inputs: { items: "items" }, host: { classAttribute: "ax-picker" }, usesInheritance: true, ngImport: i0, template: "<ax-carousel [vertical]=\"true\" [centered]=\"true\">\r\n <ax-carousel-item class=\"ax-picker-item\" *ngFor=\"let item of items\">\r\n {{item.text}}\r\n </ax-carousel-item>\r\n</ax-carousel>", components: [{ type: AXCarouselComponent, selector: "ax-carousel", inputs: ["perMove", "focus", "heightRatio", "height", "width", "perPage", "gap", "autoplay", "snap", "autoWidth", "drag", "wheel", "interval", "padding", "centered", "vertical", "loop", "rewind"], outputs: ["onOptionsChanged", "onSlideChanged", "perMoveChange", "focusChange", "heightRatioChange", "heightChange", "widthChange", "perPageChange", "autoplayChange", "snapChange", "autoWidthChange", "dragChange", "wheelChange", "intervalChange", "paddingChange", "centeredChange", "verticalChange", "loopChange", "rewindChange", "onItemsChanged"] }, { type: AXCarouselItemComponent, selector: "ax-carousel-item" }], directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }] });
|
|
5968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerComponent, decorators: [{
|
|
5969
|
+
type: Component,
|
|
5970
|
+
args: [{ selector: 'ax-picker', host: { class: 'ax-picker' }, template: "<ax-carousel [vertical]=\"true\" [centered]=\"true\">\r\n <ax-carousel-item class=\"ax-picker-item\" *ngFor=\"let item of items\">\r\n {{item.text}}\r\n </ax-carousel-item>\r\n</ax-carousel>" }]
|
|
5971
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { items: [{
|
|
5972
|
+
type: Input
|
|
5973
|
+
}] } });
|
|
5974
|
+
|
|
5975
|
+
class AXPickerModule {
|
|
5976
|
+
}
|
|
5977
|
+
AXPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5978
|
+
AXPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, declarations: [AXPickerComponent], imports: [CommonModule, AXCarouselModule], exports: [AXPickerComponent] });
|
|
5979
|
+
AXPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, providers: [], imports: [[CommonModule, AXCarouselModule]] });
|
|
5980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, decorators: [{
|
|
5981
|
+
type: NgModule,
|
|
5982
|
+
args: [{
|
|
5983
|
+
declarations: [AXPickerComponent],
|
|
5984
|
+
imports: [CommonModule, AXCarouselModule],
|
|
5985
|
+
exports: [AXPickerComponent],
|
|
5986
|
+
providers: [],
|
|
5987
|
+
}]
|
|
5988
|
+
}] });
|
|
5989
|
+
|
|
5611
5990
|
/**
|
|
5612
5991
|
* The Button is a component which detects user interaction and triggers a corresponding event
|
|
5613
5992
|
*
|
|
@@ -6490,8 +6869,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
6490
6869
|
|
|
6491
6870
|
const AXBaseTabItemMixin = _ClickableComponenetMixin(AXBaseComponent);
|
|
6492
6871
|
class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
6493
|
-
constructor(
|
|
6494
|
-
super(
|
|
6872
|
+
constructor(_elementRef, _cdr) {
|
|
6873
|
+
super(_elementRef, _cdr);
|
|
6495
6874
|
this.activeChange = new EventEmitter();
|
|
6496
6875
|
this._active = false;
|
|
6497
6876
|
this.disabledChange = new EventEmitter();
|
|
@@ -6503,7 +6882,10 @@ class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
|
6503
6882
|
set active(value) {
|
|
6504
6883
|
this._setOption({
|
|
6505
6884
|
name: 'active',
|
|
6506
|
-
value
|
|
6885
|
+
value,
|
|
6886
|
+
afterCallback: () => {
|
|
6887
|
+
this._cdr.markForCheck();
|
|
6888
|
+
}
|
|
6507
6889
|
});
|
|
6508
6890
|
}
|
|
6509
6891
|
get disabled() {
|
|
@@ -6613,10 +6995,10 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6613
6995
|
return this._contentTabs.toArray();
|
|
6614
6996
|
}
|
|
6615
6997
|
get selectedIndex() {
|
|
6616
|
-
return this.items.
|
|
6998
|
+
return this.items.indexOf(this._selectedItem);
|
|
6617
6999
|
}
|
|
6618
7000
|
get selectedItem() {
|
|
6619
|
-
return this.
|
|
7001
|
+
return this._selectedItem;
|
|
6620
7002
|
}
|
|
6621
7003
|
onRenderCssClass() {
|
|
6622
7004
|
const classList = Array.from(this._getHostElement().classList);
|
|
@@ -6642,6 +7024,7 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6642
7024
|
//
|
|
6643
7025
|
if (!tab || this.selectedItem == tabItem)
|
|
6644
7026
|
return;
|
|
7027
|
+
this._selectedItem = tabItem;
|
|
6645
7028
|
//
|
|
6646
7029
|
this.items.forEach(c => c.active = false);
|
|
6647
7030
|
tabItem.active = true;
|
|
@@ -7625,5 +8008,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
7625
8008
|
* Generated bundle index. Do not edit.
|
|
7626
8009
|
*/
|
|
7627
8010
|
|
|
7628
|
-
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,
|
|
8011
|
+
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 };
|
|
7629
8012
|
//# sourceMappingURL=acorex-components.mjs.map
|