@bspk/ui-ngx 1.2.3 → 1.2.4
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/fesm2022/bspk-ui-ngx.mjs +209 -239
- package/fesm2022/bspk-ui-ngx.mjs.map +1 -1
- package/index.d.ts +234 -189
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OutputEmitterRef, InputSignal, ModelSignal, Signal, OnInit, AfterViewInit, EventEmitter, ElementRef, OnChanges, OnDestroy, Renderer2,
|
|
2
|
+
import { OutputEmitterRef, InputSignal, ModelSignal, Signal, OnInit, AfterViewInit, EventEmitter, ElementRef, OnChanges, OnDestroy, Renderer2, Type, EnvironmentInjector } from '@angular/core';
|
|
3
3
|
import * as CSS from 'csstype';
|
|
4
|
-
import { format, isSameDay, addYears, addMonths } from 'date-fns';
|
|
5
4
|
import * as _bspk_ui_ngx from '@bspk/ui-ngx';
|
|
5
|
+
import { format, isSameDay, addYears, addMonths } from 'date-fns';
|
|
6
6
|
import { Placement as Placement$1, Strategy, OffsetOptions, ComputePositionReturn } from '@floating-ui/dom';
|
|
7
7
|
import * as libphonenumber_js from 'libphonenumber-js';
|
|
8
8
|
import { CountryCode } from 'libphonenumber-js';
|
|
@@ -23,14 +23,6 @@ type AsSignal<T> = {
|
|
|
23
23
|
type AlertVariant = 'error' | 'informational' | 'success' | 'warning';
|
|
24
24
|
type ButtonSize = 'large' | 'medium' | 'small' | 'x-small';
|
|
25
25
|
interface CommonProps {
|
|
26
|
-
/**
|
|
27
|
-
* Indicates that the element is in an invalid state and displays the error theme.
|
|
28
|
-
*
|
|
29
|
-
* If set to true, an accompanying error message should be provided.
|
|
30
|
-
*
|
|
31
|
-
* @default false
|
|
32
|
-
*/
|
|
33
|
-
invalid?: boolean;
|
|
34
26
|
/** The id of the element. If not provided one will be generated. */
|
|
35
27
|
id?: string;
|
|
36
28
|
/**
|
|
@@ -63,12 +55,6 @@ interface CommonProps {
|
|
|
63
55
|
* @default false
|
|
64
56
|
*/
|
|
65
57
|
readOnly?: boolean;
|
|
66
|
-
/**
|
|
67
|
-
* The [name](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name) of the control.
|
|
68
|
-
*
|
|
69
|
-
* @required
|
|
70
|
-
*/
|
|
71
|
-
name: string;
|
|
72
58
|
/**
|
|
73
59
|
* The value of the control.
|
|
74
60
|
*
|
|
@@ -135,23 +121,29 @@ interface CommonProps {
|
|
|
135
121
|
/** Additional CSS classes to apply. */
|
|
136
122
|
class?: string;
|
|
137
123
|
}
|
|
138
|
-
interface FieldControlProps
|
|
124
|
+
interface FieldControlProps {
|
|
139
125
|
ariaDescribedBy?: CommonProps['ariaDescribedBy'];
|
|
140
126
|
ariaErrorMessage?: CommonProps['ariaErrorMessage'];
|
|
141
127
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
142
128
|
ariaLabelledBy?: CommonProps['ariaLabelledBy'];
|
|
143
129
|
disabled?: CommonProps['disabled'];
|
|
144
130
|
id?: CommonProps['id'];
|
|
145
|
-
invalid?: CommonProps['invalid'];
|
|
146
|
-
name: CommonProps['name'];
|
|
147
131
|
readOnly?: CommonProps['readOnly'];
|
|
148
132
|
required?: CommonProps['required'];
|
|
149
133
|
/**
|
|
150
|
-
* The
|
|
134
|
+
* The [name](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name) of the control.
|
|
151
135
|
*
|
|
152
136
|
* @required
|
|
153
137
|
*/
|
|
154
|
-
|
|
138
|
+
name: string;
|
|
139
|
+
/**
|
|
140
|
+
* Indicates that the element is in an invalid state and displays the error theme.
|
|
141
|
+
*
|
|
142
|
+
* If set to true, an accompanying error message should be provided.
|
|
143
|
+
*
|
|
144
|
+
* @default false
|
|
145
|
+
*/
|
|
146
|
+
invalid?: boolean;
|
|
155
147
|
}
|
|
156
148
|
type AriaRole = 'alert' | 'alertdialog' | 'application' | 'article' | 'banner' | 'button' | 'cell' | 'checkbox' | 'columnheader' | 'combobox' | 'complementary' | 'contentinfo' | 'definition' | 'dialog' | 'directory' | 'document' | 'feed' | 'figure' | 'form' | 'grid' | 'gridcell' | 'group' | 'heading' | 'img' | 'link' | 'list' | 'listbox' | 'listitem' | 'log' | 'main' | 'marquee' | 'math' | 'menu' | 'menubar' | 'menuitem' | 'menuitemcheckbox' | 'menuitemradio' | 'navigation' | 'none' | 'note' | 'option' | 'presentation' | 'progressbar' | 'radio' | 'radiogroup' | 'region' | 'row' | 'rowgroup' | 'rowheader' | 'scrollbar' | 'search' | 'searchbox' | 'separator' | 'slider' | 'spinbutton' | 'status' | 'switch' | 'tab' | 'table' | 'tablist' | 'tabpanel' | 'term' | 'textbox' | 'timer' | 'toolbar' | 'tooltip' | 'tree' | 'treegrid' | 'treeitem' | (string & {});
|
|
157
149
|
interface UtilityBase<PropsType> {
|
|
@@ -201,19 +193,25 @@ interface AccordionSectionProps {
|
|
|
201
193
|
/**
|
|
202
194
|
* A utility component representing a single section within an accordion.
|
|
203
195
|
*
|
|
204
|
-
* @
|
|
196
|
+
* @name AccordionSection
|
|
197
|
+
* @phase Utility
|
|
205
198
|
*/
|
|
206
199
|
declare class UIAccordionSection implements AsSignal<AccordionSectionProps> {
|
|
200
|
+
/**
|
|
201
|
+
* Emits the id of the accordion section when its header is clicked to toggle open/closed state. The parent
|
|
202
|
+
* accordion component listens for this event to manage which sections are open.
|
|
203
|
+
*/
|
|
207
204
|
toggleOpen: i0.OutputEmitterRef<string>;
|
|
208
205
|
readonly title: i0.InputSignal<string>;
|
|
209
206
|
readonly subtitle: i0.InputSignal<string | undefined>;
|
|
210
|
-
readonly isOpen: i0.ModelSignal<boolean | undefined>;
|
|
211
207
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
212
208
|
readonly id: i0.InputSignal<string | undefined>;
|
|
213
209
|
readonly leading: i0.InputSignal<string | undefined>;
|
|
214
210
|
readonly trailing: i0.InputSignal<string | undefined>;
|
|
211
|
+
/** Whether the accordion section is open or closed. This is managed internally by the component, but can be set */
|
|
212
|
+
readonly isOpen: i0.ModelSignal<boolean | undefined>;
|
|
215
213
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIAccordionSection, never>;
|
|
216
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIAccordionSection, "ui-accordion-section", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "
|
|
214
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIAccordionSection, "ui-accordion-section", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "leading": { "alias": "leading"; "required": false; "isSignal": true; }; "trailing": { "alias": "trailing"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; }, { "toggleOpen": "toggleOpen"; "isOpen": "isOpenChange"; }, never, ["[data-leading]", "[data-trailing]", "*"], true, never>;
|
|
217
215
|
}
|
|
218
216
|
|
|
219
217
|
interface AccordionProps {
|
|
@@ -9116,6 +9114,65 @@ interface ScrollLimitStyleProps {
|
|
|
9116
9114
|
scrollLimit?: number;
|
|
9117
9115
|
}
|
|
9118
9116
|
|
|
9117
|
+
interface LinkProps {
|
|
9118
|
+
/** The variant of the link. Controls the icon that is displayed and link target. */
|
|
9119
|
+
trailingIcon?: 'chevron' | 'external' | 'link';
|
|
9120
|
+
/**
|
|
9121
|
+
* The href of the link.
|
|
9122
|
+
*
|
|
9123
|
+
* @example
|
|
9124
|
+
* https://bspk.dev
|
|
9125
|
+
*/
|
|
9126
|
+
href: string | null | undefined;
|
|
9127
|
+
/**
|
|
9128
|
+
* The size of the link.
|
|
9129
|
+
*
|
|
9130
|
+
* @default base
|
|
9131
|
+
*/
|
|
9132
|
+
size?: 'base' | 'large' | 'small';
|
|
9133
|
+
/**
|
|
9134
|
+
* Change the color of the link to a subtle color. This is useful for links that are not primary actions, for
|
|
9135
|
+
* example footer menus.
|
|
9136
|
+
*
|
|
9137
|
+
* @default default
|
|
9138
|
+
*/
|
|
9139
|
+
variant?: 'default' | 'subtle-inverse' | 'subtle';
|
|
9140
|
+
/**
|
|
9141
|
+
* The target of the link. If the `trailingIcon` is set to `external`, this will default to `_blank`.
|
|
9142
|
+
*
|
|
9143
|
+
* @default _self
|
|
9144
|
+
*/
|
|
9145
|
+
target?: '_blank' | '_parent' | '_self' | '_top';
|
|
9146
|
+
/** Determines if the element is disabled. */
|
|
9147
|
+
disabled?: boolean;
|
|
9148
|
+
}
|
|
9149
|
+
/**
|
|
9150
|
+
* This is the standalone link directive. Apply to an `a` element.
|
|
9151
|
+
*
|
|
9152
|
+
* @example
|
|
9153
|
+
* <a ui-link href="https://anywhere.re" [label]="'Example label'" trailingIcon="external"></a>
|
|
9154
|
+
*
|
|
9155
|
+
* @name Link
|
|
9156
|
+
* @phase Stable
|
|
9157
|
+
*/
|
|
9158
|
+
declare class UILinkDirective implements AsSignal<LinkProps> {
|
|
9159
|
+
readonly trailingIcon: i0.InputSignal<"link" | "chevron" | "external" | undefined>;
|
|
9160
|
+
readonly href: i0.InputSignal<string | null | undefined>;
|
|
9161
|
+
readonly size: i0.InputSignal<"small" | "large" | "base" | undefined>;
|
|
9162
|
+
readonly variant: i0.InputSignal<"default" | "subtle-inverse" | "subtle" | undefined>;
|
|
9163
|
+
readonly target: i0.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
9164
|
+
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9165
|
+
private readonly host;
|
|
9166
|
+
private readonly renderer;
|
|
9167
|
+
private viewContainerRef;
|
|
9168
|
+
private destroyRef;
|
|
9169
|
+
private labelSpan;
|
|
9170
|
+
constructor();
|
|
9171
|
+
iconComponent(): Promise<typeof _bspk_ui_ngx.IconOpenInNew> | null;
|
|
9172
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UILinkDirective, never>;
|
|
9173
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UILinkDirective, "a[ui-link]", never, { "trailingIcon": { "alias": "trailingIcon"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9174
|
+
}
|
|
9175
|
+
|
|
9119
9176
|
interface ListItemProps {
|
|
9120
9177
|
active?: CommonProps['active'];
|
|
9121
9178
|
ariaDisabled?: CommonProps['ariaDisabled'];
|
|
@@ -9177,6 +9234,7 @@ interface ListItemProps {
|
|
|
9177
9234
|
* @phase Dev
|
|
9178
9235
|
*/
|
|
9179
9236
|
declare class UIListItem implements AsSignal<ListItemProps> {
|
|
9237
|
+
/** Emits when the ListItem is activated by click or keyboard interaction. */
|
|
9180
9238
|
onClick: EventEmitter<Event>;
|
|
9181
9239
|
readonly active: i0.InputSignal<boolean | undefined>;
|
|
9182
9240
|
readonly owner: i0.InputSignal<string | undefined>;
|
|
@@ -9231,6 +9289,7 @@ interface BreadcrumbItem extends ListItemProps {
|
|
|
9231
9289
|
interface BreadcrumbProps extends ScrollLimitStyleProps {
|
|
9232
9290
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
9233
9291
|
id?: CommonProps['id'];
|
|
9292
|
+
variant?: LinkProps['variant'];
|
|
9234
9293
|
/**
|
|
9235
9294
|
* The array of breadcrumb items.
|
|
9236
9295
|
*
|
|
@@ -9284,12 +9343,13 @@ declare class UIBreadcrumb implements AsSignal<BreadcrumbProps> {
|
|
|
9284
9343
|
readonly items: i0.InputSignal<BreadcrumbItem[]>;
|
|
9285
9344
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9286
9345
|
readonly scrollLimit: i0.InputSignal<number | undefined>;
|
|
9346
|
+
readonly variant: i0.InputSignal<"default" | "subtle-inverse" | "subtle" | undefined>;
|
|
9287
9347
|
readonly shouldRender: i0.Signal<boolean>;
|
|
9288
9348
|
readonly firstItem: i0.Signal<BreadcrumbItem>;
|
|
9289
9349
|
readonly lastItem: i0.Signal<BreadcrumbItem>;
|
|
9290
9350
|
readonly middleItems: i0.Signal<BreadcrumbItem[]>;
|
|
9291
9351
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIBreadcrumb, never>;
|
|
9292
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIBreadcrumb, "ui-breadcrumb", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9352
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIBreadcrumb, "ui-breadcrumb", never, { "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9293
9353
|
}
|
|
9294
9354
|
|
|
9295
9355
|
type BspkIcon = typeof Icon360 | typeof IconAccessibilityNew | typeof IconAccessible | typeof IconAccountCircle | typeof IconAccountCircleFill | typeof IconAccountTree | typeof IconAccountTreeFill | typeof IconAdd | typeof IconAddAlert | typeof IconAddAlertFill | typeof IconAddAPhoto | typeof IconAddAPhotoFill | typeof IconAddBusiness | typeof IconAddBusinessFill | typeof IconAddChart | typeof IconAddChartFill | typeof IconAddCircle | typeof IconAddCircleFill | typeof IconAddComment | typeof IconAddCommentFill | typeof IconAddReaction | typeof IconAddReactionFill | typeof IconAddShoppingCart | typeof IconAirplanemodeInactive | typeof IconAirportShuttle | typeof IconAirportShuttleFill | typeof IconAlignCenter | typeof IconAlignEnd | typeof IconAlignFlexCenter | typeof IconAlignFlexEnd | typeof IconAlignFlexStart | typeof IconAlignHorizontalCenter | typeof IconAlignHorizontalLeft | typeof IconAlignHorizontalRight | typeof IconAlignItemsStretch | typeof IconAlignJustifyCenter | typeof IconAlignJustifyFlexEnd | typeof IconAlignJustifyFlexStart | typeof IconAlignJustifySpaceAround | typeof IconAlignJustifySpaceBetween | typeof IconAlignJustifySpaceEven | typeof IconAlignJustifyStretch | typeof IconAlignSpaceAround | typeof IconAlignSpaceBetween | typeof IconAlignSpaceEven | typeof IconAlignStart | typeof IconAlignStretch | typeof IconAlignVerticalBottom | typeof IconAlignVerticalCenter | typeof IconAlignVerticalTop | typeof IconAlternateEmail | typeof IconAmex | typeof IconAnalytics | typeof IconAnalyticsFill | typeof IconApartment | typeof IconAppleBlack | typeof IconApplepay | typeof IconAppleWhite | typeof IconApps | typeof IconAppStore | typeof IconArchive | typeof IconArchiveFill | typeof IconAreaChart | typeof IconAreaChartFill | typeof IconArOnYou | typeof IconArOnYouFill | typeof IconArrowBack | typeof IconArrowDownward | typeof IconArrowDropDown | typeof IconArrowDropUp | typeof IconArrowForward | typeof IconArrowInsert | typeof IconArrowLeft | typeof IconArrowOutward | typeof IconArrowRight | typeof IconArrowUpward | typeof IconArStickers | typeof IconArStickersFill | typeof IconAssignment | typeof IconAssignmentAdd | typeof IconAssignmentAddFill | typeof IconAssignmentFill | typeof IconAttachFile | typeof IconAttachFileAdd | typeof IconAttachFileFill | typeof IconAttachMoney | typeof IconAutomation | typeof IconAutomationFill | typeof IconAZAscend | typeof IconAZDescend | typeof IconBadge | typeof IconBadgeFill | typeof IconBakeryDining | typeof IconBakeryDiningFill | typeof IconBarChart | typeof IconBarcode | typeof IconBarcodeScanner | typeof IconBarn | typeof IconBarnFill | typeof IconBasement | typeof IconBasementFill | typeof IconBathroom | typeof IconBathroomFill | typeof IconBed | typeof IconBedFill | typeof IconBlock | typeof IconBluetooth | typeof IconBolt | typeof IconBoltFill | typeof IconBookmark | typeof IconBookmarkAdd | typeof IconBookmarkAdded | typeof IconBookmarkAddedFill | typeof IconBookmarkAddFill | typeof IconBookmarkFill | typeof IconBookmarkRemove | typeof IconBookmarkRemoveFill | typeof IconBookmarks | typeof IconBookmarksFill | typeof IconBorderColor | typeof IconBorderColorFill | typeof IconBorderStyle | typeof IconBox | typeof IconBoxAdd | typeof IconBoxAddFill | typeof IconBoxFill | typeof IconBrail | typeof IconBubbleChart | typeof IconBubbleChartFill | typeof IconBuilding | typeof IconBuildingFill | typeof IconBusinessCenter | typeof IconBusinessCenterFill | typeof IconCalendarViewDay | typeof IconCalendarViewDayFill | typeof IconCalendarViewWeek | typeof IconCalendarViewWeekFill | typeof IconCall | typeof IconCallEnd | typeof IconCallEndFill | typeof IconCallFill | typeof IconCampaign | typeof IconCampaignFill | typeof IconCancel | typeof IconCancelFill | typeof IconCasino | typeof IconCasinoFill | typeof IconCat | typeof IconCategory | typeof IconCategoryFill | typeof IconCatFill | typeof IconChartData | typeof IconChartDataFill | typeof IconChat | typeof IconChatBubble | typeof IconChatBubbleFill | typeof IconChatFill | typeof IconCheck | typeof IconCheckCircle | typeof IconCheckCircleFill | typeof IconCheckFill | typeof IconChecklist | typeof IconChevronLeft | typeof IconChevronRight | typeof IconCircle | typeof IconCircleFill | typeof IconCleaningServices | typeof IconCleaningServicesFill | typeof IconClose | typeof IconClosedCaption | typeof IconClosedCaptionDisabled | typeof IconClosedCaptionDisabledFill | typeof IconClosedCaptionFill | typeof IconCloseFill | typeof IconCloud | typeof IconCloudDone | typeof IconCloudDoneFill | typeof IconCloudDownload | typeof IconCloudDownloadFill | typeof IconCloudFill | typeof IconCloudOff | typeof IconCloudOffFill | typeof IconCloudUpload | typeof IconCloudUploadFill | typeof IconCode | typeof IconCognition | typeof IconCognitionFill | typeof IconColorBlind | typeof IconColors | typeof IconCommute | typeof IconCommuteFill | typeof IconComputer | typeof IconComputerFill | typeof IconConstruction | typeof IconContactMail | typeof IconContactMailFill | typeof IconContactPage | typeof IconContactPageFill | typeof IconContactPhone | typeof IconContactPhoneFill | typeof IconContacts | typeof IconContactsFill | typeof IconContactSupport | typeof IconContactSupportFill | typeof IconContentCopy | typeof IconContentCopyFill | typeof IconContentPasteOff | typeof IconContentPasteSearch | typeof IconContrast | typeof IconContrastCircle | typeof IconContrastFill | typeof IconContrastSquare | typeof IconCopyright | typeof IconCopyrightFill | typeof IconCrawlspace | typeof IconCrawlspaceFill | typeof IconCreditCard | typeof IconCreditCardFill | typeof IconDangerous | typeof IconDangerousFill | typeof IconDarkMode | typeof IconDarkModeFill | typeof IconDashboard | typeof IconDashboard2 | typeof IconDashboard2Fill | typeof IconDashboardCustomize | typeof IconDashboardCustomizeFill | typeof IconDashboardFill | typeof IconDatabase | typeof IconDatabaseFill | typeof IconDelete | typeof IconDeleteFill | typeof IconDeleteForever | typeof IconDeleteForeverFill | typeof IconDeployedCode | typeof IconDeployedCodeAccount | typeof IconDeployedCodeAccountFill | typeof IconDeployedCodeAlert | typeof IconDeployedCodeAlertFill | typeof IconDeployedCodeFill | typeof IconDeployedCodeHistory | typeof IconDeployedCodeHistoryFill | typeof IconDeployedCodeUpdate | typeof IconDeployedCodeUpdateFill | typeof IconDescription | typeof IconDescriptionFill | typeof IconDesktopWindows | typeof IconDesktopWindowsFill | typeof IconDevices | typeof IconDevicesFill | typeof IconDeviceThermostat | typeof IconDialpad | typeof IconDiamond | typeof IconDiamondFill | typeof IconDirections | typeof IconDirectionsBike | typeof IconDirectionsBoat | typeof IconDirectionsBoatFill | typeof IconDirectionsBus | typeof IconDirectionsBusFill | typeof IconDirectionsCar | typeof IconDirectionsCarFill | typeof IconDirectionsFill | typeof IconDirectionsSubway | typeof IconDirectionsSubwayFill | typeof IconDirectionsWalk | typeof IconDiscover | typeof IconDiversity1 | typeof IconDiversity1Fill | typeof IconDocumentScanner | typeof IconDocumentScannerFill | typeof IconDog | typeof IconDogFill | typeof IconDoNotDisturbOn | typeof IconDoNotDisturbOnFill | typeof IconDonutLarge | typeof IconDonutSmall | typeof IconDonutSmallFill | typeof IconDoorOpen | typeof IconDoorOpenFill | typeof IconDraft | typeof IconDraftFill | typeof IconDrafts | typeof IconDraftsFill | typeof IconDragHandle | typeof IconDragIndicator | typeof IconDraw | typeof IconDrawFill | typeof IconEdit | typeof IconEditFill | typeof IconEditNote | typeof IconEditNoteFill | typeof IconEditRoad | typeof IconEditRoadFill | typeof IconEditSquare | typeof IconEditSquareFill | typeof IconEgg | typeof IconEggFill | typeof IconEmojiLanguage | typeof IconEmojiLanguageFill | typeof IconEmoticon | typeof IconEncrypted | typeof IconEncryptedFill | typeof IconError | typeof IconErrorFill | typeof IconEvent | typeof IconEventFill | typeof IconEventNote | typeof IconEventNoteFill | typeof IconExercise | typeof IconExerciseFill | typeof IconExperiment | typeof IconExperimentFill | typeof IconExplore | typeof IconExploreFill | typeof IconExtension | typeof IconExtensionFill | typeof IconExtensionOff | typeof IconExtensionOffFill | typeof IconFacebook | typeof IconFacebookWhite | typeof IconFaceId | typeof IconFaceRetouchingOff | typeof IconFaceRetouchingOffFill | typeof IconFamilyHome | typeof IconFamilyHomeFill | typeof IconFastfood | typeof IconFastfoodFill | typeof IconFavorite | typeof IconFavoriteFill | typeof IconFileDownload | typeof IconFileUpload | typeof IconFilterList | typeof IconFinance | typeof IconFingerprint | typeof IconFingerprintOff | typeof IconFireplace | typeof IconFireplaceFill | typeof IconFitnessCenter | typeof IconFitScreen | typeof IconFitScreenFill | typeof IconFlag | typeof IconFlagAfghanistan | typeof IconFlagAlandIsland | typeof IconFlagAlbania | typeof IconFlagAlgeria | typeof IconFlagAmericanSamoa | typeof IconFlagAndorra | typeof IconFlagAngola | typeof IconFlagAnguilla | typeof IconFlagAntiguaAndBarbuda | typeof IconFlagArgentina | typeof IconFlagArmenia | typeof IconFlagAruba | typeof IconFlagAustralia | typeof IconFlagAustria | typeof IconFlagAzerbaijan | typeof IconFlagBahamas | typeof IconFlagBahrain | typeof IconFlagBangladesh | typeof IconFlagBarbados | typeof IconFlagBelarus | typeof IconFlagBelgium | typeof IconFlagBelize | typeof IconFlagBenin | typeof IconFlagBermuda | typeof IconFlagBhutan | typeof IconFlagBolivia | typeof IconFlagBonaire | typeof IconFlagBosniaAndHerzegovina | typeof IconFlagBotswana | typeof IconFlagBrazil | typeof IconFlagBrunei | typeof IconFlagBulgaria | typeof IconFlagBurkinaFaso | typeof IconFlagBurundi | typeof IconFlagCambodia | typeof IconFlagCameroon | typeof IconFlagCanada | typeof IconFlagCaymanIslands | typeof IconFlagCentralAfricanRepublic | typeof IconFlagChad | typeof IconFlagChile | typeof IconFlagChina | typeof IconFlagChristmasIsland | typeof IconFlagCocosIslands | typeof IconFlagColombia | typeof IconFlagComoros | typeof IconFlagCookIsland | typeof IconFlagCostaRica | typeof IconFlagCroatia | typeof IconFlagCuba | typeof IconFlagCuracao | typeof IconFlagCyprus | typeof IconFlagCzechRepublic | typeof IconFlagDemocraticRepublicOfTheCongo | typeof IconFlagDenmark | typeof IconFlagDjibouti | typeof IconFlagDominica | typeof IconFlagDominicanRepublic | typeof IconFlagEcuador | typeof IconFlagEgypt | typeof IconFlagElSalvador | typeof IconFlagEquatorialGuinea | typeof IconFlagEritrea | typeof IconFlagEstonia | typeof IconFlagEswatini | typeof IconFlagEthiopia | typeof IconFlagFalklandIslands | typeof IconFlagFaroeIslands | typeof IconFlagFederatedStatesOfMicronesia | typeof IconFlagFiji | typeof IconFlagFill | typeof IconFlagFinland | typeof IconFlagFrance | typeof IconFlagFrenchGuiana | typeof IconFlagFrenchPolynesia | typeof IconFlagGabon | typeof IconFlagGambia | typeof IconFlagGeorgia | typeof IconFlagGermany | typeof IconFlagGhana | typeof IconFlagGibraltar | typeof IconFlagGreece | typeof IconFlagGreeland | typeof IconFlagGrenada | typeof IconFlagGrenadines | typeof IconFlagGuam | typeof IconFlagGuatemala | typeof IconFlagGuernsey | typeof IconFlagGuinea | typeof IconFlagGuineaBissau | typeof IconFlagGuyana | typeof IconFlagHaiti | typeof IconFlagHonduras | typeof IconFlagHongKong | typeof IconFlagHungary | typeof IconFlagIceland | typeof IconFlagIndia | typeof IconFlagIndianOceanTerritory | typeof IconFlagIndonesia | typeof IconFlagIran | typeof IconFlagIraq | typeof IconFlagIreland | typeof IconFlagIsleOfMan | typeof IconFlagIsrael | typeof IconFlagItaly | typeof IconFlagJamaica | typeof IconFlagJapan | typeof IconFlagJersey | typeof IconFlagJordan | typeof IconFlagKazakhstan | typeof IconFlagKenya | typeof IconFlagKiribati | typeof IconFlagKuwait | typeof IconFlagKyrgyzstan | typeof IconFlagLaos | typeof IconFlagLatvia | typeof IconFlagLebanon | typeof IconFlagLesotho | typeof IconFlagLiberia | typeof IconFlagLibya | typeof IconFlagLiechtenstein | typeof IconFlagLithuania | typeof IconFlagLuxembourg | typeof IconFlagMacau | typeof IconFlagMadagascar | typeof IconFlagMalasia | typeof IconFlagMalawi | typeof IconFlagMaldives | typeof IconFlagMali | typeof IconFlagMalta | typeof IconFlagMarshallIslands | typeof IconFlagMartinique | typeof IconFlagMauritania | typeof IconFlagMauritius | typeof IconFlagMexico | typeof IconFlagMoldova | typeof IconFlagMonaco | typeof IconFlagMongolia | typeof IconFlagMontenegro | typeof IconFlagMontserrat | typeof IconFlagMorroco | typeof IconFlagMozambique | typeof IconFlagMyanmar | typeof IconFlagNamibia | typeof IconFlagNauru | typeof IconFlagNepal | typeof IconFlagNetherlands | typeof IconFlagNewZealand | typeof IconFlagNicaragua | typeof IconFlagNiger | typeof IconFlagNigeria | typeof IconFlagNiue | typeof IconFlagNorfolkIsland | typeof IconFlagNorthernMarianaIslands | typeof IconFlagNorthKorea | typeof IconFlagNorthMacedonia | typeof IconFlagNorway | typeof IconFlagOman | typeof IconFlagPakistan | typeof IconFlagPalau | typeof IconFlagPalestine | typeof IconFlagPanama | typeof IconFlagPapuaNewGuinea | typeof IconFlagParaguay | typeof IconFlagPeru | typeof IconFlagPhilippines | typeof IconFlagPitcairnIslands | typeof IconFlagPoland | typeof IconFlagPortugal | typeof IconFlagPuertoRico | typeof IconFlagQatar | typeof IconFlagRepublicOfTheCongo | typeof IconFlagRomania | typeof IconFlagRussia | typeof IconFlagRwanda | typeof IconFlagSaintBarthelemy | typeof IconFlagSamoa | typeof IconFlagSanMarino | typeof IconFlagSaoTomeAndPrincipe | typeof IconFlagSaudiArabia | typeof IconFlagSenegal | typeof IconFlagSerbia | typeof IconFlagSeychelles | typeof IconFlagSierraLeone | typeof IconFlagSingapore | typeof IconFlagSintMaarten | typeof IconFlagSlovakia | typeof IconFlagSlovenia | typeof IconFlagSolomonIslands | typeof IconFlagSomalia | typeof IconFlagSouthAfrica | typeof IconFlagSouthKorea | typeof IconFlagSouthSudan | typeof IconFlagSpain | typeof IconFlagSriLanka | typeof IconFlagStKittsNevis | typeof IconFlagStLucia | typeof IconFlagSudan | typeof IconFlagSuriname | typeof IconFlagSweden | typeof IconFlagSwitzerland | typeof IconFlagSyria | typeof IconFlagTaiwan | typeof IconFlagTajikistan | typeof IconFlagTanzania | typeof IconFlagThailand | typeof IconFlagTimorLeste | typeof IconFlagTogo | typeof IconFlagTokelau | typeof IconFlagTonga | typeof IconFlagTrinidadAndTobago | typeof IconFlagTunisia | typeof IconFlagTurkey | typeof IconFlagTurkmenistan | typeof IconFlagTurksAndCaicos | typeof IconFlagTuvalu | typeof IconFlagUganda | typeof IconFlagUkraine | typeof IconFlagUnitedArabEmirates | typeof IconFlagUnitedKingdom | typeof IconFlagUnitedKingdomOfGreatBritainAndNorthernIreland | typeof IconFlagUnitedStates | typeof IconFlagUruguay | typeof IconFlagUzbekistan | typeof IconFlagVanuatu | typeof IconFlagVenezuela | typeof IconFlagVietnam | typeof IconFlagVirginIslands | typeof IconFlagVirginIslandsBritish | typeof IconFlagWestSahara | typeof IconFlagYemen | typeof IconFlagZambia | typeof IconFlagZimbabwe | typeof IconFlashAuto | typeof IconFlashAutoFill | typeof IconFlight | typeof IconFlowchart | typeof IconFlowchartFill | typeof IconFolder | typeof IconFolderFill | typeof IconFolderOpen | typeof IconFolderOpenFill | typeof IconFolderShared | typeof IconFolderSharedFill | typeof IconFontDownload | typeof IconFontDownloadFill | typeof IconForest | typeof IconForestFill | typeof IconForkRight | typeof IconFormatAlignCenter | typeof IconFormatAlignJustify | typeof IconFormatAlignLeft | typeof IconFormatAlignRight | typeof IconFormatColorFill | typeof IconFormatLetterSpacingWide | typeof IconFormatLetterSpacingWider | typeof IconFormatLineSpacing | typeof IconFormatListBulleted | typeof IconFormatListNumbered | typeof IconFormatShapes | typeof IconFormatShapesFill | typeof IconFormatSize | typeof IconForSaleSign | typeof IconForum | typeof IconForumFill | typeof IconForward | typeof IconForwardToInbox | typeof IconForwardToInboxFill | typeof IconForYou | typeof IconForYouFill | typeof IconFullscreen | typeof IconFullscreenExit | typeof IconFullscreenFill | typeof IconFullStackedBarChart | typeof IconGalleryThumbnail | typeof IconGalleryThumbnailFill | typeof IconGarage | typeof IconGarageFill | typeof IconGlobe | typeof IconGoogle | typeof IconGooglepay | typeof IconGooglePlay | typeof IconGridView | typeof IconGridViewFill | typeof IconGroup | typeof IconGroupedBarChart | typeof IconGroupFill | typeof IconGTranslate | typeof IconHail | typeof IconHandDraw | typeof IconHandDrawFill | typeof IconHandshake | typeof IconHandshakeFill | typeof IconHandyman | typeof IconHandymanFill | typeof IconHeadMountedDevice | typeof IconHeadMountedDeviceFill | typeof IconHeadsetMic | typeof IconHeadsetMicFill | typeof IconHearing | typeof IconHeat | typeof IconHeatPump | typeof IconHeatPumpFill | typeof IconHelp | typeof IconHelpFill | typeof IconHexagon | typeof IconHexagonFill | typeof IconHistory | typeof IconHome | typeof IconHomeAdd | typeof IconHomeAddFill | typeof IconHomeCheck | typeof IconHomeCheckFill | typeof IconHomeFill | typeof IconHomeLock | typeof IconHomeLockFill | typeof IconHomeMonitize | typeof IconHomeMonitizeFill | typeof IconHomeMove | typeof IconHomeMoveFill | typeof IconHomeRemove | typeof IconHomeRemoveFill | typeof IconHomeStorage | typeof IconHomeStorageFill | typeof IconHomeTimer | typeof IconHomeTimerFill | typeof IconHomeWork | typeof IconHomeWorkFill | typeof IconHorizontalDistribute | typeof IconHub | typeof IconHubFill | typeof IconHvac | typeof IconHvacFill | typeof IconIcecream | typeof IconIcecreamFill | typeof IconIdCard | typeof IconIdCardFill | typeof IconImage | typeof IconImageFill | typeof IconInbox | typeof IconInboxFill | typeof IconIncompleteCircle | typeof IconInfo | typeof IconInfoFill | typeof IconInkEraser | typeof IconInkEraserFill | typeof IconInProgress | typeof IconInput | typeof IconInstagramBlack | typeof IconInstagramWhite | typeof IconInventory | typeof IconInventory2 | typeof IconInventory2Fill | typeof IconInventoryFill | typeof IconIosShare | typeof IconKebabDining | typeof IconKebabDiningFill | typeof IconKey | typeof IconKeyboard | typeof IconKeyboardArrowDown | typeof IconKeyboardArrowUp | typeof IconKeyboardDoubleArrowLeft | typeof IconKeyboardDoubleArrowRight | typeof IconKeyboardFill | typeof IconKeyFill | typeof IconKeyOff | typeof IconKeyOffFill | typeof IconKeyVertical | typeof IconKeyVerticalFill | typeof IconLabel | typeof IconLabelFill | typeof IconLabelImportant | typeof IconLabelImportantFill | typeof IconLan | typeof IconLandscape | typeof IconLandscapeFill | typeof IconLanFill | typeof IconLanguage | typeof IconLaundry | typeof IconLaundryFill | typeof IconLayers | typeof IconLayersFill | typeof IconLeaderboard | typeof IconLeaderboardFill | typeof IconLeftPanelClose | typeof IconLeftPanelCloseFill | typeof IconLeftPanelOpen | typeof IconLeftPanelOpenFill | typeof IconLicense | typeof IconLicenseFill | typeof IconLight | typeof IconLightbulb | typeof IconLightbulbFill | typeof IconLightFill | typeof IconLightMode | typeof IconLightModeFill | typeof IconLink | typeof IconLinkedin | typeof IconLinkedinWhite | typeof IconLinkFill | typeof IconLinkOff | typeof IconList | typeof IconListChange | typeof IconListFill | typeof IconLocalCafe | typeof IconLocalCafeFill | typeof IconLocalParking | typeof IconLocalShipping | typeof IconLocalShippingFill | typeof IconLocalTaxi | typeof IconLocalTaxiFill | typeof IconLocationDisabled | typeof IconLocationOff | typeof IconLocationOffFill | typeof IconLocationOn | typeof IconLocationOnFill | typeof IconLocationSearching | typeof IconLock | typeof IconLockFill | typeof IconLockOpen | typeof IconLockOpenFill | typeof IconLogin | typeof IconLogout | typeof IconLowVisibility | typeof IconMail | typeof IconMailFill | typeof IconMailLock | typeof IconMailLockFill | typeof IconMan | typeof IconManageAccounts | typeof IconManageAccountsFill | typeof IconManFill | typeof IconMap | typeof IconMapFill | typeof IconMarkAsUnread | typeof IconMarkAsUnreadFill | typeof IconMarkEmailRead | typeof IconMarkEmailReadFill | typeof IconMarkEmailUnread | typeof IconMarkEmailUnreadFill | typeof IconMastercard | typeof IconMenu | typeof IconMenuBook | typeof IconMenuBookFill | typeof IconMenuFill | typeof IconMerge | typeof IconMic | typeof IconMicFill | typeof IconMicOff | typeof IconMicOffFill | typeof IconModeCool | typeof IconModeCoolOff | typeof IconModeFan | typeof IconModeFanFill | typeof IconModeFanOff | typeof IconModeFanOffFill | typeof IconModeHeat | typeof IconModeHeatFill | typeof IconMoneyOff | typeof IconMonitor | typeof IconMonitorFill | typeof IconMood | typeof IconMoodBad | typeof IconMoodBadFill | typeof IconMoodFill | typeof IconMoreHoriz | typeof IconMoreVert | typeof IconMoveLocation | typeof IconMoveLocationFill | typeof IconMoveToInbox | typeof IconMoveToInboxFill | typeof IconMultilineChart | typeof IconMusicNote | typeof IconMyLocation | typeof IconMyLocationFill | typeof IconNavigation | typeof IconNavigationFill | typeof IconNearMe | typeof IconNearMeFill | typeof IconNorth | typeof IconNorthWest | typeof IconNoSound | typeof IconNoSoundFill | typeof IconNoteAdd | typeof IconNoteAddFill | typeof IconNotifications | typeof IconNotificationsFill | typeof IconNotificationsOff | typeof IconNotificationsOffFill | typeof IconNutrition | typeof IconNutritionFill | typeof IconOktaBlack | typeof IconOktaWhite | typeof IconOmniChatbox | typeof IconOmniChatboxFill | typeof IconOpenInFull | typeof IconOpenInNew | typeof IconOpportunities | typeof IconOrders | typeof IconOrdersFill | typeof IconOtherHouses | typeof IconOtherHousesFill | typeof IconOutbox | typeof IconOutboxFill | typeof IconOutgoingMail | typeof IconOutgoingMailFill | typeof IconOutlook | typeof IconOvenGen | typeof IconOvenGenFill | typeof IconPackage | typeof IconPackage2 | typeof IconPackage2Fill | typeof IconPackageFill | typeof IconPaid | typeof IconPaidFill | typeof IconPalette | typeof IconPaletteFill | typeof IconPanZoom | typeof IconPartnerExchange | typeof IconPartnerExchangeFill | typeof IconPause | typeof IconPauseCircle | typeof IconPauseCircleFill | typeof IconPauseFill | typeof IconPayments | typeof IconPaymentsFill | typeof IconPaypal | typeof IconPendingActions | typeof IconPentagon | typeof IconPentagonFill | typeof IconPercent | typeof IconPerson | typeof IconPersonAdd | typeof IconPersonAddDisabled | typeof IconPersonAddDisabledFill | typeof IconPersonAddFill | typeof IconPersonBook | typeof IconPersonBookFill | typeof IconPersonCancel | typeof IconPersonCancelFill | typeof IconPersonCheck | typeof IconPersonCheckFill | typeof IconPersonFill | typeof IconPersonRemove | typeof IconPersonRemoveFill | typeof IconPersonSearch | typeof IconPersonSearchFill | typeof IconPets | typeof IconPhotoCamera | typeof IconPhotoCameraFill | typeof IconPieChart | typeof IconPieChartFill | typeof IconPin | typeof IconPinFill | typeof IconPinterest | typeof IconPinterestBlack | typeof IconPlayArrow | typeof IconPlayArrowFill | typeof IconPlayCircle | typeof IconPlayCircleFill | typeof IconPlaylistAdd | typeof IconPlaylistAddCheck | typeof IconPlaylistAddFill | typeof IconPlaylistRemove | typeof IconPlayPause | typeof IconPolicy | typeof IconPolicyFill | typeof IconPreview | typeof IconPreviewFill | typeof IconPrint | typeof IconPrintFill | typeof IconPublic | typeof IconQrCode | typeof IconQrCodeScanner | typeof IconQuestionMark | typeof IconRampLeft | typeof IconRampRight | typeof IconRealEstateAgent | typeof IconRealEstateAgentFill | typeof IconReceipt | typeof IconReceiptFill | typeof IconReceiptLong | typeof IconReceiptLongFill | typeof IconRecordVoiceOver | typeof IconRecordVoiceOverFill | typeof IconRecycling | typeof IconRefresh | typeof IconRemove | typeof IconRemoveShoppingCart | typeof IconRentSign | typeof IconReplay | typeof IconReply | typeof IconReplyAll | typeof IconReplyFill | typeof IconReport | typeof IconReportFill | typeof IconResize | typeof IconResizeHandle | typeof IconRestaurant | typeof IconRightPanelClose | typeof IconRightPanelCloseFill | typeof IconRightPanelOpen | typeof IconRightPanelOpenFill | typeof IconRoofing | typeof IconRoofingFill | typeof IconRoomPreferences | typeof IconRoomPreferencesFill | typeof IconRoundaboutLeft | typeof IconRoundaboutRight | typeof IconRoute | typeof IconRouteFill | typeof IconSave | typeof IconSaveFill | typeof IconSaveSearch | typeof IconSaveSearchFill | typeof IconScatterPlot | typeof IconScatterPlotFill | typeof IconSchedule | typeof IconScheduleFill | typeof IconScheduleSend | typeof IconScheduleSendFill | typeof IconSchema | typeof IconSchemaFill | typeof IconSchool | typeof IconSchoolFill | typeof IconScience | typeof IconScienceFill | typeof IconScore | typeof IconScoreFill | typeof IconSearch | typeof IconSegment | typeof IconSell | typeof IconSeller | typeof IconSellerFill | typeof IconSellFill | typeof IconSend | typeof IconSendFill | typeof IconSentimentDissatisfied | typeof IconSentimentDissatisfiedFill | typeof IconSentimentExtremelyDissatisfied | typeof IconSentimentExtremelyDissatisfiedFill | typeof IconSentimentNeutral | typeof IconSentimentNeutralFill | typeof IconSentimentSatisfied | typeof IconSentimentSatisfiedFill | typeof IconSentimentVeryDissatisfied | typeof IconSentimentVeryDissatisfiedFill | typeof IconSentimentVerySatisfied | typeof IconSentimentVerySatisfiedFill | typeof IconSettings | typeof IconSettingsAccessibility | typeof IconSettingsFill | typeof IconShare | typeof IconShareFill | typeof IconShippingContainer | typeof IconShippingContainerFill | typeof IconShoppingBag | typeof IconShoppingBagFill | typeof IconShoppingCart | typeof IconShoppingCartCheckout | typeof IconShoppingCartFill | typeof IconShoppingCartOff | typeof IconShoppingCartOffFill | typeof IconSick | typeof IconSickFill | typeof IconSignalCellularAlt | typeof IconSignLanguage | typeof IconSignLanguageFill | typeof IconSkipNext | typeof IconSkipNextFill | typeof IconSkipPrevious | typeof IconSkipPreviousFill | typeof IconSlabSerif | typeof IconSlabSerifFill | typeof IconSmartphone | typeof IconSmartphoneFill | typeof IconSms | typeof IconSmsFill | typeof IconSort | typeof IconSortByAlpha | typeof IconSortByReverseAlpha | typeof IconSortFill | typeof IconSouth | typeof IconSouthEast | typeof IconSouthFill | typeof IconSouthWest | typeof IconSquare | typeof IconSquareFill | typeof IconSquareFoot | typeof IconStackedBarChart | typeof IconStackedEmail | typeof IconStackedEmailFill | typeof IconStacks | typeof IconStacksFill | typeof IconStar | typeof IconStarFill | typeof IconStop | typeof IconStopCircle | typeof IconStopCircleFill | typeof IconStopFill | typeof IconStorefront | typeof IconStorefrontFill | typeof IconStraight | typeof IconStraighten | typeof IconStraightenFill | typeof IconStraightFill | typeof IconStressManagement | typeof IconStressManagementFill | typeof IconSubject | typeof IconSubway | typeof IconSubwayFill | typeof IconSwapVert | typeof IconSwapVerticalCircle | typeof IconSwapVerticalCircleFill | typeof IconSymbolAfghanistan | typeof IconSymbolAlandIsland | typeof IconSymbolAlbania | typeof IconSymbolAlgeria | typeof IconSymbolAmericanSamoa | typeof IconSymbolAndorra | typeof IconSymbolAngola | typeof IconSymbolAnguilla | typeof IconSymbolAntiguaAndBarbuda | typeof IconSymbolArgentina | typeof IconSymbolArmenia | typeof IconSymbolAruba | typeof IconSymbolAustralia | typeof IconSymbolAustria | typeof IconSymbolAzerbaijan | typeof IconSymbolBahamas | typeof IconSymbolBahrain | typeof IconSymbolBangladesh | typeof IconSymbolBarbados | typeof IconSymbolBelarus | typeof IconSymbolBelgium | typeof IconSymbolBelize | typeof IconSymbolBenin | typeof IconSymbolBermuda | typeof IconSymbolBhutan | typeof IconSymbolBolivia | typeof IconSymbolBonaire | typeof IconSymbolBosniaAndHerzegovina | typeof IconSymbolBotswana | typeof IconSymbolBrazil | typeof IconSymbolBrunei | typeof IconSymbolBulgaria | typeof IconSymbolBurkinaFaso | typeof IconSymbolBurundi | typeof IconSymbolCambodia | typeof IconSymbolCameroon | typeof IconSymbolCanada | typeof IconSymbolCaymanIslands | typeof IconSymbolCentralAfricanRepublic | typeof IconSymbolChad | typeof IconSymbolChile | typeof IconSymbolChina | typeof IconSymbolChristmasIsland | typeof IconSymbolCocosIslands | typeof IconSymbolColombia | typeof IconSymbolComoros | typeof IconSymbolCookIsland | typeof IconSymbolCostaRica | typeof IconSymbolCroatia | typeof IconSymbolCuba | typeof IconSymbolCuracao | typeof IconSymbolCyprus | typeof IconSymbolCzechRepublic | typeof IconSymbolDemocraticRepublicOfTheCongo | typeof IconSymbolDenmark | typeof IconSymbolDjibouti | typeof IconSymbolDominica | typeof IconSymbolDominicanRepublic | typeof IconSymbolEcuador | typeof IconSymbolEgypt | typeof IconSymbolElSalvador | typeof IconSymbolEquatorialGuinea | typeof IconSymbolEritrea | typeof IconSymbolEstonia | typeof IconSymbolEswatini | typeof IconSymbolEthiopia | typeof IconSymbolFalklandIslands | typeof IconSymbolFaroeIslands | typeof IconSymbolFederatedStatesOfMicronesia | typeof IconSymbolFiji | typeof IconSymbolFinland | typeof IconSymbolFrance | typeof IconSymbolFrenchGuiana | typeof IconSymbolFrenchPolynesia | typeof IconSymbolGabon | typeof IconSymbolGambia | typeof IconSymbolGeorgia | typeof IconSymbolGermany | typeof IconSymbolGhana | typeof IconSymbolGibraltar | typeof IconSymbolGreece | typeof IconSymbolGreeland | typeof IconSymbolGrenada | typeof IconSymbolGrenadines | typeof IconSymbolGuam | typeof IconSymbolGuatemala | typeof IconSymbolGuernsey | typeof IconSymbolGuinea | typeof IconSymbolGuineaBissau | typeof IconSymbolGuyana | typeof IconSymbolHaiti | typeof IconSymbolHonduras | typeof IconSymbolHongKong | typeof IconSymbolHungary | typeof IconSymbolIceland | typeof IconSymbolIndia | typeof IconSymbolIndianOceanTerritory | typeof IconSymbolIndonesia | typeof IconSymbolIran | typeof IconSymbolIraq | typeof IconSymbolIreland | typeof IconSymbolIsleOfMan | typeof IconSymbolIsrael | typeof IconSymbolItaly | typeof IconSymbolJamaica | typeof IconSymbolJapan | typeof IconSymbolJersey | typeof IconSymbolJordan | typeof IconSymbolKazakhstan | typeof IconSymbolKenya | typeof IconSymbolKiribati | typeof IconSymbolKuwait | typeof IconSymbolKyrgyzstan | typeof IconSymbolLaos | typeof IconSymbolLatvia | typeof IconSymbolLebanon | typeof IconSymbolLesotho | typeof IconSymbolLiberia | typeof IconSymbolLibya | typeof IconSymbolLiechtenstein | typeof IconSymbolLithuania | typeof IconSymbolLuxembourg | typeof IconSymbolMacau | typeof IconSymbolMadagascar | typeof IconSymbolMalasia | typeof IconSymbolMalawi | typeof IconSymbolMaldives | typeof IconSymbolMali | typeof IconSymbolMalta | typeof IconSymbolMarshallIslands | typeof IconSymbolMartinique | typeof IconSymbolMauritania | typeof IconSymbolMauritius | typeof IconSymbolMexico | typeof IconSymbolMoldova | typeof IconSymbolMonaco | typeof IconSymbolMongolia | typeof IconSymbolMontenegro | typeof IconSymbolMontserrat | typeof IconSymbolMorroco | typeof IconSymbolMozambique | typeof IconSymbolMyanmar | typeof IconSymbolNamibia | typeof IconSymbolNauru | typeof IconSymbolNepal | typeof IconSymbolNetherlands | typeof IconSymbolNewZealand | typeof IconSymbolNicaragua | typeof IconSymbolNiger | typeof IconSymbolNigeria | typeof IconSymbolNiue | typeof IconSymbolNorfolkIsland | typeof IconSymbolNorthernMarianaIslands | typeof IconSymbolNorthKorea | typeof IconSymbolNorthMacedonia | typeof IconSymbolNorway | typeof IconSymbolOman | typeof IconSymbolPakistan | typeof IconSymbolPalau | typeof IconSymbolPalestine | typeof IconSymbolPanama | typeof IconSymbolPapuaNewGuinea | typeof IconSymbolParaguay | typeof IconSymbolPeru | typeof IconSymbolPhilippines | typeof IconSymbolPitcairnIslands | typeof IconSymbolPoland | typeof IconSymbolPortugal | typeof IconSymbolPuertoRico | typeof IconSymbolQatar | typeof IconSymbolRepublicOfTheCongo | typeof IconSymbolRomania | typeof IconSymbolRussia | typeof IconSymbolRwanda | typeof IconSymbolSaintBarthelemy | typeof IconSymbolSamoa | typeof IconSymbolSanMarino | typeof IconSymbolSaoTomeAndPrincipe | typeof IconSymbolSaudiArabia | typeof IconSymbolSenegal | typeof IconSymbolSerbia | typeof IconSymbolSeychelles | typeof IconSymbolSierraLeone | typeof IconSymbolSingapore | typeof IconSymbolSintMaarten | typeof IconSymbolSlovakia | typeof IconSymbolSlovenia | typeof IconSymbolSolomonIslands | typeof IconSymbolSomalia | typeof IconSymbolSouthAfrica | typeof IconSymbolSouthKorea | typeof IconSymbolSouthSudan | typeof IconSymbolSpain | typeof IconSymbolSriLanka | typeof IconSymbolStKittsNevis | typeof IconSymbolStLucia | typeof IconSymbolSudan | typeof IconSymbolSuriname | typeof IconSymbolSweden | typeof IconSymbolSwitzerland | typeof IconSymbolSyria | typeof IconSymbolTaiwan | typeof IconSymbolTajikistan | typeof IconSymbolTanzania | typeof IconSymbolThailand | typeof IconSymbolTimorLeste | typeof IconSymbolTogo | typeof IconSymbolTokelau | typeof IconSymbolTonga | typeof IconSymbolTrinidadAndTobago | typeof IconSymbolTunisia | typeof IconSymbolTurkey | typeof IconSymbolTurkmenistan | typeof IconSymbolTurksAndCaicos | typeof IconSymbolTuvalu | typeof IconSymbolUganda | typeof IconSymbolUkraine | typeof IconSymbolUnitedArabEmirates | typeof IconSymbolUnitedKingdom | typeof IconSymbolUnitedKingdomOfGreatBritainAndNorthernIreland | typeof IconSymbolUnitedStates | typeof IconSymbolUruguay | typeof IconSymbolUzbekistan | typeof IconSymbolVanuatu | typeof IconSymbolVenezuela | typeof IconSymbolVietnam | typeof IconSymbolVirginIslands | typeof IconSymbolVirginIslandsBritish | typeof IconSymbolWestSahara | typeof IconSymbolYemen | typeof IconSymbolZambia | typeof IconSymbolZimbabwe | typeof IconSync | typeof IconTableChart | typeof IconTableChartFill | typeof IconTableChartView | typeof IconTableChartViewFill | typeof IconTablet | typeof IconTabletFill | typeof IconTag | typeof IconTaxiAlert | typeof IconTaxiAlertFill | typeof IconThermometer | typeof IconThermometerAdd | typeof IconThermometerFill | typeof IconThermometerGain | typeof IconThermometerGainFill | typeof IconThermometerLoss | typeof IconThermometerLossFill | typeof IconThermostat | typeof IconThermostatAuto | typeof IconThermostatFill | typeof IconThumbDown | typeof IconThumbDownFill | typeof IconThumbUp | typeof IconThumbUpFill | typeof IconTimeline | typeof IconTimer | typeof IconTimerFill | typeof IconTitle | typeof IconToken | typeof IconTokenFill | typeof IconTrain | typeof IconTrainFill | typeof IconTranslate | typeof IconTravel | typeof IconTravelExplore | typeof IconTravelFill | typeof IconTrendingDown | typeof IconTrendingFlat | typeof IconTrendingUp | typeof IconTriangle | typeof IconTriangleFill | typeof IconTrip | typeof IconTripFill | typeof IconTrophy | typeof IconTrophyFill | typeof IconTune | typeof IconTurnLeft | typeof IconTurnRight | typeof IconTurnSharpLeft | typeof IconTurnSlightLeft | typeof IconTurnSlightRight | typeof IconTv | typeof IconTvFill | typeof IconUnarchive | typeof IconUnarchiveFill | typeof IconUndo | typeof IconUnsubscribe | typeof IconUnsubscribeFill | typeof IconUpcoming | typeof IconUpcomingFill | typeof IconUTurnLeft | typeof IconUTurnRight | typeof IconVerifiedUser | typeof IconVerifiedUserFill | typeof IconVerticalAlignBottom | typeof IconVerticalAlignCenter | typeof IconVerticalAlignTop | typeof IconVerticalDistribute | typeof IconVideocam | typeof IconVideocamFill | typeof IconVideoLibrary | typeof IconVideoLibraryFill | typeof IconViewCarousel | typeof IconViewCarouselFill | typeof IconViewColumn | typeof IconViewColumn2 | typeof IconViewColumn2Fill | typeof IconViewColumnFill | typeof IconViewDay | typeof IconViewDayFill | typeof IconViewInAr | typeof IconViewInArFill | typeof IconViewList | typeof IconViewListFill | typeof IconViewModule | typeof IconViewModuleFill | typeof IconVilla | typeof IconVillaFill | typeof IconVisa | typeof IconVisibility | typeof IconVisibilityFill | typeof IconVisibilityOff | typeof IconVisibilityOffFill | typeof IconVoicemail | typeof IconVolumeDown | typeof IconVolumeDownFill | typeof IconVolumeMute | typeof IconVolumeMuteFill | typeof IconVolumeOff | typeof IconVolumeOffFill | typeof IconVolumeUp | typeof IconVolumeUpFill | typeof IconVolunteerActivism | typeof IconVolunteerActivismFill | typeof IconWallet | typeof IconWarehouse | typeof IconWarehouseFill | typeof IconWarning | typeof IconWarningFill | typeof IconWc | typeof IconWest | typeof IconWifi | typeof IconWifiCalling | typeof IconWifiCallingFill | typeof IconWifiFill | typeof IconWifiHome | typeof IconWifiHomeFill | typeof IconWineBar | typeof IconWineBarFill | typeof IconWoman | typeof IconWork | typeof IconWorkFill | typeof IconX | typeof IconXWhite | typeof IconYoutube | typeof IconYoutubeBlack | typeof IconYoutubeWhite | typeof IconZoomIn | typeof IconZoomInMap | typeof IconZoomOut | typeof IconZoomOutMap;
|
|
@@ -9443,27 +9503,25 @@ interface CalendarProps {
|
|
|
9443
9503
|
* Allows customers to select the date, month, and year.
|
|
9444
9504
|
*
|
|
9445
9505
|
* @example
|
|
9446
|
-
* <ui-calendar (
|
|
9506
|
+
* <ui-calendar (valueChange)="handleChange($event)" />
|
|
9447
9507
|
*
|
|
9448
9508
|
* @name Calendar
|
|
9449
9509
|
* @phase Dev
|
|
9450
9510
|
*/
|
|
9451
9511
|
declare class UICalendar implements AfterViewInit, OnInit, AsSignal<CalendarProps> {
|
|
9452
|
-
onChange: EventEmitter<Date>;
|
|
9453
9512
|
IconKeyboardDoubleArrowLeft: typeof IconKeyboardDoubleArrowLeft;
|
|
9454
9513
|
IconKeyboardDoubleArrowRight: typeof IconKeyboardDoubleArrowRight;
|
|
9455
9514
|
IconChevronLeft: typeof IconChevronLeft;
|
|
9456
9515
|
IconChevronRight: typeof IconChevronRight;
|
|
9457
|
-
readonly value: i0.
|
|
9516
|
+
readonly value: i0.ModelSignal<Date | undefined>;
|
|
9458
9517
|
readonly focusTrap: i0.InputSignal<boolean | undefined>;
|
|
9459
9518
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9460
|
-
activeDate: Date
|
|
9519
|
+
readonly activeDate: i0.WritableSignal<Date>;
|
|
9461
9520
|
format: typeof format;
|
|
9462
9521
|
isSameDay: typeof isSameDay;
|
|
9463
9522
|
addYears: typeof addYears;
|
|
9464
9523
|
addMonths: typeof addMonths;
|
|
9465
9524
|
private readonly firstButton;
|
|
9466
|
-
private readonly lastButton;
|
|
9467
9525
|
private readonly grid;
|
|
9468
9526
|
constructor();
|
|
9469
9527
|
get rows(): Date[][];
|
|
@@ -9471,12 +9529,11 @@ declare class UICalendar implements AfterViewInit, OnInit, AsSignal<CalendarProp
|
|
|
9471
9529
|
ngOnInit(): void;
|
|
9472
9530
|
setFocus(): void;
|
|
9473
9531
|
ngAfterViewInit(): void;
|
|
9474
|
-
setActiveDate(date: Date): void;
|
|
9475
9532
|
generateOptionId(date: Date): string;
|
|
9476
9533
|
onFirstButtonKeydown(event: KeyboardEvent): void;
|
|
9477
9534
|
onGridKeydown(event: KeyboardEvent): void;
|
|
9478
9535
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICalendar, never>;
|
|
9479
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UICalendar, "ui-calendar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "focusTrap": { "alias": "focusTrap"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "
|
|
9536
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UICalendar, "ui-calendar", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "focusTrap": { "alias": "focusTrap"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
9480
9537
|
}
|
|
9481
9538
|
|
|
9482
9539
|
interface CardProps {
|
|
@@ -9563,13 +9620,11 @@ interface CheckboxProps {
|
|
|
9563
9620
|
* @phase Dev
|
|
9564
9621
|
*/
|
|
9565
9622
|
declare class UICheckbox implements AsSignal<CheckboxProps> {
|
|
9566
|
-
/** Emits the new checked state (true or false) */
|
|
9567
|
-
checkedChange: i0.OutputEmitterRef<boolean>;
|
|
9568
9623
|
readonly name: i0.InputSignal<string>;
|
|
9569
|
-
readonly value: i0.
|
|
9624
|
+
readonly value: i0.ModelSignal<string>;
|
|
9570
9625
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
9571
9626
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9572
|
-
readonly checked: i0.
|
|
9627
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
9573
9628
|
readonly indeterminate: i0.InputSignal<boolean | undefined>;
|
|
9574
9629
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9575
9630
|
readonly invalid: i0.InputSignal<boolean | undefined>;
|
|
@@ -9581,7 +9636,7 @@ declare class UICheckbox implements AsSignal<CheckboxProps> {
|
|
|
9581
9636
|
constructor();
|
|
9582
9637
|
onInputChange(): void;
|
|
9583
9638
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICheckbox, never>;
|
|
9584
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UICheckbox, "ui-checkbox", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "
|
|
9639
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UICheckbox, "ui-checkbox", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "checked": "checkedChange"; }, never, never, true, never>;
|
|
9585
9640
|
}
|
|
9586
9641
|
|
|
9587
9642
|
interface CheckboxOptionProps extends CheckboxProps {
|
|
@@ -9637,7 +9692,7 @@ interface SelectAllProps {
|
|
|
9637
9692
|
description?: CheckboxOptionProps['description'];
|
|
9638
9693
|
label?: CheckboxOptionProps['label'];
|
|
9639
9694
|
}
|
|
9640
|
-
interface CheckboxGroupProps extends FieldControlProps
|
|
9695
|
+
interface CheckboxGroupProps extends FieldControlProps {
|
|
9641
9696
|
/**
|
|
9642
9697
|
* The options for the checkboxes.
|
|
9643
9698
|
*
|
|
@@ -9660,6 +9715,12 @@ interface CheckboxGroupProps extends FieldControlProps<string[]> {
|
|
|
9660
9715
|
selectAll?: boolean;
|
|
9661
9716
|
/** The props for the select all checkbox. */
|
|
9662
9717
|
selectAllProps?: SelectAllProps;
|
|
9718
|
+
/**
|
|
9719
|
+
* The value of the selected checkboxes.
|
|
9720
|
+
*
|
|
9721
|
+
* @required
|
|
9722
|
+
*/
|
|
9723
|
+
value?: string[];
|
|
9663
9724
|
}
|
|
9664
9725
|
/**
|
|
9665
9726
|
* A group of checkboxes that allows users to choose one or more items from a list or turn an feature on or off.
|
|
@@ -9670,10 +9731,9 @@ interface CheckboxGroupProps extends FieldControlProps<string[]> {
|
|
|
9670
9731
|
* @phase Stable
|
|
9671
9732
|
*/
|
|
9672
9733
|
declare class UICheckboxGroup implements AsSignal<CheckboxGroupProps> {
|
|
9673
|
-
valueChange: i0.OutputEmitterRef<string[]>;
|
|
9674
9734
|
readonly name: i0.InputSignal<string>;
|
|
9675
9735
|
readonly options: i0.InputSignal<CheckboxGroupOption[]>;
|
|
9676
|
-
readonly value: i0.
|
|
9736
|
+
readonly value: i0.ModelSignal<string[] | undefined>;
|
|
9677
9737
|
readonly selectAll: i0.InputSignal<boolean | undefined>;
|
|
9678
9738
|
readonly selectAllProps: i0.InputSignal<SelectAllProps | undefined>;
|
|
9679
9739
|
readonly id: i0.InputSignal<string | undefined>;
|
|
@@ -9690,13 +9750,13 @@ declare class UICheckboxGroup implements AsSignal<CheckboxGroupProps> {
|
|
|
9690
9750
|
availableOptions(): CheckboxGroupOption[];
|
|
9691
9751
|
allChecked(): boolean;
|
|
9692
9752
|
someChecked(): boolean;
|
|
9693
|
-
onSelectAllChange(checked: boolean): void;
|
|
9694
|
-
onOptionChange(optionValue: string, checked: boolean): void;
|
|
9753
|
+
onSelectAllChange(checked: boolean | undefined): void;
|
|
9754
|
+
onOptionChange(optionValue: string, checked: boolean | undefined): void;
|
|
9695
9755
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICheckboxGroup, never>;
|
|
9696
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UICheckboxGroup, "ui-checkbox-group", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "selectAllProps": { "alias": "selectAllProps"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "
|
|
9756
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UICheckboxGroup, "ui-checkbox-group", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "selectAll": { "alias": "selectAll"; "required": false; "isSignal": true; }; "selectAllProps": { "alias": "selectAllProps"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
9697
9757
|
}
|
|
9698
9758
|
|
|
9699
|
-
interface
|
|
9759
|
+
interface ControlFieldProps {
|
|
9700
9760
|
style?: CommonProps['style'];
|
|
9701
9761
|
/** Displays an error message and marks the field as invalid. */
|
|
9702
9762
|
errorMessage?: string;
|
|
@@ -9716,6 +9776,8 @@ interface FieldProps {
|
|
|
9716
9776
|
labelTrailing?: string;
|
|
9717
9777
|
/** Marks the field as required. */
|
|
9718
9778
|
required?: boolean;
|
|
9779
|
+
}
|
|
9780
|
+
interface FieldProps extends ControlFieldProps {
|
|
9719
9781
|
/**
|
|
9720
9782
|
* The id attribute of the form control rendered in children (e.g., Input, Select, Textarea). Used to associate the
|
|
9721
9783
|
* label (htmlFor) with the control for accessibility. Must exactly match the control's id.
|
|
@@ -9762,7 +9824,8 @@ declare function labelledById(controlId: string): string;
|
|
|
9762
9824
|
declare function errorMessageId(controlId: string): string;
|
|
9763
9825
|
declare function describedById(controlId: string): string;
|
|
9764
9826
|
|
|
9765
|
-
|
|
9827
|
+
interface CheckboxGroupFieldProps extends ControlFieldProps, CheckboxGroupProps {
|
|
9828
|
+
}
|
|
9766
9829
|
/**
|
|
9767
9830
|
* A field wrapper for the UICheckboxGroup component.
|
|
9768
9831
|
*
|
|
@@ -9883,8 +9946,12 @@ interface ChipGroupProps {
|
|
|
9883
9946
|
* @default wrap
|
|
9884
9947
|
*/
|
|
9885
9948
|
overflow?: 'scroll' | 'wrap';
|
|
9886
|
-
/**
|
|
9887
|
-
|
|
9949
|
+
/**
|
|
9950
|
+
* Only Chip components should be used as items.
|
|
9951
|
+
*
|
|
9952
|
+
* @required
|
|
9953
|
+
*/
|
|
9954
|
+
items: ChipGroupItemProps[];
|
|
9888
9955
|
}
|
|
9889
9956
|
/**
|
|
9890
9957
|
* A component that manages the layout of a group of chips.
|
|
@@ -9894,12 +9961,12 @@ interface ChipGroupProps {
|
|
|
9894
9961
|
*/
|
|
9895
9962
|
declare class UIChipGroup implements AsSignal<ChipGroupProps> {
|
|
9896
9963
|
readonly overflow: i0.InputSignal<"scroll" | "wrap" | undefined>;
|
|
9897
|
-
readonly items: i0.InputSignal<ChipGroupItemProps[]
|
|
9964
|
+
readonly items: i0.InputSignal<ChipGroupItemProps[]>;
|
|
9898
9965
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIChipGroup, never>;
|
|
9899
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIChipGroup, "ui-chip-group", never, { "overflow": { "alias": "overflow"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required":
|
|
9966
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIChipGroup, "ui-chip-group", never, { "overflow": { "alias": "overflow"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9900
9967
|
}
|
|
9901
9968
|
|
|
9902
|
-
interface DatePickerProps extends FieldControlProps
|
|
9969
|
+
interface DatePickerProps extends FieldControlProps {
|
|
9903
9970
|
/**
|
|
9904
9971
|
* If the calendar should close when a date is selected.
|
|
9905
9972
|
*
|
|
@@ -9923,7 +9990,7 @@ interface DatePickerProps extends FieldControlProps<Date | string | undefined> {
|
|
|
9923
9990
|
/**
|
|
9924
9991
|
* The size of the element.
|
|
9925
9992
|
*
|
|
9926
|
-
* @default
|
|
9993
|
+
* @default medium
|
|
9927
9994
|
*/
|
|
9928
9995
|
size?: 'large' | 'medium' | 'small';
|
|
9929
9996
|
}
|
|
@@ -9934,15 +10001,14 @@ interface DatePickerProps extends FieldControlProps<Date | string | undefined> {
|
|
|
9934
10001
|
* @example
|
|
9935
10002
|
* <ui-date-picker
|
|
9936
10003
|
* [value]="selectedDate"
|
|
9937
|
-
* (
|
|
10004
|
+
* (valueChange)="handleDateChange($event)"
|
|
9938
10005
|
* ></ui-date-picker>
|
|
9939
10006
|
*
|
|
9940
10007
|
* @name DatePicker
|
|
9941
10008
|
* @phase Dev
|
|
9942
10009
|
*/
|
|
9943
10010
|
declare class UIDatePicker implements OnInit, OnChanges, AsSignal<DatePickerProps> {
|
|
9944
|
-
readonly
|
|
9945
|
-
readonly value: i0.InputSignal<string | Date | undefined>;
|
|
10011
|
+
readonly value: i0.ModelSignal<string | Date | undefined>;
|
|
9946
10012
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9947
10013
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
9948
10014
|
readonly closeCalendarOnChange: i0.InputSignal<boolean | undefined>;
|
|
@@ -9974,12 +10040,13 @@ declare class UIDatePicker implements OnInit, OnChanges, AsSignal<DatePickerProp
|
|
|
9974
10040
|
toggleCalendar(): void;
|
|
9975
10041
|
closeCalendar: () => void;
|
|
9976
10042
|
onInputChange(value: string | undefined): void;
|
|
9977
|
-
onCalendarChange(date: Date): void;
|
|
10043
|
+
onCalendarChange(date: Date | undefined): void;
|
|
9978
10044
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIDatePicker, never>;
|
|
9979
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIDatePicker, "ui-date-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "closeCalendarOnChange": { "alias": "closeCalendarOnChange"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; }, { "
|
|
10045
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIDatePicker, "ui-date-picker", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "closeCalendarOnChange": { "alias": "closeCalendarOnChange"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
9980
10046
|
}
|
|
9981
10047
|
|
|
9982
|
-
|
|
10048
|
+
interface DatePickerFieldProps extends ControlFieldProps, DatePickerProps {
|
|
10049
|
+
}
|
|
9983
10050
|
/**
|
|
9984
10051
|
* A field wrapper for the UIDatePicker component.
|
|
9985
10052
|
*
|
|
@@ -10085,6 +10152,10 @@ interface DialogProps {
|
|
|
10085
10152
|
* @phase Dev
|
|
10086
10153
|
*/
|
|
10087
10154
|
declare class UIDialog implements OnChanges, OnDestroy, AsSignal<DialogProps> {
|
|
10155
|
+
/**
|
|
10156
|
+
* Emits when the dialog should be closed, such as when the scrim is clicked or the escape key is pressed. The
|
|
10157
|
+
* parent component should handle this event and set `open` to false to close the dialog.
|
|
10158
|
+
*/
|
|
10088
10159
|
onClose: EventEmitter<void>;
|
|
10089
10160
|
readonly box: i0.Signal<ElementRef<any> | undefined>;
|
|
10090
10161
|
readonly open: i0.InputSignal<boolean | undefined>;
|
|
@@ -10161,14 +10232,13 @@ declare class UIDivider implements AsSignal<DividerProps> {
|
|
|
10161
10232
|
static ɵcmp: i0.ɵɵComponentDeclaration<UIDivider, "ui-divider", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "thickness": { "alias": "thickness"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "inset": { "alias": "inset"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10162
10233
|
}
|
|
10163
10234
|
|
|
10164
|
-
type FabSize = 'medium' | '
|
|
10235
|
+
type FabSize = 'medium' | 'x-large';
|
|
10165
10236
|
type FabVariant = 'neutral' | 'primary' | 'secondary';
|
|
10166
10237
|
type FabPlacement = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
10167
10238
|
type FabContainer = 'local' | 'page';
|
|
10168
10239
|
type FabIconType = BspkIcon;
|
|
10169
10240
|
interface FabProps {
|
|
10170
10241
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
10171
|
-
owner?: CommonProps['owner'];
|
|
10172
10242
|
style?: CommonProps['style'];
|
|
10173
10243
|
/** The label of the button. */
|
|
10174
10244
|
label?: string;
|
|
@@ -10181,7 +10251,7 @@ interface FabProps {
|
|
|
10181
10251
|
/**
|
|
10182
10252
|
* The size of the button.
|
|
10183
10253
|
*
|
|
10184
|
-
* @default
|
|
10254
|
+
* @default medium
|
|
10185
10255
|
*/
|
|
10186
10256
|
size?: FabSize;
|
|
10187
10257
|
/**
|
|
@@ -10228,6 +10298,7 @@ interface FabProps {
|
|
|
10228
10298
|
* @phase Dev
|
|
10229
10299
|
*/
|
|
10230
10300
|
declare class UIFab implements AsSignal<FabProps> {
|
|
10301
|
+
/** Event emitted when the button is clicked. */
|
|
10231
10302
|
onClick: EventEmitter<Event>;
|
|
10232
10303
|
/** Event emitted when the button receives focus. */
|
|
10233
10304
|
onFocus: EventEmitter<FocusEvent>;
|
|
@@ -10309,13 +10380,13 @@ declare class UIFlexDirective implements AsSignal<FlexProps> {
|
|
|
10309
10380
|
justifyContent: string;
|
|
10310
10381
|
alignItems: string;
|
|
10311
10382
|
flexWrap: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
10312
|
-
gap: "0" | "auto" | "4" | "
|
|
10383
|
+
gap: "0" | "auto" | "4" | "24" | "8" | "12" | "16" | "20" | "28" | "32" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "68" | "72" | null;
|
|
10313
10384
|
}>;
|
|
10314
10385
|
readonly direction: i0.InputSignal<"row" | "column" | "column-reverse" | "row-reverse" | undefined>;
|
|
10315
10386
|
readonly justify: i0.InputSignal<"start" | "end" | "center" | "flex-end" | "flex-start" | "around" | "between" | "evenly" | "space-around" | "space-between" | "space-evenly" | undefined>;
|
|
10316
10387
|
readonly align: i0.InputSignal<"start" | "end" | "center" | "baseline" | "flex-end" | "flex-start" | "stretch" | undefined>;
|
|
10317
10388
|
readonly wrap: i0.InputSignal<"wrap" | "nowrap" | "wrap-reverse" | undefined>;
|
|
10318
|
-
readonly gap: i0.InputSignal<"0" | "auto" | "4" | "
|
|
10389
|
+
readonly gap: i0.InputSignal<"0" | "auto" | "4" | "24" | "8" | "12" | "16" | "20" | "28" | "32" | "40" | "44" | "48" | "52" | "56" | "60" | "64" | "68" | "72" | undefined>;
|
|
10319
10390
|
private normalizeJustify;
|
|
10320
10391
|
private normalizeAlign;
|
|
10321
10392
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIFlexDirective, never>;
|
|
@@ -10446,7 +10517,11 @@ declare class UIFocusTrapDirective implements OnChanges, OnDestroy, AsSignal<Foc
|
|
|
10446
10517
|
interface IconProps {
|
|
10447
10518
|
/** The icon to display from the BSPK icon library. */
|
|
10448
10519
|
icon: BspkIcon;
|
|
10449
|
-
/**
|
|
10520
|
+
/**
|
|
10521
|
+
* Optional width for the icon.
|
|
10522
|
+
*
|
|
10523
|
+
* @default '24'
|
|
10524
|
+
*/
|
|
10450
10525
|
width?: string;
|
|
10451
10526
|
}
|
|
10452
10527
|
/**
|
|
@@ -10534,6 +10609,12 @@ interface InputProps extends FieldControlProps {
|
|
|
10534
10609
|
* @default true
|
|
10535
10610
|
*/
|
|
10536
10611
|
showClearButton?: boolean;
|
|
10612
|
+
/**
|
|
10613
|
+
* The value of the input field.
|
|
10614
|
+
*
|
|
10615
|
+
* @type string
|
|
10616
|
+
*/
|
|
10617
|
+
value?: string;
|
|
10537
10618
|
}
|
|
10538
10619
|
/**
|
|
10539
10620
|
* An input that allows users to enter text, numbers or symbols in a singular line. This is a utility element and is not
|
|
@@ -10551,7 +10632,6 @@ interface InputProps extends FieldControlProps {
|
|
|
10551
10632
|
* @phase UXReview
|
|
10552
10633
|
*/
|
|
10553
10634
|
declare class UIInput implements AsSignal<InputProps> {
|
|
10554
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10555
10635
|
IconCancel: typeof IconCancel;
|
|
10556
10636
|
readonly hasFocus: i0.WritableSignal<boolean>;
|
|
10557
10637
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement>>;
|
|
@@ -10581,15 +10661,10 @@ declare class UIInput implements AsSignal<InputProps> {
|
|
|
10581
10661
|
clearInput(): void;
|
|
10582
10662
|
handleInput(event: Event): void;
|
|
10583
10663
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInput, never>;
|
|
10584
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIInput, "ui-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "inputMode": { "alias": "inputMode"; "required": false; "isSignal": true; }; "showClearButton": { "alias": "showClearButton"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "leading": { "alias": "leading"; "required": false; "isSignal": true; }; "trailing": { "alias": "trailing"; "required": false; "isSignal": true; }; "autoComplete": { "alias": "autoComplete"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "owner": { "alias": "owner"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "
|
|
10664
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIInput, "ui-input", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "inputMode": { "alias": "inputMode"; "required": false; "isSignal": true; }; "showClearButton": { "alias": "showClearButton"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "leading": { "alias": "leading"; "required": false; "isSignal": true; }; "trailing": { "alias": "trailing"; "required": false; "isSignal": true; }; "autoComplete": { "alias": "autoComplete"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "owner": { "alias": "owner"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, ["[data-leading]", "[data-trailing]"], true, never>;
|
|
10585
10665
|
}
|
|
10586
10666
|
|
|
10587
|
-
interface InputFieldProps {
|
|
10588
|
-
style?: FieldProps['style'];
|
|
10589
|
-
errorMessage?: FieldProps['errorMessage'];
|
|
10590
|
-
helperText?: FieldProps['helperText'];
|
|
10591
|
-
labelTrailing?: FieldProps['labelTrailing'];
|
|
10592
|
-
required?: FieldProps['required'];
|
|
10667
|
+
interface InputFieldProps extends InputProps, ControlFieldProps {
|
|
10593
10668
|
}
|
|
10594
10669
|
/**
|
|
10595
10670
|
* A field wrapper for the Input component.
|
|
@@ -10638,10 +10713,20 @@ interface InputNumberProps extends FieldControlProps {
|
|
|
10638
10713
|
* @default 1
|
|
10639
10714
|
*/
|
|
10640
10715
|
step?: number;
|
|
10716
|
+
/**
|
|
10717
|
+
* The value of the number input.
|
|
10718
|
+
*
|
|
10719
|
+
* While the value is a string, it is recommended to only use numerical values. The component will attempt to parse
|
|
10720
|
+
* the string to a number and will ignore non-numerical input. The value is clamped to the min and max values if
|
|
10721
|
+
* they are provided.
|
|
10722
|
+
*
|
|
10723
|
+
* @type string
|
|
10724
|
+
*/
|
|
10725
|
+
value?: string;
|
|
10641
10726
|
}
|
|
10642
10727
|
/**
|
|
10643
10728
|
* A input element that allows users to either input a numerical value or singularly increase or decrease the values by
|
|
10644
|
-
* pressing the (+) or (-).
|
|
10729
|
+
* pressing the (+) or (-) buttons.
|
|
10645
10730
|
*
|
|
10646
10731
|
* The value of the input is a number. The value is clamped to the min and max values if they are provided.
|
|
10647
10732
|
*
|
|
@@ -10659,7 +10744,6 @@ interface InputNumberProps extends FieldControlProps {
|
|
|
10659
10744
|
* @phase UXReview
|
|
10660
10745
|
*/
|
|
10661
10746
|
declare class UIInputNumber implements AsSignal<InputNumberProps> {
|
|
10662
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10663
10747
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement>>;
|
|
10664
10748
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
10665
10749
|
readonly name: i0.InputSignal<string>;
|
|
@@ -10689,10 +10773,11 @@ declare class UIInputNumber implements AsSignal<InputNumberProps> {
|
|
|
10689
10773
|
handleBlur(event: Event): void;
|
|
10690
10774
|
handleInput(event: Event): void;
|
|
10691
10775
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInputNumber, never>;
|
|
10692
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIInputNumber, "ui-input-number", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "owner": { "alias": "owner"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "
|
|
10776
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIInputNumber, "ui-input-number", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "owner": { "alias": "owner"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "step": { "alias": "step"; "required": false; "isSignal": true; }; "min": { "alias": "min"; "required": false; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
10693
10777
|
}
|
|
10694
10778
|
|
|
10695
|
-
|
|
10779
|
+
interface InputNumberFieldProps extends InputNumberProps, ControlFieldProps {
|
|
10780
|
+
}
|
|
10696
10781
|
/**
|
|
10697
10782
|
* A field wrapper for the UIInputNumber component.
|
|
10698
10783
|
*
|
|
@@ -10825,7 +10910,7 @@ interface CountryCodeOption {
|
|
|
10825
10910
|
interface CountryCodeItem extends CountryCodeOption {
|
|
10826
10911
|
id: string;
|
|
10827
10912
|
}
|
|
10828
|
-
interface InputPhoneProps extends FieldControlProps
|
|
10913
|
+
interface InputPhoneProps extends FieldControlProps, ScrollLimitStyleProps {
|
|
10829
10914
|
/**
|
|
10830
10915
|
* The default country code to select when the component is rendered. If not provided, it will attempt to guess
|
|
10831
10916
|
* based on the user's locale. If the guessed country code is not supported, it will default to 'US'. Based on
|
|
@@ -10846,6 +10931,12 @@ interface InputPhoneProps extends FieldControlProps<string>, ScrollLimitStylePro
|
|
|
10846
10931
|
* @default medium
|
|
10847
10932
|
*/
|
|
10848
10933
|
size?: 'large' | 'medium' | 'small';
|
|
10934
|
+
/**
|
|
10935
|
+
* The value of the input phone field. This should be an unformatted phone number string (e.g. "4155552671").
|
|
10936
|
+
*
|
|
10937
|
+
* @type string
|
|
10938
|
+
*/
|
|
10939
|
+
value?: string;
|
|
10849
10940
|
}
|
|
10850
10941
|
/**
|
|
10851
10942
|
* An input that allows users to enter text phone numbers and select country codes for the phone number.
|
|
@@ -10870,7 +10961,6 @@ interface InputPhoneProps extends FieldControlProps<string>, ScrollLimitStylePro
|
|
|
10870
10961
|
* @phase Dev
|
|
10871
10962
|
*/
|
|
10872
10963
|
declare class UIInputPhone implements AsSignal<InputPhoneProps>, AfterViewInit, OnInit, OnDestroy {
|
|
10873
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10874
10964
|
keyNavigation: KeyNavigationUtility;
|
|
10875
10965
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
10876
10966
|
readonly name: i0.InputSignal<string>;
|
|
@@ -10927,10 +11017,11 @@ declare class UIInputPhone implements AsSignal<InputPhoneProps>, AfterViewInit,
|
|
|
10927
11017
|
private formatValueIfNeeded;
|
|
10928
11018
|
private handleSpaceOrEnter;
|
|
10929
11019
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInputPhone, never>;
|
|
10930
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIInputPhone, "ui-input-phone", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "initialCountryCode": { "alias": "initialCountryCode"; "required": false; "isSignal": true; }; "disableFormatting": { "alias": "disableFormatting"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; }, { "
|
|
11020
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIInputPhone, "ui-input-phone", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "initialCountryCode": { "alias": "initialCountryCode"; "required": false; "isSignal": true; }; "disableFormatting": { "alias": "disableFormatting"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
10931
11021
|
}
|
|
10932
11022
|
|
|
10933
|
-
|
|
11023
|
+
interface InputPhoneFieldProps extends ControlFieldProps, InputPhoneProps {
|
|
11024
|
+
}
|
|
10934
11025
|
/**
|
|
10935
11026
|
* A field wrapper for the UIInputPhone component.
|
|
10936
11027
|
*
|
|
@@ -10955,65 +11046,6 @@ declare class UIInputPhoneField extends UIInputPhone implements AsSignal<InputPh
|
|
|
10955
11046
|
static ɵcmp: i0.ɵɵComponentDeclaration<UIInputPhoneField, "ui-input-phone-field", never, { "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "helperText": { "alias": "helperText"; "required": false; "isSignal": true; }; "labelTrailing": { "alias": "labelTrailing"; "required": false; "isSignal": true; }; "style": { "alias": "style"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
10956
11047
|
}
|
|
10957
11048
|
|
|
10958
|
-
interface LinkProps {
|
|
10959
|
-
/** The variant of the link. Controls the icon that is displayed and link target. */
|
|
10960
|
-
trailingIcon?: 'chevron' | 'external' | 'link';
|
|
10961
|
-
/**
|
|
10962
|
-
* The href of the link.
|
|
10963
|
-
*
|
|
10964
|
-
* @example
|
|
10965
|
-
* https://bspk.dev
|
|
10966
|
-
*/
|
|
10967
|
-
href: string | null | undefined;
|
|
10968
|
-
/**
|
|
10969
|
-
* The size of the link.
|
|
10970
|
-
*
|
|
10971
|
-
* @default base
|
|
10972
|
-
*/
|
|
10973
|
-
size?: 'base' | 'large' | 'small';
|
|
10974
|
-
/**
|
|
10975
|
-
* Change the color of the link to a subtle color. This is useful for links that are not primary actions, for
|
|
10976
|
-
* example footer menus.
|
|
10977
|
-
*
|
|
10978
|
-
* @default default
|
|
10979
|
-
*/
|
|
10980
|
-
variant?: 'default' | 'subtle-inverse' | 'subtle';
|
|
10981
|
-
/**
|
|
10982
|
-
* The target of the link. If the `trailingIcon` is set to `external`, this will default to `_blank`.
|
|
10983
|
-
*
|
|
10984
|
-
* @default _self
|
|
10985
|
-
*/
|
|
10986
|
-
target?: '_blank' | '_parent' | '_self' | '_top';
|
|
10987
|
-
/** Determines if the element is disabled. */
|
|
10988
|
-
disabled?: boolean;
|
|
10989
|
-
}
|
|
10990
|
-
/**
|
|
10991
|
-
* This is the standalone link directive. Apply to an `a` element.
|
|
10992
|
-
*
|
|
10993
|
-
* @example
|
|
10994
|
-
* <a ui-link href="https://anywhere.re" [label]="'Example label'" trailingIcon="external"></a>
|
|
10995
|
-
*
|
|
10996
|
-
* @name Link
|
|
10997
|
-
* @phase Stable
|
|
10998
|
-
*/
|
|
10999
|
-
declare class UILinkDirective implements AsSignal<LinkProps> {
|
|
11000
|
-
readonly trailingIcon: i0.InputSignal<"link" | "chevron" | "external" | undefined>;
|
|
11001
|
-
readonly href: i0.InputSignal<string | null | undefined>;
|
|
11002
|
-
readonly size: i0.InputSignal<"small" | "large" | "base" | undefined>;
|
|
11003
|
-
readonly variant: i0.InputSignal<"default" | "subtle-inverse" | "subtle" | undefined>;
|
|
11004
|
-
readonly target: i0.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
11005
|
-
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
11006
|
-
private readonly host;
|
|
11007
|
-
private readonly renderer;
|
|
11008
|
-
private viewContainerRef;
|
|
11009
|
-
private destroyRef;
|
|
11010
|
-
private labelSpan;
|
|
11011
|
-
constructor();
|
|
11012
|
-
iconComponent(): Promise<typeof _bspk_ui_ngx.IconOpenInNew> | null;
|
|
11013
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UILinkDirective, never>;
|
|
11014
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<UILinkDirective, "a[ui-link]", never, { "trailingIcon": { "alias": "trailingIcon"; "required": false; "isSignal": true; }; "href": { "alias": "href"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11015
|
-
}
|
|
11016
|
-
|
|
11017
11049
|
/**
|
|
11018
11050
|
* Sets the host element's height to match its parent element's clientHeight. Updates on window resize and orientation
|
|
11019
11051
|
* changes.
|
|
@@ -11248,31 +11280,25 @@ interface PaginationProps {
|
|
|
11248
11280
|
* multiple micro pages.
|
|
11249
11281
|
*
|
|
11250
11282
|
* @example
|
|
11251
|
-
* <ui-pagination [value]="currentPage" [numPages]="10" (
|
|
11283
|
+
* <ui-pagination [value]="currentPage" [numPages]="10" (valueChange)="currentPage = $event"></ui-pagination>
|
|
11252
11284
|
*
|
|
11253
11285
|
* @name Pagination
|
|
11254
11286
|
* @phase Dev
|
|
11255
11287
|
*/
|
|
11256
|
-
declare class UIPagination implements
|
|
11257
|
-
/** Called when the page changes. */
|
|
11258
|
-
onChange: EventEmitter<number>;
|
|
11288
|
+
declare class UIPagination implements AsSignal<PaginationProps> {
|
|
11259
11289
|
readonly numPages: i0.InputSignal<number>;
|
|
11260
|
-
readonly value: i0.
|
|
11261
|
-
inputValue: string
|
|
11290
|
+
readonly value: i0.ModelSignal<number>;
|
|
11291
|
+
readonly inputValue: i0.WritableSignal<string>;
|
|
11262
11292
|
readonly INPUT_TYPE_THRESHOLD = 7;
|
|
11263
11293
|
ChevronRight: typeof IconChevronRight;
|
|
11264
11294
|
ChevronLeft: typeof IconChevronLeft;
|
|
11265
|
-
|
|
11266
|
-
|
|
11267
|
-
|
|
11268
|
-
nextPage(): void;
|
|
11269
|
-
submitManual(event?: Event): void;
|
|
11295
|
+
readonly pages: i0.Signal<number[]>;
|
|
11296
|
+
readonly label: i0.Signal<string>;
|
|
11297
|
+
updateValue(value: number | string, event?: Event): void;
|
|
11270
11298
|
inBounds(n: number): boolean;
|
|
11271
|
-
pages(): number[];
|
|
11272
|
-
label(): string;
|
|
11273
11299
|
private clamp;
|
|
11274
11300
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIPagination, never>;
|
|
11275
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIPagination, "ui-pagination", never, { "numPages": { "alias": "numPages"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "
|
|
11301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIPagination, "ui-pagination", never, { "numPages": { "alias": "numPages"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
11276
11302
|
}
|
|
11277
11303
|
|
|
11278
11304
|
interface RadioProps extends FieldControlProps {
|
|
@@ -11282,6 +11308,8 @@ interface RadioProps extends FieldControlProps {
|
|
|
11282
11308
|
* @default false
|
|
11283
11309
|
*/
|
|
11284
11310
|
checked?: boolean;
|
|
11311
|
+
/** The value of the radio input. */
|
|
11312
|
+
value: string;
|
|
11285
11313
|
}
|
|
11286
11314
|
/**
|
|
11287
11315
|
* A round control that allows user to choose one option from a set. This is the base element and if used directly you
|
|
@@ -11295,11 +11323,10 @@ interface RadioProps extends FieldControlProps {
|
|
|
11295
11323
|
* @phase Utility
|
|
11296
11324
|
*/
|
|
11297
11325
|
declare class UIRadio implements AsSignal<RadioProps> {
|
|
11298
|
-
checkedChange: EventEmitter<boolean>;
|
|
11299
11326
|
readonly name: i0.InputSignal<string>;
|
|
11300
|
-
readonly value: i0.InputSignal<string
|
|
11327
|
+
readonly value: i0.InputSignal<string>;
|
|
11301
11328
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
11302
|
-
readonly checked: i0.
|
|
11329
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
11303
11330
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
11304
11331
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11305
11332
|
readonly invalid: i0.InputSignal<boolean | undefined>;
|
|
@@ -11307,7 +11334,7 @@ declare class UIRadio implements AsSignal<RadioProps> {
|
|
|
11307
11334
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
11308
11335
|
onInputChange(event: Event): void;
|
|
11309
11336
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIRadio, never>;
|
|
11310
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIRadio, "ui-radio", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; }, { "
|
|
11337
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIRadio, "ui-radio", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, never, true, never>;
|
|
11311
11338
|
}
|
|
11312
11339
|
|
|
11313
11340
|
interface RadioOptionProps extends RadioProps {
|
|
@@ -11361,6 +11388,8 @@ interface RadioGroupProps extends FieldControlProps {
|
|
|
11361
11388
|
* @required
|
|
11362
11389
|
*/
|
|
11363
11390
|
options: RadioGroupOption[];
|
|
11391
|
+
/** The value of the selected radio. */
|
|
11392
|
+
value?: string;
|
|
11364
11393
|
}
|
|
11365
11394
|
/**
|
|
11366
11395
|
* A group of radios that allows users to choose one or more items from a list or turn an feature on or off.
|
|
@@ -11378,7 +11407,6 @@ interface RadioGroupProps extends FieldControlProps {
|
|
|
11378
11407
|
* @phase Dev
|
|
11379
11408
|
*/
|
|
11380
11409
|
declare class UIRadioGroup implements AsSignal<RadioGroupProps> {
|
|
11381
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
11382
11410
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11383
11411
|
readonly name: i0.InputSignal<string>;
|
|
11384
11412
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
@@ -11393,12 +11421,13 @@ declare class UIRadioGroup implements AsSignal<RadioGroupProps> {
|
|
|
11393
11421
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
11394
11422
|
constructor();
|
|
11395
11423
|
/** Handles changes to the radio button selection. */
|
|
11396
|
-
onRadioChange(value: string, checked: boolean): void;
|
|
11424
|
+
onRadioChange(value: string, checked: boolean | undefined): void;
|
|
11397
11425
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIRadioGroup, never>;
|
|
11398
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UIRadioGroup, "ui-radio-group", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; }, { "
|
|
11426
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UIRadioGroup, "ui-radio-group", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
11399
11427
|
}
|
|
11400
11428
|
|
|
11401
|
-
|
|
11429
|
+
interface RadioGroupFieldProps extends ControlFieldProps, RadioGroupProps {
|
|
11430
|
+
}
|
|
11402
11431
|
/**
|
|
11403
11432
|
* A field wrapper for the UIRadioGroup component.
|
|
11404
11433
|
*
|
|
@@ -11467,6 +11496,8 @@ interface TabOption {
|
|
|
11467
11496
|
* The value of the tab sent to valueChange when selected.
|
|
11468
11497
|
*
|
|
11469
11498
|
* If not provided, the label will be used as the value.
|
|
11499
|
+
*
|
|
11500
|
+
* @type string
|
|
11470
11501
|
*/
|
|
11471
11502
|
value: string;
|
|
11472
11503
|
/**
|
|
@@ -11486,7 +11517,7 @@ interface TabOption {
|
|
|
11486
11517
|
/** Optional id. If not provided, one is generated. */
|
|
11487
11518
|
id?: string;
|
|
11488
11519
|
}
|
|
11489
|
-
interface
|
|
11520
|
+
interface TabListBaseProps<O extends TabOption = TabOption> {
|
|
11490
11521
|
/**
|
|
11491
11522
|
* The tabs to display.
|
|
11492
11523
|
*
|
|
@@ -11536,6 +11567,8 @@ interface TabListProps<O extends TabOption = TabOption> {
|
|
|
11536
11567
|
label: string;
|
|
11537
11568
|
/** The id of the tab utility, used for accessibility. */
|
|
11538
11569
|
id?: string;
|
|
11570
|
+
}
|
|
11571
|
+
interface TabListProps<O extends TabOption = TabOption> extends TabListBaseProps<O> {
|
|
11539
11572
|
/**
|
|
11540
11573
|
* Determines if the labels of the options should be displayed. If icons are not provided for every option this is
|
|
11541
11574
|
* ignored and labels are shown.
|
|
@@ -11549,15 +11582,14 @@ interface TabListProps<O extends TabOption = TabOption> {
|
|
|
11549
11582
|
*
|
|
11550
11583
|
* See TabGroup or SegmentedControl for examples.
|
|
11551
11584
|
*
|
|
11552
|
-
* @
|
|
11585
|
+
* @name TabList
|
|
11586
|
+
* @phase Utility
|
|
11553
11587
|
*/
|
|
11554
11588
|
declare class UITabListUtility<O extends TabOption = TabOption> implements AsSignal<TabListProps<O>> {
|
|
11555
|
-
|
|
11556
|
-
valueChange: EventEmitter<string>;
|
|
11557
|
-
readonly options: i0.InputSignal<O[]>;
|
|
11558
|
-
readonly value: i0.InputSignal<string>;
|
|
11589
|
+
readonly value: i0.ModelSignal<string>;
|
|
11559
11590
|
readonly width: i0.InputSignal<"fill" | "hug" | undefined>;
|
|
11560
11591
|
readonly label: i0.InputSignal<string>;
|
|
11592
|
+
readonly options: i0.InputSignal<O[]>;
|
|
11561
11593
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11562
11594
|
readonly iconsOnly: i0.InputSignal<boolean | undefined>;
|
|
11563
11595
|
readonly sizeProp: i0.InputSignal<TabSize | undefined>;
|
|
@@ -11582,7 +11614,7 @@ declare class UITabListUtility<O extends TabOption = TabOption> implements AsSig
|
|
|
11582
11614
|
}): void;
|
|
11583
11615
|
handleKeyDownEvent(event: KeyboardEvent): void;
|
|
11584
11616
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITabListUtility<any>, never>;
|
|
11585
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UITabListUtility<any>, "ng-component", never, { "
|
|
11617
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UITabListUtility<any>, "ng-component", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "iconsOnly": { "alias": "iconsOnly"; "required": false; "isSignal": true; }; "sizeProp": { "alias": "size"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
11586
11618
|
}
|
|
11587
11619
|
interface UITabListProps {
|
|
11588
11620
|
/**
|
|
@@ -11663,7 +11695,7 @@ type SelectItem = SelectOption & {
|
|
|
11663
11695
|
ariaLabel?: string;
|
|
11664
11696
|
ariaSelected?: boolean;
|
|
11665
11697
|
};
|
|
11666
|
-
interface SelectProps extends FieldControlProps
|
|
11698
|
+
interface SelectProps extends FieldControlProps {
|
|
11667
11699
|
size?: CommonProps['size'];
|
|
11668
11700
|
/**
|
|
11669
11701
|
* Array of options to display in the select
|
|
@@ -11704,6 +11736,8 @@ interface SelectProps extends FieldControlProps<string> {
|
|
|
11704
11736
|
* Used in conjunction with scrollListItemsStyle utility.
|
|
11705
11737
|
*/
|
|
11706
11738
|
scrollLimit?: number;
|
|
11739
|
+
/** The value of the select control. */
|
|
11740
|
+
value?: string;
|
|
11707
11741
|
}
|
|
11708
11742
|
/**
|
|
11709
11743
|
* A field element that allows users to select one option from a list of available choices.
|
|
@@ -11728,7 +11762,6 @@ interface SelectProps extends FieldControlProps<string> {
|
|
|
11728
11762
|
*/
|
|
11729
11763
|
declare class UISelect implements AsSignal<SelectProps>, AfterViewInit, OnDestroy {
|
|
11730
11764
|
keyNavigation: KeyNavigationUtility;
|
|
11731
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
11732
11765
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
11733
11766
|
readonly name: i0.InputSignal<string>;
|
|
11734
11767
|
readonly placeholder: i0.InputSignal<string | undefined>;
|
|
@@ -11776,10 +11809,11 @@ declare class UISelect implements AsSignal<SelectProps>, AfterViewInit, OnDestro
|
|
|
11776
11809
|
ngAfterViewInit(): void;
|
|
11777
11810
|
ngOnDestroy(): void;
|
|
11778
11811
|
static ɵfac: i0.ɵɵFactoryDeclaration<UISelect, never>;
|
|
11779
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UISelect, "ui-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "menuWidth": { "alias": "menuWidth"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; }, { "
|
|
11812
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UISelect, "ui-select", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "menuWidth": { "alias": "menuWidth"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "scrollLimit": { "alias": "scrollLimit"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
11780
11813
|
}
|
|
11781
11814
|
|
|
11782
|
-
|
|
11815
|
+
interface SelectFieldProps extends SelectProps, ControlFieldProps {
|
|
11816
|
+
}
|
|
11783
11817
|
/**
|
|
11784
11818
|
* A field wrapper for the UISelect component.
|
|
11785
11819
|
*
|
|
@@ -11808,7 +11842,7 @@ interface SwitchProps {
|
|
|
11808
11842
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
11809
11843
|
disabled?: CommonProps['disabled'];
|
|
11810
11844
|
id?: CommonProps['id'];
|
|
11811
|
-
name:
|
|
11845
|
+
name: FieldControlProps['name'];
|
|
11812
11846
|
/**
|
|
11813
11847
|
* Marks the control as checked.
|
|
11814
11848
|
*
|
|
@@ -11826,16 +11860,15 @@ interface SwitchProps {
|
|
|
11826
11860
|
* @phase Dev
|
|
11827
11861
|
*/
|
|
11828
11862
|
declare class UISwitch implements AsSignal<SwitchProps> {
|
|
11829
|
-
checkedChange: EventEmitter<boolean>;
|
|
11830
11863
|
readonly value: i0.InputSignal<string>;
|
|
11831
|
-
readonly checked: i0.
|
|
11864
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
11832
11865
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
11833
11866
|
readonly name: i0.InputSignal<string>;
|
|
11834
11867
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11835
11868
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
11836
11869
|
onInputChange(event: Event): void;
|
|
11837
11870
|
static ɵfac: i0.ɵɵFactoryDeclaration<UISwitch, never>;
|
|
11838
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UISwitch, "ui-switch", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "
|
|
11871
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UISwitch, "ui-switch", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, never, true, never>;
|
|
11839
11872
|
}
|
|
11840
11873
|
|
|
11841
11874
|
interface SwitchOptionProps extends SwitchProps {
|
|
@@ -11868,13 +11901,7 @@ declare class UISwitchOption extends UISwitch implements AsSignal<SwitchOptionPr
|
|
|
11868
11901
|
}
|
|
11869
11902
|
|
|
11870
11903
|
type TabGroupSize = 'large' | 'medium' | 'small';
|
|
11871
|
-
interface TabGroupProps {
|
|
11872
|
-
options: TabListProps<TabOption>['options'];
|
|
11873
|
-
value: TabListProps<TabOption>['value'];
|
|
11874
|
-
size?: TabListProps<TabOption>['size'];
|
|
11875
|
-
width?: TabListProps<TabOption>['width'];
|
|
11876
|
-
label: TabListProps<TabOption>['label'];
|
|
11877
|
-
id?: TabListProps<TabOption>['id'];
|
|
11904
|
+
interface TabGroupProps extends TabListBaseProps<TabOption> {
|
|
11878
11905
|
/**
|
|
11879
11906
|
* When width is 'hug' this determines if the trailing underline should be showing. When width is 'fill' this
|
|
11880
11907
|
* property isn't applicable.
|
|
@@ -12073,7 +12100,7 @@ declare class UITable<R extends TableRow> implements AsSignal<TableProps<R>> {
|
|
|
12073
12100
|
readonly title: i0.InputSignal<string | undefined>;
|
|
12074
12101
|
readonly size: i0.InputSignal<TableSize | undefined>;
|
|
12075
12102
|
readonly pageSize: i0.InputSignal<number | undefined>;
|
|
12076
|
-
pageIndex: number
|
|
12103
|
+
readonly pageIndex: i0.WritableSignal<number>;
|
|
12077
12104
|
get sizeSafe(): TableSize;
|
|
12078
12105
|
get pageSizeSafe(): number;
|
|
12079
12106
|
get hasPagination(): boolean;
|
|
@@ -12082,7 +12109,6 @@ declare class UITable<R extends TableRow> implements AsSignal<TableProps<R>> {
|
|
|
12082
12109
|
get totalPages(): number;
|
|
12083
12110
|
toggleSorting(key: string): void;
|
|
12084
12111
|
trackRow(index: number, row: R): string;
|
|
12085
|
-
setPageIndex(idx: number): void;
|
|
12086
12112
|
startRow(): number;
|
|
12087
12113
|
endRow(): number;
|
|
12088
12114
|
formatCell(value: unknown): string | null;
|
|
@@ -12161,6 +12187,12 @@ interface TextareaProps extends FieldControlProps {
|
|
|
12161
12187
|
* @maximum 10
|
|
12162
12188
|
*/
|
|
12163
12189
|
maxRows?: number;
|
|
12190
|
+
/**
|
|
12191
|
+
* The value of the textarea field.
|
|
12192
|
+
*
|
|
12193
|
+
* @type string
|
|
12194
|
+
*/
|
|
12195
|
+
value?: string;
|
|
12164
12196
|
}
|
|
12165
12197
|
/**
|
|
12166
12198
|
* A component that allows users to input large amounts of text that could span multiple lines.
|
|
@@ -12185,7 +12217,6 @@ interface TextareaProps extends FieldControlProps {
|
|
|
12185
12217
|
* @phase UXReview
|
|
12186
12218
|
*/
|
|
12187
12219
|
declare class UITextarea implements AsSignal<TextareaProps> {
|
|
12188
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
12189
12220
|
readonly name: i0.InputSignal<string>;
|
|
12190
12221
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
12191
12222
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
@@ -12208,10 +12239,10 @@ declare class UITextarea implements AsSignal<TextareaProps> {
|
|
|
12208
12239
|
handleBlur(event: FocusEvent): void;
|
|
12209
12240
|
handleInput(event: Event): void;
|
|
12210
12241
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITextarea, never>;
|
|
12211
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UITextarea, "ui-textarea", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; "minRows": { "alias": "minRows"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "
|
|
12242
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UITextarea, "ui-textarea", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "maxLength": { "alias": "maxLength"; "required": false; "isSignal": true; }; "maxRows": { "alias": "maxRows"; "required": false; "isSignal": true; }; "minRows": { "alias": "minRows"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabelledBy": { "alias": "ariaLabelledBy"; "required": false; "isSignal": true; }; "ariaDescribedBy": { "alias": "ariaDescribedBy"; "required": false; "isSignal": true; }; "ariaErrorMessage": { "alias": "ariaErrorMessage"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
12212
12243
|
}
|
|
12213
12244
|
|
|
12214
|
-
interface TextareaFieldProps extends
|
|
12245
|
+
interface TextareaFieldProps extends ControlFieldProps, TextareaProps {
|
|
12215
12246
|
}
|
|
12216
12247
|
/**
|
|
12217
12248
|
* A field wrapper for the UITextarea component.
|
|
@@ -12273,6 +12304,16 @@ interface TooltipProps {
|
|
|
12273
12304
|
* @phase Dev
|
|
12274
12305
|
*/
|
|
12275
12306
|
declare class UITooltipDirective implements OnDestroy, OnInit {
|
|
12307
|
+
/**
|
|
12308
|
+
* The value of the tooltip directive. Can be a string for simple usage or an object for more control.
|
|
12309
|
+
*
|
|
12310
|
+
* When using the truncated option, the tooltip will only show when the content is truncated and will use the text
|
|
12311
|
+
* content of the reference element as the label. This is useful for cases like table cells where you want to show a
|
|
12312
|
+
* tooltip only when the content is too long to fit.
|
|
12313
|
+
*
|
|
12314
|
+
* Note: When using the truncated option, the directive will add a data-truncated attribute to the host element.
|
|
12315
|
+
* This can be used for styling purposes.
|
|
12316
|
+
*/
|
|
12276
12317
|
readonly value: i0.ModelSignal<string | TooltipProps | {
|
|
12277
12318
|
truncated: true;
|
|
12278
12319
|
} | undefined>;
|
|
@@ -12304,7 +12345,11 @@ declare class UITooltipDirective implements OnDestroy, OnInit {
|
|
|
12304
12345
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITooltipDirective, never>;
|
|
12305
12346
|
static ɵdir: i0.ɵɵDirectiveDeclaration<UITooltipDirective, "[ui-tooltip]", never, { "value": { "alias": "ui-tooltip"; "required": false; "isSignal": true; }; }, { "value": "ui-tooltipChange"; }, never, never, true, never>;
|
|
12306
12347
|
}
|
|
12307
|
-
/**
|
|
12348
|
+
/**
|
|
12349
|
+
* Single use component to display tooltip content.
|
|
12350
|
+
*
|
|
12351
|
+
* @ignore
|
|
12352
|
+
*/
|
|
12308
12353
|
declare class UITooltip implements AsSignal<TooltipProps> {
|
|
12309
12354
|
readonly arrow: i0.Signal<ElementRef<any> | undefined>;
|
|
12310
12355
|
readonly id: i0.WritableSignal<string | undefined>;
|
|
@@ -12394,4 +12439,4 @@ declare class ThemeService {
|
|
|
12394
12439
|
}
|
|
12395
12440
|
|
|
12396
12441
|
export { BUILT_IN_COLUMN_SORTERS, BrandService, EXTRA_BRANDS, Icon360, IconAZAscend, IconAZDescend, IconAccessibilityNew, IconAccessible, IconAccountCircle, IconAccountCircleFill, IconAccountTree, IconAccountTreeFill, IconAdd, IconAddAPhoto, IconAddAPhotoFill, IconAddAlert, IconAddAlertFill, IconAddBusiness, IconAddBusinessFill, IconAddChart, IconAddChartFill, IconAddCircle, IconAddCircleFill, IconAddComment, IconAddCommentFill, IconAddReaction, IconAddReactionFill, IconAddShoppingCart, IconAirplanemodeInactive, IconAirportShuttle, IconAirportShuttleFill, IconAlignCenter, IconAlignEnd, IconAlignFlexCenter, IconAlignFlexEnd, IconAlignFlexStart, IconAlignHorizontalCenter, IconAlignHorizontalLeft, IconAlignHorizontalRight, IconAlignItemsStretch, IconAlignJustifyCenter, IconAlignJustifyFlexEnd, IconAlignJustifyFlexStart, IconAlignJustifySpaceAround, IconAlignJustifySpaceBetween, IconAlignJustifySpaceEven, IconAlignJustifyStretch, IconAlignSpaceAround, IconAlignSpaceBetween, IconAlignSpaceEven, IconAlignStart, IconAlignStretch, IconAlignVerticalBottom, IconAlignVerticalCenter, IconAlignVerticalTop, IconAlternateEmail, IconAmex, IconAnalytics, IconAnalyticsFill, IconApartment, IconAppStore, IconAppleBlack, IconAppleWhite, IconApplepay, IconApps, IconArOnYou, IconArOnYouFill, IconArStickers, IconArStickersFill, IconArchive, IconArchiveFill, IconAreaChart, IconAreaChartFill, IconArrowBack, IconArrowDownward, IconArrowDropDown, IconArrowDropUp, IconArrowForward, IconArrowInsert, IconArrowLeft, IconArrowOutward, IconArrowRight, IconArrowUpward, IconAssignment, IconAssignmentAdd, IconAssignmentAddFill, IconAssignmentFill, IconAttachFile, IconAttachFileAdd, IconAttachFileFill, IconAttachMoney, IconAutomation, IconAutomationFill, IconBadge, IconBadgeFill, IconBakeryDining, IconBakeryDiningFill, IconBarChart, IconBarcode, IconBarcodeScanner, IconBarn, IconBarnFill, IconBasement, IconBasementFill, IconBathroom, IconBathroomFill, IconBed, IconBedFill, IconBlock, IconBluetooth, IconBolt, IconBoltFill, IconBookmark, IconBookmarkAdd, IconBookmarkAddFill, IconBookmarkAdded, IconBookmarkAddedFill, IconBookmarkFill, IconBookmarkRemove, IconBookmarkRemoveFill, IconBookmarks, IconBookmarksFill, IconBorderColor, IconBorderColorFill, IconBorderStyle, IconBox, IconBoxAdd, IconBoxAddFill, IconBoxFill, IconBrail, IconBubbleChart, IconBubbleChartFill, IconBuilding, IconBuildingFill, IconBusinessCenter, IconBusinessCenterFill, IconCalendarViewDay, IconCalendarViewDayFill, IconCalendarViewWeek, IconCalendarViewWeekFill, IconCall, IconCallEnd, IconCallEndFill, IconCallFill, IconCampaign, IconCampaignFill, IconCancel, IconCancelFill, IconCasino, IconCasinoFill, IconCat, IconCatFill, IconCategory, IconCategoryFill, IconChartData, IconChartDataFill, IconChat, IconChatBubble, IconChatBubbleFill, IconChatFill, IconCheck, IconCheckCircle, IconCheckCircleFill, IconCheckFill, IconChecklist, IconChevronLeft, IconChevronRight, IconCircle, IconCircleFill, IconCleaningServices, IconCleaningServicesFill, IconClose, IconCloseFill, IconClosedCaption, IconClosedCaptionDisabled, IconClosedCaptionDisabledFill, IconClosedCaptionFill, IconCloud, IconCloudDone, IconCloudDoneFill, IconCloudDownload, IconCloudDownloadFill, IconCloudFill, IconCloudOff, IconCloudOffFill, IconCloudUpload, IconCloudUploadFill, IconCode, IconCognition, IconCognitionFill, IconColorBlind, IconColors, IconCommute, IconCommuteFill, IconComputer, IconComputerFill, IconConstruction, IconContactMail, IconContactMailFill, IconContactPage, IconContactPageFill, IconContactPhone, IconContactPhoneFill, IconContactSupport, IconContactSupportFill, IconContacts, IconContactsFill, IconContentCopy, IconContentCopyFill, IconContentPasteOff, IconContentPasteSearch, IconContrast, IconContrastCircle, IconContrastFill, IconContrastSquare, IconCopyright, IconCopyrightFill, IconCrawlspace, IconCrawlspaceFill, IconCreditCard, IconCreditCardFill, IconDangerous, IconDangerousFill, IconDarkMode, IconDarkModeFill, IconDashboard, IconDashboard2, IconDashboard2Fill, IconDashboardCustomize, IconDashboardCustomizeFill, IconDashboardFill, IconDatabase, IconDatabaseFill, IconDelete, IconDeleteFill, IconDeleteForever, IconDeleteForeverFill, IconDeployedCode, IconDeployedCodeAccount, IconDeployedCodeAccountFill, IconDeployedCodeAlert, IconDeployedCodeAlertFill, IconDeployedCodeFill, IconDeployedCodeHistory, IconDeployedCodeHistoryFill, IconDeployedCodeUpdate, IconDeployedCodeUpdateFill, IconDescription, IconDescriptionFill, IconDesktopWindows, IconDesktopWindowsFill, IconDeviceThermostat, IconDevices, IconDevicesFill, IconDialpad, IconDiamond, IconDiamondFill, IconDirections, IconDirectionsBike, IconDirectionsBoat, IconDirectionsBoatFill, IconDirectionsBus, IconDirectionsBusFill, IconDirectionsCar, IconDirectionsCarFill, IconDirectionsFill, IconDirectionsSubway, IconDirectionsSubwayFill, IconDirectionsWalk, IconDiscover, IconDiversity1, IconDiversity1Fill, IconDoNotDisturbOn, IconDoNotDisturbOnFill, IconDocumentScanner, IconDocumentScannerFill, IconDog, IconDogFill, IconDonutLarge, IconDonutSmall, IconDonutSmallFill, IconDoorOpen, IconDoorOpenFill, IconDraft, IconDraftFill, IconDrafts, IconDraftsFill, IconDragHandle, IconDragIndicator, IconDraw, IconDrawFill, IconEdit, IconEditFill, IconEditNote, IconEditNoteFill, IconEditRoad, IconEditRoadFill, IconEditSquare, IconEditSquareFill, IconEgg, IconEggFill, IconEmojiLanguage, IconEmojiLanguageFill, IconEmoticon, IconEncrypted, IconEncryptedFill, IconError, IconErrorFill, IconEvent, IconEventFill, IconEventNote, IconEventNoteFill, IconExercise, IconExerciseFill, IconExperiment, IconExperimentFill, IconExplore, IconExploreFill, IconExtension, IconExtensionFill, IconExtensionOff, IconExtensionOffFill, IconFaceId, IconFaceRetouchingOff, IconFaceRetouchingOffFill, IconFacebook, IconFacebookWhite, IconFamilyHome, IconFamilyHomeFill, IconFastfood, IconFastfoodFill, IconFavorite, IconFavoriteFill, IconFileDownload, IconFileUpload, IconFilterList, IconFinance, IconFingerprint, IconFingerprintOff, IconFireplace, IconFireplaceFill, IconFitScreen, IconFitScreenFill, IconFitnessCenter, IconFlag, IconFlagAfghanistan, IconFlagAlandIsland, IconFlagAlbania, IconFlagAlgeria, IconFlagAmericanSamoa, IconFlagAndorra, IconFlagAngola, IconFlagAnguilla, IconFlagAntiguaAndBarbuda, IconFlagArgentina, IconFlagArmenia, IconFlagAruba, IconFlagAustralia, IconFlagAustria, IconFlagAzerbaijan, IconFlagBahamas, IconFlagBahrain, IconFlagBangladesh, IconFlagBarbados, IconFlagBelarus, IconFlagBelgium, IconFlagBelize, IconFlagBenin, IconFlagBermuda, IconFlagBhutan, IconFlagBolivia, IconFlagBonaire, IconFlagBosniaAndHerzegovina, IconFlagBotswana, IconFlagBrazil, IconFlagBrunei, IconFlagBulgaria, IconFlagBurkinaFaso, IconFlagBurundi, IconFlagCambodia, IconFlagCameroon, IconFlagCanada, IconFlagCaymanIslands, IconFlagCentralAfricanRepublic, IconFlagChad, IconFlagChile, IconFlagChina, IconFlagChristmasIsland, IconFlagCocosIslands, IconFlagColombia, IconFlagComoros, IconFlagCookIsland, IconFlagCostaRica, IconFlagCroatia, IconFlagCuba, IconFlagCuracao, IconFlagCyprus, IconFlagCzechRepublic, IconFlagDemocraticRepublicOfTheCongo, IconFlagDenmark, IconFlagDjibouti, IconFlagDominica, IconFlagDominicanRepublic, IconFlagEcuador, IconFlagEgypt, IconFlagElSalvador, IconFlagEquatorialGuinea, IconFlagEritrea, IconFlagEstonia, IconFlagEswatini, IconFlagEthiopia, IconFlagFalklandIslands, IconFlagFaroeIslands, IconFlagFederatedStatesOfMicronesia, IconFlagFiji, IconFlagFill, IconFlagFinland, IconFlagFrance, IconFlagFrenchGuiana, IconFlagFrenchPolynesia, IconFlagGabon, IconFlagGambia, IconFlagGeorgia, IconFlagGermany, IconFlagGhana, IconFlagGibraltar, IconFlagGreece, IconFlagGreeland, IconFlagGrenada, IconFlagGrenadines, IconFlagGuam, IconFlagGuatemala, IconFlagGuernsey, IconFlagGuinea, IconFlagGuineaBissau, IconFlagGuyana, IconFlagHaiti, IconFlagHonduras, IconFlagHongKong, IconFlagHungary, IconFlagIceland, IconFlagIndia, IconFlagIndianOceanTerritory, IconFlagIndonesia, IconFlagIran, IconFlagIraq, IconFlagIreland, IconFlagIsleOfMan, IconFlagIsrael, IconFlagItaly, IconFlagJamaica, IconFlagJapan, IconFlagJersey, IconFlagJordan, IconFlagKazakhstan, IconFlagKenya, IconFlagKiribati, IconFlagKuwait, IconFlagKyrgyzstan, IconFlagLaos, IconFlagLatvia, IconFlagLebanon, IconFlagLesotho, IconFlagLiberia, IconFlagLibya, IconFlagLiechtenstein, IconFlagLithuania, IconFlagLuxembourg, IconFlagMacau, IconFlagMadagascar, IconFlagMalasia, IconFlagMalawi, IconFlagMaldives, IconFlagMali, IconFlagMalta, IconFlagMarshallIslands, IconFlagMartinique, IconFlagMauritania, IconFlagMauritius, IconFlagMexico, IconFlagMoldova, IconFlagMonaco, IconFlagMongolia, IconFlagMontenegro, IconFlagMontserrat, IconFlagMorroco, IconFlagMozambique, IconFlagMyanmar, IconFlagNamibia, IconFlagNauru, IconFlagNepal, IconFlagNetherlands, IconFlagNewZealand, IconFlagNicaragua, IconFlagNiger, IconFlagNigeria, IconFlagNiue, IconFlagNorfolkIsland, IconFlagNorthKorea, IconFlagNorthMacedonia, IconFlagNorthernMarianaIslands, IconFlagNorway, IconFlagOman, IconFlagPakistan, IconFlagPalau, IconFlagPalestine, IconFlagPanama, IconFlagPapuaNewGuinea, IconFlagParaguay, IconFlagPeru, IconFlagPhilippines, IconFlagPitcairnIslands, IconFlagPoland, IconFlagPortugal, IconFlagPuertoRico, IconFlagQatar, IconFlagRepublicOfTheCongo, IconFlagRomania, IconFlagRussia, IconFlagRwanda, IconFlagSaintBarthelemy, IconFlagSamoa, IconFlagSanMarino, IconFlagSaoTomeAndPrincipe, IconFlagSaudiArabia, IconFlagSenegal, IconFlagSerbia, IconFlagSeychelles, IconFlagSierraLeone, IconFlagSingapore, IconFlagSintMaarten, IconFlagSlovakia, IconFlagSlovenia, IconFlagSolomonIslands, IconFlagSomalia, IconFlagSouthAfrica, IconFlagSouthKorea, IconFlagSouthSudan, IconFlagSpain, IconFlagSriLanka, IconFlagStKittsNevis, IconFlagStLucia, IconFlagSudan, IconFlagSuriname, IconFlagSweden, IconFlagSwitzerland, IconFlagSyria, IconFlagTaiwan, IconFlagTajikistan, IconFlagTanzania, IconFlagThailand, IconFlagTimorLeste, IconFlagTogo, IconFlagTokelau, IconFlagTonga, IconFlagTrinidadAndTobago, IconFlagTunisia, IconFlagTurkey, IconFlagTurkmenistan, IconFlagTurksAndCaicos, IconFlagTuvalu, IconFlagUganda, IconFlagUkraine, IconFlagUnitedArabEmirates, IconFlagUnitedKingdom, IconFlagUnitedKingdomOfGreatBritainAndNorthernIreland, IconFlagUnitedStates, IconFlagUruguay, IconFlagUzbekistan, IconFlagVanuatu, IconFlagVenezuela, IconFlagVietnam, IconFlagVirginIslands, IconFlagVirginIslandsBritish, IconFlagWestSahara, IconFlagYemen, IconFlagZambia, IconFlagZimbabwe, IconFlashAuto, IconFlashAutoFill, IconFlight, IconFlowchart, IconFlowchartFill, IconFolder, IconFolderFill, IconFolderOpen, IconFolderOpenFill, IconFolderShared, IconFolderSharedFill, IconFontDownload, IconFontDownloadFill, IconForSaleSign, IconForYou, IconForYouFill, IconForest, IconForestFill, IconForkRight, IconFormatAlignCenter, IconFormatAlignJustify, IconFormatAlignLeft, IconFormatAlignRight, IconFormatColorFill, IconFormatLetterSpacingWide, IconFormatLetterSpacingWider, IconFormatLineSpacing, IconFormatListBulleted, IconFormatListNumbered, IconFormatShapes, IconFormatShapesFill, IconFormatSize, IconForum, IconForumFill, IconForward, IconForwardToInbox, IconForwardToInboxFill, IconFullStackedBarChart, IconFullscreen, IconFullscreenExit, IconFullscreenFill, IconGTranslate, IconGalleryThumbnail, IconGalleryThumbnailFill, IconGarage, IconGarageFill, IconGlobe, IconGoogle, IconGooglePlay, IconGooglepay, IconGridView, IconGridViewFill, IconGroup, IconGroupFill, IconGroupedBarChart, IconHail, IconHandDraw, IconHandDrawFill, IconHandshake, IconHandshakeFill, IconHandyman, IconHandymanFill, IconHeadMountedDevice, IconHeadMountedDeviceFill, IconHeadsetMic, IconHeadsetMicFill, IconHearing, IconHeat, IconHeatPump, IconHeatPumpFill, IconHelp, IconHelpFill, IconHexagon, IconHexagonFill, IconHistory, IconHome, IconHomeAdd, IconHomeAddFill, IconHomeCheck, IconHomeCheckFill, IconHomeFill, IconHomeLock, IconHomeLockFill, IconHomeMonitize, IconHomeMonitizeFill, IconHomeMove, IconHomeMoveFill, IconHomeRemove, IconHomeRemoveFill, IconHomeStorage, IconHomeStorageFill, IconHomeTimer, IconHomeTimerFill, IconHomeWork, IconHomeWorkFill, IconHorizontalDistribute, IconHub, IconHubFill, IconHvac, IconHvacFill, IconIcecream, IconIcecreamFill, IconIdCard, IconIdCardFill, IconImage, IconImageFill, IconInProgress, IconInbox, IconInboxFill, IconIncompleteCircle, IconInfo, IconInfoFill, IconInkEraser, IconInkEraserFill, IconInput, IconInstagramBlack, IconInstagramWhite, IconInventory, IconInventory2, IconInventory2Fill, IconInventoryFill, IconIosShare, IconKebabDining, IconKebabDiningFill, IconKey, IconKeyFill, IconKeyOff, IconKeyOffFill, IconKeyVertical, IconKeyVerticalFill, IconKeyboard, IconKeyboardArrowDown, IconKeyboardArrowUp, IconKeyboardDoubleArrowLeft, IconKeyboardDoubleArrowRight, IconKeyboardFill, IconLabel, IconLabelFill, IconLabelImportant, IconLabelImportantFill, IconLan, IconLanFill, IconLandscape, IconLandscapeFill, IconLanguage, IconLaundry, IconLaundryFill, IconLayers, IconLayersFill, IconLeaderboard, IconLeaderboardFill, IconLeftPanelClose, IconLeftPanelCloseFill, IconLeftPanelOpen, IconLeftPanelOpenFill, IconLicense, IconLicenseFill, IconLight, IconLightFill, IconLightMode, IconLightModeFill, IconLightbulb, IconLightbulbFill, IconLink, IconLinkFill, IconLinkOff, IconLinkedin, IconLinkedinWhite, IconList, IconListChange, IconListFill, IconLocalCafe, IconLocalCafeFill, IconLocalParking, IconLocalShipping, IconLocalShippingFill, IconLocalTaxi, IconLocalTaxiFill, IconLocationDisabled, IconLocationOff, IconLocationOffFill, IconLocationOn, IconLocationOnFill, IconLocationSearching, IconLock, IconLockFill, IconLockOpen, IconLockOpenFill, IconLogin, IconLogout, IconLowVisibility, IconMail, IconMailFill, IconMailLock, IconMailLockFill, IconMan, IconManFill, IconManageAccounts, IconManageAccountsFill, IconMap, IconMapFill, IconMarkAsUnread, IconMarkAsUnreadFill, IconMarkEmailRead, IconMarkEmailReadFill, IconMarkEmailUnread, IconMarkEmailUnreadFill, IconMastercard, IconMenu, IconMenuBook, IconMenuBookFill, IconMenuFill, IconMerge, IconMic, IconMicFill, IconMicOff, IconMicOffFill, IconModeCool, IconModeCoolOff, IconModeFan, IconModeFanFill, IconModeFanOff, IconModeFanOffFill, IconModeHeat, IconModeHeatFill, IconMoneyOff, IconMonitor, IconMonitorFill, IconMood, IconMoodBad, IconMoodBadFill, IconMoodFill, IconMoreHoriz, IconMoreVert, IconMoveLocation, IconMoveLocationFill, IconMoveToInbox, IconMoveToInboxFill, IconMultilineChart, IconMusicNote, IconMyLocation, IconMyLocationFill, IconNavigation, IconNavigationFill, IconNearMe, IconNearMeFill, IconNoSound, IconNoSoundFill, IconNorth, IconNorthWest, IconNoteAdd, IconNoteAddFill, IconNotifications, IconNotificationsFill, IconNotificationsOff, IconNotificationsOffFill, IconNutrition, IconNutritionFill, IconOktaBlack, IconOktaWhite, IconOmniChatbox, IconOmniChatboxFill, IconOpenInFull, IconOpenInNew, IconOpportunities, IconOrders, IconOrdersFill, IconOtherHouses, IconOtherHousesFill, IconOutbox, IconOutboxFill, IconOutgoingMail, IconOutgoingMailFill, IconOutlook, IconOvenGen, IconOvenGenFill, IconPackage, IconPackage2, IconPackage2Fill, IconPackageFill, IconPaid, IconPaidFill, IconPalette, IconPaletteFill, IconPanZoom, IconPartnerExchange, IconPartnerExchangeFill, IconPause, IconPauseCircle, IconPauseCircleFill, IconPauseFill, IconPayments, IconPaymentsFill, IconPaypal, IconPendingActions, IconPentagon, IconPentagonFill, IconPercent, IconPerson, IconPersonAdd, IconPersonAddDisabled, IconPersonAddDisabledFill, IconPersonAddFill, IconPersonBook, IconPersonBookFill, IconPersonCancel, IconPersonCancelFill, IconPersonCheck, IconPersonCheckFill, IconPersonFill, IconPersonRemove, IconPersonRemoveFill, IconPersonSearch, IconPersonSearchFill, IconPets, IconPhotoCamera, IconPhotoCameraFill, IconPieChart, IconPieChartFill, IconPin, IconPinFill, IconPinterest, IconPinterestBlack, IconPlayArrow, IconPlayArrowFill, IconPlayCircle, IconPlayCircleFill, IconPlayPause, IconPlaylistAdd, IconPlaylistAddCheck, IconPlaylistAddFill, IconPlaylistRemove, IconPolicy, IconPolicyFill, IconPreview, IconPreviewFill, IconPrint, IconPrintFill, IconPublic, IconQrCode, IconQrCodeScanner, IconQuestionMark, IconRampLeft, IconRampRight, IconRealEstateAgent, IconRealEstateAgentFill, IconReceipt, IconReceiptFill, IconReceiptLong, IconReceiptLongFill, IconRecordVoiceOver, IconRecordVoiceOverFill, IconRecycling, IconRefresh, IconRemove, IconRemoveShoppingCart, IconRentSign, IconReplay, IconReply, IconReplyAll, IconReplyFill, IconReport, IconReportFill, IconResize, IconResizeHandle, IconRestaurant, IconRightPanelClose, IconRightPanelCloseFill, IconRightPanelOpen, IconRightPanelOpenFill, IconRoofing, IconRoofingFill, IconRoomPreferences, IconRoomPreferencesFill, IconRoundaboutLeft, IconRoundaboutRight, IconRoute, IconRouteFill, IconSave, IconSaveFill, IconSaveSearch, IconSaveSearchFill, IconScatterPlot, IconScatterPlotFill, IconSchedule, IconScheduleFill, IconScheduleSend, IconScheduleSendFill, IconSchema, IconSchemaFill, IconSchool, IconSchoolFill, IconScience, IconScienceFill, IconScore, IconScoreFill, IconSearch, IconSegment, IconSell, IconSellFill, IconSeller, IconSellerFill, IconSend, IconSendFill, IconSentimentDissatisfied, IconSentimentDissatisfiedFill, IconSentimentExtremelyDissatisfied, IconSentimentExtremelyDissatisfiedFill, IconSentimentNeutral, IconSentimentNeutralFill, IconSentimentSatisfied, IconSentimentSatisfiedFill, IconSentimentVeryDissatisfied, IconSentimentVeryDissatisfiedFill, IconSentimentVerySatisfied, IconSentimentVerySatisfiedFill, IconSettings, IconSettingsAccessibility, IconSettingsFill, IconShare, IconShareFill, IconShippingContainer, IconShippingContainerFill, IconShoppingBag, IconShoppingBagFill, IconShoppingCart, IconShoppingCartCheckout, IconShoppingCartFill, IconShoppingCartOff, IconShoppingCartOffFill, IconSick, IconSickFill, IconSignLanguage, IconSignLanguageFill, IconSignalCellularAlt, IconSkipNext, IconSkipNextFill, IconSkipPrevious, IconSkipPreviousFill, IconSlabSerif, IconSlabSerifFill, IconSmartphone, IconSmartphoneFill, IconSms, IconSmsFill, IconSort, IconSortByAlpha, IconSortByReverseAlpha, IconSortFill, IconSouth, IconSouthEast, IconSouthFill, IconSouthWest, IconSquare, IconSquareFill, IconSquareFoot, IconStackedBarChart, IconStackedEmail, IconStackedEmailFill, IconStacks, IconStacksFill, IconStar, IconStarFill, IconStop, IconStopCircle, IconStopCircleFill, IconStopFill, IconStorefront, IconStorefrontFill, IconStraight, IconStraightFill, IconStraighten, IconStraightenFill, IconStressManagement, IconStressManagementFill, IconSubject, IconSubway, IconSubwayFill, IconSwapVert, IconSwapVerticalCircle, IconSwapVerticalCircleFill, IconSymbolAfghanistan, IconSymbolAlandIsland, IconSymbolAlbania, IconSymbolAlgeria, IconSymbolAmericanSamoa, IconSymbolAndorra, IconSymbolAngola, IconSymbolAnguilla, IconSymbolAntiguaAndBarbuda, IconSymbolArgentina, IconSymbolArmenia, IconSymbolAruba, IconSymbolAustralia, IconSymbolAustria, IconSymbolAzerbaijan, IconSymbolBahamas, IconSymbolBahrain, IconSymbolBangladesh, IconSymbolBarbados, IconSymbolBelarus, IconSymbolBelgium, IconSymbolBelize, IconSymbolBenin, IconSymbolBermuda, IconSymbolBhutan, IconSymbolBolivia, IconSymbolBonaire, IconSymbolBosniaAndHerzegovina, IconSymbolBotswana, IconSymbolBrazil, IconSymbolBrunei, IconSymbolBulgaria, IconSymbolBurkinaFaso, IconSymbolBurundi, IconSymbolCambodia, IconSymbolCameroon, IconSymbolCanada, IconSymbolCaymanIslands, IconSymbolCentralAfricanRepublic, IconSymbolChad, IconSymbolChile, IconSymbolChina, IconSymbolChristmasIsland, IconSymbolCocosIslands, IconSymbolColombia, IconSymbolComoros, IconSymbolCookIsland, IconSymbolCostaRica, IconSymbolCroatia, IconSymbolCuba, IconSymbolCuracao, IconSymbolCyprus, IconSymbolCzechRepublic, IconSymbolDemocraticRepublicOfTheCongo, IconSymbolDenmark, IconSymbolDjibouti, IconSymbolDominica, IconSymbolDominicanRepublic, IconSymbolEcuador, IconSymbolEgypt, IconSymbolElSalvador, IconSymbolEquatorialGuinea, IconSymbolEritrea, IconSymbolEstonia, IconSymbolEswatini, IconSymbolEthiopia, IconSymbolFalklandIslands, IconSymbolFaroeIslands, IconSymbolFederatedStatesOfMicronesia, IconSymbolFiji, IconSymbolFinland, IconSymbolFrance, IconSymbolFrenchGuiana, IconSymbolFrenchPolynesia, IconSymbolGabon, IconSymbolGambia, IconSymbolGeorgia, IconSymbolGermany, IconSymbolGhana, IconSymbolGibraltar, IconSymbolGreece, IconSymbolGreeland, IconSymbolGrenada, IconSymbolGrenadines, IconSymbolGuam, IconSymbolGuatemala, IconSymbolGuernsey, IconSymbolGuinea, IconSymbolGuineaBissau, IconSymbolGuyana, IconSymbolHaiti, IconSymbolHonduras, IconSymbolHongKong, IconSymbolHungary, IconSymbolIceland, IconSymbolIndia, IconSymbolIndianOceanTerritory, IconSymbolIndonesia, IconSymbolIran, IconSymbolIraq, IconSymbolIreland, IconSymbolIsleOfMan, IconSymbolIsrael, IconSymbolItaly, IconSymbolJamaica, IconSymbolJapan, IconSymbolJersey, IconSymbolJordan, IconSymbolKazakhstan, IconSymbolKenya, IconSymbolKiribati, IconSymbolKuwait, IconSymbolKyrgyzstan, IconSymbolLaos, IconSymbolLatvia, IconSymbolLebanon, IconSymbolLesotho, IconSymbolLiberia, IconSymbolLibya, IconSymbolLiechtenstein, IconSymbolLithuania, IconSymbolLuxembourg, IconSymbolMacau, IconSymbolMadagascar, IconSymbolMalasia, IconSymbolMalawi, IconSymbolMaldives, IconSymbolMali, IconSymbolMalta, IconSymbolMarshallIslands, IconSymbolMartinique, IconSymbolMauritania, IconSymbolMauritius, IconSymbolMexico, IconSymbolMoldova, IconSymbolMonaco, IconSymbolMongolia, IconSymbolMontenegro, IconSymbolMontserrat, IconSymbolMorroco, IconSymbolMozambique, IconSymbolMyanmar, IconSymbolNamibia, IconSymbolNauru, IconSymbolNepal, IconSymbolNetherlands, IconSymbolNewZealand, IconSymbolNicaragua, IconSymbolNiger, IconSymbolNigeria, IconSymbolNiue, IconSymbolNorfolkIsland, IconSymbolNorthKorea, IconSymbolNorthMacedonia, IconSymbolNorthernMarianaIslands, IconSymbolNorway, IconSymbolOman, IconSymbolPakistan, IconSymbolPalau, IconSymbolPalestine, IconSymbolPanama, IconSymbolPapuaNewGuinea, IconSymbolParaguay, IconSymbolPeru, IconSymbolPhilippines, IconSymbolPitcairnIslands, IconSymbolPoland, IconSymbolPortugal, IconSymbolPuertoRico, IconSymbolQatar, IconSymbolRepublicOfTheCongo, IconSymbolRomania, IconSymbolRussia, IconSymbolRwanda, IconSymbolSaintBarthelemy, IconSymbolSamoa, IconSymbolSanMarino, IconSymbolSaoTomeAndPrincipe, IconSymbolSaudiArabia, IconSymbolSenegal, IconSymbolSerbia, IconSymbolSeychelles, IconSymbolSierraLeone, IconSymbolSingapore, IconSymbolSintMaarten, IconSymbolSlovakia, IconSymbolSlovenia, IconSymbolSolomonIslands, IconSymbolSomalia, IconSymbolSouthAfrica, IconSymbolSouthKorea, IconSymbolSouthSudan, IconSymbolSpain, IconSymbolSriLanka, IconSymbolStKittsNevis, IconSymbolStLucia, IconSymbolSudan, IconSymbolSuriname, IconSymbolSweden, IconSymbolSwitzerland, IconSymbolSyria, IconSymbolTaiwan, IconSymbolTajikistan, IconSymbolTanzania, IconSymbolThailand, IconSymbolTimorLeste, IconSymbolTogo, IconSymbolTokelau, IconSymbolTonga, IconSymbolTrinidadAndTobago, IconSymbolTunisia, IconSymbolTurkey, IconSymbolTurkmenistan, IconSymbolTurksAndCaicos, IconSymbolTuvalu, IconSymbolUganda, IconSymbolUkraine, IconSymbolUnitedArabEmirates, IconSymbolUnitedKingdom, IconSymbolUnitedKingdomOfGreatBritainAndNorthernIreland, IconSymbolUnitedStates, IconSymbolUruguay, IconSymbolUzbekistan, IconSymbolVanuatu, IconSymbolVenezuela, IconSymbolVietnam, IconSymbolVirginIslands, IconSymbolVirginIslandsBritish, IconSymbolWestSahara, IconSymbolYemen, IconSymbolZambia, IconSymbolZimbabwe, IconSync, IconTableChart, IconTableChartFill, IconTableChartView, IconTableChartViewFill, IconTablet, IconTabletFill, IconTag, IconTaxiAlert, IconTaxiAlertFill, IconThermometer, IconThermometerAdd, IconThermometerFill, IconThermometerGain, IconThermometerGainFill, IconThermometerLoss, IconThermometerLossFill, IconThermostat, IconThermostatAuto, IconThermostatFill, IconThumbDown, IconThumbDownFill, IconThumbUp, IconThumbUpFill, IconTimeline, IconTimer, IconTimerFill, IconTitle, IconToken, IconTokenFill, IconTrain, IconTrainFill, IconTranslate, IconTravel, IconTravelExplore, IconTravelFill, IconTrendingDown, IconTrendingFlat, IconTrendingUp, IconTriangle, IconTriangleFill, IconTrip, IconTripFill, IconTrophy, IconTrophyFill, IconTune, IconTurnLeft, IconTurnRight, IconTurnSharpLeft, IconTurnSlightLeft, IconTurnSlightRight, IconTv, IconTvFill, IconUTurnLeft, IconUTurnRight, IconUnarchive, IconUnarchiveFill, IconUndo, IconUnsubscribe, IconUnsubscribeFill, IconUpcoming, IconUpcomingFill, IconVerifiedUser, IconVerifiedUserFill, IconVerticalAlignBottom, IconVerticalAlignCenter, IconVerticalAlignTop, IconVerticalDistribute, IconVideoLibrary, IconVideoLibraryFill, IconVideocam, IconVideocamFill, IconViewCarousel, IconViewCarouselFill, IconViewColumn, IconViewColumn2, IconViewColumn2Fill, IconViewColumnFill, IconViewDay, IconViewDayFill, IconViewInAr, IconViewInArFill, IconViewList, IconViewListFill, IconViewModule, IconViewModuleFill, IconVilla, IconVillaFill, IconVisa, IconVisibility, IconVisibilityFill, IconVisibilityOff, IconVisibilityOffFill, IconVoicemail, IconVolumeDown, IconVolumeDownFill, IconVolumeMute, IconVolumeMuteFill, IconVolumeOff, IconVolumeOffFill, IconVolumeUp, IconVolumeUpFill, IconVolunteerActivism, IconVolunteerActivismFill, IconWallet, IconWarehouse, IconWarehouseFill, IconWarning, IconWarningFill, IconWc, IconWest, IconWifi, IconWifiCalling, IconWifiCallingFill, IconWifiFill, IconWifiHome, IconWifiHomeFill, IconWineBar, IconWineBarFill, IconWoman, IconWork, IconWorkFill, IconX, IconXWhite, IconYoutube, IconYoutubeBlack, IconYoutubeWhite, IconZoomIn, IconZoomInMap, IconZoomOut, IconZoomOutMap, KeyNavigationUtility, ThemeService, UIAccordion, UIAccordionSection, UIAvatar, UIAvatarGroup, UIBadge, UIBannerAlert, UIBreadcrumb, UIButton, UICalendar, UICard, UICheckbox, UICheckboxGroup, UICheckboxGroupField, UICheckboxOption, UIChip, UIChipGroup, UIDatePicker, UIDatePickerField, UIDialog, UIDivider, UIFab, UIField, UIFlexDirective, UIFloatingDirective, UIFocusTrapDirective, UIIcon, UIInlineAlert, UIInput, UIInputField, UIInputNumber, UIInputNumberField, UIInputPhone, UIInputPhoneField, UIKeyNavigationDirective, UILinkDirective, UIListItem, UIMatchParentHeightDirective, UIMenu, UIModal, UIOutsideClickDirective, UIPagination, UIPortalDirective, UIRadio, UIRadioGroup, UIRadioGroupField, UIRadioOption, UIScrim, UISegmentedControl, UISelect, UISelectField, UISwitch, UISwitchOption, UITabGroup, UITabList, UITabListUtility, UITable, UITableCell, UITag, UITextarea, UITextareaField, UITooltip, UITooltipDirective, UITxtDirective, describedById, errorMessageId, formatCell, labelledById, updateBrandStylesheet };
|
|
12397
|
-
export type { AccordionProps, AccordionSectionProps, ArrowKeyNames, ArrowKeyNavigationCallbackParams, AvatarGroupProps, AvatarItem, AvatarProps, BadgeItem, BadgeProps, BannerAlertProps, Brand, BreadcrumbItem, BreadcrumbProps, BuiltInColumnSorters, ButtonFormat, ButtonProps, ButtonVariant, ButtonWidth, CalendarProps, CallToActionButton, CardProps, CheckboxGroupFieldProps, CheckboxGroupOption, CheckboxGroupProps, CheckboxOptionProps, CheckboxProps, ChipGroupItemProps, ChipGroupProps, ChipProps, CountryCodeItem, CountryCodeOption, DatePickerFieldProps, DatePickerProps, DialogProps, DividerProps, FabContainer, FabIconType, FabPlacement, FabProps, FabSize, FabVariant, FieldProps, FlexProps, FloatingProps, FocusTrapProps, IconProps, InlineAlertProps, InputFieldProps, InputNumberFieldProps, InputNumberProps, InputPhoneFieldProps, InputPhoneProps, InputProps, KeyNavigationProps, KeyNavigationUtilityProps, LinkProps, MenuProps, ModalCallToAction, ModalProps, PaginationProps, Placement, PortalContainer, PortalProps, RadioGroupFieldProps, RadioGroupOption, RadioGroupProps, RadioOptionProps, RadioProps, ScrimProps, SegmentedControlOption, SegmentedControlProps, SelectAllProps, SelectFieldProps, SelectItem, SelectOption, SelectProps, SizeVariant, SortOrder, SortState, SwitchOptionProps, SwitchProps, TabGroupProps, TabGroupSize, TabListProps, TabOption, TabSize, TableCellValue, TableCellValueFormatter, TableColumn, TableColumnSortingFn, TableProps, TableRow, TableSize, TagProps, TextareaFieldProps, TextareaProps, Theme, TooltipPlacement, TooltipProps, TxtProps, TxtVariant, UITabListProps };
|
|
12442
|
+
export type { AccordionProps, AccordionSectionProps, ArrowKeyNames, ArrowKeyNavigationCallbackParams, AvatarGroupProps, AvatarItem, AvatarProps, BadgeItem, BadgeProps, BannerAlertProps, Brand, BreadcrumbItem, BreadcrumbProps, BuiltInColumnSorters, ButtonFormat, ButtonProps, ButtonVariant, ButtonWidth, CalendarProps, CallToActionButton, CardProps, CheckboxGroupFieldProps, CheckboxGroupOption, CheckboxGroupProps, CheckboxOptionProps, CheckboxProps, ChipGroupItemProps, ChipGroupProps, ChipProps, ControlFieldProps, CountryCodeItem, CountryCodeOption, DatePickerFieldProps, DatePickerProps, DialogProps, DividerProps, FabContainer, FabIconType, FabPlacement, FabProps, FabSize, FabVariant, FieldProps, FlexProps, FloatingProps, FocusTrapProps, IconProps, InlineAlertProps, InputFieldProps, InputNumberFieldProps, InputNumberProps, InputPhoneFieldProps, InputPhoneProps, InputProps, KeyNavigationProps, KeyNavigationUtilityProps, LinkProps, MenuProps, ModalCallToAction, ModalProps, PaginationProps, Placement, PortalContainer, PortalProps, RadioGroupFieldProps, RadioGroupOption, RadioGroupProps, RadioOptionProps, RadioProps, ScrimProps, SegmentedControlOption, SegmentedControlProps, SelectAllProps, SelectFieldProps, SelectItem, SelectOption, SelectProps, SizeVariant, SortOrder, SortState, SwitchOptionProps, SwitchProps, TabGroupProps, TabGroupSize, TabListBaseProps, TabListProps, TabOption, TabSize, TableCellValue, TableCellValueFormatter, TableColumn, TableColumnSortingFn, TableProps, TableRow, TableSize, TagProps, TextareaFieldProps, TextareaProps, Theme, TooltipPlacement, TooltipProps, TxtProps, TxtVariant, UITabListProps };
|