@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
|
@@ -1195,24 +1195,24 @@ class AXAlertButtonComponent extends AXBaseClickableMixin {
|
|
|
1195
1195
|
}
|
|
1196
1196
|
}
|
|
1197
1197
|
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 });
|
|
1198
|
-
AXAlertButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.1.1", type: AXAlertButtonComponent, selector: "ax-alert-button", inputs: {
|
|
1199
|
-
{{
|
|
1200
|
-
<
|
|
1201
|
-
`, isInline: true,
|
|
1198
|
+
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: `
|
|
1199
|
+
{{text}}
|
|
1200
|
+
<ng-content select="ax-icon"></ng-content>
|
|
1201
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
1202
1202
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertButtonComponent, decorators: [{
|
|
1203
1203
|
type: Component,
|
|
1204
1204
|
args: [{
|
|
1205
1205
|
selector: 'ax-alert-button',
|
|
1206
1206
|
template: `
|
|
1207
|
-
{{
|
|
1208
|
-
<
|
|
1207
|
+
{{text}}
|
|
1208
|
+
<ng-content select="ax-icon"></ng-content>
|
|
1209
1209
|
`,
|
|
1210
1210
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1211
1211
|
encapsulation: ViewEncapsulation.None,
|
|
1212
1212
|
outputs: [...BUTTON_OUTPUT],
|
|
1213
1213
|
host: { class: 'ax-alert-button' }
|
|
1214
1214
|
}]
|
|
1215
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: {
|
|
1215
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { text: [{
|
|
1216
1216
|
type: Input
|
|
1217
1217
|
}], icon: [{
|
|
1218
1218
|
type: Input
|
|
@@ -1296,7 +1296,49 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1296
1296
|
}]
|
|
1297
1297
|
}] });
|
|
1298
1298
|
|
|
1299
|
-
|
|
1299
|
+
class AXIconComponent extends AXSizableComponentMixin {
|
|
1300
|
+
constructor(elementRef, cdr) {
|
|
1301
|
+
super(elementRef, cdr);
|
|
1302
|
+
}
|
|
1303
|
+
get __iconClass() {
|
|
1304
|
+
return `ax-ic ${this.icon}`;
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
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 });
|
|
1308
|
+
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 });
|
|
1309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, decorators: [{
|
|
1310
|
+
type: Component,
|
|
1311
|
+
args: [{
|
|
1312
|
+
selector: 'ax-icon',
|
|
1313
|
+
template: '<ng-content select="ax-content"></ng-content>',
|
|
1314
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1315
|
+
encapsulation: ViewEncapsulation.None,
|
|
1316
|
+
}]
|
|
1317
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { icon: [{
|
|
1318
|
+
type: Input
|
|
1319
|
+
}], __iconClass: [{
|
|
1320
|
+
type: HostBinding,
|
|
1321
|
+
args: ['class']
|
|
1322
|
+
}] } });
|
|
1323
|
+
|
|
1324
|
+
const COMPONENT$o = [AXIconComponent];
|
|
1325
|
+
const MODULES$o = [CommonModule];
|
|
1326
|
+
class AXIconModule {
|
|
1327
|
+
}
|
|
1328
|
+
AXIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1329
|
+
AXIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, declarations: [AXIconComponent], imports: [CommonModule], exports: [AXIconComponent] });
|
|
1330
|
+
AXIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, providers: [], imports: [[...MODULES$o]] });
|
|
1331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, decorators: [{
|
|
1332
|
+
type: NgModule,
|
|
1333
|
+
args: [{
|
|
1334
|
+
declarations: [...COMPONENT$o],
|
|
1335
|
+
imports: [...MODULES$o],
|
|
1336
|
+
exports: [...COMPONENT$o],
|
|
1337
|
+
providers: [],
|
|
1338
|
+
}]
|
|
1339
|
+
}] });
|
|
1340
|
+
|
|
1341
|
+
const COMPONENT$n = [
|
|
1300
1342
|
AXAlertComponent,
|
|
1301
1343
|
AXAlertContentComponent,
|
|
1302
1344
|
AXAlertTitleComponent,
|
|
@@ -1304,7 +1346,7 @@ const COMPONENT$o = [
|
|
|
1304
1346
|
AXAlertFooterComponent,
|
|
1305
1347
|
AXAlertSuffixComponent
|
|
1306
1348
|
];
|
|
1307
|
-
const MODULES$
|
|
1349
|
+
const MODULES$n = [CommonModule, AXIconModule];
|
|
1308
1350
|
class AXAlertModule {
|
|
1309
1351
|
}
|
|
1310
1352
|
AXAlertModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1313,19 +1355,19 @@ AXAlertModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version:
|
|
|
1313
1355
|
AXAlertTitleComponent,
|
|
1314
1356
|
AXAlertButtonComponent,
|
|
1315
1357
|
AXAlertFooterComponent,
|
|
1316
|
-
AXAlertSuffixComponent], imports: [CommonModule], exports: [AXAlertComponent,
|
|
1358
|
+
AXAlertSuffixComponent], imports: [CommonModule, AXIconModule], exports: [AXAlertComponent,
|
|
1317
1359
|
AXAlertContentComponent,
|
|
1318
1360
|
AXAlertTitleComponent,
|
|
1319
1361
|
AXAlertButtonComponent,
|
|
1320
1362
|
AXAlertFooterComponent,
|
|
1321
1363
|
AXAlertSuffixComponent] });
|
|
1322
|
-
AXAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, providers: [], imports: [[...MODULES$
|
|
1364
|
+
AXAlertModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, providers: [], imports: [[...MODULES$n]] });
|
|
1323
1365
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAlertModule, decorators: [{
|
|
1324
1366
|
type: NgModule,
|
|
1325
1367
|
args: [{
|
|
1326
|
-
declarations: [...COMPONENT$
|
|
1327
|
-
imports: [...MODULES$
|
|
1328
|
-
exports: [...COMPONENT$
|
|
1368
|
+
declarations: [...COMPONENT$n],
|
|
1369
|
+
imports: [...MODULES$n],
|
|
1370
|
+
exports: [...COMPONENT$n],
|
|
1329
1371
|
providers: [],
|
|
1330
1372
|
}]
|
|
1331
1373
|
}] });
|
|
@@ -1374,19 +1416,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1374
1416
|
type: Input
|
|
1375
1417
|
}] } });
|
|
1376
1418
|
|
|
1377
|
-
const COMPONENT$
|
|
1378
|
-
const MODULES$
|
|
1419
|
+
const COMPONENT$m = [AXAvatarComponent];
|
|
1420
|
+
const MODULES$m = [CommonModule];
|
|
1379
1421
|
class AXAvatarModule {
|
|
1380
1422
|
}
|
|
1381
1423
|
AXAvatarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1382
1424
|
AXAvatarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, declarations: [AXAvatarComponent], imports: [CommonModule], exports: [AXAvatarComponent] });
|
|
1383
|
-
AXAvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, providers: [], imports: [[...MODULES$
|
|
1425
|
+
AXAvatarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, providers: [], imports: [[...MODULES$m]] });
|
|
1384
1426
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXAvatarModule, decorators: [{
|
|
1385
1427
|
type: NgModule,
|
|
1386
1428
|
args: [{
|
|
1387
|
-
declarations: [...COMPONENT$
|
|
1388
|
-
imports: [...MODULES$
|
|
1389
|
-
exports: [...COMPONENT$
|
|
1429
|
+
declarations: [...COMPONENT$m],
|
|
1430
|
+
imports: [...MODULES$m],
|
|
1431
|
+
exports: [...COMPONENT$m],
|
|
1390
1432
|
providers: [],
|
|
1391
1433
|
}]
|
|
1392
1434
|
}] });
|
|
@@ -1416,19 +1458,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1416
1458
|
args: ['class']
|
|
1417
1459
|
}] } });
|
|
1418
1460
|
|
|
1419
|
-
const COMPONENT$
|
|
1420
|
-
const MODULES$
|
|
1461
|
+
const COMPONENT$l = [AXBadgeComponent];
|
|
1462
|
+
const MODULES$l = [CommonModule];
|
|
1421
1463
|
class AXBadgeModule {
|
|
1422
1464
|
}
|
|
1423
1465
|
AXBadgeModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1424
1466
|
AXBadgeModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, declarations: [AXBadgeComponent], imports: [CommonModule], exports: [AXBadgeComponent] });
|
|
1425
|
-
AXBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, providers: [], imports: [[...MODULES$
|
|
1467
|
+
AXBadgeModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, providers: [], imports: [[...MODULES$l]] });
|
|
1426
1468
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXBadgeModule, decorators: [{
|
|
1427
1469
|
type: NgModule,
|
|
1428
1470
|
args: [{
|
|
1429
|
-
declarations: [...COMPONENT$
|
|
1430
|
-
imports: [...MODULES$
|
|
1431
|
-
exports: [...COMPONENT$
|
|
1471
|
+
declarations: [...COMPONENT$l],
|
|
1472
|
+
imports: [...MODULES$l],
|
|
1473
|
+
exports: [...COMPONENT$l],
|
|
1432
1474
|
providers: [],
|
|
1433
1475
|
}]
|
|
1434
1476
|
}] });
|
|
@@ -1780,56 +1822,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
1780
1822
|
}]
|
|
1781
1823
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; } });
|
|
1782
1824
|
|
|
1783
|
-
const COMPONENT$
|
|
1784
|
-
const MODULES$
|
|
1825
|
+
const COMPONENT$k = [AXDecoratorPrefixComponent, AXDecoratorSuffixComponent, AXDecoratorContentComponent, AXDecoratorHeaderComponent];
|
|
1826
|
+
const MODULES$k = [CommonModule];
|
|
1785
1827
|
class AXEditorDecoratorModule {
|
|
1786
1828
|
}
|
|
1787
1829
|
AXEditorDecoratorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1788
1830
|
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] });
|
|
1789
|
-
AXEditorDecoratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, providers: [], imports: [[...MODULES$
|
|
1831
|
+
AXEditorDecoratorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, providers: [], imports: [[...MODULES$k]] });
|
|
1790
1832
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXEditorDecoratorModule, decorators: [{
|
|
1791
|
-
type: NgModule,
|
|
1792
|
-
args: [{
|
|
1793
|
-
declarations: [...COMPONENT$l],
|
|
1794
|
-
imports: [...MODULES$l],
|
|
1795
|
-
exports: [...COMPONENT$l],
|
|
1796
|
-
providers: [],
|
|
1797
|
-
}]
|
|
1798
|
-
}] });
|
|
1799
|
-
|
|
1800
|
-
class AXIconComponent extends AXSizableComponentMixin {
|
|
1801
|
-
constructor(elementRef, cdr) {
|
|
1802
|
-
super(elementRef, cdr);
|
|
1803
|
-
}
|
|
1804
|
-
get __iconClass() {
|
|
1805
|
-
return `ax-ic ${this.icon}`;
|
|
1806
|
-
}
|
|
1807
|
-
}
|
|
1808
|
-
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 });
|
|
1809
|
-
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 });
|
|
1810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconComponent, decorators: [{
|
|
1811
|
-
type: Component,
|
|
1812
|
-
args: [{
|
|
1813
|
-
selector: 'ax-icon',
|
|
1814
|
-
template: '',
|
|
1815
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1816
|
-
encapsulation: ViewEncapsulation.None,
|
|
1817
|
-
}]
|
|
1818
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { icon: [{
|
|
1819
|
-
type: Input
|
|
1820
|
-
}], __iconClass: [{
|
|
1821
|
-
type: HostBinding,
|
|
1822
|
-
args: ['class']
|
|
1823
|
-
}] } });
|
|
1824
|
-
|
|
1825
|
-
const COMPONENT$k = [AXIconComponent];
|
|
1826
|
-
const MODULES$k = [CommonModule];
|
|
1827
|
-
class AXIconModule {
|
|
1828
|
-
}
|
|
1829
|
-
AXIconModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1830
|
-
AXIconModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, declarations: [AXIconComponent], imports: [CommonModule], exports: [AXIconComponent] });
|
|
1831
|
-
AXIconModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, providers: [], imports: [[...MODULES$k]] });
|
|
1832
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXIconModule, decorators: [{
|
|
1833
1833
|
type: NgModule,
|
|
1834
1834
|
args: [{
|
|
1835
1835
|
declarations: [...COMPONENT$k],
|
|
@@ -5065,10 +5065,10 @@ class AXPopupComponent extends AXBaseComponentMixin {
|
|
|
5065
5065
|
onFullScreen() { }
|
|
5066
5066
|
}
|
|
5067
5067
|
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 });
|
|
5068
|
-
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 });
|
|
5068
|
+
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 });
|
|
5069
5069
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXPopupComponent, decorators: [{
|
|
5070
5070
|
type: Component,
|
|
5071
|
-
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>" }]
|
|
5071
|
+
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>" }]
|
|
5072
5072
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: i0.ViewContainerRef }, { type: AXLoadingService }]; }, propDecorators: { onKeydownHandler: [{
|
|
5073
5073
|
type: HostListener,
|
|
5074
5074
|
args: ['keydown.escape', ['$event']]
|
|
@@ -5551,154 +5551,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5551
5551
|
}]
|
|
5552
5552
|
}] });
|
|
5553
5553
|
|
|
5554
|
-
class AXTabStripComponent extends AXSizableComponentMixin {
|
|
5555
|
-
constructor(elementRef, cdr) {
|
|
5556
|
-
super(elementRef, cdr);
|
|
5557
|
-
this.mode = 'default';
|
|
5558
|
-
this.direction = "horizontal";
|
|
5559
|
-
this.fitParent = false;
|
|
5560
|
-
this.minWidth = false;
|
|
5561
|
-
this.onSelectionChanged = new EventEmitter();
|
|
5562
|
-
}
|
|
5563
|
-
get items() {
|
|
5564
|
-
return this._items;
|
|
5565
|
-
}
|
|
5566
|
-
set items(v) {
|
|
5567
|
-
this._items = v;
|
|
5568
|
-
if (this._items &&
|
|
5569
|
-
this.items.length &&
|
|
5570
|
-
!this._items.some((c) => c.active)) {
|
|
5571
|
-
this._handleClick(this.items[0], 0);
|
|
5572
|
-
}
|
|
5573
|
-
}
|
|
5574
|
-
_handleClick(tab, index) {
|
|
5575
|
-
if (tab.disabled) {
|
|
5576
|
-
return;
|
|
5577
|
-
}
|
|
5578
|
-
this.items.forEach((c) => (c.active = false));
|
|
5579
|
-
tab.active = true;
|
|
5580
|
-
this.onSelectionChanged.emit({
|
|
5581
|
-
component: this,
|
|
5582
|
-
selectedIndex: index,
|
|
5583
|
-
selectedTab: tab,
|
|
5584
|
-
htmlElement: this._getHostElement(),
|
|
5585
|
-
});
|
|
5586
|
-
}
|
|
5587
|
-
get __hostClass() {
|
|
5588
|
-
return [`ax-tabs`, `ax-tabs-${this.mode ? this.mode : 'default'}`, `ax-tabs-${this.direction}`, `${this.fitParent ? 'ax-tabs-fit' : ''}`].join(' ');
|
|
5589
|
-
}
|
|
5590
|
-
}
|
|
5591
|
-
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 });
|
|
5592
|
-
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 });
|
|
5593
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabStripComponent, decorators: [{
|
|
5594
|
-
type: Component,
|
|
5595
|
-
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>" }]
|
|
5596
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { items: [{
|
|
5597
|
-
type: Input
|
|
5598
|
-
}], mode: [{
|
|
5599
|
-
type: Input
|
|
5600
|
-
}], direction: [{
|
|
5601
|
-
type: Input
|
|
5602
|
-
}], fitParent: [{
|
|
5603
|
-
type: Input
|
|
5604
|
-
}], minWidth: [{
|
|
5605
|
-
type: Input
|
|
5606
|
-
}], onSelectionChanged: [{
|
|
5607
|
-
type: Output
|
|
5608
|
-
}], __hostClass: [{
|
|
5609
|
-
type: HostBinding,
|
|
5610
|
-
args: ['class']
|
|
5611
|
-
}] } });
|
|
5612
|
-
|
|
5613
|
-
class AXTabComponent extends AXBaseComponentMixin {
|
|
5614
|
-
constructor(elementRef, cdr) {
|
|
5615
|
-
super(elementRef, cdr);
|
|
5616
|
-
this.visible = true;
|
|
5617
|
-
this.disabled = false;
|
|
5618
|
-
this._render = false;
|
|
5619
|
-
}
|
|
5620
|
-
show() {
|
|
5621
|
-
this._getHostElement().style.display = 'unset';
|
|
5622
|
-
if (!this._render) {
|
|
5623
|
-
this._render = true;
|
|
5624
|
-
this._cdr.detectChanges();
|
|
5625
|
-
}
|
|
5626
|
-
}
|
|
5627
|
-
hide() {
|
|
5628
|
-
this._getHostElement().style.display = 'none';
|
|
5629
|
-
}
|
|
5630
|
-
}
|
|
5631
|
-
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 });
|
|
5632
|
-
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: `
|
|
5633
|
-
<div *ngIf="_render" >
|
|
5634
|
-
<ng-content>
|
|
5635
|
-
</ng-content>
|
|
5636
|
-
</div>
|
|
5637
|
-
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
5638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabComponent, decorators: [{
|
|
5639
|
-
type: Component,
|
|
5640
|
-
args: [{
|
|
5641
|
-
selector: 'ax-tab',
|
|
5642
|
-
template: `
|
|
5643
|
-
<div *ngIf="_render" >
|
|
5644
|
-
<ng-content>
|
|
5645
|
-
</ng-content>
|
|
5646
|
-
</div>
|
|
5647
|
-
`,
|
|
5648
|
-
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5649
|
-
encapsulation: ViewEncapsulation.None,
|
|
5650
|
-
host: { class: 'ax-tab', style: 'display:none' }
|
|
5651
|
-
}]
|
|
5652
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { name: [{
|
|
5653
|
-
type: Input
|
|
5654
|
-
}], caption: [{
|
|
5655
|
-
type: Input
|
|
5656
|
-
}], tooltip: [{
|
|
5657
|
-
type: Input
|
|
5658
|
-
}], icon: [{
|
|
5659
|
-
type: Input
|
|
5660
|
-
}], visible: [{
|
|
5661
|
-
type: Input
|
|
5662
|
-
}], disabled: [{
|
|
5663
|
-
type: Input
|
|
5664
|
-
}], data: [{
|
|
5665
|
-
type: Input
|
|
5666
|
-
}] } });
|
|
5667
|
-
|
|
5668
|
-
class AXTabViewComponent extends AXBaseComponent {
|
|
5669
|
-
constructor(elementRef, cdr) {
|
|
5670
|
-
super(elementRef, cdr);
|
|
5671
|
-
this._tabs = [];
|
|
5672
|
-
}
|
|
5673
|
-
onViewInit() {
|
|
5674
|
-
this._tabs = Array.from(this._contentTabs).map(c => ({
|
|
5675
|
-
name: c.name,
|
|
5676
|
-
text: c.caption,
|
|
5677
|
-
tooltip: c.tooltip,
|
|
5678
|
-
icon: c.icon,
|
|
5679
|
-
visible: c.visible,
|
|
5680
|
-
disabled: c.disabled,
|
|
5681
|
-
}));
|
|
5682
|
-
this._cdr.detectChanges();
|
|
5683
|
-
}
|
|
5684
|
-
_handleSelectionChanged(e) {
|
|
5685
|
-
const tabs = Array.from(this._contentTabs);
|
|
5686
|
-
tabs.forEach(tab => {
|
|
5687
|
-
tab.hide();
|
|
5688
|
-
});
|
|
5689
|
-
tabs[e.selectedIndex].show();
|
|
5690
|
-
}
|
|
5691
|
-
}
|
|
5692
|
-
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 });
|
|
5693
|
-
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 });
|
|
5694
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImport: i0, type: AXTabViewComponent, decorators: [{
|
|
5695
|
-
type: Component,
|
|
5696
|
-
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>" }]
|
|
5697
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { _contentTabs: [{
|
|
5698
|
-
type: ContentChildren,
|
|
5699
|
-
args: [AXTabComponent]
|
|
5700
|
-
}] } });
|
|
5701
|
-
|
|
5702
5554
|
class AXTabItemComponent extends AXBaseClickableMixin {
|
|
5703
5555
|
constructor(elementRef, cdr) {
|
|
5704
5556
|
super(elementRef, cdr);
|
|
@@ -5799,6 +5651,7 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5799
5651
|
super(elementRef, cdr);
|
|
5800
5652
|
this.fitParent = false;
|
|
5801
5653
|
this.minWidth = false;
|
|
5654
|
+
this.onActiveTabChanged = new EventEmitter();
|
|
5802
5655
|
}
|
|
5803
5656
|
onRenderCssClass() {
|
|
5804
5657
|
const classList = Array.from(this._getHostElement().classList);
|
|
@@ -5810,7 +5663,8 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5810
5663
|
}
|
|
5811
5664
|
}
|
|
5812
5665
|
onViewInit() {
|
|
5813
|
-
this.
|
|
5666
|
+
const selected = this._contentTabs.find(c => c.active) || this._contentTabs.get(0);
|
|
5667
|
+
this._handleSelectionChanged(selected);
|
|
5814
5668
|
this._contentTabs.forEach(c => {
|
|
5815
5669
|
c.onClick.subscribe(t => {
|
|
5816
5670
|
this._handleSelectionChanged(c);
|
|
@@ -5824,10 +5678,15 @@ class AXTabsComponent extends AXBaseComponent {
|
|
|
5824
5678
|
this.content.portal = e.template;
|
|
5825
5679
|
}
|
|
5826
5680
|
this._cdr.markForCheck();
|
|
5681
|
+
this.onActiveTabChanged.emit({
|
|
5682
|
+
component: this,
|
|
5683
|
+
selectedTab: e,
|
|
5684
|
+
selectedIndex: 0
|
|
5685
|
+
});
|
|
5827
5686
|
}
|
|
5828
5687
|
}
|
|
5829
5688
|
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 });
|
|
5830
|
-
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: `
|
|
5689
|
+
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: `
|
|
5831
5690
|
<div class="ax-items-wrapper">
|
|
5832
5691
|
<ng-content select="ax-tab-item">
|
|
5833
5692
|
</ng-content>
|
|
@@ -5855,6 +5714,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
5855
5714
|
type: Input
|
|
5856
5715
|
}], content: [{
|
|
5857
5716
|
type: Input
|
|
5717
|
+
}], onActiveTabChanged: [{
|
|
5718
|
+
type: Output
|
|
5858
5719
|
}] } });
|
|
5859
5720
|
|
|
5860
5721
|
class AXTabStripChangedEvent extends AXEvent {
|
|
@@ -6488,5 +6349,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.1", ngImpor
|
|
|
6488
6349
|
* Generated bundle index. Do not edit.
|
|
6489
6350
|
*/
|
|
6490
6351
|
|
|
6491
|
-
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,
|
|
6352
|
+
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 };
|
|
6492
6353
|
//# sourceMappingURL=acorex-components.mjs.map
|