@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
|
@@ -4290,20 +4290,41 @@ class AXPageComponent extends AXBaseComponentMixin {
|
|
|
4290
4290
|
constructor(elementRef, cdr, _loadingService) {
|
|
4291
4291
|
super(elementRef, cdr);
|
|
4292
4292
|
this._loadingService = _loadingService;
|
|
4293
|
+
// private _isLoading: boolean = false;
|
|
4294
|
+
// public get isLoading(): boolean {
|
|
4295
|
+
// return this._isLoading;
|
|
4296
|
+
// }
|
|
4297
|
+
// public set isLoading(v: boolean) {
|
|
4298
|
+
// this._isLoading = v;
|
|
4299
|
+
// if (this._loadingId && !v) {
|
|
4300
|
+
// this._loadingService.hide(this._loadingId);
|
|
4301
|
+
// this._loadingId = null;
|
|
4302
|
+
// }
|
|
4303
|
+
// if (v) {
|
|
4304
|
+
// this._loadingId = this._loadingService.show(this._getHostElement());
|
|
4305
|
+
// }
|
|
4306
|
+
// }
|
|
4307
|
+
this.isLoadingChange = new EventEmitter();
|
|
4293
4308
|
this._isLoading = false;
|
|
4294
4309
|
}
|
|
4295
4310
|
get isLoading() {
|
|
4296
4311
|
return this._isLoading;
|
|
4297
4312
|
}
|
|
4298
4313
|
set isLoading(v) {
|
|
4299
|
-
this.
|
|
4300
|
-
|
|
4301
|
-
|
|
4302
|
-
|
|
4303
|
-
|
|
4304
|
-
|
|
4305
|
-
|
|
4306
|
-
|
|
4314
|
+
this._setOption({
|
|
4315
|
+
name: 'isLoading',
|
|
4316
|
+
value: v,
|
|
4317
|
+
afterCallback: () => {
|
|
4318
|
+
if (this._loadingId && !v) {
|
|
4319
|
+
this._loadingService.hide(this._loadingId);
|
|
4320
|
+
this._loadingId = null;
|
|
4321
|
+
}
|
|
4322
|
+
if (v) {
|
|
4323
|
+
this._loadingId = this._loadingService.show(this._getHostElement());
|
|
4324
|
+
}
|
|
4325
|
+
this._cdr.markForCheck();
|
|
4326
|
+
}
|
|
4327
|
+
});
|
|
4307
4328
|
}
|
|
4308
4329
|
}
|
|
4309
4330
|
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 });
|
|
@@ -4313,7 +4334,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
4313
4334
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
|
|
4314
4335
|
type: Inject,
|
|
4315
4336
|
args: [AXLoadingService]
|
|
4316
|
-
}] }]; }
|
|
4337
|
+
}] }]; }, propDecorators: { isLoadingChange: [{
|
|
4338
|
+
type: Output
|
|
4339
|
+
}], isLoading: [{
|
|
4340
|
+
type: Input
|
|
4341
|
+
}] } });
|
|
4317
4342
|
|
|
4318
4343
|
class AXPageFooterComponent {
|
|
4319
4344
|
}
|
|
@@ -4364,8 +4389,13 @@ class AXPageClosedPromise extends Promise {
|
|
|
4364
4389
|
}
|
|
4365
4390
|
}
|
|
4366
4391
|
}
|
|
4367
|
-
class AXBasePageComponent {
|
|
4368
|
-
|
|
4392
|
+
class AXBasePageComponent extends AXBaseComponentMixin {
|
|
4393
|
+
/**
|
|
4394
|
+
* @ignore
|
|
4395
|
+
*/
|
|
4396
|
+
constructor(elementRef, cdr) {
|
|
4397
|
+
super(elementRef, cdr);
|
|
4398
|
+
this.isLoadingChange = new EventEmitter();
|
|
4369
4399
|
this._isLoading = false;
|
|
4370
4400
|
this._isPopup = false;
|
|
4371
4401
|
this.onClosed = new EventEmitter();
|
|
@@ -4374,11 +4404,16 @@ class AXBasePageComponent {
|
|
|
4374
4404
|
return this._isLoading;
|
|
4375
4405
|
}
|
|
4376
4406
|
set isLoading(v) {
|
|
4377
|
-
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4381
|
-
|
|
4407
|
+
this._setOption({
|
|
4408
|
+
name: 'isLoading',
|
|
4409
|
+
value: v,
|
|
4410
|
+
afterCallback: () => {
|
|
4411
|
+
if (this.pageContainer) {
|
|
4412
|
+
this.pageContainer.isLoading = this.isLoading;
|
|
4413
|
+
}
|
|
4414
|
+
this._cdr.markForCheck();
|
|
4415
|
+
}
|
|
4416
|
+
});
|
|
4382
4417
|
}
|
|
4383
4418
|
get isPopup() {
|
|
4384
4419
|
return this._isPopup;
|
|
@@ -4395,16 +4430,20 @@ class AXBasePageComponent {
|
|
|
4395
4430
|
this.onClosed.unsubscribe();
|
|
4396
4431
|
}
|
|
4397
4432
|
}
|
|
4398
|
-
AXBasePageComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4433
|
+
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 });
|
|
4399
4434
|
AXBasePageComponent.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent });
|
|
4400
4435
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXBasePageComponent, decorators: [{
|
|
4401
4436
|
type: Injectable
|
|
4402
|
-
}], propDecorators: { pageContainer: [{
|
|
4437
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { pageContainer: [{
|
|
4403
4438
|
type: ViewChild,
|
|
4404
4439
|
args: [AXPageComponent, { static: true }]
|
|
4405
4440
|
}], footer: [{
|
|
4406
4441
|
type: ViewChild,
|
|
4407
4442
|
args: [AXPageFooterComponent, { static: true }]
|
|
4443
|
+
}], isLoadingChange: [{
|
|
4444
|
+
type: Output
|
|
4445
|
+
}], isLoading: [{
|
|
4446
|
+
type: Input
|
|
4408
4447
|
}] } });
|
|
4409
4448
|
|
|
4410
4449
|
class AXPageHeaderComponent {
|
|
@@ -4486,9 +4525,30 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4486
4525
|
}
|
|
4487
4526
|
}
|
|
4488
4527
|
onInit() {
|
|
4489
|
-
this._getHostElement().classList.add(this.location == 'start' ? 'ax-drawer-start' : 'ax-drawer-end');
|
|
4528
|
+
// this._getHostElement().classList.add(this.location == 'start' ? 'ax-drawer-start' : 'ax-drawer-end');
|
|
4529
|
+
this._setLocation();
|
|
4490
4530
|
this._currentMode = this.mode;
|
|
4491
4531
|
}
|
|
4532
|
+
_setLocation() {
|
|
4533
|
+
const hostElementClassList = this._getHostElement().classList;
|
|
4534
|
+
switch (this.location) {
|
|
4535
|
+
case 'start':
|
|
4536
|
+
hostElementClassList.add('ax-drawer-start');
|
|
4537
|
+
break;
|
|
4538
|
+
case 'end':
|
|
4539
|
+
hostElementClassList.add('ax-drawer-end');
|
|
4540
|
+
break;
|
|
4541
|
+
case 'top':
|
|
4542
|
+
hostElementClassList.add('ax-drawer-top');
|
|
4543
|
+
break;
|
|
4544
|
+
case 'bottom':
|
|
4545
|
+
hostElementClassList.add('ax-drawer-bottom');
|
|
4546
|
+
break;
|
|
4547
|
+
default:
|
|
4548
|
+
hostElementClassList.add('ax-drawer-start');
|
|
4549
|
+
break;
|
|
4550
|
+
}
|
|
4551
|
+
}
|
|
4492
4552
|
_updateClass() {
|
|
4493
4553
|
this.zone.runOutsideAngular(() => {
|
|
4494
4554
|
const elm = this._getHostElement();
|
|
@@ -4530,7 +4590,7 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4530
4590
|
//TODO detect break size
|
|
4531
4591
|
const bound = this._getHostElement().parentElement.getBoundingClientRect();
|
|
4532
4592
|
if (bound.width == 0) {
|
|
4533
|
-
console.log('
|
|
4593
|
+
console.log('Drawer invalid size', bound);
|
|
4534
4594
|
setTimeout(() => {
|
|
4535
4595
|
this._detectSize();
|
|
4536
4596
|
}, 1);
|
|
@@ -4584,7 +4644,7 @@ class AXDrawerComponent extends AXBaseComponentMixin {
|
|
|
4584
4644
|
}
|
|
4585
4645
|
}
|
|
4586
4646
|
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 });
|
|
4587
|
-
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: `
|
|
4647
|
+
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: `
|
|
4588
4648
|
<ng-content>
|
|
4589
4649
|
</ng-content>
|
|
4590
4650
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
@@ -4598,7 +4658,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
4598
4658
|
`,
|
|
4599
4659
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
4600
4660
|
encapsulation: ViewEncapsulation.None,
|
|
4601
|
-
host: { class: 'ax-drawer' }
|
|
4661
|
+
host: { class: 'ax-drawer ax-transition-all' }
|
|
4602
4662
|
}]
|
|
4603
4663
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; }, propDecorators: { onChanged: [{
|
|
4604
4664
|
type: Output
|
|
@@ -4621,11 +4681,11 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4621
4681
|
onViewInit() {
|
|
4622
4682
|
this._updateWidth();
|
|
4623
4683
|
// add animation
|
|
4624
|
-
setTimeout(() => {
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
}, 100);
|
|
4684
|
+
// setTimeout(() => {
|
|
4685
|
+
// this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
4686
|
+
// c.classList.add('ax-animated');
|
|
4687
|
+
// });
|
|
4688
|
+
// }, 100);
|
|
4629
4689
|
this.drawers.forEach(c => {
|
|
4630
4690
|
c.onChanged.subscribe(c => {
|
|
4631
4691
|
this._updateWidth();
|
|
@@ -4640,10 +4700,12 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4640
4700
|
this._getHostElement().querySelectorAll('ax-drawer').forEach(c => {
|
|
4641
4701
|
const elm = c;
|
|
4642
4702
|
const width = elm.getBoundingClientRect().width;
|
|
4703
|
+
const height = elm.getBoundingClientRect().height;
|
|
4643
4704
|
const overflow = parentWidth < width;
|
|
4644
4705
|
const diff = width - parentWidth;
|
|
4645
4706
|
w += ['ax-expanded', 'ax-drawer-push'].every(c => elm.classList.contains(c)) ? width : 0;
|
|
4646
4707
|
elm.style.setProperty('--attr-width', `${width}px`);
|
|
4708
|
+
elm.style.setProperty('--attr-height', `${height}px`);
|
|
4647
4709
|
//TODO check overflow
|
|
4648
4710
|
elm.style.setProperty('--attr-diff', `${overflow ? diff : 0}px`);
|
|
4649
4711
|
});
|
|
@@ -4653,24 +4715,32 @@ class AXDrawerContainerComponent extends AXBaseComponentMixin {
|
|
|
4653
4715
|
}
|
|
4654
4716
|
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 });
|
|
4655
4717
|
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: `
|
|
4718
|
+
<ng-content select="ax-drawer[location='top']">
|
|
4719
|
+
</ng-content>
|
|
4656
4720
|
<ng-content select="ax-drawer[location='start']">
|
|
4657
4721
|
</ng-content>
|
|
4658
4722
|
<ng-content select="ax-drawer-content">
|
|
4659
4723
|
</ng-content>
|
|
4660
4724
|
<ng-content select="ax-drawer[location='end']">
|
|
4661
4725
|
</ng-content>
|
|
4726
|
+
<ng-content select="ax-drawer[location='bottom']">
|
|
4727
|
+
</ng-content>
|
|
4662
4728
|
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
|
|
4663
4729
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXDrawerContainerComponent, decorators: [{
|
|
4664
4730
|
type: Component,
|
|
4665
4731
|
args: [{
|
|
4666
4732
|
selector: 'ax-drawer-container',
|
|
4667
4733
|
template: `
|
|
4734
|
+
<ng-content select="ax-drawer[location='top']">
|
|
4735
|
+
</ng-content>
|
|
4668
4736
|
<ng-content select="ax-drawer[location='start']">
|
|
4669
4737
|
</ng-content>
|
|
4670
4738
|
<ng-content select="ax-drawer-content">
|
|
4671
4739
|
</ng-content>
|
|
4672
4740
|
<ng-content select="ax-drawer[location='end']">
|
|
4673
4741
|
</ng-content>
|
|
4742
|
+
<ng-content select="ax-drawer[location='bottom']">
|
|
4743
|
+
</ng-content>
|
|
4674
4744
|
`,
|
|
4675
4745
|
inputs: ['rtl'],
|
|
4676
4746
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
@@ -6212,7 +6282,7 @@ class AXSelectionListComponent extends AXBaseSelectionValueMixin {
|
|
|
6212
6282
|
}
|
|
6213
6283
|
}
|
|
6214
6284
|
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 });
|
|
6215
|
-
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 });
|
|
6285
|
+
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 });
|
|
6216
6286
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AXSelectionListComponent, decorators: [{
|
|
6217
6287
|
type: Component,
|
|
6218
6288
|
args: [{ selector: 'ax-selection-list', inputs: [
|
|
@@ -6226,7 +6296,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
6226
6296
|
'multiple',
|
|
6227
6297
|
'items',
|
|
6228
6298
|
'selectionMode',
|
|
6229
|
-
], 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> -->" }]
|
|
6299
|
+
], 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> -->" }]
|
|
6230
6300
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { direction: [{
|
|
6231
6301
|
type: Input
|
|
6232
6302
|
}] } });
|