@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/common/utils.d.ts +5 -0
- package/components/checkbox-list/CheckboxList.svelte.d.ts +1 -0
- package/index.js +8563 -7858
- package/package.json +1 -1
- package/types/relay-types.d.ts +2 -1
package/package.json
CHANGED
package/types/relay-types.d.ts
CHANGED
|
@@ -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 = {
|