@acorex/components 5.0.54 → 5.0.55
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/drawer/drawer-container.component.mjs +16 -6
- package/esm2020/lib/drawer/drawer.component.mjs +26 -5
- package/esm2020/lib/page/base-page.class.mjs +26 -11
- package/esm2020/lib/page/page.component.mjs +36 -11
- package/esm2020/lib/selection-list/selection-list.component.mjs +3 -3
- package/esm2020/lib/textbox/textbox.component.mjs +1 -1
- package/fesm2015/acorex-components.mjs +99 -29
- package/fesm2015/acorex-components.mjs.map +1 -1
- package/fesm2020/acorex-components.mjs +99 -29
- package/fesm2020/acorex-components.mjs.map +1 -1
- package/lib/drawer/drawer-container.component.d.ts +1 -1
- package/lib/drawer/drawer.component.d.ts +2 -1
- package/lib/page/base-page.class.d.ts +8 -2
- package/lib/page/page.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4305,20 +4305,41 @@ class AXPageComponent extends AXBaseComponentMixin {
|
|
|
4305
4305
|
constructor(elementRef, cdr, _loadingService) {
|
|
4306
4306
|
super(elementRef, cdr);
|
|
4307
4307
|
this._loadingService = _loadingService;
|
|
4308
|
+
// private _isLoading: boolean = false;
|
|
4309
|
+
// public get isLoading(): boolean {
|
|
4310
|
+
// return this._isLoading;
|
|
4311
|
+
// }
|
|
4312
|
+
// public set isLoading(v: boolean) {
|
|
4313
|
+
// this._isLoading = v;
|
|
4314
|
+
// if (this._loadingId && !v) {
|
|
4315
|
+
// this._loadingService.hide(this._loadingId);
|
|
4316
|
+
// this._loadingId = null;
|
|
4317
|
+
// }
|
|
4318
|
+
// if (v) {
|
|
4319
|
+
// this._loadingId = this._loadingService.show(this._getHostElement());
|
|
4320
|
+
// }
|
|
4321
|
+
// }
|
|
4322
|
+
this.isLoadingChange = new EventEmitter();
|
|
4308
4323
|
this._isLoading = false;
|
|
4309
4324
|
}
|
|
4310
4325
|
get isLoading() {
|
|
4311
4326
|
return this._isLoading;
|
|
4312
4327
|
}
|
|
4313
4328
|
set isLoading(v) {
|
|
4314
|
-
this.
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4329
|
+
this._setOption({
|
|
4330
|
+
name: 'isLoading',
|
|
4331
|
+
value: v,
|
|
4332
|
+
afterCallback: () => {
|
|
4333
|
+
if (this._loadingId && !v) {
|
|
4334
|
+
this._loadingService.hide(this._loadingId);
|
|
4335
|
+
this._loadingId = null;
|
|
4336
|
+
}
|
|
4337
|
+
if (v) {
|
|
4338
|
+
this._loadingId = this._loadingService.show(this._getHostElement());
|
|
4339
|
+
}
|
|
4340
|
+
this._cdr.markForCheck();
|
|
4341
|
+
}
|
|
4342
|
+
});
|
|
4322
4343
|
}
|
|
4323
4344
|
}
|
|
4324
4345
|
AXPageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXPageComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: AXLoadingService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -4330,7 +4351,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
4330
4351
|
type: Inject,
|
|
4331
4352
|
args: [AXLoadingService]
|
|
4332
4353
|
}] }];
|
|
4333
|
-
}
|
|
4354
|
+
}, propDecorators: { isLoadingChange: [{
|
|
4355
|
+
type: Output
|
|
4356
|
+
}], isLoading: [{
|
|
4357
|
+
type: Input
|
|
4358
|
+
}] } });
|
|
4334
4359
|
|
|
4335
4360
|
class AXPageFooterComponent {
|
|
4336
4361
|
}
|
|
@@ -4381,8 +4406,13 @@ class AXPageClosedPromise extends Promise {
|
|
|
4381
4406
|
}
|
|
4382
4407
|
}
|
|
4383
4408
|
}
|
|
4384
|
-
class AXBasePageComponent {
|
|
4385
|
-
|
|
4409
|
+
class AXBasePageComponent extends AXBaseComponentMixin {
|
|
4410
|
+
/**
|
|
4411
|
+
* @ignore
|
|
4412
|
+
*/
|
|
4413
|
+
constructor(elementRef, cdr) {
|
|
4414
|
+
super(elementRef, cdr);
|
|
4415
|
+
this.isLoadingChange = new EventEmitter();
|
|
4386
4416
|
this._isLoading = false;
|
|
4387
4417
|
this._isPopup = false;
|
|
4388
4418
|
this.onClosed = new EventEmitter();
|
|
@@ -4391,11 +4421,16 @@ class AXBasePageComponent {
|
|
|
4391
4421
|
return this._isLoading;
|
|
4392
4422
|
}
|
|
4393
4423
|
set isLoading(v) {
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4424
|
+
this._setOption({
|
|
4425
|
+
name: 'isLoading',
|
|
4426
|
+
value: v,
|
|
4427
|
+
afterCallback: () => {
|
|
4428
|
+
if (this.pageContainer) {
|
|
4429
|
+
this.pageContainer.isLoading = this.isLoading;
|
|
4430
|
+
}
|
|
4431
|
+
this._cdr.markForCheck();
|
|
4432
|
+
}
|
|
4433
|
+
});
|
|
4399
4434
|
}
|
|
4400
4435
|
get isPopup() {
|
|
4401
4436
|
return this._isPopup;
|
|
@@ -4412,16 +4447,20 @@ class AXBasePageComponent {
|
|
|
4412
4447
|
this.onClosed.unsubscribe();
|
|
4413
4448
|
}
|
|
4414
4449
|
}
|
|
4415
|
-
AXBasePageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4450
|
+
AXBasePageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4416
4451
|
AXBasePageComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent });
|
|
4417
4452
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent, decorators: [{
|
|
4418
4453
|
type: Injectable
|
|
4419
|
-
}], propDecorators: { pageContainer: [{
|
|
4454
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { pageContainer: [{
|
|
4420
4455
|
type: ViewChild,
|
|
4421
4456
|
args: [AXPageComponent, { static: true }]
|
|
4422
4457
|
}], footer: [{
|
|
4423
4458
|
type: ViewChild,
|
|
4424
4459
|
args: [AXPageFooterComponent, { static: true }]
|
|
4460
|
+
}], isLoadingChange: [{
|
|
4461
|
+
type: Output
|
|
4462
|
+
}], isLoading: [{
|
|
4463
|
+
type: Input
|
|
4425
4464
|
}] } });
|
|
4426
4465
|
|
|
4427
4466
|
class AXPageHeaderComponent {
|
|
@@ -4503,9 +4542,30 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4503
4542
|
}
|
|
4504
4543
|
}
|
|
4505
4544
|
onInit() {
|
|
4506
|
-
this._getHostElement().classList.add(this.location == 'start' ? 'ax-drawer-start' : 'ax-drawer-end');
|
|
4545
|
+
// this._getHostElement().classList.add(this.location == 'start' ? 'ax-drawer-start' : 'ax-drawer-end');
|
|
4546
|
+
this._setLocation();
|
|
4507
4547
|
this._currentMode = this.mode;
|
|
4508
4548
|
}
|
|
4549
|
+
_setLocation() {
|
|
4550
|
+
const hostElementClassList = this._getHostElement().classList;
|
|
4551
|
+
switch (this.location) {
|
|
4552
|
+
case 'start':
|
|
4553
|
+
hostElementClassList.add('ax-drawer-start');
|
|
4554
|
+
break;
|
|
4555
|
+
case 'end':
|
|
4556
|
+
hostElementClassList.add('ax-drawer-end');
|
|
4557
|
+
break;
|
|
4558
|
+
case 'top':
|
|
4559
|
+
hostElementClassList.add('ax-drawer-top');
|
|
4560
|
+
break;
|
|
4561
|
+
case 'bottom':
|
|
4562
|
+
hostElementClassList.add('ax-drawer-bottom');
|
|
4563
|
+
break;
|
|
4564
|
+
default:
|
|
4565
|
+
hostElementClassList.add('ax-drawer-start');
|
|
4566
|
+
break;
|
|
4567
|
+
}
|
|
4568
|
+
}
|
|
4509
4569
|
_updateClass() {
|
|
4510
4570
|
this.zone.runOutsideAngular(() => {
|
|
4511
4571
|
const elm = this._getHostElement();
|
|
@@ -4547,7 +4607,7 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4547
4607
|
//TODO detect break size
|
|
4548
4608
|
const bound = this._getHostElement().parentElement.getBoundingClientRect();
|
|
4549
4609
|
if (bound.width == 0) {
|
|
4550
|
-
console.log('
|
|
4610
|
+
console.log('Drawer invalid size', bound);
|
|
4551
4611
|
setTimeout(() => {
|
|
4552
4612
|
this._detectSize();
|
|
4553
4613
|
}, 1);
|
|
@@ -4601,7 +4661,7 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4601
4661
|
}
|
|
4602
4662
|
}
|
|
4603
4663
|
AXDrawerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDrawerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
4604
|
-
AXDrawerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXDrawerComponent, selector: "ax-drawer", inputs: { mode: "mode", location: "location", collapsed: "collapsed" }, outputs: { onChanged: "onChanged" }, host: { listeners: { "window:resize": "_handleWindowsResize($event)" }, classAttribute: "ax-drawer" }, usesInheritance: true, ngImport: i0, template: `
|
|
4664
|
+
AXDrawerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXDrawerComponent, selector: "ax-drawer", inputs: { mode: "mode", location: "location", collapsed: "collapsed" }, outputs: { onChanged: "onChanged" }, host: { listeners: { "window:resize": "_handleWindowsResize($event)" }, classAttribute: "ax-drawer ax-transition-all" }, usesInheritance: true, ngImport: i0, template: `
|
|
4605
4665
|
<ng-content>
|
|
4606
4666
|
</ng-content>
|
|
4607
4667
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
@@ -4615,7 +4675,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
4615
4675
|
`,
|
|
4616
4676
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4617
4677
|
encapsulation: ViewEncapsulation.None,
|
|
4618
|
-
host: { class: 'ax-drawer' }
|
|
4678
|
+
host: { class: 'ax-drawer ax-transition-all' }
|
|
4619
4679
|
}]
|
|
4620
4680
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { onChanged: [{
|
|
4621
4681
|
type: Output
|
|
@@ -4638,11 +4698,11 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4638
4698
|
onViewInit() {
|
|
4639
4699
|
this._updateWidth();
|
|
4640
4700
|
// add animation
|
|
4641
|
-
setTimeout(() => {
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
}, 100);
|
|
4701
|
+
// setTimeout(() => {
|
|
4702
|
+
// this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
4703
|
+
// c.classList.add('ax-animated');
|
|
4704
|
+
// });
|
|
4705
|
+
// }, 100);
|
|
4646
4706
|
this.drawers.forEach(c => {
|
|
4647
4707
|
c.onChanged.subscribe(c => {
|
|
4648
4708
|
this._updateWidth();
|
|
@@ -4657,10 +4717,12 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4657
4717
|
this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
4658
4718
|
const elm = c;
|
|
4659
4719
|
const width = elm.getBoundingClientRect().width;
|
|
4720
|
+
const height = elm.getBoundingClientRect().height;
|
|
4660
4721
|
const overflow = parentWidth < width;
|
|
4661
4722
|
const diff = width - parentWidth;
|
|
4662
4723
|
w += ['ax-expanded', 'ax-drawer-push'].every(c => elm.classList.contains(c)) ? width : 0;
|
|
4663
4724
|
elm.style.setProperty('--attr-width', `${width}px`);
|
|
4725
|
+
elm.style.setProperty('--attr-height', `${height}px`);
|
|
4664
4726
|
//TODO check overflow
|
|
4665
4727
|
elm.style.setProperty('--attr-diff', `${overflow ? diff : 0}px`);
|
|
4666
4728
|
});
|
|
@@ -4670,24 +4732,32 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4670
4732
|
}
|
|
4671
4733
|
AXDrawerContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDrawerContainerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
4672
4734
|
AXDrawerContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXDrawerContainerComponent, selector: "ax-drawer-container", inputs: { rtl: "rtl" }, host: { classAttribute: "ax-drawer-container" }, queries: [{ propertyName: "drawers", predicate: AXDrawerComponent }], usesInheritance: true, ngImport: i0, template: `
|
|
4735
|
+
<ng-content select="ax-drawer[location='top']">
|
|
4736
|
+
</ng-content>
|
|
4673
4737
|
<ng-content select="ax-drawer[location='start']">
|
|
4674
4738
|
</ng-content>
|
|
4675
4739
|
<ng-content select="ax-drawer-content">
|
|
4676
4740
|
</ng-content>
|
|
4677
4741
|
<ng-content select="ax-drawer[location='end']">
|
|
4678
4742
|
</ng-content>
|
|
4743
|
+
<ng-content select="ax-drawer[location='bottom']">
|
|
4744
|
+
</ng-content>
|
|
4679
4745
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4680
4746
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDrawerContainerComponent, decorators: [{
|
|
4681
4747
|
type: Component,
|
|
4682
4748
|
args: [{
|
|
4683
4749
|
selector: 'ax-drawer-container',
|
|
4684
4750
|
template: `
|
|
4751
|
+
<ng-content select="ax-drawer[location='top']">
|
|
4752
|
+
</ng-content>
|
|
4685
4753
|
<ng-content select="ax-drawer[location='start']">
|
|
4686
4754
|
</ng-content>
|
|
4687
4755
|
<ng-content select="ax-drawer-content">
|
|
4688
4756
|
</ng-content>
|
|
4689
4757
|
<ng-content select="ax-drawer[location='end']">
|
|
4690
4758
|
</ng-content>
|
|
4759
|
+
<ng-content select="ax-drawer[location='bottom']">
|
|
4760
|
+
</ng-content>
|
|
4691
4761
|
`,
|
|
4692
4762
|
inputs: ['rtl'],
|
|
4693
4763
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -6239,7 +6309,7 @@ class AXSelectionListComponent extends AXBaseSelectionValueMixin {
|
|
|
6239
6309
|
}
|
|
6240
6310
|
}
|
|
6241
6311
|
AXSelectionListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXSelectionListComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
6242
|
-
AXSelectionListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXSelectionListComponent, selector: "ax-selection-list", inputs: { disabled: "disabled", readonly: "readonly", tabIndex: "tabIndex", size: "size", value: "value", valueField: "valueField", textField: "textField", multiple: "multiple", items: "items", selectionMode: "selectionMode", direction: "direction" }, outputs: { valueChange: "valueChange", onValueChanged: "onValueChanged", onBlur: "onBlur", onFocus: "onFocus" }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container\" [class.ax-state-selected]=\"isItemSelected(item)\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-check-box\">\r\n <input [id]=\"id+'-'+i\" class=\"ax-checkbox\" type=\"checkbox\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container\" [class.ax-state-selected]=\"isItemSelected(item)\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-radio\">\r\n <input [id]=\"id+'-'+i\" class=\"ax-radio\" type=\"radio\" [attr.name]=\"id\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div>\r\n\r\n<!-- <div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-check-box [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n \r\n <ax-label> {{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-check-box>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-radio [id]=\"id+'-'+i\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n <ax-label>{{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-radio>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div> -->", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6312
|
+
AXSelectionListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.2", type: AXSelectionListComponent, selector: "ax-selection-list", inputs: { disabled: "disabled", readonly: "readonly", tabIndex: "tabIndex", size: "size", value: "value", valueField: "valueField", textField: "textField", multiple: "multiple", items: "items", selectionMode: "selectionMode", direction: "direction" }, outputs: { valueChange: "valueChange", onValueChanged: "onValueChanged", onBlur: "onBlur", onFocus: "onFocus" }, usesInheritance: true, ngImport: i0, template: "<div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container\" [class.ax-state-selected]=\"isItemSelected(item)\" (click)=\"ic.click()\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-check-box\">\r\n <input #ic [id]=\"id+'-'+i\" class=\"ax-checkbox\" type=\"checkbox\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container\" [class.ax-state-selected]=\"isItemSelected(item)\" (click)=\"ir.click()\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-radio\">\r\n <input #ir [id]=\"id+'-'+i\" class=\"ax-radio\" type=\"radio\" [attr.name]=\"id\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div>\r\n\r\n<!-- <div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-check-box [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n \r\n <ax-label> {{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-check-box>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-radio [id]=\"id+'-'+i\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n <ax-label>{{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-radio>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div> -->", directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
6243
6313
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXSelectionListComponent, decorators: [{
|
|
6244
6314
|
type: Component,
|
|
6245
6315
|
args: [{ selector: 'ax-selection-list', inputs: [
|
|
@@ -6253,7 +6323,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
6253
6323
|
'multiple',
|
|
6254
6324
|
'items',
|
|
6255
6325
|
'selectionMode',
|
|
6256
|
-
], outputs: ['valueChange', 'onValueChanged', 'onBlur', 'onFocus'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container\" [class.ax-state-selected]=\"isItemSelected(item)\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-check-box\">\r\n <input [id]=\"id+'-'+i\" class=\"ax-checkbox\" type=\"checkbox\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container\" [class.ax-state-selected]=\"isItemSelected(item)\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-radio\">\r\n <input [id]=\"id+'-'+i\" class=\"ax-radio\" type=\"radio\" [attr.name]=\"id\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div>\r\n\r\n<!-- <div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-check-box [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n \r\n <ax-label> {{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-check-box>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-radio [id]=\"id+'-'+i\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n <ax-label>{{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-radio>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div> -->" }]
|
|
6326
|
+
], outputs: ['valueChange', 'onValueChanged', 'onBlur', 'onFocus'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container\" [class.ax-state-selected]=\"isItemSelected(item)\" (click)=\"ic.click()\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-check-box\">\r\n <input #ic [id]=\"id+'-'+i\" class=\"ax-checkbox\" type=\"checkbox\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container\" [class.ax-state-selected]=\"isItemSelected(item)\" (click)=\"ir.click()\">\r\n <div class=\"ax-flex ax-items-center ax-h-5 ax-radio\">\r\n <input #ir [id]=\"id+'-'+i\" class=\"ax-radio\" type=\"radio\" [attr.name]=\"id\" (change)=\"_handleOnItemValueChange(item, $event)\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n </div>\r\n <div class=\"ax-ms-3 ax-text-sm\">\r\n <label [for]=\"id+'-'+i\" class=\"ax-font-medium ax-text-light-700 dark:ax-text-light-100\"> {{item[textField]}}</label>\r\n <p class=\"ax-text-light-500\"> {{item.hint ? item.hint : item[hintField]}}</p>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div>\r\n\r\n<!-- <div class=\"ax-selection-list ax-{{direction}}\">\r\n <ng-container *ngIf=\"multiple; then checkboxList; else radioButtonList\"></ng-container>\r\n <ng-template #checkboxList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-checkbox-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-check-box [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n \r\n <ax-label> {{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-check-box>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-template #radioButtonList>\r\n <ng-container *ngFor=\"let item of displayItems;let i = index\">\r\n <div class=\"ax-flex ax-items-start ax-radio-container ax-mb-2\">\r\n <div class=\"ax-flex ax-items-center ax-h-5\">\r\n <ax-radio [id]=\"id+'-'+i\" [checked]=\"isItemSelected(item)\" [disabled]=\"disabled || item.disabled\" [readonly]=\"readonly || item.readonly\">\r\n <ax-label>{{item[textField]}} | {{isItemSelected(item)}}</ax-label>\r\n <ax-form-hint *ngIf=\"item[hintField]\"> {{item[hintField]}} </ax-form-hint>\r\n </ax-radio>\r\n </div>\r\n </div>\r\n </ng-container>\r\n </ng-template>\r\n <ng-content select=\"ax-validation-rule\">\r\n </ng-content>\r\n</div> -->" }]
|
|
6257
6327
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { direction: [{
|
|
6258
6328
|
type: Input
|
|
6259
6329
|
}] } });
|