@abgov/ui-components-common 1.5.0 → 1.6.0-alpha.2
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
|
@@ -209,6 +209,7 @@ interface BaseProps extends Margins {
|
|
|
209
209
|
debounce?: number;
|
|
210
210
|
disabled?: boolean;
|
|
211
211
|
autoCapitalize?: GoabAutoCapitalize;
|
|
212
|
+
autoComplete?: string;
|
|
212
213
|
placeholder?: string;
|
|
213
214
|
leadingIcon?: GoabIconType;
|
|
214
215
|
trailingIcon?: GoabIconType;
|
|
@@ -317,6 +318,7 @@ export type GoabPublicFormPageOnCompleteDetail = {
|
|
|
317
318
|
state: Record<string, GoabFieldsetItemState>;
|
|
318
319
|
cancelled: boolean;
|
|
319
320
|
};
|
|
321
|
+
export type GoabPublicFormTaskStatus = "completed" | "not-started" | "cannot-start";
|
|
320
322
|
export type GoabDrawerPosition = "bottom" | "left" | "right" | undefined;
|
|
321
323
|
export type GoabDrawerSizeUnit = "px" | "rem" | "ch" | "vh" | "vw";
|
|
322
324
|
export type GoabDrawerSize = `${number}${GoabDrawerSizeUnit}` | undefined;
|