@acorex/components 5.0.24 → 5.0.25
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/alert/alert-button.component.mjs +8 -9
- package/esm2020/lib/alert/{alert-contnet.component.mjs → alert-content.component.mjs} +1 -1
- package/esm2020/lib/alert/alert.module.mjs +5 -4
- package/esm2020/lib/alert/index.mjs +2 -2
- package/esm2020/lib/icon/icon.component.mjs +3 -3
- package/esm2020/lib/popup/popup.component.mjs +3 -3
- package/esm2020/lib/tabs/index.mjs +1 -3
- package/esm2020/lib/tabs/tabs.class.mjs +1 -1
- package/esm2020/lib/tabs/tabs.component.mjs +13 -4
- package/fesm2015/acorex-components.mjs +85 -224
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +85 -224
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/alert/alert-button.component.d.ts +2 -2
- package/lib/alert/{alert-contnet.component.d.ts → alert-content.component.d.ts} +0 -0
- package/lib/alert/alert.module.d.ts +3 -2
- package/lib/alert/index.d.ts +1 -1
- package/lib/icon/icon.component.d.ts +1 -1
- package/lib/tabs/index.d.ts +0 -2
- package/lib/tabs/tabs.class.d.ts +2 -14
- package/lib/tabs/tabs.component.d.ts +4 -2
- package/package.json +1 -1
- package/esm2020/lib/tabs/tab-strip.component.mjs +0 -62
- package/esm2020/lib/tabs/tab-view.component.mjs +0 -38
- package/esm2020/lib/tabs/tab.component.mjs +0 -58
- package/lib/tabs/tab-strip.component.d.ts +0 -19
- package/lib/tabs/tab-view.component.d.ts +0 -14
- package/lib/tabs/tab.component.d.ts +0 -18
|
@@ -1192,24 +1192,24 @@ class AXAlertButtonComponent extends AXBaseClickableMixin {
|
|
|
1192
1192
|
}
|
|
1193
1193
|
}
|
|
1194
1194
|
AXAlertButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertButtonComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1195
|
-
AXAlertButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXAlertButtonComponent, selector: "ax-alert-button", inputs: {
|
|
1196
|
-
{{
|
|
1197
|
-
<
|
|
1198
|
-
`, isInline: true,
|
|
1195
|
+
AXAlertButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXAlertButtonComponent, selector: "ax-alert-button", inputs: { text: "text", icon: "icon" }, outputs: { onBlur: "onBlur", onFocus: "onFocus", onClick: "onClick", selectedChange: "selectedChange", toggleableChange: "toggleableChange" }, host: { listeners: { "click": "_handleOnClick($event)", "focus": "_handleOnFocus($event)", "blur": "_handleOnBlur($event)" }, classAttribute: "ax-alert-button" }, usesInheritance: true, ngImport: i0, template: `
|
|
1196
|
+
{{text}}
|
|
1197
|
+
<ng-content select="ax-icon"></ng-content>
|
|
1198
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1199
1199
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertButtonComponent, decorators: [{
|
|
1200
1200
|
type: Component,
|
|
1201
1201
|
args: [{
|
|
1202
1202
|
selector: 'ax-alert-button',
|
|
1203
1203
|
template: `
|
|
1204
|
-
{{
|
|
1205
|
-
<
|
|
1204
|
+
{{text}}
|
|
1205
|
+
<ng-content select="ax-icon"></ng-content>
|
|
1206
1206
|
`,
|
|
1207
1207
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1208
1208
|
encapsulation: ViewEncapsulation.None,
|
|
1209
1209
|
outputs: [...BUTTON_OUTPUT],
|
|
1210
1210
|
host: { class: 'ax-alert-button' }
|
|
1211
1211
|
}]
|
|
1212
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
1212
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { text: [{
|
|
1213
1213
|
type: Input
|
|
1214
1214
|
}], icon: [{
|
|
1215
1215
|
type: Input
|
|
@@ -1293,7 +1293,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1293
1293
|
}]
|
|
1294
1294
|
}] });
|
|
1295
1295
|
|
|
1296
|
-
|
|
1296
|
+
class AXIconComponent extends AXSizableComponentMixin {
|
|
1297
|
+
constructor(elementRef, cdr) {
|
|
1298
|
+
super(elementRef, cdr);
|
|
1299
|
+
}
|
|
1300
|
+
get __iconClass() {
|
|
1301
|
+
return `ax-ic ${this.icon}`;
|
|
1302
|
+
}
|
|
1303
|
+
}
|
|
1304
|
+
AXIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1305
|
+
AXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXIconComponent, selector: "ax-icon", inputs: { icon: "icon" }, host: { properties: { "class": "this.__iconClass" } }, usesInheritance: true, ngImport: i0, template: '<ng-content select="ax-content"></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, decorators: [{
|
|
1307
|
+
type: Component,
|
|
1308
|
+
args: [{
|
|
1309
|
+
selector: 'ax-icon',
|
|
1310
|
+
template: '<ng-content select="ax-content"></ng-content>',
|
|
1311
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1312
|
+
encapsulation: ViewEncapsulation.None,
|
|
1313
|
+
}]
|
|
1314
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { icon: [{
|
|
1315
|
+
type: Input
|
|
1316
|
+
}], __iconClass: [{
|
|
1317
|
+
type: HostBinding,
|
|
1318
|
+
args: ['class']
|
|
1319
|
+
}] } });
|
|
1320
|
+
|
|
1321
|
+
const COMPONENT$o = [AXIconComponent];
|
|
1322
|
+
const MODULES$o = [CommonModule];
|
|
1323
|
+
class AXIconModule {
|
|
1324
|
+
}
|
|
1325
|
+
AXIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1326
|
+
AXIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, declarations: [AXIconComponent], imports: [CommonModule], exports: [AXIconComponent] });
|
|
1327
|
+
AXIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, providers: [], imports: [[...MODULES$o]] });
|
|
1328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, decorators: [{
|
|
1329
|
+
type: NgModule,
|
|
1330
|
+
args: [{
|
|
1331
|
+
declarations: [...COMPONENT$o],
|
|
1332
|
+
imports: [...MODULES$o],
|
|
1333
|
+
exports: [...COMPONENT$o],
|
|
1334
|
+
providers: [],
|
|
1335
|
+
}]
|
|
1336
|
+
}] });
|
|
1337
|
+
|
|
1338
|
+
const COMPONENT$n = [
|
|
1297
1339
|
AXAlertComponent,
|
|
1298
1340
|
AXAlertContentComponent,
|
|
1299
1341
|
AXAlertTitleComponent,
|
|
@@ -1301,7 +1343,7 @@ const COMPONENT$o = [
|
|
|
1301
1343
|
AXAlertFooterComponent,
|
|
1302
1344
|
AXAlertSuffixComponent
|
|
1303
1345
|
];
|
|
1304
|
-
const MODULES$
|
|
1346
|
+
const MODULES$n = [CommonModule, AXIconModule];
|
|
1305
1347
|
class AXAlertModule {
|
|
1306
1348
|
}
|
|
1307
1349
|
AXAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1310,19 +1352,19 @@ AXAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
1310
1352
|
AXAlertTitleComponent,
|
|
1311
1353
|
AXAlertButtonComponent,
|
|
1312
1354
|
AXAlertFooterComponent,
|
|
1313
|
-
AXAlertSuffixComponent], imports: [CommonModule], exports: [AXAlertComponent,
|
|
1355
|
+
AXAlertSuffixComponent], imports: [CommonModule, AXIconModule], exports: [AXAlertComponent,
|
|
1314
1356
|
AXAlertContentComponent,
|
|
1315
1357
|
AXAlertTitleComponent,
|
|
1316
1358
|
AXAlertButtonComponent,
|
|
1317
1359
|
AXAlertFooterComponent,
|
|
1318
1360
|
AXAlertSuffixComponent] });
|
|
1319
|
-
AXAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, providers: [], imports: [[...MODULES$
|
|
1361
|
+
AXAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, providers: [], imports: [[...MODULES$n]] });
|
|
1320
1362
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, decorators: [{
|
|
1321
1363
|
type: NgModule,
|
|
1322
1364
|
args: [{
|
|
1323
|
-
declarations: [...COMPONENT$
|
|
1324
|
-
imports: [...MODULES$
|
|
1325
|
-
exports: [...COMPONENT$
|
|
1365
|
+
declarations: [...COMPONENT$n],
|
|
1366
|
+
imports: [...MODULES$n],
|
|
1367
|
+
exports: [...COMPONENT$n],
|
|
1326
1368
|
providers: [],
|
|
1327
1369
|
}]
|
|
1328
1370
|
}] });
|
|
@@ -1371,19 +1413,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1371
1413
|
type: Input
|
|
1372
1414
|
}] } });
|
|
1373
1415
|
|
|
1374
|
-
const COMPONENT$
|
|
1375
|
-
const MODULES$
|
|
1416
|
+
const COMPONENT$m = [AXAvatarComponent];
|
|
1417
|
+
const MODULES$m = [CommonModule];
|
|
1376
1418
|
class AXAvatarModule {
|
|
1377
1419
|
}
|
|
1378
1420
|
AXAvatarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1379
1421
|
AXAvatarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, declarations: [AXAvatarComponent], imports: [CommonModule], exports: [AXAvatarComponent] });
|
|
1380
|
-
AXAvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, providers: [], imports: [[...MODULES$
|
|
1422
|
+
AXAvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, providers: [], imports: [[...MODULES$m]] });
|
|
1381
1423
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, decorators: [{
|
|
1382
1424
|
type: NgModule,
|
|
1383
1425
|
args: [{
|
|
1384
|
-
declarations: [...COMPONENT$
|
|
1385
|
-
imports: [...MODULES$
|
|
1386
|
-
exports: [...COMPONENT$
|
|
1426
|
+
declarations: [...COMPONENT$m],
|
|
1427
|
+
imports: [...MODULES$m],
|
|
1428
|
+
exports: [...COMPONENT$m],
|
|
1387
1429
|
providers: [],
|
|
1388
1430
|
}]
|
|
1389
1431
|
}] });
|
|
@@ -1413,19 +1455,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1413
1455
|
args: ['class']
|
|
1414
1456
|
}] } });
|
|
1415
1457
|
|
|
1416
|
-
const COMPONENT$
|
|
1417
|
-
const MODULES$
|
|
1458
|
+
const COMPONENT$l = [AXBadgeComponent];
|
|
1459
|
+
const MODULES$l = [CommonModule];
|
|
1418
1460
|
class AXBadgeModule {
|
|
1419
1461
|
}
|
|
1420
1462
|
AXBadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1421
1463
|
AXBadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, declarations: [AXBadgeComponent], imports: [CommonModule], exports: [AXBadgeComponent] });
|
|
1422
|
-
AXBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, providers: [], imports: [[...MODULES$
|
|
1464
|
+
AXBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, providers: [], imports: [[...MODULES$l]] });
|
|
1423
1465
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, decorators: [{
|
|
1424
1466
|
type: NgModule,
|
|
1425
1467
|
args: [{
|
|
1426
|
-
declarations: [...COMPONENT$
|
|
1427
|
-
imports: [...MODULES$
|
|
1428
|
-
exports: [...COMPONENT$
|
|
1468
|
+
declarations: [...COMPONENT$l],
|
|
1469
|
+
imports: [...MODULES$l],
|
|
1470
|
+
exports: [...COMPONENT$l],
|
|
1429
1471
|
providers: [],
|
|
1430
1472
|
}]
|
|
1431
1473
|
}] });
|
|
@@ -1777,56 +1819,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1777
1819
|
}]
|
|
1778
1820
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
|
|
1779
1821
|
|
|
1780
|
-
const COMPONENT$
|
|
1781
|
-
const MODULES$
|
|
1822
|
+
const COMPONENT$k = [AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDecoratorContentComponent, AXDecoratorHeaderComponent];
|
|
1823
|
+
const MODULES$k = [CommonModule];
|
|
1782
1824
|
class AXEditorDecoratorModule {
|
|
1783
1825
|
}
|
|
1784
1826
|
AXEditorDecoratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1785
1827
|
AXEditorDecoratorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, declarations: [AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDecoratorContentComponent, AXDecoratorHeaderComponent], imports: [CommonModule], exports: [AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDecoratorContentComponent, AXDecoratorHeaderComponent] });
|
|
1786
|
-
AXEditorDecoratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, providers: [], imports: [[...MODULES$
|
|
1828
|
+
AXEditorDecoratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, providers: [], imports: [[...MODULES$k]] });
|
|
1787
1829
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, decorators: [{
|
|
1788
|
-
type: NgModule,
|
|
1789
|
-
args: [{
|
|
1790
|
-
declarations: [...COMPONENT$l],
|
|
1791
|
-
imports: [...MODULES$l],
|
|
1792
|
-
exports: [...COMPONENT$l],
|
|
1793
|
-
providers: [],
|
|
1794
|
-
}]
|
|
1795
|
-
}] });
|
|
1796
|
-
|
|
1797
|
-
class AXIconComponent extends AXSizableComponentMixin {
|
|
1798
|
-
constructor(elementRef, cdr) {
|
|
1799
|
-
super(elementRef, cdr);
|
|
1800
|
-
}
|
|
1801
|
-
get __iconClass() {
|
|
1802
|
-
return `ax-ic ${this.icon}`;
|
|
1803
|
-
}
|
|
1804
|
-
}
|
|
1805
|
-
AXIconComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
1806
|
-
AXIconComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXIconComponent, selector: "ax-icon", inputs: { icon: "icon" }, host: { properties: { "class": "this.__iconClass" } }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1807
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, decorators: [{
|
|
1808
|
-
type: Component,
|
|
1809
|
-
args: [{
|
|
1810
|
-
selector: 'ax-icon',
|
|
1811
|
-
template: '',
|
|
1812
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1813
|
-
encapsulation: ViewEncapsulation.None,
|
|
1814
|
-
}]
|
|
1815
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { icon: [{
|
|
1816
|
-
type: Input
|
|
1817
|
-
}], __iconClass: [{
|
|
1818
|
-
type: HostBinding,
|
|
1819
|
-
args: ['class']
|
|
1820
|
-
}] } });
|
|
1821
|
-
|
|
1822
|
-
const COMPONENT$k = [AXIconComponent];
|
|
1823
|
-
const MODULES$k = [CommonModule];
|
|
1824
|
-
class AXIconModule {
|
|
1825
|
-
}
|
|
1826
|
-
AXIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1827
|
-
AXIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, declarations: [AXIconComponent], imports: [CommonModule], exports: [AXIconComponent] });
|
|
1828
|
-
AXIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, providers: [], imports: [[...MODULES$k]] });
|
|
1829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, decorators: [{
|
|
1830
1830
|
type: NgModule,
|
|
1831
1831
|
args: [{
|
|
1832
1832
|
declarations: [...COMPONENT$k],
|
|
@@ -5048,10 +5048,10 @@ class AXPopupComponent extends AXBaseComponentMixin {
|
|
|
5048
5048
|
onFullScreen() { }
|
|
5049
5049
|
}
|
|
5050
5050
|
AXPopupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXPopupComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.ViewContainerRef }, { token: AXLoadingService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5051
|
-
AXPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXPopupComponent, selector: "ax-popup", host: { listeners: { "keydown.escape": "onKeydownHandler($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-popup-wrapper\" aria-modal=\"true\" cdkTrapFocus>\r\n <div class=\"ax-popup ax-{{size}}\" tabindex=\"0\" cdkDrag>\r\n <ng-container *ngIf=\"showHeader\">\r\n <header cdkDragHandle class=\"ax-cursor-move\">\r\n <div>\r\n <div class=\"ax-text-lg ax-font-medium\">\r\n <span>\r\n {{title}}\r\n </span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"showCloseButton\">\r\n <i class=\"ax-ic ax-ic-close ax-text-gray ax-cursor-pointer\" (click)=\"_handleCloseClick()\"\r\n tabindex=\"1\"></i>\r\n </div>\r\n </header>\r\n </ng-container>\r\n <main>\r\n <ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\r\n </main>\r\n </div>\r\n</div>", directives: [{ type: i2$1.CdkTrapFocus, selector: "[cdkTrapFocus]", inputs: ["cdkTrapFocus", "cdkTrapFocusAutoCapture"], exportAs: ["cdkTrapFocus"] }, { type: i3$1.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragDisabled", "cdkDragStartDelay", "cdkDragLockAxis", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragBoundary", "cdkDragRootElement", "cdkDragPreviewContainer", "cdkDragData", "cdkDragFreeDragPosition"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3$1.CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { type: i1$3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5051
|
+
AXPopupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXPopupComponent, selector: "ax-popup", host: { listeners: { "keydown.escape": "onKeydownHandler($event)" } }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-popup-wrapper\" aria-modal=\"true\" cdkTrapFocus>\r\n <div class=\"ax-popup ax-popup-{{size}}\" tabindex=\"0\" cdkDrag>\r\n <ng-container *ngIf=\"showHeader\">\r\n <header cdkDragHandle class=\"ax-cursor-move\">\r\n <div>\r\n <div class=\"ax-text-lg ax-font-medium\">\r\n <span>\r\n {{title}}\r\n </span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"showCloseButton\">\r\n <i class=\"ax-ic ax-ic-close ax-text-gray ax-cursor-pointer\" (click)=\"_handleCloseClick()\"\r\n tabindex=\"1\"></i>\r\n </div>\r\n </header>\r\n </ng-container>\r\n <main>\r\n <ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\r\n </main>\r\n </div>\r\n</div>", directives: [{ type: i2$1.CdkTrapFocus, selector: "[cdkTrapFocus]", inputs: ["cdkTrapFocus", "cdkTrapFocusAutoCapture"], exportAs: ["cdkTrapFocus"] }, { type: i3$1.CdkDrag, selector: "[cdkDrag]", inputs: ["cdkDragDisabled", "cdkDragStartDelay", "cdkDragLockAxis", "cdkDragConstrainPosition", "cdkDragPreviewClass", "cdkDragBoundary", "cdkDragRootElement", "cdkDragPreviewContainer", "cdkDragData", "cdkDragFreeDragPosition"], outputs: ["cdkDragStarted", "cdkDragReleased", "cdkDragEnded", "cdkDragEntered", "cdkDragExited", "cdkDragDropped", "cdkDragMoved"], exportAs: ["cdkDrag"] }, { type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3$1.CdkDragHandle, selector: "[cdkDragHandle]", inputs: ["cdkDragHandleDisabled"] }, { type: i1$3.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5052
5052
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXPopupComponent, decorators: [{
|
|
5053
5053
|
type: Component,
|
|
5054
|
-
args: [{ selector: 'ax-popup', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"ax-popup-wrapper\" aria-modal=\"true\" cdkTrapFocus>\r\n <div class=\"ax-popup ax-{{size}}\" tabindex=\"0\" cdkDrag>\r\n <ng-container *ngIf=\"showHeader\">\r\n <header cdkDragHandle class=\"ax-cursor-move\">\r\n <div>\r\n <div class=\"ax-text-lg ax-font-medium\">\r\n <span>\r\n {{title}}\r\n </span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"showCloseButton\">\r\n <i class=\"ax-ic ax-ic-close ax-text-gray ax-cursor-pointer\" (click)=\"_handleCloseClick()\"\r\n tabindex=\"1\"></i>\r\n </div>\r\n </header>\r\n </ng-container>\r\n <main>\r\n <ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\r\n </main>\r\n </div>\r\n</div>" }]
|
|
5054
|
+
args: [{ selector: 'ax-popup', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<div class=\"ax-popup-wrapper\" aria-modal=\"true\" cdkTrapFocus>\r\n <div class=\"ax-popup ax-popup-{{size}}\" tabindex=\"0\" cdkDrag>\r\n <ng-container *ngIf=\"showHeader\">\r\n <header cdkDragHandle class=\"ax-cursor-move\">\r\n <div>\r\n <div class=\"ax-text-lg ax-font-medium\">\r\n <span>\r\n {{title}}\r\n </span>\r\n </div>\r\n </div>\r\n <div *ngIf=\"showCloseButton\">\r\n <i class=\"ax-ic ax-ic-close ax-text-gray ax-cursor-pointer\" (click)=\"_handleCloseClick()\"\r\n tabindex=\"1\"></i>\r\n </div>\r\n </header>\r\n </ng-container>\r\n <main>\r\n <ng-template [cdkPortalOutlet]=\"_selectedPortal\" (attached)=\"_handleAttched($event)\"></ng-template>\r\n </main>\r\n </div>\r\n</div>" }]
|
|
5055
5055
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: AXLoadingService }]; }, propDecorators: { onKeydownHandler: [{
|
|
5056
5056
|
type: HostListener,
|
|
5057
5057
|
args: ['keydown.escape', ['$event']]
|
|
@@ -5533,154 +5533,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5533
5533
|
}]
|
|
5534
5534
|
}] });
|
|
5535
5535
|
|
|
5536
|
-
class AXTabStripComponent extends AXSizableComponentMixin {
|
|
5537
|
-
constructor(elementRef, cdr) {
|
|
5538
|
-
super(elementRef, cdr);
|
|
5539
|
-
this.mode = 'default';
|
|
5540
|
-
this.direction = "horizontal";
|
|
5541
|
-
this.fitParent = false;
|
|
5542
|
-
this.minWidth = false;
|
|
5543
|
-
this.onSelectionChanged = new EventEmitter();
|
|
5544
|
-
}
|
|
5545
|
-
get items() {
|
|
5546
|
-
return this._items;
|
|
5547
|
-
}
|
|
5548
|
-
set items(v) {
|
|
5549
|
-
this._items = v;
|
|
5550
|
-
if (this._items &&
|
|
5551
|
-
this.items.length &&
|
|
5552
|
-
!this._items.some((c) => c.active)) {
|
|
5553
|
-
this._handleClick(this.items[0], 0);
|
|
5554
|
-
}
|
|
5555
|
-
}
|
|
5556
|
-
_handleClick(tab, index) {
|
|
5557
|
-
if (tab.disabled) {
|
|
5558
|
-
return;
|
|
5559
|
-
}
|
|
5560
|
-
this.items.forEach((c) => (c.active = false));
|
|
5561
|
-
tab.active = true;
|
|
5562
|
-
this.onSelectionChanged.emit({
|
|
5563
|
-
component: this,
|
|
5564
|
-
selectedIndex: index,
|
|
5565
|
-
selectedTab: tab,
|
|
5566
|
-
htmlElement: this._getHostElement(),
|
|
5567
|
-
});
|
|
5568
|
-
}
|
|
5569
|
-
get __hostClass() {
|
|
5570
|
-
return [`ax-tabs`, `ax-tabs-${this.mode ? this.mode : 'default'}`, `ax-tabs-${this.direction}`, `${this.fitParent ? 'ax-tabs-fit' : ''}`].join(' ');
|
|
5571
|
-
}
|
|
5572
|
-
}
|
|
5573
|
-
AXTabStripComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabStripComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5574
|
-
AXTabStripComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXTabStripComponent, selector: "ax-tab-strip", inputs: { size: "size", items: "items", mode: "mode", direction: "direction", fitParent: "fitParent", minWidth: "minWidth" }, outputs: { onSelectionChanged: "onSelectionChanged" }, host: { properties: { "class": "this.__hostClass" }, classAttribute: "ax-tab-strip" }, usesInheritance: true, ngImport: i0, template: "<ng-container *ngFor=\"let item of items;let i = index\">\r\n <div class=\"ax-tab-item\" [class.ax-state-active]=\"item.active\" [class.ax-state-disabled]=\"item.disabled\" *ngIf=\"item.visible!=false\" (click)=\"_handleClick(item,i)\">\r\n <ng-content select=\"ax-prefix\"></ng-content>\r\n <span *ngIf=\"item.text\">{{item.text}}</span>\r\n <ng-content select=\"ax-suffix\"></ng-content>\r\n </div>\r\n</ng-container>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5575
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabStripComponent, decorators: [{
|
|
5576
|
-
type: Component,
|
|
5577
|
-
args: [{ selector: 'ax-tab-strip', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, inputs: ['size'], host: { class: 'ax-tab-strip' }, template: "<ng-container *ngFor=\"let item of items;let i = index\">\r\n <div class=\"ax-tab-item\" [class.ax-state-active]=\"item.active\" [class.ax-state-disabled]=\"item.disabled\" *ngIf=\"item.visible!=false\" (click)=\"_handleClick(item,i)\">\r\n <ng-content select=\"ax-prefix\"></ng-content>\r\n <span *ngIf=\"item.text\">{{item.text}}</span>\r\n <ng-content select=\"ax-suffix\"></ng-content>\r\n </div>\r\n</ng-container>" }]
|
|
5578
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { items: [{
|
|
5579
|
-
type: Input
|
|
5580
|
-
}], mode: [{
|
|
5581
|
-
type: Input
|
|
5582
|
-
}], direction: [{
|
|
5583
|
-
type: Input
|
|
5584
|
-
}], fitParent: [{
|
|
5585
|
-
type: Input
|
|
5586
|
-
}], minWidth: [{
|
|
5587
|
-
type: Input
|
|
5588
|
-
}], onSelectionChanged: [{
|
|
5589
|
-
type: Output
|
|
5590
|
-
}], __hostClass: [{
|
|
5591
|
-
type: HostBinding,
|
|
5592
|
-
args: ['class']
|
|
5593
|
-
}] } });
|
|
5594
|
-
|
|
5595
|
-
class AXTabComponent extends AXBaseComponentMixin {
|
|
5596
|
-
constructor(elementRef, cdr) {
|
|
5597
|
-
super(elementRef, cdr);
|
|
5598
|
-
this.visible = true;
|
|
5599
|
-
this.disabled = false;
|
|
5600
|
-
this._render = false;
|
|
5601
|
-
}
|
|
5602
|
-
show() {
|
|
5603
|
-
this._getHostElement().style.display = 'unset';
|
|
5604
|
-
if (!this._render) {
|
|
5605
|
-
this._render = true;
|
|
5606
|
-
this._cdr.detectChanges();
|
|
5607
|
-
}
|
|
5608
|
-
}
|
|
5609
|
-
hide() {
|
|
5610
|
-
this._getHostElement().style.display = 'none';
|
|
5611
|
-
}
|
|
5612
|
-
}
|
|
5613
|
-
AXTabComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5614
|
-
AXTabComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXTabComponent, selector: "ax-tab", inputs: { name: "name", caption: "caption", tooltip: "tooltip", icon: "icon", visible: "visible", disabled: "disabled", data: "data" }, host: { styleAttribute: "display:none", classAttribute: "ax-tab" }, usesInheritance: true, ngImport: i0, template: `
|
|
5615
|
-
<div *ngIf="_render" >
|
|
5616
|
-
<ng-content>
|
|
5617
|
-
</ng-content>
|
|
5618
|
-
</div>
|
|
5619
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5620
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabComponent, decorators: [{
|
|
5621
|
-
type: Component,
|
|
5622
|
-
args: [{
|
|
5623
|
-
selector: 'ax-tab',
|
|
5624
|
-
template: `
|
|
5625
|
-
<div *ngIf="_render" >
|
|
5626
|
-
<ng-content>
|
|
5627
|
-
</ng-content>
|
|
5628
|
-
</div>
|
|
5629
|
-
`,
|
|
5630
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5631
|
-
encapsulation: ViewEncapsulation.None,
|
|
5632
|
-
host: { class: 'ax-tab', style: 'display:none' }
|
|
5633
|
-
}]
|
|
5634
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { name: [{
|
|
5635
|
-
type: Input
|
|
5636
|
-
}], caption: [{
|
|
5637
|
-
type: Input
|
|
5638
|
-
}], tooltip: [{
|
|
5639
|
-
type: Input
|
|
5640
|
-
}], icon: [{
|
|
5641
|
-
type: Input
|
|
5642
|
-
}], visible: [{
|
|
5643
|
-
type: Input
|
|
5644
|
-
}], disabled: [{
|
|
5645
|
-
type: Input
|
|
5646
|
-
}], data: [{
|
|
5647
|
-
type: Input
|
|
5648
|
-
}] } });
|
|
5649
|
-
|
|
5650
|
-
class AXTabViewComponent extends AXBaseComponent {
|
|
5651
|
-
constructor(elementRef, cdr) {
|
|
5652
|
-
super(elementRef, cdr);
|
|
5653
|
-
this._tabs = [];
|
|
5654
|
-
}
|
|
5655
|
-
onViewInit() {
|
|
5656
|
-
this._tabs = Array.from(this._contentTabs).map(c => ({
|
|
5657
|
-
name: c.name,
|
|
5658
|
-
text: c.caption,
|
|
5659
|
-
tooltip: c.tooltip,
|
|
5660
|
-
icon: c.icon,
|
|
5661
|
-
visible: c.visible,
|
|
5662
|
-
disabled: c.disabled,
|
|
5663
|
-
}));
|
|
5664
|
-
this._cdr.detectChanges();
|
|
5665
|
-
}
|
|
5666
|
-
_handleSelectionChanged(e) {
|
|
5667
|
-
const tabs = Array.from(this._contentTabs);
|
|
5668
|
-
tabs.forEach(tab => {
|
|
5669
|
-
tab.hide();
|
|
5670
|
-
});
|
|
5671
|
-
tabs[e.selectedIndex].show();
|
|
5672
|
-
}
|
|
5673
|
-
}
|
|
5674
|
-
AXTabViewComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabViewComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5675
|
-
AXTabViewComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXTabViewComponent, selector: "ax-tab-view", inputs: { size: "size" }, host: { classAttribute: "ax-tab-view" }, queries: [{ propertyName: "_contentTabs", predicate: AXTabComponent }], usesInheritance: true, ngImport: i0, template: "<!-- <ax-tab-strip [items]=\"_tabs\" (onSelectionChanged)=\"_handleSelectionChanged($event)\">\r\n\r\n</ax-tab-strip> -->\r\n<div class=\"ax-tab-view-container\">\r\n <ng-content select=\"ax-tab\">\r\n </ng-content>\r\n</div>", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabViewComponent, decorators: [{
|
|
5677
|
-
type: Component,
|
|
5678
|
-
args: [{ selector: 'ax-tab-view', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, inputs: ['size'], host: { class: 'ax-tab-view' }, template: "<!-- <ax-tab-strip [items]=\"_tabs\" (onSelectionChanged)=\"_handleSelectionChanged($event)\">\r\n\r\n</ax-tab-strip> -->\r\n<div class=\"ax-tab-view-container\">\r\n <ng-content select=\"ax-tab\">\r\n </ng-content>\r\n</div>" }]
|
|
5679
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { _contentTabs: [{
|
|
5680
|
-
type: ContentChildren,
|
|
5681
|
-
args: [AXTabComponent]
|
|
5682
|
-
}] } });
|
|
5683
|
-
|
|
5684
5536
|
class AXTabItemComponent extends AXBaseClickableMixin {
|
|
5685
5537
|
constructor(elementRef, cdr) {
|
|
5686
5538
|
super(elementRef, cdr);
|
|
@@ -5781,6 +5633,7 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5781
5633
|
super(elementRef, cdr);
|
|
5782
5634
|
this.fitParent = false;
|
|
5783
5635
|
this.minWidth = false;
|
|
5636
|
+
this.onActiveTabChanged = new EventEmitter();
|
|
5784
5637
|
}
|
|
5785
5638
|
onRenderCssClass() {
|
|
5786
5639
|
const classList = Array.from(this._getHostElement().classList);
|
|
@@ -5792,7 +5645,8 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5792
5645
|
}
|
|
5793
5646
|
}
|
|
5794
5647
|
onViewInit() {
|
|
5795
|
-
this.
|
|
5648
|
+
const selected = this._contentTabs.find(c => c.active) || this._contentTabs.get(0);
|
|
5649
|
+
this._handleSelectionChanged(selected);
|
|
5796
5650
|
this._contentTabs.forEach(c => {
|
|
5797
5651
|
c.onClick.subscribe(t => {
|
|
5798
5652
|
this._handleSelectionChanged(c);
|
|
@@ -5806,10 +5660,15 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5806
5660
|
this.content.portal = e.template;
|
|
5807
5661
|
}
|
|
5808
5662
|
this._cdr.markForCheck();
|
|
5663
|
+
this.onActiveTabChanged.emit({
|
|
5664
|
+
component: this,
|
|
5665
|
+
selectedTab: e,
|
|
5666
|
+
selectedIndex: 0
|
|
5667
|
+
});
|
|
5809
5668
|
}
|
|
5810
5669
|
}
|
|
5811
5670
|
AXTabsComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabsComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
5812
|
-
AXTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXTabsComponent, selector: "ax-tabs", inputs: { fitParent: "fitParent", minWidth: "minWidth", content: "content" }, queries: [{ propertyName: "_contentTabs", predicate: AXTabItemComponent }], usesInheritance: true, ngImport: i0, template: `
|
|
5671
|
+
AXTabsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXTabsComponent, selector: "ax-tabs", inputs: { fitParent: "fitParent", minWidth: "minWidth", content: "content" }, outputs: { onActiveTabChanged: "onActiveTabChanged" }, queries: [{ propertyName: "_contentTabs", predicate: AXTabItemComponent }], usesInheritance: true, ngImport: i0, template: `
|
|
5813
5672
|
<div class="ax-items-wrapper">
|
|
5814
5673
|
<ng-content select="ax-tab-item">
|
|
5815
5674
|
</ng-content>
|
|
@@ -5837,6 +5696,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5837
5696
|
type: Input
|
|
5838
5697
|
}], content: [{
|
|
5839
5698
|
type: Input
|
|
5699
|
+
}], onActiveTabChanged: [{
|
|
5700
|
+
type: Output
|
|
5840
5701
|
}] } });
|
|
5841
5702
|
|
|
5842
5703
|
class AXTabStripChangedEvent extends AXEvent {
|
|
@@ -6470,5 +6331,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
6470
6331
|
* Generated bundle index. Do not edit.
|
|
6471
6332
|
*/
|
|
6472
6333
|
|
|
6473
|
-
export { AXAlertButtonComponent, AXAlertComponent, AXAlertContentComponent, AXAlertFooterComponent, AXAlertModule, AXAlertSuffixComponent, AXAlertTitleComponent, AXAvatarComponent, AXAvatarModule, AXBadgeComponent, AXBadgeModule, AXBaseButtonMixin, AXBaseClickableMixin, AXBaseComponent, AXBaseComponentMixin, AXBaseDatePickerMixin, AXBaseDropdownMixin, AXBaseItemButtonMixin, AXBasePageComponent, AXBaseSelectionDropdownMixin, AXBaseSelectionValueMixin, AXBaseTextBoxMixin, AXBaseValueComponentMixin, AXBaseValueDropdownMixin, AXButtonClickEvent, AXButtonComponent, AXButtonGroupComponent, AXButtonItemComponent, AXButtonModule, AXCalendarComponent, AXCalendarComponentMixin, AXCalendarModule, AXCarouselArrowsComponent, AXCarouselComponent, AXCarouselCore, AXCarouselItemComponent, AXCarouselModule, AXCarouselPagerComponent, AXCheckBoxComponent, AXCheckBoxModule, AXClickEvent, AXCommonModule, AXDataListComponent, AXDataListModule, AXDatePickerComponent, AXDatepickerModule, AXDecoratorContentComponent, AXDecoratorHeaderComponent, AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDialogComponent, AXDialogModule, AXDialogService, AXDrawerComponent, AXDrawerContainerComponent, AXDrawerContentComponent, AXDrawerModule, AXDropdownComponent, AXDropdownModule, AXDropdownPanelComponent, AXEditorDecoratorModule, AXEvent, AXFocusEvent, AXFormComponent, AXFormFieldComponent, AXFormHintComponent, AXFormModule, AXHtmlEvent, AXIconComponent, AXIconModule, AXInputMaskComponent, AXInputMaskModule, AXInteractiveComponenetMixin, AXItemClickEvent, AXLabelComponent, AXLabelModule, AXLoadingComponent, AXLoadingDirective, AXLoadingModule, AXLoadingService, AXLoadingSpinnerComponent, AXNumberBoxComponent, AXNumberBoxModule, AXPageCloseEvent, AXPageClosedPromise, AXPageClosing, AXPageComponent, AXPageFooterComponent, AXPageModule, AXPageResult, AXPasswordBoxComponent, AXPasswordBoxModule, AXPopoverComponent, AXPopoverModule, AXPopupComponent, AXPopupModule, AXPopupService, AXRadioComponent, AXRadioModule, AXRangeSliderComponent, AXRangeSliderModule, AXResponsiveDirective, AXSelectBoxComponent, AXSelectBoxModule, AXSelectionListComponent, AXSelectionListModule, AXSelectionValueChangedEvent, AXSideMenuComponent, AXSideMenuModule, AXSizableComponentMixin, AXSwitchComponent, AXSwitchModule, AXTabContentDirective, AXTabItemComponent, AXTabStripChangedEvent,
|
|
6334
|
+
export { AXAlertButtonComponent, AXAlertComponent, AXAlertContentComponent, AXAlertFooterComponent, AXAlertModule, AXAlertSuffixComponent, AXAlertTitleComponent, AXAvatarComponent, AXAvatarModule, AXBadgeComponent, AXBadgeModule, AXBaseButtonMixin, AXBaseClickableMixin, AXBaseComponent, AXBaseComponentMixin, AXBaseDatePickerMixin, AXBaseDropdownMixin, AXBaseItemButtonMixin, AXBasePageComponent, AXBaseSelectionDropdownMixin, AXBaseSelectionValueMixin, AXBaseTextBoxMixin, AXBaseValueComponentMixin, AXBaseValueDropdownMixin, AXButtonClickEvent, AXButtonComponent, AXButtonGroupComponent, AXButtonItemComponent, AXButtonModule, AXCalendarComponent, AXCalendarComponentMixin, AXCalendarModule, AXCarouselArrowsComponent, AXCarouselComponent, AXCarouselCore, AXCarouselItemComponent, AXCarouselModule, AXCarouselPagerComponent, AXCheckBoxComponent, AXCheckBoxModule, AXClickEvent, AXCommonModule, AXDataListComponent, AXDataListModule, AXDatePickerComponent, AXDatepickerModule, AXDecoratorContentComponent, AXDecoratorHeaderComponent, AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDialogComponent, AXDialogModule, AXDialogService, AXDrawerComponent, AXDrawerContainerComponent, AXDrawerContentComponent, AXDrawerModule, AXDropdownComponent, AXDropdownModule, AXDropdownPanelComponent, AXEditorDecoratorModule, AXEvent, AXFocusEvent, AXFormComponent, AXFormFieldComponent, AXFormHintComponent, AXFormModule, AXHtmlEvent, AXIconComponent, AXIconModule, AXInputMaskComponent, AXInputMaskModule, AXInteractiveComponenetMixin, AXItemClickEvent, AXLabelComponent, AXLabelModule, AXLoadingComponent, AXLoadingDirective, AXLoadingModule, AXLoadingService, AXLoadingSpinnerComponent, AXNumberBoxComponent, AXNumberBoxModule, AXPageCloseEvent, AXPageClosedPromise, AXPageClosing, AXPageComponent, AXPageFooterComponent, AXPageModule, AXPageResult, AXPasswordBoxComponent, AXPasswordBoxModule, AXPopoverComponent, AXPopoverModule, AXPopupComponent, AXPopupModule, AXPopupService, AXRadioComponent, AXRadioModule, AXRangeSliderComponent, AXRangeSliderModule, AXResponsiveDirective, AXSelectBoxComponent, AXSelectBoxModule, AXSelectionListComponent, AXSelectionListModule, AXSelectionValueChangedEvent, AXSideMenuComponent, AXSideMenuModule, AXSizableComponentMixin, AXSwitchComponent, AXSwitchModule, AXTabContentDirective, AXTabItemComponent, AXTabStripChangedEvent, AXTabsComponent, AXTabsModule, AXTextBoxComponent, AXTextBoxModule, AXTimeBoxComponent, AXTimeBoxModule, AXToastComponent, AXToastModule, AXToastService, AXTooltipComponent, AXTooltipDirective, AXTooltipModule, AXValidationModule, AXValidationRuleComponent, AXValidationRules, AXValueChangedEvent, AX_DIRECTIONS, AX_LOCATIONS, AX_STYLE_TYPES, BASE_INPUTS, BASE_OUTPUT, TAB_META_KEY, _BaseComponenetMixin };
|
|
6474
6335
|
//# sourceMappingURL=acorex-components.mjs.map
|