@abgov/ui-components-common 1.11.0-dev.3 → 1.11.0-next.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/lib/common.d.ts +1 -3
- package/package.json +1 -1
package/lib/common.d.ts
CHANGED
|
@@ -123,11 +123,9 @@ export type GoabTextAreaOnBlurDetail = {
|
|
|
123
123
|
event: Event;
|
|
124
124
|
};
|
|
125
125
|
export type GoabTabsVariant = "default" | "segmented";
|
|
126
|
-
export type GoabTabsOrientation = "auto" | "horizontal";
|
|
127
126
|
export interface GoabTabsProps {
|
|
128
127
|
initialTab?: number;
|
|
129
128
|
variant?: GoabTabsVariant;
|
|
130
|
-
orientation?: GoabTabsOrientation;
|
|
131
129
|
}
|
|
132
130
|
export type GoabTabsOnChangeDetail = {
|
|
133
131
|
tab: number;
|
|
@@ -284,7 +282,7 @@ export type GoabLinkButtonType = "start" | "primary" | "secondary" | "tertiary";
|
|
|
284
282
|
export type GoabTextMaxWidth = string | "none";
|
|
285
283
|
export type GoabTextHeadingElement = "h1" | "h2" | "h3" | "h4" | "h5";
|
|
286
284
|
export type GoabTextTextElement = "span" | "div" | "p";
|
|
287
|
-
export type GoabTextHeadingSize = "heading-xl" | "heading-l" | "heading-m" | "heading-s" | "heading-xs"
|
|
285
|
+
export type GoabTextHeadingSize = "heading-xl" | "heading-l" | "heading-m" | "heading-s" | "heading-xs";
|
|
288
286
|
export type GoabTextBodySize = "body-l" | "body-m" | "body-s" | "body-xs";
|
|
289
287
|
export type GoabTextSize = GoabTextHeadingSize | GoabTextBodySize;
|
|
290
288
|
export type GoabTextColor = "primary" | "secondary";
|