@abgov/angular-components 4.9.1-dev.1 → 4.9.1-dev.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.
|
@@ -475,7 +475,7 @@ class GoabBadge extends GoabBaseComponent {
|
|
|
475
475
|
<goa-badge
|
|
476
476
|
*ngIf="isReady"
|
|
477
477
|
[attr.type]="type"
|
|
478
|
-
[attr.icon]="icon"
|
|
478
|
+
[attr.icon]="icon ? 'true' : 'false'"
|
|
479
479
|
[attr.icontype]="iconType"
|
|
480
480
|
[attr.arialabel]="ariaLabel"
|
|
481
481
|
[attr.content]="content"
|
|
@@ -494,7 +494,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
494
494
|
<goa-badge
|
|
495
495
|
*ngIf="isReady"
|
|
496
496
|
[attr.type]="type"
|
|
497
|
-
[attr.icon]="icon"
|
|
497
|
+
[attr.icon]="icon ? 'true' : 'false'"
|
|
498
498
|
[attr.icontype]="iconType"
|
|
499
499
|
[attr.arialabel]="ariaLabel"
|
|
500
500
|
[attr.content]="content"
|
|
@@ -1642,7 +1642,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1642
1642
|
}
|
|
1643
1643
|
}
|
|
1644
1644
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.6", ngImport: i0, type: GoabDatePicker, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1645
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", 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: [
|
|
1645
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.1.6", type: GoabDatePicker, isStandalone: true, selector: "goab-date-picker", inputs: { name: "name", value: "value", min: "min", max: "max", type: "type", relative: "relative", width: "width" }, outputs: { onChange: "onChange" }, host: { listeners: { "disabledChange": "listenDisabledChange($event.detail.disabled)" } }, providers: [
|
|
1646
1646
|
{
|
|
1647
1647
|
provide: NG_VALUE_ACCESSOR,
|
|
1648
1648
|
multi: true,
|
|
@@ -1660,6 +1660,7 @@ class GoabDatePicker extends GoabControlValueAccessor {
|
|
|
1660
1660
|
[attr.relative]="relative"
|
|
1661
1661
|
[attr.type]="type"
|
|
1662
1662
|
[attr.testid]="testId"
|
|
1663
|
+
[attr.width]="width"
|
|
1663
1664
|
[attr.mt]="mt"
|
|
1664
1665
|
[attr.mb]="mb"
|
|
1665
1666
|
[attr.ml]="ml"
|
|
@@ -1686,6 +1687,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
1686
1687
|
[attr.relative]="relative"
|
|
1687
1688
|
[attr.type]="type"
|
|
1688
1689
|
[attr.testid]="testId"
|
|
1690
|
+
[attr.width]="width"
|
|
1689
1691
|
[attr.mt]="mt"
|
|
1690
1692
|
[attr.mb]="mb"
|
|
1691
1693
|
[attr.ml]="ml"
|
|
@@ -1714,6 +1716,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
|
|
|
1714
1716
|
type: Input
|
|
1715
1717
|
}], relative: [{
|
|
1716
1718
|
type: Input
|
|
1719
|
+
}], width: [{
|
|
1720
|
+
type: Input
|
|
1717
1721
|
}], onChange: [{
|
|
1718
1722
|
type: Output
|
|
1719
1723
|
}], listenDisabledChange: [{
|