@abgov/ui-components-common 1.6.0-alpha.1 → 1.6.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/lib/common.d.ts +2 -0
- package/package.json +1 -1
package/lib/common.d.ts
CHANGED
|
@@ -278,6 +278,7 @@ export type GoabFieldsetItemState = {
|
|
|
278
278
|
label: string;
|
|
279
279
|
value: GoabFieldsetItemValue;
|
|
280
280
|
order: number;
|
|
281
|
+
valueLabel?: string;
|
|
281
282
|
};
|
|
282
283
|
export type GoabFieldsetData = {
|
|
283
284
|
type: "details";
|
|
@@ -318,6 +319,7 @@ export type GoabPublicFormPageOnCompleteDetail = {
|
|
|
318
319
|
state: Record<string, GoabFieldsetItemState>;
|
|
319
320
|
cancelled: boolean;
|
|
320
321
|
};
|
|
322
|
+
export type GoabPublicFormTaskStatus = "completed" | "not-started" | "cannot-start";
|
|
321
323
|
export type GoabDrawerPosition = "bottom" | "left" | "right" | undefined;
|
|
322
324
|
export type GoabDrawerSizeUnit = "px" | "rem" | "ch" | "vh" | "vw";
|
|
323
325
|
export type GoabDrawerSize = `${number}${GoabDrawerSizeUnit}` | undefined;
|