@abgov/ui-components-common 1.10.0-dev.4 → 1.10.0-dev.6
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 +21 -5
- package/package.json +1 -1
package/lib/common.d.ts
CHANGED
|
@@ -3,19 +3,23 @@ export type GoabSpinnerSize = "small" | "medium" | "large" | "xlarge";
|
|
|
3
3
|
export type GoabRadioGroupOnChangeDetail = {
|
|
4
4
|
name: string;
|
|
5
5
|
value: string;
|
|
6
|
+
event: Event;
|
|
6
7
|
};
|
|
7
8
|
export type GoabCheckboxListOnChangeDetail = {
|
|
8
9
|
name: string;
|
|
9
10
|
value: string[];
|
|
11
|
+
event: Event;
|
|
10
12
|
};
|
|
11
13
|
export type GoabInputOnChangeDetail<T = string> = {
|
|
12
14
|
name: string;
|
|
13
15
|
value: T;
|
|
16
|
+
event: Event;
|
|
14
17
|
};
|
|
15
18
|
export type GoaInputOnBlurDetail = GoabInputOnBlurDetail;
|
|
16
19
|
export type GoabInputOnBlurDetail<T = string> = {
|
|
17
20
|
name: string;
|
|
18
21
|
value: T;
|
|
22
|
+
event: Event;
|
|
19
23
|
};
|
|
20
24
|
export type GoabInputOnFocusDetail<T = string> = GoabInputOnChangeDetail<T>;
|
|
21
25
|
export type GoabMenuButtonOnActionDetail = {
|
|
@@ -26,24 +30,29 @@ export type GoabInputOnKeyPressDetail<T = string> = {
|
|
|
26
30
|
name: string;
|
|
27
31
|
value: T;
|
|
28
32
|
key: T;
|
|
33
|
+
event: Event;
|
|
29
34
|
};
|
|
30
35
|
export type GoabFormStepperOnChangeDetail = {
|
|
31
36
|
step: number;
|
|
32
37
|
};
|
|
33
38
|
export type GoabFileUploadInputOnSelectFileDetail = {
|
|
34
39
|
file: File;
|
|
40
|
+
event: Event;
|
|
35
41
|
};
|
|
36
42
|
export type GoabFileUploadOnCancelDetail = {
|
|
37
43
|
filename: string;
|
|
44
|
+
event: Event;
|
|
38
45
|
};
|
|
39
46
|
export type GoabFileUploadOnDeleteDetail = {
|
|
40
47
|
filename: string;
|
|
48
|
+
event: Event;
|
|
41
49
|
};
|
|
42
50
|
export type GoabDropdownItemMountType = "append" | "prepend" | "reset";
|
|
43
51
|
export type GoabDropdownOnChangeDetail = {
|
|
44
52
|
name?: string;
|
|
45
53
|
value?: string;
|
|
46
54
|
values?: string[];
|
|
55
|
+
event: Event;
|
|
47
56
|
};
|
|
48
57
|
export type GoabDatePickerOnChangeDetail = {
|
|
49
58
|
name?: string;
|
|
@@ -52,6 +61,7 @@ export type GoabDatePickerOnChangeDetail = {
|
|
|
52
61
|
* @deprecated Use `valueStr` instead
|
|
53
62
|
*/
|
|
54
63
|
value: Date;
|
|
64
|
+
event: Event;
|
|
55
65
|
};
|
|
56
66
|
export type GoabDatePickerInputType = "calendar" | "input";
|
|
57
67
|
export type GoabChipVariant = "filter";
|
|
@@ -62,6 +72,7 @@ export type GoabCheckboxOnChangeDetail = {
|
|
|
62
72
|
value?: string;
|
|
63
73
|
checked: boolean;
|
|
64
74
|
binding: "value" | "check";
|
|
75
|
+
event: Event;
|
|
65
76
|
};
|
|
66
77
|
export type GoabCalendarOnChangeDetail = {
|
|
67
78
|
name?: string;
|
|
@@ -98,18 +109,23 @@ export type GoabTextAreaCountBy = "character" | "word" | "";
|
|
|
98
109
|
export type GoabTextAreaOnChangeDetail = {
|
|
99
110
|
name: string;
|
|
100
111
|
value: string;
|
|
112
|
+
event: Event;
|
|
101
113
|
};
|
|
102
114
|
export type GoabTextAreaOnKeyPressDetail = {
|
|
103
115
|
name: string;
|
|
104
116
|
value: string;
|
|
105
117
|
key: string;
|
|
118
|
+
event: Event;
|
|
106
119
|
};
|
|
107
120
|
export type GoabTextAreaOnBlurDetail = {
|
|
108
121
|
name: string;
|
|
109
122
|
value: string;
|
|
123
|
+
event: Event;
|
|
110
124
|
};
|
|
125
|
+
export type GoabTabsVariant = "default" | "segmented";
|
|
111
126
|
export interface GoabTabsProps {
|
|
112
127
|
initialTab?: number;
|
|
128
|
+
variant?: GoabTabsVariant;
|
|
113
129
|
}
|
|
114
130
|
export type GoabTabsOnChangeDetail = {
|
|
115
131
|
tab: number;
|
|
@@ -184,10 +200,10 @@ export type GoabModalCalloutVariant = "information" | "important" | "emergency"
|
|
|
184
200
|
export type GoabDate = Date | string;
|
|
185
201
|
export type GoabInputType = "text" | "password" | "email" | "number" | "date" | "datetime-local" | "month" | "range" | "search" | "tel" | "time" | "url" | "week";
|
|
186
202
|
export type GoabAutoCapitalize = "on" | "off" | "none" | "sentences" | "words" | "characters";
|
|
187
|
-
export type OnChange<T = string> = (name: string, value: T) => void;
|
|
188
|
-
export type OnFocus<T = string> = (name: string, value: T) => void;
|
|
189
|
-
export type OnBlur<T = string> = (name: string, value: T) => void;
|
|
190
|
-
export type OnKeyPress<T = string> = (name: string, value: T, key: string) => void;
|
|
203
|
+
export type OnChange<T = string> = (name: string, value: T, event: Event) => void;
|
|
204
|
+
export type OnFocus<T = string> = (name: string, value: T, event: Event) => void;
|
|
205
|
+
export type OnBlur<T = string> = (name: string, value: T, event: Event) => void;
|
|
206
|
+
export type OnKeyPress<T = string> = (name: string, value: T, key: string, event: Event) => void;
|
|
191
207
|
export interface GoabInputProps extends BaseProps {
|
|
192
208
|
onChange: OnChange<string>;
|
|
193
209
|
value?: string;
|
|
@@ -240,7 +256,7 @@ interface BaseProps extends Margins {
|
|
|
240
256
|
ariaLabel?: string;
|
|
241
257
|
maxLength?: number;
|
|
242
258
|
}
|
|
243
|
-
export type GoabIconBaseType = "accessibility" | "add-circle" | "add" | "airplane" | "alarm" | "albums" | "alert-circle" | "alert" | "american-football" | "analytics" | "aperture" | "apps" | "archive" | "arrow-back-circle" | "arrow-back" | "arrow-down-circle" | "arrow-down" | "arrow-forward-circle" | "arrow-forward" | "arrow-redo-circle" | "arrow-redo" | "arrow-undo-circle" | "arrow-undo" | "arrow-up-circle" | "arrow-up" | "at-circle" | "at" | "attach" | "backspace" | "bag-add" | "bag-check" | "bag-handle" | "bag" | "bag-remove" | "balloon" | "ban" | "bandage" | "bar-chart" | "barbell" | "barcode" | "baseball" | "basket" | "basketball" | "battery-charging" | "battery-dead" | "battery-full" | "battery-half" | "beaker" | "bed" | "beer" | "bicycle" | "bluetooth" | "boat" | "body" | "bonfire" | "book" | "bookmark" | "bookmarks" | "bowling-ball" | "briefcase" | "browsers" | "brush" | "bug" | "build" | "bulb" | "bus" | "business" | "cafe" | "calculator" | "calendar-clear" | "calendar-number" | "calendar" | "call" | "camera" | "camera-reverse" | "car" | "car-sport" | "card" | "caret-back-circle" | "caret-back" | "caret-down-circle" | "caret-down" | "caret-forward-circle" | "caret-forward" | "caret-up-circle" | "caret-up" | "cart" | "cash" | "cellular" | "chatbox-ellipses" | "chatbox" | "chatbubble-ellipses" | "chatbubble" | "chatbubbles" | "checkbox" | "checkmark-circle" | "checkmark-done-circle" | "checkmark-done" | "checkmark" | "chevron-back-circle" | "chevron-back" | "chevron-down-circle" | "chevron-down" | "chevron-forward-circle" | "chevron-forward" | "chevron-up-circle" | "chevron-up" | "clipboard" | "close-circle" | "close" | "cloud-circle" | "cloud-done" | "cloud-download" | "cloud-offline" | "cloud" | "cloud-upload" | "cloudy-night" | "cloudy" | "code-download" | "code" | "code-slash" | "code-working" | "cog" | "color-fill" | "color-filter" | "color-palette" | "color-wand" | "compass" | "construct" | "contract" | "contrast" | "copy" | "create" | "crop" | "cube" | "cut" | "desktop" | "diamond" | "dice" | "disc" | "document-attach" | "document-lock" | "document" | "document-text" | "documents" | "download" | "duplicate" | "ear" | "earth" | "easel" | "egg" | "ellipse" | "ellipsis-horizontal-circle" | "ellipsis-horizontal" | "ellipsis-vertical-circle" | "ellipsis-vertical" | "enter" | "exit" | "expand" | "extension-puzzle" | "eye-off" | "eye" | "eyedrop" | "fast-food" | "female" | "file-tray-full" | "file-tray" | "file-tray-stacked" | "filenames.ps1" | "film" | "filter-circle" | "filter" | "finger-print" | "fish" | "fitness" | "flag" | "flame" | "flash-off" | "flash" | "flashlight" | "flask" | "flower" | "folder-open" | "folder" | "football" | "footsteps" | "funnel" | "game-controller" | "gift" | "git-branch" | "git-commit" | "git-compare" | "git-merge" | "git-network" | "git-pull-request" | "glasses" | "globe" | "golf" | "grid" | "hammer" | "hand-left" | "hand-right" | "happy" | "hardware-chip" | "headset" | "heart-circle" | "heart-dislike-circle" | "heart-dislike" | "heart-half" | "heart" | "help-buoy" | "help-circle" | "help" | "home" | "hourglass" | "ice-cream" | "id-card" | "image" | "images" | "infinite" | "information-circle" | "information" | "invert-mode" | "journal" | "key" | "keypad" | "language" | "laptop" | "layers" | "leaf" | "library" | "link" | "list-circle" | "list" | "locate" | "location" | "lock-closed" | "lock-open" | "log-in" | "log-out" | "magnet" | "mail-open" | "mail" | "mail-unread" | "male-female" | "male" | "man" | "map" | "medal" | "medical" | "medkit" | "megaphone" | "menu" | "mic-circle" | "mic-off-circle" | "mic-off" | "mic" | "moon" | "move" | "musical-note" | "musical-notes" | "navigate-circle" | "navigate" | "newspaper" | "notifications-circle" | "notifications-off-circle" | "notifications-off" | "notifications" | "nuclear" | "nutrition" | "open" | "options" | "paper-plane" | "partly-sunny" | "pause-circle" | "pause" | "paw" | "pencil" | "people-circle" | "people" | "person-add" | "person-circle" | "person" | "person-remove" | "phone-landscape" | "phone-portrait" | "pie-chart" | "pin" | "pint" | "pizza" | "planet" | "play-back-circle" | "play-back" | "play-circle" | "play-forward-circle" | "play-forward" | "play" | "play-skip-back-circle" | "play-skip-back" | "play-skip-forward-circle" | "play-skip-forward" | "podium" | "power" | "pricetag" | "pricetags" | "print" | "prism" | "pulse" | "push" | "qr-code" | "radio-button-off" | "radio-button-on" | "radio" | "rainy" | "reader" | "receipt" | "recording" | "refresh-circle" | "refresh" | "reload-circle" | "reload" | "remove-circle" | "remove" | "reorder-four" | "reorder-three" | "reorder-two" | "repeat" | "resize" | "restaurant" | "return-down-back" | "return-down-forward" | "return-up-back" | "return-up-forward" | "ribbon" | "rocket" | "rose" | "sad" | "save" | "scale" | "scan-circle" | "scan" | "school" | "search-circle" | "search" | "send" | "server" | "settings" | "shapes" | "share" | "share-social" | "shield-checkmark" | "shield-half" | "shield" | "shirt" | "shuffle" | "skull" | "snow" | "sparkles" | "speedometer" | "square" | "star-half" | "star" | "stats-chart" | "stop-circle" | "stop" | "stopwatch" | "storefront" | "subway" | "sunny" | "swap-horizontal" | "swap-vertical" | "sync-circle" | "sync" | "tablet-landscape" | "tablet-portrait" | "telescope" | "tennisball" | "terminal" | "text" | "thermometer" | "thumbs-down" | "thumbs-up" | "thunderstorm" | "ticket" | "time" | "timer" | "today" | "toggle" | "trail-sign" | "train" | "transgender" | "trash-bin" | "trash" | "trending-down" | "trending-up" | "triangle" | "trophy" | "tv" | "umbrella" | "unlink" | "videocam-off" | "videocam" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "volume-off" | "walk" | "wallet" | "warning" | "watch" | "water" | "wifi" | "wine" | "woman" | "logo-alipay" | "logo-amazon" | "logo-amplify" | "logo-android" | "logo-angular" | "logo-apple" | "logo-apple-appstore" | "logo-apple-ar" | "logo-behance" | "logo-bitbucket" | "logo-bitcoin" | "logo-buffer" | "logo-capacitor" | "logo-chrome" | "logo-closed-captioning" | "logo-codepen" | "logo-css3" | "logo-designernews" | "logo-deviantart" | "logo-discord" | "logo-docker" | "logo-dribbble" | "logo-dropbox" | "logo-edge" | "logo-electron" | "logo-euro" | "logo-facebook" | "logo-figma" | "logo-firebase" | "logo-firefox" | "logo-flickr" | "logo-foursquare" | "logo-github" | "logo-gitlab" | "logo-google" | "logo-google-playstore" | "logo-hackernews" | "logo-html5" | "logo-instagram" | "logo-ionic" | "logo-ionitron" | "logo-javascript" | "logo-laravel" | "logo-linkedin" | "logo-markdown" | "logo-mastodon" | "logo-medium" | "logo-microsoft" | "logo-no-smoking" | "logo-nodejs" | "logo-npm" | "logo-octocat" | "logo-paypal" | "logo-pinterest" | "logo-playstation" | "logo-pwa" | "logo-python" | "logo-react" | "logo-reddit" | "logo-rss" | "logo-sass" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-soundcloud" | "logo-stackoverflow" | "logo-steam" | "logo-stencil" | "logo-tableau" | "logo-tiktok" | "logo-tumblr" | "logo-tux" | "logo-twitch" | "logo-twitter" | "logo-usd" | "logo-venmo" | "logo-vercel" | "logo-vimeo" | "logo-vk" | "logo-vue" | "logo-web-component" | "logo-wechat" | "logo-whatsapp" | "logo-windows" | "logo-wordpress" | "logo-xbox" | "logo-xing" | "logo-yahoo" | "logo-yen" | "logo-youtube";
|
|
259
|
+
export type GoabIconBaseType = "accessibility" | "add-circle" | "add" | "airplane" | "alarm" | "albums" | "alert-circle" | "alert" | "american-football" | "analytics" | "aperture" | "apps" | "archive" | "arrow-back-circle" | "arrow-back" | "arrow-down-circle" | "arrow-down" | "arrow-forward-circle" | "arrow-forward" | "arrow-redo-circle" | "arrow-redo" | "arrow-undo-circle" | "arrow-undo" | "arrow-up-circle" | "arrow-up" | "at-circle" | "at" | "attach" | "backspace" | "bag-add" | "bag-check" | "bag-handle" | "bag" | "bag-remove" | "balloon" | "ban" | "bandage" | "bar-chart" | "barbell" | "barcode" | "baseball" | "basket" | "basketball" | "battery-charging" | "battery-dead" | "battery-full" | "battery-half" | "beaker" | "bed" | "beer" | "bicycle" | "bluetooth" | "boat" | "body" | "bonfire" | "book" | "bookmark" | "bookmarks" | "bowling-ball" | "briefcase" | "browsers" | "brush" | "bug" | "build" | "bulb" | "bus" | "business" | "cafe" | "calculator" | "calendar-clear" | "calendar-number" | "calendar" | "call" | "camera" | "camera-reverse" | "car" | "car-sport" | "card" | "caret-back-circle" | "caret-back" | "caret-down-circle" | "caret-down" | "caret-forward-circle" | "caret-forward" | "caret-up-circle" | "caret-up" | "cart" | "cash" | "cellular" | "chatbox-ellipses" | "chatbox" | "chatbubble-ellipses" | "chatbubble" | "chatbubbles" | "checkbox" | "checkmark-circle" | "checkmark-done-circle" | "checkmark-done" | "checkmark" | "chevron-back-circle" | "chevron-back" | "chevron-down-circle" | "chevron-down" | "chevron-expand" | "chevron-forward-circle" | "chevron-forward" | "chevron-up-circle" | "chevron-up" | "clipboard" | "close-circle" | "close" | "cloud-circle" | "cloud-done" | "cloud-download" | "cloud-offline" | "cloud" | "cloud-upload" | "cloudy-night" | "cloudy" | "code-download" | "code" | "code-slash" | "code-working" | "cog" | "color-fill" | "color-filter" | "color-palette" | "color-wand" | "compass" | "construct" | "contract" | "contrast" | "copy" | "create" | "crop" | "cube" | "cut" | "desktop" | "diamond" | "dice" | "disc" | "document-attach" | "document-lock" | "document" | "document-text" | "documents" | "download" | "duplicate" | "ear" | "earth" | "easel" | "egg" | "ellipse" | "ellipsis-horizontal-circle" | "ellipsis-horizontal" | "ellipsis-vertical-circle" | "ellipsis-vertical" | "enter" | "exit" | "expand" | "extension-puzzle" | "eye-off" | "eye" | "eyedrop" | "fast-food" | "female" | "file-tray-full" | "file-tray" | "file-tray-stacked" | "filenames.ps1" | "film" | "filter-circle" | "filter-lines" | "filter" | "finger-print" | "fish" | "fitness" | "flag" | "flame" | "flash-off" | "flash" | "flashlight" | "flask" | "flower" | "folder-open" | "folder" | "football" | "footsteps" | "funnel" | "game-controller" | "gift" | "git-branch" | "git-commit" | "git-compare" | "git-merge" | "git-network" | "git-pull-request" | "glasses" | "globe" | "golf" | "grid" | "hammer" | "hand-left" | "hand-right" | "happy" | "hardware-chip" | "headset" | "heart-circle" | "heart-dislike-circle" | "heart-dislike" | "heart-half" | "heart" | "help-buoy" | "help-circle" | "help" | "home" | "hourglass" | "ice-cream" | "id-card" | "image" | "images" | "infinite" | "information-circle" | "information" | "invert-mode" | "journal" | "key" | "keypad" | "language" | "laptop" | "layers" | "leaf" | "library" | "link" | "list-circle" | "list" | "locate" | "location" | "lock-closed" | "lock-open" | "log-in" | "log-out" | "magnet" | "mail-open" | "mail" | "mail-unread" | "male-female" | "male" | "man" | "map" | "medal" | "medical" | "medkit" | "megaphone" | "menu" | "mic-circle" | "mic-off-circle" | "mic-off" | "mic" | "moon" | "move" | "musical-note" | "musical-notes" | "navigate-circle" | "navigate" | "newspaper" | "notifications-circle" | "notifications-off-circle" | "notifications-off" | "notifications" | "nuclear" | "nutrition" | "open" | "options" | "paper-plane" | "partly-sunny" | "pause-circle" | "pause" | "paw" | "pencil" | "people-circle" | "people" | "person-add" | "person-circle" | "person" | "person-remove" | "phone-landscape" | "phone-portrait" | "pie-chart" | "pin" | "pint" | "pizza" | "planet" | "play-back-circle" | "play-back" | "play-circle" | "play-forward-circle" | "play-forward" | "play" | "play-skip-back-circle" | "play-skip-back" | "play-skip-forward-circle" | "play-skip-forward" | "podium" | "power" | "pricetag" | "pricetags" | "print" | "prism" | "pulse" | "push" | "qr-code" | "radio-button-off" | "radio-button-on" | "radio" | "rainy" | "reader" | "receipt" | "recording" | "refresh-circle" | "refresh" | "reload-circle" | "reload" | "remove-circle" | "remove" | "reorder-four" | "reorder-three" | "reorder-two" | "repeat" | "resize" | "restaurant" | "return-down-back" | "return-down-forward" | "return-up-back" | "return-up-forward" | "ribbon" | "rocket" | "rose" | "sad" | "save" | "scale" | "scan-circle" | "scan" | "school" | "search-circle" | "search" | "send" | "server" | "settings" | "shapes" | "share" | "share-social" | "shield-checkmark" | "shield-half" | "shield" | "shirt" | "shuffle" | "skull" | "snow" | "sparkles" | "speedometer" | "square" | "star-half" | "star" | "stats-chart" | "stop-circle" | "stop" | "stopwatch" | "storefront" | "subway" | "sunny" | "swap-horizontal" | "swap-vertical" | "sync-circle" | "sync" | "tablet-landscape" | "tablet-portrait" | "telescope" | "tennisball" | "terminal" | "text" | "thermometer" | "thumbs-down" | "thumbs-up" | "thunderstorm" | "ticket" | "time" | "timer" | "today" | "toggle" | "trail-sign" | "train" | "transgender" | "trash-bin" | "trash" | "trending-down" | "trending-up" | "triangle" | "trophy" | "tv" | "umbrella" | "unlink" | "videocam-off" | "videocam" | "volume-high" | "volume-low" | "volume-medium" | "volume-mute" | "volume-off" | "walk" | "wallet" | "warning" | "watch" | "water" | "wifi" | "wine" | "woman" | "logo-alipay" | "logo-amazon" | "logo-amplify" | "logo-android" | "logo-angular" | "logo-apple" | "logo-apple-appstore" | "logo-apple-ar" | "logo-behance" | "logo-bitbucket" | "logo-bitcoin" | "logo-buffer" | "logo-capacitor" | "logo-chrome" | "logo-closed-captioning" | "logo-codepen" | "logo-css3" | "logo-designernews" | "logo-deviantart" | "logo-discord" | "logo-docker" | "logo-dribbble" | "logo-dropbox" | "logo-edge" | "logo-electron" | "logo-euro" | "logo-facebook" | "logo-figma" | "logo-firebase" | "logo-firefox" | "logo-flickr" | "logo-foursquare" | "logo-github" | "logo-gitlab" | "logo-google" | "logo-google-playstore" | "logo-hackernews" | "logo-html5" | "logo-instagram" | "logo-ionic" | "logo-ionitron" | "logo-javascript" | "logo-laravel" | "logo-linkedin" | "logo-markdown" | "logo-mastodon" | "logo-medium" | "logo-microsoft" | "logo-no-smoking" | "logo-nodejs" | "logo-npm" | "logo-octocat" | "logo-paypal" | "logo-pinterest" | "logo-playstation" | "logo-pwa" | "logo-python" | "logo-react" | "logo-reddit" | "logo-rss" | "logo-sass" | "logo-skype" | "logo-slack" | "logo-snapchat" | "logo-soundcloud" | "logo-stackoverflow" | "logo-steam" | "logo-stencil" | "logo-tableau" | "logo-tiktok" | "logo-tumblr" | "logo-tux" | "logo-twitch" | "logo-twitter" | "logo-usd" | "logo-venmo" | "logo-vercel" | "logo-vimeo" | "logo-vk" | "logo-vue" | "logo-web-component" | "logo-wechat" | "logo-whatsapp" | "logo-windows" | "logo-wordpress" | "logo-xbox" | "logo-xing" | "logo-yahoo" | "logo-yen" | "logo-youtube";
|
|
244
260
|
export type GoabIconOverridesType = "goa-file" | "goa-text" | "goa-pdf" | "goa-doc" | "goa-ppt" | "goa-xls" | "goa-zip" | "goa-video" | "goa-audio" | "goa-image" | "add-circle-filled" | "add-circle" | "add" | "alert-circle-filled" | "alert-circle" | "arrow-back" | "arrow-bottom" | "arrow-down" | "arrow-end" | "arrow-forward" | "arrow-start" | "arrow-top" | "arrow-up" | "bookmark-filled" | "bookmark" | "calendar-filled" | "calendar" | "call-filled" | "call" | "caret-back" | "caret-down" | "caret-forward" | "caret-up" | "checkmark-circle-filled" | "checkmark-circle" | "checkmark" | "chevron-back" | "chevron-down" | "chevron-forward" | "chevron-up" | "close-circle-filled" | "close-circle" | "close" | "cloud-upload-filled" | "cloud-upload" | "column-sort" | "documents-filled" | "documents" | "download-filled" | "download" | "ellipsis-vertical-filled" | "ellipsis-vertical" | "eye-filled" | "eye-off-filled" | "eye-off" | "eye" | "filter-filled" | "filter" | "flag-filled" | "flag" | "help-circle-filled" | "help-circle" | "information-circle-filled" | "information-circle" | "mail-filled" | "mail" | "menu" | "notifications-filled" | "notifications-off-filled" | "notifications-off" | "notifications" | "open-filled" | "open" | "pencil-filled" | "pencil" | "person-circle-filled" | "person-circle" | "reload" | "remove-circle-filled" | "remove-circle" | "remove" | "scroll-to" | "search" | "settings-filled" | "settings" | "trash-filled" | "trash" | "warning-filled" | "warning";
|
|
245
261
|
export type GoabIconType = GoabIconBaseType | `${GoabIconBaseType}:${GoabIconTheme}`;
|
|
246
262
|
export type GoabIconSize = "1" | "2" | "3" | "4" | "5" | "6" | "2xsmall" | "xsmall" | "small" | "medium" | "large" | "xlarge";
|