@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
|
@@ -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
|
|
@@ -1111,6 +1244,12 @@ class AXFocusEvent extends AXHtmlEvent {
|
|
|
1111
1244
|
* @category Events
|
|
1112
1245
|
*/
|
|
1113
1246
|
class AXSelectionValueChangedEvent extends AXValueChangedEvent {
|
|
1247
|
+
}
|
|
1248
|
+
/**
|
|
1249
|
+
* Contains range start & end values
|
|
1250
|
+
* @category Events
|
|
1251
|
+
*/
|
|
1252
|
+
class AXRangeChangedEvent extends AXEvent {
|
|
1114
1253
|
}
|
|
1115
1254
|
|
|
1116
1255
|
const AX_STYLE_TYPES = ['info', 'danger', 'success', 'warning'];
|
|
@@ -2531,9 +2670,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2531
2670
|
}]
|
|
2532
2671
|
}] });
|
|
2533
2672
|
|
|
2673
|
+
/**
|
|
2674
|
+
* Contains native event
|
|
2675
|
+
* @category Events
|
|
2676
|
+
*/
|
|
2677
|
+
class AXCalendarNavigateEvent extends AXRangeChangedEvent {
|
|
2678
|
+
}
|
|
2534
2679
|
class AXCalendarBaseComponent extends AXBaseComponent {
|
|
2535
2680
|
constructor(elementRef, cdr) {
|
|
2536
2681
|
super(elementRef, cdr);
|
|
2682
|
+
this.onSlotClick = new EventEmitter();
|
|
2683
|
+
this.onNavigate = new EventEmitter();
|
|
2537
2684
|
this.activeViewChange = new EventEmitter();
|
|
2538
2685
|
this._activeView = 'days';
|
|
2539
2686
|
this.typeChange = new EventEmitter();
|
|
@@ -2601,7 +2748,11 @@ AXCalendarBaseComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0",
|
|
|
2601
2748
|
AXCalendarBaseComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarBaseComponent });
|
|
2602
2749
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarBaseComponent, decorators: [{
|
|
2603
2750
|
type: Injectable
|
|
2604
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
2751
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { onSlotClick: [{
|
|
2752
|
+
type: Output
|
|
2753
|
+
}], onNavigate: [{
|
|
2754
|
+
type: Output
|
|
2755
|
+
}], activeViewChange: [{
|
|
2605
2756
|
type: Output
|
|
2606
2757
|
}], activeView: [{
|
|
2607
2758
|
type: Input
|
|
@@ -2639,7 +2790,7 @@ const CALENDAR_INPUTS = [
|
|
|
2639
2790
|
'type',
|
|
2640
2791
|
'holidayDates',
|
|
2641
2792
|
];
|
|
2642
|
-
const CALENDAR_OUTPUTS = ['depthChange', 'typeChange', '
|
|
2793
|
+
const CALENDAR_OUTPUTS = ['depthChange', 'typeChange', 'disabledDatesChange', 'holidayDatesChange', 'onNavigate'];
|
|
2643
2794
|
|
|
2644
2795
|
const AXCalendarComponentMixin = _ClickableComponenetMixin(_InteractiveComponenetMixin(_ValueComponenetMixin(AXCalendarBaseComponent)));
|
|
2645
2796
|
class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
@@ -2651,7 +2802,7 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2651
2802
|
this._todayText = '';
|
|
2652
2803
|
this._slots = [];
|
|
2653
2804
|
this._dayNames = [];
|
|
2654
|
-
this.
|
|
2805
|
+
this._isUserInteraction = false;
|
|
2655
2806
|
}
|
|
2656
2807
|
get _viewRange() {
|
|
2657
2808
|
const current = this._viewStartDate || this._today;
|
|
@@ -2664,7 +2815,6 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2664
2815
|
case 'months':
|
|
2665
2816
|
return new AXDateTimeRange(current.startOf('year'), current.endOf('year').add('day', -1));
|
|
2666
2817
|
default:
|
|
2667
|
-
//return new AXDateTimeRange(current.startOf('month').startOf('week'), current.endOf('month').endOf('week'));
|
|
2668
2818
|
return new AXDateTimeRange(current.startOf('month'), current.endOf('month'));
|
|
2669
2819
|
}
|
|
2670
2820
|
}
|
|
@@ -2678,7 +2828,8 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2678
2828
|
}
|
|
2679
2829
|
onInit() {
|
|
2680
2830
|
this._initValues();
|
|
2681
|
-
this.
|
|
2831
|
+
if (!this.value)
|
|
2832
|
+
this.goToday();
|
|
2682
2833
|
}
|
|
2683
2834
|
_genearteSlots() {
|
|
2684
2835
|
if (!this._viewStartDate)
|
|
@@ -2745,8 +2896,8 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2745
2896
|
r.date = d.date;
|
|
2746
2897
|
r.text = d.dayOfMonth;
|
|
2747
2898
|
r.tooltip = d.format();
|
|
2748
|
-
r.disabled = (this.min && d.compare(this.min, 'day') == -1) || (this.max && d.compare(this.max, 'day') == 1);
|
|
2749
|
-
if (r.disabled
|
|
2899
|
+
r.disabled = ((this.min && d.compare(this.min, 'day') == -1) || (this.max && d.compare(this.max, 'day') == 1)) || this.isDisabled(d);
|
|
2900
|
+
if (r.disabled) {
|
|
2750
2901
|
r.cssClass = {
|
|
2751
2902
|
'ax-state-disabled': true,
|
|
2752
2903
|
};
|
|
@@ -2768,10 +2919,14 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2768
2919
|
}
|
|
2769
2920
|
}
|
|
2770
2921
|
_handlePrevClick(e) {
|
|
2922
|
+
this._isUserInteraction = true;
|
|
2771
2923
|
this.prev();
|
|
2924
|
+
this._isUserInteraction = false;
|
|
2772
2925
|
}
|
|
2773
2926
|
_handleNextClick(e) {
|
|
2927
|
+
this._isUserInteraction = true;
|
|
2774
2928
|
this.next();
|
|
2929
|
+
this._isUserInteraction = false;
|
|
2775
2930
|
}
|
|
2776
2931
|
_handleSlotClick(e, slot) {
|
|
2777
2932
|
if (slot.disabled || this.disabled)
|
|
@@ -2796,14 +2951,17 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2796
2951
|
this.onSlotClick.emit({
|
|
2797
2952
|
component: this,
|
|
2798
2953
|
item: slot.date,
|
|
2954
|
+
isUserInteraction: true,
|
|
2799
2955
|
nativeEvent: e
|
|
2800
2956
|
});
|
|
2801
2957
|
}
|
|
2802
2958
|
_handleNavClick(e) {
|
|
2959
|
+
this._isUserInteraction = true;
|
|
2803
2960
|
if (this.activeView == 'days')
|
|
2804
2961
|
this.activeView = 'months';
|
|
2805
2962
|
else if (this.activeView == 'months')
|
|
2806
2963
|
this.activeView = 'years';
|
|
2964
|
+
this._isUserInteraction = false;
|
|
2807
2965
|
}
|
|
2808
2966
|
_onOptionChanged(option) {
|
|
2809
2967
|
if (option.name == 'depth' || option.name == 'activeView' || option.name == 'disabledDates' || option.name == 'holidayDates') {
|
|
@@ -2818,8 +2976,10 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2818
2976
|
this._genearteSlots();
|
|
2819
2977
|
}
|
|
2820
2978
|
_handleGoToday() {
|
|
2979
|
+
this._isUserInteraction = true;
|
|
2821
2980
|
this._setDate(this._today.date);
|
|
2822
2981
|
this.goToday();
|
|
2982
|
+
this._isUserInteraction = false;
|
|
2823
2983
|
}
|
|
2824
2984
|
next() {
|
|
2825
2985
|
this._navNextPrev(false);
|
|
@@ -2828,8 +2988,9 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2828
2988
|
this._navNextPrev(true);
|
|
2829
2989
|
}
|
|
2830
2990
|
focus() {
|
|
2831
|
-
|
|
2832
|
-
|
|
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();
|
|
2833
2994
|
}
|
|
2834
2995
|
_navNextPrev(prev) {
|
|
2835
2996
|
const sign = (prev ? -1 : 1);
|
|
@@ -2844,8 +3005,20 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2844
3005
|
this.navTo(this._today);
|
|
2845
3006
|
}
|
|
2846
3007
|
navTo(date) {
|
|
3008
|
+
var _a, _b;
|
|
2847
3009
|
this._viewStartDate = AXDateTime.convert(date, this._today.calendar.name()).startOf();
|
|
3010
|
+
const vr = this._viewRange;
|
|
3011
|
+
this.onNavigate.emit({
|
|
3012
|
+
component: this,
|
|
3013
|
+
isUserInteraction: this._isUserInteraction,
|
|
3014
|
+
start: (_a = vr.startTime) === null || _a === void 0 ? void 0 : _a.date,
|
|
3015
|
+
end: (_b = vr.endTime) === null || _b === void 0 ? void 0 : _b.date,
|
|
3016
|
+
htmlElement: this._getHostElement()
|
|
3017
|
+
});
|
|
2848
3018
|
this._genearteSlots();
|
|
3019
|
+
setTimeout(() => {
|
|
3020
|
+
this.focus();
|
|
3021
|
+
}, 50);
|
|
2849
3022
|
}
|
|
2850
3023
|
get __hostClass() {
|
|
2851
3024
|
const _classes = {
|
|
@@ -2879,13 +3052,11 @@ class AXCalendarComponent extends AXCalendarComponentMixin {
|
|
|
2879
3052
|
}
|
|
2880
3053
|
}
|
|
2881
3054
|
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 });
|
|
2882
|
-
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",
|
|
3055
|
+
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 });
|
|
2883
3056
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCalendarComponent, decorators: [{
|
|
2884
3057
|
type: Component,
|
|
2885
|
-
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
|
|
2886
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
2887
|
-
type: Output
|
|
2888
|
-
}], __hostClass: [{
|
|
3058
|
+
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>" }]
|
|
3059
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { __hostClass: [{
|
|
2889
3060
|
type: HostBinding,
|
|
2890
3061
|
args: ['class']
|
|
2891
3062
|
}] } });
|
|
@@ -2951,16 +3122,22 @@ class AXCarouselSplideJS {
|
|
|
2951
3122
|
type: this._instance.loop && !this._instance.rewind ? 'loop' : 'slide',
|
|
2952
3123
|
rewind: this._instance.rewind,
|
|
2953
3124
|
gap: this._instance.gap,
|
|
2954
|
-
perPage: this._instance.
|
|
2955
|
-
perMove:
|
|
3125
|
+
perPage: this._instance.perPage,
|
|
3126
|
+
perMove: this._instance.perMove,
|
|
2956
3127
|
start: this._instance.visibleIndex,
|
|
2957
3128
|
interval: this._instance.interval,
|
|
2958
3129
|
direction: this._instance.vertical ? 'ttb' : (this._instance.rtl ? 'rtl' : 'ltr'),
|
|
2959
3130
|
arrows: false,
|
|
2960
3131
|
pagination: false,
|
|
2961
3132
|
padding: this._instance.padding,
|
|
2962
|
-
autoWidth:
|
|
2963
|
-
focus: this._instance.centered ? 'center' :
|
|
3133
|
+
autoWidth: this._instance.autoWidth,
|
|
3134
|
+
focus: this._instance.centered ? 'center' : this._instance.focus,
|
|
3135
|
+
height: this._instance.height,
|
|
3136
|
+
heightRatio: this._instance.heightRatio,
|
|
3137
|
+
wheel: this._instance.wheel,
|
|
3138
|
+
width: this._instance.width,
|
|
3139
|
+
drag: this._instance.drag,
|
|
3140
|
+
snap: this._instance.snap,
|
|
2964
3141
|
};
|
|
2965
3142
|
}
|
|
2966
3143
|
next() {
|
|
@@ -3004,11 +3181,29 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3004
3181
|
this.core = core;
|
|
3005
3182
|
this.onOptionsChanged = new EventEmitter();
|
|
3006
3183
|
this.onSlideChanged = new EventEmitter();
|
|
3007
|
-
this.
|
|
3008
|
-
this.
|
|
3184
|
+
this.perMoveChange = new EventEmitter();
|
|
3185
|
+
this._perMove = 1;
|
|
3186
|
+
this.focusChange = new EventEmitter();
|
|
3187
|
+
this._focus = 0;
|
|
3188
|
+
this.heightRatioChange = new EventEmitter();
|
|
3189
|
+
this._heightRatio = 0;
|
|
3190
|
+
this.heightChange = new EventEmitter();
|
|
3191
|
+
this._height = 'auto';
|
|
3192
|
+
this.widthChange = new EventEmitter();
|
|
3193
|
+
this._width = 'fit-content';
|
|
3194
|
+
this.perPageChange = new EventEmitter();
|
|
3195
|
+
this._perPage = 1;
|
|
3009
3196
|
this.gap = 10;
|
|
3010
3197
|
this.autoplayChange = new EventEmitter();
|
|
3011
3198
|
this._autoplay = false;
|
|
3199
|
+
this.snapChange = new EventEmitter();
|
|
3200
|
+
this._snap = false;
|
|
3201
|
+
this.autoWidthChange = new EventEmitter();
|
|
3202
|
+
this._autoWidth = true;
|
|
3203
|
+
this.dragChange = new EventEmitter();
|
|
3204
|
+
this._drag = true;
|
|
3205
|
+
this.wheelChange = new EventEmitter();
|
|
3206
|
+
this._wheel = false;
|
|
3012
3207
|
this.intervalChange = new EventEmitter();
|
|
3013
3208
|
this._interval = 3000;
|
|
3014
3209
|
this.paddingChange = new EventEmitter();
|
|
@@ -3025,17 +3220,70 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3025
3220
|
this.onItemsChanged = new EventEmitter();
|
|
3026
3221
|
this._items = [];
|
|
3027
3222
|
}
|
|
3028
|
-
get
|
|
3029
|
-
return this.
|
|
3223
|
+
get perMove() {
|
|
3224
|
+
return this._perMove;
|
|
3030
3225
|
}
|
|
3031
|
-
set
|
|
3226
|
+
set perMove(v) {
|
|
3032
3227
|
const val = Math.max(1, coerceNumberProperty(v));
|
|
3033
|
-
if (val != this.
|
|
3034
|
-
this.
|
|
3035
|
-
if (this.
|
|
3228
|
+
if (val != this._perMove) {
|
|
3229
|
+
this._perMove = val;
|
|
3230
|
+
if (this._perMove > 1) {
|
|
3036
3231
|
this._vertical = false;
|
|
3037
3232
|
}
|
|
3038
|
-
this.
|
|
3233
|
+
this.perMoveChange.emit(this.perMove);
|
|
3234
|
+
this.onOptionsChanged.emit();
|
|
3235
|
+
}
|
|
3236
|
+
}
|
|
3237
|
+
get focus() {
|
|
3238
|
+
return this._focus;
|
|
3239
|
+
}
|
|
3240
|
+
set focus(v) {
|
|
3241
|
+
if (v != this._focus) {
|
|
3242
|
+
this._focus = v;
|
|
3243
|
+
this.paddingChange.emit(v);
|
|
3244
|
+
this.onOptionsChanged.emit();
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3247
|
+
get heightRatio() {
|
|
3248
|
+
return this._heightRatio;
|
|
3249
|
+
}
|
|
3250
|
+
set heightRatio(v) {
|
|
3251
|
+
if (v != this._heightRatio) {
|
|
3252
|
+
this._heightRatio = v;
|
|
3253
|
+
this.paddingChange.emit(v);
|
|
3254
|
+
this.onOptionsChanged.emit();
|
|
3255
|
+
}
|
|
3256
|
+
}
|
|
3257
|
+
get height() {
|
|
3258
|
+
return this._height;
|
|
3259
|
+
}
|
|
3260
|
+
set height(v) {
|
|
3261
|
+
const val = v;
|
|
3262
|
+
if (val != this._height) {
|
|
3263
|
+
this._height = val;
|
|
3264
|
+
this.heightChange.emit(this.height);
|
|
3265
|
+
this.onOptionsChanged.emit();
|
|
3266
|
+
}
|
|
3267
|
+
}
|
|
3268
|
+
get width() {
|
|
3269
|
+
return this._width;
|
|
3270
|
+
}
|
|
3271
|
+
set width(v) {
|
|
3272
|
+
const val = v;
|
|
3273
|
+
if (val != this._width) {
|
|
3274
|
+
this._width = val;
|
|
3275
|
+
this.widthChange.emit(this.width);
|
|
3276
|
+
this.onOptionsChanged.emit();
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
get perPage() {
|
|
3280
|
+
return this._perPage;
|
|
3281
|
+
}
|
|
3282
|
+
set perPage(v) {
|
|
3283
|
+
const val = v;
|
|
3284
|
+
if (val != this._perPage) {
|
|
3285
|
+
this._perPage = val;
|
|
3286
|
+
this.perPageChange.emit(this.perPage);
|
|
3039
3287
|
this.onOptionsChanged.emit();
|
|
3040
3288
|
}
|
|
3041
3289
|
}
|
|
@@ -3050,6 +3298,50 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3050
3298
|
this.onOptionsChanged.emit();
|
|
3051
3299
|
}
|
|
3052
3300
|
}
|
|
3301
|
+
get snap() {
|
|
3302
|
+
return this._snap;
|
|
3303
|
+
}
|
|
3304
|
+
set snap(v) {
|
|
3305
|
+
const val = coerceBooleanProperty(v);
|
|
3306
|
+
if (val != this._snap) {
|
|
3307
|
+
this._snap = val;
|
|
3308
|
+
this.snapChange.emit(this.snap);
|
|
3309
|
+
this.onOptionsChanged.emit();
|
|
3310
|
+
}
|
|
3311
|
+
}
|
|
3312
|
+
get autoWidth() {
|
|
3313
|
+
return this._autoWidth;
|
|
3314
|
+
}
|
|
3315
|
+
set autoWidth(v) {
|
|
3316
|
+
const val = coerceBooleanProperty(v);
|
|
3317
|
+
if (val != this._autoWidth) {
|
|
3318
|
+
this._autoWidth = val;
|
|
3319
|
+
this.autoWidthChange.emit(this.autoWidth);
|
|
3320
|
+
this.onOptionsChanged.emit();
|
|
3321
|
+
}
|
|
3322
|
+
}
|
|
3323
|
+
get drag() {
|
|
3324
|
+
return this._drag;
|
|
3325
|
+
}
|
|
3326
|
+
set drag(v) {
|
|
3327
|
+
const val = v;
|
|
3328
|
+
if (val != this._drag) {
|
|
3329
|
+
this._drag = val;
|
|
3330
|
+
this.dragChange.emit(this.drag);
|
|
3331
|
+
this.onOptionsChanged.emit();
|
|
3332
|
+
}
|
|
3333
|
+
}
|
|
3334
|
+
get wheel() {
|
|
3335
|
+
return this._wheel;
|
|
3336
|
+
}
|
|
3337
|
+
set wheel(v) {
|
|
3338
|
+
const val = coerceBooleanProperty(v);
|
|
3339
|
+
if (val != this._wheel) {
|
|
3340
|
+
this._wheel = val;
|
|
3341
|
+
this.wheelChange.emit(this.wheel);
|
|
3342
|
+
this.onOptionsChanged.emit();
|
|
3343
|
+
}
|
|
3344
|
+
}
|
|
3053
3345
|
get interval() {
|
|
3054
3346
|
return this._interval;
|
|
3055
3347
|
}
|
|
@@ -3177,7 +3469,7 @@ class AXCarouselComponent extends AXBaseComponentMixin {
|
|
|
3177
3469
|
}
|
|
3178
3470
|
}
|
|
3179
3471
|
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 });
|
|
3180
|
-
AXCarouselComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXCarouselComponent, selector: "ax-carousel", inputs: {
|
|
3472
|
+
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: [{
|
|
3181
3473
|
provide: AXCarouselCore,
|
|
3182
3474
|
useClass: AXCarouselSplideJS
|
|
3183
3475
|
}], 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 });
|
|
@@ -3191,9 +3483,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3191
3483
|
type: Output
|
|
3192
3484
|
}], onSlideChanged: [{
|
|
3193
3485
|
type: Output
|
|
3194
|
-
}],
|
|
3486
|
+
}], perMoveChange: [{
|
|
3487
|
+
type: Output
|
|
3488
|
+
}], perMove: [{
|
|
3489
|
+
type: Input
|
|
3490
|
+
}], focusChange: [{
|
|
3491
|
+
type: Output
|
|
3492
|
+
}], focus: [{
|
|
3493
|
+
type: Input
|
|
3494
|
+
}], heightRatioChange: [{
|
|
3495
|
+
type: Output
|
|
3496
|
+
}], heightRatio: [{
|
|
3497
|
+
type: Input
|
|
3498
|
+
}], heightChange: [{
|
|
3499
|
+
type: Output
|
|
3500
|
+
}], height: [{
|
|
3501
|
+
type: Input
|
|
3502
|
+
}], widthChange: [{
|
|
3503
|
+
type: Output
|
|
3504
|
+
}], width: [{
|
|
3505
|
+
type: Input
|
|
3506
|
+
}], perPageChange: [{
|
|
3195
3507
|
type: Output
|
|
3196
|
-
}],
|
|
3508
|
+
}], perPage: [{
|
|
3197
3509
|
type: Input
|
|
3198
3510
|
}], gap: [{
|
|
3199
3511
|
type: Input
|
|
@@ -3201,6 +3513,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3201
3513
|
type: Output
|
|
3202
3514
|
}], autoplay: [{
|
|
3203
3515
|
type: Input
|
|
3516
|
+
}], snapChange: [{
|
|
3517
|
+
type: Output
|
|
3518
|
+
}], snap: [{
|
|
3519
|
+
type: Input
|
|
3520
|
+
}], autoWidthChange: [{
|
|
3521
|
+
type: Output
|
|
3522
|
+
}], autoWidth: [{
|
|
3523
|
+
type: Input
|
|
3524
|
+
}], dragChange: [{
|
|
3525
|
+
type: Output
|
|
3526
|
+
}], drag: [{
|
|
3527
|
+
type: Input
|
|
3528
|
+
}], wheelChange: [{
|
|
3529
|
+
type: Output
|
|
3530
|
+
}], wheel: [{
|
|
3531
|
+
type: Input
|
|
3204
3532
|
}], intervalChange: [{
|
|
3205
3533
|
type: Output
|
|
3206
3534
|
}], interval: [{
|
|
@@ -3265,23 +3593,23 @@ class AXCarouselArrowsComponent extends AXBaseComponentMixin {
|
|
|
3265
3593
|
}
|
|
3266
3594
|
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 });
|
|
3267
3595
|
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: `
|
|
3268
|
-
<button class="ax-carousel-arrow-prev" (click)="_handlePrevClick($event)">
|
|
3269
|
-
<i class="ax-ic ax-ic-
|
|
3596
|
+
<button class="ax-carousel-arrow-prev" [ngClass]="{'ax-vertical-arrow ax-top-arrow': this.parent.vertical}" (click)="_handlePrevClick($event)">
|
|
3597
|
+
<i class="ax-ic ax-ic-chevron"></i>
|
|
3270
3598
|
</button>
|
|
3271
|
-
<button class="ax-carousel-arrow-next" (click)="_handleNextClick($event)">
|
|
3272
|
-
<i class="ax-ic ax-ic-
|
|
3599
|
+
<button class="ax-carousel-arrow-next" [ngClass]="{'ax-vertical-arrow ax-bottom-arrow': this.parent.vertical}" (click)="_handleNextClick($event)">
|
|
3600
|
+
<i class="ax-ic ax-ic-chevron ax-block ax-rotate-180"></i>
|
|
3273
3601
|
</button>
|
|
3274
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3602
|
+
`, isInline: true, directives: [{ type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3275
3603
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselArrowsComponent, decorators: [{
|
|
3276
3604
|
type: Component,
|
|
3277
3605
|
args: [{
|
|
3278
3606
|
selector: 'ax-carousel-arrows',
|
|
3279
3607
|
template: `
|
|
3280
|
-
<button class="ax-carousel-arrow-prev" (click)="_handlePrevClick($event)">
|
|
3281
|
-
<i class="ax-ic ax-ic-
|
|
3608
|
+
<button class="ax-carousel-arrow-prev" [ngClass]="{'ax-vertical-arrow ax-top-arrow': this.parent.vertical}" (click)="_handlePrevClick($event)">
|
|
3609
|
+
<i class="ax-ic ax-ic-chevron"></i>
|
|
3282
3610
|
</button>
|
|
3283
|
-
<button class="ax-carousel-arrow-next" (click)="_handleNextClick($event)">
|
|
3284
|
-
<i class="ax-ic ax-ic-
|
|
3611
|
+
<button class="ax-carousel-arrow-next" [ngClass]="{'ax-vertical-arrow ax-bottom-arrow': this.parent.vertical}" (click)="_handleNextClick($event)">
|
|
3612
|
+
<i class="ax-ic ax-ic-chevron ax-block ax-rotate-180"></i>
|
|
3285
3613
|
</button>
|
|
3286
3614
|
`,
|
|
3287
3615
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -3308,7 +3636,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3308
3636
|
this._size = 1;
|
|
3309
3637
|
this._dots = [];
|
|
3310
3638
|
this._subs = [];
|
|
3311
|
-
_parent.
|
|
3639
|
+
_parent.perPageChange.subscribe(c => {
|
|
3312
3640
|
this._size = c;
|
|
3313
3641
|
this._generateDots();
|
|
3314
3642
|
});
|
|
@@ -3321,7 +3649,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3321
3649
|
});
|
|
3322
3650
|
}
|
|
3323
3651
|
onViewInit() {
|
|
3324
|
-
this._size = this._parent.
|
|
3652
|
+
this._size = this._parent.perPage;
|
|
3325
3653
|
this._visibleIndex = this._parent.visibleIndex;
|
|
3326
3654
|
this._generateDots();
|
|
3327
3655
|
}
|
|
@@ -3350,7 +3678,7 @@ class AXCarouselPagerComponent extends AXBaseComponentMixin {
|
|
|
3350
3678
|
}
|
|
3351
3679
|
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 });
|
|
3352
3680
|
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: `
|
|
3353
|
-
<button
|
|
3681
|
+
<button *ngFor="let d of _dots;let i=index" [class.ax-state-active]="i==_pageIndex" (click)="_handleClick($event,i)">
|
|
3354
3682
|
</button>
|
|
3355
3683
|
`, isInline: true, directives: [{ type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
3356
3684
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXCarouselPagerComponent, decorators: [{
|
|
@@ -3358,7 +3686,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
3358
3686
|
args: [{
|
|
3359
3687
|
selector: 'ax-carousel-pager',
|
|
3360
3688
|
template: `
|
|
3361
|
-
<button
|
|
3689
|
+
<button *ngFor="let d of _dots;let i=index" [class.ax-state-active]="i==_pageIndex" (click)="_handleClick($event,i)">
|
|
3362
3690
|
</button>
|
|
3363
3691
|
`,
|
|
3364
3692
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -4315,20 +4643,28 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4315
4643
|
value: v
|
|
4316
4644
|
});
|
|
4317
4645
|
}
|
|
4318
|
-
|
|
4319
|
-
super.onViewInit();
|
|
4646
|
+
onInit() {
|
|
4320
4647
|
this._popoverTitle = this.placeholder || AXTranslator.get('datepicker.popover.title');
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4648
|
+
}
|
|
4649
|
+
_updateDisplayText() {
|
|
4650
|
+
this.displayText = this.value ? AXDateTime.convert(this.value, this.type).format(this._format) : null;
|
|
4651
|
+
}
|
|
4652
|
+
_handlePopoverOpened(e) {
|
|
4653
|
+
this._calendar.navTo(this.value || new AXDateTime(new Date(), this.type));
|
|
4324
4654
|
}
|
|
4325
4655
|
_handleArrowClickEvent(e) {
|
|
4326
4656
|
this.toggle();
|
|
4327
4657
|
}
|
|
4328
4658
|
_onValueChanged(oldValue, newValue) {
|
|
4329
|
-
this.
|
|
4659
|
+
this._updateDisplayText();
|
|
4330
4660
|
this.close();
|
|
4331
4661
|
}
|
|
4662
|
+
_onOptionChanged(option) {
|
|
4663
|
+
super._onOptionChanged(option);
|
|
4664
|
+
if (option.name == 'type') {
|
|
4665
|
+
this._updateDisplayText();
|
|
4666
|
+
}
|
|
4667
|
+
}
|
|
4332
4668
|
_handleOnKeydownEvent(e) {
|
|
4333
4669
|
var _a, _b;
|
|
4334
4670
|
const ignore = () => {
|
|
@@ -4421,16 +4757,19 @@ class AXDatePickerComponent extends AXBaseDatePickerMixin {
|
|
|
4421
4757
|
e.preventDefault();
|
|
4422
4758
|
e.stopPropagation();
|
|
4423
4759
|
}
|
|
4760
|
+
_handleOnNavigate(e) {
|
|
4761
|
+
this.onNavigate.emit(e);
|
|
4762
|
+
}
|
|
4424
4763
|
_highlightPart(input, pos) {
|
|
4425
4764
|
const { start, end } = AXStringUtil.getWordBoundsAtPosition(input.value, pos != null ? pos : input.selectionStart);
|
|
4426
4765
|
input.setSelectionRange(start, end);
|
|
4427
4766
|
}
|
|
4428
4767
|
}
|
|
4429
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 });
|
|
4430
|
-
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",
|
|
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 });
|
|
4431
4770
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDatePickerComponent, decorators: [{
|
|
4432
4771
|
type: Component,
|
|
4433
|
-
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-
|
|
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>" }]
|
|
4434
4773
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i1$3.AXPlatform }]; }, propDecorators: { popover: [{
|
|
4435
4774
|
type: ViewChild,
|
|
4436
4775
|
args: [AXPopoverComponent, { static: true }]
|
|
@@ -5241,30 +5580,42 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
5241
5580
|
*
|
|
5242
5581
|
* @category Components
|
|
5243
5582
|
*/
|
|
5244
|
-
class AXMenuComponent extends
|
|
5245
|
-
/**
|
|
5246
|
-
* @ignore
|
|
5247
|
-
*/
|
|
5583
|
+
class AXMenuComponent extends AXBaseMenuMixin {
|
|
5248
5584
|
constructor(elementRef, cdr) {
|
|
5249
5585
|
super(elementRef, cdr);
|
|
5250
5586
|
this.elementRef = elementRef;
|
|
5251
5587
|
this.cdr = cdr;
|
|
5252
|
-
|
|
5253
|
-
|
|
5588
|
+
}
|
|
5589
|
+
onInit() {
|
|
5590
|
+
super.onInit();
|
|
5591
|
+
this._fetchData();
|
|
5592
|
+
}
|
|
5593
|
+
ngAfterViewInit() {
|
|
5594
|
+
super.onViewInit();
|
|
5254
5595
|
}
|
|
5255
5596
|
onMenuClick(e, item) {
|
|
5256
|
-
var _a;
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
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
|
+
}
|
|
5260
5618
|
}
|
|
5261
|
-
item.isActive = !item.isActive;
|
|
5262
|
-
item.isOpen = !item.isOpen;
|
|
5263
|
-
this.onMenuItemClick.emit({
|
|
5264
|
-
component: this,
|
|
5265
|
-
item: item,
|
|
5266
|
-
nativeEvent: e,
|
|
5267
|
-
});
|
|
5268
5619
|
e.stopPropagation();
|
|
5269
5620
|
e.preventDefault();
|
|
5270
5621
|
}
|
|
@@ -5288,28 +5639,24 @@ class AXMenuComponent extends AXBaseComponentMixin {
|
|
|
5288
5639
|
}
|
|
5289
5640
|
}
|
|
5290
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 });
|
|
5291
|
-
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 });
|
|
5292
5643
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuComponent, decorators: [{
|
|
5293
5644
|
type: Component,
|
|
5294
|
-
args: [{ selector: 'ax-menu', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: { class:
|
|
5295
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }
|
|
5296
|
-
type: Input
|
|
5297
|
-
}], onMenuItemClick: [{
|
|
5298
|
-
type: Output
|
|
5299
|
-
}] } });
|
|
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 }]; } });
|
|
5300
5647
|
|
|
5301
5648
|
const COMPONENT$9 = [AXMenuComponent];
|
|
5302
5649
|
const MODULES$9 = [CommonModule];
|
|
5303
5650
|
class AXMenuModule {
|
|
5304
5651
|
}
|
|
5305
5652
|
AXMenuModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5306
|
-
AXMenuModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, declarations: [AXMenuComponent], imports: [CommonModule, AXIconModule], exports: [AXMenuComponent] });
|
|
5307
|
-
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]] });
|
|
5308
5655
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXMenuModule, decorators: [{
|
|
5309
5656
|
type: NgModule,
|
|
5310
5657
|
args: [{
|
|
5311
5658
|
declarations: [...COMPONENT$9],
|
|
5312
|
-
imports: [...MODULES$9, AXIconModule],
|
|
5659
|
+
imports: [...MODULES$9, AXIconModule, AXLoadingModule, AXTranslationModule],
|
|
5313
5660
|
exports: [...COMPONENT$9],
|
|
5314
5661
|
providers: [],
|
|
5315
5662
|
}]
|
|
@@ -5631,6 +5978,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
5631
5978
|
}]
|
|
5632
5979
|
}] });
|
|
5633
5980
|
|
|
5981
|
+
class AXPickerComponent extends AXBaseComponent {
|
|
5982
|
+
/**
|
|
5983
|
+
* @ignore
|
|
5984
|
+
*/
|
|
5985
|
+
constructor(elementRef, cdr) {
|
|
5986
|
+
super(elementRef, cdr);
|
|
5987
|
+
this.items = [];
|
|
5988
|
+
}
|
|
5989
|
+
}
|
|
5990
|
+
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 });
|
|
5991
|
+
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"] }] });
|
|
5992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerComponent, decorators: [{
|
|
5993
|
+
type: Component,
|
|
5994
|
+
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>" }]
|
|
5995
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { items: [{
|
|
5996
|
+
type: Input
|
|
5997
|
+
}] } });
|
|
5998
|
+
|
|
5999
|
+
class AXPickerModule {
|
|
6000
|
+
}
|
|
6001
|
+
AXPickerModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
6002
|
+
AXPickerModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, declarations: [AXPickerComponent], imports: [CommonModule, AXCarouselModule], exports: [AXPickerComponent] });
|
|
6003
|
+
AXPickerModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, providers: [], imports: [[CommonModule, AXCarouselModule]] });
|
|
6004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPickerModule, decorators: [{
|
|
6005
|
+
type: NgModule,
|
|
6006
|
+
args: [{
|
|
6007
|
+
declarations: [AXPickerComponent],
|
|
6008
|
+
imports: [CommonModule, AXCarouselModule],
|
|
6009
|
+
exports: [AXPickerComponent],
|
|
6010
|
+
providers: [],
|
|
6011
|
+
}]
|
|
6012
|
+
}] });
|
|
6013
|
+
|
|
5634
6014
|
/**
|
|
5635
6015
|
* The Button is a component which detects user interaction and triggers a corresponding event
|
|
5636
6016
|
*
|
|
@@ -6517,8 +6897,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
6517
6897
|
|
|
6518
6898
|
const AXBaseTabItemMixin = _ClickableComponenetMixin(AXBaseComponent);
|
|
6519
6899
|
class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
6520
|
-
constructor(
|
|
6521
|
-
super(
|
|
6900
|
+
constructor(_elementRef, _cdr) {
|
|
6901
|
+
super(_elementRef, _cdr);
|
|
6522
6902
|
this.activeChange = new EventEmitter();
|
|
6523
6903
|
this._active = false;
|
|
6524
6904
|
this.disabledChange = new EventEmitter();
|
|
@@ -6530,7 +6910,10 @@ class AXTabItemComponent extends AXBaseTabItemMixin {
|
|
|
6530
6910
|
set active(value) {
|
|
6531
6911
|
this._setOption({
|
|
6532
6912
|
name: 'active',
|
|
6533
|
-
value
|
|
6913
|
+
value,
|
|
6914
|
+
afterCallback: () => {
|
|
6915
|
+
this._cdr.markForCheck();
|
|
6916
|
+
}
|
|
6534
6917
|
});
|
|
6535
6918
|
}
|
|
6536
6919
|
get disabled() {
|
|
@@ -6640,10 +7023,10 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6640
7023
|
return this._contentTabs.toArray();
|
|
6641
7024
|
}
|
|
6642
7025
|
get selectedIndex() {
|
|
6643
|
-
return this.items.
|
|
7026
|
+
return this.items.indexOf(this._selectedItem);
|
|
6644
7027
|
}
|
|
6645
7028
|
get selectedItem() {
|
|
6646
|
-
return this.
|
|
7029
|
+
return this._selectedItem;
|
|
6647
7030
|
}
|
|
6648
7031
|
onRenderCssClass() {
|
|
6649
7032
|
const classList = Array.from(this._getHostElement().classList);
|
|
@@ -6670,6 +7053,7 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
6670
7053
|
//
|
|
6671
7054
|
if (!tab || this.selectedItem == tabItem)
|
|
6672
7055
|
return;
|
|
7056
|
+
this._selectedItem = tabItem;
|
|
6673
7057
|
//
|
|
6674
7058
|
this.items.forEach(c => c.active = false);
|
|
6675
7059
|
tabItem.active = true;
|
|
@@ -7657,5 +8041,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
7657
8041
|
* Generated bundle index. Do not edit.
|
|
7658
8042
|
*/
|
|
7659
8043
|
|
|
7660
|
-
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 };
|
|
7661
8045
|
//# sourceMappingURL=acorex-components.mjs.map
|