@abgov/angular-components 4.5.0-alpha.1 → 4.5.0-alpha.3
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/esm2022/lib/components/accordion/accordion.mjs +5 -4
- package/esm2022/lib/components/badge/badge.mjs +5 -4
- package/esm2022/lib/components/base.component.mjs +1 -1
- package/esm2022/lib/components/button/button.mjs +5 -4
- package/esm2022/lib/components/card/card.mjs +5 -4
- package/esm2022/lib/components/checkbox/checkbox.mjs +20 -7
- package/esm2022/lib/components/chip/chip.mjs +7 -5
- package/esm2022/lib/components/circular-progress/circular-progress.mjs +8 -6
- package/esm2022/lib/components/date-picker/date-picker.mjs +6 -2
- package/esm2022/lib/components/details/details.mjs +5 -4
- package/esm2022/lib/components/drawer/drawer.mjs +4 -4
- package/esm2022/lib/components/dropdown/dropdown.mjs +9 -6
- package/esm2022/lib/components/file-upload-card/file-upload-card.mjs +8 -6
- package/esm2022/lib/components/filter-chip/filter-chip.mjs +7 -5
- package/esm2022/lib/components/form/public-form-page.mjs +6 -7
- package/esm2022/lib/components/form/public-form.mjs +2 -3
- package/esm2022/lib/components/header/header.mjs +5 -4
- package/esm2022/lib/components/icon/icon.mjs +7 -5
- package/esm2022/lib/components/icon-button/icon-button.mjs +5 -4
- package/esm2022/lib/components/input/input.mjs +18 -8
- package/esm2022/lib/components/input-number/input-number.mjs +22 -10
- package/esm2022/lib/components/modal/modal.mjs +5 -4
- package/esm2022/lib/components/pages/pages.mjs +5 -4
- package/esm2022/lib/components/radio-item/radio-item.mjs +30 -9
- package/esm2022/lib/components/skeleton/skeleton.mjs +5 -4
- package/esm2022/lib/components/tabs/tabs.mjs +6 -7
- package/esm2022/lib/components/textarea/textarea.mjs +7 -5
- package/fesm2022/abgov-angular-components.mjs +167 -85
- package/fesm2022/abgov-angular-components.mjs.map +1 -1
- package/lib/components/accordion/accordion.d.ts +1 -0
- package/lib/components/badge/badge.d.ts +1 -0
- package/lib/components/button/button.d.ts +1 -0
- package/lib/components/card/card.d.ts +1 -0
- package/lib/components/checkbox/checkbox.d.ts +4 -1
- package/lib/components/chip/chip.d.ts +2 -0
- package/lib/components/circular-progress/circular-progress.d.ts +2 -0
- package/lib/components/date-picker/date-picker.d.ts +3 -2
- package/lib/components/details/details.d.ts +1 -0
- package/lib/components/drawer/drawer.d.ts +1 -0
- package/lib/components/dropdown/dropdown.d.ts +3 -0
- package/lib/components/file-upload-card/file-upload-card.d.ts +2 -0
- package/lib/components/filter-chip/filter-chip.d.ts +2 -0
- package/lib/components/form/public-form-page.d.ts +4 -4
- package/lib/components/form/public-form.d.ts +2 -2
- package/lib/components/header/header.d.ts +1 -0
- package/lib/components/icon/icon.d.ts +2 -0
- package/lib/components/icon-button/icon-button.d.ts +1 -0
- package/lib/components/input/input.d.ts +7 -1
- package/lib/components/input-number/input-number.d.ts +9 -1
- package/lib/components/modal/modal.d.ts +1 -0
- package/lib/components/pages/pages.d.ts +1 -0
- package/lib/components/radio-item/radio-item.d.ts +6 -1
- package/lib/components/skeleton/skeleton.d.ts +1 -0
- package/lib/components/tabs/tabs.d.ts +1 -0
- package/lib/components/textarea/textarea.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { forwardRef, Directive,
|
|
2
|
+
import { forwardRef, HostListener, Directive, CUSTOM_ELEMENTS_SCHEMA, NgModule, Input, Component, booleanAttribute, EventEmitter, Output, numberAttribute, TemplateRef } from '@angular/core';
|
|
3
3
|
import { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { NgTemplateOutlet, NgIf } from '@angular/common';
|
|
5
5
|
export * from '@abgov/ui-components-common';
|
|
@@ -331,7 +331,7 @@ class GoabAccordion extends GoabBaseComponent {
|
|
|
331
331
|
this.onChange.emit(detail.open);
|
|
332
332
|
}
|
|
333
333
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAccordion, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
334
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
334
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabAccordion, isStandalone: true, selector: "goab-accordion", inputs: { heading: "heading", secondaryText: "secondaryText", open: ["open", "open", booleanAttribute], headingSize: "headingSize", headingContent: "headingContent", maxWidth: "maxWidth", iconPosition: "iconPosition" }, outputs: { onChange: "onChange" }, usesInheritance: true, ngImport: i0, template: `
|
|
335
335
|
<goa-accordion
|
|
336
336
|
[attr.heading]="heading"
|
|
337
337
|
[attr.secondarytext]="secondaryText"
|
|
@@ -387,7 +387,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
387
387
|
}], secondaryText: [{
|
|
388
388
|
type: Input
|
|
389
389
|
}], open: [{
|
|
390
|
-
type: Input
|
|
390
|
+
type: Input,
|
|
391
|
+
args: [{ transform: booleanAttribute }]
|
|
391
392
|
}], headingSize: [{
|
|
392
393
|
type: Input
|
|
393
394
|
}], headingContent: [{
|
|
@@ -402,7 +403,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
402
403
|
|
|
403
404
|
class GoabBadge extends GoabBaseComponent {
|
|
404
405
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabBadge, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
405
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
406
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabBadge, isStandalone: true, selector: "goab-badge", inputs: { type: "type", content: "content", icon: ["icon", "icon", booleanAttribute], ariaLabel: "ariaLabel" }, usesInheritance: true, ngImport: i0, template: `
|
|
406
407
|
<goa-badge
|
|
407
408
|
[attr.type]="type"
|
|
408
409
|
[attr.icon]="icon"
|
|
@@ -438,7 +439,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
438
439
|
}], content: [{
|
|
439
440
|
type: Input
|
|
440
441
|
}], icon: [{
|
|
441
|
-
type: Input
|
|
442
|
+
type: Input,
|
|
443
|
+
args: [{ transform: booleanAttribute }]
|
|
442
444
|
}], ariaLabel: [{
|
|
443
445
|
type: Input
|
|
444
446
|
}] } });
|
|
@@ -500,7 +502,7 @@ class GoabButton extends GoabBaseComponent {
|
|
|
500
502
|
this.onClick.emit();
|
|
501
503
|
}
|
|
502
504
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
503
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
505
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabButton, isStandalone: true, selector: "goab-button", inputs: { type: "type", size: "size", variant: "variant", disabled: ["disabled", "disabled", booleanAttribute], leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", width: "width", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
|
|
504
506
|
<goa-button
|
|
505
507
|
[attr.type]="type"
|
|
506
508
|
[attr.size]="size"
|
|
@@ -559,7 +561,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
559
561
|
}], variant: [{
|
|
560
562
|
type: Input
|
|
561
563
|
}], disabled: [{
|
|
562
|
-
type: Input
|
|
564
|
+
type: Input,
|
|
565
|
+
args: [{ transform: booleanAttribute }]
|
|
563
566
|
}], leadingIcon: [{
|
|
564
567
|
type: Input
|
|
565
568
|
}], trailingIcon: [{
|
|
@@ -686,7 +689,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
686
689
|
|
|
687
690
|
class GoabCard extends GoabBaseComponent {
|
|
688
691
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCard, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
689
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
692
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabCard, isStandalone: true, selector: "goab-card", inputs: { elevation: ["elevation", "elevation", numberAttribute], width: "width" }, usesInheritance: true, ngImport: i0, template: `
|
|
690
693
|
<goa-card
|
|
691
694
|
[attr.elevation]="elevation"
|
|
692
695
|
[attr.width]="width"
|
|
@@ -721,7 +724,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
721
724
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
722
725
|
}]
|
|
723
726
|
}], propDecorators: { elevation: [{
|
|
724
|
-
type: Input
|
|
727
|
+
type: Input,
|
|
728
|
+
args: [{ transform: numberAttribute }]
|
|
725
729
|
}], width: [{
|
|
726
730
|
type: Input
|
|
727
731
|
}] } });
|
|
@@ -825,7 +829,7 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
825
829
|
this.fcChange?.(detail.binding === "check" ? detail.checked : detail.value || "");
|
|
826
830
|
}
|
|
827
831
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCheckbox, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
828
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
832
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabCheckbox, isStandalone: true, selector: "goab-checkbox", inputs: { name: "name", checked: ["checked", "checked", booleanAttribute], text: "text", value: "value", ariaLabel: "ariaLabel", description: "description", reveal: "reveal", revealArialLabel: "revealArialLabel", maxWidth: "maxWidth" }, outputs: { onChange: "onChange" }, providers: [
|
|
829
833
|
{
|
|
830
834
|
provide: NG_VALUE_ACCESSOR,
|
|
831
835
|
multi: true,
|
|
@@ -841,6 +845,7 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
841
845
|
[attr.testid]="testId"
|
|
842
846
|
[attr.arialabel]="ariaLabel"
|
|
843
847
|
[attr.description]="getDescriptionAsString()"
|
|
848
|
+
[attr.revealarialabel]="revealArialLabel"
|
|
844
849
|
[id]="id"
|
|
845
850
|
[attr.maxwidth]="maxWidth"
|
|
846
851
|
[attr.mt]="mt"
|
|
@@ -853,7 +858,10 @@ class GoabCheckbox extends GoabControlValueAccessor {
|
|
|
853
858
|
<div slot="description">
|
|
854
859
|
<ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
|
|
855
860
|
</div>
|
|
856
|
-
|
|
861
|
+
<div slot="reveal">
|
|
862
|
+
<ng-container *ngIf="reveal" [ngTemplateOutlet]="reveal"></ng-container>
|
|
863
|
+
</div>
|
|
864
|
+
</goa-checkbox>`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
857
865
|
}
|
|
858
866
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCheckbox, decorators: [{
|
|
859
867
|
type: Component,
|
|
@@ -870,6 +878,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
870
878
|
[attr.testid]="testId"
|
|
871
879
|
[attr.arialabel]="ariaLabel"
|
|
872
880
|
[attr.description]="getDescriptionAsString()"
|
|
881
|
+
[attr.revealarialabel]="revealArialLabel"
|
|
873
882
|
[id]="id"
|
|
874
883
|
[attr.maxwidth]="maxWidth"
|
|
875
884
|
[attr.mt]="mt"
|
|
@@ -882,6 +891,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
882
891
|
<div slot="description">
|
|
883
892
|
<ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
|
|
884
893
|
</div>
|
|
894
|
+
<div slot="reveal">
|
|
895
|
+
<ng-container *ngIf="reveal" [ngTemplateOutlet]="reveal"></ng-container>
|
|
896
|
+
</div>
|
|
885
897
|
</goa-checkbox>`,
|
|
886
898
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
887
899
|
providers: [
|
|
@@ -891,12 +903,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
891
903
|
useExisting: forwardRef(() => GoabCheckbox),
|
|
892
904
|
},
|
|
893
905
|
],
|
|
894
|
-
imports: [NgTemplateOutlet],
|
|
906
|
+
imports: [NgTemplateOutlet, NgIf],
|
|
895
907
|
}]
|
|
896
908
|
}], propDecorators: { name: [{
|
|
897
909
|
type: Input
|
|
898
910
|
}], checked: [{
|
|
899
|
-
type: Input
|
|
911
|
+
type: Input,
|
|
912
|
+
args: [{ transform: booleanAttribute }]
|
|
900
913
|
}], text: [{
|
|
901
914
|
type: Input
|
|
902
915
|
}], value: [{
|
|
@@ -905,6 +918,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
905
918
|
type: Input
|
|
906
919
|
}], description: [{
|
|
907
920
|
type: Input
|
|
921
|
+
}], reveal: [{
|
|
922
|
+
type: Input
|
|
923
|
+
}], revealArialLabel: [{
|
|
924
|
+
type: Input
|
|
908
925
|
}], maxWidth: [{
|
|
909
926
|
type: Input
|
|
910
927
|
}], onChange: [{
|
|
@@ -921,7 +938,7 @@ class GoabChip extends GoabBaseComponent {
|
|
|
921
938
|
this.onClick.emit();
|
|
922
939
|
}
|
|
923
940
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
924
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
941
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabChip, isStandalone: true, selector: "goab-chip", inputs: { leadingIcon: "leadingIcon", error: ["error", "error", booleanAttribute], deletable: ["deletable", "deletable", booleanAttribute], content: "content", variant: "variant", iconTheme: "iconTheme" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `<goa-chip
|
|
925
942
|
[attr.leadingicon]="leadingIcon"
|
|
926
943
|
[attr.variant]="variant"
|
|
927
944
|
[attr.error]="error"
|
|
@@ -964,9 +981,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
964
981
|
}], propDecorators: { leadingIcon: [{
|
|
965
982
|
type: Input
|
|
966
983
|
}], error: [{
|
|
967
|
-
type: Input
|
|
984
|
+
type: Input,
|
|
985
|
+
args: [{ transform: booleanAttribute }]
|
|
968
986
|
}], deletable: [{
|
|
969
|
-
type: Input
|
|
987
|
+
type: Input,
|
|
988
|
+
args: [{ transform: booleanAttribute }]
|
|
970
989
|
}], content: [{
|
|
971
990
|
type: Input
|
|
972
991
|
}], variant: [{
|
|
@@ -979,7 +998,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
979
998
|
|
|
980
999
|
class GoabCircularProgress {
|
|
981
1000
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabCircularProgress, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
982
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1001
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabCircularProgress, isStandalone: true, selector: "goab-circular-progress", inputs: { variant: "variant", size: "size", message: "message", visible: ["visible", "visible", booleanAttribute], progress: ["progress", "progress", numberAttribute], testId: "testId" }, ngImport: i0, template: `
|
|
983
1002
|
<goa-circular-progress
|
|
984
1003
|
[attr.variant]="variant"
|
|
985
1004
|
[attr.size]="size"
|
|
@@ -1007,7 +1026,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1007
1026
|
>
|
|
1008
1027
|
</goa-circular-progress>
|
|
1009
1028
|
`,
|
|
1010
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
1029
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1011
1030
|
}]
|
|
1012
1031
|
}], propDecorators: { variant: [{
|
|
1013
1032
|
type: Input
|
|
@@ -1016,9 +1035,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1016
1035
|
}], message: [{
|
|
1017
1036
|
type: Input
|
|
1018
1037
|
}], visible: [{
|
|
1019
|
-
type: Input
|
|
1038
|
+
type: Input,
|
|
1039
|
+
args: [{ transform: booleanAttribute }]
|
|
1020
1040
|
}], progress: [{
|
|
1021
|
-
type: Input
|
|
1041
|
+
type: Input,
|
|
1042
|
+
args: [{ transform: numberAttribute }]
|
|
1022
1043
|
}], testId: [{
|
|
1023
1044
|
type: Input
|
|
1024
1045
|
}] } });
|
|
@@ -1159,7 +1180,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1159
1180
|
}
|
|
1160
1181
|
}
|
|
1161
1182
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDatePicker, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1162
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDatePicker, isStandalone: true, selector: "goab-date-picker", inputs: { name: "name", value: "value", min: "min", max: "max", relative: "relative" }, outputs: { onChange: "onChange" }, host: { listeners: { "disabledChange": "listenDisabledChange($event.detail.disabled)" } }, providers: [
|
|
1183
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.3", type: GoabDatePicker, isStandalone: true, selector: "goab-date-picker", inputs: { name: "name", value: "value", min: "min", max: "max", type: "type", relative: "relative" }, outputs: { onChange: "onChange" }, host: { listeners: { "disabledChange": "listenDisabledChange($event.detail.disabled)" } }, providers: [
|
|
1163
1184
|
{
|
|
1164
1185
|
provide: NG_VALUE_ACCESSOR,
|
|
1165
1186
|
multi: true,
|
|
@@ -1173,6 +1194,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1173
1194
|
[attr.error]="error"
|
|
1174
1195
|
[attr.disabled]="disabled"
|
|
1175
1196
|
[attr.relative]="relative"
|
|
1197
|
+
[attr.type]="type"
|
|
1176
1198
|
[attr.testid]="testId"
|
|
1177
1199
|
[attr.mt]="mt"
|
|
1178
1200
|
[attr.mb]="mb"
|
|
@@ -1195,6 +1217,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1195
1217
|
[attr.error]="error"
|
|
1196
1218
|
[attr.disabled]="disabled"
|
|
1197
1219
|
[attr.relative]="relative"
|
|
1220
|
+
[attr.type]="type"
|
|
1198
1221
|
[attr.testid]="testId"
|
|
1199
1222
|
[attr.mt]="mt"
|
|
1200
1223
|
[attr.mb]="mb"
|
|
@@ -1220,6 +1243,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1220
1243
|
type: Input
|
|
1221
1244
|
}], max: [{
|
|
1222
1245
|
type: Input
|
|
1246
|
+
}], type: [{
|
|
1247
|
+
type: Input
|
|
1223
1248
|
}], relative: [{
|
|
1224
1249
|
type: Input
|
|
1225
1250
|
}], onChange: [{
|
|
@@ -1231,7 +1256,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1231
1256
|
|
|
1232
1257
|
class GoabDetails extends GoabBaseComponent {
|
|
1233
1258
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDetails, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1234
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1259
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabDetails, isStandalone: true, selector: "goab-details", inputs: { heading: "heading", open: ["open", "open", booleanAttribute], maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
|
|
1235
1260
|
<goa-details
|
|
1236
1261
|
[attr.heading]="heading"
|
|
1237
1262
|
[attr.testid]="testId"
|
|
@@ -1271,7 +1296,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1271
1296
|
type: Input,
|
|
1272
1297
|
args: [{ required: true }]
|
|
1273
1298
|
}], open: [{
|
|
1274
|
-
type: Input
|
|
1299
|
+
type: Input,
|
|
1300
|
+
args: [{ transform: booleanAttribute }]
|
|
1275
1301
|
}], maxWidth: [{
|
|
1276
1302
|
type: Input
|
|
1277
1303
|
}] } });
|
|
@@ -1324,7 +1350,7 @@ class GoabDrawer {
|
|
|
1324
1350
|
return this.heading instanceof TemplateRef ? this.heading : null;
|
|
1325
1351
|
}
|
|
1326
1352
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDrawer, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1327
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1353
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabDrawer, isStandalone: true, selector: "goab-drawer", inputs: { open: ["open", "open", booleanAttribute], position: "position", heading: "heading", maxSize: "maxSize", testId: "testId", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `
|
|
1328
1354
|
<goa-drawer
|
|
1329
1355
|
[open]="open"
|
|
1330
1356
|
[attr.position]="position"
|
|
@@ -1371,7 +1397,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1371
1397
|
}]
|
|
1372
1398
|
}], propDecorators: { open: [{
|
|
1373
1399
|
type: Input,
|
|
1374
|
-
args: [{ required: true }]
|
|
1400
|
+
args: [{ required: true, transform: booleanAttribute }]
|
|
1375
1401
|
}], position: [{
|
|
1376
1402
|
type: Input,
|
|
1377
1403
|
args: [{ required: true }]
|
|
@@ -1400,7 +1426,7 @@ class GoabDropdown extends GoabControlValueAccessor {
|
|
|
1400
1426
|
this.fcChange?.(detail.value || "");
|
|
1401
1427
|
}
|
|
1402
1428
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabDropdown, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1403
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1429
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabDropdown, isStandalone: true, selector: "goab-dropdown", inputs: { name: "name", ariaLabel: "ariaLabel", ariaLabelledBy: "ariaLabelledBy", filterable: ["filterable", "filterable", booleanAttribute], leadingIcon: "leadingIcon", maxHeight: "maxHeight", multiselect: ["multiselect", "multiselect", booleanAttribute], native: ["native", "native", booleanAttribute], placeholder: "placeholder", width: "width", relative: "relative" }, outputs: { onChange: "onChange" }, providers: [
|
|
1404
1430
|
{
|
|
1405
1431
|
provide: NG_VALUE_ACCESSOR,
|
|
1406
1432
|
multi: true,
|
|
@@ -1482,15 +1508,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1482
1508
|
}], ariaLabelledBy: [{
|
|
1483
1509
|
type: Input
|
|
1484
1510
|
}], filterable: [{
|
|
1485
|
-
type: Input
|
|
1511
|
+
type: Input,
|
|
1512
|
+
args: [{ transform: booleanAttribute }]
|
|
1486
1513
|
}], leadingIcon: [{
|
|
1487
1514
|
type: Input
|
|
1488
1515
|
}], maxHeight: [{
|
|
1489
1516
|
type: Input
|
|
1490
1517
|
}], multiselect: [{
|
|
1491
|
-
type: Input
|
|
1518
|
+
type: Input,
|
|
1519
|
+
args: [{ transform: booleanAttribute }]
|
|
1492
1520
|
}], native: [{
|
|
1493
|
-
type: Input
|
|
1521
|
+
type: Input,
|
|
1522
|
+
args: [{ transform: booleanAttribute }]
|
|
1494
1523
|
}], placeholder: [{
|
|
1495
1524
|
type: Input
|
|
1496
1525
|
}], width: [{
|
|
@@ -1555,7 +1584,7 @@ class GoabFileUploadCard {
|
|
|
1555
1584
|
this.onDelete.emit({ filename: this.filename });
|
|
1556
1585
|
}
|
|
1557
1586
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFileUploadCard, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1558
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1587
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabFileUploadCard, isStandalone: true, selector: "goab-file-upload-card", inputs: { filename: "filename", size: ["size", "size", numberAttribute], type: "type", progress: ["progress", "progress", numberAttribute], error: "error", testId: "testId" }, outputs: { onCancel: "onCancel", onDelete: "onDelete" }, ngImport: i0, template: `<goa-file-upload-card
|
|
1559
1588
|
[attr.filename]="filename"
|
|
1560
1589
|
[attr.size]="size"
|
|
1561
1590
|
[attr.type]="type"
|
|
@@ -1583,17 +1612,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1583
1612
|
(_delete)="_onDelete()"
|
|
1584
1613
|
>
|
|
1585
1614
|
</goa-file-upload-card>`,
|
|
1586
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
1615
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1587
1616
|
}]
|
|
1588
1617
|
}], propDecorators: { filename: [{
|
|
1589
1618
|
type: Input,
|
|
1590
1619
|
args: [{ required: true }]
|
|
1591
1620
|
}], size: [{
|
|
1592
|
-
type: Input
|
|
1621
|
+
type: Input,
|
|
1622
|
+
args: [{ transform: numberAttribute }]
|
|
1593
1623
|
}], type: [{
|
|
1594
1624
|
type: Input
|
|
1595
1625
|
}], progress: [{
|
|
1596
|
-
type: Input
|
|
1626
|
+
type: Input,
|
|
1627
|
+
args: [{ transform: numberAttribute }]
|
|
1597
1628
|
}], error: [{
|
|
1598
1629
|
type: Input
|
|
1599
1630
|
}], testId: [{
|
|
@@ -1673,7 +1704,7 @@ class GoabFilterChip extends GoabBaseComponent {
|
|
|
1673
1704
|
this.onClick.emit();
|
|
1674
1705
|
}
|
|
1675
1706
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabFilterChip, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
1676
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1707
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabFilterChip, isStandalone: true, selector: "goab-filter-chip", inputs: { error: ["error", "error", booleanAttribute], deletable: ["deletable", "deletable", booleanAttribute], content: "content", iconTheme: "iconTheme" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `<goa-filter-chip
|
|
1677
1708
|
[attr.error]="error"
|
|
1678
1709
|
[attr.icontheme]="iconTheme"
|
|
1679
1710
|
[attr.content]="content"
|
|
@@ -1708,9 +1739,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1708
1739
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
1709
1740
|
}]
|
|
1710
1741
|
}], propDecorators: { error: [{
|
|
1711
|
-
type: Input
|
|
1742
|
+
type: Input,
|
|
1743
|
+
args: [{ transform: booleanAttribute }]
|
|
1712
1744
|
}], deletable: [{
|
|
1713
|
-
type: Input
|
|
1745
|
+
type: Input,
|
|
1746
|
+
args: [{ transform: booleanAttribute }]
|
|
1714
1747
|
}], content: [{
|
|
1715
1748
|
type: Input
|
|
1716
1749
|
}], iconTheme: [{
|
|
@@ -1826,8 +1859,7 @@ class GoabPublicForm {
|
|
|
1826
1859
|
this.onStateChange = new EventEmitter();
|
|
1827
1860
|
}
|
|
1828
1861
|
_onInit(e) {
|
|
1829
|
-
|
|
1830
|
-
this.onInit.emit(detail);
|
|
1862
|
+
this.onInit.emit(e);
|
|
1831
1863
|
}
|
|
1832
1864
|
_onComplete(e) {
|
|
1833
1865
|
const detail = e.detail;
|
|
@@ -1912,11 +1944,10 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
1912
1944
|
this.onComplete = new EventEmitter();
|
|
1913
1945
|
}
|
|
1914
1946
|
_onContinue(event) {
|
|
1915
|
-
|
|
1916
|
-
this.onContinue.emit(detail);
|
|
1947
|
+
this.onContinue.emit(event);
|
|
1917
1948
|
}
|
|
1918
|
-
_onBack() {
|
|
1919
|
-
this.onBack.emit();
|
|
1949
|
+
_onBack(event) {
|
|
1950
|
+
this.onBack.emit(event);
|
|
1920
1951
|
}
|
|
1921
1952
|
_onFieldsetChange(event) {
|
|
1922
1953
|
const detail = event.detail;
|
|
@@ -1945,7 +1976,7 @@ class GoabPublicFormPage extends GoabBaseComponent {
|
|
|
1945
1976
|
[attr.mb]="mb"
|
|
1946
1977
|
[attr.ml]="ml"
|
|
1947
1978
|
(_continue)="_onContinue($event)"
|
|
1948
|
-
(_back)="_onBack()"
|
|
1979
|
+
(_back)="_onBack($event)"
|
|
1949
1980
|
(_fieldsetChange)="_onFieldsetChange($event)"
|
|
1950
1981
|
(_complete)="_onComplete($event)"
|
|
1951
1982
|
>
|
|
@@ -1976,7 +2007,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
1976
2007
|
[attr.mb]="mb"
|
|
1977
2008
|
[attr.ml]="ml"
|
|
1978
2009
|
(_continue)="_onContinue($event)"
|
|
1979
|
-
(_back)="_onBack()"
|
|
2010
|
+
(_back)="_onBack($event)"
|
|
1980
2011
|
(_fieldsetChange)="_onFieldsetChange($event)"
|
|
1981
2012
|
(_complete)="_onComplete($event)"
|
|
1982
2013
|
>
|
|
@@ -2322,7 +2353,7 @@ class GoabAppHeader {
|
|
|
2322
2353
|
this.onMenuClick.emit();
|
|
2323
2354
|
}
|
|
2324
2355
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabAppHeader, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2325
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2356
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabAppHeader, isStandalone: true, selector: "goab-app-header", inputs: { url: "url", heading: "heading", maxContentWidth: "maxContentWidth", testId: "testId", fullMenuBreakpoint: ["fullMenuBreakpoint", "fullMenuBreakpoint", numberAttribute] }, outputs: { onMenuClick: "onMenuClick" }, ngImport: i0, template: `
|
|
2326
2357
|
<goa-app-header
|
|
2327
2358
|
[attr.url]="url"
|
|
2328
2359
|
[attr.heading]="heading"
|
|
@@ -2365,7 +2396,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2365
2396
|
}], testId: [{
|
|
2366
2397
|
type: Input
|
|
2367
2398
|
}], fullMenuBreakpoint: [{
|
|
2368
|
-
type: Input
|
|
2399
|
+
type: Input,
|
|
2400
|
+
args: [{ transform: numberAttribute }]
|
|
2369
2401
|
}], onMenuClick: [{
|
|
2370
2402
|
type: Output
|
|
2371
2403
|
}] } });
|
|
@@ -2474,7 +2506,7 @@ class GoabIcon extends GoabBaseComponent {
|
|
|
2474
2506
|
this.theme = "outline";
|
|
2475
2507
|
}
|
|
2476
2508
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIcon, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2477
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2509
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabIcon, isStandalone: true, selector: "goab-icon", inputs: { type: "type", size: "size", theme: "theme", inverted: ["inverted", "inverted", booleanAttribute], fillColor: "fillColor", opacity: ["opacity", "opacity", numberAttribute], title: "title", ariaLabel: "ariaLabel" }, usesInheritance: true, ngImport: i0, template: `
|
|
2478
2510
|
<goa-icon
|
|
2479
2511
|
[attr.type]="type"
|
|
2480
2512
|
[attr.theme]="theme"
|
|
@@ -2526,11 +2558,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2526
2558
|
}], theme: [{
|
|
2527
2559
|
type: Input
|
|
2528
2560
|
}], inverted: [{
|
|
2529
|
-
type: Input
|
|
2561
|
+
type: Input,
|
|
2562
|
+
args: [{ transform: booleanAttribute }]
|
|
2530
2563
|
}], fillColor: [{
|
|
2531
2564
|
type: Input
|
|
2532
2565
|
}], opacity: [{
|
|
2533
|
-
type: Input
|
|
2566
|
+
type: Input,
|
|
2567
|
+
args: [{ transform: numberAttribute }]
|
|
2534
2568
|
}], title: [{
|
|
2535
2569
|
type: Input
|
|
2536
2570
|
}], ariaLabel: [{
|
|
@@ -2548,7 +2582,7 @@ class GoabIconButton extends GoabBaseComponent {
|
|
|
2548
2582
|
this.onClick.emit();
|
|
2549
2583
|
}
|
|
2550
2584
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabIconButton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2551
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2585
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabIconButton, isStandalone: true, selector: "goab-icon-button", inputs: { icon: "icon", size: "size", variant: "variant", title: "title", disabled: ["disabled", "disabled", booleanAttribute], ariaLabel: "ariaLabel", action: "action", actionArg: "actionArg", actionArgs: "actionArgs" }, outputs: { onClick: "onClick" }, usesInheritance: true, ngImport: i0, template: `
|
|
2552
2586
|
<goa-icon-button
|
|
2553
2587
|
[attr.icon]="icon"
|
|
2554
2588
|
[disabled]="disabled"
|
|
@@ -2608,7 +2642,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2608
2642
|
}], title: [{
|
|
2609
2643
|
type: Input
|
|
2610
2644
|
}], disabled: [{
|
|
2611
|
-
type: Input
|
|
2645
|
+
type: Input,
|
|
2646
|
+
args: [{ transform: booleanAttribute }]
|
|
2612
2647
|
}], ariaLabel: [{
|
|
2613
2648
|
type: Input
|
|
2614
2649
|
}], action: [{
|
|
@@ -2625,6 +2660,7 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
2625
2660
|
constructor() {
|
|
2626
2661
|
super(...arguments);
|
|
2627
2662
|
this.type = "text";
|
|
2663
|
+
this.textAlign = "left";
|
|
2628
2664
|
this.onTrailingIconClick = new EventEmitter();
|
|
2629
2665
|
this.onFocus = new EventEmitter();
|
|
2630
2666
|
this.onBlur = new EventEmitter();
|
|
@@ -2665,7 +2701,7 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
2665
2701
|
this.onBlur.emit(detail);
|
|
2666
2702
|
}
|
|
2667
2703
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabInput, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
2668
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2704
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabInput, isStandalone: true, selector: "goab-input", inputs: { type: "type", name: "name", debounce: ["debounce", "debounce", numberAttribute], autoCapitalize: "autoCapitalize", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
|
|
2669
2705
|
{
|
|
2670
2706
|
provide: NG_VALUE_ACCESSOR,
|
|
2671
2707
|
multi: true,
|
|
@@ -2702,6 +2738,7 @@ class GoabInput extends GoabControlValueAccessor {
|
|
|
2702
2738
|
[attr.mb]="mb"
|
|
2703
2739
|
[attr.ml]="ml"
|
|
2704
2740
|
[attr.handletrailingiconclick]="!!_onTrailingIconClick"
|
|
2741
|
+
[attr.textalign]="textAlign"
|
|
2705
2742
|
(_trailingIconClick)="_onTrailingIconClick($event)"
|
|
2706
2743
|
(_change)="_onChange($event)"
|
|
2707
2744
|
(_focus)="_onFocus($event)"
|
|
@@ -2749,6 +2786,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2749
2786
|
[attr.mb]="mb"
|
|
2750
2787
|
[attr.ml]="ml"
|
|
2751
2788
|
[attr.handletrailingiconclick]="!!_onTrailingIconClick"
|
|
2789
|
+
[attr.textalign]="textAlign"
|
|
2752
2790
|
(_trailingIconClick)="_onTrailingIconClick($event)"
|
|
2753
2791
|
(_change)="_onChange($event)"
|
|
2754
2792
|
(_focus)="_onFocus($event)"
|
|
@@ -2773,7 +2811,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2773
2811
|
}], name: [{
|
|
2774
2812
|
type: Input
|
|
2775
2813
|
}], debounce: [{
|
|
2776
|
-
type: Input
|
|
2814
|
+
type: Input,
|
|
2815
|
+
args: [{ transform: numberAttribute }]
|
|
2777
2816
|
}], autoCapitalize: [{
|
|
2778
2817
|
type: Input
|
|
2779
2818
|
}], placeholder: [{
|
|
@@ -2785,9 +2824,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2785
2824
|
}], variant: [{
|
|
2786
2825
|
type: Input
|
|
2787
2826
|
}], focused: [{
|
|
2788
|
-
type: Input
|
|
2827
|
+
type: Input,
|
|
2828
|
+
args: [{ transform: booleanAttribute }]
|
|
2789
2829
|
}], readonly: [{
|
|
2790
|
-
type: Input
|
|
2830
|
+
type: Input,
|
|
2831
|
+
args: [{ transform: booleanAttribute }]
|
|
2791
2832
|
}], width: [{
|
|
2792
2833
|
type: Input
|
|
2793
2834
|
}], prefix: [{
|
|
@@ -2797,17 +2838,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2797
2838
|
}], ariaLabel: [{
|
|
2798
2839
|
type: Input
|
|
2799
2840
|
}], maxLength: [{
|
|
2800
|
-
type: Input
|
|
2841
|
+
type: Input,
|
|
2842
|
+
args: [{ transform: numberAttribute }]
|
|
2801
2843
|
}], min: [{
|
|
2802
2844
|
type: Input
|
|
2803
2845
|
}], max: [{
|
|
2804
2846
|
type: Input
|
|
2805
2847
|
}], step: [{
|
|
2806
|
-
type: Input
|
|
2848
|
+
type: Input,
|
|
2849
|
+
args: [{ transform: numberAttribute }]
|
|
2807
2850
|
}], ariaLabelledBy: [{
|
|
2808
2851
|
type: Input
|
|
2809
2852
|
}], trailingIconAriaLabel: [{
|
|
2810
2853
|
type: Input
|
|
2854
|
+
}], textAlign: [{
|
|
2855
|
+
type: Input
|
|
2811
2856
|
}], onTrailingIconClick: [{
|
|
2812
2857
|
type: Output
|
|
2813
2858
|
}], onFocus: [{
|
|
@@ -2823,6 +2868,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2823
2868
|
class GoabInputNumber {
|
|
2824
2869
|
constructor() {
|
|
2825
2870
|
this.type = "number";
|
|
2871
|
+
this.textAlign = "right"; // Default to right for numbers
|
|
2826
2872
|
this.value = null;
|
|
2827
2873
|
this.onTrailingIconClick = new EventEmitter(); // Keep void type
|
|
2828
2874
|
this.onFocus = new EventEmitter();
|
|
@@ -2889,7 +2935,7 @@ class GoabInputNumber {
|
|
|
2889
2935
|
this.disabled = isDisabled;
|
|
2890
2936
|
}
|
|
2891
2937
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabInputNumber, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2892
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
2938
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabInputNumber, isStandalone: true, selector: "goab-input-number", inputs: { type: "type", name: "name", id: "id", debounce: ["debounce", "debounce", numberAttribute], disabled: ["disabled", "disabled", booleanAttribute], autoCapitalize: "autoCapitalize", placeholder: "placeholder", leadingIcon: "leadingIcon", trailingIcon: "trailingIcon", variant: "variant", focused: ["focused", "focused", booleanAttribute], readonly: ["readonly", "readonly", booleanAttribute], error: ["error", "error", booleanAttribute], width: "width", prefix: "prefix", suffix: "suffix", testId: "testId", ariaLabel: "ariaLabel", maxLength: ["maxLength", "maxLength", numberAttribute], min: "min", max: "max", step: ["step", "step", numberAttribute], ariaLabelledBy: "ariaLabelledBy", mt: "mt", mr: "mr", mb: "mb", ml: "ml", trailingIconAriaLabel: "trailingIconAriaLabel", textAlign: "textAlign", value: "value" }, outputs: { onTrailingIconClick: "onTrailingIconClick", onFocus: "onFocus", onBlur: "onBlur", onKeyPress: "onKeyPress", onChange: "onChange" }, providers: [
|
|
2893
2939
|
{
|
|
2894
2940
|
provide: NG_VALUE_ACCESSOR,
|
|
2895
2941
|
multi: true,
|
|
@@ -2927,6 +2973,7 @@ class GoabInputNumber {
|
|
|
2927
2973
|
[attr.mb]="mb"
|
|
2928
2974
|
[attr.ml]="ml"
|
|
2929
2975
|
[attr.handletrailingiconclick]="handleTrailingIconClick"
|
|
2976
|
+
[attr.textalign]="textAlign"
|
|
2930
2977
|
(_trailingIconClick)="_onTrailingIconClick($event)"
|
|
2931
2978
|
(_change)="_onChange($event)"
|
|
2932
2979
|
(_focus)="_onFocus($event)"
|
|
@@ -2974,6 +3021,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
2974
3021
|
[attr.mb]="mb"
|
|
2975
3022
|
[attr.ml]="ml"
|
|
2976
3023
|
[attr.handletrailingiconclick]="handleTrailingIconClick"
|
|
3024
|
+
[attr.textalign]="textAlign"
|
|
2977
3025
|
(_trailingIconClick)="_onTrailingIconClick($event)"
|
|
2978
3026
|
(_change)="_onChange($event)"
|
|
2979
3027
|
(_focus)="_onFocus($event)"
|
|
@@ -3001,9 +3049,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3001
3049
|
}], id: [{
|
|
3002
3050
|
type: Input
|
|
3003
3051
|
}], debounce: [{
|
|
3004
|
-
type: Input
|
|
3052
|
+
type: Input,
|
|
3053
|
+
args: [{ transform: numberAttribute }]
|
|
3005
3054
|
}], disabled: [{
|
|
3006
|
-
type: Input
|
|
3055
|
+
type: Input,
|
|
3056
|
+
args: [{ transform: booleanAttribute }]
|
|
3007
3057
|
}], autoCapitalize: [{
|
|
3008
3058
|
type: Input
|
|
3009
3059
|
}], placeholder: [{
|
|
@@ -3015,11 +3065,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3015
3065
|
}], variant: [{
|
|
3016
3066
|
type: Input
|
|
3017
3067
|
}], focused: [{
|
|
3018
|
-
type: Input
|
|
3068
|
+
type: Input,
|
|
3069
|
+
args: [{ transform: booleanAttribute }]
|
|
3019
3070
|
}], readonly: [{
|
|
3020
|
-
type: Input
|
|
3071
|
+
type: Input,
|
|
3072
|
+
args: [{ transform: booleanAttribute }]
|
|
3021
3073
|
}], error: [{
|
|
3022
|
-
type: Input
|
|
3074
|
+
type: Input,
|
|
3075
|
+
args: [{ transform: booleanAttribute }]
|
|
3023
3076
|
}], width: [{
|
|
3024
3077
|
type: Input
|
|
3025
3078
|
}], prefix: [{
|
|
@@ -3031,13 +3084,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3031
3084
|
}], ariaLabel: [{
|
|
3032
3085
|
type: Input
|
|
3033
3086
|
}], maxLength: [{
|
|
3034
|
-
type: Input
|
|
3087
|
+
type: Input,
|
|
3088
|
+
args: [{ transform: numberAttribute }]
|
|
3035
3089
|
}], min: [{
|
|
3036
3090
|
type: Input
|
|
3037
3091
|
}], max: [{
|
|
3038
3092
|
type: Input
|
|
3039
3093
|
}], step: [{
|
|
3040
|
-
type: Input
|
|
3094
|
+
type: Input,
|
|
3095
|
+
args: [{ transform: numberAttribute }]
|
|
3041
3096
|
}], ariaLabelledBy: [{
|
|
3042
3097
|
type: Input
|
|
3043
3098
|
}], mt: [{
|
|
@@ -3050,6 +3105,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3050
3105
|
type: Input
|
|
3051
3106
|
}], trailingIconAriaLabel: [{
|
|
3052
3107
|
type: Input
|
|
3108
|
+
}], textAlign: [{
|
|
3109
|
+
type: Input
|
|
3053
3110
|
}], value: [{
|
|
3054
3111
|
type: Input
|
|
3055
3112
|
}], onTrailingIconClick: [{
|
|
@@ -3226,7 +3283,7 @@ class GoabModal {
|
|
|
3226
3283
|
this.onClose.emit();
|
|
3227
3284
|
}
|
|
3228
3285
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabModal, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
3229
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3286
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabModal, isStandalone: true, selector: "goab-modal", inputs: { calloutVariant: "calloutVariant", open: ["open", "open", booleanAttribute], maxWidth: "maxWidth", closable: "closable", transition: "transition", testId: "testId", role: "role", heading: "heading", actions: "actions" }, outputs: { onClose: "onClose" }, ngImport: i0, template: `
|
|
3230
3287
|
<goa-modal
|
|
3231
3288
|
[attr.calloutvariant]="calloutVariant"
|
|
3232
3289
|
[attr.open]="open"
|
|
@@ -3284,7 +3341,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3284
3341
|
}], propDecorators: { calloutVariant: [{
|
|
3285
3342
|
type: Input
|
|
3286
3343
|
}], open: [{
|
|
3287
|
-
type: Input
|
|
3344
|
+
type: Input,
|
|
3345
|
+
args: [{ transform: booleanAttribute }]
|
|
3288
3346
|
}], maxWidth: [{
|
|
3289
3347
|
type: Input
|
|
3290
3348
|
}], closable: [{
|
|
@@ -3356,7 +3414,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3356
3414
|
|
|
3357
3415
|
class GoabPages extends GoabBaseComponent {
|
|
3358
3416
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabPages, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3359
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3417
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabPages, isStandalone: true, selector: "goab-pages", inputs: { current: ["current", "current", numberAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
3360
3418
|
<goa-pages
|
|
3361
3419
|
[attr.current]="current"
|
|
3362
3420
|
[attr.mt]="mt"
|
|
@@ -3387,7 +3445,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3387
3445
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3388
3446
|
}]
|
|
3389
3447
|
}], propDecorators: { current: [{
|
|
3390
|
-
type: Input
|
|
3448
|
+
type: Input,
|
|
3449
|
+
args: [{ transform: numberAttribute }]
|
|
3391
3450
|
}] } });
|
|
3392
3451
|
|
|
3393
3452
|
class GoabPagination extends GoabBaseComponent {
|
|
@@ -3616,13 +3675,14 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
3616
3675
|
return this.description instanceof TemplateRef ? this.description : null;
|
|
3617
3676
|
}
|
|
3618
3677
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioItem, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3619
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3678
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabRadioItem, isStandalone: true, selector: "goab-radio-item", inputs: { value: "value", label: "label", name: "name", description: "description", reveal: "reveal", ariaLabel: "ariaLabel", revealAriaLabel: "revealAriaLabel", disabled: ["disabled", "disabled", booleanAttribute], checked: ["checked", "checked", booleanAttribute], error: ["error", "error", booleanAttribute], maxWidth: "maxWidth" }, usesInheritance: true, ngImport: i0, template: `
|
|
3620
3679
|
<goa-radio-item
|
|
3621
3680
|
[attr.name]="name"
|
|
3622
3681
|
[attr.value]="value"
|
|
3623
3682
|
[attr.label]="label"
|
|
3624
3683
|
[attr.description]="getDescriptionAsString()"
|
|
3625
3684
|
[attr.arialabel]="ariaLabel"
|
|
3685
|
+
[attr.revealarialabel]="revealAriaLabel"
|
|
3626
3686
|
[disabled]="disabled"
|
|
3627
3687
|
[attr.maxwidth]="maxWidth"
|
|
3628
3688
|
[attr.checked]="checked"
|
|
@@ -3636,8 +3696,14 @@ class GoabRadioItem extends GoabBaseComponent {
|
|
|
3636
3696
|
<div slot="description">
|
|
3637
3697
|
<ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
|
|
3638
3698
|
</div>
|
|
3699
|
+
<div slot="reveal">
|
|
3700
|
+
<ng-container
|
|
3701
|
+
*ngIf="this.reveal"
|
|
3702
|
+
[ngTemplateOutlet]="reveal"
|
|
3703
|
+
></ng-container>
|
|
3704
|
+
</div>
|
|
3639
3705
|
</goa-radio-item>
|
|
3640
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] }); }
|
|
3706
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
3641
3707
|
}
|
|
3642
3708
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabRadioItem, decorators: [{
|
|
3643
3709
|
type: Component,
|
|
@@ -3651,6 +3717,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3651
3717
|
[attr.label]="label"
|
|
3652
3718
|
[attr.description]="getDescriptionAsString()"
|
|
3653
3719
|
[attr.arialabel]="ariaLabel"
|
|
3720
|
+
[attr.revealarialabel]="revealAriaLabel"
|
|
3654
3721
|
[disabled]="disabled"
|
|
3655
3722
|
[attr.maxwidth]="maxWidth"
|
|
3656
3723
|
[attr.checked]="checked"
|
|
@@ -3664,9 +3731,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3664
3731
|
<div slot="description">
|
|
3665
3732
|
<ng-container [ngTemplateOutlet]="getDescriptionAsTemplate()"></ng-container>
|
|
3666
3733
|
</div>
|
|
3734
|
+
<div slot="reveal">
|
|
3735
|
+
<ng-container
|
|
3736
|
+
*ngIf="this.reveal"
|
|
3737
|
+
[ngTemplateOutlet]="reveal"
|
|
3738
|
+
></ng-container>
|
|
3739
|
+
</div>
|
|
3667
3740
|
</goa-radio-item>
|
|
3668
3741
|
`,
|
|
3669
|
-
imports: [NgTemplateOutlet],
|
|
3742
|
+
imports: [NgTemplateOutlet, NgIf],
|
|
3670
3743
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
3671
3744
|
}]
|
|
3672
3745
|
}], propDecorators: { value: [{
|
|
@@ -3677,14 +3750,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3677
3750
|
type: Input
|
|
3678
3751
|
}], description: [{
|
|
3679
3752
|
type: Input
|
|
3753
|
+
}], reveal: [{
|
|
3754
|
+
type: Input
|
|
3680
3755
|
}], ariaLabel: [{
|
|
3681
3756
|
type: Input
|
|
3682
|
-
}],
|
|
3757
|
+
}], revealAriaLabel: [{
|
|
3683
3758
|
type: Input
|
|
3759
|
+
}], disabled: [{
|
|
3760
|
+
type: Input,
|
|
3761
|
+
args: [{ transform: booleanAttribute }]
|
|
3684
3762
|
}], checked: [{
|
|
3685
|
-
type: Input
|
|
3763
|
+
type: Input,
|
|
3764
|
+
args: [{ transform: booleanAttribute }]
|
|
3686
3765
|
}], error: [{
|
|
3687
|
-
type: Input
|
|
3766
|
+
type: Input,
|
|
3767
|
+
args: [{ transform: booleanAttribute }]
|
|
3688
3768
|
}], maxWidth: [{
|
|
3689
3769
|
type: Input
|
|
3690
3770
|
}] } });
|
|
@@ -3797,7 +3877,7 @@ class GoabSkeleton extends GoabBaseComponent {
|
|
|
3797
3877
|
this.maxWidth = "300px";
|
|
3798
3878
|
}
|
|
3799
3879
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabSkeleton, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
3800
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
3880
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabSkeleton, isStandalone: true, selector: "goab-skeleton", inputs: { type: "type", maxWidth: "maxWidth", size: "size", lineCount: ["lineCount", "lineCount", numberAttribute] }, usesInheritance: true, ngImport: i0, template: `
|
|
3801
3881
|
<goa-skeleton
|
|
3802
3882
|
[attr.maxwidth]="maxWidth"
|
|
3803
3883
|
[attr.size]="size"
|
|
@@ -3841,7 +3921,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
3841
3921
|
}], size: [{
|
|
3842
3922
|
type: Input
|
|
3843
3923
|
}], lineCount: [{
|
|
3844
|
-
type: Input
|
|
3924
|
+
type: Input,
|
|
3925
|
+
args: [{ transform: numberAttribute }]
|
|
3845
3926
|
}] } });
|
|
3846
3927
|
|
|
3847
3928
|
class GoabSpacer {
|
|
@@ -4021,12 +4102,11 @@ class GoabTabs {
|
|
|
4021
4102
|
this.onChange.emit(detail);
|
|
4022
4103
|
}
|
|
4023
4104
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTabs, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4024
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
4105
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabTabs, isStandalone: true, selector: "goab-tabs", inputs: { initialTab: ["initialTab", "initialTab", numberAttribute], testId: "testId" }, outputs: { onChange: "onChange" }, ngImport: i0, template: `
|
|
4025
4106
|
<goa-tabs
|
|
4026
4107
|
[attr.initialtab]="initialTab"
|
|
4027
4108
|
[attr.testid]="testId"
|
|
4028
4109
|
(_change)="_onChange($event)"
|
|
4029
|
-
|
|
4030
4110
|
>
|
|
4031
4111
|
<ng-content />
|
|
4032
4112
|
</goa-tabs>
|
|
@@ -4042,15 +4122,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
4042
4122
|
[attr.initialtab]="initialTab"
|
|
4043
4123
|
[attr.testid]="testId"
|
|
4044
4124
|
(_change)="_onChange($event)"
|
|
4045
|
-
|
|
4046
4125
|
>
|
|
4047
4126
|
<ng-content />
|
|
4048
4127
|
</goa-tabs>
|
|
4049
4128
|
`,
|
|
4050
|
-
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
4129
|
+
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
4051
4130
|
}]
|
|
4052
4131
|
}], propDecorators: { initialTab: [{
|
|
4053
|
-
type: Input
|
|
4132
|
+
type: Input,
|
|
4133
|
+
args: [{ transform: numberAttribute }]
|
|
4054
4134
|
}], testId: [{
|
|
4055
4135
|
type: Input
|
|
4056
4136
|
}], onChange: [{
|
|
@@ -4131,7 +4211,7 @@ class GoabTextArea extends GoabControlValueAccessor {
|
|
|
4131
4211
|
this.onKeyPress.emit(detail);
|
|
4132
4212
|
}
|
|
4133
4213
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.3", ngImport: i0, type: GoabTextArea, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
4134
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
4214
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.3", type: GoabTextArea, isStandalone: true, selector: "goab-textarea", inputs: { name: "name", placeholder: "placeholder", rows: ["rows", "rows", numberAttribute], readOnly: ["readOnly", "readOnly", booleanAttribute], width: "width", ariaLabel: "ariaLabel", countBy: "countBy", maxCount: "maxCount", maxWidth: "maxWidth" }, outputs: { onChange: "onChange", onKeyPress: "onKeyPress" }, providers: [
|
|
4135
4215
|
{
|
|
4136
4216
|
provide: NG_VALUE_ACCESSOR,
|
|
4137
4217
|
multi: true,
|
|
@@ -4205,9 +4285,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.3", ngImpor
|
|
|
4205
4285
|
}], placeholder: [{
|
|
4206
4286
|
type: Input
|
|
4207
4287
|
}], rows: [{
|
|
4208
|
-
type: Input
|
|
4288
|
+
type: Input,
|
|
4289
|
+
args: [{ transform: numberAttribute }]
|
|
4209
4290
|
}], readOnly: [{
|
|
4210
|
-
type: Input
|
|
4291
|
+
type: Input,
|
|
4292
|
+
args: [{ transform: booleanAttribute }]
|
|
4211
4293
|
}], width: [{
|
|
4212
4294
|
type: Input
|
|
4213
4295
|
}], ariaLabel: [{
|