@bspk/ui-ngx 1.2.2 → 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 +386 -322
- package/fesm2022/bspk-ui-ngx.mjs.map +1 -1
- package/index.d.ts +300 -210
- package/package.json +1 -1
- package/styles/base.scss +1 -1
package/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { OutputEmitterRef, InputSignal, ModelSignal, Signal, OnInit, AfterViewInit, EventEmitter, ElementRef, OnChanges, OnDestroy,
|
|
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';
|
|
9
|
+
import { BRANDS } from '@bspk/styles/brands';
|
|
9
10
|
|
|
10
11
|
type Output<T> = OutputEmitterRef<T>;
|
|
11
12
|
type AsInputOrSignal<V> = undefined extends V ? InputSignal<V | undefined> | ModelSignal<V | undefined> | Signal<V | undefined> : InputSignal<NonNullable<V>> | ModelSignal<NonNullable<V>> | Signal<NonNullable<V>>;
|
|
@@ -22,14 +23,6 @@ type AsSignal<T> = {
|
|
|
22
23
|
type AlertVariant = 'error' | 'informational' | 'success' | 'warning';
|
|
23
24
|
type ButtonSize = 'large' | 'medium' | 'small' | 'x-small';
|
|
24
25
|
interface CommonProps {
|
|
25
|
-
/**
|
|
26
|
-
* Indicates that the element is in an invalid state and displays the error theme.
|
|
27
|
-
*
|
|
28
|
-
* If set to true, an accompanying error message should be provided.
|
|
29
|
-
*
|
|
30
|
-
* @default false
|
|
31
|
-
*/
|
|
32
|
-
invalid?: boolean;
|
|
33
26
|
/** The id of the element. If not provided one will be generated. */
|
|
34
27
|
id?: string;
|
|
35
28
|
/**
|
|
@@ -62,12 +55,6 @@ interface CommonProps {
|
|
|
62
55
|
* @default false
|
|
63
56
|
*/
|
|
64
57
|
readOnly?: boolean;
|
|
65
|
-
/**
|
|
66
|
-
* The [name](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name) of the control.
|
|
67
|
-
*
|
|
68
|
-
* @required
|
|
69
|
-
*/
|
|
70
|
-
name: string;
|
|
71
58
|
/**
|
|
72
59
|
* The value of the control.
|
|
73
60
|
*
|
|
@@ -134,23 +121,29 @@ interface CommonProps {
|
|
|
134
121
|
/** Additional CSS classes to apply. */
|
|
135
122
|
class?: string;
|
|
136
123
|
}
|
|
137
|
-
interface FieldControlProps
|
|
124
|
+
interface FieldControlProps {
|
|
138
125
|
ariaDescribedBy?: CommonProps['ariaDescribedBy'];
|
|
139
126
|
ariaErrorMessage?: CommonProps['ariaErrorMessage'];
|
|
140
127
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
141
128
|
ariaLabelledBy?: CommonProps['ariaLabelledBy'];
|
|
142
129
|
disabled?: CommonProps['disabled'];
|
|
143
130
|
id?: CommonProps['id'];
|
|
144
|
-
invalid?: CommonProps['invalid'];
|
|
145
|
-
name: CommonProps['name'];
|
|
146
131
|
readOnly?: CommonProps['readOnly'];
|
|
147
132
|
required?: CommonProps['required'];
|
|
148
133
|
/**
|
|
149
|
-
* The
|
|
134
|
+
* The [name](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#name) of the control.
|
|
150
135
|
*
|
|
151
136
|
* @required
|
|
152
137
|
*/
|
|
153
|
-
|
|
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;
|
|
154
147
|
}
|
|
155
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 & {});
|
|
156
149
|
interface UtilityBase<PropsType> {
|
|
@@ -200,19 +193,25 @@ interface AccordionSectionProps {
|
|
|
200
193
|
/**
|
|
201
194
|
* A utility component representing a single section within an accordion.
|
|
202
195
|
*
|
|
203
|
-
* @
|
|
196
|
+
* @name AccordionSection
|
|
197
|
+
* @phase Utility
|
|
204
198
|
*/
|
|
205
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
|
+
*/
|
|
206
204
|
toggleOpen: i0.OutputEmitterRef<string>;
|
|
207
205
|
readonly title: i0.InputSignal<string>;
|
|
208
206
|
readonly subtitle: i0.InputSignal<string | undefined>;
|
|
209
|
-
readonly isOpen: i0.ModelSignal<boolean | undefined>;
|
|
210
207
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
211
208
|
readonly id: i0.InputSignal<string | undefined>;
|
|
212
209
|
readonly leading: i0.InputSignal<string | undefined>;
|
|
213
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>;
|
|
214
213
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIAccordionSection, never>;
|
|
215
|
-
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>;
|
|
216
215
|
}
|
|
217
216
|
|
|
218
217
|
interface AccordionProps {
|
|
@@ -342,6 +341,7 @@ declare class UIAvatar implements AfterViewInit, AsSignal<AvatarProps> {
|
|
|
342
341
|
private renderer;
|
|
343
342
|
private env;
|
|
344
343
|
private host;
|
|
344
|
+
private document;
|
|
345
345
|
private tooltipUtility;
|
|
346
346
|
get computedInitials(): string | undefined;
|
|
347
347
|
ngAfterViewInit(): void;
|
|
@@ -9114,6 +9114,65 @@ interface ScrollLimitStyleProps {
|
|
|
9114
9114
|
scrollLimit?: number;
|
|
9115
9115
|
}
|
|
9116
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
|
+
|
|
9117
9176
|
interface ListItemProps {
|
|
9118
9177
|
active?: CommonProps['active'];
|
|
9119
9178
|
ariaDisabled?: CommonProps['ariaDisabled'];
|
|
@@ -9175,6 +9234,7 @@ interface ListItemProps {
|
|
|
9175
9234
|
* @phase Dev
|
|
9176
9235
|
*/
|
|
9177
9236
|
declare class UIListItem implements AsSignal<ListItemProps> {
|
|
9237
|
+
/** Emits when the ListItem is activated by click or keyboard interaction. */
|
|
9178
9238
|
onClick: EventEmitter<Event>;
|
|
9179
9239
|
readonly active: i0.InputSignal<boolean | undefined>;
|
|
9180
9240
|
readonly owner: i0.InputSignal<string | undefined>;
|
|
@@ -9186,7 +9246,7 @@ declare class UIListItem implements AsSignal<ListItemProps> {
|
|
|
9186
9246
|
readonly htmlFor: i0.InputSignal<string | undefined>;
|
|
9187
9247
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9188
9248
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
9189
|
-
readonly as: i0.InputSignal<"button" | "
|
|
9249
|
+
readonly as: i0.InputSignal<"button" | "label" | "a" | "div" | undefined>;
|
|
9190
9250
|
readonly href: i0.InputSignal<string | undefined>;
|
|
9191
9251
|
readonly label: i0.InputSignal<string>;
|
|
9192
9252
|
readonly subText: i0.InputSignal<string | undefined>;
|
|
@@ -9198,7 +9258,7 @@ declare class UIListItem implements AsSignal<ListItemProps> {
|
|
|
9198
9258
|
get tabindex(): number;
|
|
9199
9259
|
get isReadonly(): boolean;
|
|
9200
9260
|
get isDisabled(): boolean;
|
|
9201
|
-
get As(): "button" | "
|
|
9261
|
+
get As(): "button" | "label" | "a" | "div";
|
|
9202
9262
|
get role(): string | undefined;
|
|
9203
9263
|
handleClick(event: Event): void;
|
|
9204
9264
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIListItem, never>;
|
|
@@ -9229,6 +9289,7 @@ interface BreadcrumbItem extends ListItemProps {
|
|
|
9229
9289
|
interface BreadcrumbProps extends ScrollLimitStyleProps {
|
|
9230
9290
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
9231
9291
|
id?: CommonProps['id'];
|
|
9292
|
+
variant?: LinkProps['variant'];
|
|
9232
9293
|
/**
|
|
9233
9294
|
* The array of breadcrumb items.
|
|
9234
9295
|
*
|
|
@@ -9282,12 +9343,13 @@ declare class UIBreadcrumb implements AsSignal<BreadcrumbProps> {
|
|
|
9282
9343
|
readonly items: i0.InputSignal<BreadcrumbItem[]>;
|
|
9283
9344
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9284
9345
|
readonly scrollLimit: i0.InputSignal<number | undefined>;
|
|
9346
|
+
readonly variant: i0.InputSignal<"default" | "subtle-inverse" | "subtle" | undefined>;
|
|
9285
9347
|
readonly shouldRender: i0.Signal<boolean>;
|
|
9286
9348
|
readonly firstItem: i0.Signal<BreadcrumbItem>;
|
|
9287
9349
|
readonly lastItem: i0.Signal<BreadcrumbItem>;
|
|
9288
9350
|
readonly middleItems: i0.Signal<BreadcrumbItem[]>;
|
|
9289
9351
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIBreadcrumb, never>;
|
|
9290
|
-
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>;
|
|
9291
9353
|
}
|
|
9292
9354
|
|
|
9293
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;
|
|
@@ -9376,7 +9438,7 @@ interface ButtonProps {
|
|
|
9376
9438
|
* @name Button
|
|
9377
9439
|
* @phase Dev
|
|
9378
9440
|
*/
|
|
9379
|
-
declare class UIButton implements AsSignal<ButtonProps
|
|
9441
|
+
declare class UIButton implements AsSignal<ButtonProps>, OnInit {
|
|
9380
9442
|
/** Event emitted when the button is clicked. */
|
|
9381
9443
|
onClick: EventEmitter<MouseEvent>;
|
|
9382
9444
|
/** Event emitted when the button receives focus. */
|
|
@@ -9387,7 +9449,6 @@ declare class UIButton implements AsSignal<ButtonProps> {
|
|
|
9387
9449
|
onMouseEnter: EventEmitter<MouseEvent>;
|
|
9388
9450
|
/** Event emitted when mouse leaves the button. */
|
|
9389
9451
|
onMouseLeave: EventEmitter<MouseEvent>;
|
|
9390
|
-
readonly buttonElement: i0.Signal<ElementRef<HTMLButtonElement>>;
|
|
9391
9452
|
readonly style: i0.InputSignal<string | undefined>;
|
|
9392
9453
|
readonly label: i0.InputSignal<string>;
|
|
9393
9454
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
@@ -9405,10 +9466,12 @@ declare class UIButton implements AsSignal<ButtonProps> {
|
|
|
9405
9466
|
readonly type: i0.InputSignal<"button" | "reset" | "submit" | undefined>;
|
|
9406
9467
|
readonly owner: i0.InputSignal<string | undefined>;
|
|
9407
9468
|
readonly class: i0.InputSignal<string | undefined>;
|
|
9469
|
+
host: ElementRef<HTMLElement>;
|
|
9408
9470
|
get nativeElement(): HTMLButtonElement;
|
|
9409
9471
|
get shouldShowLabel(): boolean;
|
|
9410
9472
|
get tooltipLabel(): string | undefined;
|
|
9411
9473
|
get buttonClasses(): string;
|
|
9474
|
+
ngOnInit(): void;
|
|
9412
9475
|
handleClick(event: MouseEvent): void;
|
|
9413
9476
|
handleFocus(event: FocusEvent): void;
|
|
9414
9477
|
handleBlur(event: FocusEvent): void;
|
|
@@ -9440,27 +9503,25 @@ interface CalendarProps {
|
|
|
9440
9503
|
* Allows customers to select the date, month, and year.
|
|
9441
9504
|
*
|
|
9442
9505
|
* @example
|
|
9443
|
-
* <ui-calendar (
|
|
9506
|
+
* <ui-calendar (valueChange)="handleChange($event)" />
|
|
9444
9507
|
*
|
|
9445
9508
|
* @name Calendar
|
|
9446
9509
|
* @phase Dev
|
|
9447
9510
|
*/
|
|
9448
9511
|
declare class UICalendar implements AfterViewInit, OnInit, AsSignal<CalendarProps> {
|
|
9449
|
-
onChange: EventEmitter<Date>;
|
|
9450
9512
|
IconKeyboardDoubleArrowLeft: typeof IconKeyboardDoubleArrowLeft;
|
|
9451
9513
|
IconKeyboardDoubleArrowRight: typeof IconKeyboardDoubleArrowRight;
|
|
9452
9514
|
IconChevronLeft: typeof IconChevronLeft;
|
|
9453
9515
|
IconChevronRight: typeof IconChevronRight;
|
|
9454
|
-
readonly value: i0.
|
|
9516
|
+
readonly value: i0.ModelSignal<Date | undefined>;
|
|
9455
9517
|
readonly focusTrap: i0.InputSignal<boolean | undefined>;
|
|
9456
9518
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9457
|
-
activeDate: Date
|
|
9519
|
+
readonly activeDate: i0.WritableSignal<Date>;
|
|
9458
9520
|
format: typeof format;
|
|
9459
9521
|
isSameDay: typeof isSameDay;
|
|
9460
9522
|
addYears: typeof addYears;
|
|
9461
9523
|
addMonths: typeof addMonths;
|
|
9462
9524
|
private readonly firstButton;
|
|
9463
|
-
private readonly lastButton;
|
|
9464
9525
|
private readonly grid;
|
|
9465
9526
|
constructor();
|
|
9466
9527
|
get rows(): Date[][];
|
|
@@ -9468,12 +9529,11 @@ declare class UICalendar implements AfterViewInit, OnInit, AsSignal<CalendarProp
|
|
|
9468
9529
|
ngOnInit(): void;
|
|
9469
9530
|
setFocus(): void;
|
|
9470
9531
|
ngAfterViewInit(): void;
|
|
9471
|
-
setActiveDate(date: Date): void;
|
|
9472
9532
|
generateOptionId(date: Date): string;
|
|
9473
9533
|
onFirstButtonKeydown(event: KeyboardEvent): void;
|
|
9474
9534
|
onGridKeydown(event: KeyboardEvent): void;
|
|
9475
9535
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICalendar, never>;
|
|
9476
|
-
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>;
|
|
9477
9537
|
}
|
|
9478
9538
|
|
|
9479
9539
|
interface CardProps {
|
|
@@ -9560,13 +9620,11 @@ interface CheckboxProps {
|
|
|
9560
9620
|
* @phase Dev
|
|
9561
9621
|
*/
|
|
9562
9622
|
declare class UICheckbox implements AsSignal<CheckboxProps> {
|
|
9563
|
-
/** Emits the new checked state (true or false) */
|
|
9564
|
-
checkedChange: i0.OutputEmitterRef<boolean>;
|
|
9565
9623
|
readonly name: i0.InputSignal<string>;
|
|
9566
|
-
readonly value: i0.
|
|
9624
|
+
readonly value: i0.ModelSignal<string>;
|
|
9567
9625
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
9568
9626
|
readonly id: i0.InputSignal<string | undefined>;
|
|
9569
|
-
readonly checked: i0.
|
|
9627
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
9570
9628
|
readonly indeterminate: i0.InputSignal<boolean | undefined>;
|
|
9571
9629
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9572
9630
|
readonly invalid: i0.InputSignal<boolean | undefined>;
|
|
@@ -9578,7 +9636,7 @@ declare class UICheckbox implements AsSignal<CheckboxProps> {
|
|
|
9578
9636
|
constructor();
|
|
9579
9637
|
onInputChange(): void;
|
|
9580
9638
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICheckbox, never>;
|
|
9581
|
-
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>;
|
|
9582
9640
|
}
|
|
9583
9641
|
|
|
9584
9642
|
interface CheckboxOptionProps extends CheckboxProps {
|
|
@@ -9634,7 +9692,7 @@ interface SelectAllProps {
|
|
|
9634
9692
|
description?: CheckboxOptionProps['description'];
|
|
9635
9693
|
label?: CheckboxOptionProps['label'];
|
|
9636
9694
|
}
|
|
9637
|
-
interface CheckboxGroupProps extends FieldControlProps
|
|
9695
|
+
interface CheckboxGroupProps extends FieldControlProps {
|
|
9638
9696
|
/**
|
|
9639
9697
|
* The options for the checkboxes.
|
|
9640
9698
|
*
|
|
@@ -9657,6 +9715,12 @@ interface CheckboxGroupProps extends FieldControlProps<string[]> {
|
|
|
9657
9715
|
selectAll?: boolean;
|
|
9658
9716
|
/** The props for the select all checkbox. */
|
|
9659
9717
|
selectAllProps?: SelectAllProps;
|
|
9718
|
+
/**
|
|
9719
|
+
* The value of the selected checkboxes.
|
|
9720
|
+
*
|
|
9721
|
+
* @required
|
|
9722
|
+
*/
|
|
9723
|
+
value?: string[];
|
|
9660
9724
|
}
|
|
9661
9725
|
/**
|
|
9662
9726
|
* A group of checkboxes that allows users to choose one or more items from a list or turn an feature on or off.
|
|
@@ -9667,10 +9731,9 @@ interface CheckboxGroupProps extends FieldControlProps<string[]> {
|
|
|
9667
9731
|
* @phase Stable
|
|
9668
9732
|
*/
|
|
9669
9733
|
declare class UICheckboxGroup implements AsSignal<CheckboxGroupProps> {
|
|
9670
|
-
valueChange: i0.OutputEmitterRef<string[]>;
|
|
9671
9734
|
readonly name: i0.InputSignal<string>;
|
|
9672
9735
|
readonly options: i0.InputSignal<CheckboxGroupOption[]>;
|
|
9673
|
-
readonly value: i0.
|
|
9736
|
+
readonly value: i0.ModelSignal<string[] | undefined>;
|
|
9674
9737
|
readonly selectAll: i0.InputSignal<boolean | undefined>;
|
|
9675
9738
|
readonly selectAllProps: i0.InputSignal<SelectAllProps | undefined>;
|
|
9676
9739
|
readonly id: i0.InputSignal<string | undefined>;
|
|
@@ -9687,13 +9750,13 @@ declare class UICheckboxGroup implements AsSignal<CheckboxGroupProps> {
|
|
|
9687
9750
|
availableOptions(): CheckboxGroupOption[];
|
|
9688
9751
|
allChecked(): boolean;
|
|
9689
9752
|
someChecked(): boolean;
|
|
9690
|
-
onSelectAllChange(checked: boolean): void;
|
|
9691
|
-
onOptionChange(optionValue: string, checked: boolean): void;
|
|
9753
|
+
onSelectAllChange(checked: boolean | undefined): void;
|
|
9754
|
+
onOptionChange(optionValue: string, checked: boolean | undefined): void;
|
|
9692
9755
|
static ɵfac: i0.ɵɵFactoryDeclaration<UICheckboxGroup, never>;
|
|
9693
|
-
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>;
|
|
9694
9757
|
}
|
|
9695
9758
|
|
|
9696
|
-
interface
|
|
9759
|
+
interface ControlFieldProps {
|
|
9697
9760
|
style?: CommonProps['style'];
|
|
9698
9761
|
/** Displays an error message and marks the field as invalid. */
|
|
9699
9762
|
errorMessage?: string;
|
|
@@ -9713,6 +9776,8 @@ interface FieldProps {
|
|
|
9713
9776
|
labelTrailing?: string;
|
|
9714
9777
|
/** Marks the field as required. */
|
|
9715
9778
|
required?: boolean;
|
|
9779
|
+
}
|
|
9780
|
+
interface FieldProps extends ControlFieldProps {
|
|
9716
9781
|
/**
|
|
9717
9782
|
* The id attribute of the form control rendered in children (e.g., Input, Select, Textarea). Used to associate the
|
|
9718
9783
|
* label (htmlFor) with the control for accessibility. Must exactly match the control's id.
|
|
@@ -9759,7 +9824,8 @@ declare function labelledById(controlId: string): string;
|
|
|
9759
9824
|
declare function errorMessageId(controlId: string): string;
|
|
9760
9825
|
declare function describedById(controlId: string): string;
|
|
9761
9826
|
|
|
9762
|
-
|
|
9827
|
+
interface CheckboxGroupFieldProps extends ControlFieldProps, CheckboxGroupProps {
|
|
9828
|
+
}
|
|
9763
9829
|
/**
|
|
9764
9830
|
* A field wrapper for the UICheckboxGroup component.
|
|
9765
9831
|
*
|
|
@@ -9880,8 +9946,12 @@ interface ChipGroupProps {
|
|
|
9880
9946
|
* @default wrap
|
|
9881
9947
|
*/
|
|
9882
9948
|
overflow?: 'scroll' | 'wrap';
|
|
9883
|
-
/**
|
|
9884
|
-
|
|
9949
|
+
/**
|
|
9950
|
+
* Only Chip components should be used as items.
|
|
9951
|
+
*
|
|
9952
|
+
* @required
|
|
9953
|
+
*/
|
|
9954
|
+
items: ChipGroupItemProps[];
|
|
9885
9955
|
}
|
|
9886
9956
|
/**
|
|
9887
9957
|
* A component that manages the layout of a group of chips.
|
|
@@ -9891,12 +9961,12 @@ interface ChipGroupProps {
|
|
|
9891
9961
|
*/
|
|
9892
9962
|
declare class UIChipGroup implements AsSignal<ChipGroupProps> {
|
|
9893
9963
|
readonly overflow: i0.InputSignal<"scroll" | "wrap" | undefined>;
|
|
9894
|
-
readonly items: i0.InputSignal<ChipGroupItemProps[]
|
|
9964
|
+
readonly items: i0.InputSignal<ChipGroupItemProps[]>;
|
|
9895
9965
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIChipGroup, never>;
|
|
9896
|
-
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>;
|
|
9897
9967
|
}
|
|
9898
9968
|
|
|
9899
|
-
interface DatePickerProps extends FieldControlProps
|
|
9969
|
+
interface DatePickerProps extends FieldControlProps {
|
|
9900
9970
|
/**
|
|
9901
9971
|
* If the calendar should close when a date is selected.
|
|
9902
9972
|
*
|
|
@@ -9920,7 +9990,7 @@ interface DatePickerProps extends FieldControlProps<Date | string | undefined> {
|
|
|
9920
9990
|
/**
|
|
9921
9991
|
* The size of the element.
|
|
9922
9992
|
*
|
|
9923
|
-
* @default
|
|
9993
|
+
* @default medium
|
|
9924
9994
|
*/
|
|
9925
9995
|
size?: 'large' | 'medium' | 'small';
|
|
9926
9996
|
}
|
|
@@ -9931,15 +10001,14 @@ interface DatePickerProps extends FieldControlProps<Date | string | undefined> {
|
|
|
9931
10001
|
* @example
|
|
9932
10002
|
* <ui-date-picker
|
|
9933
10003
|
* [value]="selectedDate"
|
|
9934
|
-
* (
|
|
10004
|
+
* (valueChange)="handleDateChange($event)"
|
|
9935
10005
|
* ></ui-date-picker>
|
|
9936
10006
|
*
|
|
9937
10007
|
* @name DatePicker
|
|
9938
10008
|
* @phase Dev
|
|
9939
10009
|
*/
|
|
9940
10010
|
declare class UIDatePicker implements OnInit, OnChanges, AsSignal<DatePickerProps> {
|
|
9941
|
-
readonly
|
|
9942
|
-
readonly value: i0.InputSignal<string | Date | undefined>;
|
|
10011
|
+
readonly value: i0.ModelSignal<string | Date | undefined>;
|
|
9943
10012
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
9944
10013
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
9945
10014
|
readonly closeCalendarOnChange: i0.InputSignal<boolean | undefined>;
|
|
@@ -9959,6 +10028,7 @@ declare class UIDatePicker implements OnInit, OnChanges, AsSignal<DatePickerProp
|
|
|
9959
10028
|
readonly reference: i0.Signal<ElementRef<any> | undefined>;
|
|
9960
10029
|
readonly internalValue: i0.WritableSignal<string | Date | undefined>;
|
|
9961
10030
|
IconEvent: typeof IconEvent;
|
|
10031
|
+
private document;
|
|
9962
10032
|
get calendarId(): string;
|
|
9963
10033
|
get referenceEl(): HTMLElement;
|
|
9964
10034
|
get offset(): number;
|
|
@@ -9970,12 +10040,13 @@ declare class UIDatePicker implements OnInit, OnChanges, AsSignal<DatePickerProp
|
|
|
9970
10040
|
toggleCalendar(): void;
|
|
9971
10041
|
closeCalendar: () => void;
|
|
9972
10042
|
onInputChange(value: string | undefined): void;
|
|
9973
|
-
onCalendarChange(date: Date): void;
|
|
10043
|
+
onCalendarChange(date: Date | undefined): void;
|
|
9974
10044
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIDatePicker, never>;
|
|
9975
|
-
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>;
|
|
9976
10046
|
}
|
|
9977
10047
|
|
|
9978
|
-
|
|
10048
|
+
interface DatePickerFieldProps extends ControlFieldProps, DatePickerProps {
|
|
10049
|
+
}
|
|
9979
10050
|
/**
|
|
9980
10051
|
* A field wrapper for the UIDatePicker component.
|
|
9981
10052
|
*
|
|
@@ -10011,12 +10082,13 @@ interface PortalProps {
|
|
|
10011
10082
|
* @name Portal
|
|
10012
10083
|
* @phase Utility
|
|
10013
10084
|
*/
|
|
10014
|
-
declare class UIPortalDirective implements OnDestroy,
|
|
10015
|
-
|
|
10016
|
-
/** The target element to render the portal into. Defaults to `document.body` in the browser. */
|
|
10085
|
+
declare class UIPortalDirective implements OnDestroy, AsSignal<PortalProps> {
|
|
10086
|
+
/** The target element to render the portal into. Defaults to `this.document.body` in the browser. */
|
|
10017
10087
|
readonly container: i0.InputSignal<PortalContainer>;
|
|
10018
|
-
|
|
10019
|
-
|
|
10088
|
+
host: ElementRef<HTMLElement>;
|
|
10089
|
+
renderer: Renderer2;
|
|
10090
|
+
private document;
|
|
10091
|
+
constructor();
|
|
10020
10092
|
ngOnDestroy(): void;
|
|
10021
10093
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIPortalDirective, never>;
|
|
10022
10094
|
static ɵdir: i0.ɵɵDirectiveDeclaration<UIPortalDirective, "[ui-portal]", never, { "container": { "alias": "ui-portal"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -10080,10 +10152,14 @@ interface DialogProps {
|
|
|
10080
10152
|
* @phase Dev
|
|
10081
10153
|
*/
|
|
10082
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
|
+
*/
|
|
10083
10159
|
onClose: EventEmitter<void>;
|
|
10084
10160
|
readonly box: i0.Signal<ElementRef<any> | undefined>;
|
|
10085
10161
|
readonly open: i0.InputSignal<boolean | undefined>;
|
|
10086
|
-
readonly placement: i0.InputSignal<"
|
|
10162
|
+
readonly placement: i0.InputSignal<"top" | "right" | "bottom" | "left" | "center" | undefined>;
|
|
10087
10163
|
readonly showScrim: i0.InputSignal<boolean | undefined>;
|
|
10088
10164
|
readonly widthFull: i0.InputSignal<boolean | undefined>;
|
|
10089
10165
|
readonly owner: i0.InputSignal<string | undefined>;
|
|
@@ -10092,6 +10168,7 @@ declare class UIDialog implements OnChanges, OnDestroy, AsSignal<DialogProps> {
|
|
|
10092
10168
|
readonly disableFocusTrap: i0.InputSignal<boolean | undefined>;
|
|
10093
10169
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
10094
10170
|
readonly ariaDescription: i0.InputSignal<string | undefined>;
|
|
10171
|
+
private document;
|
|
10095
10172
|
private readonly keydownBound;
|
|
10096
10173
|
ngOnChanges(): void;
|
|
10097
10174
|
ngOnDestroy(): void;
|
|
@@ -10155,14 +10232,13 @@ declare class UIDivider implements AsSignal<DividerProps> {
|
|
|
10155
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>;
|
|
10156
10233
|
}
|
|
10157
10234
|
|
|
10158
|
-
type FabSize = 'medium' | '
|
|
10235
|
+
type FabSize = 'medium' | 'x-large';
|
|
10159
10236
|
type FabVariant = 'neutral' | 'primary' | 'secondary';
|
|
10160
10237
|
type FabPlacement = 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
10161
10238
|
type FabContainer = 'local' | 'page';
|
|
10162
10239
|
type FabIconType = BspkIcon;
|
|
10163
10240
|
interface FabProps {
|
|
10164
10241
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
10165
|
-
owner?: CommonProps['owner'];
|
|
10166
10242
|
style?: CommonProps['style'];
|
|
10167
10243
|
/** The label of the button. */
|
|
10168
10244
|
label?: string;
|
|
@@ -10175,7 +10251,7 @@ interface FabProps {
|
|
|
10175
10251
|
/**
|
|
10176
10252
|
* The size of the button.
|
|
10177
10253
|
*
|
|
10178
|
-
* @default
|
|
10254
|
+
* @default medium
|
|
10179
10255
|
*/
|
|
10180
10256
|
size?: FabSize;
|
|
10181
10257
|
/**
|
|
@@ -10222,6 +10298,7 @@ interface FabProps {
|
|
|
10222
10298
|
* @phase Dev
|
|
10223
10299
|
*/
|
|
10224
10300
|
declare class UIFab implements AsSignal<FabProps> {
|
|
10301
|
+
/** Event emitted when the button is clicked. */
|
|
10225
10302
|
onClick: EventEmitter<Event>;
|
|
10226
10303
|
/** Event emitted when the button receives focus. */
|
|
10227
10304
|
onFocus: EventEmitter<FocusEvent>;
|
|
@@ -10303,13 +10380,13 @@ declare class UIFlexDirective implements AsSignal<FlexProps> {
|
|
|
10303
10380
|
justifyContent: string;
|
|
10304
10381
|
alignItems: string;
|
|
10305
10382
|
flexWrap: "wrap" | "nowrap" | "wrap-reverse" | undefined;
|
|
10306
|
-
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;
|
|
10307
10384
|
}>;
|
|
10308
10385
|
readonly direction: i0.InputSignal<"row" | "column" | "column-reverse" | "row-reverse" | undefined>;
|
|
10309
|
-
readonly justify: i0.InputSignal<"
|
|
10310
|
-
readonly align: i0.InputSignal<"
|
|
10386
|
+
readonly justify: i0.InputSignal<"start" | "end" | "center" | "flex-end" | "flex-start" | "around" | "between" | "evenly" | "space-around" | "space-between" | "space-evenly" | undefined>;
|
|
10387
|
+
readonly align: i0.InputSignal<"start" | "end" | "center" | "baseline" | "flex-end" | "flex-start" | "stretch" | undefined>;
|
|
10311
10388
|
readonly wrap: i0.InputSignal<"wrap" | "nowrap" | "wrap-reverse" | undefined>;
|
|
10312
|
-
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>;
|
|
10313
10390
|
private normalizeJustify;
|
|
10314
10391
|
private normalizeAlign;
|
|
10315
10392
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIFlexDirective, never>;
|
|
@@ -10440,7 +10517,11 @@ declare class UIFocusTrapDirective implements OnChanges, OnDestroy, AsSignal<Foc
|
|
|
10440
10517
|
interface IconProps {
|
|
10441
10518
|
/** The icon to display from the BSPK icon library. */
|
|
10442
10519
|
icon: BspkIcon;
|
|
10443
|
-
/**
|
|
10520
|
+
/**
|
|
10521
|
+
* Optional width for the icon.
|
|
10522
|
+
*
|
|
10523
|
+
* @default '24'
|
|
10524
|
+
*/
|
|
10444
10525
|
width?: string;
|
|
10445
10526
|
}
|
|
10446
10527
|
/**
|
|
@@ -10494,9 +10575,17 @@ declare class UIInlineAlert implements AsSignal<InlineAlertProps> {
|
|
|
10494
10575
|
interface InputProps extends FieldControlProps {
|
|
10495
10576
|
owner?: CommonProps['owner'];
|
|
10496
10577
|
size?: CommonProps['size'];
|
|
10497
|
-
/**
|
|
10498
|
-
|
|
10499
|
-
|
|
10578
|
+
/**
|
|
10579
|
+
* The trailing element to display in the field.
|
|
10580
|
+
*
|
|
10581
|
+
* May be passed as string or use <span data-trailing> for non-string content.
|
|
10582
|
+
*/
|
|
10583
|
+
trailing?: string;
|
|
10584
|
+
/**
|
|
10585
|
+
* The leading element to display in the field.
|
|
10586
|
+
*
|
|
10587
|
+
* May be passed as string or use <span data-leading> for non-string content.
|
|
10588
|
+
*/
|
|
10500
10589
|
leading?: string;
|
|
10501
10590
|
/** The placeholder of the field. */
|
|
10502
10591
|
placeholder?: string;
|
|
@@ -10520,6 +10609,12 @@ interface InputProps extends FieldControlProps {
|
|
|
10520
10609
|
* @default true
|
|
10521
10610
|
*/
|
|
10522
10611
|
showClearButton?: boolean;
|
|
10612
|
+
/**
|
|
10613
|
+
* The value of the input field.
|
|
10614
|
+
*
|
|
10615
|
+
* @type string
|
|
10616
|
+
*/
|
|
10617
|
+
value?: string;
|
|
10523
10618
|
}
|
|
10524
10619
|
/**
|
|
10525
10620
|
* An input that allows users to enter text, numbers or symbols in a singular line. This is a utility element and is not
|
|
@@ -10537,7 +10632,6 @@ interface InputProps extends FieldControlProps {
|
|
|
10537
10632
|
* @phase UXReview
|
|
10538
10633
|
*/
|
|
10539
10634
|
declare class UIInput implements AsSignal<InputProps> {
|
|
10540
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10541
10635
|
IconCancel: typeof IconCancel;
|
|
10542
10636
|
readonly hasFocus: i0.WritableSignal<boolean>;
|
|
10543
10637
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement>>;
|
|
@@ -10555,7 +10649,7 @@ declare class UIInput implements AsSignal<InputProps> {
|
|
|
10555
10649
|
readonly type: i0.InputSignal<"number" | "text" | "password" | "tel" | undefined>;
|
|
10556
10650
|
readonly size: i0.InputSignal<"small" | "large" | "medium" | undefined>;
|
|
10557
10651
|
readonly leading: i0.InputSignal<string | undefined>;
|
|
10558
|
-
readonly trailing: i0.InputSignal<string |
|
|
10652
|
+
readonly trailing: i0.InputSignal<string | undefined>;
|
|
10559
10653
|
readonly autoComplete: i0.InputSignal<"off" | "on" | undefined>;
|
|
10560
10654
|
readonly id: i0.InputSignal<string | undefined>;
|
|
10561
10655
|
readonly owner: i0.InputSignal<string | undefined>;
|
|
@@ -10563,21 +10657,14 @@ declare class UIInput implements AsSignal<InputProps> {
|
|
|
10563
10657
|
readonly ariaLabelledBy: i0.InputSignal<string | undefined>;
|
|
10564
10658
|
readonly ariaDescribedBy: i0.InputSignal<string | undefined>;
|
|
10565
10659
|
readonly ariaErrorMessage: i0.InputSignal<string | undefined>;
|
|
10566
|
-
get trailingValue(): TemplateRef<any> | undefined;
|
|
10567
10660
|
onClearMouseDown(event: MouseEvent): void;
|
|
10568
10661
|
clearInput(): void;
|
|
10569
10662
|
handleInput(event: Event): void;
|
|
10570
|
-
isTemplateRef(value: any): value is TemplateRef<any>;
|
|
10571
10663
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInput, never>;
|
|
10572
|
-
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>;
|
|
10573
10665
|
}
|
|
10574
10666
|
|
|
10575
|
-
interface InputFieldProps {
|
|
10576
|
-
style?: FieldProps['style'];
|
|
10577
|
-
errorMessage?: FieldProps['errorMessage'];
|
|
10578
|
-
helperText?: FieldProps['helperText'];
|
|
10579
|
-
labelTrailing?: FieldProps['labelTrailing'];
|
|
10580
|
-
required?: FieldProps['required'];
|
|
10667
|
+
interface InputFieldProps extends InputProps, ControlFieldProps {
|
|
10581
10668
|
}
|
|
10582
10669
|
/**
|
|
10583
10670
|
* A field wrapper for the Input component.
|
|
@@ -10626,10 +10713,20 @@ interface InputNumberProps extends FieldControlProps {
|
|
|
10626
10713
|
* @default 1
|
|
10627
10714
|
*/
|
|
10628
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;
|
|
10629
10726
|
}
|
|
10630
10727
|
/**
|
|
10631
10728
|
* A input element that allows users to either input a numerical value or singularly increase or decrease the values by
|
|
10632
|
-
* pressing the (+) or (-).
|
|
10729
|
+
* pressing the (+) or (-) buttons.
|
|
10633
10730
|
*
|
|
10634
10731
|
* The value of the input is a number. The value is clamped to the min and max values if they are provided.
|
|
10635
10732
|
*
|
|
@@ -10647,7 +10744,6 @@ interface InputNumberProps extends FieldControlProps {
|
|
|
10647
10744
|
* @phase UXReview
|
|
10648
10745
|
*/
|
|
10649
10746
|
declare class UIInputNumber implements AsSignal<InputNumberProps> {
|
|
10650
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10651
10747
|
readonly inputEl: i0.Signal<ElementRef<HTMLInputElement>>;
|
|
10652
10748
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
10653
10749
|
readonly name: i0.InputSignal<string>;
|
|
@@ -10662,7 +10758,7 @@ declare class UIInputNumber implements AsSignal<InputNumberProps> {
|
|
|
10662
10758
|
readonly step: i0.InputSignal<number | undefined>;
|
|
10663
10759
|
readonly min: i0.InputSignal<number | undefined>;
|
|
10664
10760
|
readonly max: i0.InputSignal<number | undefined>;
|
|
10665
|
-
readonly align: i0.InputSignal<"
|
|
10761
|
+
readonly align: i0.InputSignal<"left" | "center" | undefined>;
|
|
10666
10762
|
readonly ariaLabelledBy: i0.InputSignal<string | undefined>;
|
|
10667
10763
|
readonly ariaDescribedBy: i0.InputSignal<string | undefined>;
|
|
10668
10764
|
readonly ariaErrorMessage: i0.InputSignal<string | undefined>;
|
|
@@ -10677,10 +10773,11 @@ declare class UIInputNumber implements AsSignal<InputNumberProps> {
|
|
|
10677
10773
|
handleBlur(event: Event): void;
|
|
10678
10774
|
handleInput(event: Event): void;
|
|
10679
10775
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInputNumber, never>;
|
|
10680
|
-
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>;
|
|
10681
10777
|
}
|
|
10682
10778
|
|
|
10683
|
-
|
|
10779
|
+
interface InputNumberFieldProps extends InputNumberProps, ControlFieldProps {
|
|
10780
|
+
}
|
|
10684
10781
|
/**
|
|
10685
10782
|
* A field wrapper for the UIInputNumber component.
|
|
10686
10783
|
*
|
|
@@ -10756,6 +10853,7 @@ interface ArrowKeyNavigationCallbackParams {
|
|
|
10756
10853
|
declare class KeyNavigationUtility implements UtilityBase<KeyNavigationUtilityProps> {
|
|
10757
10854
|
readonly props: i0.WritableSignal<KeyNavigationUtilityProps>;
|
|
10758
10855
|
readonly arrowKeyCallbacks: i0.Signal<Partial<Record<KeyboardEventCode, ((event: KeyboardEvent) => void) | null>>>;
|
|
10856
|
+
private document;
|
|
10759
10857
|
constructor();
|
|
10760
10858
|
get activeElementId(): string | null;
|
|
10761
10859
|
get activeElement(): HTMLElement | null;
|
|
@@ -10812,7 +10910,7 @@ interface CountryCodeOption {
|
|
|
10812
10910
|
interface CountryCodeItem extends CountryCodeOption {
|
|
10813
10911
|
id: string;
|
|
10814
10912
|
}
|
|
10815
|
-
interface InputPhoneProps extends FieldControlProps
|
|
10913
|
+
interface InputPhoneProps extends FieldControlProps, ScrollLimitStyleProps {
|
|
10816
10914
|
/**
|
|
10817
10915
|
* The default country code to select when the component is rendered. If not provided, it will attempt to guess
|
|
10818
10916
|
* based on the user's locale. If the guessed country code is not supported, it will default to 'US'. Based on
|
|
@@ -10833,6 +10931,12 @@ interface InputPhoneProps extends FieldControlProps<string>, ScrollLimitStylePro
|
|
|
10833
10931
|
* @default medium
|
|
10834
10932
|
*/
|
|
10835
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;
|
|
10836
10940
|
}
|
|
10837
10941
|
/**
|
|
10838
10942
|
* An input that allows users to enter text phone numbers and select country codes for the phone number.
|
|
@@ -10857,7 +10961,6 @@ interface InputPhoneProps extends FieldControlProps<string>, ScrollLimitStylePro
|
|
|
10857
10961
|
* @phase Dev
|
|
10858
10962
|
*/
|
|
10859
10963
|
declare class UIInputPhone implements AsSignal<InputPhoneProps>, AfterViewInit, OnInit, OnDestroy {
|
|
10860
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
10861
10964
|
keyNavigation: KeyNavigationUtility;
|
|
10862
10965
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
10863
10966
|
readonly name: i0.InputSignal<string>;
|
|
@@ -10914,10 +11017,11 @@ declare class UIInputPhone implements AsSignal<InputPhoneProps>, AfterViewInit,
|
|
|
10914
11017
|
private formatValueIfNeeded;
|
|
10915
11018
|
private handleSpaceOrEnter;
|
|
10916
11019
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIInputPhone, never>;
|
|
10917
|
-
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>;
|
|
10918
11021
|
}
|
|
10919
11022
|
|
|
10920
|
-
|
|
11023
|
+
interface InputPhoneFieldProps extends ControlFieldProps, InputPhoneProps {
|
|
11024
|
+
}
|
|
10921
11025
|
/**
|
|
10922
11026
|
* A field wrapper for the UIInputPhone component.
|
|
10923
11027
|
*
|
|
@@ -10942,65 +11046,6 @@ declare class UIInputPhoneField extends UIInputPhone implements AsSignal<InputPh
|
|
|
10942
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>;
|
|
10943
11047
|
}
|
|
10944
11048
|
|
|
10945
|
-
interface LinkProps {
|
|
10946
|
-
/** The variant of the link. Controls the icon that is displayed and link target. */
|
|
10947
|
-
trailingIcon?: 'chevron' | 'external' | 'link';
|
|
10948
|
-
/**
|
|
10949
|
-
* The href of the link.
|
|
10950
|
-
*
|
|
10951
|
-
* @example
|
|
10952
|
-
* https://bspk.dev
|
|
10953
|
-
*/
|
|
10954
|
-
href: string | null | undefined;
|
|
10955
|
-
/**
|
|
10956
|
-
* The size of the link.
|
|
10957
|
-
*
|
|
10958
|
-
* @default base
|
|
10959
|
-
*/
|
|
10960
|
-
size?: 'base' | 'large' | 'small';
|
|
10961
|
-
/**
|
|
10962
|
-
* Change the color of the link to a subtle color. This is useful for links that are not primary actions, for
|
|
10963
|
-
* example footer menus.
|
|
10964
|
-
*
|
|
10965
|
-
* @default default
|
|
10966
|
-
*/
|
|
10967
|
-
variant?: 'default' | 'subtle-inverse' | 'subtle';
|
|
10968
|
-
/**
|
|
10969
|
-
* The target of the link. If the `trailingIcon` is set to `external`, this will default to `_blank`.
|
|
10970
|
-
*
|
|
10971
|
-
* @default _self
|
|
10972
|
-
*/
|
|
10973
|
-
target?: '_blank' | '_parent' | '_self' | '_top';
|
|
10974
|
-
/** Determines if the element is disabled. */
|
|
10975
|
-
disabled?: boolean;
|
|
10976
|
-
}
|
|
10977
|
-
/**
|
|
10978
|
-
* This is the standalone link directive. Apply to an `a` element.
|
|
10979
|
-
*
|
|
10980
|
-
* @example
|
|
10981
|
-
* <a ui-link href="https://anywhere.re" [label]="'Example label'" trailingIcon="external"></a>
|
|
10982
|
-
*
|
|
10983
|
-
* @name Link
|
|
10984
|
-
* @phase Stable
|
|
10985
|
-
*/
|
|
10986
|
-
declare class UILinkDirective implements AsSignal<LinkProps> {
|
|
10987
|
-
readonly trailingIcon: i0.InputSignal<"link" | "chevron" | "external" | undefined>;
|
|
10988
|
-
readonly href: i0.InputSignal<string | null | undefined>;
|
|
10989
|
-
readonly size: i0.InputSignal<"small" | "large" | "base" | undefined>;
|
|
10990
|
-
readonly variant: i0.InputSignal<"default" | "subtle-inverse" | "subtle" | undefined>;
|
|
10991
|
-
readonly target: i0.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
10992
|
-
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
10993
|
-
private readonly host;
|
|
10994
|
-
private readonly renderer;
|
|
10995
|
-
private viewContainerRef;
|
|
10996
|
-
private destroyRef;
|
|
10997
|
-
private labelSpan;
|
|
10998
|
-
constructor();
|
|
10999
|
-
iconComponent(): Promise<typeof _bspk_ui_ngx.IconOpenInNew> | null;
|
|
11000
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UILinkDirective, never>;
|
|
11001
|
-
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>;
|
|
11002
|
-
}
|
|
11003
|
-
|
|
11004
11049
|
/**
|
|
11005
11050
|
* Sets the host element's height to match its parent element's clientHeight. Updates on window resize and orientation
|
|
11006
11051
|
* changes.
|
|
@@ -11235,31 +11280,25 @@ interface PaginationProps {
|
|
|
11235
11280
|
* multiple micro pages.
|
|
11236
11281
|
*
|
|
11237
11282
|
* @example
|
|
11238
|
-
* <ui-pagination [value]="currentPage" [numPages]="10" (
|
|
11283
|
+
* <ui-pagination [value]="currentPage" [numPages]="10" (valueChange)="currentPage = $event"></ui-pagination>
|
|
11239
11284
|
*
|
|
11240
11285
|
* @name Pagination
|
|
11241
11286
|
* @phase Dev
|
|
11242
11287
|
*/
|
|
11243
|
-
declare class UIPagination implements
|
|
11244
|
-
/** Called when the page changes. */
|
|
11245
|
-
onChange: EventEmitter<number>;
|
|
11288
|
+
declare class UIPagination implements AsSignal<PaginationProps> {
|
|
11246
11289
|
readonly numPages: i0.InputSignal<number>;
|
|
11247
|
-
readonly value: i0.
|
|
11248
|
-
inputValue: string
|
|
11290
|
+
readonly value: i0.ModelSignal<number>;
|
|
11291
|
+
readonly inputValue: i0.WritableSignal<string>;
|
|
11249
11292
|
readonly INPUT_TYPE_THRESHOLD = 7;
|
|
11250
11293
|
ChevronRight: typeof IconChevronRight;
|
|
11251
11294
|
ChevronLeft: typeof IconChevronLeft;
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11255
|
-
nextPage(): void;
|
|
11256
|
-
submitManual(event?: Event): void;
|
|
11295
|
+
readonly pages: i0.Signal<number[]>;
|
|
11296
|
+
readonly label: i0.Signal<string>;
|
|
11297
|
+
updateValue(value: number | string, event?: Event): void;
|
|
11257
11298
|
inBounds(n: number): boolean;
|
|
11258
|
-
pages(): number[];
|
|
11259
|
-
label(): string;
|
|
11260
11299
|
private clamp;
|
|
11261
11300
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIPagination, never>;
|
|
11262
|
-
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>;
|
|
11263
11302
|
}
|
|
11264
11303
|
|
|
11265
11304
|
interface RadioProps extends FieldControlProps {
|
|
@@ -11269,6 +11308,8 @@ interface RadioProps extends FieldControlProps {
|
|
|
11269
11308
|
* @default false
|
|
11270
11309
|
*/
|
|
11271
11310
|
checked?: boolean;
|
|
11311
|
+
/** The value of the radio input. */
|
|
11312
|
+
value: string;
|
|
11272
11313
|
}
|
|
11273
11314
|
/**
|
|
11274
11315
|
* A round control that allows user to choose one option from a set. This is the base element and if used directly you
|
|
@@ -11282,11 +11323,10 @@ interface RadioProps extends FieldControlProps {
|
|
|
11282
11323
|
* @phase Utility
|
|
11283
11324
|
*/
|
|
11284
11325
|
declare class UIRadio implements AsSignal<RadioProps> {
|
|
11285
|
-
checkedChange: EventEmitter<boolean>;
|
|
11286
11326
|
readonly name: i0.InputSignal<string>;
|
|
11287
|
-
readonly value: i0.InputSignal<string
|
|
11327
|
+
readonly value: i0.InputSignal<string>;
|
|
11288
11328
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
11289
|
-
readonly checked: i0.
|
|
11329
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
11290
11330
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
11291
11331
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11292
11332
|
readonly invalid: i0.InputSignal<boolean | undefined>;
|
|
@@ -11294,7 +11334,7 @@ declare class UIRadio implements AsSignal<RadioProps> {
|
|
|
11294
11334
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
11295
11335
|
onInputChange(event: Event): void;
|
|
11296
11336
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIRadio, never>;
|
|
11297
|
-
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>;
|
|
11298
11338
|
}
|
|
11299
11339
|
|
|
11300
11340
|
interface RadioOptionProps extends RadioProps {
|
|
@@ -11348,6 +11388,8 @@ interface RadioGroupProps extends FieldControlProps {
|
|
|
11348
11388
|
* @required
|
|
11349
11389
|
*/
|
|
11350
11390
|
options: RadioGroupOption[];
|
|
11391
|
+
/** The value of the selected radio. */
|
|
11392
|
+
value?: string;
|
|
11351
11393
|
}
|
|
11352
11394
|
/**
|
|
11353
11395
|
* A group of radios that allows users to choose one or more items from a list or turn an feature on or off.
|
|
@@ -11365,7 +11407,6 @@ interface RadioGroupProps extends FieldControlProps {
|
|
|
11365
11407
|
* @phase Dev
|
|
11366
11408
|
*/
|
|
11367
11409
|
declare class UIRadioGroup implements AsSignal<RadioGroupProps> {
|
|
11368
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
11369
11410
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11370
11411
|
readonly name: i0.InputSignal<string>;
|
|
11371
11412
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
@@ -11380,12 +11421,13 @@ declare class UIRadioGroup implements AsSignal<RadioGroupProps> {
|
|
|
11380
11421
|
readonly readOnly: i0.InputSignal<boolean | undefined>;
|
|
11381
11422
|
constructor();
|
|
11382
11423
|
/** Handles changes to the radio button selection. */
|
|
11383
|
-
onRadioChange(value: string, checked: boolean): void;
|
|
11424
|
+
onRadioChange(value: string, checked: boolean | undefined): void;
|
|
11384
11425
|
static ɵfac: i0.ɵɵFactoryDeclaration<UIRadioGroup, never>;
|
|
11385
|
-
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>;
|
|
11386
11427
|
}
|
|
11387
11428
|
|
|
11388
|
-
|
|
11429
|
+
interface RadioGroupFieldProps extends ControlFieldProps, RadioGroupProps {
|
|
11430
|
+
}
|
|
11389
11431
|
/**
|
|
11390
11432
|
* A field wrapper for the UIRadioGroup component.
|
|
11391
11433
|
*
|
|
@@ -11454,6 +11496,8 @@ interface TabOption {
|
|
|
11454
11496
|
* The value of the tab sent to valueChange when selected.
|
|
11455
11497
|
*
|
|
11456
11498
|
* If not provided, the label will be used as the value.
|
|
11499
|
+
*
|
|
11500
|
+
* @type string
|
|
11457
11501
|
*/
|
|
11458
11502
|
value: string;
|
|
11459
11503
|
/**
|
|
@@ -11473,7 +11517,7 @@ interface TabOption {
|
|
|
11473
11517
|
/** Optional id. If not provided, one is generated. */
|
|
11474
11518
|
id?: string;
|
|
11475
11519
|
}
|
|
11476
|
-
interface
|
|
11520
|
+
interface TabListBaseProps<O extends TabOption = TabOption> {
|
|
11477
11521
|
/**
|
|
11478
11522
|
* The tabs to display.
|
|
11479
11523
|
*
|
|
@@ -11523,6 +11567,8 @@ interface TabListProps<O extends TabOption = TabOption> {
|
|
|
11523
11567
|
label: string;
|
|
11524
11568
|
/** The id of the tab utility, used for accessibility. */
|
|
11525
11569
|
id?: string;
|
|
11570
|
+
}
|
|
11571
|
+
interface TabListProps<O extends TabOption = TabOption> extends TabListBaseProps<O> {
|
|
11526
11572
|
/**
|
|
11527
11573
|
* Determines if the labels of the options should be displayed. If icons are not provided for every option this is
|
|
11528
11574
|
* ignored and labels are shown.
|
|
@@ -11536,15 +11582,14 @@ interface TabListProps<O extends TabOption = TabOption> {
|
|
|
11536
11582
|
*
|
|
11537
11583
|
* See TabGroup or SegmentedControl for examples.
|
|
11538
11584
|
*
|
|
11539
|
-
* @
|
|
11585
|
+
* @name TabList
|
|
11586
|
+
* @phase Utility
|
|
11540
11587
|
*/
|
|
11541
11588
|
declare class UITabListUtility<O extends TabOption = TabOption> implements AsSignal<TabListProps<O>> {
|
|
11542
|
-
|
|
11543
|
-
valueChange: EventEmitter<string>;
|
|
11544
|
-
readonly options: i0.InputSignal<O[]>;
|
|
11545
|
-
readonly value: i0.InputSignal<string>;
|
|
11589
|
+
readonly value: i0.ModelSignal<string>;
|
|
11546
11590
|
readonly width: i0.InputSignal<"fill" | "hug" | undefined>;
|
|
11547
11591
|
readonly label: i0.InputSignal<string>;
|
|
11592
|
+
readonly options: i0.InputSignal<O[]>;
|
|
11548
11593
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11549
11594
|
readonly iconsOnly: i0.InputSignal<boolean | undefined>;
|
|
11550
11595
|
readonly sizeProp: i0.InputSignal<TabSize | undefined>;
|
|
@@ -11569,7 +11614,7 @@ declare class UITabListUtility<O extends TabOption = TabOption> implements AsSig
|
|
|
11569
11614
|
}): void;
|
|
11570
11615
|
handleKeyDownEvent(event: KeyboardEvent): void;
|
|
11571
11616
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITabListUtility<any>, never>;
|
|
11572
|
-
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>;
|
|
11573
11618
|
}
|
|
11574
11619
|
interface UITabListProps {
|
|
11575
11620
|
/**
|
|
@@ -11650,7 +11695,7 @@ type SelectItem = SelectOption & {
|
|
|
11650
11695
|
ariaLabel?: string;
|
|
11651
11696
|
ariaSelected?: boolean;
|
|
11652
11697
|
};
|
|
11653
|
-
interface SelectProps extends FieldControlProps
|
|
11698
|
+
interface SelectProps extends FieldControlProps {
|
|
11654
11699
|
size?: CommonProps['size'];
|
|
11655
11700
|
/**
|
|
11656
11701
|
* Array of options to display in the select
|
|
@@ -11691,6 +11736,8 @@ interface SelectProps extends FieldControlProps<string> {
|
|
|
11691
11736
|
* Used in conjunction with scrollListItemsStyle utility.
|
|
11692
11737
|
*/
|
|
11693
11738
|
scrollLimit?: number;
|
|
11739
|
+
/** The value of the select control. */
|
|
11740
|
+
value?: string;
|
|
11694
11741
|
}
|
|
11695
11742
|
/**
|
|
11696
11743
|
* A field element that allows users to select one option from a list of available choices.
|
|
@@ -11715,7 +11762,6 @@ interface SelectProps extends FieldControlProps<string> {
|
|
|
11715
11762
|
*/
|
|
11716
11763
|
declare class UISelect implements AsSignal<SelectProps>, AfterViewInit, OnDestroy {
|
|
11717
11764
|
keyNavigation: KeyNavigationUtility;
|
|
11718
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
11719
11765
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
11720
11766
|
readonly name: i0.InputSignal<string>;
|
|
11721
11767
|
readonly placeholder: i0.InputSignal<string | undefined>;
|
|
@@ -11751,6 +11797,7 @@ declare class UISelect implements AsSignal<SelectProps>, AfterViewInit, OnDestro
|
|
|
11751
11797
|
maxHeight: string;
|
|
11752
11798
|
overflow: string;
|
|
11753
11799
|
}>;
|
|
11800
|
+
private document;
|
|
11754
11801
|
constructor();
|
|
11755
11802
|
get offset(): number;
|
|
11756
11803
|
get selectedItem(): SelectItem | undefined;
|
|
@@ -11762,10 +11809,11 @@ declare class UISelect implements AsSignal<SelectProps>, AfterViewInit, OnDestro
|
|
|
11762
11809
|
ngAfterViewInit(): void;
|
|
11763
11810
|
ngOnDestroy(): void;
|
|
11764
11811
|
static ɵfac: i0.ɵɵFactoryDeclaration<UISelect, never>;
|
|
11765
|
-
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>;
|
|
11766
11813
|
}
|
|
11767
11814
|
|
|
11768
|
-
|
|
11815
|
+
interface SelectFieldProps extends SelectProps, ControlFieldProps {
|
|
11816
|
+
}
|
|
11769
11817
|
/**
|
|
11770
11818
|
* A field wrapper for the UISelect component.
|
|
11771
11819
|
*
|
|
@@ -11794,7 +11842,7 @@ interface SwitchProps {
|
|
|
11794
11842
|
ariaLabel?: CommonProps['ariaLabel'];
|
|
11795
11843
|
disabled?: CommonProps['disabled'];
|
|
11796
11844
|
id?: CommonProps['id'];
|
|
11797
|
-
name:
|
|
11845
|
+
name: FieldControlProps['name'];
|
|
11798
11846
|
/**
|
|
11799
11847
|
* Marks the control as checked.
|
|
11800
11848
|
*
|
|
@@ -11812,16 +11860,15 @@ interface SwitchProps {
|
|
|
11812
11860
|
* @phase Dev
|
|
11813
11861
|
*/
|
|
11814
11862
|
declare class UISwitch implements AsSignal<SwitchProps> {
|
|
11815
|
-
checkedChange: EventEmitter<boolean>;
|
|
11816
11863
|
readonly value: i0.InputSignal<string>;
|
|
11817
|
-
readonly checked: i0.
|
|
11864
|
+
readonly checked: i0.ModelSignal<boolean | undefined>;
|
|
11818
11865
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
11819
11866
|
readonly name: i0.InputSignal<string>;
|
|
11820
11867
|
readonly id: i0.InputSignal<string | undefined>;
|
|
11821
11868
|
readonly disabled: i0.InputSignal<boolean | undefined>;
|
|
11822
11869
|
onInputChange(event: Event): void;
|
|
11823
11870
|
static ɵfac: i0.ɵɵFactoryDeclaration<UISwitch, never>;
|
|
11824
|
-
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>;
|
|
11825
11872
|
}
|
|
11826
11873
|
|
|
11827
11874
|
interface SwitchOptionProps extends SwitchProps {
|
|
@@ -11854,13 +11901,7 @@ declare class UISwitchOption extends UISwitch implements AsSignal<SwitchOptionPr
|
|
|
11854
11901
|
}
|
|
11855
11902
|
|
|
11856
11903
|
type TabGroupSize = 'large' | 'medium' | 'small';
|
|
11857
|
-
interface TabGroupProps {
|
|
11858
|
-
options: TabListProps<TabOption>['options'];
|
|
11859
|
-
value: TabListProps<TabOption>['value'];
|
|
11860
|
-
size?: TabListProps<TabOption>['size'];
|
|
11861
|
-
width?: TabListProps<TabOption>['width'];
|
|
11862
|
-
label: TabListProps<TabOption>['label'];
|
|
11863
|
-
id?: TabListProps<TabOption>['id'];
|
|
11904
|
+
interface TabGroupProps extends TabListBaseProps<TabOption> {
|
|
11864
11905
|
/**
|
|
11865
11906
|
* When width is 'hug' this determines if the trailing underline should be showing. When width is 'fill' this
|
|
11866
11907
|
* property isn't applicable.
|
|
@@ -12059,7 +12100,7 @@ declare class UITable<R extends TableRow> implements AsSignal<TableProps<R>> {
|
|
|
12059
12100
|
readonly title: i0.InputSignal<string | undefined>;
|
|
12060
12101
|
readonly size: i0.InputSignal<TableSize | undefined>;
|
|
12061
12102
|
readonly pageSize: i0.InputSignal<number | undefined>;
|
|
12062
|
-
pageIndex: number
|
|
12103
|
+
readonly pageIndex: i0.WritableSignal<number>;
|
|
12063
12104
|
get sizeSafe(): TableSize;
|
|
12064
12105
|
get pageSizeSafe(): number;
|
|
12065
12106
|
get hasPagination(): boolean;
|
|
@@ -12068,7 +12109,6 @@ declare class UITable<R extends TableRow> implements AsSignal<TableProps<R>> {
|
|
|
12068
12109
|
get totalPages(): number;
|
|
12069
12110
|
toggleSorting(key: string): void;
|
|
12070
12111
|
trackRow(index: number, row: R): string;
|
|
12071
|
-
setPageIndex(idx: number): void;
|
|
12072
12112
|
startRow(): number;
|
|
12073
12113
|
endRow(): number;
|
|
12074
12114
|
formatCell(value: unknown): string | null;
|
|
@@ -12147,6 +12187,12 @@ interface TextareaProps extends FieldControlProps {
|
|
|
12147
12187
|
* @maximum 10
|
|
12148
12188
|
*/
|
|
12149
12189
|
maxRows?: number;
|
|
12190
|
+
/**
|
|
12191
|
+
* The value of the textarea field.
|
|
12192
|
+
*
|
|
12193
|
+
* @type string
|
|
12194
|
+
*/
|
|
12195
|
+
value?: string;
|
|
12150
12196
|
}
|
|
12151
12197
|
/**
|
|
12152
12198
|
* A component that allows users to input large amounts of text that could span multiple lines.
|
|
@@ -12171,7 +12217,6 @@ interface TextareaProps extends FieldControlProps {
|
|
|
12171
12217
|
* @phase UXReview
|
|
12172
12218
|
*/
|
|
12173
12219
|
declare class UITextarea implements AsSignal<TextareaProps> {
|
|
12174
|
-
valueChange: i0.OutputEmitterRef<string>;
|
|
12175
12220
|
readonly name: i0.InputSignal<string>;
|
|
12176
12221
|
readonly value: i0.ModelSignal<string | undefined>;
|
|
12177
12222
|
readonly ariaLabel: i0.InputSignal<string | undefined>;
|
|
@@ -12194,10 +12239,10 @@ declare class UITextarea implements AsSignal<TextareaProps> {
|
|
|
12194
12239
|
handleBlur(event: FocusEvent): void;
|
|
12195
12240
|
handleInput(event: Event): void;
|
|
12196
12241
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITextarea, never>;
|
|
12197
|
-
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>;
|
|
12198
12243
|
}
|
|
12199
12244
|
|
|
12200
|
-
interface TextareaFieldProps extends
|
|
12245
|
+
interface TextareaFieldProps extends ControlFieldProps, TextareaProps {
|
|
12201
12246
|
}
|
|
12202
12247
|
/**
|
|
12203
12248
|
* A field wrapper for the UITextarea component.
|
|
@@ -12259,6 +12304,16 @@ interface TooltipProps {
|
|
|
12259
12304
|
* @phase Dev
|
|
12260
12305
|
*/
|
|
12261
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
|
+
*/
|
|
12262
12317
|
readonly value: i0.ModelSignal<string | TooltipProps | {
|
|
12263
12318
|
truncated: true;
|
|
12264
12319
|
} | undefined>;
|
|
@@ -12290,7 +12345,11 @@ declare class UITooltipDirective implements OnDestroy, OnInit {
|
|
|
12290
12345
|
static ɵfac: i0.ɵɵFactoryDeclaration<UITooltipDirective, never>;
|
|
12291
12346
|
static ɵdir: i0.ɵɵDirectiveDeclaration<UITooltipDirective, "[ui-tooltip]", never, { "value": { "alias": "ui-tooltip"; "required": false; "isSignal": true; }; }, { "value": "ui-tooltipChange"; }, never, never, true, never>;
|
|
12292
12347
|
}
|
|
12293
|
-
/**
|
|
12348
|
+
/**
|
|
12349
|
+
* Single use component to display tooltip content.
|
|
12350
|
+
*
|
|
12351
|
+
* @ignore
|
|
12352
|
+
*/
|
|
12294
12353
|
declare class UITooltip implements AsSignal<TooltipProps> {
|
|
12295
12354
|
readonly arrow: i0.Signal<ElementRef<any> | undefined>;
|
|
12296
12355
|
readonly id: i0.WritableSignal<string | undefined>;
|
|
@@ -12338,15 +12397,46 @@ declare class UITxtDirective implements AsSignal<TxtProps> {
|
|
|
12338
12397
|
static ɵdir: i0.ɵɵDirectiveDeclaration<UITxtDirective, "[ui-txt]", never, { "variant": { "alias": "ui-txt"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "inherit": { "alias": "inherit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12339
12398
|
}
|
|
12340
12399
|
|
|
12400
|
+
type Brand = (typeof BRANDS)[number]['slug'] | 'example';
|
|
12401
|
+
declare const EXTRA_BRANDS: (typeof BRANDS)[number][];
|
|
12402
|
+
declare class BrandService {
|
|
12403
|
+
document: Document;
|
|
12404
|
+
readonly value: i0.WritableSignal<Brand>;
|
|
12405
|
+
constructor();
|
|
12406
|
+
toggle(): void;
|
|
12407
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BrandService, never>;
|
|
12408
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BrandService>;
|
|
12409
|
+
}
|
|
12410
|
+
/**
|
|
12411
|
+
* Loads the brand stylesheet corresponding to the given brand value.
|
|
12412
|
+
*
|
|
12413
|
+
* 1. Appends the new brand stylesheet link element to the document head
|
|
12414
|
+
* 2. Once the stylesheet is loaded, it adds a 'loaded' class to the body to help mitigate F.O.U.C. (Flash of Unstyled
|
|
12415
|
+
* Content)
|
|
12416
|
+
* 3. If a previous brand stylesheet exists (id of 'brand-stylesheet'), it removes it to ensure only the current brand's
|
|
12417
|
+
* styles are applied.
|
|
12418
|
+
* 4. Adds an id of 'brand-stylesheet' to the link element for easy identification and management of the brand stylesheet.
|
|
12419
|
+
*
|
|
12420
|
+
* Once the stylesheet is loaded, it adds a 'loaded' class to the body to help mitigate F.O.U.C. (Flash of Unstyled
|
|
12421
|
+
* Content) when switching brands.
|
|
12422
|
+
*
|
|
12423
|
+
* Then it removes any previously loaded brand stylesheet to ensure that only the current brand's styles are applied.
|
|
12424
|
+
*
|
|
12425
|
+
* Then it
|
|
12426
|
+
*
|
|
12427
|
+
* @param value The brand value for which to load the stylesheet.
|
|
12428
|
+
*/
|
|
12429
|
+
declare function updateBrandStylesheet(value: Brand): void;
|
|
12430
|
+
|
|
12341
12431
|
type Theme = 'dark' | 'light';
|
|
12342
12432
|
declare class ThemeService {
|
|
12343
|
-
document: Document;
|
|
12344
12433
|
readonly value: i0.WritableSignal<Theme>;
|
|
12434
|
+
private document;
|
|
12345
12435
|
constructor();
|
|
12346
12436
|
toggle(): void;
|
|
12347
12437
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
12348
12438
|
static ɵprov: i0.ɵɵInjectableDeclaration<ThemeService>;
|
|
12349
12439
|
}
|
|
12350
12440
|
|
|
12351
|
-
export { BUILT_IN_COLUMN_SORTERS, 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 };
|
|
12352
|
-
export type { AccordionProps, AccordionSectionProps, ArrowKeyNames, ArrowKeyNavigationCallbackParams, AvatarGroupProps, AvatarItem, AvatarProps, BadgeItem, BadgeProps, BannerAlertProps, 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 };
|
|
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 };
|
|
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 };
|