@abgov/web-components 1.37.1-alpha.6 → 1.38.0-alpha.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abgov/web-components",
3
- "version": "1.37.1-alpha.6",
3
+ "version": "1.38.0-alpha.1",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Government of Alberta - UI Web components",
6
6
  "bugs": {
@@ -95,6 +95,7 @@ export type FieldsetItemState = {
95
95
  value: string | number | Date;
96
96
  order: number;
97
97
  valueLabel?: string;
98
+ labels?: string[];
98
99
  };
99
100
  export type FieldsetValidationRelayDetail = {
100
101
  el: HTMLElement;
@@ -104,7 +105,7 @@ export type FieldsetValidationRelayDetail = {
104
105
  export declare const FieldsetSetValueMsg = "fieldset::set:value";
105
106
  export type FieldsetSetValueRelayDetail = {
106
107
  name: string;
107
- value: string | number | Date;
108
+ value: string | number | Date | string[];
108
109
  };
109
110
  export declare const FormItemMountMsg = "form-item::bind";
110
111
  export type FormItemMountRelayDetail = {