@uniformdev/design-system 19.135.0 → 19.135.1-alpha.10

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.
Files changed (5) hide show
  1. package/dist/esm/index.js +19771 -20859
  2. package/dist/index.d.mts +975 -1134
  3. package/dist/index.d.ts +975 -1134
  4. package/dist/index.js +11102 -12205
  5. package/package.json +6 -5
package/dist/index.d.mts CHANGED
@@ -1,20 +1,22 @@
1
1
  import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
2
+ import { DecoratorFn } from '@storybook/react';
2
3
  import * as React$1 from 'react';
3
- import React__default, { RefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, CSSProperties, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
4
- import { GroupBase } from 'react-select';
4
+ import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
5
+ import { GroupBase, Props } from 'react-select';
5
6
  export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
6
7
  import * as _emotion_react from '@emotion/react';
7
8
  import { SerializedStyles } from '@emotion/react';
8
9
  import { LottieComponentProps } from 'lottie-react';
9
10
  import { ButtonProps as ButtonProps$1 } from 'reakit/Button';
11
+ import { RefType } from 'react-hotkeys-hook/dist/types';
12
+ import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
10
13
  import { MenuProps as MenuProps$1 } from 'reakit';
11
- import * as _react_icons_all_files_lib from '@react-icons/all-files/lib';
12
14
  import { IconType as IconType$1, IconBaseProps } from '@react-icons/all-files/lib';
13
15
  import * as _react_icons_all_files from '@react-icons/all-files';
16
+ import { IconType as IconType$2 } from '@react-icons/all-files';
14
17
  import { DateValue } from '@internationalized/date';
15
18
  import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
16
19
  import InternalSelect from 'react-select/dist/declarations/src/Select';
17
- import { StateManagerProps } from 'react-select/dist/declarations/src/useStateManager';
18
20
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
19
21
  import * as _ariakit_react from '@ariakit/react';
20
22
  import { MenuProps as MenuProps$2, MenuStoreProps, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, TabStoreState, TabListProps, TabProps, TabPanelProps } from '@ariakit/react';
@@ -22,8 +24,6 @@ import { InitialConfigType } from '@lexical/react/LexicalComposer';
22
24
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
23
25
  export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
24
26
  import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
25
- import * as react_hotkeys_hook_dist_types from 'react-hotkeys-hook/dist/types';
26
- import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
27
27
  export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
28
28
  export { Id as ToastId, toast } from 'react-toastify';
29
29
 
@@ -44,6 +44,8 @@ type ThemeProps = {
44
44
  * @example <Theme disableReset={true} /> */
45
45
  declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
46
46
 
47
+ declare const BetaDecorator: DecoratorFn;
48
+
47
49
  /** Breakpoint label values */
48
50
  type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
49
51
  type BreakpointsMap = Record<BreakpointSize, number>;
@@ -126,6 +128,29 @@ declare const inputSelect: _emotion_react.SerializedStyles;
126
128
 
127
129
  declare const accessibleHidden: _emotion_react.SerializedStyles;
128
130
 
131
+ /** Uniform utility colors
132
+ * exports the following css variables:
133
+ * --utility-caution-icon: #facc15;
134
+ * --utility-caution-title: #854d0e;
135
+ * --utility-caution-container: #fefce8;
136
+ * --utility-danger-icon: #f87171;
137
+ * --utility-danger-title: #991b1b;
138
+ * --utility-danger-container: #fef2f2;
139
+ * --utility-info-icon: #60a5fa;
140
+ * --utility-info-title: #1e40af;
141
+ * --utility-info-container: #eff6ff;
142
+ * --utility-note-icon: var(--gray-400);
143
+ * --utility-note-title: var(--gray-800);
144
+ * --utility-note-container: var(--gray-50);
145
+ * --utility-success-icon: #4ade80;
146
+ * --utility-success-title: #166534;
147
+ * --utility-success-container: #f0fdfa;
148
+ * @returns { utilityColors } css utility colors
149
+ * @example directly on the component <div css={utilityColors}></div>
150
+ * @example css-in-js my-component { ${utilityColors}}
151
+ */
152
+ declare const functionalColors: _emotion_react.SerializedStyles;
153
+
129
154
  /**
130
155
  * growSubtle animation
131
156
  * @description - increases the size of an element from scale(1) - scale(1.15) and back down to scale(1) using transform: scale(1)
@@ -213,29 +238,6 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
213
238
  */
214
239
  declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
215
240
 
216
- type ArrowPositionProps = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'left-top' | 'left-bottom' | 'right-top' | 'right-bottom';
217
- type InlineAlertProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
218
- /** sets the id of the popup and the aria-controls attibute on the close button
219
- * @example 'my-alert-box'
220
- */
221
- id: string;
222
- /** sets the title of the inline alert message */
223
- title: string;
224
- /** sets the text of the inline alert message */
225
- text: string;
226
- /** (optional) sets the position of the arrow
227
- * @default 'left-top'
228
- */
229
- arrowPosition?: ArrowPositionProps;
230
- /** (optional) allows to position alert using direct css */
231
- positionCss?: SerializedStyles;
232
- };
233
- /**
234
- * Uniform Inline Alert Component
235
- * @example <InlineAlert id="my-alert-box" title="my alert box" text="some description text" />
236
- */
237
- declare const InlineAlert: ({ id, title, text, arrowPosition, positionCss, ...btnProps }: InlineAlertProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
238
-
239
241
  var v$1 = "4.8.0";
240
242
  var meta$1 = {
241
243
  g: "LottieFiles AE 3.1.1",
@@ -20305,6 +20307,86 @@ declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<S
20305
20307
  declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20306
20308
  declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20307
20309
 
20310
+ /**
20311
+ * Gets a formatted version of a shortcut for display.
20312
+ *
20313
+ * i.e. converts "mod+alt+n" to "['⌘', '⌥', 'N']" on macs,
20314
+ * or ['^', 'Alt', 'N'] on windows.
20315
+ * @param shortcut The +-delimited shortcut string
20316
+ */
20317
+ declare function getFormattedShortcut(shortcut: string | null): string[];
20318
+
20319
+ /**
20320
+ * @deprecated Use tooltips or menu items with a shortcut instead,
20321
+ * and getFormattedShortcut for display
20322
+ */
20323
+ declare function ShortcutContext({ children }: {
20324
+ children: React__default.ReactNode;
20325
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20326
+ /**
20327
+ * @deprecated Use tooltips or menu items with a shortcut instead,
20328
+ * and getFormattedShortcut for display
20329
+ */
20330
+ declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
20331
+ shortcut: string;
20332
+ macShortcut?: string;
20333
+ className?: SerializedStyles | string;
20334
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
20335
+
20336
+ type UseShortcutOptions = {
20337
+ /**
20338
+ * Shortcut to type to activate. Keys are +-delimited.
20339
+ * Prefer 'mod' to 'ctrl' (mod = ctrl on windows, cmd on mac).
20340
+ *
20341
+ * ex: mod+n for ctrl+n on windows, cmd+n on mac
20342
+ *
20343
+ * When macShortcut is not provided, this shortcut is used for macs.
20344
+ */
20345
+ shortcut: string | null;
20346
+ /**
20347
+ * Shortcut to type to activate on macs. Keys are +-delimited.
20348
+ * Only required to use a different shortcut on mac, i.e. to be
20349
+ * idiomatic with OS shortcuts like cmd+shift+z for redo,
20350
+ * vs windows' ctrl+y.
20351
+ */
20352
+ macShortcut?: string | null;
20353
+ /**
20354
+ * Function to call when the shortcut is activated.
20355
+ *
20356
+ * The event is undefined if the handler has been invoked
20357
+ * imperatively by calling the handler fn returned by the hook
20358
+ */
20359
+ handler: (event: KeyboardEvent | undefined) => void;
20360
+ /** Does not abort the default keyboard event. */
20361
+ doNotPreventDefault?: boolean;
20362
+ /** Whether the shortcut will activate with a form field in focus */
20363
+ activeWhenEditing?: boolean;
20364
+ /** When true, the shortcut is disabled. The result will also reflect this state, which may disable attached menus, buttons, etc */
20365
+ disabled?: boolean;
20366
+ };
20367
+ type ShortcutReference = {
20368
+ shortcut: string;
20369
+ handler: () => void | Promise<void>;
20370
+ disabled: boolean;
20371
+ };
20372
+ interface UseShortcutResult extends ShortcutReference {
20373
+ focusTrap: MutableRefObject<RefType<HTMLElement>>;
20374
+ }
20375
+ declare function useShortcut({ disabled, handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, }: UseShortcutOptions): UseShortcutResult;
20376
+
20377
+ type TooltipProps = TooltipOptions & {
20378
+ /** Content of tooltip popover */
20379
+ title: string | React__default.ReactElement;
20380
+ /** Optional ability to specify alternative placement. By default - bottom center */
20381
+ placement?: TooltipInitialState['placement'];
20382
+ /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
20383
+ visible?: TooltipInitialState['visible'];
20384
+ children: JSX.Element;
20385
+ /** If the tooltip should not be rendered inside a portal */
20386
+ withoutPortal?: boolean;
20387
+ };
20388
+ declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20389
+
20308
20390
  /** Button themes that are available to use with our brand */
20309
20391
  type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
20310
20392
  /** Button sizes that are available to use with our brand */
@@ -20320,6 +20402,21 @@ type ButtonProps = ButtonProps$1 & {
20320
20402
  * @default "md"
20321
20403
  * */
20322
20404
  size?: ButtonSizeProps$1;
20405
+ /**
20406
+ * Sets a tooltip on the button when hovered
20407
+ * Note that the tooltip will be shown whether disabled or not.
20408
+ */
20409
+ tooltip?: React$1.ReactNode;
20410
+ /**
20411
+ * Sets additional tooltip options if the tooltip is set
20412
+ */
20413
+ tooltipOptions?: Omit<TooltipProps, 'title' | 'children'>;
20414
+ /**
20415
+ * Sets a shortcut for the button.
20416
+ * The shortcut's handler function will be automatically set to the onClick of the button,
20417
+ * and a tooltip will be added to the button that shows the keyboard shortcut.
20418
+ */
20419
+ shortcut?: ShortcutReference;
20323
20420
  };
20324
20421
  /**
20325
20422
  * Uniform Button Component
@@ -20329,675 +20426,678 @@ type ButtonProps = ButtonProps$1 & {
20329
20426
  declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
20330
20427
 
20331
20428
  declare const allSupportedIcons: {
20332
- 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20333
- card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20334
- 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20335
- 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20336
- 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20337
- 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20338
- 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20339
- 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20340
- warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20341
- 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20429
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20430
+ card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20431
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20432
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20433
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20434
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20435
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20436
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20437
+ warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20438
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20342
20439
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
20343
- 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20344
- json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20345
- 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20346
- 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20347
- 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20348
- 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20349
- 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20350
- 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20351
- 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20352
- 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20353
- 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20354
- 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20355
- 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20356
- 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20357
- 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20358
- 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20359
- 'add-r': _react_icons_all_files_lib.IconType;
20360
- add: _react_icons_all_files_lib.IconType;
20361
- airplane: _react_icons_all_files_lib.IconType;
20362
- alarm: _react_icons_all_files_lib.IconType;
20363
- album: _react_icons_all_files_lib.IconType;
20364
- 'align-bottom': _react_icons_all_files_lib.IconType;
20365
- 'align-center': _react_icons_all_files_lib.IconType;
20366
- 'align-left': _react_icons_all_files_lib.IconType;
20367
- 'align-middle': _react_icons_all_files_lib.IconType;
20368
- 'align-right': _react_icons_all_files_lib.IconType;
20369
- 'align-top': _react_icons_all_files_lib.IconType;
20370
- anchor: _react_icons_all_files_lib.IconType;
20371
- 'apple-watch': _react_icons_all_files_lib.IconType;
20372
- 'arrange-back': _react_icons_all_files_lib.IconType;
20373
- 'arrange-front': _react_icons_all_files_lib.IconType;
20374
- 'arrow-align-h': _react_icons_all_files_lib.IconType;
20375
- 'arrow-align-v': _react_icons_all_files_lib.IconType;
20376
- 'arrow-bottom-left-o': _react_icons_all_files_lib.IconType;
20377
- 'arrow-bottom-left-r': _react_icons_all_files_lib.IconType;
20378
- 'arrow-bottom-left': _react_icons_all_files_lib.IconType;
20379
- 'arrow-bottom-right-o': _react_icons_all_files_lib.IconType;
20380
- 'arrow-bottom-right-r': _react_icons_all_files_lib.IconType;
20381
- 'arrow-bottom-right': _react_icons_all_files_lib.IconType;
20382
- 'arrow-down-o': _react_icons_all_files_lib.IconType;
20383
- 'arrow-down-r': _react_icons_all_files_lib.IconType;
20384
- 'arrow-down': _react_icons_all_files_lib.IconType;
20385
- 'arrow-left-o': _react_icons_all_files_lib.IconType;
20386
- 'arrow-left-r': _react_icons_all_files_lib.IconType;
20387
- 'arrow-left': _react_icons_all_files_lib.IconType;
20388
- 'arrow-long-down-c': _react_icons_all_files_lib.IconType;
20389
- 'arrow-long-down-e': _react_icons_all_files_lib.IconType;
20390
- 'arrow-long-down-l': _react_icons_all_files_lib.IconType;
20391
- 'arrow-long-down-r': _react_icons_all_files_lib.IconType;
20392
- 'arrow-long-down': _react_icons_all_files_lib.IconType;
20393
- 'arrow-long-left-c': _react_icons_all_files_lib.IconType;
20394
- 'arrow-long-left-e': _react_icons_all_files_lib.IconType;
20395
- 'arrow-long-left-l': _react_icons_all_files_lib.IconType;
20396
- 'arrow-long-left-r': _react_icons_all_files_lib.IconType;
20397
- 'arrow-long-left': _react_icons_all_files_lib.IconType;
20398
- 'arrow-long-right-c': _react_icons_all_files_lib.IconType;
20399
- 'arrow-long-right-e': _react_icons_all_files_lib.IconType;
20400
- 'arrow-long-right-l': _react_icons_all_files_lib.IconType;
20401
- 'arrow-long-right-r': _react_icons_all_files_lib.IconType;
20402
- 'arrow-long-right': _react_icons_all_files_lib.IconType;
20403
- 'arrow-long-up-c': _react_icons_all_files_lib.IconType;
20404
- 'arrow-long-up-e': _react_icons_all_files_lib.IconType;
20405
- 'arrow-long-up-l': _react_icons_all_files_lib.IconType;
20406
- 'arrow-long-up-r': _react_icons_all_files_lib.IconType;
20407
- 'arrow-long-up': _react_icons_all_files_lib.IconType;
20408
- 'arrow-right-o': _react_icons_all_files_lib.IconType;
20409
- 'arrow-right-r': _react_icons_all_files_lib.IconType;
20410
- 'arrow-right': _react_icons_all_files_lib.IconType;
20411
- 'arrow-top-left-o': _react_icons_all_files_lib.IconType;
20412
- 'arrow-top-left-r': _react_icons_all_files_lib.IconType;
20413
- 'arrow-top-left': _react_icons_all_files_lib.IconType;
20414
- 'arrow-top-right-o': _react_icons_all_files_lib.IconType;
20415
- 'arrow-top-right-r': _react_icons_all_files_lib.IconType;
20416
- 'arrow-top-right': _react_icons_all_files_lib.IconType;
20417
- 'arrow-up-o': _react_icons_all_files_lib.IconType;
20418
- 'arrow-up-r': _react_icons_all_files_lib.IconType;
20419
- 'arrow-up': _react_icons_all_files_lib.IconType;
20420
- 'arrows-breake-h': _react_icons_all_files_lib.IconType;
20421
- 'arrows-breake-v': _react_icons_all_files_lib.IconType;
20422
- 'arrows-exchange-alt-v': _react_icons_all_files_lib.IconType;
20423
- 'arrows-exchange-alt': _react_icons_all_files_lib.IconType;
20424
- 'arrows-exchange-v': _react_icons_all_files_lib.IconType;
20425
- 'arrows-exchange': _react_icons_all_files_lib.IconType;
20426
- 'arrows-expand-down-left': _react_icons_all_files_lib.IconType;
20427
- 'arrows-expand-down-right': _react_icons_all_files_lib.IconType;
20428
- 'arrows-expand-left-alt': _react_icons_all_files_lib.IconType;
20429
- 'arrows-expand-left': _react_icons_all_files_lib.IconType;
20430
- 'arrows-expand-right-alt': _react_icons_all_files_lib.IconType;
20431
- 'arrows-expand-right': _react_icons_all_files_lib.IconType;
20432
- 'arrows-expand-up-left': _react_icons_all_files_lib.IconType;
20433
- 'arrows-expand-up-right': _react_icons_all_files_lib.IconType;
20434
- 'arrows-h-alt': _react_icons_all_files_lib.IconType;
20435
- 'arrows-h': _react_icons_all_files_lib.IconType;
20436
- 'arrows-merge-alt-h': _react_icons_all_files_lib.IconType;
20437
- 'arrows-merge-alt-v': _react_icons_all_files_lib.IconType;
20438
- 'arrows-scroll-h': _react_icons_all_files_lib.IconType;
20439
- 'arrows-scroll-v': _react_icons_all_files_lib.IconType;
20440
- 'arrows-shrink-h': _react_icons_all_files_lib.IconType;
20441
- 'arrows-shrink-v': _react_icons_all_files_lib.IconType;
20442
- 'arrows-v-alt': _react_icons_all_files_lib.IconType;
20443
- 'arrows-v': _react_icons_all_files_lib.IconType;
20444
- assign: _react_icons_all_files_lib.IconType;
20445
- asterisk: _react_icons_all_files_lib.IconType;
20446
- attachment: _react_icons_all_files_lib.IconType;
20447
- attribution: _react_icons_all_files_lib.IconType;
20448
- awards: _react_icons_all_files_lib.IconType;
20449
- backspace: _react_icons_all_files_lib.IconType;
20450
- 'band-aid': _react_icons_all_files_lib.IconType;
20451
- 'battery-empty': _react_icons_all_files_lib.IconType;
20452
- 'battery-full': _react_icons_all_files_lib.IconType;
20453
- battery: _react_icons_all_files_lib.IconType;
20454
- bee: _react_icons_all_files_lib.IconType;
20455
- bell: _react_icons_all_files_lib.IconType;
20456
- bitbucket: _react_icons_all_files_lib.IconType;
20457
- block: _react_icons_all_files_lib.IconType;
20458
- board: _react_icons_all_files_lib.IconType;
20459
- bolt: _react_icons_all_files_lib.IconType;
20460
- bookmark: _react_icons_all_files_lib.IconType;
20461
- 'border-all': _react_icons_all_files_lib.IconType;
20462
- 'border-bottom': _react_icons_all_files_lib.IconType;
20463
- 'border-left': _react_icons_all_files_lib.IconType;
20464
- 'border-right': _react_icons_all_files_lib.IconType;
20465
- 'border-style-dashed': _react_icons_all_files_lib.IconType;
20466
- 'border-style-dotted': _react_icons_all_files_lib.IconType;
20467
- 'border-style-solid': _react_icons_all_files_lib.IconType;
20468
- bot: _react_icons_all_files_lib.IconType;
20469
- bowl: _react_icons_all_files_lib.IconType;
20470
- box: _react_icons_all_files_lib.IconType;
20471
- boy: _react_icons_all_files_lib.IconType;
20472
- briefcase: _react_icons_all_files_lib.IconType;
20473
- browse: _react_icons_all_files_lib.IconType;
20474
- browser: _react_icons_all_files_lib.IconType;
20475
- brush: _react_icons_all_files_lib.IconType;
20476
- bulb: _react_icons_all_files_lib.IconType;
20477
- 'c-plus-plus': _react_icons_all_files_lib.IconType;
20478
- calculator: _react_icons_all_files_lib.IconType;
20479
- 'calendar-dates': _react_icons_all_files_lib.IconType;
20480
- 'calendar-due': _react_icons_all_files_lib.IconType;
20481
- 'calendar-next': _react_icons_all_files_lib.IconType;
20482
- 'calendar-today': _react_icons_all_files_lib.IconType;
20483
- 'calendar-two': _react_icons_all_files_lib.IconType;
20484
- calendar: _react_icons_all_files_lib.IconType;
20485
- calibrate: _react_icons_all_files_lib.IconType;
20486
- camera: _react_icons_all_files_lib.IconType;
20487
- cap: _react_icons_all_files_lib.IconType;
20488
- captions: _react_icons_all_files_lib.IconType;
20489
- 'card-clubs': _react_icons_all_files_lib.IconType;
20490
- 'card-diamonds': _react_icons_all_files_lib.IconType;
20491
- 'card-hearts': _react_icons_all_files_lib.IconType;
20492
- 'card-spades': _react_icons_all_files_lib.IconType;
20493
- carousel: _react_icons_all_files_lib.IconType;
20494
- cast: _react_icons_all_files_lib.IconType;
20495
- chart: _react_icons_all_files_lib.IconType;
20496
- 'check-o': _react_icons_all_files_lib.IconType;
20497
- 'check-r': _react_icons_all_files_lib.IconType;
20498
- check: _react_icons_all_files_lib.IconType;
20499
- 'chevron-double-down-o': _react_icons_all_files_lib.IconType;
20500
- 'chevron-double-down-r': _react_icons_all_files_lib.IconType;
20501
- 'chevron-double-down': _react_icons_all_files_lib.IconType;
20502
- 'chevron-double-left-o': _react_icons_all_files_lib.IconType;
20503
- 'chevron-double-left-r': _react_icons_all_files_lib.IconType;
20504
- 'chevron-double-left': _react_icons_all_files_lib.IconType;
20505
- 'chevron-double-right-o': _react_icons_all_files_lib.IconType;
20506
- 'chevron-double-right-r': _react_icons_all_files_lib.IconType;
20507
- 'chevron-double-right': _react_icons_all_files_lib.IconType;
20508
- 'chevron-double-up-o': _react_icons_all_files_lib.IconType;
20509
- 'chevron-double-up-r': _react_icons_all_files_lib.IconType;
20510
- 'chevron-double-up': _react_icons_all_files_lib.IconType;
20511
- 'chevron-down-o': _react_icons_all_files_lib.IconType;
20512
- 'chevron-down-r': _react_icons_all_files_lib.IconType;
20513
- 'chevron-down': _react_icons_all_files_lib.IconType;
20514
- 'chevron-left-o': _react_icons_all_files_lib.IconType;
20515
- 'chevron-left-r': _react_icons_all_files_lib.IconType;
20516
- 'chevron-left': _react_icons_all_files_lib.IconType;
20517
- 'chevron-right-o': _react_icons_all_files_lib.IconType;
20518
- 'chevron-right-r': _react_icons_all_files_lib.IconType;
20519
- 'chevron-right': _react_icons_all_files_lib.IconType;
20520
- 'chevron-up-o': _react_icons_all_files_lib.IconType;
20521
- 'chevron-up-r': _react_icons_all_files_lib.IconType;
20522
- 'chevron-up': _react_icons_all_files_lib.IconType;
20523
- 'clapper-board': _react_icons_all_files_lib.IconType;
20524
- clipboard: _react_icons_all_files_lib.IconType;
20525
- 'close-o': _react_icons_all_files_lib.IconType;
20526
- 'close-r': _react_icons_all_files_lib.IconType;
20527
- close: _react_icons_all_files_lib.IconType;
20528
- cloud: _react_icons_all_files_lib.IconType;
20529
- 'code-slash': _react_icons_all_files_lib.IconType;
20530
- code: _react_icons_all_files_lib.IconType;
20531
- coffee: _react_icons_all_files_lib.IconType;
20532
- collage: _react_icons_all_files_lib.IconType;
20533
- 'color-bucket': _react_icons_all_files_lib.IconType;
20534
- 'color-picker': _react_icons_all_files_lib.IconType;
20535
- comment: _react_icons_all_files_lib.IconType;
20536
- community: _react_icons_all_files_lib.IconType;
20537
- components: _react_icons_all_files_lib.IconType;
20538
- 'compress-left': _react_icons_all_files_lib.IconType;
20539
- 'compress-right': _react_icons_all_files_lib.IconType;
20540
- 'compress-v': _react_icons_all_files_lib.IconType;
20541
- compress: _react_icons_all_files_lib.IconType;
20542
- controller: _react_icons_all_files_lib.IconType;
20543
- copy: _react_icons_all_files_lib.IconType;
20544
- 'copy-all': _react_icons_all_files_lib.IconType;
20545
- copyright: _react_icons_all_files_lib.IconType;
20546
- 'corner-double-down-left': _react_icons_all_files_lib.IconType;
20547
- 'corner-double-down-right': _react_icons_all_files_lib.IconType;
20548
- 'corner-double-left-down': _react_icons_all_files_lib.IconType;
20549
- 'corner-double-left-up': _react_icons_all_files_lib.IconType;
20550
- 'corner-double-right-down': _react_icons_all_files_lib.IconType;
20551
- 'corner-double-right-up': _react_icons_all_files_lib.IconType;
20552
- 'corner-double-up-left': _react_icons_all_files_lib.IconType;
20553
- 'corner-double-up-right': _react_icons_all_files_lib.IconType;
20554
- 'corner-down-left': _react_icons_all_files_lib.IconType;
20555
- 'corner-down-right': _react_icons_all_files_lib.IconType;
20556
- 'corner-left-down': _react_icons_all_files_lib.IconType;
20557
- 'corner-left-up': _react_icons_all_files_lib.IconType;
20558
- 'corner-right-down': _react_icons_all_files_lib.IconType;
20559
- 'corner-right-up': _react_icons_all_files_lib.IconType;
20560
- 'corner-up-left': _react_icons_all_files_lib.IconType;
20561
- 'corner-up-right': _react_icons_all_files_lib.IconType;
20562
- 'credit-card': _react_icons_all_files_lib.IconType;
20563
- crop: _react_icons_all_files_lib.IconType;
20564
- cross: _react_icons_all_files_lib.IconType;
20565
- crown: _react_icons_all_files_lib.IconType;
20566
- danger: _react_icons_all_files_lib.IconType;
20567
- 'dark-mode': _react_icons_all_files_lib.IconType;
20568
- data: _react_icons_all_files_lib.IconType;
20569
- database: _react_icons_all_files_lib.IconType;
20570
- debug: _react_icons_all_files_lib.IconType;
20571
- desktop: _react_icons_all_files_lib.IconType;
20572
- 'details-less': _react_icons_all_files_lib.IconType;
20573
- 'details-more': _react_icons_all_files_lib.IconType;
20574
- dialpad: _react_icons_all_files_lib.IconType;
20575
- 'dice-1': _react_icons_all_files_lib.IconType;
20576
- 'dice-2': _react_icons_all_files_lib.IconType;
20577
- 'dice-3': _react_icons_all_files_lib.IconType;
20578
- 'dice-4': _react_icons_all_files_lib.IconType;
20579
- 'dice-5': _react_icons_all_files_lib.IconType;
20580
- 'dice-6': _react_icons_all_files_lib.IconType;
20581
- disc: _react_icons_all_files_lib.IconType;
20582
- 'display-flex': _react_icons_all_files_lib.IconType;
20583
- 'display-fullwidth': _react_icons_all_files_lib.IconType;
20584
- 'display-grid': _react_icons_all_files_lib.IconType;
20585
- 'display-spacing': _react_icons_all_files_lib.IconType;
20586
- 'distribute-horizontal': _react_icons_all_files_lib.IconType;
20587
- 'distribute-vertical': _react_icons_all_files_lib.IconType;
20588
- 'dock-bottom': _react_icons_all_files_lib.IconType;
20589
- 'dock-left': _react_icons_all_files_lib.IconType;
20590
- 'dock-right': _react_icons_all_files_lib.IconType;
20591
- 'dock-window': _react_icons_all_files_lib.IconType;
20592
- dollar: _react_icons_all_files_lib.IconType;
20593
- drive: _react_icons_all_files_lib.IconType;
20594
- 'drop-invert': _react_icons_all_files_lib.IconType;
20595
- 'drop-opacity': _react_icons_all_files_lib.IconType;
20596
- drop: _react_icons_all_files_lib.IconType;
20597
- duplicate: _react_icons_all_files_lib.IconType;
20598
- 'edit-black-point': _react_icons_all_files_lib.IconType;
20599
- 'edit-contrast': _react_icons_all_files_lib.IconType;
20600
- 'edit-exposure': _react_icons_all_files_lib.IconType;
20601
- 'edit-fade': _react_icons_all_files_lib.IconType;
20602
- 'edit-flip-h': _react_icons_all_files_lib.IconType;
20603
- 'edit-flip-v': _react_icons_all_files_lib.IconType;
20604
- 'edit-highlight': _react_icons_all_files_lib.IconType;
20605
- 'edit-markup': _react_icons_all_files_lib.IconType;
20606
- 'edit-mask': _react_icons_all_files_lib.IconType;
20607
- 'edit-noise': _react_icons_all_files_lib.IconType;
20608
- 'edit-shadows': _react_icons_all_files_lib.IconType;
20609
- 'edit-straight': _react_icons_all_files_lib.IconType;
20610
- 'edit-unmask': _react_icons_all_files_lib.IconType;
20611
- eject: _react_icons_all_files_lib.IconType;
20612
- enter: _react_icons_all_files_lib.IconType;
20613
- erase: _react_icons_all_files_lib.IconType;
20614
- ereader: _react_icons_all_files_lib.IconType;
20615
- ericsson: _react_icons_all_files_lib.IconType;
20616
- ethernet: _react_icons_all_files_lib.IconType;
20617
- euro: _react_icons_all_files_lib.IconType;
20618
- expand: _react_icons_all_files_lib.IconType;
20619
- export: _react_icons_all_files_lib.IconType;
20620
- 'extension-add': _react_icons_all_files_lib.IconType;
20621
- 'extension-alt': _react_icons_all_files_lib.IconType;
20622
- 'extension-remove': _react_icons_all_files_lib.IconType;
20623
- extension: _react_icons_all_files_lib.IconType;
20624
- external: _react_icons_all_files_lib.IconType;
20625
- 'eye-alt': _react_icons_all_files_lib.IconType;
20626
- eye: _react_icons_all_files_lib.IconType;
20627
- feed: _react_icons_all_files_lib.IconType;
20628
- 'file-add': _react_icons_all_files_lib.IconType;
20629
- 'file-document': _react_icons_all_files_lib.IconType;
20630
- 'file-remove': _react_icons_all_files_lib.IconType;
20631
- file: _react_icons_all_files_lib.IconType;
20632
- film: _react_icons_all_files_lib.IconType;
20633
- filters: _react_icons_all_files_lib.IconType;
20634
- 'flag-alt': _react_icons_all_files_lib.IconType;
20635
- flag: _react_icons_all_files_lib.IconType;
20636
- 'folder-add': _react_icons_all_files_lib.IconType;
20637
- 'folder-remove': _react_icons_all_files_lib.IconType;
20638
- folder: _react_icons_all_files_lib.IconType;
20639
- 'font-height': _react_icons_all_files_lib.IconType;
20640
- 'font-spacing': _react_icons_all_files_lib.IconType;
20641
- 'format-center': _react_icons_all_files_lib.IconType;
20642
- 'format-color': _react_icons_all_files_lib.IconType;
20643
- 'format-heading': _react_icons_all_files_lib.IconType;
20644
- 'format-indent-decrease': _react_icons_all_files_lib.IconType;
20645
- 'format-indent-increase': _react_icons_all_files_lib.IconType;
20646
- 'format-italic': _react_icons_all_files_lib.IconType;
20647
- 'format-justify': _react_icons_all_files_lib.IconType;
20648
- 'format-left': _react_icons_all_files_lib.IconType;
20649
- 'format-line-height': _react_icons_all_files_lib.IconType;
20650
- 'format-right': _react_icons_all_files_lib.IconType;
20651
- 'format-separator': _react_icons_all_files_lib.IconType;
20652
- 'format-slash': _react_icons_all_files_lib.IconType;
20653
- 'format-text': _react_icons_all_files_lib.IconType;
20654
- 'format-underline': _react_icons_all_files_lib.IconType;
20655
- 'format-uppercase': _react_icons_all_files_lib.IconType;
20656
- games: _react_icons_all_files_lib.IconType;
20657
- 'gender-female': _react_icons_all_files_lib.IconType;
20658
- 'gender-male': _react_icons_all_files_lib.IconType;
20659
- 'ghost-character': _react_icons_all_files_lib.IconType;
20660
- gift: _react_icons_all_files_lib.IconType;
20661
- girl: _react_icons_all_files_lib.IconType;
20662
- 'git-branch': _react_icons_all_files_lib.IconType;
20663
- 'git-commit': _react_icons_all_files_lib.IconType;
20664
- 'git-fork': _react_icons_all_files_lib.IconType;
20665
- 'git-pull': _react_icons_all_files_lib.IconType;
20666
- 'glass-alt': _react_icons_all_files_lib.IconType;
20667
- glass: _react_icons_all_files_lib.IconType;
20668
- 'globe-alt': _react_icons_all_files_lib.IconType;
20669
- globe: _react_icons_all_files_lib.IconType;
20670
- gym: _react_icons_all_files_lib.IconType;
20671
- hashtag: _react_icons_all_files_lib.IconType;
20672
- headset: _react_icons_all_files_lib.IconType;
20673
- heart: _react_icons_all_files_lib.IconType;
20674
- 'home-alt': _react_icons_all_files_lib.IconType;
20675
- 'home-screen': _react_icons_all_files_lib.IconType;
20676
- home: _react_icons_all_files_lib.IconType;
20677
- icecream: _react_icons_all_files_lib.IconType;
20678
- image: _react_icons_all_files_lib.IconType;
20679
- import: _react_icons_all_files_lib.IconType;
20680
- inbox: _react_icons_all_files_lib.IconType;
20681
- infinity: _react_icons_all_files_lib.IconType;
20682
- info: _react_icons_all_files_lib.IconType;
20683
- inpicture: _react_icons_all_files_lib.IconType;
20684
- 'insert-after-o': _react_icons_all_files_lib.IconType;
20685
- 'insert-after-r': _react_icons_all_files_lib.IconType;
20686
- 'insert-after': _react_icons_all_files_lib.IconType;
20687
- 'insert-before-o': _react_icons_all_files_lib.IconType;
20688
- 'insert-before-r': _react_icons_all_files_lib.IconType;
20689
- 'insert-before': _react_icons_all_files_lib.IconType;
20690
- insights: _react_icons_all_files_lib.IconType;
20691
- internal: _react_icons_all_files_lib.IconType;
20692
- key: _react_icons_all_files_lib.IconType;
20693
- keyboard: _react_icons_all_files_lib.IconType;
20694
- keyhole: _react_icons_all_files_lib.IconType;
20695
- laptop: _react_icons_all_files_lib.IconType;
20696
- 'layout-grid-small': _react_icons_all_files_lib.IconType;
20697
- 'layout-grid': _react_icons_all_files_lib.IconType;
20698
- 'layout-list': _react_icons_all_files_lib.IconType;
20699
- 'layout-pin': _react_icons_all_files_lib.IconType;
20700
- link: _react_icons_all_files_lib.IconType;
20701
- 'list-tree': _react_icons_all_files_lib.IconType;
20702
- list: _react_icons_all_files_lib.IconType;
20703
- 'live-photo': _react_icons_all_files_lib.IconType;
20704
- 'loadbar-alt': _react_icons_all_files_lib.IconType;
20705
- 'loadbar-doc': _react_icons_all_files_lib.IconType;
20706
- 'loadbar-sound': _react_icons_all_files_lib.IconType;
20707
- loadbar: _react_icons_all_files_lib.IconType;
20708
- 'lock-unlock': _react_icons_all_files_lib.IconType;
20709
- lock: _react_icons_all_files_lib.IconType;
20710
- 'log-in': _react_icons_all_files_lib.IconType;
20711
- 'log-off': _react_icons_all_files_lib.IconType;
20712
- 'log-out': _react_icons_all_files_lib.IconType;
20713
- loupe: _react_icons_all_files_lib.IconType;
20714
- magnet: _react_icons_all_files_lib.IconType;
20715
- 'mail-forward': _react_icons_all_files_lib.IconType;
20716
- 'mail-open': _react_icons_all_files_lib.IconType;
20717
- 'mail-reply': _react_icons_all_files_lib.IconType;
20718
- mail: _react_icons_all_files_lib.IconType;
20719
- 'math-divide': _react_icons_all_files_lib.IconType;
20720
- 'math-equal': _react_icons_all_files_lib.IconType;
20721
- 'math-minus': _react_icons_all_files_lib.IconType;
20722
- 'math-percent': _react_icons_all_files_lib.IconType;
20723
- 'math-plus': _react_icons_all_files_lib.IconType;
20724
- 'maximize-alt': _react_icons_all_files_lib.IconType;
20725
- maximize: _react_icons_all_files_lib.IconType;
20726
- 'media-live': _react_icons_all_files_lib.IconType;
20727
- 'media-podcast': _react_icons_all_files_lib.IconType;
20728
- 'menu-boxed': _react_icons_all_files_lib.IconType;
20729
- 'menu-cake': _react_icons_all_files_lib.IconType;
20730
- 'menu-cheese': _react_icons_all_files_lib.IconType;
20731
- 'menu-grid-o': _react_icons_all_files_lib.IconType;
20732
- 'menu-grid-r': _react_icons_all_files_lib.IconType;
20733
- 'menu-hotdog': _react_icons_all_files_lib.IconType;
20734
- 'menu-left-alt': _react_icons_all_files_lib.IconType;
20735
- 'menu-left': _react_icons_all_files_lib.IconType;
20736
- 'menu-motion': _react_icons_all_files_lib.IconType;
20737
- 'menu-oreos': _react_icons_all_files_lib.IconType;
20738
- 'menu-right-alt': _react_icons_all_files_lib.IconType;
20739
- 'menu-right': _react_icons_all_files_lib.IconType;
20740
- 'menu-round': _react_icons_all_files_lib.IconType;
20741
- menu: _react_icons_all_files_lib.IconType;
20742
- 'merge-horizontal': _react_icons_all_files_lib.IconType;
20743
- 'merge-vertical': _react_icons_all_files_lib.IconType;
20744
- mic: _react_icons_all_files_lib.IconType;
20745
- 'mini-player': _react_icons_all_files_lib.IconType;
20746
- 'minimize-alt': _react_icons_all_files_lib.IconType;
20747
- minimize: _react_icons_all_files_lib.IconType;
20748
- modem: _react_icons_all_files_lib.IconType;
20749
- moon: _react_icons_all_files_lib.IconType;
20750
- 'more-alt': _react_icons_all_files_lib.IconType;
20751
- 'more-o': _react_icons_all_files_lib.IconType;
20752
- 'more-r': _react_icons_all_files_lib.IconType;
20753
- 'more-vertical-alt': _react_icons_all_files_lib.IconType;
20754
- 'more-vertical-o': _react_icons_all_files_lib.IconType;
20755
- 'more-vertical-r': _react_icons_all_files_lib.IconType;
20756
- 'more-vertical': _react_icons_all_files_lib.IconType;
20757
- more: _react_icons_all_files_lib.IconType;
20758
- mouse: _react_icons_all_files_lib.IconType;
20759
- 'move-down': _react_icons_all_files_lib.IconType;
20760
- 'move-left': _react_icons_all_files_lib.IconType;
20761
- 'move-right': _react_icons_all_files_lib.IconType;
20762
- 'move-task': _react_icons_all_files_lib.IconType;
20763
- 'move-up': _react_icons_all_files_lib.IconType;
20764
- 'music-note': _react_icons_all_files_lib.IconType;
20765
- 'music-speaker': _react_icons_all_files_lib.IconType;
20766
- music: _react_icons_all_files_lib.IconType;
20767
- nametag: _react_icons_all_files_lib.IconType;
20768
- notes: _react_icons_all_files_lib.IconType;
20769
- notifications: _react_icons_all_files_lib.IconType;
20770
- options: _react_icons_all_files_lib.IconType;
20771
- organisation: _react_icons_all_files_lib.IconType;
20772
- password: _react_icons_all_files_lib.IconType;
20773
- 'path-back': _react_icons_all_files_lib.IconType;
20774
- 'path-crop': _react_icons_all_files_lib.IconType;
20775
- 'path-divide': _react_icons_all_files_lib.IconType;
20776
- 'path-exclude': _react_icons_all_files_lib.IconType;
20777
- 'path-front': _react_icons_all_files_lib.IconType;
20778
- 'path-intersect': _react_icons_all_files_lib.IconType;
20779
- 'path-outline': _react_icons_all_files_lib.IconType;
20780
- 'path-trim': _react_icons_all_files_lib.IconType;
20781
- 'path-unite': _react_icons_all_files_lib.IconType;
20782
- pen: _react_icons_all_files_lib.IconType;
20783
- 'pentagon-bottom-left': _react_icons_all_files_lib.IconType;
20784
- 'pentagon-bottom-right': _react_icons_all_files_lib.IconType;
20785
- 'pentagon-down': _react_icons_all_files_lib.IconType;
20786
- 'pentagon-left': _react_icons_all_files_lib.IconType;
20787
- 'pentagon-right': _react_icons_all_files_lib.IconType;
20788
- 'pentagon-top-left': _react_icons_all_files_lib.IconType;
20789
- 'pentagon-top-right': _react_icons_all_files_lib.IconType;
20790
- 'pentagon-up': _react_icons_all_files_lib.IconType;
20791
- performance: _react_icons_all_files_lib.IconType;
20792
- phone: _react_icons_all_files_lib.IconType;
20793
- photoscan: _react_icons_all_files_lib.IconType;
20794
- piano: _react_icons_all_files_lib.IconType;
20795
- pill: _react_icons_all_files_lib.IconType;
20796
- 'pin-alt': _react_icons_all_files_lib.IconType;
20797
- 'pin-bottom': _react_icons_all_files_lib.IconType;
20798
- 'pin-top': _react_icons_all_files_lib.IconType;
20799
- pin: _react_icons_all_files_lib.IconType;
20800
- 'play-backwards': _react_icons_all_files_lib.IconType;
20801
- 'play-button-o': _react_icons_all_files_lib.IconType;
20802
- 'play-button-r': _react_icons_all_files_lib.IconType;
20803
- 'play-button': _react_icons_all_files_lib.IconType;
20804
- 'play-forwards': _react_icons_all_files_lib.IconType;
20805
- 'play-list-add': _react_icons_all_files_lib.IconType;
20806
- 'play-list-check': _react_icons_all_files_lib.IconType;
20807
- 'play-list-remove': _react_icons_all_files_lib.IconType;
20808
- 'play-list-search': _react_icons_all_files_lib.IconType;
20809
- 'play-list': _react_icons_all_files_lib.IconType;
20810
- 'play-pause-o': _react_icons_all_files_lib.IconType;
20811
- 'play-pause-r': _react_icons_all_files_lib.IconType;
20812
- 'play-pause': _react_icons_all_files_lib.IconType;
20813
- 'play-stop-o': _react_icons_all_files_lib.IconType;
20814
- 'play-stop-r': _react_icons_all_files_lib.IconType;
20815
- 'play-stop': _react_icons_all_files_lib.IconType;
20816
- 'play-track-next-o': _react_icons_all_files_lib.IconType;
20817
- 'play-track-next-r': _react_icons_all_files_lib.IconType;
20818
- 'play-track-next': _react_icons_all_files_lib.IconType;
20819
- 'play-track-prev-o': _react_icons_all_files_lib.IconType;
20820
- 'play-track-prev-r': _react_icons_all_files_lib.IconType;
20821
- 'play-track-prev': _react_icons_all_files_lib.IconType;
20822
- plug: _react_icons_all_files_lib.IconType;
20823
- polaroid: _react_icons_all_files_lib.IconType;
20824
- poll: _react_icons_all_files_lib.IconType;
20825
- presentation: _react_icons_all_files_lib.IconType;
20826
- printer: _react_icons_all_files_lib.IconType;
20827
- profile: _react_icons_all_files_lib.IconType;
20828
- 'pull-clear': _react_icons_all_files_lib.IconType;
20829
- 'push-chevron-down-o': _react_icons_all_files_lib.IconType;
20830
- 'push-chevron-down-r': _react_icons_all_files_lib.IconType;
20831
- 'push-chevron-down': _react_icons_all_files_lib.IconType;
20832
- 'push-chevron-left-o': _react_icons_all_files_lib.IconType;
20833
- 'push-chevron-left-r': _react_icons_all_files_lib.IconType;
20834
- 'push-chevron-left': _react_icons_all_files_lib.IconType;
20835
- 'push-chevron-right-o': _react_icons_all_files_lib.IconType;
20836
- 'push-chevron-right-r': _react_icons_all_files_lib.IconType;
20837
- 'push-chevron-right': _react_icons_all_files_lib.IconType;
20838
- 'push-chevron-up-o': _react_icons_all_files_lib.IconType;
20839
- 'push-chevron-up-r': _react_icons_all_files_lib.IconType;
20840
- 'push-chevron-up': _react_icons_all_files_lib.IconType;
20841
- 'push-down': _react_icons_all_files_lib.IconType;
20842
- 'push-left': _react_icons_all_files_lib.IconType;
20843
- 'push-right': _react_icons_all_files_lib.IconType;
20844
- 'push-up': _react_icons_all_files_lib.IconType;
20845
- qr: _react_icons_all_files_lib.IconType;
20846
- 'quote-o': _react_icons_all_files_lib.IconType;
20847
- quote: _react_icons_all_files_lib.IconType;
20848
- 'radio-check': _react_icons_all_files_lib.IconType;
20849
- 'radio-checked': _react_icons_all_files_lib.IconType;
20850
- ratio: _react_icons_all_files_lib.IconType;
20851
- read: _react_icons_all_files_lib.IconType;
20852
- readme: _react_icons_all_files_lib.IconType;
20853
- record: _react_icons_all_files_lib.IconType;
20854
- redo: _react_icons_all_files_lib.IconType;
20855
- remote: _react_icons_all_files_lib.IconType;
20856
- 'remove-r': _react_icons_all_files_lib.IconType;
20857
- remove: _react_icons_all_files_lib.IconType;
20858
- rename: _react_icons_all_files_lib.IconType;
20859
- reorder: _react_icons_all_files_lib.IconType;
20860
- repeat: _react_icons_all_files_lib.IconType;
20861
- ring: _react_icons_all_files_lib.IconType;
20862
- 'row-first': _react_icons_all_files_lib.IconType;
20863
- 'row-last': _react_icons_all_files_lib.IconType;
20864
- ruler: _react_icons_all_files_lib.IconType;
20865
- 'sand-clock': _react_icons_all_files_lib.IconType;
20866
- scan: _react_icons_all_files_lib.IconType;
20867
- 'screen-mirror': _react_icons_all_files_lib.IconType;
20868
- 'screen-shot': _react_icons_all_files_lib.IconType;
20869
- 'screen-wide': _react_icons_all_files_lib.IconType;
20870
- screen: _react_icons_all_files_lib.IconType;
20871
- 'scroll-h': _react_icons_all_files_lib.IconType;
20872
- 'scroll-v': _react_icons_all_files_lib.IconType;
20873
- 'search-found': _react_icons_all_files_lib.IconType;
20874
- 'search-loading': _react_icons_all_files_lib.IconType;
20875
- search: _react_icons_all_files_lib.IconType;
20876
- 'select-o': _react_icons_all_files_lib.IconType;
20877
- 'select-r': _react_icons_all_files_lib.IconType;
20878
- select: _react_icons_all_files_lib.IconType;
20879
- server: _react_icons_all_files_lib.IconType;
20880
- 'shape-circle': _react_icons_all_files_lib.IconType;
20881
- 'shape-half-circle': _react_icons_all_files_lib.IconType;
20882
- 'shape-hexagon': _react_icons_all_files_lib.IconType;
20883
- 'shape-rhombus': _react_icons_all_files_lib.IconType;
20884
- 'shape-square': _react_icons_all_files_lib.IconType;
20885
- 'shape-triangle': _react_icons_all_files_lib.IconType;
20886
- 'shape-zigzag': _react_icons_all_files_lib.IconType;
20887
- share: _react_icons_all_files_lib.IconType;
20888
- shield: _react_icons_all_files_lib.IconType;
20889
- 'shopping-bag': _react_icons_all_files_lib.IconType;
20890
- 'shopping-cart': _react_icons_all_files_lib.IconType;
20891
- shortcut: _react_icons_all_files_lib.IconType;
20892
- 'sidebar-open': _react_icons_all_files_lib.IconType;
20893
- 'sidebar-right': _react_icons_all_files_lib.IconType;
20894
- sidebar: _react_icons_all_files_lib.IconType;
20895
- signal: _react_icons_all_files_lib.IconType;
20896
- size: _react_icons_all_files_lib.IconType;
20897
- sleep: _react_icons_all_files_lib.IconType;
20898
- 'smart-home-boiler': _react_icons_all_files_lib.IconType;
20899
- 'smart-home-cooker': _react_icons_all_files_lib.IconType;
20900
- 'smart-home-heat': _react_icons_all_files_lib.IconType;
20901
- 'smart-home-light': _react_icons_all_files_lib.IconType;
20902
- 'smart-home-refrigerator': _react_icons_all_files_lib.IconType;
20903
- 'smart-home-wash-machine': _react_icons_all_files_lib.IconType;
20904
- 'smartphone-chip': _react_icons_all_files_lib.IconType;
20905
- 'smartphone-ram': _react_icons_all_files_lib.IconType;
20906
- 'smartphone-shake': _react_icons_all_files_lib.IconType;
20907
- smartphone: _react_icons_all_files_lib.IconType;
20908
- 'smile-mouth-open': _react_icons_all_files_lib.IconType;
20909
- 'smile-neutral': _react_icons_all_files_lib.IconType;
20910
- 'smile-no-mouth': _react_icons_all_files_lib.IconType;
20911
- 'smile-none': _react_icons_all_files_lib.IconType;
20912
- 'smile-sad': _react_icons_all_files_lib.IconType;
20913
- 'smile-upside': _react_icons_all_files_lib.IconType;
20914
- smile: _react_icons_all_files_lib.IconType;
20915
- 'software-download': _react_icons_all_files_lib.IconType;
20916
- 'software-upload': _react_icons_all_files_lib.IconType;
20917
- 'sort-az': _react_icons_all_files_lib.IconType;
20918
- 'sort-za': _react_icons_all_files_lib.IconType;
20919
- 'space-between-v': _react_icons_all_files_lib.IconType;
20920
- 'space-between': _react_icons_all_files_lib.IconType;
20921
- 'spinner-alt': _react_icons_all_files_lib.IconType;
20922
- 'spinner-two-alt': _react_icons_all_files_lib.IconType;
20923
- 'spinner-two': _react_icons_all_files_lib.IconType;
20924
- spinner: _react_icons_all_files_lib.IconType;
20925
- stack: _react_icons_all_files_lib.IconType;
20926
- stopwatch: _react_icons_all_files_lib.IconType;
20927
- stories: _react_icons_all_files_lib.IconType;
20928
- style: _react_icons_all_files_lib.IconType;
20929
- sun: _react_icons_all_files_lib.IconType;
20930
- support: _react_icons_all_files_lib.IconType;
20931
- 'swap-vertical': _react_icons_all_files_lib.IconType;
20932
- swap: _react_icons_all_files_lib.IconType;
20933
- sweden: _react_icons_all_files_lib.IconType;
20934
- swiss: _react_icons_all_files_lib.IconType;
20935
- sync: _react_icons_all_files_lib.IconType;
20936
- tab: _react_icons_all_files_lib.IconType;
20937
- tag: _react_icons_all_files_lib.IconType;
20938
- 'tap-double': _react_icons_all_files_lib.IconType;
20939
- 'tap-single': _react_icons_all_files_lib.IconType;
20940
- template: _react_icons_all_files_lib.IconType;
20941
- tennis: _react_icons_all_files_lib.IconType;
20942
- terminal: _react_icons_all_files_lib.IconType;
20943
- terrain: _react_icons_all_files_lib.IconType;
20944
- thermometer: _react_icons_all_files_lib.IconType;
20945
- thermostat: _react_icons_all_files_lib.IconType;
20946
- tikcode: _react_icons_all_files_lib.IconType;
20947
- time: _react_icons_all_files_lib.IconType;
20948
- timelapse: _react_icons_all_files_lib.IconType;
20949
- timer: _react_icons_all_files_lib.IconType;
20950
- today: _react_icons_all_files_lib.IconType;
20951
- 'toggle-off': _react_icons_all_files_lib.IconType;
20952
- 'toggle-on': _react_icons_all_files_lib.IconType;
20953
- 'toggle-square-off': _react_icons_all_files_lib.IconType;
20954
- 'toggle-square': _react_icons_all_files_lib.IconType;
20955
- 'toolbar-bottom': _react_icons_all_files_lib.IconType;
20956
- 'toolbar-left': _react_icons_all_files_lib.IconType;
20957
- 'toolbar-right': _react_icons_all_files_lib.IconType;
20958
- 'toolbar-top': _react_icons_all_files_lib.IconType;
20959
- toolbox: _react_icons_all_files_lib.IconType;
20960
- touchpad: _react_icons_all_files_lib.IconType;
20961
- track: _react_icons_all_files_lib.IconType;
20962
- transcript: _react_icons_all_files_lib.IconType;
20963
- 'trash-empty': _react_icons_all_files_lib.IconType;
20964
- trash: _react_icons_all_files_lib.IconType;
20965
- tree: _react_icons_all_files_lib.IconType;
20966
- trees: _react_icons_all_files_lib.IconType;
20967
- 'trending-down': _react_icons_all_files_lib.IconType;
20968
- trending: _react_icons_all_files_lib.IconType;
20969
- trophy: _react_icons_all_files_lib.IconType;
20970
- tv: _react_icons_all_files_lib.IconType;
20971
- 'ui-kit': _react_icons_all_files_lib.IconType;
20972
- umbrella: _react_icons_all_files_lib.IconType;
20973
- unavailable: _react_icons_all_files_lib.IconType;
20974
- unblock: _react_icons_all_files_lib.IconType;
20975
- undo: _react_icons_all_files_lib.IconType;
20976
- unsplash: _react_icons_all_files_lib.IconType;
20977
- 'usb-c': _react_icons_all_files_lib.IconType;
20978
- usb: _react_icons_all_files_lib.IconType;
20979
- 'user-add': _react_icons_all_files_lib.IconType;
20980
- 'user-list': _react_icons_all_files_lib.IconType;
20981
- 'user-remove': _react_icons_all_files_lib.IconType;
20982
- user: _react_icons_all_files_lib.IconType;
20983
- 'view-cols': _react_icons_all_files_lib.IconType;
20984
- 'view-comfortable': _react_icons_all_files_lib.IconType;
20985
- 'view-day': _react_icons_all_files_lib.IconType;
20986
- 'view-grid': _react_icons_all_files_lib.IconType;
20987
- 'view-list': _react_icons_all_files_lib.IconType;
20988
- 'view-month': _react_icons_all_files_lib.IconType;
20989
- 'view-split': _react_icons_all_files_lib.IconType;
20990
- vinyl: _react_icons_all_files_lib.IconType;
20991
- 'voicemail-o': _react_icons_all_files_lib.IconType;
20992
- 'voicemail-r': _react_icons_all_files_lib.IconType;
20993
- voicemail: _react_icons_all_files_lib.IconType;
20994
- volume: _react_icons_all_files_lib.IconType;
20995
- webcam: _react_icons_all_files_lib.IconType;
20996
- website: _react_icons_all_files_lib.IconType;
20997
- 'work-alt': _react_icons_all_files_lib.IconType;
20998
- yinyang: _react_icons_all_files_lib.IconType;
20999
- 'zoom-in': _react_icons_all_files_lib.IconType;
21000
- 'zoom-out': _react_icons_all_files_lib.IconType;
20440
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20441
+ json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20442
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20443
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20444
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20445
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20446
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20447
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20448
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20449
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20450
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20451
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20452
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20453
+ 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20454
+ 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20455
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20456
+ 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20457
+ 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20458
+ refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
20459
+ 'add-r': _react_icons_all_files.IconType;
20460
+ add: _react_icons_all_files.IconType;
20461
+ airplane: _react_icons_all_files.IconType;
20462
+ alarm: _react_icons_all_files.IconType;
20463
+ album: _react_icons_all_files.IconType;
20464
+ 'align-bottom': _react_icons_all_files.IconType;
20465
+ 'align-center': _react_icons_all_files.IconType;
20466
+ 'align-left': _react_icons_all_files.IconType;
20467
+ 'align-middle': _react_icons_all_files.IconType;
20468
+ 'align-right': _react_icons_all_files.IconType;
20469
+ 'align-top': _react_icons_all_files.IconType;
20470
+ anchor: _react_icons_all_files.IconType;
20471
+ 'apple-watch': _react_icons_all_files.IconType;
20472
+ 'arrange-back': _react_icons_all_files.IconType;
20473
+ 'arrange-front': _react_icons_all_files.IconType;
20474
+ 'arrow-align-h': _react_icons_all_files.IconType;
20475
+ 'arrow-align-v': _react_icons_all_files.IconType;
20476
+ 'arrow-bottom-left-o': _react_icons_all_files.IconType;
20477
+ 'arrow-bottom-left-r': _react_icons_all_files.IconType;
20478
+ 'arrow-bottom-left': _react_icons_all_files.IconType;
20479
+ 'arrow-bottom-right-o': _react_icons_all_files.IconType;
20480
+ 'arrow-bottom-right-r': _react_icons_all_files.IconType;
20481
+ 'arrow-bottom-right': _react_icons_all_files.IconType;
20482
+ 'arrow-down-o': _react_icons_all_files.IconType;
20483
+ 'arrow-down-r': _react_icons_all_files.IconType;
20484
+ 'arrow-down': _react_icons_all_files.IconType;
20485
+ 'arrow-left-o': _react_icons_all_files.IconType;
20486
+ 'arrow-left-r': _react_icons_all_files.IconType;
20487
+ 'arrow-left': _react_icons_all_files.IconType;
20488
+ 'arrow-long-down-c': _react_icons_all_files.IconType;
20489
+ 'arrow-long-down-e': _react_icons_all_files.IconType;
20490
+ 'arrow-long-down-l': _react_icons_all_files.IconType;
20491
+ 'arrow-long-down-r': _react_icons_all_files.IconType;
20492
+ 'arrow-long-down': _react_icons_all_files.IconType;
20493
+ 'arrow-long-left-c': _react_icons_all_files.IconType;
20494
+ 'arrow-long-left-e': _react_icons_all_files.IconType;
20495
+ 'arrow-long-left-l': _react_icons_all_files.IconType;
20496
+ 'arrow-long-left-r': _react_icons_all_files.IconType;
20497
+ 'arrow-long-left': _react_icons_all_files.IconType;
20498
+ 'arrow-long-right-c': _react_icons_all_files.IconType;
20499
+ 'arrow-long-right-e': _react_icons_all_files.IconType;
20500
+ 'arrow-long-right-l': _react_icons_all_files.IconType;
20501
+ 'arrow-long-right-r': _react_icons_all_files.IconType;
20502
+ 'arrow-long-right': _react_icons_all_files.IconType;
20503
+ 'arrow-long-up-c': _react_icons_all_files.IconType;
20504
+ 'arrow-long-up-e': _react_icons_all_files.IconType;
20505
+ 'arrow-long-up-l': _react_icons_all_files.IconType;
20506
+ 'arrow-long-up-r': _react_icons_all_files.IconType;
20507
+ 'arrow-long-up': _react_icons_all_files.IconType;
20508
+ 'arrow-right-o': _react_icons_all_files.IconType;
20509
+ 'arrow-right-r': _react_icons_all_files.IconType;
20510
+ 'arrow-right': _react_icons_all_files.IconType;
20511
+ 'arrow-top-left-o': _react_icons_all_files.IconType;
20512
+ 'arrow-top-left-r': _react_icons_all_files.IconType;
20513
+ 'arrow-top-left': _react_icons_all_files.IconType;
20514
+ 'arrow-top-right-o': _react_icons_all_files.IconType;
20515
+ 'arrow-top-right-r': _react_icons_all_files.IconType;
20516
+ 'arrow-top-right': _react_icons_all_files.IconType;
20517
+ 'arrow-up-o': _react_icons_all_files.IconType;
20518
+ 'arrow-up-r': _react_icons_all_files.IconType;
20519
+ 'arrow-up': _react_icons_all_files.IconType;
20520
+ 'arrows-breake-h': _react_icons_all_files.IconType;
20521
+ 'arrows-breake-v': _react_icons_all_files.IconType;
20522
+ 'arrows-exchange-alt-v': _react_icons_all_files.IconType;
20523
+ 'arrows-exchange-alt': _react_icons_all_files.IconType;
20524
+ 'arrows-exchange-v': _react_icons_all_files.IconType;
20525
+ 'arrows-exchange': _react_icons_all_files.IconType;
20526
+ 'arrows-expand-down-left': _react_icons_all_files.IconType;
20527
+ 'arrows-expand-down-right': _react_icons_all_files.IconType;
20528
+ 'arrows-expand-left-alt': _react_icons_all_files.IconType;
20529
+ 'arrows-expand-left': _react_icons_all_files.IconType;
20530
+ 'arrows-expand-right-alt': _react_icons_all_files.IconType;
20531
+ 'arrows-expand-right': _react_icons_all_files.IconType;
20532
+ 'arrows-expand-up-left': _react_icons_all_files.IconType;
20533
+ 'arrows-expand-up-right': _react_icons_all_files.IconType;
20534
+ 'arrows-h-alt': _react_icons_all_files.IconType;
20535
+ 'arrows-h': _react_icons_all_files.IconType;
20536
+ 'arrows-merge-alt-h': _react_icons_all_files.IconType;
20537
+ 'arrows-merge-alt-v': _react_icons_all_files.IconType;
20538
+ 'arrows-scroll-h': _react_icons_all_files.IconType;
20539
+ 'arrows-scroll-v': _react_icons_all_files.IconType;
20540
+ 'arrows-shrink-h': _react_icons_all_files.IconType;
20541
+ 'arrows-shrink-v': _react_icons_all_files.IconType;
20542
+ 'arrows-v-alt': _react_icons_all_files.IconType;
20543
+ 'arrows-v': _react_icons_all_files.IconType;
20544
+ assign: _react_icons_all_files.IconType;
20545
+ asterisk: _react_icons_all_files.IconType;
20546
+ attachment: _react_icons_all_files.IconType;
20547
+ attribution: _react_icons_all_files.IconType;
20548
+ awards: _react_icons_all_files.IconType;
20549
+ backspace: _react_icons_all_files.IconType;
20550
+ 'band-aid': _react_icons_all_files.IconType;
20551
+ 'battery-empty': _react_icons_all_files.IconType;
20552
+ 'battery-full': _react_icons_all_files.IconType;
20553
+ battery: _react_icons_all_files.IconType;
20554
+ bee: _react_icons_all_files.IconType;
20555
+ bell: _react_icons_all_files.IconType;
20556
+ bitbucket: _react_icons_all_files.IconType;
20557
+ block: _react_icons_all_files.IconType;
20558
+ board: _react_icons_all_files.IconType;
20559
+ bolt: _react_icons_all_files.IconType;
20560
+ bookmark: _react_icons_all_files.IconType;
20561
+ 'border-all': _react_icons_all_files.IconType;
20562
+ 'border-bottom': _react_icons_all_files.IconType;
20563
+ 'border-left': _react_icons_all_files.IconType;
20564
+ 'border-right': _react_icons_all_files.IconType;
20565
+ 'border-style-dashed': _react_icons_all_files.IconType;
20566
+ 'border-style-dotted': _react_icons_all_files.IconType;
20567
+ 'border-style-solid': _react_icons_all_files.IconType;
20568
+ bot: _react_icons_all_files.IconType;
20569
+ bowl: _react_icons_all_files.IconType;
20570
+ box: _react_icons_all_files.IconType;
20571
+ boy: _react_icons_all_files.IconType;
20572
+ briefcase: _react_icons_all_files.IconType;
20573
+ browse: _react_icons_all_files.IconType;
20574
+ browser: _react_icons_all_files.IconType;
20575
+ brush: _react_icons_all_files.IconType;
20576
+ bulb: _react_icons_all_files.IconType;
20577
+ 'c-plus-plus': _react_icons_all_files.IconType;
20578
+ calculator: _react_icons_all_files.IconType;
20579
+ 'calendar-dates': _react_icons_all_files.IconType;
20580
+ 'calendar-due': _react_icons_all_files.IconType;
20581
+ 'calendar-next': _react_icons_all_files.IconType;
20582
+ 'calendar-today': _react_icons_all_files.IconType;
20583
+ 'calendar-two': _react_icons_all_files.IconType;
20584
+ calendar: _react_icons_all_files.IconType;
20585
+ calibrate: _react_icons_all_files.IconType;
20586
+ camera: _react_icons_all_files.IconType;
20587
+ cap: _react_icons_all_files.IconType;
20588
+ captions: _react_icons_all_files.IconType;
20589
+ 'card-clubs': _react_icons_all_files.IconType;
20590
+ 'card-diamonds': _react_icons_all_files.IconType;
20591
+ 'card-hearts': _react_icons_all_files.IconType;
20592
+ 'card-spades': _react_icons_all_files.IconType;
20593
+ carousel: _react_icons_all_files.IconType;
20594
+ cast: _react_icons_all_files.IconType;
20595
+ chart: _react_icons_all_files.IconType;
20596
+ 'check-o': _react_icons_all_files.IconType;
20597
+ 'check-r': _react_icons_all_files.IconType;
20598
+ check: _react_icons_all_files.IconType;
20599
+ 'chevron-double-down-o': _react_icons_all_files.IconType;
20600
+ 'chevron-double-down-r': _react_icons_all_files.IconType;
20601
+ 'chevron-double-down': _react_icons_all_files.IconType;
20602
+ 'chevron-double-left-o': _react_icons_all_files.IconType;
20603
+ 'chevron-double-left-r': _react_icons_all_files.IconType;
20604
+ 'chevron-double-left': _react_icons_all_files.IconType;
20605
+ 'chevron-double-right-o': _react_icons_all_files.IconType;
20606
+ 'chevron-double-right-r': _react_icons_all_files.IconType;
20607
+ 'chevron-double-right': _react_icons_all_files.IconType;
20608
+ 'chevron-double-up-o': _react_icons_all_files.IconType;
20609
+ 'chevron-double-up-r': _react_icons_all_files.IconType;
20610
+ 'chevron-double-up': _react_icons_all_files.IconType;
20611
+ 'chevron-down-o': _react_icons_all_files.IconType;
20612
+ 'chevron-down-r': _react_icons_all_files.IconType;
20613
+ 'chevron-down': _react_icons_all_files.IconType;
20614
+ 'chevron-left-o': _react_icons_all_files.IconType;
20615
+ 'chevron-left-r': _react_icons_all_files.IconType;
20616
+ 'chevron-left': _react_icons_all_files.IconType;
20617
+ 'chevron-right-o': _react_icons_all_files.IconType;
20618
+ 'chevron-right-r': _react_icons_all_files.IconType;
20619
+ 'chevron-right': _react_icons_all_files.IconType;
20620
+ 'chevron-up-o': _react_icons_all_files.IconType;
20621
+ 'chevron-up-r': _react_icons_all_files.IconType;
20622
+ 'chevron-up': _react_icons_all_files.IconType;
20623
+ 'clapper-board': _react_icons_all_files.IconType;
20624
+ clipboard: _react_icons_all_files.IconType;
20625
+ 'close-o': _react_icons_all_files.IconType;
20626
+ 'close-r': _react_icons_all_files.IconType;
20627
+ close: _react_icons_all_files.IconType;
20628
+ cloud: _react_icons_all_files.IconType;
20629
+ 'code-slash': _react_icons_all_files.IconType;
20630
+ code: _react_icons_all_files.IconType;
20631
+ coffee: _react_icons_all_files.IconType;
20632
+ collage: _react_icons_all_files.IconType;
20633
+ 'color-bucket': _react_icons_all_files.IconType;
20634
+ 'color-picker': _react_icons_all_files.IconType;
20635
+ comment: _react_icons_all_files.IconType;
20636
+ community: _react_icons_all_files.IconType;
20637
+ components: _react_icons_all_files.IconType;
20638
+ 'compress-left': _react_icons_all_files.IconType;
20639
+ 'compress-right': _react_icons_all_files.IconType;
20640
+ 'compress-v': _react_icons_all_files.IconType;
20641
+ compress: _react_icons_all_files.IconType;
20642
+ controller: _react_icons_all_files.IconType;
20643
+ copy: _react_icons_all_files.IconType;
20644
+ 'copy-all': _react_icons_all_files.IconType;
20645
+ copyright: _react_icons_all_files.IconType;
20646
+ 'corner-double-down-left': _react_icons_all_files.IconType;
20647
+ 'corner-double-down-right': _react_icons_all_files.IconType;
20648
+ 'corner-double-left-down': _react_icons_all_files.IconType;
20649
+ 'corner-double-left-up': _react_icons_all_files.IconType;
20650
+ 'corner-double-right-down': _react_icons_all_files.IconType;
20651
+ 'corner-double-right-up': _react_icons_all_files.IconType;
20652
+ 'corner-double-up-left': _react_icons_all_files.IconType;
20653
+ 'corner-double-up-right': _react_icons_all_files.IconType;
20654
+ 'corner-down-left': _react_icons_all_files.IconType;
20655
+ 'corner-down-right': _react_icons_all_files.IconType;
20656
+ 'corner-left-down': _react_icons_all_files.IconType;
20657
+ 'corner-left-up': _react_icons_all_files.IconType;
20658
+ 'corner-right-down': _react_icons_all_files.IconType;
20659
+ 'corner-right-up': _react_icons_all_files.IconType;
20660
+ 'corner-up-left': _react_icons_all_files.IconType;
20661
+ 'corner-up-right': _react_icons_all_files.IconType;
20662
+ 'credit-card': _react_icons_all_files.IconType;
20663
+ crop: _react_icons_all_files.IconType;
20664
+ cross: _react_icons_all_files.IconType;
20665
+ crown: _react_icons_all_files.IconType;
20666
+ danger: _react_icons_all_files.IconType;
20667
+ 'dark-mode': _react_icons_all_files.IconType;
20668
+ data: _react_icons_all_files.IconType;
20669
+ database: _react_icons_all_files.IconType;
20670
+ debug: _react_icons_all_files.IconType;
20671
+ desktop: _react_icons_all_files.IconType;
20672
+ 'details-less': _react_icons_all_files.IconType;
20673
+ 'details-more': _react_icons_all_files.IconType;
20674
+ dialpad: _react_icons_all_files.IconType;
20675
+ 'dice-1': _react_icons_all_files.IconType;
20676
+ 'dice-2': _react_icons_all_files.IconType;
20677
+ 'dice-3': _react_icons_all_files.IconType;
20678
+ 'dice-4': _react_icons_all_files.IconType;
20679
+ 'dice-5': _react_icons_all_files.IconType;
20680
+ 'dice-6': _react_icons_all_files.IconType;
20681
+ disc: _react_icons_all_files.IconType;
20682
+ 'display-flex': _react_icons_all_files.IconType;
20683
+ 'display-fullwidth': _react_icons_all_files.IconType;
20684
+ 'display-grid': _react_icons_all_files.IconType;
20685
+ 'display-spacing': _react_icons_all_files.IconType;
20686
+ 'distribute-horizontal': _react_icons_all_files.IconType;
20687
+ 'distribute-vertical': _react_icons_all_files.IconType;
20688
+ 'dock-bottom': _react_icons_all_files.IconType;
20689
+ 'dock-left': _react_icons_all_files.IconType;
20690
+ 'dock-right': _react_icons_all_files.IconType;
20691
+ 'dock-window': _react_icons_all_files.IconType;
20692
+ dollar: _react_icons_all_files.IconType;
20693
+ drive: _react_icons_all_files.IconType;
20694
+ 'drop-invert': _react_icons_all_files.IconType;
20695
+ 'drop-opacity': _react_icons_all_files.IconType;
20696
+ drop: _react_icons_all_files.IconType;
20697
+ duplicate: _react_icons_all_files.IconType;
20698
+ 'edit-black-point': _react_icons_all_files.IconType;
20699
+ 'edit-contrast': _react_icons_all_files.IconType;
20700
+ 'edit-exposure': _react_icons_all_files.IconType;
20701
+ 'edit-fade': _react_icons_all_files.IconType;
20702
+ 'edit-flip-h': _react_icons_all_files.IconType;
20703
+ 'edit-flip-v': _react_icons_all_files.IconType;
20704
+ 'edit-highlight': _react_icons_all_files.IconType;
20705
+ 'edit-markup': _react_icons_all_files.IconType;
20706
+ 'edit-mask': _react_icons_all_files.IconType;
20707
+ 'edit-noise': _react_icons_all_files.IconType;
20708
+ 'edit-shadows': _react_icons_all_files.IconType;
20709
+ 'edit-straight': _react_icons_all_files.IconType;
20710
+ 'edit-unmask': _react_icons_all_files.IconType;
20711
+ eject: _react_icons_all_files.IconType;
20712
+ enter: _react_icons_all_files.IconType;
20713
+ erase: _react_icons_all_files.IconType;
20714
+ ereader: _react_icons_all_files.IconType;
20715
+ ericsson: _react_icons_all_files.IconType;
20716
+ ethernet: _react_icons_all_files.IconType;
20717
+ euro: _react_icons_all_files.IconType;
20718
+ expand: _react_icons_all_files.IconType;
20719
+ export: _react_icons_all_files.IconType;
20720
+ 'extension-add': _react_icons_all_files.IconType;
20721
+ 'extension-alt': _react_icons_all_files.IconType;
20722
+ 'extension-remove': _react_icons_all_files.IconType;
20723
+ extension: _react_icons_all_files.IconType;
20724
+ external: _react_icons_all_files.IconType;
20725
+ 'eye-alt': _react_icons_all_files.IconType;
20726
+ eye: _react_icons_all_files.IconType;
20727
+ feed: _react_icons_all_files.IconType;
20728
+ 'file-add': _react_icons_all_files.IconType;
20729
+ 'file-document': _react_icons_all_files.IconType;
20730
+ 'file-remove': _react_icons_all_files.IconType;
20731
+ file: _react_icons_all_files.IconType;
20732
+ film: _react_icons_all_files.IconType;
20733
+ filters: _react_icons_all_files.IconType;
20734
+ 'flag-alt': _react_icons_all_files.IconType;
20735
+ flag: _react_icons_all_files.IconType;
20736
+ 'folder-add': _react_icons_all_files.IconType;
20737
+ 'folder-remove': _react_icons_all_files.IconType;
20738
+ folder: _react_icons_all_files.IconType;
20739
+ 'font-height': _react_icons_all_files.IconType;
20740
+ 'font-spacing': _react_icons_all_files.IconType;
20741
+ 'format-center': _react_icons_all_files.IconType;
20742
+ 'format-color': _react_icons_all_files.IconType;
20743
+ 'format-heading': _react_icons_all_files.IconType;
20744
+ 'format-indent-decrease': _react_icons_all_files.IconType;
20745
+ 'format-indent-increase': _react_icons_all_files.IconType;
20746
+ 'format-italic': _react_icons_all_files.IconType;
20747
+ 'format-justify': _react_icons_all_files.IconType;
20748
+ 'format-left': _react_icons_all_files.IconType;
20749
+ 'format-line-height': _react_icons_all_files.IconType;
20750
+ 'format-right': _react_icons_all_files.IconType;
20751
+ 'format-separator': _react_icons_all_files.IconType;
20752
+ 'format-slash': _react_icons_all_files.IconType;
20753
+ 'format-text': _react_icons_all_files.IconType;
20754
+ 'format-underline': _react_icons_all_files.IconType;
20755
+ 'format-uppercase': _react_icons_all_files.IconType;
20756
+ games: _react_icons_all_files.IconType;
20757
+ 'gender-female': _react_icons_all_files.IconType;
20758
+ 'gender-male': _react_icons_all_files.IconType;
20759
+ 'ghost-character': _react_icons_all_files.IconType;
20760
+ gift: _react_icons_all_files.IconType;
20761
+ girl: _react_icons_all_files.IconType;
20762
+ 'git-branch': _react_icons_all_files.IconType;
20763
+ 'git-commit': _react_icons_all_files.IconType;
20764
+ 'git-fork': _react_icons_all_files.IconType;
20765
+ 'git-pull': _react_icons_all_files.IconType;
20766
+ 'glass-alt': _react_icons_all_files.IconType;
20767
+ glass: _react_icons_all_files.IconType;
20768
+ 'globe-alt': _react_icons_all_files.IconType;
20769
+ globe: _react_icons_all_files.IconType;
20770
+ gym: _react_icons_all_files.IconType;
20771
+ hashtag: _react_icons_all_files.IconType;
20772
+ headset: _react_icons_all_files.IconType;
20773
+ heart: _react_icons_all_files.IconType;
20774
+ 'home-alt': _react_icons_all_files.IconType;
20775
+ 'home-screen': _react_icons_all_files.IconType;
20776
+ home: _react_icons_all_files.IconType;
20777
+ icecream: _react_icons_all_files.IconType;
20778
+ image: _react_icons_all_files.IconType;
20779
+ import: _react_icons_all_files.IconType;
20780
+ inbox: _react_icons_all_files.IconType;
20781
+ infinity: _react_icons_all_files.IconType;
20782
+ info: _react_icons_all_files.IconType;
20783
+ inpicture: _react_icons_all_files.IconType;
20784
+ 'insert-after-o': _react_icons_all_files.IconType;
20785
+ 'insert-after-r': _react_icons_all_files.IconType;
20786
+ 'insert-after': _react_icons_all_files.IconType;
20787
+ 'insert-before-o': _react_icons_all_files.IconType;
20788
+ 'insert-before-r': _react_icons_all_files.IconType;
20789
+ 'insert-before': _react_icons_all_files.IconType;
20790
+ insights: _react_icons_all_files.IconType;
20791
+ internal: _react_icons_all_files.IconType;
20792
+ key: _react_icons_all_files.IconType;
20793
+ keyboard: _react_icons_all_files.IconType;
20794
+ keyhole: _react_icons_all_files.IconType;
20795
+ laptop: _react_icons_all_files.IconType;
20796
+ 'layout-grid-small': _react_icons_all_files.IconType;
20797
+ 'layout-grid': _react_icons_all_files.IconType;
20798
+ 'layout-list': _react_icons_all_files.IconType;
20799
+ 'layout-pin': _react_icons_all_files.IconType;
20800
+ link: _react_icons_all_files.IconType;
20801
+ 'list-tree': _react_icons_all_files.IconType;
20802
+ list: _react_icons_all_files.IconType;
20803
+ 'live-photo': _react_icons_all_files.IconType;
20804
+ 'loadbar-alt': _react_icons_all_files.IconType;
20805
+ 'loadbar-doc': _react_icons_all_files.IconType;
20806
+ 'loadbar-sound': _react_icons_all_files.IconType;
20807
+ loadbar: _react_icons_all_files.IconType;
20808
+ 'lock-unlock': _react_icons_all_files.IconType;
20809
+ lock: _react_icons_all_files.IconType;
20810
+ 'log-in': _react_icons_all_files.IconType;
20811
+ 'log-off': _react_icons_all_files.IconType;
20812
+ 'log-out': _react_icons_all_files.IconType;
20813
+ loupe: _react_icons_all_files.IconType;
20814
+ magnet: _react_icons_all_files.IconType;
20815
+ 'mail-forward': _react_icons_all_files.IconType;
20816
+ 'mail-open': _react_icons_all_files.IconType;
20817
+ 'mail-reply': _react_icons_all_files.IconType;
20818
+ mail: _react_icons_all_files.IconType;
20819
+ 'math-divide': _react_icons_all_files.IconType;
20820
+ 'math-equal': _react_icons_all_files.IconType;
20821
+ 'math-minus': _react_icons_all_files.IconType;
20822
+ 'math-percent': _react_icons_all_files.IconType;
20823
+ 'math-plus': _react_icons_all_files.IconType;
20824
+ 'maximize-alt': _react_icons_all_files.IconType;
20825
+ maximize: _react_icons_all_files.IconType;
20826
+ 'media-live': _react_icons_all_files.IconType;
20827
+ 'media-podcast': _react_icons_all_files.IconType;
20828
+ 'menu-boxed': _react_icons_all_files.IconType;
20829
+ 'menu-cake': _react_icons_all_files.IconType;
20830
+ 'menu-cheese': _react_icons_all_files.IconType;
20831
+ 'menu-grid-o': _react_icons_all_files.IconType;
20832
+ 'menu-grid-r': _react_icons_all_files.IconType;
20833
+ 'menu-hotdog': _react_icons_all_files.IconType;
20834
+ 'menu-left-alt': _react_icons_all_files.IconType;
20835
+ 'menu-left': _react_icons_all_files.IconType;
20836
+ 'menu-motion': _react_icons_all_files.IconType;
20837
+ 'menu-oreos': _react_icons_all_files.IconType;
20838
+ 'menu-right-alt': _react_icons_all_files.IconType;
20839
+ 'menu-right': _react_icons_all_files.IconType;
20840
+ 'menu-round': _react_icons_all_files.IconType;
20841
+ menu: _react_icons_all_files.IconType;
20842
+ 'merge-horizontal': _react_icons_all_files.IconType;
20843
+ 'merge-vertical': _react_icons_all_files.IconType;
20844
+ mic: _react_icons_all_files.IconType;
20845
+ 'mini-player': _react_icons_all_files.IconType;
20846
+ 'minimize-alt': _react_icons_all_files.IconType;
20847
+ minimize: _react_icons_all_files.IconType;
20848
+ modem: _react_icons_all_files.IconType;
20849
+ moon: _react_icons_all_files.IconType;
20850
+ 'more-alt': _react_icons_all_files.IconType;
20851
+ 'more-o': _react_icons_all_files.IconType;
20852
+ 'more-r': _react_icons_all_files.IconType;
20853
+ 'more-vertical-alt': _react_icons_all_files.IconType;
20854
+ 'more-vertical-o': _react_icons_all_files.IconType;
20855
+ 'more-vertical-r': _react_icons_all_files.IconType;
20856
+ 'more-vertical': _react_icons_all_files.IconType;
20857
+ more: _react_icons_all_files.IconType;
20858
+ mouse: _react_icons_all_files.IconType;
20859
+ 'move-down': _react_icons_all_files.IconType;
20860
+ 'move-left': _react_icons_all_files.IconType;
20861
+ 'move-right': _react_icons_all_files.IconType;
20862
+ 'move-task': _react_icons_all_files.IconType;
20863
+ 'move-up': _react_icons_all_files.IconType;
20864
+ 'music-note': _react_icons_all_files.IconType;
20865
+ 'music-speaker': _react_icons_all_files.IconType;
20866
+ music: _react_icons_all_files.IconType;
20867
+ nametag: _react_icons_all_files.IconType;
20868
+ notes: _react_icons_all_files.IconType;
20869
+ notifications: _react_icons_all_files.IconType;
20870
+ options: _react_icons_all_files.IconType;
20871
+ organisation: _react_icons_all_files.IconType;
20872
+ password: _react_icons_all_files.IconType;
20873
+ 'path-back': _react_icons_all_files.IconType;
20874
+ 'path-crop': _react_icons_all_files.IconType;
20875
+ 'path-divide': _react_icons_all_files.IconType;
20876
+ 'path-exclude': _react_icons_all_files.IconType;
20877
+ 'path-front': _react_icons_all_files.IconType;
20878
+ 'path-intersect': _react_icons_all_files.IconType;
20879
+ 'path-outline': _react_icons_all_files.IconType;
20880
+ 'path-trim': _react_icons_all_files.IconType;
20881
+ 'path-unite': _react_icons_all_files.IconType;
20882
+ pen: _react_icons_all_files.IconType;
20883
+ 'pentagon-bottom-left': _react_icons_all_files.IconType;
20884
+ 'pentagon-bottom-right': _react_icons_all_files.IconType;
20885
+ 'pentagon-down': _react_icons_all_files.IconType;
20886
+ 'pentagon-left': _react_icons_all_files.IconType;
20887
+ 'pentagon-right': _react_icons_all_files.IconType;
20888
+ 'pentagon-top-left': _react_icons_all_files.IconType;
20889
+ 'pentagon-top-right': _react_icons_all_files.IconType;
20890
+ 'pentagon-up': _react_icons_all_files.IconType;
20891
+ performance: _react_icons_all_files.IconType;
20892
+ phone: _react_icons_all_files.IconType;
20893
+ photoscan: _react_icons_all_files.IconType;
20894
+ piano: _react_icons_all_files.IconType;
20895
+ pill: _react_icons_all_files.IconType;
20896
+ 'pin-alt': _react_icons_all_files.IconType;
20897
+ 'pin-bottom': _react_icons_all_files.IconType;
20898
+ 'pin-top': _react_icons_all_files.IconType;
20899
+ pin: _react_icons_all_files.IconType;
20900
+ 'play-backwards': _react_icons_all_files.IconType;
20901
+ 'play-button-o': _react_icons_all_files.IconType;
20902
+ 'play-button-r': _react_icons_all_files.IconType;
20903
+ 'play-button': _react_icons_all_files.IconType;
20904
+ 'play-forwards': _react_icons_all_files.IconType;
20905
+ 'play-list-add': _react_icons_all_files.IconType;
20906
+ 'play-list-check': _react_icons_all_files.IconType;
20907
+ 'play-list-remove': _react_icons_all_files.IconType;
20908
+ 'play-list-search': _react_icons_all_files.IconType;
20909
+ 'play-list': _react_icons_all_files.IconType;
20910
+ 'play-pause-o': _react_icons_all_files.IconType;
20911
+ 'play-pause-r': _react_icons_all_files.IconType;
20912
+ 'play-pause': _react_icons_all_files.IconType;
20913
+ 'play-stop-o': _react_icons_all_files.IconType;
20914
+ 'play-stop-r': _react_icons_all_files.IconType;
20915
+ 'play-stop': _react_icons_all_files.IconType;
20916
+ 'play-track-next-o': _react_icons_all_files.IconType;
20917
+ 'play-track-next-r': _react_icons_all_files.IconType;
20918
+ 'play-track-next': _react_icons_all_files.IconType;
20919
+ 'play-track-prev-o': _react_icons_all_files.IconType;
20920
+ 'play-track-prev-r': _react_icons_all_files.IconType;
20921
+ 'play-track-prev': _react_icons_all_files.IconType;
20922
+ plug: _react_icons_all_files.IconType;
20923
+ polaroid: _react_icons_all_files.IconType;
20924
+ poll: _react_icons_all_files.IconType;
20925
+ presentation: _react_icons_all_files.IconType;
20926
+ printer: _react_icons_all_files.IconType;
20927
+ profile: _react_icons_all_files.IconType;
20928
+ 'pull-clear': _react_icons_all_files.IconType;
20929
+ 'push-chevron-down-o': _react_icons_all_files.IconType;
20930
+ 'push-chevron-down-r': _react_icons_all_files.IconType;
20931
+ 'push-chevron-down': _react_icons_all_files.IconType;
20932
+ 'push-chevron-left-o': _react_icons_all_files.IconType;
20933
+ 'push-chevron-left-r': _react_icons_all_files.IconType;
20934
+ 'push-chevron-left': _react_icons_all_files.IconType;
20935
+ 'push-chevron-right-o': _react_icons_all_files.IconType;
20936
+ 'push-chevron-right-r': _react_icons_all_files.IconType;
20937
+ 'push-chevron-right': _react_icons_all_files.IconType;
20938
+ 'push-chevron-up-o': _react_icons_all_files.IconType;
20939
+ 'push-chevron-up-r': _react_icons_all_files.IconType;
20940
+ 'push-chevron-up': _react_icons_all_files.IconType;
20941
+ 'push-down': _react_icons_all_files.IconType;
20942
+ 'push-left': _react_icons_all_files.IconType;
20943
+ 'push-right': _react_icons_all_files.IconType;
20944
+ 'push-up': _react_icons_all_files.IconType;
20945
+ qr: _react_icons_all_files.IconType;
20946
+ 'quote-o': _react_icons_all_files.IconType;
20947
+ quote: _react_icons_all_files.IconType;
20948
+ 'radio-check': _react_icons_all_files.IconType;
20949
+ 'radio-checked': _react_icons_all_files.IconType;
20950
+ ratio: _react_icons_all_files.IconType;
20951
+ read: _react_icons_all_files.IconType;
20952
+ readme: _react_icons_all_files.IconType;
20953
+ record: _react_icons_all_files.IconType;
20954
+ redo: _react_icons_all_files.IconType;
20955
+ remote: _react_icons_all_files.IconType;
20956
+ 'remove-r': _react_icons_all_files.IconType;
20957
+ remove: _react_icons_all_files.IconType;
20958
+ rename: _react_icons_all_files.IconType;
20959
+ reorder: _react_icons_all_files.IconType;
20960
+ repeat: _react_icons_all_files.IconType;
20961
+ ring: _react_icons_all_files.IconType;
20962
+ 'row-first': _react_icons_all_files.IconType;
20963
+ 'row-last': _react_icons_all_files.IconType;
20964
+ ruler: _react_icons_all_files.IconType;
20965
+ 'sand-clock': _react_icons_all_files.IconType;
20966
+ scan: _react_icons_all_files.IconType;
20967
+ 'screen-mirror': _react_icons_all_files.IconType;
20968
+ 'screen-shot': _react_icons_all_files.IconType;
20969
+ 'screen-wide': _react_icons_all_files.IconType;
20970
+ screen: _react_icons_all_files.IconType;
20971
+ 'scroll-h': _react_icons_all_files.IconType;
20972
+ 'scroll-v': _react_icons_all_files.IconType;
20973
+ 'search-found': _react_icons_all_files.IconType;
20974
+ 'search-loading': _react_icons_all_files.IconType;
20975
+ search: _react_icons_all_files.IconType;
20976
+ 'select-o': _react_icons_all_files.IconType;
20977
+ 'select-r': _react_icons_all_files.IconType;
20978
+ select: _react_icons_all_files.IconType;
20979
+ server: _react_icons_all_files.IconType;
20980
+ 'shape-circle': _react_icons_all_files.IconType;
20981
+ 'shape-half-circle': _react_icons_all_files.IconType;
20982
+ 'shape-hexagon': _react_icons_all_files.IconType;
20983
+ 'shape-rhombus': _react_icons_all_files.IconType;
20984
+ 'shape-square': _react_icons_all_files.IconType;
20985
+ 'shape-triangle': _react_icons_all_files.IconType;
20986
+ 'shape-zigzag': _react_icons_all_files.IconType;
20987
+ share: _react_icons_all_files.IconType;
20988
+ shield: _react_icons_all_files.IconType;
20989
+ 'shopping-bag': _react_icons_all_files.IconType;
20990
+ 'shopping-cart': _react_icons_all_files.IconType;
20991
+ shortcut: _react_icons_all_files.IconType;
20992
+ 'sidebar-open': _react_icons_all_files.IconType;
20993
+ 'sidebar-right': _react_icons_all_files.IconType;
20994
+ sidebar: _react_icons_all_files.IconType;
20995
+ signal: _react_icons_all_files.IconType;
20996
+ size: _react_icons_all_files.IconType;
20997
+ sleep: _react_icons_all_files.IconType;
20998
+ 'smart-home-boiler': _react_icons_all_files.IconType;
20999
+ 'smart-home-cooker': _react_icons_all_files.IconType;
21000
+ 'smart-home-heat': _react_icons_all_files.IconType;
21001
+ 'smart-home-light': _react_icons_all_files.IconType;
21002
+ 'smart-home-refrigerator': _react_icons_all_files.IconType;
21003
+ 'smart-home-wash-machine': _react_icons_all_files.IconType;
21004
+ 'smartphone-chip': _react_icons_all_files.IconType;
21005
+ 'smartphone-ram': _react_icons_all_files.IconType;
21006
+ 'smartphone-shake': _react_icons_all_files.IconType;
21007
+ smartphone: _react_icons_all_files.IconType;
21008
+ 'smile-mouth-open': _react_icons_all_files.IconType;
21009
+ 'smile-neutral': _react_icons_all_files.IconType;
21010
+ 'smile-no-mouth': _react_icons_all_files.IconType;
21011
+ 'smile-none': _react_icons_all_files.IconType;
21012
+ 'smile-sad': _react_icons_all_files.IconType;
21013
+ 'smile-upside': _react_icons_all_files.IconType;
21014
+ smile: _react_icons_all_files.IconType;
21015
+ 'software-download': _react_icons_all_files.IconType;
21016
+ 'software-upload': _react_icons_all_files.IconType;
21017
+ 'sort-az': _react_icons_all_files.IconType;
21018
+ 'sort-za': _react_icons_all_files.IconType;
21019
+ 'space-between-v': _react_icons_all_files.IconType;
21020
+ 'space-between': _react_icons_all_files.IconType;
21021
+ 'spinner-alt': _react_icons_all_files.IconType;
21022
+ 'spinner-two-alt': _react_icons_all_files.IconType;
21023
+ 'spinner-two': _react_icons_all_files.IconType;
21024
+ spinner: _react_icons_all_files.IconType;
21025
+ stack: _react_icons_all_files.IconType;
21026
+ stopwatch: _react_icons_all_files.IconType;
21027
+ stories: _react_icons_all_files.IconType;
21028
+ style: _react_icons_all_files.IconType;
21029
+ sun: _react_icons_all_files.IconType;
21030
+ support: _react_icons_all_files.IconType;
21031
+ 'swap-vertical': _react_icons_all_files.IconType;
21032
+ swap: _react_icons_all_files.IconType;
21033
+ sweden: _react_icons_all_files.IconType;
21034
+ swiss: _react_icons_all_files.IconType;
21035
+ sync: _react_icons_all_files.IconType;
21036
+ tab: _react_icons_all_files.IconType;
21037
+ tag: _react_icons_all_files.IconType;
21038
+ 'tap-double': _react_icons_all_files.IconType;
21039
+ 'tap-single': _react_icons_all_files.IconType;
21040
+ template: _react_icons_all_files.IconType;
21041
+ tennis: _react_icons_all_files.IconType;
21042
+ terminal: _react_icons_all_files.IconType;
21043
+ terrain: _react_icons_all_files.IconType;
21044
+ thermometer: _react_icons_all_files.IconType;
21045
+ thermostat: _react_icons_all_files.IconType;
21046
+ tikcode: _react_icons_all_files.IconType;
21047
+ time: _react_icons_all_files.IconType;
21048
+ timelapse: _react_icons_all_files.IconType;
21049
+ timer: _react_icons_all_files.IconType;
21050
+ today: _react_icons_all_files.IconType;
21051
+ 'toggle-off': _react_icons_all_files.IconType;
21052
+ 'toggle-on': _react_icons_all_files.IconType;
21053
+ 'toggle-square-off': _react_icons_all_files.IconType;
21054
+ 'toggle-square': _react_icons_all_files.IconType;
21055
+ 'toolbar-bottom': _react_icons_all_files.IconType;
21056
+ 'toolbar-left': _react_icons_all_files.IconType;
21057
+ 'toolbar-right': _react_icons_all_files.IconType;
21058
+ 'toolbar-top': _react_icons_all_files.IconType;
21059
+ toolbox: _react_icons_all_files.IconType;
21060
+ touchpad: _react_icons_all_files.IconType;
21061
+ track: _react_icons_all_files.IconType;
21062
+ transcript: _react_icons_all_files.IconType;
21063
+ 'trash-empty': _react_icons_all_files.IconType;
21064
+ trash: _react_icons_all_files.IconType;
21065
+ tree: _react_icons_all_files.IconType;
21066
+ trees: _react_icons_all_files.IconType;
21067
+ 'trending-down': _react_icons_all_files.IconType;
21068
+ trending: _react_icons_all_files.IconType;
21069
+ trophy: _react_icons_all_files.IconType;
21070
+ tv: _react_icons_all_files.IconType;
21071
+ 'ui-kit': _react_icons_all_files.IconType;
21072
+ umbrella: _react_icons_all_files.IconType;
21073
+ unavailable: _react_icons_all_files.IconType;
21074
+ unblock: _react_icons_all_files.IconType;
21075
+ undo: _react_icons_all_files.IconType;
21076
+ unsplash: _react_icons_all_files.IconType;
21077
+ 'usb-c': _react_icons_all_files.IconType;
21078
+ usb: _react_icons_all_files.IconType;
21079
+ 'user-add': _react_icons_all_files.IconType;
21080
+ 'user-list': _react_icons_all_files.IconType;
21081
+ 'user-remove': _react_icons_all_files.IconType;
21082
+ user: _react_icons_all_files.IconType;
21083
+ 'view-cols': _react_icons_all_files.IconType;
21084
+ 'view-comfortable': _react_icons_all_files.IconType;
21085
+ 'view-day': _react_icons_all_files.IconType;
21086
+ 'view-grid': _react_icons_all_files.IconType;
21087
+ 'view-list': _react_icons_all_files.IconType;
21088
+ 'view-month': _react_icons_all_files.IconType;
21089
+ 'view-split': _react_icons_all_files.IconType;
21090
+ vinyl: _react_icons_all_files.IconType;
21091
+ 'voicemail-o': _react_icons_all_files.IconType;
21092
+ 'voicemail-r': _react_icons_all_files.IconType;
21093
+ voicemail: _react_icons_all_files.IconType;
21094
+ volume: _react_icons_all_files.IconType;
21095
+ webcam: _react_icons_all_files.IconType;
21096
+ website: _react_icons_all_files.IconType;
21097
+ 'work-alt': _react_icons_all_files.IconType;
21098
+ yinyang: _react_icons_all_files.IconType;
21099
+ 'zoom-in': _react_icons_all_files.IconType;
21100
+ 'zoom-out': _react_icons_all_files.IconType;
21001
21101
  };
21002
21102
 
21003
21103
  /** A list of available icon names that can be used with the Uniform brand */
@@ -21006,7 +21106,7 @@ type IconName = keyof typeof allSupportedIcons;
21006
21106
  /** sets fill color of the svg icon
21007
21107
  * @default 'default'
21008
21108
  */
21009
- type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
21109
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
21010
21110
  /** sets the type of icon to use from the available list */
21011
21111
  type IconType = IconName | IconType$1;
21012
21112
  interface IconProps extends IconBaseProps {
@@ -21023,50 +21123,53 @@ interface IconProps extends IconBaseProps {
21023
21123
  */
21024
21124
  declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null>;
21025
21125
 
21026
- declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21027
- declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21028
- declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21029
- declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21030
- declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21031
- declare const textInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21032
- declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21033
- declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21034
- declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21035
- declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21036
- declare const settingsIcon: _react_icons_all_files_lib.IconType;
21126
+ declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21127
+ declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21128
+ declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21129
+ declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21130
+ declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21131
+ declare const textInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21132
+ declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21133
+ declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21134
+ declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21135
+ declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21136
+ declare const settingsIcon: IconType$2;
21037
21137
  declare const settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21038
- declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21039
- declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21040
- declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21041
- declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21138
+ declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21139
+ declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21140
+ declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21141
+ declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21042
21142
  declare const customIcons: {
21043
- 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21044
- card: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21045
- 'image-text': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21046
- 'border-top': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21047
- 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21048
- 'text-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21049
- 'number-input': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21050
- 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21051
- warning: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21052
- 'info-filled': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21143
+ 'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21144
+ card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21145
+ 'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21146
+ 'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21147
+ 'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21148
+ 'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21149
+ 'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21150
+ 'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21151
+ warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21152
+ 'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21053
21153
  settings: (props: IconProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21054
- 'query-string': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21055
- json: (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21056
- 'format-bold': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21057
- 'format-code': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21058
- 'format-strike': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21059
- 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21060
- 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21061
- 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21062
- 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21063
- 'yes-no': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21064
- 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21065
- 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21066
- 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21067
- 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21068
- 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21069
- 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21154
+ 'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21155
+ json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21156
+ 'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21157
+ 'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21158
+ 'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21159
+ 'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21160
+ 'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21161
+ 'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21162
+ 'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21163
+ 'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21164
+ 'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21165
+ 'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21166
+ 'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21167
+ 'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21168
+ 'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21169
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21170
+ 'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21171
+ 'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21172
+ refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
21070
21173
  };
21071
21174
 
21072
21175
  type IconsMap = Record<string, IconType$1>;
@@ -21082,6 +21185,12 @@ declare function IconsProvider({ children }: {
21082
21185
  children: ReactNode;
21083
21186
  }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21084
21187
 
21188
+ declare const uniformComponentIcon: IconType$1;
21189
+ declare const uniformComponentPatternIcon: IconType$1;
21190
+ declare const uniformContentTypeIcon: IconType$1;
21191
+ declare const uniformEntryIcon: IconType$1;
21192
+ declare const uniformEntryPatternIcon: IconType$1;
21193
+
21085
21194
  type ButtonThemeProps = 'primary' | 'secondary' | 'unimportant' | 'ghost' | 'secondaryOutline';
21086
21195
  type ButtonSizeProps = 'sm' | 'base' | 'lg';
21087
21196
  interface ActionButtonsProps {
@@ -21104,40 +21213,31 @@ interface ActionButtonsProps {
21104
21213
  /** sets additional Menu component styles */
21105
21214
  menuContainerCssClasses?: SerializedStyles;
21106
21215
  /** sets whether to use a React portal rendering or not.
21107
- * @default false
21216
+ * @deprecated This property does not work correctly. Use `portal` instead.
21108
21217
  */
21109
21218
  withoutPortal?: boolean;
21219
+ /** sets whether to use a React portal rendering or not. */
21220
+ portal?: boolean;
21110
21221
  /** (optional) sets the maximum height of the menu
21111
21222
  * setting a max menu height value will make the menu scrollable if the content exceeds the height
21112
21223
  * this is not compatible with nested menus that expand to the left or right of the menu
21113
21224
  */
21114
21225
  maxMenuHeight?: string;
21226
+ /**
21227
+ * Sets a tooltip on the button when hovered
21228
+ * Note that the tooltip will be shown whether disabled or not.
21229
+ */
21230
+ tooltip?: React$1.ReactNode;
21231
+ /**
21232
+ * Sets a shortcut for the button.
21233
+ * The shortcut's handler function will be automatically set to the onClick of the button,
21234
+ * and a tooltip will be added to the button that shows the keyboard shortcut.
21235
+ */
21236
+ shortcut?: ShortcutReference;
21115
21237
  }
21116
21238
  /** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
21117
21239
  type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
21118
- /**
21119
- * Uniform ButtonWithMenu Component
21120
- * @example
21121
- <ButtonWithMenu
21122
- disabled={isDisabled}
21123
- buttonText="Save and close"
21124
- onButtonClick={() => someFunction()}
21125
- placement="bottom-end"
21126
- >
21127
- <MenuItem
21128
- disabled={isDisabled}
21129
- onClick={() => someFunction()}
21130
- key="save"
21131
- className="flex gap-2 items-center"
21132
- data-testid="save-menu-item-button"
21133
- >
21134
- <span className="whitespace-nowrap" data-testid="save-menu-item">
21135
- Save
21136
- </span>
21137
- </MenuItem>
21138
- </ButtonWithMenu>
21139
- */
21140
- declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, maxMenuHeight, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21240
+ declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21141
21241
 
21142
21242
  /**
21143
21243
  * A string in the ISO 8601 date format: YYYY-MM-DD
@@ -21252,6 +21352,11 @@ type ChipProps = {
21252
21352
  theme?: ChipTheme;
21253
21353
  chipAction?: React.ReactNode;
21254
21354
  size?: ChipSizeProp;
21355
+ /**
21356
+ * The HTML element to render
21357
+ * @default 'span'
21358
+ */
21359
+ as?: 'span' | 'button';
21255
21360
  } & React.HTMLAttributes<HTMLSpanElement>;
21256
21361
  /**
21257
21362
  * @description Chips are used in a variety of ways
@@ -21260,7 +21365,7 @@ type ChipProps = {
21260
21365
  * To represent a different object, as a reference
21261
21366
  * @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
21262
21367
  */
21263
- declare const Chip: ({ icon, text, size, theme, chipAction, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21368
+ declare const Chip: ({ icon, text, size, theme, chipAction, as, ...props }: ChipProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21264
21369
  type DismissibleChipActionProps = {
21265
21370
  onDismiss: () => void;
21266
21371
  } & HTMLAttributes<HTMLButtonElement>;
@@ -21635,6 +21740,24 @@ type ErrorMessageProps = {
21635
21740
  */
21636
21741
  declare const ErrorMessage: ({ message, testId, truncated, ...otherProps }: ErrorMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
21637
21742
 
21743
+ type FieldMessageProps = {
21744
+ /** (optional) sets help message within the caption component */
21745
+ helperMessage?: string | JSX.Element;
21746
+ /** (option) sets caption message test id for test automation */
21747
+ helperMessageTestId?: string;
21748
+ /** (optional) sets and shows the warning message value */
21749
+ warningMessage?: string;
21750
+ /** (option) sets warning message test id for test automation */
21751
+ warningMessageTestId?: string;
21752
+ /** (optional) sets and shows the the error message value */
21753
+ errorMessage?: string;
21754
+ /** (option) sets validation message test id for test automation */
21755
+ errorTestId?: string;
21756
+ /** (optional) sets and shows the the info message value */
21757
+ infoMessage?: string;
21758
+ };
21759
+ declare const FieldMessage: ({ helperMessage, warningMessage, errorMessage, infoMessage, errorTestId, helperMessageTestId, }: FieldMessageProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
21760
+
21638
21761
  type FieldsetProps = React$1.HTMLAttributes<HTMLFieldSetElement> & {
21639
21762
  /** sets the legend value */
21640
21763
  legend: React$1.ReactElement;
@@ -21760,7 +21883,7 @@ type InputComboBoxOption = {
21760
21883
  /** (optional) sets the disabled value on the input */
21761
21884
  isDisabled?: boolean;
21762
21885
  };
21763
- type InputComboBoxProps<TOption, IsMulti extends boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = StateManagerProps<TOption, IsMulti, TGroup> & React$1.RefAttributes<InternalSelect<TOption, IsMulti, TGroup>>;
21886
+ type InputComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = Props<TOption, IsMulti, TGroup> & React$1.RefAttributes<InternalSelect<TOption, IsMulti, TGroup>>;
21764
21887
  type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
21765
21888
  /**
21766
21889
  * InputComboBox
@@ -21792,7 +21915,7 @@ type InputInlineSelectProps = Omit<React$1.HTMLAttributes<HTMLButtonElement>, 'o
21792
21915
  */
21793
21916
  declare const InputInlineSelect: ({ classNameContainer, options, value, onChange, disabled, ...props }: InputInlineSelectProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21794
21917
 
21795
- interface InputKeywordSearchProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
21918
+ interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement> {
21796
21919
  /** function that takes a string value */
21797
21920
  onSearchTextChanged: (searchText: string) => void;
21798
21921
  /** (optional) sets the input field disabled state
@@ -21829,7 +21952,7 @@ interface InputKeywordSearchProps extends React$1.InputHTMLAttributes<HTMLInputE
21829
21952
  *
21830
21953
  * @example <InputKeywordSearch onSearchTextChanged={setKeyword} delay={500} value={keyword} compact />
21831
21954
  */
21832
- declare const InputKeywordSearch: ({ onSearchTextChanged, disabled, placeholder, inputFieldName, disabledFieldSubmission, value, onClear, compact, rounded, ...props }: InputKeywordSearchProps) => React$1.ReactElement;
21955
+ declare const InputKeywordSearch: React$1.ForwardRefExoticComponent<InputKeywordSearchProps & React$1.RefAttributes<HTMLInputElement>>;
21833
21956
  type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> & {
21834
21957
  /** Debounce delay in milliseconds */
21835
21958
  delay?: number;
@@ -21995,6 +22118,8 @@ type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
21995
22118
  type: 'radio' | 'checkbox';
21996
22119
  /** sets the name value of the radio/checkbox input */
21997
22120
  name: string;
22121
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
22122
+ showLabel?: boolean;
21998
22123
  /** (optional) sets the disabled state */
21999
22124
  disabled?: boolean;
22000
22125
  /** (optional) sets the checked state of the input */
@@ -22023,6 +22148,8 @@ declare const InputToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
22023
22148
  type: 'radio' | 'checkbox';
22024
22149
  /** sets the name value of the radio/checkbox input */
22025
22150
  name: string;
22151
+ /** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
22152
+ showLabel?: boolean | undefined;
22026
22153
  /** (optional) sets the disabled state */
22027
22154
  disabled?: boolean | undefined;
22028
22155
  /** (optional) sets the checked state of the input */
@@ -22190,6 +22317,7 @@ type RhythmProps = React.HTMLAttributes<HTMLDivElement | HTMLFieldSetElement> &
22190
22317
  children: React.ReactNode;
22191
22318
  /** for use when fieldset is applied to the tag prop */
22192
22319
  disabled?: boolean;
22320
+ ref?: Ref<HTMLDivElement>;
22193
22321
  };
22194
22322
 
22195
22323
  type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivElement> & {
@@ -22198,7 +22326,7 @@ type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivEleme
22198
22326
  };
22199
22327
  declare const Container: ({ tag, backgroundColor, border, rounded, padding, margin, children, ...props }: ContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22200
22328
 
22201
- declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22329
+ declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22202
22330
 
22203
22331
  type TwoColumnLayoutProps = {
22204
22332
  /** sets the full bleed background colour
@@ -22217,7 +22345,7 @@ type TwoColumnLayoutProps = {
22217
22345
  /** @example <TwoColumnLayout supportingContent={<div>supporting content</div>}><h1>title</h1></TwoColumnLayout> */
22218
22346
  declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22219
22347
 
22220
- declare const VerticalRhythm: ({ align, justify, tag, gap, children, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22348
+ declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22221
22349
 
22222
22350
  type LimitsBarProps = {
22223
22351
  /** The current value of used limits */
@@ -22430,6 +22558,11 @@ type MenuItemProps = MenuItemProps$1 & {
22430
22558
  * Normally automatically managed.
22431
22559
  */
22432
22560
  active?: boolean;
22561
+ /**
22562
+ * Renders a keyboard shortcut for the menu item. The onClick of the menu will
22563
+ * be automatically set to invoke the shortcut's handler function.
22564
+ */
22565
+ shortcut?: ShortcutReference;
22433
22566
  };
22434
22567
  type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement | null;
22435
22568
  /**
@@ -22444,9 +22577,41 @@ declare const MenuItem: React$1.FC<MenuItemProps>;
22444
22577
  * @example <MenuItemInner onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
22445
22578
  */
22446
22579
  declare const MenuItemInner: React$1.FC<MenuItemProps>;
22580
+ /**
22581
+ * Renders an icon for a menu item. Optional micro wrapper around an Icon component
22582
+ * configured to match the menu item icon style.
22583
+ */
22584
+ declare function MenuItemIcon({ icon }: {
22585
+ icon: IconType;
22586
+ }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22587
+ /**
22588
+ * Indents a menu item as if it had an icon when it does not
22589
+ * Use this to align menu items without icons with those that have icons
22590
+ * in a mixed menu. Intended to be passed as the `icon` prop to a MenuItem.
22591
+ */
22592
+ declare function MenuItemEmptyIcon(): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22447
22593
 
22448
22594
  declare const MenuItemSeparator: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22449
22595
 
22596
+ type MenuButtonProp = {
22597
+ children: React.ReactNode;
22598
+ } & HTMLAttributes<HTMLButtonElement>;
22599
+ declare const MenuButton: React$1.ForwardRefExoticComponent<{
22600
+ children: React.ReactNode;
22601
+ } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
22602
+ type MenuThreeDotsProps = {
22603
+ /** sets the aria-label and title value on the button
22604
+ * @default 'More options'
22605
+ */
22606
+ buttonTitle?: string;
22607
+ } & HTMLAttributes<HTMLButtonElement>;
22608
+ declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
22609
+ /** sets the aria-label and title value on the button
22610
+ * @default 'More options'
22611
+ */
22612
+ buttonTitle?: string | undefined;
22613
+ } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
22614
+
22450
22615
  type MediaCardProps = Omit<CardProps, 'menuItems'> & {
22451
22616
  title: string;
22452
22617
  subtitle?: React.ReactNode;
@@ -22479,6 +22644,8 @@ type ModalProps = {
22479
22644
  wrapperClassName?: string;
22480
22645
  /** Removes the default padding on the content wrapper */
22481
22646
  withoutContentPadding?: boolean;
22647
+ /** Removes the default background color of the content wrapper */
22648
+ withoutContentBackground?: boolean;
22482
22649
  /** Places buttons at the bottom of the modal */
22483
22650
  buttonGroup?: ReactNode;
22484
22651
  } & React__default.HTMLProps<HTMLDialogElement>;
@@ -22603,6 +22770,9 @@ type ParameterDrawerHeaderProps = {
22603
22770
  iconBeforeTitle?: ReactNode;
22604
22771
  children?: ReactNode;
22605
22772
  };
22773
+ /**
22774
+ * @deprecated use <Drawer heading={"Hi!"} /> instead, to use default drawer heading styles
22775
+ */
22606
22776
  declare const ParameterDrawerHeader: ({ title, iconBeforeTitle, children }: ParameterDrawerHeaderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22607
22777
 
22608
22778
  type ParameterGroupProps = React.HTMLAttributes<HTMLFieldSetElement> & {
@@ -22702,6 +22872,20 @@ type ParameterMenuButtonProps = {
22702
22872
  /** @example <ParameterMenuButton label="label value"><MenuItem>menu option component</MenuItem></ParameterMenuButton> */
22703
22873
  declare const ParameterMenuButton: React$1.ForwardRefExoticComponent<ParameterMenuButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
22704
22874
 
22875
+ type ParameterMultiSelectOption = InputComboBoxOption;
22876
+ type ParameterMultiSelectInnerProps = Pick<InputComboBoxProps<ParameterMultiSelectOption, true>, 'options' | 'defaultValue' | 'onChange' | 'onBlur' | 'isClearable' | 'isDisabled'>;
22877
+ type ParameterMultiSelectProps = CommonParameterInputProps & ParameterMultiSelectInnerProps & {
22878
+ disabled?: boolean;
22879
+ };
22880
+ /**
22881
+ * @deprecated beta
22882
+ * @example <ParameterMultiSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
22883
+ declare const ParameterMultiSelect: ({ disabled, ...props }: ParameterMultiSelectProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22884
+ /**
22885
+ * @deprecated beta
22886
+ * @example <ParameterMultiSelectInner options={[{ label: 'option label', value: 0}]} />*/
22887
+ declare const ParameterMultiSelectInner: (props: ParameterMultiSelectInnerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22888
+
22705
22889
  type ParameterNameAndPublicIdInputProps = {
22706
22890
  id?: undefined | string;
22707
22891
  /** sets the label for the name input field
@@ -23008,338 +23192,13 @@ type ProgressListItem<IdType extends string = string> = {
23008
23192
  };
23009
23193
  declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23010
23194
 
23011
- /** @deprecated beta - Filter editor component names */
23012
- type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
23013
- /** @deprecated beta - Input option props */
23014
- type InputOption = {
23015
- /** The label for the option */
23016
- label: string;
23017
- /** The value for the option */
23018
- value?: string | undefined;
23019
- /** The options for the option */
23020
- options?: Array<FilterOption>;
23021
- /** Set a disabled state on the input */
23022
- isDisabled?: boolean;
23023
- /** Set a readonly state on the input */
23024
- readOnly?: boolean;
23025
- };
23026
- /** @deprecated beta - Operator option props */
23027
- type Operator = {
23028
- /** The label for the operator */
23029
- label: string;
23030
- /** The symbol for the operator */
23031
- value?: string;
23032
- /** The symbol for the operator */
23033
- symbol?: string;
23034
- /** The editor type for the operator */
23035
- options?: Array<InputOption>;
23036
- /** The editor type for the operator */
23037
- editorType?: FilterEditor;
23038
- };
23039
- /** @deprecated beta - Filter option props */
23040
- type FilterOption = {
23041
- /** The label for the option */
23042
- label: string;
23043
- /** The value for the option */
23044
- value: string;
23045
- /** The options for the option */
23046
- options?: FilterOption[];
23047
- /** The operator options for the option */
23048
- operatorOptions?: Operator[];
23049
- /** The value options for the option */
23050
- valueOptions?: InputOption[];
23051
- /** Set a readonly state on the input */
23052
- readOnly?: boolean;
23053
- /** Set a disabled state on the input */
23054
- disabled?: boolean;
23055
- };
23056
- /** @deprecated beta - Filter selected and query value props */
23057
- type Filter = {
23058
- /** The field value selected */
23059
- field: string;
23060
- /** The operator value selected */
23061
- operator: string;
23062
- /** The value selected */
23063
- value: string | string[];
23064
- };
23065
-
23066
- /** @deprecated beta - a list of possible operator values that sync with uniform search api */
23067
- type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
23068
- type OperatorValueType = {
23069
- value: OperatorValue;
23070
- };
23071
- /** @deprecated beta - a list of possible operator types */
23072
- type OperatorType = Array<Omit<Operator, 'value'> & OperatorValueType>;
23073
- /** @deprecated beta - uniform number operators */
23074
- declare const NUMBER_OPERATORS: OperatorType;
23075
- /** @deprecated beta - uniform date operators */
23076
- declare const DATE_OPERATORS: OperatorType;
23077
- /** @deprecated beta - uniform textbox operators */
23078
- declare const TEXTBOX_OPERATORS: OperatorType;
23079
- /** @deprecated beta - uniform user operators */
23080
- declare const USER_OPERATORS: OperatorType;
23081
- /** @deprecated beta - uniform system date operators */
23082
- declare const SYSTEM_DATE_OPERATORS: OperatorType;
23083
- /** @deprecated beta - uniform rich text operators */
23084
- declare const RICHTEXT_OPERATORS: OperatorType;
23085
- /** @deprecated beta - uniform checkbox operators */
23086
- declare const CHECKBOX_OPERATORS: OperatorType;
23087
- /** @deprecated beta - uniform system field operators */
23088
- declare const SYSTEM_FIELD_OPERATORS: OperatorType;
23089
-
23090
- /** @description beta - filter button type */
23091
- type FilterButtonProps = {
23092
- /** text to display on the button
23093
- * @default "Filters"
23094
- */
23095
- text?: string;
23096
- /** icon to display on the button
23097
- * @default "filter-add"
23098
- */
23099
- icon?: IconType;
23100
- /** number of filters to display on the button and sets the styles on the button */
23101
- filterCount?: number;
23102
- /** sets the selected styles on the button */
23103
- hasSelectedValue?: boolean;
23104
- /** sets the data-testid attribute on the button */
23105
- dataTestId?: string;
23106
- } & HTMLAttributes<HTMLButtonElement>;
23107
- /**
23108
- * @deprecated beta - A filter button component used to display filter menu options
23109
- * @example <FilterButton text="Filters" filterCount={3} />
23110
- */
23111
- declare const FilterButton: ({ text, icon, filterCount, hasSelectedValue, dataTestId, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23112
-
23113
- /**
23114
- * @deprecated beta - Default filter controls for search and filter
23115
- * @example <FilterControls />
23116
- */
23117
- declare const FilterControls: ({ children, defaultSortByValue, hideSearchInput, }: {
23118
- /** optional param to allow you to add your own controls */
23119
- children?: ReactNode;
23120
- /** optional param to hide the search input */
23121
- hideSearchInput?: boolean | undefined;
23122
- /** The default sort by value */
23123
- defaultSortByValue: string;
23124
- }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23125
-
23126
- type FilterRowProps = {
23127
- /** the index of the filter row */
23128
- index: number;
23129
- /** the list of filter options for each filter row */
23130
- paramOptions: FilterOption[];
23131
- /** function to trigger filter change events */
23132
- onParamChange: (e: string) => void;
23133
- /** the list of operator options for each filter row */
23134
- operatorOptions: Operator[];
23135
- /** function to trigger operator change events */
23136
- onOperatorChange: (e: string) => void;
23137
- /** function to trigger value change events */
23138
- onValueChange: (e: string) => void;
23139
- /** the list of value options for each filter row */
23140
- valueOptions: InputOption[];
23141
- };
23142
- /** @deprecated beta - A filter item component used to display filter options */
23143
- declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23144
- type FilterItemsProps = {
23145
- /** The text for the add button */
23146
- addButtonText?: string;
23147
- /** The text for the reset button */
23148
- resetButtonText?: string;
23149
- };
23150
- /** @deprecated beta - A filter items component used to display filter options */
23151
- declare const FilterItems: ({ addButtonText, resetButtonText, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23152
-
23153
- type SearchAndFilterOptionsContainerProps = {
23154
- /** The button row to be displayed at the bottom of the container */
23155
- buttonRow?: React__default.ReactNode;
23156
- /** The children of the container */
23157
- children: React__default.ReactNode;
23158
- };
23159
- /**
23160
- * @deprecated beta - A container component for search and filter options
23161
- * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23162
- * */
23163
- declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23164
- type FiltersProps = {
23165
- /** The id of the filter menu */
23166
- id: string;
23167
- /** The text for the filter title */
23168
- filterTitle?: string;
23169
- /** The controls to be displayed at the bottom of the filter menu */
23170
- menuControls?: React__default.ReactNode;
23171
- /** The children of the filter menu */
23172
- children: React__default.ReactNode;
23173
- /** Sets the data-test-id attribute for the filter menu */
23174
- dataTestId?: string;
23175
- };
23176
- /**
23177
- * @deprecated beta - A filter menu component used to display filter options
23178
- * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23179
- * */
23180
- declare const FilterMenu: ({ id, filterTitle, menuControls, children, dataTestId, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23181
-
23182
- type SearchAndFilterProviderProps = {
23183
- /** sets the filter values */
23184
- filters: Filter[];
23185
- /** sets the filter mode */
23186
- filterMode?: filterMode;
23187
- /** function to trigger search change event */
23188
- onSearchChange?: (term: string) => void;
23189
- /** function to trigger filter change events */
23190
- onChange: (filters: Filter[]) => void;
23191
- /** function to trigger sort change events */
23192
- onSortChange: (sort: string) => void;
23193
- /** sets the reset filter values
23194
- * @default []
23195
- */
23196
- resetFilterValues?: Filter[];
23197
- /** sets the list of filter options for each filter row */
23198
- filterOptions: FilterOption[];
23199
- /** sets the list of sort options */
23200
- sortOptions: FilterOption[];
23201
- /** the default sort by value */
23202
- defaultSortByValue: string;
23203
- /** the total number of results */
23204
- totalResults?: number;
23205
- /** sets child components giving access to useSearchAndFilter context */
23206
- children: ReactNode;
23207
- };
23208
- type filterMode = 'filters' | 'sort' | undefined;
23209
- type SearchAndFilterContextProps = {
23210
- /** the search term value */
23211
- searchTerm: string;
23212
- /** sets the search term value */
23213
- setSearchTerm: (term: string) => void;
23214
- /** current filter visibility */
23215
- filterVisibility?: filterMode;
23216
- /** sets the filter visibility */
23217
- setFilterVisibility: (mode: filterMode) => void;
23218
- /** sets the initial filters */
23219
- filters: Filter[];
23220
- /** function to update the current filters */
23221
- setFilters: (updatedFilters: Filter[]) => void;
23222
- /** function to update the current sort */
23223
- setSortBy: (sort: string) => void;
23224
- /** function that adds a blank set of filter options */
23225
- handleAddFilter: () => void;
23226
- /** function to reset all filter values */
23227
- handleResetFilters: (filters?: Filter[]) => void;
23228
- /** function that deletes a row and it's values visually and from state */
23229
- handleDeleteFilter: (index: number) => void;
23230
- /** sets the initial list of filter options */
23231
- filterOptions: FilterOption[];
23232
- /** sets the initial list of sort options */
23233
- sortOptions: FilterOption[];
23234
- /** a valid list of valid filter options */
23235
- sortByValue: string;
23236
- /** a valid list of valid filter options */
23237
- validFilterQuery: Filter[] | undefined;
23238
- /** the total number of results */
23239
- totalResults?: number;
23240
- };
23241
- declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProps>;
23242
- /**
23243
- * @deprecated beta - Search and filter provider
23244
- * @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
23245
- * */
23246
- declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, filterMode, onSearchChange, onChange, onSortChange, resetFilterValues, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23247
- /** @deprecated beta - Search and filter hook
23248
- * @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
23249
- */
23250
- declare const useSearchAndFilter: () => {
23251
- /** the search term value */
23252
- searchTerm: string;
23253
- /** sets the search term value */
23254
- setSearchTerm: (term: string) => void;
23255
- /** current filter visibility */
23256
- filterVisibility?: filterMode;
23257
- /** sets the filter visibility */
23258
- setFilterVisibility: (mode: filterMode) => void;
23259
- /** sets the initial filters */
23260
- filters: Filter[];
23261
- /** function to update the current filters */
23262
- setFilters: (updatedFilters: Filter[]) => void;
23263
- /** function to update the current sort */
23264
- setSortBy: (sort: string) => void;
23265
- /** function that adds a blank set of filter options */
23266
- handleAddFilter: () => void;
23267
- /** function to reset all filter values */
23268
- handleResetFilters: (filters?: Filter[]) => void;
23269
- /** function that deletes a row and it's values visually and from state */
23270
- handleDeleteFilter: (index: number) => void;
23271
- /** sets the initial list of filter options */
23272
- filterOptions: FilterOption[];
23273
- /** sets the initial list of sort options */
23274
- sortOptions: FilterOption[];
23275
- /** a valid list of valid filter options */
23276
- sortByValue: string;
23277
- /** a valid list of valid filter options */
23278
- validFilterQuery: Filter[] | undefined;
23279
- /** the total number of results */
23280
- totalResults?: number | undefined;
23281
- };
23282
-
23283
- type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
23284
- /** The filter controls to be displayed
23285
- * @default '<FilterControls />'
23286
- */
23287
- filterControls?: React$1.ReactNode;
23288
- /** sets the filter mode */
23289
- filterMode?: filterMode;
23290
- /** The view switch controls to be displayed */
23291
- viewSwitchControls?: React$1.ReactNode;
23292
- /** The default sort by value */
23293
- defaultSortByValue: string;
23294
- /** The number of total results */
23295
- totalResults?: number;
23296
- /** The results container view
23297
- * @default '<SearchAndFilterResultContainer />'
23298
- */
23299
- resultsContainerView?: React$1.ReactNode;
23300
- /** sets the reset filter values */
23301
- resetFilterValues?: Filter[];
23302
- /** The children of the search and filter component */
23303
- children?: React$1.ReactNode;
23304
- };
23305
- /**
23306
- * @deprecated beta - Search and filter component
23307
- * @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
23308
- * */
23309
- declare const SearchAndFilter: ({ filters, filterOptions, filterMode, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, resultsContainerView, children, onChange, onSearchChange, onSortChange, totalResults, resetFilterValues, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23310
-
23311
- type SearchAndFilterResultContainerProps = {
23312
- /** The label for the clear button
23313
- * @default 'Clear'
23314
- */
23315
- clearButtonLabel?: string;
23316
- /** The text for the button */
23317
- buttonText?: string;
23318
- /** The title for the callout */
23319
- calloutTitle?: string;
23320
- /** The text for the callout */
23321
- calloutText?: string;
23322
- /** The function to handle the clear button */
23323
- onHandleClear?: () => void;
23324
- };
23325
- /** @deprecated beta - Search and filter results container */
23326
- declare const SearchAndFilterResultContainer: ({ buttonText, clearButtonLabel, calloutTitle, calloutText, onHandleClear, }: SearchAndFilterResultContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
23327
-
23328
- declare const SearchOnlyContext: React$1.Context<Pick<SearchAndFilterContextProps, "searchTerm" | "setSearchTerm">>;
23329
- type SearchOnlyProviderProps = Pick<SearchAndFilterProviderProps, 'onSearchChange'> & {
23330
- /** sets the max width of input wrapper
23331
- * @default '712px'
23332
- */
23333
- maxWidth?: string;
23334
- };
23335
- declare const SearchOnlyFilter: ({ onSearchChange, maxWidth }: SearchOnlyProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23336
-
23337
23195
  type SegmentedControlOption<TValue extends string = string> = {
23338
23196
  value: TValue;
23339
23197
  label?: string;
23340
23198
  icon?: IconType;
23341
23199
  tooltip?: string;
23342
23200
  disabled?: boolean;
23201
+ 'data-testid'?: string;
23343
23202
  };
23344
23203
  type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
23345
23204
  /** A unique name for the component, used to group the options */
@@ -23363,33 +23222,24 @@ type SegmentedControlProps<TValue extends string = string> = Omit<React__default
23363
23222
  * The size of the input
23364
23223
  * @default 'md'
23365
23224
  */
23366
- size?: 'sm' | 'md' | 'lg';
23225
+ size?: 'sm' | 'md' | 'lg' | 'xl';
23226
+ /** Hides the text of the options */
23227
+ hideOptionText?: boolean;
23228
+ /** The size of the icon
23229
+ * @default '1.5em'
23230
+ */
23231
+ iconSize?: string;
23232
+ /**
23233
+ * This is used to match the color of the scroll indicators with the background color of the parent.
23234
+ * @default 'white'
23235
+ */
23236
+ currentBackgroundColor?: React__default.CSSProperties['backgroundColor'];
23367
23237
  };
23368
23238
  /**
23369
- * Horizontal control with multiple segments. Can be used as a replacement of radio buttons.
23239
+ * A control with multiple segments. Can be used as a replacement of radio buttons.
23370
23240
  * @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
23371
23241
  */
23372
- declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23373
-
23374
- declare function ShortcutContext({ children }: {
23375
- children: React__default.ReactNode;
23376
- }): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23377
- declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
23378
- shortcut: string;
23379
- macShortcut?: string;
23380
- className?: SerializedStyles | string;
23381
- }): _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
23382
-
23383
- declare const isMacLike: boolean;
23384
- type UseShortcutOptions = {
23385
- shortcut: string | null;
23386
- macShortcut?: string | null;
23387
- handler: (event: KeyboardEvent) => void;
23388
- doNotPreventDefault?: boolean;
23389
- activeWhenEditing?: boolean;
23390
- };
23391
- declare function macifyShortcut(shortcut: string | null): string | null;
23392
- declare function useShortcut({ handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, }: UseShortcutOptions): React$1.MutableRefObject<react_hotkeys_hook_dist_types.RefType<HTMLElement>>;
23242
+ declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, hideOptionText, iconSize, currentBackgroundColor, ...props }: SegmentedControlProps<TValue>) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23393
23243
 
23394
23244
  type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLDivElement>> & {
23395
23245
  width?: string;
@@ -23648,27 +23498,18 @@ declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion
23648
23498
 
23649
23499
  type ToastContainerProps = {
23650
23500
  limit?: number;
23501
+ /** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
23502
+ * @default 'normal'
23503
+ */
23504
+ autoCloseDelay?: 'normal' | 'medium' | 'long';
23651
23505
  };
23652
23506
  /**
23653
23507
  * A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
23654
- * @example <App><ToastContainer /></App>
23508
+ * @example <App><ToastContainer autoCloseDelay="normal" /></App>
23655
23509
  *
23656
23510
  * @deprecated This component is in beta, and might receive breaking changes in minor releases!
23657
23511
  */
23658
- declare const ToastContainer: ({ limit }: ToastContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23659
-
23660
- type TooltipProps = TooltipOptions & {
23661
- /** Content of tooltip popover */
23662
- title: string | React__default.ReactElement;
23663
- /** Optional ability to specify alternative placement. By default - bottom center */
23664
- placement?: TooltipInitialState['placement'];
23665
- /** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
23666
- visible?: TooltipInitialState['visible'];
23667
- children: JSX.Element;
23668
- /** If the tooltip should not be rendered inside a portal */
23669
- withoutPortal?: boolean;
23670
- };
23671
- declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23512
+ declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23672
23513
 
23673
23514
  /** Available heading weights e.g. 1 - 6 */
23674
23515
  type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
@@ -23814,4 +23655,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23814
23655
  };
23815
23656
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23816
23657
 
23817
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, CHECKBOX_OPERATORS, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DATE_OPERATORS, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, FilterItem, FilterItems, type FilterItemsProps, FilterMenu, type FilterOption, type FilterRowProps, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, RICHTEXT_OPERATORS, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TEXTBOX_OPERATORS, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, USER_OPERATORS, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
23658
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, type ShortcutReference, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, uniformComponentIcon, uniformComponentPatternIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };