@uniformdev/design-system 19.135.0 → 19.135.1-alpha.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +13233 -11838
- package/dist/index.d.mts +1653 -1442
- package/dist/index.d.ts +1653 -1442
- package/dist/index.js +11276 -9873
- package/package.json +31 -25
package/dist/index.d.mts
CHANGED
|
@@ -1,29 +1,33 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
|
+
import { Decorator } 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, PropsWithChildren, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
5
|
+
import { GroupBase, Props, MultiValue, SingleValue } 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
|
-
import
|
|
17
|
-
import {
|
|
19
|
+
import { PopoverState } from 'reakit/Popover';
|
|
20
|
+
import { CreatableProps } from 'react-select/creatable';
|
|
21
|
+
import InternalSelect from '../../../node_modules/react-select/dist/declarations/src/Select';
|
|
18
22
|
import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
|
|
19
23
|
import * as _ariakit_react from '@ariakit/react';
|
|
20
|
-
import { MenuProps as MenuProps$2, MenuStoreProps, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, TabStoreState, TabListProps, TabProps, TabPanelProps } from '@ariakit/react';
|
|
24
|
+
import { MenuProps as MenuProps$2, MenuStoreProps, Menu as Menu$1, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, PopoverStore, TabStoreState, TabListProps, TabProps, TabPanelProps } from '@ariakit/react';
|
|
25
|
+
export { PopoverStore } from '@ariakit/react';
|
|
21
26
|
import { InitialConfigType } from '@lexical/react/LexicalComposer';
|
|
22
27
|
import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
|
|
23
28
|
export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
|
|
24
29
|
import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
|
|
25
|
-
import * as
|
|
26
|
-
import { TooltipOptions, TooltipInitialState } from 'reakit/Tooltip';
|
|
30
|
+
import * as _uniformdev_richtext from '@uniformdev/richtext';
|
|
27
31
|
export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
|
|
28
32
|
export { Id as ToastId, toast } from 'react-toastify';
|
|
29
33
|
|
|
@@ -42,7 +46,9 @@ type ThemeProps = {
|
|
|
42
46
|
/**
|
|
43
47
|
* Uniform CSS Variables, font provider and optional reset stylesheet
|
|
44
48
|
* @example <Theme disableReset={true} /> */
|
|
45
|
-
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) =>
|
|
49
|
+
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
50
|
+
|
|
51
|
+
declare const BetaDecorator: Decorator;
|
|
46
52
|
|
|
47
53
|
/** Breakpoint label values */
|
|
48
54
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
@@ -120,12 +126,35 @@ declare const buttonTertiaryOutline: _emotion_react.SerializedStyles;
|
|
|
120
126
|
declare const buttonGhostUnimportant: _emotion_react.SerializedStyles;
|
|
121
127
|
|
|
122
128
|
declare const labelText: _emotion_react.SerializedStyles;
|
|
123
|
-
declare const input: (whiteSpaceWrap:
|
|
129
|
+
declare const input: (whiteSpaceWrap: "wrap" | "nowrap") => _emotion_react.SerializedStyles;
|
|
124
130
|
declare const inputError: _emotion_react.SerializedStyles;
|
|
125
131
|
declare const inputSelect: _emotion_react.SerializedStyles;
|
|
126
132
|
|
|
127
133
|
declare const accessibleHidden: _emotion_react.SerializedStyles;
|
|
128
134
|
|
|
135
|
+
/** Uniform utility colors
|
|
136
|
+
* exports the following css variables:
|
|
137
|
+
* --utility-caution-icon: #facc15;
|
|
138
|
+
* --utility-caution-title: #854d0e;
|
|
139
|
+
* --utility-caution-container: #fefce8;
|
|
140
|
+
* --utility-danger-icon: #f87171;
|
|
141
|
+
* --utility-danger-title: #991b1b;
|
|
142
|
+
* --utility-danger-container: #fef2f2;
|
|
143
|
+
* --utility-info-icon: #60a5fa;
|
|
144
|
+
* --utility-info-title: #1e40af;
|
|
145
|
+
* --utility-info-container: #eff6ff;
|
|
146
|
+
* --utility-note-icon: var(--gray-400);
|
|
147
|
+
* --utility-note-title: var(--gray-800);
|
|
148
|
+
* --utility-note-container: var(--gray-50);
|
|
149
|
+
* --utility-success-icon: #4ade80;
|
|
150
|
+
* --utility-success-title: #166534;
|
|
151
|
+
* --utility-success-container: #f0fdfa;
|
|
152
|
+
* @returns { utilityColors } css utility colors
|
|
153
|
+
* @example directly on the component <div css={utilityColors}></div>
|
|
154
|
+
* @example css-in-js my-component { ${utilityColors}}
|
|
155
|
+
*/
|
|
156
|
+
declare const functionalColors: _emotion_react.SerializedStyles;
|
|
157
|
+
|
|
129
158
|
/**
|
|
130
159
|
* growSubtle animation
|
|
131
160
|
* @description - increases the size of an element from scale(1) - scale(1.15) and back down to scale(1) using transform: scale(1)
|
|
@@ -182,7 +211,7 @@ type AddButtonProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'onC
|
|
|
182
211
|
* @param {Omit<React.HTMLAttributes<HTMLButtonElement>, 'onChange'>} props - object of button props
|
|
183
212
|
* @example <AddButton buttonText="Button Text" />
|
|
184
213
|
*/
|
|
185
|
-
declare const AddButton: ({ buttonText, onClick, shortcut, macShortcut, ...props }: AddButtonProps) =>
|
|
214
|
+
declare const AddButton: ({ buttonText, onClick, shortcut, macShortcut, ...props }: AddButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
186
215
|
|
|
187
216
|
type AddListButtonThemeProps = 'var(--brand-secondary-5)' | 'var(--primary-action-default)';
|
|
188
217
|
type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
@@ -211,30 +240,7 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
211
240
|
* Uniform Add List Button Component
|
|
212
241
|
* @example <AddListButton buttonText="my text" onButtonClick={() => console.log('button clicked')} icon="add" />
|
|
213
242
|
*/
|
|
214
|
-
declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) =>
|
|
215
|
-
|
|
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;
|
|
243
|
+
declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
238
244
|
|
|
239
245
|
var v$1 = "4.8.0";
|
|
240
246
|
var meta$1 = {
|
|
@@ -20202,7 +20208,7 @@ type AnimationFileProps = LottieComponentProps & {
|
|
|
20202
20208
|
* See https://lottiereact.com/ for example documentation
|
|
20203
20209
|
* @example <AnimationFile animationData={spinnerAnimationData} label="My Animation" width={364} height={282} />
|
|
20204
20210
|
*/
|
|
20205
|
-
declare const AnimationFile: ({ label, loop, autoplay, width, height, ...props }: AnimationFileProps) =>
|
|
20211
|
+
declare const AnimationFile: ({ label, loop, autoplay, width, height, ...props }: AnimationFileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20206
20212
|
|
|
20207
20213
|
type AvatarSizeProp = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
20208
20214
|
type AvatarProps = {
|
|
@@ -20214,7 +20220,7 @@ type AvatarProps = {
|
|
|
20214
20220
|
* @description A component to render rounded avatars of a user or an app.
|
|
20215
20221
|
* @example <Avatar>AB</Avatar>
|
|
20216
20222
|
*/
|
|
20217
|
-
declare const Avatar: ({ src, label, children, size, ...props }: AvatarProps) =>
|
|
20223
|
+
declare const Avatar: ({ src, label, children, size, ...props }: AvatarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20218
20224
|
|
|
20219
20225
|
type AvatarGroupProps = {
|
|
20220
20226
|
/**
|
|
@@ -20233,7 +20239,7 @@ type AvatarGroupProps = {
|
|
|
20233
20239
|
* @description Renders avatars in a group with the ability to truncate the list. This component works best when the <Avatar> component are direct children.
|
|
20234
20240
|
* @example <AvatarGroup max={2}><Avatar>AB</Avatar><Avatar>CD</Avatar><Avatar>EF</Avatar><AvatarGroup>
|
|
20235
20241
|
*/
|
|
20236
|
-
declare const AvatarGroup: ({ max, children, getTruncatedLabel, ...props }: AvatarGroupProps) =>
|
|
20242
|
+
declare const AvatarGroup: ({ max, children, getTruncatedLabel, ...props }: AvatarGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20237
20243
|
|
|
20238
20244
|
type BadgeThemeProps = 'caution' | 'info' | 'note' | 'success' | 'error' | 'unimportant';
|
|
20239
20245
|
type SizeProps = 'xs' | 'sm' | 'base';
|
|
@@ -20258,7 +20264,7 @@ type BadgeSizeProps = Record<SizeProps, SerializedStyles>;
|
|
|
20258
20264
|
* @example <Badge text="My badge" theme="success" size="base" />
|
|
20259
20265
|
* @deprecated please use Chip component instead
|
|
20260
20266
|
*/
|
|
20261
|
-
declare const Badge: ({ text, theme, size, uppercaseText, ...props }: BadgeProps) =>
|
|
20267
|
+
declare const Badge: ({ text, theme, size, uppercaseText, ...props }: BadgeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20262
20268
|
|
|
20263
20269
|
type BannerType = 'note' | 'info' | 'caution' | 'danger' | 'success';
|
|
20264
20270
|
type BannerProps = React__default.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -20282,7 +20288,7 @@ type BannerProps = React__default.HTMLAttributes<HTMLDivElement> & {
|
|
|
20282
20288
|
* Uniform Banner Component
|
|
20283
20289
|
* @example <Banner type="caution" onDismiss={() => {}}>My Banner Message</Callout>
|
|
20284
20290
|
*/
|
|
20285
|
-
declare const Banner: ({ type, onDismiss, children, isAnimated, ...props }: BannerProps) =>
|
|
20291
|
+
declare const Banner: ({ type, onDismiss, children, isAnimated, ...props }: BannerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20286
20292
|
|
|
20287
20293
|
type UniformLogoProps = {
|
|
20288
20294
|
/** sets a light or dark theme for the uniform badge or logo component
|
|
@@ -20296,14 +20302,94 @@ type UniformLogoProps = {
|
|
|
20296
20302
|
* @param props - sets react svg element attribute props
|
|
20297
20303
|
* @example <UniformBadge theme="dark" />
|
|
20298
20304
|
*/
|
|
20299
|
-
declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<SVGElement> & UniformLogoProps) =>
|
|
20305
|
+
declare const UniformBadge: ({ theme, ...props }: React__default.SVGAttributes<SVGElement> & UniformLogoProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20300
20306
|
|
|
20301
20307
|
/**
|
|
20302
20308
|
* Uniform Logo
|
|
20303
20309
|
* @param props - sets react svg element attribute props
|
|
20304
20310
|
* @example <UniformLogo theme="light" /> */
|
|
20305
|
-
declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) =>
|
|
20306
|
-
declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) =>
|
|
20311
|
+
declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20312
|
+
declare const UniformLogoLarge: ({ ...props }: React.SVGAttributes<SVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20313
|
+
|
|
20314
|
+
/**
|
|
20315
|
+
* Gets a formatted version of a shortcut for display.
|
|
20316
|
+
*
|
|
20317
|
+
* i.e. converts "mod+alt+n" to "['⌘', '⌥', 'N']" on macs,
|
|
20318
|
+
* or ['^', 'Alt', 'N'] on windows.
|
|
20319
|
+
* @param shortcut The +-delimited shortcut string
|
|
20320
|
+
*/
|
|
20321
|
+
declare function getFormattedShortcut(shortcut: string | null): string[];
|
|
20322
|
+
|
|
20323
|
+
/**
|
|
20324
|
+
* @deprecated Use tooltips or menu items with a shortcut instead,
|
|
20325
|
+
* and getFormattedShortcut for display
|
|
20326
|
+
*/
|
|
20327
|
+
declare function ShortcutContext({ children }: {
|
|
20328
|
+
children: React__default.ReactNode;
|
|
20329
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
20330
|
+
/**
|
|
20331
|
+
* @deprecated Use tooltips or menu items with a shortcut instead,
|
|
20332
|
+
* and getFormattedShortcut for display
|
|
20333
|
+
*/
|
|
20334
|
+
declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
|
|
20335
|
+
shortcut: string;
|
|
20336
|
+
macShortcut?: string;
|
|
20337
|
+
className?: SerializedStyles | string;
|
|
20338
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
20339
|
+
|
|
20340
|
+
type UseShortcutOptions = {
|
|
20341
|
+
/**
|
|
20342
|
+
* Shortcut to type to activate. Keys are +-delimited.
|
|
20343
|
+
* Prefer 'mod' to 'ctrl' (mod = ctrl on windows, cmd on mac).
|
|
20344
|
+
*
|
|
20345
|
+
* ex: mod+n for ctrl+n on windows, cmd+n on mac
|
|
20346
|
+
*
|
|
20347
|
+
* When macShortcut is not provided, this shortcut is used for macs.
|
|
20348
|
+
*/
|
|
20349
|
+
shortcut: string | null;
|
|
20350
|
+
/**
|
|
20351
|
+
* Shortcut to type to activate on macs. Keys are +-delimited.
|
|
20352
|
+
* Only required to use a different shortcut on mac, i.e. to be
|
|
20353
|
+
* idiomatic with OS shortcuts like cmd+shift+z for redo,
|
|
20354
|
+
* vs windows' ctrl+y.
|
|
20355
|
+
*/
|
|
20356
|
+
macShortcut?: string | null;
|
|
20357
|
+
/**
|
|
20358
|
+
* Function to call when the shortcut is activated.
|
|
20359
|
+
*
|
|
20360
|
+
* The event is undefined if the handler has been invoked
|
|
20361
|
+
* imperatively by calling the handler fn returned by the hook
|
|
20362
|
+
*/
|
|
20363
|
+
handler: (event: KeyboardEvent | undefined) => void;
|
|
20364
|
+
/** Does not abort the default keyboard event. */
|
|
20365
|
+
doNotPreventDefault?: boolean;
|
|
20366
|
+
/** Whether the shortcut will activate with a form field in focus */
|
|
20367
|
+
activeWhenEditing?: boolean;
|
|
20368
|
+
/** When true, the shortcut is disabled. The result will also reflect this state, which may disable attached menus, buttons, etc */
|
|
20369
|
+
disabled?: boolean;
|
|
20370
|
+
};
|
|
20371
|
+
type ShortcutReference = {
|
|
20372
|
+
shortcut: string;
|
|
20373
|
+
handler: () => void | Promise<void>;
|
|
20374
|
+
disabled: boolean;
|
|
20375
|
+
};
|
|
20376
|
+
interface UseShortcutResult extends ShortcutReference {
|
|
20377
|
+
focusTrap: MutableRefObject<RefType<HTMLElement>>;
|
|
20378
|
+
}
|
|
20379
|
+
declare function useShortcut({ disabled, handler, shortcut, macShortcut, doNotPreventDefault, activeWhenEditing, }: UseShortcutOptions): UseShortcutResult;
|
|
20380
|
+
|
|
20381
|
+
type TooltipProps = TooltipOptions & {
|
|
20382
|
+
/** Content of tooltip popover */
|
|
20383
|
+
title: string | React__default.ReactElement;
|
|
20384
|
+
/** Optional ability to specify alternative placement. By default - bottom center */
|
|
20385
|
+
placement?: TooltipInitialState['placement'];
|
|
20386
|
+
/** Optional ability to control visibility of Tooltip manually, useful for showing tooltip on click instead of on hover */
|
|
20387
|
+
visible?: TooltipInitialState['visible'];
|
|
20388
|
+
children: JSX.Element;
|
|
20389
|
+
/** If the tooltip should not be rendered inside a portal */
|
|
20390
|
+
withoutPortal?: boolean;
|
|
20391
|
+
};
|
|
20392
|
+
declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
20307
20393
|
|
|
20308
20394
|
/** Button themes that are available to use with our brand */
|
|
20309
20395
|
type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
|
|
@@ -20320,684 +20406,703 @@ type ButtonProps = ButtonProps$1 & {
|
|
|
20320
20406
|
* @default "md"
|
|
20321
20407
|
* */
|
|
20322
20408
|
size?: ButtonSizeProps$1;
|
|
20409
|
+
/**
|
|
20410
|
+
* Sets a tooltip on the button when hovered
|
|
20411
|
+
* Note that the tooltip will be shown whether disabled or not.
|
|
20412
|
+
*/
|
|
20413
|
+
tooltip?: React$1.ReactNode;
|
|
20414
|
+
/**
|
|
20415
|
+
* Sets additional tooltip options if the tooltip is set
|
|
20416
|
+
*/
|
|
20417
|
+
tooltipOptions?: Omit<TooltipProps, 'title' | 'children'>;
|
|
20418
|
+
/**
|
|
20419
|
+
* Sets a shortcut for the button.
|
|
20420
|
+
* The shortcut's handler function will be automatically set to the onClick of the button,
|
|
20421
|
+
* and a tooltip will be added to the button that shows the keyboard shortcut.
|
|
20422
|
+
*/
|
|
20423
|
+
shortcut?: ShortcutReference;
|
|
20323
20424
|
};
|
|
20324
20425
|
/**
|
|
20325
20426
|
* Uniform Button Component
|
|
20326
|
-
* @
|
|
20327
|
-
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world')}>Click me</Button>
|
|
20427
|
+
* @example <Button buttonType="secondary" size="md" onClick={() => alert('hello world!')}>Click me</Button>
|
|
20328
20428
|
*/
|
|
20329
20429
|
declare const Button: React$1.ForwardRefExoticComponent<Omit<ButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
20330
20430
|
|
|
20331
20431
|
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;
|
|
20342
|
-
settings: (props: IconProps) =>
|
|
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
|
-
'
|
|
20360
|
-
|
|
20361
|
-
|
|
20362
|
-
|
|
20363
|
-
|
|
20364
|
-
'
|
|
20365
|
-
|
|
20366
|
-
|
|
20367
|
-
|
|
20368
|
-
|
|
20369
|
-
'align-
|
|
20370
|
-
|
|
20371
|
-
'
|
|
20372
|
-
'
|
|
20373
|
-
'
|
|
20374
|
-
'
|
|
20375
|
-
|
|
20376
|
-
'
|
|
20377
|
-
'
|
|
20378
|
-
'
|
|
20379
|
-
'arrow-
|
|
20380
|
-
'arrow-
|
|
20381
|
-
'arrow-bottom-
|
|
20382
|
-
'arrow-
|
|
20383
|
-
'arrow-
|
|
20384
|
-
'arrow-
|
|
20385
|
-
'arrow-
|
|
20386
|
-
'arrow-
|
|
20387
|
-
'arrow-
|
|
20388
|
-
'arrow-
|
|
20389
|
-
'arrow-
|
|
20390
|
-
'arrow-
|
|
20391
|
-
'arrow-
|
|
20392
|
-
'arrow-
|
|
20393
|
-
'arrow-long-
|
|
20394
|
-
'arrow-long-
|
|
20395
|
-
'arrow-long-
|
|
20396
|
-
'arrow-long-
|
|
20397
|
-
'arrow-long-
|
|
20398
|
-
'arrow-long-
|
|
20399
|
-
'arrow-long-
|
|
20400
|
-
'arrow-long-
|
|
20401
|
-
'arrow-long-
|
|
20402
|
-
'arrow-long-
|
|
20403
|
-
'arrow-long-
|
|
20404
|
-
'arrow-long-
|
|
20405
|
-
'arrow-long-
|
|
20406
|
-
'arrow-long-
|
|
20407
|
-
'arrow-long-
|
|
20408
|
-
'arrow-
|
|
20409
|
-
'arrow-
|
|
20410
|
-
'arrow-
|
|
20411
|
-
'arrow-
|
|
20412
|
-
'arrow-
|
|
20413
|
-
'arrow-
|
|
20414
|
-
'arrow-
|
|
20415
|
-
'arrow-
|
|
20416
|
-
'arrow-top-
|
|
20417
|
-
'arrow-
|
|
20418
|
-
'arrow-
|
|
20419
|
-
'arrow-
|
|
20420
|
-
'
|
|
20421
|
-
'
|
|
20422
|
-
'
|
|
20423
|
-
'
|
|
20424
|
-
'
|
|
20425
|
-
'arrows-
|
|
20426
|
-
'arrows-
|
|
20427
|
-
'arrows-
|
|
20428
|
-
'arrows-
|
|
20429
|
-
'arrows-
|
|
20430
|
-
'arrows-
|
|
20431
|
-
'arrows-expand-
|
|
20432
|
-
'arrows-expand-
|
|
20433
|
-
'arrows-expand-
|
|
20434
|
-
'arrows-
|
|
20435
|
-
'arrows-
|
|
20436
|
-
'arrows-
|
|
20437
|
-
'arrows-
|
|
20438
|
-
'arrows-
|
|
20439
|
-
'arrows-
|
|
20440
|
-
'arrows-
|
|
20441
|
-
'arrows-
|
|
20442
|
-
'arrows-
|
|
20443
|
-
'arrows-
|
|
20444
|
-
|
|
20445
|
-
|
|
20446
|
-
|
|
20447
|
-
|
|
20448
|
-
|
|
20449
|
-
|
|
20450
|
-
|
|
20451
|
-
|
|
20452
|
-
|
|
20453
|
-
|
|
20454
|
-
|
|
20455
|
-
|
|
20456
|
-
|
|
20457
|
-
|
|
20458
|
-
|
|
20459
|
-
|
|
20460
|
-
|
|
20461
|
-
|
|
20462
|
-
|
|
20463
|
-
|
|
20464
|
-
|
|
20465
|
-
|
|
20466
|
-
'border-
|
|
20467
|
-
'border-
|
|
20468
|
-
|
|
20469
|
-
|
|
20470
|
-
|
|
20471
|
-
|
|
20472
|
-
|
|
20473
|
-
|
|
20474
|
-
|
|
20475
|
-
|
|
20476
|
-
|
|
20477
|
-
|
|
20478
|
-
|
|
20479
|
-
|
|
20480
|
-
|
|
20481
|
-
|
|
20482
|
-
'
|
|
20483
|
-
|
|
20484
|
-
calendar:
|
|
20485
|
-
|
|
20486
|
-
|
|
20487
|
-
|
|
20488
|
-
|
|
20489
|
-
|
|
20490
|
-
|
|
20491
|
-
|
|
20492
|
-
|
|
20493
|
-
|
|
20494
|
-
|
|
20495
|
-
|
|
20496
|
-
'
|
|
20497
|
-
'
|
|
20498
|
-
|
|
20499
|
-
|
|
20500
|
-
|
|
20501
|
-
'
|
|
20502
|
-
'
|
|
20503
|
-
|
|
20504
|
-
'chevron-double-
|
|
20505
|
-
'chevron-double-
|
|
20506
|
-
'chevron-double-
|
|
20507
|
-
'chevron-double-
|
|
20508
|
-
'chevron-double-
|
|
20509
|
-
'chevron-double-
|
|
20510
|
-
'chevron-double-
|
|
20511
|
-
'chevron-
|
|
20512
|
-
'chevron-
|
|
20513
|
-
'chevron-
|
|
20514
|
-
'chevron-
|
|
20515
|
-
'chevron-
|
|
20516
|
-
'chevron-
|
|
20517
|
-
'chevron-
|
|
20518
|
-
'chevron-
|
|
20519
|
-
'chevron-
|
|
20520
|
-
'chevron-
|
|
20521
|
-
'chevron-
|
|
20522
|
-
'chevron-
|
|
20523
|
-
'
|
|
20524
|
-
|
|
20525
|
-
'
|
|
20526
|
-
'
|
|
20527
|
-
|
|
20528
|
-
|
|
20529
|
-
|
|
20530
|
-
|
|
20531
|
-
|
|
20532
|
-
|
|
20533
|
-
|
|
20534
|
-
'
|
|
20535
|
-
|
|
20536
|
-
|
|
20537
|
-
|
|
20538
|
-
'
|
|
20539
|
-
'
|
|
20540
|
-
|
|
20541
|
-
|
|
20542
|
-
|
|
20543
|
-
|
|
20544
|
-
'
|
|
20545
|
-
|
|
20546
|
-
|
|
20547
|
-
|
|
20548
|
-
|
|
20549
|
-
'
|
|
20550
|
-
|
|
20551
|
-
'corner-double-
|
|
20552
|
-
'corner-double-
|
|
20553
|
-
'corner-double-
|
|
20554
|
-
'corner-
|
|
20555
|
-
'corner-
|
|
20556
|
-
'corner-
|
|
20557
|
-
'corner-
|
|
20558
|
-
'corner-right
|
|
20559
|
-
'corner-
|
|
20560
|
-
'corner-
|
|
20561
|
-
'corner-
|
|
20562
|
-
'
|
|
20563
|
-
|
|
20564
|
-
|
|
20565
|
-
|
|
20566
|
-
|
|
20567
|
-
'
|
|
20568
|
-
|
|
20569
|
-
|
|
20570
|
-
|
|
20571
|
-
|
|
20572
|
-
'
|
|
20573
|
-
|
|
20574
|
-
|
|
20575
|
-
|
|
20576
|
-
|
|
20577
|
-
'
|
|
20578
|
-
'
|
|
20579
|
-
|
|
20580
|
-
'dice-
|
|
20581
|
-
|
|
20582
|
-
'
|
|
20583
|
-
'
|
|
20584
|
-
'
|
|
20585
|
-
'
|
|
20586
|
-
|
|
20587
|
-
'
|
|
20588
|
-
'
|
|
20589
|
-
'
|
|
20590
|
-
'
|
|
20591
|
-
'
|
|
20592
|
-
|
|
20593
|
-
|
|
20594
|
-
'
|
|
20595
|
-
'
|
|
20596
|
-
|
|
20597
|
-
|
|
20598
|
-
|
|
20599
|
-
'
|
|
20600
|
-
'
|
|
20601
|
-
|
|
20602
|
-
|
|
20603
|
-
'edit-
|
|
20604
|
-
'edit-
|
|
20605
|
-
'edit-
|
|
20606
|
-
'edit-
|
|
20607
|
-
'edit-
|
|
20608
|
-
'edit-
|
|
20609
|
-
'edit-
|
|
20610
|
-
'edit-
|
|
20611
|
-
|
|
20612
|
-
|
|
20613
|
-
|
|
20614
|
-
|
|
20615
|
-
|
|
20616
|
-
|
|
20617
|
-
|
|
20618
|
-
|
|
20619
|
-
|
|
20620
|
-
|
|
20621
|
-
|
|
20622
|
-
|
|
20623
|
-
|
|
20624
|
-
|
|
20625
|
-
'
|
|
20626
|
-
|
|
20627
|
-
|
|
20628
|
-
|
|
20629
|
-
|
|
20630
|
-
'
|
|
20631
|
-
|
|
20632
|
-
|
|
20633
|
-
|
|
20634
|
-
'
|
|
20635
|
-
|
|
20636
|
-
|
|
20637
|
-
|
|
20638
|
-
|
|
20639
|
-
'
|
|
20640
|
-
|
|
20641
|
-
'
|
|
20642
|
-
'
|
|
20643
|
-
|
|
20644
|
-
'
|
|
20645
|
-
'
|
|
20646
|
-
'format-
|
|
20647
|
-
'format-
|
|
20648
|
-
'format-
|
|
20649
|
-
'format-
|
|
20650
|
-
'format-
|
|
20651
|
-
'format-
|
|
20652
|
-
'format-
|
|
20653
|
-
'format-
|
|
20654
|
-
'format-
|
|
20655
|
-
'format-
|
|
20656
|
-
|
|
20657
|
-
'
|
|
20658
|
-
'
|
|
20659
|
-
'
|
|
20660
|
-
|
|
20661
|
-
|
|
20662
|
-
'
|
|
20663
|
-
'
|
|
20664
|
-
'
|
|
20665
|
-
|
|
20666
|
-
|
|
20667
|
-
|
|
20668
|
-
'
|
|
20669
|
-
|
|
20670
|
-
|
|
20671
|
-
|
|
20672
|
-
|
|
20673
|
-
|
|
20674
|
-
|
|
20675
|
-
|
|
20676
|
-
|
|
20677
|
-
|
|
20678
|
-
|
|
20679
|
-
|
|
20680
|
-
|
|
20681
|
-
|
|
20682
|
-
|
|
20683
|
-
|
|
20684
|
-
|
|
20685
|
-
|
|
20686
|
-
|
|
20687
|
-
|
|
20688
|
-
|
|
20689
|
-
'insert-
|
|
20690
|
-
|
|
20691
|
-
|
|
20692
|
-
|
|
20693
|
-
|
|
20694
|
-
|
|
20695
|
-
|
|
20696
|
-
|
|
20697
|
-
|
|
20698
|
-
|
|
20699
|
-
|
|
20700
|
-
|
|
20701
|
-
'
|
|
20702
|
-
|
|
20703
|
-
'
|
|
20704
|
-
'
|
|
20705
|
-
|
|
20706
|
-
'
|
|
20707
|
-
|
|
20708
|
-
'
|
|
20709
|
-
|
|
20710
|
-
'
|
|
20711
|
-
'
|
|
20712
|
-
|
|
20713
|
-
|
|
20714
|
-
|
|
20715
|
-
'
|
|
20716
|
-
'
|
|
20717
|
-
'
|
|
20718
|
-
|
|
20719
|
-
|
|
20720
|
-
'
|
|
20721
|
-
'
|
|
20722
|
-
'
|
|
20723
|
-
|
|
20724
|
-
'
|
|
20725
|
-
|
|
20726
|
-
'
|
|
20727
|
-
'
|
|
20728
|
-
'
|
|
20729
|
-
'
|
|
20730
|
-
|
|
20731
|
-
'
|
|
20732
|
-
'
|
|
20733
|
-
'menu-
|
|
20734
|
-
'menu-
|
|
20735
|
-
'menu-
|
|
20736
|
-
'menu-
|
|
20737
|
-
'menu-
|
|
20738
|
-
'menu-
|
|
20739
|
-
'menu-
|
|
20740
|
-
'menu-
|
|
20741
|
-
menu:
|
|
20742
|
-
'
|
|
20743
|
-
'
|
|
20744
|
-
|
|
20745
|
-
'
|
|
20746
|
-
|
|
20747
|
-
|
|
20748
|
-
|
|
20749
|
-
|
|
20750
|
-
'
|
|
20751
|
-
'
|
|
20752
|
-
|
|
20753
|
-
|
|
20754
|
-
|
|
20755
|
-
'more-
|
|
20756
|
-
'more-
|
|
20757
|
-
more:
|
|
20758
|
-
|
|
20759
|
-
'
|
|
20760
|
-
'
|
|
20761
|
-
'
|
|
20762
|
-
|
|
20763
|
-
|
|
20764
|
-
'
|
|
20765
|
-
'
|
|
20766
|
-
|
|
20767
|
-
|
|
20768
|
-
|
|
20769
|
-
|
|
20770
|
-
|
|
20771
|
-
|
|
20772
|
-
|
|
20773
|
-
|
|
20774
|
-
|
|
20775
|
-
|
|
20776
|
-
|
|
20777
|
-
|
|
20778
|
-
'path-
|
|
20779
|
-
'path-
|
|
20780
|
-
'path-
|
|
20781
|
-
'path-
|
|
20782
|
-
|
|
20783
|
-
'
|
|
20784
|
-
'
|
|
20785
|
-
'
|
|
20786
|
-
'
|
|
20787
|
-
|
|
20788
|
-
'pentagon-
|
|
20789
|
-
'pentagon-
|
|
20790
|
-
'pentagon-
|
|
20791
|
-
|
|
20792
|
-
|
|
20793
|
-
|
|
20794
|
-
|
|
20795
|
-
|
|
20796
|
-
|
|
20797
|
-
|
|
20798
|
-
|
|
20799
|
-
|
|
20800
|
-
|
|
20801
|
-
'
|
|
20802
|
-
'
|
|
20803
|
-
'
|
|
20804
|
-
|
|
20805
|
-
'play-
|
|
20806
|
-
'play-
|
|
20807
|
-
'play-
|
|
20808
|
-
'play-
|
|
20809
|
-
'play-
|
|
20810
|
-
'play-
|
|
20811
|
-
'play-
|
|
20812
|
-
'play-
|
|
20813
|
-
'play-
|
|
20814
|
-
'play-
|
|
20815
|
-
'play-
|
|
20816
|
-
'play-
|
|
20817
|
-
'play-
|
|
20818
|
-
'play-
|
|
20819
|
-
'play-
|
|
20820
|
-
'play-
|
|
20821
|
-
'play-track-
|
|
20822
|
-
|
|
20823
|
-
|
|
20824
|
-
|
|
20825
|
-
|
|
20826
|
-
|
|
20827
|
-
|
|
20828
|
-
|
|
20829
|
-
|
|
20830
|
-
|
|
20831
|
-
|
|
20832
|
-
|
|
20833
|
-
'
|
|
20834
|
-
'push-chevron-
|
|
20835
|
-
'push-chevron-
|
|
20836
|
-
'push-chevron-
|
|
20837
|
-
'push-chevron-
|
|
20838
|
-
'push-chevron-
|
|
20839
|
-
'push-chevron-
|
|
20840
|
-
'push-chevron-
|
|
20841
|
-
'push-
|
|
20842
|
-
'push-
|
|
20843
|
-
'push-
|
|
20844
|
-
'push-up':
|
|
20845
|
-
|
|
20846
|
-
'
|
|
20847
|
-
|
|
20848
|
-
'
|
|
20849
|
-
'
|
|
20850
|
-
|
|
20851
|
-
|
|
20852
|
-
|
|
20853
|
-
|
|
20854
|
-
|
|
20855
|
-
|
|
20856
|
-
|
|
20857
|
-
|
|
20858
|
-
|
|
20859
|
-
|
|
20860
|
-
|
|
20861
|
-
|
|
20862
|
-
|
|
20863
|
-
|
|
20864
|
-
|
|
20865
|
-
|
|
20866
|
-
|
|
20867
|
-
'
|
|
20868
|
-
'
|
|
20869
|
-
|
|
20870
|
-
|
|
20871
|
-
|
|
20872
|
-
'
|
|
20873
|
-
'
|
|
20874
|
-
'
|
|
20875
|
-
|
|
20876
|
-
'
|
|
20877
|
-
'
|
|
20878
|
-
|
|
20879
|
-
|
|
20880
|
-
|
|
20881
|
-
'
|
|
20882
|
-
'
|
|
20883
|
-
|
|
20884
|
-
|
|
20885
|
-
'shape-
|
|
20886
|
-
'shape-
|
|
20887
|
-
|
|
20888
|
-
|
|
20889
|
-
'
|
|
20890
|
-
'
|
|
20891
|
-
|
|
20892
|
-
|
|
20893
|
-
|
|
20894
|
-
|
|
20895
|
-
|
|
20896
|
-
|
|
20897
|
-
|
|
20898
|
-
'
|
|
20899
|
-
|
|
20900
|
-
|
|
20901
|
-
|
|
20902
|
-
|
|
20903
|
-
'smart-home-
|
|
20904
|
-
'
|
|
20905
|
-
'
|
|
20906
|
-
'
|
|
20907
|
-
|
|
20908
|
-
'
|
|
20909
|
-
'
|
|
20910
|
-
'
|
|
20911
|
-
'
|
|
20912
|
-
|
|
20913
|
-
'smile-
|
|
20914
|
-
smile:
|
|
20915
|
-
'
|
|
20916
|
-
'
|
|
20917
|
-
'
|
|
20918
|
-
'
|
|
20919
|
-
|
|
20920
|
-
'
|
|
20921
|
-
'
|
|
20922
|
-
'
|
|
20923
|
-
'
|
|
20924
|
-
|
|
20925
|
-
|
|
20926
|
-
|
|
20927
|
-
|
|
20928
|
-
|
|
20929
|
-
|
|
20930
|
-
|
|
20931
|
-
|
|
20932
|
-
|
|
20933
|
-
|
|
20934
|
-
|
|
20935
|
-
|
|
20936
|
-
|
|
20937
|
-
|
|
20938
|
-
|
|
20939
|
-
|
|
20940
|
-
|
|
20941
|
-
|
|
20942
|
-
|
|
20943
|
-
|
|
20944
|
-
|
|
20945
|
-
|
|
20946
|
-
|
|
20947
|
-
|
|
20948
|
-
|
|
20949
|
-
|
|
20950
|
-
|
|
20951
|
-
|
|
20952
|
-
|
|
20953
|
-
|
|
20954
|
-
|
|
20955
|
-
|
|
20956
|
-
'
|
|
20957
|
-
'
|
|
20958
|
-
'
|
|
20959
|
-
|
|
20960
|
-
|
|
20961
|
-
|
|
20962
|
-
|
|
20963
|
-
'
|
|
20964
|
-
|
|
20965
|
-
|
|
20966
|
-
|
|
20967
|
-
|
|
20968
|
-
|
|
20969
|
-
|
|
20970
|
-
|
|
20971
|
-
|
|
20972
|
-
|
|
20973
|
-
|
|
20974
|
-
|
|
20975
|
-
|
|
20976
|
-
|
|
20977
|
-
|
|
20978
|
-
|
|
20979
|
-
|
|
20980
|
-
|
|
20981
|
-
|
|
20982
|
-
|
|
20983
|
-
|
|
20984
|
-
'
|
|
20985
|
-
'
|
|
20986
|
-
'
|
|
20987
|
-
|
|
20988
|
-
'view-
|
|
20989
|
-
'view-
|
|
20990
|
-
|
|
20991
|
-
'
|
|
20992
|
-
'
|
|
20993
|
-
|
|
20994
|
-
|
|
20995
|
-
|
|
20996
|
-
|
|
20997
|
-
'
|
|
20998
|
-
|
|
20999
|
-
|
|
21000
|
-
|
|
20432
|
+
'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20433
|
+
card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20434
|
+
'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20435
|
+
'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20436
|
+
'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20437
|
+
'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20438
|
+
'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20439
|
+
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20440
|
+
warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20441
|
+
'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20442
|
+
settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20443
|
+
'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20444
|
+
json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20445
|
+
'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20446
|
+
'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20447
|
+
'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20448
|
+
'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20449
|
+
'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20450
|
+
'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20451
|
+
'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20452
|
+
'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20453
|
+
'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20454
|
+
'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20455
|
+
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20456
|
+
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20457
|
+
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20458
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20459
|
+
'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20460
|
+
'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20461
|
+
refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20462
|
+
'zig-zag': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20463
|
+
'zig-zag-thick': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20464
|
+
'add-r': _react_icons_all_files.IconType;
|
|
20465
|
+
add: _react_icons_all_files.IconType;
|
|
20466
|
+
airplane: _react_icons_all_files.IconType;
|
|
20467
|
+
alarm: _react_icons_all_files.IconType;
|
|
20468
|
+
album: _react_icons_all_files.IconType;
|
|
20469
|
+
'align-bottom': _react_icons_all_files.IconType;
|
|
20470
|
+
'align-center': _react_icons_all_files.IconType;
|
|
20471
|
+
'align-left': _react_icons_all_files.IconType;
|
|
20472
|
+
'align-middle': _react_icons_all_files.IconType;
|
|
20473
|
+
'align-right': _react_icons_all_files.IconType;
|
|
20474
|
+
'align-top': _react_icons_all_files.IconType;
|
|
20475
|
+
anchor: _react_icons_all_files.IconType;
|
|
20476
|
+
'apple-watch': _react_icons_all_files.IconType;
|
|
20477
|
+
'arrange-back': _react_icons_all_files.IconType;
|
|
20478
|
+
'arrange-front': _react_icons_all_files.IconType;
|
|
20479
|
+
'arrow-align-h': _react_icons_all_files.IconType;
|
|
20480
|
+
'arrow-align-v': _react_icons_all_files.IconType;
|
|
20481
|
+
'arrow-bottom-left-o': _react_icons_all_files.IconType;
|
|
20482
|
+
'arrow-bottom-left-r': _react_icons_all_files.IconType;
|
|
20483
|
+
'arrow-bottom-left': _react_icons_all_files.IconType;
|
|
20484
|
+
'arrow-bottom-right-o': _react_icons_all_files.IconType;
|
|
20485
|
+
'arrow-bottom-right-r': _react_icons_all_files.IconType;
|
|
20486
|
+
'arrow-bottom-right': _react_icons_all_files.IconType;
|
|
20487
|
+
'arrow-down-o': _react_icons_all_files.IconType;
|
|
20488
|
+
'arrow-down-r': _react_icons_all_files.IconType;
|
|
20489
|
+
'arrow-down': _react_icons_all_files.IconType;
|
|
20490
|
+
'arrow-left-o': _react_icons_all_files.IconType;
|
|
20491
|
+
'arrow-left-r': _react_icons_all_files.IconType;
|
|
20492
|
+
'arrow-left': _react_icons_all_files.IconType;
|
|
20493
|
+
'arrow-long-down-c': _react_icons_all_files.IconType;
|
|
20494
|
+
'arrow-long-down-e': _react_icons_all_files.IconType;
|
|
20495
|
+
'arrow-long-down-l': _react_icons_all_files.IconType;
|
|
20496
|
+
'arrow-long-down-r': _react_icons_all_files.IconType;
|
|
20497
|
+
'arrow-long-down': _react_icons_all_files.IconType;
|
|
20498
|
+
'arrow-long-left-c': _react_icons_all_files.IconType;
|
|
20499
|
+
'arrow-long-left-e': _react_icons_all_files.IconType;
|
|
20500
|
+
'arrow-long-left-l': _react_icons_all_files.IconType;
|
|
20501
|
+
'arrow-long-left-r': _react_icons_all_files.IconType;
|
|
20502
|
+
'arrow-long-left': _react_icons_all_files.IconType;
|
|
20503
|
+
'arrow-long-right-c': _react_icons_all_files.IconType;
|
|
20504
|
+
'arrow-long-right-e': _react_icons_all_files.IconType;
|
|
20505
|
+
'arrow-long-right-l': _react_icons_all_files.IconType;
|
|
20506
|
+
'arrow-long-right-r': _react_icons_all_files.IconType;
|
|
20507
|
+
'arrow-long-right': _react_icons_all_files.IconType;
|
|
20508
|
+
'arrow-long-up-c': _react_icons_all_files.IconType;
|
|
20509
|
+
'arrow-long-up-e': _react_icons_all_files.IconType;
|
|
20510
|
+
'arrow-long-up-l': _react_icons_all_files.IconType;
|
|
20511
|
+
'arrow-long-up-r': _react_icons_all_files.IconType;
|
|
20512
|
+
'arrow-long-up': _react_icons_all_files.IconType;
|
|
20513
|
+
'arrow-right-o': _react_icons_all_files.IconType;
|
|
20514
|
+
'arrow-right-r': _react_icons_all_files.IconType;
|
|
20515
|
+
'arrow-right': _react_icons_all_files.IconType;
|
|
20516
|
+
'arrow-top-left-o': _react_icons_all_files.IconType;
|
|
20517
|
+
'arrow-top-left-r': _react_icons_all_files.IconType;
|
|
20518
|
+
'arrow-top-left': _react_icons_all_files.IconType;
|
|
20519
|
+
'arrow-top-right-o': _react_icons_all_files.IconType;
|
|
20520
|
+
'arrow-top-right-r': _react_icons_all_files.IconType;
|
|
20521
|
+
'arrow-top-right': _react_icons_all_files.IconType;
|
|
20522
|
+
'arrow-up-o': _react_icons_all_files.IconType;
|
|
20523
|
+
'arrow-up-r': _react_icons_all_files.IconType;
|
|
20524
|
+
'arrow-up': _react_icons_all_files.IconType;
|
|
20525
|
+
'arrows-breake-h': _react_icons_all_files.IconType;
|
|
20526
|
+
'arrows-breake-v': _react_icons_all_files.IconType;
|
|
20527
|
+
'arrows-exchange-alt-v': _react_icons_all_files.IconType;
|
|
20528
|
+
'arrows-exchange-alt': _react_icons_all_files.IconType;
|
|
20529
|
+
'arrows-exchange-v': _react_icons_all_files.IconType;
|
|
20530
|
+
'arrows-exchange': _react_icons_all_files.IconType;
|
|
20531
|
+
'arrows-expand-down-left': _react_icons_all_files.IconType;
|
|
20532
|
+
'arrows-expand-down-right': _react_icons_all_files.IconType;
|
|
20533
|
+
'arrows-expand-left-alt': _react_icons_all_files.IconType;
|
|
20534
|
+
'arrows-expand-left': _react_icons_all_files.IconType;
|
|
20535
|
+
'arrows-expand-right-alt': _react_icons_all_files.IconType;
|
|
20536
|
+
'arrows-expand-right': _react_icons_all_files.IconType;
|
|
20537
|
+
'arrows-expand-up-left': _react_icons_all_files.IconType;
|
|
20538
|
+
'arrows-expand-up-right': _react_icons_all_files.IconType;
|
|
20539
|
+
'arrows-h-alt': _react_icons_all_files.IconType;
|
|
20540
|
+
'arrows-h': _react_icons_all_files.IconType;
|
|
20541
|
+
'arrows-merge-alt-h': _react_icons_all_files.IconType;
|
|
20542
|
+
'arrows-merge-alt-v': _react_icons_all_files.IconType;
|
|
20543
|
+
'arrows-scroll-h': _react_icons_all_files.IconType;
|
|
20544
|
+
'arrows-scroll-v': _react_icons_all_files.IconType;
|
|
20545
|
+
'arrows-shrink-h': _react_icons_all_files.IconType;
|
|
20546
|
+
'arrows-shrink-v': _react_icons_all_files.IconType;
|
|
20547
|
+
'arrows-v-alt': _react_icons_all_files.IconType;
|
|
20548
|
+
'arrows-v': _react_icons_all_files.IconType;
|
|
20549
|
+
assign: _react_icons_all_files.IconType;
|
|
20550
|
+
asterisk: _react_icons_all_files.IconType;
|
|
20551
|
+
attachment: _react_icons_all_files.IconType;
|
|
20552
|
+
attribution: _react_icons_all_files.IconType;
|
|
20553
|
+
awards: _react_icons_all_files.IconType;
|
|
20554
|
+
backspace: _react_icons_all_files.IconType;
|
|
20555
|
+
'band-aid': _react_icons_all_files.IconType;
|
|
20556
|
+
'battery-empty': _react_icons_all_files.IconType;
|
|
20557
|
+
'battery-full': _react_icons_all_files.IconType;
|
|
20558
|
+
battery: _react_icons_all_files.IconType;
|
|
20559
|
+
bee: _react_icons_all_files.IconType;
|
|
20560
|
+
bell: _react_icons_all_files.IconType;
|
|
20561
|
+
bitbucket: _react_icons_all_files.IconType;
|
|
20562
|
+
block: _react_icons_all_files.IconType;
|
|
20563
|
+
board: _react_icons_all_files.IconType;
|
|
20564
|
+
bolt: _react_icons_all_files.IconType;
|
|
20565
|
+
bookmark: _react_icons_all_files.IconType;
|
|
20566
|
+
'border-all': _react_icons_all_files.IconType;
|
|
20567
|
+
'border-bottom': _react_icons_all_files.IconType;
|
|
20568
|
+
'border-left': _react_icons_all_files.IconType;
|
|
20569
|
+
'border-right': _react_icons_all_files.IconType;
|
|
20570
|
+
'border-style-dashed': _react_icons_all_files.IconType;
|
|
20571
|
+
'border-style-dotted': _react_icons_all_files.IconType;
|
|
20572
|
+
'border-style-solid': _react_icons_all_files.IconType;
|
|
20573
|
+
bot: _react_icons_all_files.IconType;
|
|
20574
|
+
bowl: _react_icons_all_files.IconType;
|
|
20575
|
+
box: _react_icons_all_files.IconType;
|
|
20576
|
+
boy: _react_icons_all_files.IconType;
|
|
20577
|
+
briefcase: _react_icons_all_files.IconType;
|
|
20578
|
+
browse: _react_icons_all_files.IconType;
|
|
20579
|
+
browser: _react_icons_all_files.IconType;
|
|
20580
|
+
brush: _react_icons_all_files.IconType;
|
|
20581
|
+
bulb: _react_icons_all_files.IconType;
|
|
20582
|
+
'c-plus-plus': _react_icons_all_files.IconType;
|
|
20583
|
+
calculator: _react_icons_all_files.IconType;
|
|
20584
|
+
'calendar-dates': _react_icons_all_files.IconType;
|
|
20585
|
+
'calendar-due': _react_icons_all_files.IconType;
|
|
20586
|
+
'calendar-next': _react_icons_all_files.IconType;
|
|
20587
|
+
'calendar-today': _react_icons_all_files.IconType;
|
|
20588
|
+
'calendar-two': _react_icons_all_files.IconType;
|
|
20589
|
+
calendar: _react_icons_all_files.IconType;
|
|
20590
|
+
calibrate: _react_icons_all_files.IconType;
|
|
20591
|
+
camera: _react_icons_all_files.IconType;
|
|
20592
|
+
cap: _react_icons_all_files.IconType;
|
|
20593
|
+
captions: _react_icons_all_files.IconType;
|
|
20594
|
+
'card-clubs': _react_icons_all_files.IconType;
|
|
20595
|
+
'card-diamonds': _react_icons_all_files.IconType;
|
|
20596
|
+
'card-hearts': _react_icons_all_files.IconType;
|
|
20597
|
+
'card-spades': _react_icons_all_files.IconType;
|
|
20598
|
+
carousel: _react_icons_all_files.IconType;
|
|
20599
|
+
cast: _react_icons_all_files.IconType;
|
|
20600
|
+
chart: _react_icons_all_files.IconType;
|
|
20601
|
+
'check-o': _react_icons_all_files.IconType;
|
|
20602
|
+
'check-r': _react_icons_all_files.IconType;
|
|
20603
|
+
check: _react_icons_all_files.IconType;
|
|
20604
|
+
'chevron-double-down-o': _react_icons_all_files.IconType;
|
|
20605
|
+
'chevron-double-down-r': _react_icons_all_files.IconType;
|
|
20606
|
+
'chevron-double-down': _react_icons_all_files.IconType;
|
|
20607
|
+
'chevron-double-left-o': _react_icons_all_files.IconType;
|
|
20608
|
+
'chevron-double-left-r': _react_icons_all_files.IconType;
|
|
20609
|
+
'chevron-double-left': _react_icons_all_files.IconType;
|
|
20610
|
+
'chevron-double-right-o': _react_icons_all_files.IconType;
|
|
20611
|
+
'chevron-double-right-r': _react_icons_all_files.IconType;
|
|
20612
|
+
'chevron-double-right': _react_icons_all_files.IconType;
|
|
20613
|
+
'chevron-double-up-o': _react_icons_all_files.IconType;
|
|
20614
|
+
'chevron-double-up-r': _react_icons_all_files.IconType;
|
|
20615
|
+
'chevron-double-up': _react_icons_all_files.IconType;
|
|
20616
|
+
'chevron-down-o': _react_icons_all_files.IconType;
|
|
20617
|
+
'chevron-down-r': _react_icons_all_files.IconType;
|
|
20618
|
+
'chevron-down': _react_icons_all_files.IconType;
|
|
20619
|
+
'chevron-left-o': _react_icons_all_files.IconType;
|
|
20620
|
+
'chevron-left-r': _react_icons_all_files.IconType;
|
|
20621
|
+
'chevron-left': _react_icons_all_files.IconType;
|
|
20622
|
+
'chevron-right-o': _react_icons_all_files.IconType;
|
|
20623
|
+
'chevron-right-r': _react_icons_all_files.IconType;
|
|
20624
|
+
'chevron-right': _react_icons_all_files.IconType;
|
|
20625
|
+
'chevron-up-o': _react_icons_all_files.IconType;
|
|
20626
|
+
'chevron-up-r': _react_icons_all_files.IconType;
|
|
20627
|
+
'chevron-up': _react_icons_all_files.IconType;
|
|
20628
|
+
'clapper-board': _react_icons_all_files.IconType;
|
|
20629
|
+
clipboard: _react_icons_all_files.IconType;
|
|
20630
|
+
'close-o': _react_icons_all_files.IconType;
|
|
20631
|
+
'close-r': _react_icons_all_files.IconType;
|
|
20632
|
+
close: _react_icons_all_files.IconType;
|
|
20633
|
+
cloud: _react_icons_all_files.IconType;
|
|
20634
|
+
'code-slash': _react_icons_all_files.IconType;
|
|
20635
|
+
code: _react_icons_all_files.IconType;
|
|
20636
|
+
coffee: _react_icons_all_files.IconType;
|
|
20637
|
+
collage: _react_icons_all_files.IconType;
|
|
20638
|
+
'color-bucket': _react_icons_all_files.IconType;
|
|
20639
|
+
'color-picker': _react_icons_all_files.IconType;
|
|
20640
|
+
comment: _react_icons_all_files.IconType;
|
|
20641
|
+
community: _react_icons_all_files.IconType;
|
|
20642
|
+
components: _react_icons_all_files.IconType;
|
|
20643
|
+
'compress-left': _react_icons_all_files.IconType;
|
|
20644
|
+
'compress-right': _react_icons_all_files.IconType;
|
|
20645
|
+
'compress-v': _react_icons_all_files.IconType;
|
|
20646
|
+
compress: _react_icons_all_files.IconType;
|
|
20647
|
+
controller: _react_icons_all_files.IconType;
|
|
20648
|
+
copy: _react_icons_all_files.IconType;
|
|
20649
|
+
'copy-all': _react_icons_all_files.IconType;
|
|
20650
|
+
copyright: _react_icons_all_files.IconType;
|
|
20651
|
+
'corner-double-down-left': _react_icons_all_files.IconType;
|
|
20652
|
+
'corner-double-down-right': _react_icons_all_files.IconType;
|
|
20653
|
+
'corner-double-left-down': _react_icons_all_files.IconType;
|
|
20654
|
+
'corner-double-left-up': _react_icons_all_files.IconType;
|
|
20655
|
+
'corner-double-right-down': _react_icons_all_files.IconType;
|
|
20656
|
+
'corner-double-right-up': _react_icons_all_files.IconType;
|
|
20657
|
+
'corner-double-up-left': _react_icons_all_files.IconType;
|
|
20658
|
+
'corner-double-up-right': _react_icons_all_files.IconType;
|
|
20659
|
+
'corner-down-left': _react_icons_all_files.IconType;
|
|
20660
|
+
'corner-down-right': _react_icons_all_files.IconType;
|
|
20661
|
+
'corner-left-down': _react_icons_all_files.IconType;
|
|
20662
|
+
'corner-left-up': _react_icons_all_files.IconType;
|
|
20663
|
+
'corner-right-down': _react_icons_all_files.IconType;
|
|
20664
|
+
'corner-right-up': _react_icons_all_files.IconType;
|
|
20665
|
+
'corner-up-left': _react_icons_all_files.IconType;
|
|
20666
|
+
'corner-up-right': _react_icons_all_files.IconType;
|
|
20667
|
+
'credit-card': _react_icons_all_files.IconType;
|
|
20668
|
+
crop: _react_icons_all_files.IconType;
|
|
20669
|
+
cross: _react_icons_all_files.IconType;
|
|
20670
|
+
crown: _react_icons_all_files.IconType;
|
|
20671
|
+
danger: _react_icons_all_files.IconType;
|
|
20672
|
+
'dark-mode': _react_icons_all_files.IconType;
|
|
20673
|
+
data: _react_icons_all_files.IconType;
|
|
20674
|
+
database: _react_icons_all_files.IconType;
|
|
20675
|
+
debug: _react_icons_all_files.IconType;
|
|
20676
|
+
desktop: _react_icons_all_files.IconType;
|
|
20677
|
+
'details-less': _react_icons_all_files.IconType;
|
|
20678
|
+
'details-more': _react_icons_all_files.IconType;
|
|
20679
|
+
dialpad: _react_icons_all_files.IconType;
|
|
20680
|
+
'dice-1': _react_icons_all_files.IconType;
|
|
20681
|
+
'dice-2': _react_icons_all_files.IconType;
|
|
20682
|
+
'dice-3': _react_icons_all_files.IconType;
|
|
20683
|
+
'dice-4': _react_icons_all_files.IconType;
|
|
20684
|
+
'dice-5': _react_icons_all_files.IconType;
|
|
20685
|
+
'dice-6': _react_icons_all_files.IconType;
|
|
20686
|
+
disc: _react_icons_all_files.IconType;
|
|
20687
|
+
'display-flex': _react_icons_all_files.IconType;
|
|
20688
|
+
'display-fullwidth': _react_icons_all_files.IconType;
|
|
20689
|
+
'display-grid': _react_icons_all_files.IconType;
|
|
20690
|
+
'display-spacing': _react_icons_all_files.IconType;
|
|
20691
|
+
'distribute-horizontal': _react_icons_all_files.IconType;
|
|
20692
|
+
'distribute-vertical': _react_icons_all_files.IconType;
|
|
20693
|
+
'dock-bottom': _react_icons_all_files.IconType;
|
|
20694
|
+
'dock-left': _react_icons_all_files.IconType;
|
|
20695
|
+
'dock-right': _react_icons_all_files.IconType;
|
|
20696
|
+
'dock-window': _react_icons_all_files.IconType;
|
|
20697
|
+
dollar: _react_icons_all_files.IconType;
|
|
20698
|
+
drive: _react_icons_all_files.IconType;
|
|
20699
|
+
'drop-invert': _react_icons_all_files.IconType;
|
|
20700
|
+
'drop-opacity': _react_icons_all_files.IconType;
|
|
20701
|
+
drop: _react_icons_all_files.IconType;
|
|
20702
|
+
duplicate: _react_icons_all_files.IconType;
|
|
20703
|
+
'edit-black-point': _react_icons_all_files.IconType;
|
|
20704
|
+
'edit-contrast': _react_icons_all_files.IconType;
|
|
20705
|
+
'edit-exposure': _react_icons_all_files.IconType;
|
|
20706
|
+
'edit-fade': _react_icons_all_files.IconType;
|
|
20707
|
+
'edit-flip-h': _react_icons_all_files.IconType;
|
|
20708
|
+
'edit-flip-v': _react_icons_all_files.IconType;
|
|
20709
|
+
'edit-highlight': _react_icons_all_files.IconType;
|
|
20710
|
+
'edit-markup': _react_icons_all_files.IconType;
|
|
20711
|
+
'edit-mask': _react_icons_all_files.IconType;
|
|
20712
|
+
'edit-noise': _react_icons_all_files.IconType;
|
|
20713
|
+
'edit-shadows': _react_icons_all_files.IconType;
|
|
20714
|
+
'edit-straight': _react_icons_all_files.IconType;
|
|
20715
|
+
'edit-unmask': _react_icons_all_files.IconType;
|
|
20716
|
+
eject: _react_icons_all_files.IconType;
|
|
20717
|
+
enter: _react_icons_all_files.IconType;
|
|
20718
|
+
erase: _react_icons_all_files.IconType;
|
|
20719
|
+
ereader: _react_icons_all_files.IconType;
|
|
20720
|
+
ericsson: _react_icons_all_files.IconType;
|
|
20721
|
+
ethernet: _react_icons_all_files.IconType;
|
|
20722
|
+
euro: _react_icons_all_files.IconType;
|
|
20723
|
+
expand: _react_icons_all_files.IconType;
|
|
20724
|
+
export: _react_icons_all_files.IconType;
|
|
20725
|
+
'extension-add': _react_icons_all_files.IconType;
|
|
20726
|
+
'extension-alt': _react_icons_all_files.IconType;
|
|
20727
|
+
'extension-remove': _react_icons_all_files.IconType;
|
|
20728
|
+
extension: _react_icons_all_files.IconType;
|
|
20729
|
+
external: _react_icons_all_files.IconType;
|
|
20730
|
+
'eye-alt': _react_icons_all_files.IconType;
|
|
20731
|
+
eye: _react_icons_all_files.IconType;
|
|
20732
|
+
feed: _react_icons_all_files.IconType;
|
|
20733
|
+
'file-add': _react_icons_all_files.IconType;
|
|
20734
|
+
'file-document': _react_icons_all_files.IconType;
|
|
20735
|
+
'file-remove': _react_icons_all_files.IconType;
|
|
20736
|
+
file: _react_icons_all_files.IconType;
|
|
20737
|
+
film: _react_icons_all_files.IconType;
|
|
20738
|
+
filters: _react_icons_all_files.IconType;
|
|
20739
|
+
'flag-alt': _react_icons_all_files.IconType;
|
|
20740
|
+
flag: _react_icons_all_files.IconType;
|
|
20741
|
+
'folder-add': _react_icons_all_files.IconType;
|
|
20742
|
+
'folder-remove': _react_icons_all_files.IconType;
|
|
20743
|
+
folder: _react_icons_all_files.IconType;
|
|
20744
|
+
'font-height': _react_icons_all_files.IconType;
|
|
20745
|
+
'font-spacing': _react_icons_all_files.IconType;
|
|
20746
|
+
'format-center': _react_icons_all_files.IconType;
|
|
20747
|
+
'format-color': _react_icons_all_files.IconType;
|
|
20748
|
+
'format-heading': _react_icons_all_files.IconType;
|
|
20749
|
+
'format-indent-decrease': _react_icons_all_files.IconType;
|
|
20750
|
+
'format-indent-increase': _react_icons_all_files.IconType;
|
|
20751
|
+
'format-italic': _react_icons_all_files.IconType;
|
|
20752
|
+
'format-justify': _react_icons_all_files.IconType;
|
|
20753
|
+
'format-left': _react_icons_all_files.IconType;
|
|
20754
|
+
'format-line-height': _react_icons_all_files.IconType;
|
|
20755
|
+
'format-right': _react_icons_all_files.IconType;
|
|
20756
|
+
'format-separator': _react_icons_all_files.IconType;
|
|
20757
|
+
'format-slash': _react_icons_all_files.IconType;
|
|
20758
|
+
'format-text': _react_icons_all_files.IconType;
|
|
20759
|
+
'format-underline': _react_icons_all_files.IconType;
|
|
20760
|
+
'format-uppercase': _react_icons_all_files.IconType;
|
|
20761
|
+
games: _react_icons_all_files.IconType;
|
|
20762
|
+
'gender-female': _react_icons_all_files.IconType;
|
|
20763
|
+
'gender-male': _react_icons_all_files.IconType;
|
|
20764
|
+
'ghost-character': _react_icons_all_files.IconType;
|
|
20765
|
+
gift: _react_icons_all_files.IconType;
|
|
20766
|
+
girl: _react_icons_all_files.IconType;
|
|
20767
|
+
'git-branch': _react_icons_all_files.IconType;
|
|
20768
|
+
'git-commit': _react_icons_all_files.IconType;
|
|
20769
|
+
'git-fork': _react_icons_all_files.IconType;
|
|
20770
|
+
'git-pull': _react_icons_all_files.IconType;
|
|
20771
|
+
'glass-alt': _react_icons_all_files.IconType;
|
|
20772
|
+
glass: _react_icons_all_files.IconType;
|
|
20773
|
+
'globe-alt': _react_icons_all_files.IconType;
|
|
20774
|
+
globe: _react_icons_all_files.IconType;
|
|
20775
|
+
gym: _react_icons_all_files.IconType;
|
|
20776
|
+
hashtag: _react_icons_all_files.IconType;
|
|
20777
|
+
headset: _react_icons_all_files.IconType;
|
|
20778
|
+
heart: _react_icons_all_files.IconType;
|
|
20779
|
+
'home-alt': _react_icons_all_files.IconType;
|
|
20780
|
+
'home-screen': _react_icons_all_files.IconType;
|
|
20781
|
+
home: _react_icons_all_files.IconType;
|
|
20782
|
+
icecream: _react_icons_all_files.IconType;
|
|
20783
|
+
image: _react_icons_all_files.IconType;
|
|
20784
|
+
import: _react_icons_all_files.IconType;
|
|
20785
|
+
inbox: _react_icons_all_files.IconType;
|
|
20786
|
+
infinity: _react_icons_all_files.IconType;
|
|
20787
|
+
info: _react_icons_all_files.IconType;
|
|
20788
|
+
inpicture: _react_icons_all_files.IconType;
|
|
20789
|
+
'insert-after-o': _react_icons_all_files.IconType;
|
|
20790
|
+
'insert-after-r': _react_icons_all_files.IconType;
|
|
20791
|
+
'insert-after': _react_icons_all_files.IconType;
|
|
20792
|
+
'insert-before-o': _react_icons_all_files.IconType;
|
|
20793
|
+
'insert-before-r': _react_icons_all_files.IconType;
|
|
20794
|
+
'insert-before': _react_icons_all_files.IconType;
|
|
20795
|
+
insights: _react_icons_all_files.IconType;
|
|
20796
|
+
internal: _react_icons_all_files.IconType;
|
|
20797
|
+
key: _react_icons_all_files.IconType;
|
|
20798
|
+
keyboard: _react_icons_all_files.IconType;
|
|
20799
|
+
keyhole: _react_icons_all_files.IconType;
|
|
20800
|
+
laptop: _react_icons_all_files.IconType;
|
|
20801
|
+
'layout-grid-small': _react_icons_all_files.IconType;
|
|
20802
|
+
'layout-grid': _react_icons_all_files.IconType;
|
|
20803
|
+
'layout-list': _react_icons_all_files.IconType;
|
|
20804
|
+
'layout-pin': _react_icons_all_files.IconType;
|
|
20805
|
+
link: _react_icons_all_files.IconType;
|
|
20806
|
+
'list-tree': _react_icons_all_files.IconType;
|
|
20807
|
+
list: _react_icons_all_files.IconType;
|
|
20808
|
+
'live-photo': _react_icons_all_files.IconType;
|
|
20809
|
+
'loadbar-alt': _react_icons_all_files.IconType;
|
|
20810
|
+
'loadbar-doc': _react_icons_all_files.IconType;
|
|
20811
|
+
'loadbar-sound': _react_icons_all_files.IconType;
|
|
20812
|
+
loadbar: _react_icons_all_files.IconType;
|
|
20813
|
+
'lock-unlock': _react_icons_all_files.IconType;
|
|
20814
|
+
lock: _react_icons_all_files.IconType;
|
|
20815
|
+
'log-in': _react_icons_all_files.IconType;
|
|
20816
|
+
'log-off': _react_icons_all_files.IconType;
|
|
20817
|
+
'log-out': _react_icons_all_files.IconType;
|
|
20818
|
+
loupe: _react_icons_all_files.IconType;
|
|
20819
|
+
magnet: _react_icons_all_files.IconType;
|
|
20820
|
+
'mail-forward': _react_icons_all_files.IconType;
|
|
20821
|
+
'mail-open': _react_icons_all_files.IconType;
|
|
20822
|
+
'mail-reply': _react_icons_all_files.IconType;
|
|
20823
|
+
mail: _react_icons_all_files.IconType;
|
|
20824
|
+
'math-divide': _react_icons_all_files.IconType;
|
|
20825
|
+
'math-equal': _react_icons_all_files.IconType;
|
|
20826
|
+
'math-minus': _react_icons_all_files.IconType;
|
|
20827
|
+
'math-percent': _react_icons_all_files.IconType;
|
|
20828
|
+
'math-plus': _react_icons_all_files.IconType;
|
|
20829
|
+
'maximize-alt': _react_icons_all_files.IconType;
|
|
20830
|
+
maximize: _react_icons_all_files.IconType;
|
|
20831
|
+
'media-live': _react_icons_all_files.IconType;
|
|
20832
|
+
'media-podcast': _react_icons_all_files.IconType;
|
|
20833
|
+
'menu-boxed': _react_icons_all_files.IconType;
|
|
20834
|
+
'menu-cake': _react_icons_all_files.IconType;
|
|
20835
|
+
'menu-cheese': _react_icons_all_files.IconType;
|
|
20836
|
+
'menu-grid-o': _react_icons_all_files.IconType;
|
|
20837
|
+
'menu-grid-r': _react_icons_all_files.IconType;
|
|
20838
|
+
'menu-hotdog': _react_icons_all_files.IconType;
|
|
20839
|
+
'menu-left-alt': _react_icons_all_files.IconType;
|
|
20840
|
+
'menu-left': _react_icons_all_files.IconType;
|
|
20841
|
+
'menu-motion': _react_icons_all_files.IconType;
|
|
20842
|
+
'menu-oreos': _react_icons_all_files.IconType;
|
|
20843
|
+
'menu-right-alt': _react_icons_all_files.IconType;
|
|
20844
|
+
'menu-right': _react_icons_all_files.IconType;
|
|
20845
|
+
'menu-round': _react_icons_all_files.IconType;
|
|
20846
|
+
menu: _react_icons_all_files.IconType;
|
|
20847
|
+
'merge-horizontal': _react_icons_all_files.IconType;
|
|
20848
|
+
'merge-vertical': _react_icons_all_files.IconType;
|
|
20849
|
+
mic: _react_icons_all_files.IconType;
|
|
20850
|
+
'mini-player': _react_icons_all_files.IconType;
|
|
20851
|
+
'minimize-alt': _react_icons_all_files.IconType;
|
|
20852
|
+
minimize: _react_icons_all_files.IconType;
|
|
20853
|
+
modem: _react_icons_all_files.IconType;
|
|
20854
|
+
moon: _react_icons_all_files.IconType;
|
|
20855
|
+
'more-alt': _react_icons_all_files.IconType;
|
|
20856
|
+
'more-o': _react_icons_all_files.IconType;
|
|
20857
|
+
'more-r': _react_icons_all_files.IconType;
|
|
20858
|
+
'more-vertical-alt': _react_icons_all_files.IconType;
|
|
20859
|
+
'more-vertical-o': _react_icons_all_files.IconType;
|
|
20860
|
+
'more-vertical-r': _react_icons_all_files.IconType;
|
|
20861
|
+
'more-vertical': _react_icons_all_files.IconType;
|
|
20862
|
+
more: _react_icons_all_files.IconType;
|
|
20863
|
+
mouse: _react_icons_all_files.IconType;
|
|
20864
|
+
'move-down': _react_icons_all_files.IconType;
|
|
20865
|
+
'move-left': _react_icons_all_files.IconType;
|
|
20866
|
+
'move-right': _react_icons_all_files.IconType;
|
|
20867
|
+
'move-task': _react_icons_all_files.IconType;
|
|
20868
|
+
'move-up': _react_icons_all_files.IconType;
|
|
20869
|
+
'music-note': _react_icons_all_files.IconType;
|
|
20870
|
+
'music-speaker': _react_icons_all_files.IconType;
|
|
20871
|
+
music: _react_icons_all_files.IconType;
|
|
20872
|
+
nametag: _react_icons_all_files.IconType;
|
|
20873
|
+
notes: _react_icons_all_files.IconType;
|
|
20874
|
+
notifications: _react_icons_all_files.IconType;
|
|
20875
|
+
options: _react_icons_all_files.IconType;
|
|
20876
|
+
organisation: _react_icons_all_files.IconType;
|
|
20877
|
+
password: _react_icons_all_files.IconType;
|
|
20878
|
+
'path-back': _react_icons_all_files.IconType;
|
|
20879
|
+
'path-crop': _react_icons_all_files.IconType;
|
|
20880
|
+
'path-divide': _react_icons_all_files.IconType;
|
|
20881
|
+
'path-exclude': _react_icons_all_files.IconType;
|
|
20882
|
+
'path-front': _react_icons_all_files.IconType;
|
|
20883
|
+
'path-intersect': _react_icons_all_files.IconType;
|
|
20884
|
+
'path-outline': _react_icons_all_files.IconType;
|
|
20885
|
+
'path-trim': _react_icons_all_files.IconType;
|
|
20886
|
+
'path-unite': _react_icons_all_files.IconType;
|
|
20887
|
+
pen: _react_icons_all_files.IconType;
|
|
20888
|
+
'pentagon-bottom-left': _react_icons_all_files.IconType;
|
|
20889
|
+
'pentagon-bottom-right': _react_icons_all_files.IconType;
|
|
20890
|
+
'pentagon-down': _react_icons_all_files.IconType;
|
|
20891
|
+
'pentagon-left': _react_icons_all_files.IconType;
|
|
20892
|
+
'pentagon-right': _react_icons_all_files.IconType;
|
|
20893
|
+
'pentagon-top-left': _react_icons_all_files.IconType;
|
|
20894
|
+
'pentagon-top-right': _react_icons_all_files.IconType;
|
|
20895
|
+
'pentagon-up': _react_icons_all_files.IconType;
|
|
20896
|
+
performance: _react_icons_all_files.IconType;
|
|
20897
|
+
phone: _react_icons_all_files.IconType;
|
|
20898
|
+
photoscan: _react_icons_all_files.IconType;
|
|
20899
|
+
piano: _react_icons_all_files.IconType;
|
|
20900
|
+
pill: _react_icons_all_files.IconType;
|
|
20901
|
+
'pin-alt': _react_icons_all_files.IconType;
|
|
20902
|
+
'pin-bottom': _react_icons_all_files.IconType;
|
|
20903
|
+
'pin-top': _react_icons_all_files.IconType;
|
|
20904
|
+
pin: _react_icons_all_files.IconType;
|
|
20905
|
+
'play-backwards': _react_icons_all_files.IconType;
|
|
20906
|
+
'play-button-o': _react_icons_all_files.IconType;
|
|
20907
|
+
'play-button-r': _react_icons_all_files.IconType;
|
|
20908
|
+
'play-button': _react_icons_all_files.IconType;
|
|
20909
|
+
'play-forwards': _react_icons_all_files.IconType;
|
|
20910
|
+
'play-list-add': _react_icons_all_files.IconType;
|
|
20911
|
+
'play-list-check': _react_icons_all_files.IconType;
|
|
20912
|
+
'play-list-remove': _react_icons_all_files.IconType;
|
|
20913
|
+
'play-list-search': _react_icons_all_files.IconType;
|
|
20914
|
+
'play-list': _react_icons_all_files.IconType;
|
|
20915
|
+
'play-pause-o': _react_icons_all_files.IconType;
|
|
20916
|
+
'play-pause-r': _react_icons_all_files.IconType;
|
|
20917
|
+
'play-pause': _react_icons_all_files.IconType;
|
|
20918
|
+
'play-stop-o': _react_icons_all_files.IconType;
|
|
20919
|
+
'play-stop-r': _react_icons_all_files.IconType;
|
|
20920
|
+
'play-stop': _react_icons_all_files.IconType;
|
|
20921
|
+
'play-track-next-o': _react_icons_all_files.IconType;
|
|
20922
|
+
'play-track-next-r': _react_icons_all_files.IconType;
|
|
20923
|
+
'play-track-next': _react_icons_all_files.IconType;
|
|
20924
|
+
'play-track-prev-o': _react_icons_all_files.IconType;
|
|
20925
|
+
'play-track-prev-r': _react_icons_all_files.IconType;
|
|
20926
|
+
'play-track-prev': _react_icons_all_files.IconType;
|
|
20927
|
+
plug: _react_icons_all_files.IconType;
|
|
20928
|
+
polaroid: _react_icons_all_files.IconType;
|
|
20929
|
+
poll: _react_icons_all_files.IconType;
|
|
20930
|
+
presentation: _react_icons_all_files.IconType;
|
|
20931
|
+
printer: _react_icons_all_files.IconType;
|
|
20932
|
+
profile: _react_icons_all_files.IconType;
|
|
20933
|
+
'pull-clear': _react_icons_all_files.IconType;
|
|
20934
|
+
'push-chevron-down-o': _react_icons_all_files.IconType;
|
|
20935
|
+
'push-chevron-down-r': _react_icons_all_files.IconType;
|
|
20936
|
+
'push-chevron-down': _react_icons_all_files.IconType;
|
|
20937
|
+
'push-chevron-left-o': _react_icons_all_files.IconType;
|
|
20938
|
+
'push-chevron-left-r': _react_icons_all_files.IconType;
|
|
20939
|
+
'push-chevron-left': _react_icons_all_files.IconType;
|
|
20940
|
+
'push-chevron-right-o': _react_icons_all_files.IconType;
|
|
20941
|
+
'push-chevron-right-r': _react_icons_all_files.IconType;
|
|
20942
|
+
'push-chevron-right': _react_icons_all_files.IconType;
|
|
20943
|
+
'push-chevron-up-o': _react_icons_all_files.IconType;
|
|
20944
|
+
'push-chevron-up-r': _react_icons_all_files.IconType;
|
|
20945
|
+
'push-chevron-up': _react_icons_all_files.IconType;
|
|
20946
|
+
'push-down': _react_icons_all_files.IconType;
|
|
20947
|
+
'push-left': _react_icons_all_files.IconType;
|
|
20948
|
+
'push-right': _react_icons_all_files.IconType;
|
|
20949
|
+
'push-up': _react_icons_all_files.IconType;
|
|
20950
|
+
qr: _react_icons_all_files.IconType;
|
|
20951
|
+
'quote-o': _react_icons_all_files.IconType;
|
|
20952
|
+
quote: _react_icons_all_files.IconType;
|
|
20953
|
+
'radio-check': _react_icons_all_files.IconType;
|
|
20954
|
+
'radio-checked': _react_icons_all_files.IconType;
|
|
20955
|
+
ratio: _react_icons_all_files.IconType;
|
|
20956
|
+
read: _react_icons_all_files.IconType;
|
|
20957
|
+
readme: _react_icons_all_files.IconType;
|
|
20958
|
+
record: _react_icons_all_files.IconType;
|
|
20959
|
+
redo: _react_icons_all_files.IconType;
|
|
20960
|
+
remote: _react_icons_all_files.IconType;
|
|
20961
|
+
'remove-r': _react_icons_all_files.IconType;
|
|
20962
|
+
remove: _react_icons_all_files.IconType;
|
|
20963
|
+
rename: _react_icons_all_files.IconType;
|
|
20964
|
+
reorder: _react_icons_all_files.IconType;
|
|
20965
|
+
repeat: _react_icons_all_files.IconType;
|
|
20966
|
+
ring: _react_icons_all_files.IconType;
|
|
20967
|
+
'row-first': _react_icons_all_files.IconType;
|
|
20968
|
+
'row-last': _react_icons_all_files.IconType;
|
|
20969
|
+
ruler: _react_icons_all_files.IconType;
|
|
20970
|
+
'sand-clock': _react_icons_all_files.IconType;
|
|
20971
|
+
scan: _react_icons_all_files.IconType;
|
|
20972
|
+
'screen-mirror': _react_icons_all_files.IconType;
|
|
20973
|
+
'screen-shot': _react_icons_all_files.IconType;
|
|
20974
|
+
'screen-wide': _react_icons_all_files.IconType;
|
|
20975
|
+
screen: _react_icons_all_files.IconType;
|
|
20976
|
+
'scroll-h': _react_icons_all_files.IconType;
|
|
20977
|
+
'scroll-v': _react_icons_all_files.IconType;
|
|
20978
|
+
'search-found': _react_icons_all_files.IconType;
|
|
20979
|
+
'search-loading': _react_icons_all_files.IconType;
|
|
20980
|
+
search: _react_icons_all_files.IconType;
|
|
20981
|
+
'select-o': _react_icons_all_files.IconType;
|
|
20982
|
+
'select-r': _react_icons_all_files.IconType;
|
|
20983
|
+
select: _react_icons_all_files.IconType;
|
|
20984
|
+
server: _react_icons_all_files.IconType;
|
|
20985
|
+
'shape-circle': _react_icons_all_files.IconType;
|
|
20986
|
+
'shape-half-circle': _react_icons_all_files.IconType;
|
|
20987
|
+
'shape-hexagon': _react_icons_all_files.IconType;
|
|
20988
|
+
'shape-rhombus': _react_icons_all_files.IconType;
|
|
20989
|
+
'shape-square': _react_icons_all_files.IconType;
|
|
20990
|
+
'shape-triangle': _react_icons_all_files.IconType;
|
|
20991
|
+
'shape-zigzag': _react_icons_all_files.IconType;
|
|
20992
|
+
share: _react_icons_all_files.IconType;
|
|
20993
|
+
shield: _react_icons_all_files.IconType;
|
|
20994
|
+
'shopping-bag': _react_icons_all_files.IconType;
|
|
20995
|
+
'shopping-cart': _react_icons_all_files.IconType;
|
|
20996
|
+
shortcut: _react_icons_all_files.IconType;
|
|
20997
|
+
'sidebar-open': _react_icons_all_files.IconType;
|
|
20998
|
+
'sidebar-right': _react_icons_all_files.IconType;
|
|
20999
|
+
sidebar: _react_icons_all_files.IconType;
|
|
21000
|
+
signal: _react_icons_all_files.IconType;
|
|
21001
|
+
size: _react_icons_all_files.IconType;
|
|
21002
|
+
sleep: _react_icons_all_files.IconType;
|
|
21003
|
+
'smart-home-boiler': _react_icons_all_files.IconType;
|
|
21004
|
+
'smart-home-cooker': _react_icons_all_files.IconType;
|
|
21005
|
+
'smart-home-heat': _react_icons_all_files.IconType;
|
|
21006
|
+
'smart-home-light': _react_icons_all_files.IconType;
|
|
21007
|
+
'smart-home-refrigerator': _react_icons_all_files.IconType;
|
|
21008
|
+
'smart-home-wash-machine': _react_icons_all_files.IconType;
|
|
21009
|
+
'smartphone-chip': _react_icons_all_files.IconType;
|
|
21010
|
+
'smartphone-ram': _react_icons_all_files.IconType;
|
|
21011
|
+
'smartphone-shake': _react_icons_all_files.IconType;
|
|
21012
|
+
smartphone: _react_icons_all_files.IconType;
|
|
21013
|
+
'smile-mouth-open': _react_icons_all_files.IconType;
|
|
21014
|
+
'smile-neutral': _react_icons_all_files.IconType;
|
|
21015
|
+
'smile-no-mouth': _react_icons_all_files.IconType;
|
|
21016
|
+
'smile-none': _react_icons_all_files.IconType;
|
|
21017
|
+
'smile-sad': _react_icons_all_files.IconType;
|
|
21018
|
+
'smile-upside': _react_icons_all_files.IconType;
|
|
21019
|
+
smile: _react_icons_all_files.IconType;
|
|
21020
|
+
'software-download': _react_icons_all_files.IconType;
|
|
21021
|
+
'software-upload': _react_icons_all_files.IconType;
|
|
21022
|
+
'sort-az': _react_icons_all_files.IconType;
|
|
21023
|
+
'sort-za': _react_icons_all_files.IconType;
|
|
21024
|
+
'space-between-v': _react_icons_all_files.IconType;
|
|
21025
|
+
'space-between': _react_icons_all_files.IconType;
|
|
21026
|
+
'spinner-alt': _react_icons_all_files.IconType;
|
|
21027
|
+
'spinner-two-alt': _react_icons_all_files.IconType;
|
|
21028
|
+
'spinner-two': _react_icons_all_files.IconType;
|
|
21029
|
+
spinner: _react_icons_all_files.IconType;
|
|
21030
|
+
stack: _react_icons_all_files.IconType;
|
|
21031
|
+
stopwatch: _react_icons_all_files.IconType;
|
|
21032
|
+
stories: _react_icons_all_files.IconType;
|
|
21033
|
+
style: _react_icons_all_files.IconType;
|
|
21034
|
+
sun: _react_icons_all_files.IconType;
|
|
21035
|
+
support: _react_icons_all_files.IconType;
|
|
21036
|
+
'swap-vertical': _react_icons_all_files.IconType;
|
|
21037
|
+
swap: _react_icons_all_files.IconType;
|
|
21038
|
+
sweden: _react_icons_all_files.IconType;
|
|
21039
|
+
swiss: _react_icons_all_files.IconType;
|
|
21040
|
+
sync: _react_icons_all_files.IconType;
|
|
21041
|
+
tab: _react_icons_all_files.IconType;
|
|
21042
|
+
tag: _react_icons_all_files.IconType;
|
|
21043
|
+
'tap-double': _react_icons_all_files.IconType;
|
|
21044
|
+
'tap-single': _react_icons_all_files.IconType;
|
|
21045
|
+
template: _react_icons_all_files.IconType;
|
|
21046
|
+
tennis: _react_icons_all_files.IconType;
|
|
21047
|
+
terminal: _react_icons_all_files.IconType;
|
|
21048
|
+
terrain: _react_icons_all_files.IconType;
|
|
21049
|
+
thermometer: _react_icons_all_files.IconType;
|
|
21050
|
+
thermostat: _react_icons_all_files.IconType;
|
|
21051
|
+
tikcode: _react_icons_all_files.IconType;
|
|
21052
|
+
time: _react_icons_all_files.IconType;
|
|
21053
|
+
timelapse: _react_icons_all_files.IconType;
|
|
21054
|
+
timer: _react_icons_all_files.IconType;
|
|
21055
|
+
today: _react_icons_all_files.IconType;
|
|
21056
|
+
'toggle-off': _react_icons_all_files.IconType;
|
|
21057
|
+
'toggle-on': _react_icons_all_files.IconType;
|
|
21058
|
+
'toggle-square-off': _react_icons_all_files.IconType;
|
|
21059
|
+
'toggle-square': _react_icons_all_files.IconType;
|
|
21060
|
+
'toolbar-bottom': _react_icons_all_files.IconType;
|
|
21061
|
+
'toolbar-left': _react_icons_all_files.IconType;
|
|
21062
|
+
'toolbar-right': _react_icons_all_files.IconType;
|
|
21063
|
+
'toolbar-top': _react_icons_all_files.IconType;
|
|
21064
|
+
toolbox: _react_icons_all_files.IconType;
|
|
21065
|
+
touchpad: _react_icons_all_files.IconType;
|
|
21066
|
+
track: _react_icons_all_files.IconType;
|
|
21067
|
+
transcript: _react_icons_all_files.IconType;
|
|
21068
|
+
'trash-empty': _react_icons_all_files.IconType;
|
|
21069
|
+
trash: _react_icons_all_files.IconType;
|
|
21070
|
+
tree: _react_icons_all_files.IconType;
|
|
21071
|
+
trees: _react_icons_all_files.IconType;
|
|
21072
|
+
'trending-down': _react_icons_all_files.IconType;
|
|
21073
|
+
trending: _react_icons_all_files.IconType;
|
|
21074
|
+
trophy: _react_icons_all_files.IconType;
|
|
21075
|
+
tv: _react_icons_all_files.IconType;
|
|
21076
|
+
'ui-kit': _react_icons_all_files.IconType;
|
|
21077
|
+
umbrella: _react_icons_all_files.IconType;
|
|
21078
|
+
unavailable: _react_icons_all_files.IconType;
|
|
21079
|
+
unblock: _react_icons_all_files.IconType;
|
|
21080
|
+
undo: _react_icons_all_files.IconType;
|
|
21081
|
+
unsplash: _react_icons_all_files.IconType;
|
|
21082
|
+
'usb-c': _react_icons_all_files.IconType;
|
|
21083
|
+
usb: _react_icons_all_files.IconType;
|
|
21084
|
+
'user-add': _react_icons_all_files.IconType;
|
|
21085
|
+
'user-list': _react_icons_all_files.IconType;
|
|
21086
|
+
'user-remove': _react_icons_all_files.IconType;
|
|
21087
|
+
user: _react_icons_all_files.IconType;
|
|
21088
|
+
'view-cols': _react_icons_all_files.IconType;
|
|
21089
|
+
'view-comfortable': _react_icons_all_files.IconType;
|
|
21090
|
+
'view-day': _react_icons_all_files.IconType;
|
|
21091
|
+
'view-grid': _react_icons_all_files.IconType;
|
|
21092
|
+
'view-list': _react_icons_all_files.IconType;
|
|
21093
|
+
'view-month': _react_icons_all_files.IconType;
|
|
21094
|
+
'view-split': _react_icons_all_files.IconType;
|
|
21095
|
+
vinyl: _react_icons_all_files.IconType;
|
|
21096
|
+
'voicemail-o': _react_icons_all_files.IconType;
|
|
21097
|
+
'voicemail-r': _react_icons_all_files.IconType;
|
|
21098
|
+
voicemail: _react_icons_all_files.IconType;
|
|
21099
|
+
volume: _react_icons_all_files.IconType;
|
|
21100
|
+
webcam: _react_icons_all_files.IconType;
|
|
21101
|
+
website: _react_icons_all_files.IconType;
|
|
21102
|
+
'work-alt': _react_icons_all_files.IconType;
|
|
21103
|
+
yinyang: _react_icons_all_files.IconType;
|
|
21104
|
+
'zoom-in': _react_icons_all_files.IconType;
|
|
21105
|
+
'zoom-out': _react_icons_all_files.IconType;
|
|
21001
21106
|
};
|
|
21002
21107
|
|
|
21003
21108
|
/** A list of available icon names that can be used with the Uniform brand */
|
|
@@ -21006,7 +21111,7 @@ type IconName = keyof typeof allSupportedIcons;
|
|
|
21006
21111
|
/** sets fill color of the svg icon
|
|
21007
21112
|
* @default 'default'
|
|
21008
21113
|
*/
|
|
21009
|
-
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
|
|
21114
|
+
type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light' | 'accent-alt-dark';
|
|
21010
21115
|
/** sets the type of icon to use from the available list */
|
|
21011
21116
|
type IconType = IconName | IconType$1;
|
|
21012
21117
|
interface IconProps extends IconBaseProps {
|
|
@@ -21021,52 +21126,59 @@ interface IconProps extends IconBaseProps {
|
|
|
21021
21126
|
* Component that renders icons
|
|
21022
21127
|
* @example <Icon icon="add-r" iconColor="currentColor" />
|
|
21023
21128
|
*/
|
|
21024
|
-
declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) =>
|
|
21129
|
+
declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_jsx_runtime.JSX.Element | null>;
|
|
21025
21130
|
|
|
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:
|
|
21037
|
-
declare const settings: (props: IconProps) =>
|
|
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;
|
|
21131
|
+
declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21132
|
+
declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21133
|
+
declare const imageTextIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21134
|
+
declare const borderTopIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21135
|
+
declare const fullWidthScreenIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21136
|
+
declare const textInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21137
|
+
declare const numberInput: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21138
|
+
declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21139
|
+
declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21140
|
+
declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21141
|
+
declare const settingsIcon: IconType$2;
|
|
21142
|
+
declare const settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21143
|
+
declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21144
|
+
declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21145
|
+
declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21146
|
+
declare const yesNoIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21147
|
+
declare const zigZag: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21148
|
+
declare const zigZagThick: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21042
21149
|
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;
|
|
21053
|
-
settings: (props: IconProps) =>
|
|
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;
|
|
21150
|
+
'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21151
|
+
card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21152
|
+
'image-text': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21153
|
+
'border-top': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21154
|
+
'full-width-screen': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21155
|
+
'text-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21156
|
+
'number-input': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21157
|
+
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21158
|
+
warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21159
|
+
'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21160
|
+
settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21161
|
+
'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21162
|
+
json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21163
|
+
'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21164
|
+
'format-code': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21165
|
+
'format-strike': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21166
|
+
'format-superscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21167
|
+
'format-subscript': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21168
|
+
'layout-list-numbered': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21169
|
+
'clear-formatting': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21170
|
+
'yes-no': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21171
|
+
'diamond-outline': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21172
|
+
'diamond-fill': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21173
|
+
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21174
|
+
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21175
|
+
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21176
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21177
|
+
'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21178
|
+
'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21179
|
+
refresh: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21180
|
+
'zig-zag': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21181
|
+
'zig-zag-thick': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21070
21182
|
};
|
|
21071
21183
|
|
|
21072
21184
|
type IconsMap = Record<string, IconType$1>;
|
|
@@ -21080,7 +21192,18 @@ declare function useIconContext(): {
|
|
|
21080
21192
|
*/
|
|
21081
21193
|
declare function IconsProvider({ children }: {
|
|
21082
21194
|
children: ReactNode;
|
|
21083
|
-
}):
|
|
21195
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
21196
|
+
|
|
21197
|
+
declare const uniformComponentIcon: IconType$1;
|
|
21198
|
+
declare const uniformConditionalValuesIcon: IconType$1;
|
|
21199
|
+
declare const uniformAiIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21200
|
+
declare const uniformLocaleIcon: IconType$1;
|
|
21201
|
+
declare const uniformLocaleDisabledIcon: IconType$1;
|
|
21202
|
+
declare const uniformComponentPatternIcon: IconType$1;
|
|
21203
|
+
declare const uniformCompositionPatternIcon: IconType$1;
|
|
21204
|
+
declare const uniformContentTypeIcon: IconType$1;
|
|
21205
|
+
declare const uniformEntryIcon: IconType$1;
|
|
21206
|
+
declare const uniformEntryPatternIcon: IconType$1;
|
|
21084
21207
|
|
|
21085
21208
|
type ButtonThemeProps = 'primary' | 'secondary' | 'unimportant' | 'ghost' | 'secondaryOutline';
|
|
21086
21209
|
type ButtonSizeProps = 'sm' | 'base' | 'lg';
|
|
@@ -21104,40 +21227,31 @@ interface ActionButtonsProps {
|
|
|
21104
21227
|
/** sets additional Menu component styles */
|
|
21105
21228
|
menuContainerCssClasses?: SerializedStyles;
|
|
21106
21229
|
/** sets whether to use a React portal rendering or not.
|
|
21107
|
-
* @
|
|
21230
|
+
* @deprecated This property does not work correctly. Use `portal` instead.
|
|
21108
21231
|
*/
|
|
21109
21232
|
withoutPortal?: boolean;
|
|
21233
|
+
/** sets whether to use a React portal rendering or not. */
|
|
21234
|
+
portal?: boolean;
|
|
21110
21235
|
/** (optional) sets the maximum height of the menu
|
|
21111
21236
|
* setting a max menu height value will make the menu scrollable if the content exceeds the height
|
|
21112
21237
|
* this is not compatible with nested menus that expand to the left or right of the menu
|
|
21113
21238
|
*/
|
|
21114
21239
|
maxMenuHeight?: string;
|
|
21240
|
+
/**
|
|
21241
|
+
* Sets a tooltip on the button when hovered
|
|
21242
|
+
* Note that the tooltip will be shown whether disabled or not.
|
|
21243
|
+
*/
|
|
21244
|
+
tooltip?: React$1.ReactNode;
|
|
21245
|
+
/**
|
|
21246
|
+
* Sets a shortcut for the button.
|
|
21247
|
+
* The shortcut's handler function will be automatically set to the onClick of the button,
|
|
21248
|
+
* and a tooltip will be added to the button that shows the keyboard shortcut.
|
|
21249
|
+
*/
|
|
21250
|
+
shortcut?: ShortcutReference;
|
|
21115
21251
|
}
|
|
21116
21252
|
/** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
|
|
21117
21253
|
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;
|
|
21254
|
+
declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21141
21255
|
|
|
21142
21256
|
/**
|
|
21143
21257
|
* A string in the ISO 8601 date format: YYYY-MM-DD
|
|
@@ -21156,7 +21270,7 @@ type CalendarProps = Pick<CalendarProps$1<DateValue>, 'autoFocus' | 'isDisabled'
|
|
|
21156
21270
|
*
|
|
21157
21271
|
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
21158
21272
|
*/
|
|
21159
|
-
declare const Calendar: ({ value, timeZone, minValue, maxValue, onChange, autoFocus, isDisabled, isInvalid, isReadOnly, ...props }: CalendarProps) =>
|
|
21273
|
+
declare const Calendar: ({ value, timeZone, minValue, maxValue, onChange, autoFocus, isDisabled, isInvalid, isReadOnly, ...props }: CalendarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21160
21274
|
|
|
21161
21275
|
/** Callout button types available to use with our brand */
|
|
21162
21276
|
type CalloutType = 'caution' | 'danger' | 'info' | 'note' | 'success' | 'tip' | 'error';
|
|
@@ -21182,7 +21296,7 @@ interface CalloutProps {
|
|
|
21182
21296
|
* Uniform Callout Component
|
|
21183
21297
|
* @example <Callout title="my title" type="caution"><p>callout body copy</p></Callout>
|
|
21184
21298
|
*/
|
|
21185
|
-
declare const Callout: ({ type, compact, title, children, className, testId, }: CalloutProps) =>
|
|
21299
|
+
declare const Callout: ({ type, compact, title, children, className, testId, }: CalloutProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21186
21300
|
|
|
21187
21301
|
type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
21188
21302
|
/** (optional) sets the title value of the card */
|
|
@@ -21207,11 +21321,11 @@ type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21207
21321
|
*/
|
|
21208
21322
|
tag?: React$1.ElementType;
|
|
21209
21323
|
};
|
|
21210
|
-
declare const Card: ({ title, menuItems, children, titleWithMarginBottom, disabled, tag: Tag, menuButtonTestId, ...props }: CardProps) =>
|
|
21324
|
+
declare const Card: ({ title, menuItems, children, titleWithMarginBottom, disabled, tag: Tag, menuButtonTestId, ...props }: CardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21211
21325
|
type CardTitleProps = {
|
|
21212
21326
|
children?: React$1.ReactNode;
|
|
21213
21327
|
} & Pick<CardProps, 'title' | 'titleWithMarginBottom'>;
|
|
21214
|
-
declare const CardTitle: ({ title, titleWithMarginBottom, children }: CardTitleProps) =>
|
|
21328
|
+
declare const CardTitle: ({ title, titleWithMarginBottom, children }: CardTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21215
21329
|
|
|
21216
21330
|
type CardContainerBgColorProps = 'gray' | 'white';
|
|
21217
21331
|
type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -21237,14 +21351,18 @@ type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21237
21351
|
/** Uniform Card Container
|
|
21238
21352
|
* @example <CardContainer><Card title="card title" /></CardContainer>
|
|
21239
21353
|
*/
|
|
21240
|
-
declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...props }: CardContainerProps) =>
|
|
21354
|
+
declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...props }: CardContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21241
21355
|
|
|
21242
|
-
declare const LoadingCardSkeleton: () =>
|
|
21356
|
+
declare const LoadingCardSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
21243
21357
|
|
|
21244
21358
|
type ChipSizeProp = 'xs' | 'sm' | 'md';
|
|
21245
21359
|
type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
|
|
21246
21360
|
type ChipProps = {
|
|
21247
21361
|
icon?: IconType;
|
|
21362
|
+
/** sets the color of the icon
|
|
21363
|
+
* @default 'currentColor'
|
|
21364
|
+
* */
|
|
21365
|
+
iconColor?: IconColor;
|
|
21248
21366
|
text: ReactNode;
|
|
21249
21367
|
/** sets the size of the chip
|
|
21250
21368
|
* @default 'sm'
|
|
@@ -21252,6 +21370,15 @@ type ChipProps = {
|
|
|
21252
21370
|
theme?: ChipTheme;
|
|
21253
21371
|
chipAction?: React.ReactNode;
|
|
21254
21372
|
size?: ChipSizeProp;
|
|
21373
|
+
/** sets whether to use outlined chip variant
|
|
21374
|
+
* @default 'solid'
|
|
21375
|
+
*/
|
|
21376
|
+
variant?: 'solid' | 'outlined';
|
|
21377
|
+
/**
|
|
21378
|
+
* The HTML element to render
|
|
21379
|
+
* @default 'span'
|
|
21380
|
+
*/
|
|
21381
|
+
as?: 'span' | 'button';
|
|
21255
21382
|
} & React.HTMLAttributes<HTMLSpanElement>;
|
|
21256
21383
|
/**
|
|
21257
21384
|
* @description Chips are used in a variety of ways
|
|
@@ -21260,7 +21387,7 @@ type ChipProps = {
|
|
|
21260
21387
|
* To represent a different object, as a reference
|
|
21261
21388
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21262
21389
|
*/
|
|
21263
|
-
declare const Chip: ({ icon, text, size, theme, chipAction, ...props }: ChipProps) =>
|
|
21390
|
+
declare const Chip: ({ icon, iconColor, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21264
21391
|
type DismissibleChipActionProps = {
|
|
21265
21392
|
onDismiss: () => void;
|
|
21266
21393
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21268,7 +21395,7 @@ type DismissibleChipActionProps = {
|
|
|
21268
21395
|
* @description Dismissible chip action should be used with the Chip component
|
|
21269
21396
|
* @example <DismissibleChipAction onDismiss={() => {...}}/>
|
|
21270
21397
|
*/
|
|
21271
|
-
declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) =>
|
|
21398
|
+
declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21272
21399
|
|
|
21273
21400
|
type MultilineChipProps = {
|
|
21274
21401
|
children: ReactNode;
|
|
@@ -21279,18 +21406,24 @@ type MultilineChipProps = {
|
|
|
21279
21406
|
* Unlike a regular chip, this one can go onto multiple lines with word wrap, and uses inline behaviours.
|
|
21280
21407
|
* @example <MultilineChip text="productId" />
|
|
21281
21408
|
*/
|
|
21282
|
-
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) =>
|
|
21409
|
+
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21283
21410
|
|
|
21411
|
+
type CounterBgColors = 'var(--white)' | 'var(--gray-50)' | 'var(--accent-light)' | 'var(--accent-dark)' | 'transparent';
|
|
21412
|
+
type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'red';
|
|
21284
21413
|
type CounterProps = {
|
|
21285
21414
|
/** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
|
|
21286
21415
|
count: number | undefined;
|
|
21287
21416
|
/** sets the background color
|
|
21288
21417
|
* @default 'transparent'
|
|
21289
21418
|
*/
|
|
21290
|
-
bgColor?:
|
|
21291
|
-
|
|
21419
|
+
bgColor?: CounterBgColors;
|
|
21420
|
+
/** sets the color of the icon if one is provided */
|
|
21421
|
+
iconColor?: CounterIconColors;
|
|
21422
|
+
/** Optional icon for the counter */
|
|
21423
|
+
icon?: IconType;
|
|
21424
|
+
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21292
21425
|
/** @example <Counter count={1} /> */
|
|
21293
|
-
declare const Counter: ({ count, bgColor, ...props }: CounterProps) =>
|
|
21426
|
+
declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21294
21427
|
|
|
21295
21428
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21296
21429
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21308,7 +21441,73 @@ type DashedBoxProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21308
21441
|
* Uniform Dashed Box Component
|
|
21309
21442
|
* @example <DashedBox bgColor="white" boxHeight="md" textAlign="center"><h1>hello world</h1></DashedBox>
|
|
21310
21443
|
*/
|
|
21311
|
-
declare const DashedBox: ({ bgColor, textAlign, boxHeight, children, ...props }: DashedBoxProps) =>
|
|
21444
|
+
declare const DashedBox: ({ bgColor, textAlign, boxHeight, children, ...props }: DashedBoxProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21445
|
+
|
|
21446
|
+
/**
|
|
21447
|
+
* A string in the ISO 8601 time format: hh:mm
|
|
21448
|
+
*/
|
|
21449
|
+
type IsoTimeString = string;
|
|
21450
|
+
type InputTimeProps = Pick<TimeFieldProps<TimeValue>, 'id' | 'name' | 'hourCycle' | 'autoFocus'> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, 'disabled'> & {
|
|
21451
|
+
/** (optional) sets the label value */
|
|
21452
|
+
label?: string;
|
|
21453
|
+
/** (optional) sets caption text value */
|
|
21454
|
+
caption?: string | JSX.Element;
|
|
21455
|
+
/** The current value in ISO 8601 time format */
|
|
21456
|
+
value: IsoTimeString | null | undefined;
|
|
21457
|
+
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
21458
|
+
minValue?: IsoTimeString;
|
|
21459
|
+
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
21460
|
+
maxValue?: IsoTimeString;
|
|
21461
|
+
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21462
|
+
showLabel?: boolean;
|
|
21463
|
+
/** (optional) sets and shows the the error message value */
|
|
21464
|
+
errorMessage?: string;
|
|
21465
|
+
/** (optional) sets and shows the warning message value */
|
|
21466
|
+
warningMessage?: string;
|
|
21467
|
+
/** (optional) sets the test id for input field container for test automation*/
|
|
21468
|
+
containerTestId?: string;
|
|
21469
|
+
/** (optional) sets label test id */
|
|
21470
|
+
labelTestId?: string;
|
|
21471
|
+
/** (option) sets validation message test id for test automation */
|
|
21472
|
+
errorTestId?: string;
|
|
21473
|
+
/** (option) sets caption message test id for test automation */
|
|
21474
|
+
captionTestId?: string;
|
|
21475
|
+
belowInputSlot?: ReactNode;
|
|
21476
|
+
onChange?: (value: IsoTimeString) => void;
|
|
21477
|
+
};
|
|
21478
|
+
/**
|
|
21479
|
+
* Time input with segmented control
|
|
21480
|
+
*
|
|
21481
|
+
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
21482
|
+
*/
|
|
21483
|
+
declare const InputTime: React$1.ForwardRefExoticComponent<Pick<TimeFieldProps<TimeValue>, "autoFocus" | "id" | "name" | "hourCycle"> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, "disabled"> & {
|
|
21484
|
+
/** (optional) sets the label value */
|
|
21485
|
+
label?: string;
|
|
21486
|
+
/** (optional) sets caption text value */
|
|
21487
|
+
caption?: string | JSX.Element;
|
|
21488
|
+
/** The current value in ISO 8601 time format */
|
|
21489
|
+
value: IsoTimeString | null | undefined;
|
|
21490
|
+
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
21491
|
+
minValue?: IsoTimeString;
|
|
21492
|
+
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
21493
|
+
maxValue?: IsoTimeString;
|
|
21494
|
+
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21495
|
+
showLabel?: boolean;
|
|
21496
|
+
/** (optional) sets and shows the the error message value */
|
|
21497
|
+
errorMessage?: string;
|
|
21498
|
+
/** (optional) sets and shows the warning message value */
|
|
21499
|
+
warningMessage?: string;
|
|
21500
|
+
/** (optional) sets the test id for input field container for test automation*/
|
|
21501
|
+
containerTestId?: string;
|
|
21502
|
+
/** (optional) sets label test id */
|
|
21503
|
+
labelTestId?: string;
|
|
21504
|
+
/** (option) sets validation message test id for test automation */
|
|
21505
|
+
errorTestId?: string;
|
|
21506
|
+
/** (option) sets caption message test id for test automation */
|
|
21507
|
+
captionTestId?: string;
|
|
21508
|
+
belowInputSlot?: ReactNode;
|
|
21509
|
+
onChange?: (value: IsoTimeString) => void;
|
|
21510
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
21312
21511
|
|
|
21313
21512
|
/**
|
|
21314
21513
|
* A string in the ISO 8601 datetime format
|
|
@@ -21327,6 +21526,8 @@ type DateTimePickerProps = {
|
|
|
21327
21526
|
id: string;
|
|
21328
21527
|
/** (optional) sets the label value */
|
|
21329
21528
|
label?: ReactNode;
|
|
21529
|
+
/** (optional) icon for the trigger */
|
|
21530
|
+
triggerIcon?: IconType$2;
|
|
21330
21531
|
/** The current controlled value of the picker */
|
|
21331
21532
|
value: DateTimePickerValue | null | undefined;
|
|
21332
21533
|
/** (optional) The minimum visible date. The calendar will not show previous months */
|
|
@@ -21353,6 +21554,10 @@ type DateTimePickerProps = {
|
|
|
21353
21554
|
disabled?: boolean;
|
|
21354
21555
|
/** (optional) sets the base test id for each of the elements with a testid */
|
|
21355
21556
|
testId?: string;
|
|
21557
|
+
/** (optional) sets the popover placement */
|
|
21558
|
+
placement?: PopoverState['placement'];
|
|
21559
|
+
/** (optional) sets the popover offset */
|
|
21560
|
+
offset?: [string | number, string | number] | undefined;
|
|
21356
21561
|
};
|
|
21357
21562
|
/**
|
|
21358
21563
|
* Use this context for slots within the date time picker
|
|
@@ -21360,8 +21565,8 @@ type DateTimePickerProps = {
|
|
|
21360
21565
|
*/
|
|
21361
21566
|
declare function useDateTimePickerContext(): {
|
|
21362
21567
|
clearValue(): void;
|
|
21363
|
-
changeDate(isoDate:
|
|
21364
|
-
changeTime(isoTime:
|
|
21568
|
+
changeDate(isoDate: IsoDateString): void;
|
|
21569
|
+
changeTime(isoTime: IsoTimeString): void;
|
|
21365
21570
|
};
|
|
21366
21571
|
/**
|
|
21367
21572
|
* Date Time Picker
|
|
@@ -21375,7 +21580,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21375
21580
|
* Subcomponents can manipulate the value directly by using
|
|
21376
21581
|
* the `useDateTimePickerContext()` hook.
|
|
21377
21582
|
*/
|
|
21378
|
-
declare const DateTimePicker: ({ id, label, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, ...props }: DateTimePickerProps) =>
|
|
21583
|
+
declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, testId, placement, offset, ...props }: DateTimePickerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21584
|
+
|
|
21585
|
+
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21586
|
+
value: DateTimePickerValue | null | undefined;
|
|
21587
|
+
placeholder: ReactNode;
|
|
21588
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
21379
21589
|
|
|
21380
21590
|
type DescriptionListProps = {
|
|
21381
21591
|
items: {
|
|
@@ -21393,7 +21603,7 @@ declare const DescriptionList: React__default.ForwardRefExoticComponent<{
|
|
|
21393
21603
|
label: string;
|
|
21394
21604
|
value: string | number | boolean | React__default.ReactNode;
|
|
21395
21605
|
}[];
|
|
21396
|
-
variant?: "horizontal" | "vertical"
|
|
21606
|
+
variant?: "horizontal" | "vertical";
|
|
21397
21607
|
} & React__default.HTMLAttributes<HTMLDListElement> & React__default.RefAttributes<HTMLDListElement>>;
|
|
21398
21608
|
|
|
21399
21609
|
type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
@@ -21419,7 +21629,22 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
|
21419
21629
|
isCompact?: boolean;
|
|
21420
21630
|
};
|
|
21421
21631
|
/** @example <Details summary="summary text">child content here</Details>*/
|
|
21422
|
-
declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented, isCompact, onChange, ...props }: DetailsProps) =>
|
|
21632
|
+
declare const Details: ({ summary, children, isOpenByDefault, isOpen, isIndented, isCompact, onChange, ...props }: DetailsProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21633
|
+
|
|
21634
|
+
type DraggableHandleProps = {
|
|
21635
|
+
disableDnd?: boolean;
|
|
21636
|
+
/** (optional) Height of the drag handle
|
|
21637
|
+
* @default 3.125rem
|
|
21638
|
+
*/
|
|
21639
|
+
height?: string;
|
|
21640
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
21641
|
+
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21642
|
+
disableDnd?: boolean;
|
|
21643
|
+
/** (optional) Height of the drag handle
|
|
21644
|
+
* @default 3.125rem
|
|
21645
|
+
*/
|
|
21646
|
+
height?: string;
|
|
21647
|
+
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21423
21648
|
|
|
21424
21649
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
21425
21650
|
/** The ID of the stack to render. Some drawers need to use the same stack ID to be rendered here */
|
|
@@ -21456,7 +21681,7 @@ interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDiv
|
|
|
21456
21681
|
* Renders a stack of drawers in a different location than their original position in the component tree. Uses React Portal under the hood.
|
|
21457
21682
|
* @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
|
|
21458
21683
|
*/
|
|
21459
|
-
declare const DrawerRenderer: ({ stackId, position, width, minWidth, maxWidth, leftAligned, withoutFluidWidth, ...otherProps }: DrawerRendererProps) =>
|
|
21684
|
+
declare const DrawerRenderer: ({ stackId, position, width, minWidth, maxWidth, leftAligned, withoutFluidWidth, ...otherProps }: DrawerRendererProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21460
21685
|
interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
21461
21686
|
index: number;
|
|
21462
21687
|
totalDrawers: number;
|
|
@@ -21468,7 +21693,7 @@ interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivE
|
|
|
21468
21693
|
}
|
|
21469
21694
|
declare const getDrawerAttributes: ({ providerId, stackId, id, }: {
|
|
21470
21695
|
providerId: string;
|
|
21471
|
-
stackId?: string
|
|
21696
|
+
stackId?: string;
|
|
21472
21697
|
id: string;
|
|
21473
21698
|
}) => {
|
|
21474
21699
|
'data-drawer-id': string;
|
|
@@ -21522,7 +21747,7 @@ type DrawerContextValue = {
|
|
|
21522
21747
|
* Provides the context to the Drawer and DrawerRenderer components.
|
|
21523
21748
|
* @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
|
|
21524
21749
|
*/
|
|
21525
|
-
declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) =>
|
|
21750
|
+
declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21526
21751
|
declare const useDrawer: () => DrawerContextValue;
|
|
21527
21752
|
declare const useCloseCurrentDrawer: () => (() => void) | undefined;
|
|
21528
21753
|
|
|
@@ -21533,14 +21758,14 @@ type DrawerProps = DrawerItem & Omit<DrawerRendererProps, 'stackId'> & {
|
|
|
21533
21758
|
leftAligned?: DrawerRendererProps['leftAligned'];
|
|
21534
21759
|
};
|
|
21535
21760
|
declare const CurrentDrawerContext: React__default.Context<{
|
|
21536
|
-
id?:
|
|
21537
|
-
stackId?:
|
|
21538
|
-
leftAligned?: DrawerRendererProps[
|
|
21761
|
+
id?: DrawerProps["id"];
|
|
21762
|
+
stackId?: DrawerRendererProps["stackId"];
|
|
21763
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21539
21764
|
}>;
|
|
21540
21765
|
declare const useCurrentDrawer: () => {
|
|
21541
|
-
id?:
|
|
21542
|
-
stackId?:
|
|
21543
|
-
leftAligned?: DrawerRendererProps[
|
|
21766
|
+
id?: DrawerProps["id"];
|
|
21767
|
+
stackId?: DrawerRendererProps["stackId"];
|
|
21768
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21544
21769
|
};
|
|
21545
21770
|
/**
|
|
21546
21771
|
* A drawer component that opens from the right side of is parent. The component is used in combination with DrawerProvider and DrawerRenderer
|
|
@@ -21549,8 +21774,8 @@ declare const useCurrentDrawer: () => {
|
|
|
21549
21774
|
declare const Drawer: React__default.ForwardRefExoticComponent<DrawerItem & Omit<DrawerRendererProps, "stackId"> & {
|
|
21550
21775
|
header?: React__default.ReactNode;
|
|
21551
21776
|
children?: React__default.ReactNode;
|
|
21552
|
-
bgColor?: "var(--
|
|
21553
|
-
leftAligned?: DrawerRendererProps[
|
|
21777
|
+
bgColor?: "var(--gray-50)" | "var(--white)";
|
|
21778
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21554
21779
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
21555
21780
|
|
|
21556
21781
|
type DrawerContentProps = {
|
|
@@ -21558,12 +21783,12 @@ type DrawerContentProps = {
|
|
|
21558
21783
|
buttonGroup?: ReactNode;
|
|
21559
21784
|
noPadding?: boolean;
|
|
21560
21785
|
} & HTMLAttributes<HTMLDivElement>;
|
|
21561
|
-
declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) =>
|
|
21786
|
+
declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21562
21787
|
|
|
21563
21788
|
declare const TAKEOVER_STACK_ID = "takeover-stack";
|
|
21564
|
-
declare const TakeoverDrawerRenderer: (props: Omit<DrawerRendererProps,
|
|
21789
|
+
declare const TakeoverDrawerRenderer: (props: Omit<DrawerRendererProps, "stackId"> & {
|
|
21565
21790
|
stackId?: string;
|
|
21566
|
-
}) =>
|
|
21791
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21567
21792
|
|
|
21568
21793
|
interface IconButtonProps extends Omit<ButtonProps, 'size'> {
|
|
21569
21794
|
variant?: 'square' | 'rounded';
|
|
@@ -21576,9 +21801,9 @@ interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
|
21576
21801
|
imgClassName?: string;
|
|
21577
21802
|
variant?: 'inline' | 'fill-container';
|
|
21578
21803
|
}
|
|
21579
|
-
declare function Image({ alt, src, className, imgClassName, variant, width, height, ...imgAttribs }: ImageProps):
|
|
21804
|
+
declare function Image({ alt, src, className, imgClassName, variant, width, height, ...imgAttribs }: ImageProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
21580
21805
|
|
|
21581
|
-
declare const ImageBroken: ({ width, height, ...props }: SVGProps<SVGSVGElement>) =>
|
|
21806
|
+
declare const ImageBroken: ({ width, height, ...props }: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21582
21807
|
|
|
21583
21808
|
type CaptionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
21584
21809
|
/** allows users to add child elements */
|
|
@@ -21592,7 +21817,7 @@ type CaptionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
|
21592
21817
|
* Component that provides caption text to input fields
|
|
21593
21818
|
* @example <Caption>some help text here</Caption>
|
|
21594
21819
|
*/
|
|
21595
|
-
declare const Caption: ({ children, testId, dynamicSize, ...props }: CaptionProps) =>
|
|
21820
|
+
declare const Caption: ({ children, testId, dynamicSize, ...props }: CaptionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21596
21821
|
|
|
21597
21822
|
type CheckboxWithInforProps = React.HTMLAttributes<HTMLInputElement> & {
|
|
21598
21823
|
/** sets the label value */
|
|
@@ -21611,9 +21836,9 @@ declare const CheckboxWithInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAt
|
|
|
21611
21836
|
/** sets the name value of the radio/checkbox input */
|
|
21612
21837
|
name: string;
|
|
21613
21838
|
/** sets info message */
|
|
21614
|
-
info?: string
|
|
21839
|
+
info?: string;
|
|
21615
21840
|
/** (optional) sets the checked state of the input */
|
|
21616
|
-
checked?: boolean
|
|
21841
|
+
checked?: boolean;
|
|
21617
21842
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21618
21843
|
|
|
21619
21844
|
type ErrorMessageProps = {
|
|
@@ -21633,7 +21858,25 @@ type ErrorMessageProps = {
|
|
|
21633
21858
|
* Component that provides error messaging to input fields
|
|
21634
21859
|
* @example <ErrorMessage>something went wrong, please try again</ErrorMessage>
|
|
21635
21860
|
*/
|
|
21636
|
-
declare const ErrorMessage: ({ message, testId, truncated, ...otherProps }: ErrorMessageProps) =>
|
|
21861
|
+
declare const ErrorMessage: ({ message, testId, truncated, ...otherProps }: ErrorMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21862
|
+
|
|
21863
|
+
type FieldMessageProps = {
|
|
21864
|
+
/** (optional) sets help message within the caption component */
|
|
21865
|
+
helperMessage?: string | JSX.Element;
|
|
21866
|
+
/** (option) sets caption message test id for test automation */
|
|
21867
|
+
helperMessageTestId?: string;
|
|
21868
|
+
/** (optional) sets and shows the warning message value */
|
|
21869
|
+
warningMessage?: string;
|
|
21870
|
+
/** (option) sets warning message test id for test automation */
|
|
21871
|
+
warningMessageTestId?: string;
|
|
21872
|
+
/** (optional) sets and shows the the error message value */
|
|
21873
|
+
errorMessage?: string;
|
|
21874
|
+
/** (option) sets validation message test id for test automation */
|
|
21875
|
+
errorTestId?: string;
|
|
21876
|
+
/** (optional) sets and shows the the info message value */
|
|
21877
|
+
infoMessage?: string;
|
|
21878
|
+
};
|
|
21879
|
+
declare const FieldMessage: ({ helperMessage, warningMessage, errorMessage, infoMessage, errorTestId, helperMessageTestId, }: FieldMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21637
21880
|
|
|
21638
21881
|
type FieldsetProps = React$1.HTMLAttributes<HTMLFieldSetElement> & {
|
|
21639
21882
|
/** sets the legend value */
|
|
@@ -21650,11 +21893,11 @@ declare const Fieldset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
|
|
|
21650
21893
|
/** sets the legend value */
|
|
21651
21894
|
legend: React$1.ReactElement;
|
|
21652
21895
|
/** sets the disabled value and sets child inputs disabled */
|
|
21653
|
-
disabled?: boolean
|
|
21654
|
-
actionButton?: React$1.ReactElement
|
|
21896
|
+
disabled?: boolean;
|
|
21897
|
+
actionButton?: React$1.ReactElement;
|
|
21655
21898
|
children: React$1.ReactNode;
|
|
21656
21899
|
/** Inverts the background to white for use on forms that already have a gray background */
|
|
21657
|
-
invert?: boolean
|
|
21900
|
+
invert?: boolean;
|
|
21658
21901
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
21659
21902
|
|
|
21660
21903
|
type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -21662,12 +21905,14 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21662
21905
|
message?: string;
|
|
21663
21906
|
/** sets the test id for test automation (optional) */
|
|
21664
21907
|
testId?: string;
|
|
21908
|
+
/** customize the icon (optional) */
|
|
21909
|
+
icon?: IconType;
|
|
21665
21910
|
};
|
|
21666
21911
|
/**
|
|
21667
21912
|
* Component that provides info messaging to input fields
|
|
21668
|
-
* @example <
|
|
21913
|
+
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21669
21914
|
*/
|
|
21670
|
-
declare const InfoMessage: ({ message, testId, ...props }: InfoMessageProps) =>
|
|
21915
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21671
21916
|
|
|
21672
21917
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21673
21918
|
/** (optional) sets the label value */
|
|
@@ -21714,59 +21959,117 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
21714
21959
|
*/
|
|
21715
21960
|
declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21716
21961
|
/** (optional) sets the label value */
|
|
21717
|
-
label?: string
|
|
21962
|
+
label?: string;
|
|
21718
21963
|
/** (optional) sets caption text value */
|
|
21719
|
-
caption?: string | JSX.Element
|
|
21964
|
+
caption?: string | JSX.Element;
|
|
21720
21965
|
/** (optional) add an input icon to the input field */
|
|
21721
|
-
icon?: React$1.ReactElement
|
|
21966
|
+
icon?: React$1.ReactElement;
|
|
21722
21967
|
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21723
|
-
showLabel?: boolean
|
|
21968
|
+
showLabel?: boolean;
|
|
21724
21969
|
/** (optional) sets and shows the the error message value */
|
|
21725
|
-
errorMessage?: string
|
|
21970
|
+
errorMessage?: string;
|
|
21726
21971
|
/** (optional) sets and shows the warning message value */
|
|
21727
|
-
warningMessage?: string
|
|
21972
|
+
warningMessage?: string;
|
|
21728
21973
|
/** (optional) sets the test id for input field container for test automation*/
|
|
21729
|
-
containerTestId?: string
|
|
21974
|
+
containerTestId?: string;
|
|
21730
21975
|
/** (optional) sets label test id */
|
|
21731
|
-
labelTestId?: string
|
|
21976
|
+
labelTestId?: string;
|
|
21732
21977
|
/** (option) sets validation message test id for test automation */
|
|
21733
|
-
errorTestId?: string
|
|
21978
|
+
errorTestId?: string;
|
|
21734
21979
|
/** (option) sets caption message test id for test automation */
|
|
21735
|
-
captionTestId?: string
|
|
21736
|
-
capture?: boolean | "user" | "environment"
|
|
21980
|
+
captionTestId?: string;
|
|
21981
|
+
capture?: boolean | "user" | "environment";
|
|
21737
21982
|
/**
|
|
21738
21983
|
* (optional) sets an overriding classname on the root element
|
|
21739
21984
|
*/
|
|
21740
|
-
classNameRoot?: string | SerializedStyles
|
|
21985
|
+
classNameRoot?: string | SerializedStyles;
|
|
21741
21986
|
/**
|
|
21742
21987
|
* (optional) sets an overriding classname on the container element
|
|
21743
21988
|
* @deprecated */
|
|
21744
|
-
classNameContainer?: string | SerializedStyles
|
|
21989
|
+
classNameContainer?: string | SerializedStyles;
|
|
21745
21990
|
/**
|
|
21746
21991
|
* (optional) sets an overriding classname on the input element
|
|
21747
21992
|
* @deprecated */
|
|
21748
|
-
classNameControl?: string | SerializedStyles
|
|
21993
|
+
classNameControl?: string | SerializedStyles;
|
|
21749
21994
|
/**
|
|
21750
21995
|
* (optional) sets an overriding classname on the label element
|
|
21751
21996
|
* @deprecated */
|
|
21752
|
-
classNameLabel?: string | SerializedStyles
|
|
21997
|
+
classNameLabel?: string | SerializedStyles;
|
|
21753
21998
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21754
21999
|
|
|
21755
|
-
|
|
22000
|
+
/**
|
|
22001
|
+
* Default type of option for the combo box.
|
|
22002
|
+
* Note: you can use any type of object you want.
|
|
22003
|
+
* If it has a `label` and `value` property, it will auto wire those.
|
|
22004
|
+
* If you want to use different properties, you can use the `getOptionLabel` and `getOptionValue` props.
|
|
22005
|
+
*/
|
|
22006
|
+
type InputComboBoxOption<TValue = string> = {
|
|
21756
22007
|
/** sets the label value */
|
|
21757
22008
|
label: string;
|
|
21758
|
-
/** sets the
|
|
21759
|
-
value:
|
|
22009
|
+
/** sets the option value */
|
|
22010
|
+
value: TValue;
|
|
21760
22011
|
/** (optional) sets the disabled value on the input */
|
|
21761
22012
|
isDisabled?: boolean;
|
|
22013
|
+
/**
|
|
22014
|
+
* Sets an indent on the menu item.
|
|
22015
|
+
* Can be used to create faux groups, where the groups may be selected.
|
|
22016
|
+
* Note: this works for any type used for an option where a boolean called indented exists.
|
|
22017
|
+
*/
|
|
22018
|
+
indented?: boolean;
|
|
21762
22019
|
};
|
|
21763
|
-
type InputComboBoxProps<TOption, IsMulti extends boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> =
|
|
22020
|
+
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>>;
|
|
22021
|
+
type InputCreatableComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = CreatableProps<TOption, IsMulti, TGroup>;
|
|
21764
22022
|
type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
|
|
21765
22023
|
/**
|
|
21766
22024
|
* InputComboBox
|
|
21767
22025
|
* @component
|
|
21768
22026
|
* @example <InputComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
|
|
21769
|
-
declare function InputComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputComboBoxProps<TOption, IsMulti, TGroup>):
|
|
22027
|
+
declare function InputComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputComboBoxProps<TOption, IsMulti, TGroup>): _emotion_react_jsx_runtime.JSX.Element;
|
|
22028
|
+
/**
|
|
22029
|
+
* InputCreatableComboBox
|
|
22030
|
+
* Like ComboBox, but allows for creating new options
|
|
22031
|
+
* @component
|
|
22032
|
+
* @example <InputCreatableComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
|
|
22033
|
+
declare function InputCreatableComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputCreatableComboBoxProps<TOption, IsMulti, TGroup>): _emotion_react_jsx_runtime.JSX.Element;
|
|
22034
|
+
|
|
22035
|
+
type ComboBoxSelectableOption = InputComboBoxOption<string | string[]>;
|
|
22036
|
+
interface ComboBoxSelectableGroup extends GroupBase<ComboBoxSelectableOption> {
|
|
22037
|
+
/**
|
|
22038
|
+
* Controls the behavior when the selectable group is selected.
|
|
22039
|
+
* - when undefined, the values of all children of the group will be selected
|
|
22040
|
+
* - when a non-empty array, the values in the array will be explicitly selected
|
|
22041
|
+
* - when an empty array, the group will not be clickable and only its children can be selected (regular group behaviour)
|
|
22042
|
+
*
|
|
22043
|
+
* Note: when a non-empty array, and all of those values are selected, the group will be removed from options.
|
|
22044
|
+
*/
|
|
22045
|
+
value?: string[];
|
|
22046
|
+
}
|
|
22047
|
+
type ComboBoxSelectableItem = ComboBoxSelectableOption | ComboBoxSelectableGroup;
|
|
22048
|
+
type ConvertComboBoxGroupsToSelectableGroupsOptions = {
|
|
22049
|
+
/** The grouped combo box options */
|
|
22050
|
+
options: readonly ComboBoxSelectableItem[];
|
|
22051
|
+
/** Set of selected IDs, used to determine selected items */
|
|
22052
|
+
selectedItems: Set<string>;
|
|
22053
|
+
/**
|
|
22054
|
+
* Whether multi selection is allowed (selectable groups will turn into regular groups)
|
|
22055
|
+
* Use this when sharing code between single and multi-select components.
|
|
22056
|
+
*/
|
|
22057
|
+
selectionMode?: 'single' | 'multi';
|
|
22058
|
+
};
|
|
22059
|
+
/**
|
|
22060
|
+
* Converts combo box options that can contain optgroups
|
|
22061
|
+
* Into a set of group-less options where the optgroup becomes a selectable option,
|
|
22062
|
+
* and selecting it selects all of its children.
|
|
22063
|
+
*/
|
|
22064
|
+
declare function convertComboBoxGroupsToSelectableGroups(args: ConvertComboBoxGroupsToSelectableGroupsOptions): {
|
|
22065
|
+
groupedOptions: readonly ComboBoxSelectableItem[];
|
|
22066
|
+
selectedOptions: readonly ComboBoxSelectableOption[];
|
|
22067
|
+
};
|
|
22068
|
+
/**
|
|
22069
|
+
* Finds all selected values in a combo box where there are multiple selectable groups
|
|
22070
|
+
* (and selecting a group should select all of its virtual children)
|
|
22071
|
+
*/
|
|
22072
|
+
declare function getComboBoxSelectedSelectableGroups(selectedValues: MultiValue<ComboBoxSelectableItem> | SingleValue<ComboBoxSelectableItem>): Set<string>;
|
|
21770
22073
|
|
|
21771
22074
|
type InputInlineSelectOption = {
|
|
21772
22075
|
/** sets the display name of the option */
|
|
@@ -21790,9 +22093,9 @@ type InputInlineSelectProps = Omit<React$1.HTMLAttributes<HTMLButtonElement>, 'o
|
|
|
21790
22093
|
* Input Inline Select
|
|
21791
22094
|
* @example <InputInlineSelect disabled={index > 1} value={currentValue ?? '&'} options={[{ label: 'AND', value: '&' }, { label: 'OR', value: '|' }]} onChange={(s) => {setState(s.value)}} />
|
|
21792
22095
|
*/
|
|
21793
|
-
declare const InputInlineSelect: ({ classNameContainer, options, value, onChange, disabled, ...props }: InputInlineSelectProps) =>
|
|
22096
|
+
declare const InputInlineSelect: ({ classNameContainer, options, value, onChange, disabled, ...props }: InputInlineSelectProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21794
22097
|
|
|
21795
|
-
interface InputKeywordSearchProps extends
|
|
22098
|
+
interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
21796
22099
|
/** function that takes a string value */
|
|
21797
22100
|
onSearchTextChanged: (searchText: string) => void;
|
|
21798
22101
|
/** (optional) sets the input field disabled state
|
|
@@ -21818,7 +22121,7 @@ interface InputKeywordSearchProps extends React$1.InputHTMLAttributes<HTMLInputE
|
|
|
21818
22121
|
/** (optional) makes the input look more compact
|
|
21819
22122
|
* @default false
|
|
21820
22123
|
*/
|
|
21821
|
-
compact?: boolean;
|
|
22124
|
+
compact?: boolean | 'sm' | 'xs';
|
|
21822
22125
|
/** (optional) makes the corners of the input rounded
|
|
21823
22126
|
* @default false
|
|
21824
22127
|
*/
|
|
@@ -21829,7 +22132,7 @@ interface InputKeywordSearchProps extends React$1.InputHTMLAttributes<HTMLInputE
|
|
|
21829
22132
|
*
|
|
21830
22133
|
* @example <InputKeywordSearch onSearchTextChanged={setKeyword} delay={500} value={keyword} compact />
|
|
21831
22134
|
*/
|
|
21832
|
-
declare const InputKeywordSearch:
|
|
22135
|
+
declare const InputKeywordSearch: React$1.ForwardRefExoticComponent<InputKeywordSearchProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
21833
22136
|
type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> & {
|
|
21834
22137
|
/** Debounce delay in milliseconds */
|
|
21835
22138
|
delay?: number;
|
|
@@ -21842,7 +22145,12 @@ type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> &
|
|
|
21842
22145
|
*
|
|
21843
22146
|
* @example <DebouncedInputKeywordSearch onSearchTextChanged={setKeyword} delay={500} />
|
|
21844
22147
|
*/
|
|
21845
|
-
declare const DebouncedInputKeywordSearch:
|
|
22148
|
+
declare const DebouncedInputKeywordSearch: React$1.ForwardRefExoticComponent<Omit<InputKeywordSearchProps, "value"> & {
|
|
22149
|
+
/** Debounce delay in milliseconds */
|
|
22150
|
+
delay?: number;
|
|
22151
|
+
/**Default value to initialize field with, as it is not controlled component and does not support providing values */
|
|
22152
|
+
defaultValue?: string;
|
|
22153
|
+
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21846
22154
|
|
|
21847
22155
|
type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
21848
22156
|
/** (optional) sets the first item in the options list with empty value */
|
|
@@ -21886,115 +22194,51 @@ type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
|
21886
22194
|
*/
|
|
21887
22195
|
declare const InputSelect: React$1.ForwardRefExoticComponent<React$1.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
21888
22196
|
/** (optional) sets the first item in the options list with empty value */
|
|
21889
|
-
defaultOption?: string
|
|
22197
|
+
defaultOption?: string;
|
|
21890
22198
|
/** sets an array of select options with value and text value */
|
|
21891
22199
|
options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
|
|
21892
22200
|
label: string;
|
|
21893
22201
|
}>;
|
|
21894
22202
|
/** (optional) sets caption text value */
|
|
21895
|
-
caption?: string | JSX.Element
|
|
22203
|
+
caption?: string | JSX.Element;
|
|
21896
22204
|
/** sets the label value */
|
|
21897
22205
|
label: string;
|
|
21898
22206
|
/** (optional) sets whether to hide the label and use aria-label on the input field
|
|
21899
22207
|
* @default false
|
|
21900
22208
|
*/
|
|
21901
|
-
showLabel?: boolean
|
|
22209
|
+
showLabel?: boolean;
|
|
21902
22210
|
/** (optional) sets and shows the the error message value */
|
|
21903
|
-
errorMessage?: string
|
|
22211
|
+
errorMessage?: string;
|
|
21904
22212
|
/** (optional) sets and shows the warning message value */
|
|
21905
|
-
warningMessage?: string
|
|
22213
|
+
warningMessage?: string;
|
|
21906
22214
|
/** (optional) allows react components to be added inline with the label element */
|
|
21907
|
-
labelCta?: JSX.Element
|
|
22215
|
+
labelCta?: JSX.Element;
|
|
21908
22216
|
/** (optional) styles the component in a compact format */
|
|
21909
|
-
compact?: boolean
|
|
22217
|
+
compact?: boolean;
|
|
21910
22218
|
/**
|
|
21911
22219
|
* (optional) sets an overriding classname on the container element
|
|
21912
22220
|
* @deprecated */
|
|
21913
|
-
classNameContainer?: string
|
|
22221
|
+
classNameContainer?: string;
|
|
21914
22222
|
/**
|
|
21915
22223
|
* (optional) sets an overriding classname on the input element
|
|
21916
22224
|
* @deprecated */
|
|
21917
|
-
classNameControl?: string
|
|
22225
|
+
classNameControl?: string;
|
|
21918
22226
|
/**
|
|
21919
22227
|
* (optional) sets an overriding classname on the label element
|
|
21920
22228
|
* @deprecated */
|
|
21921
|
-
classNameLabel?: string
|
|
22229
|
+
classNameLabel?: string;
|
|
21922
22230
|
} & React$1.RefAttributes<HTMLSelectElement>>;
|
|
21923
22231
|
|
|
21924
|
-
|
|
21925
|
-
|
|
21926
|
-
*/
|
|
21927
|
-
|
|
21928
|
-
|
|
21929
|
-
|
|
21930
|
-
|
|
21931
|
-
|
|
21932
|
-
caption?: string | JSX.Element;
|
|
21933
|
-
/** The current value in ISO 8601 time format */
|
|
21934
|
-
value: IsoTimeString | null | undefined;
|
|
21935
|
-
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
21936
|
-
minValue?: IsoTimeString;
|
|
21937
|
-
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
21938
|
-
maxValue?: IsoTimeString;
|
|
22232
|
+
type FontWeightProps = 'normal' | 'medium' | 'bold';
|
|
22233
|
+
type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
22234
|
+
/** sets the label value */
|
|
22235
|
+
label: React$1.ReactNode;
|
|
22236
|
+
/** sets the type of input to use, either radio or checkbox */
|
|
22237
|
+
type: 'radio' | 'checkbox';
|
|
22238
|
+
/** sets the name value of the radio/checkbox input */
|
|
22239
|
+
name: string;
|
|
21939
22240
|
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21940
22241
|
showLabel?: boolean;
|
|
21941
|
-
/** (optional) sets and shows the the error message value */
|
|
21942
|
-
errorMessage?: string;
|
|
21943
|
-
/** (optional) sets and shows the warning message value */
|
|
21944
|
-
warningMessage?: string;
|
|
21945
|
-
/** (optional) sets the test id for input field container for test automation*/
|
|
21946
|
-
containerTestId?: string;
|
|
21947
|
-
/** (optional) sets label test id */
|
|
21948
|
-
labelTestId?: string;
|
|
21949
|
-
/** (option) sets validation message test id for test automation */
|
|
21950
|
-
errorTestId?: string;
|
|
21951
|
-
/** (option) sets caption message test id for test automation */
|
|
21952
|
-
captionTestId?: string;
|
|
21953
|
-
belowInputSlot?: ReactNode;
|
|
21954
|
-
onChange?: (value: IsoTimeString) => void;
|
|
21955
|
-
};
|
|
21956
|
-
/**
|
|
21957
|
-
* Time input with segmented control
|
|
21958
|
-
*
|
|
21959
|
-
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
21960
|
-
*/
|
|
21961
|
-
declare const InputTime: React$1.ForwardRefExoticComponent<Pick<TimeFieldProps<TimeValue>, "autoFocus" | "id" | "name" | "hourCycle"> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, "disabled"> & {
|
|
21962
|
-
/** (optional) sets the label value */
|
|
21963
|
-
label?: string | undefined;
|
|
21964
|
-
/** (optional) sets caption text value */
|
|
21965
|
-
caption?: string | JSX.Element | undefined;
|
|
21966
|
-
/** The current value in ISO 8601 time format */
|
|
21967
|
-
value: IsoTimeString | null | undefined;
|
|
21968
|
-
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
21969
|
-
minValue?: string | undefined;
|
|
21970
|
-
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
21971
|
-
maxValue?: string | undefined;
|
|
21972
|
-
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21973
|
-
showLabel?: boolean | undefined;
|
|
21974
|
-
/** (optional) sets and shows the the error message value */
|
|
21975
|
-
errorMessage?: string | undefined;
|
|
21976
|
-
/** (optional) sets and shows the warning message value */
|
|
21977
|
-
warningMessage?: string | undefined;
|
|
21978
|
-
/** (optional) sets the test id for input field container for test automation*/
|
|
21979
|
-
containerTestId?: string | undefined;
|
|
21980
|
-
/** (optional) sets label test id */
|
|
21981
|
-
labelTestId?: string | undefined;
|
|
21982
|
-
/** (option) sets validation message test id for test automation */
|
|
21983
|
-
errorTestId?: string | undefined;
|
|
21984
|
-
/** (option) sets caption message test id for test automation */
|
|
21985
|
-
captionTestId?: string | undefined;
|
|
21986
|
-
belowInputSlot?: ReactNode;
|
|
21987
|
-
onChange?: ((value: IsoTimeString) => void) | undefined;
|
|
21988
|
-
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
21989
|
-
|
|
21990
|
-
type FontWeightProps = 'normal' | 'medium' | 'bold';
|
|
21991
|
-
type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21992
|
-
/** sets the label value */
|
|
21993
|
-
label: React$1.ReactNode;
|
|
21994
|
-
/** sets the type of input to use, either radio or checkbox */
|
|
21995
|
-
type: 'radio' | 'checkbox';
|
|
21996
|
-
/** sets the name value of the radio/checkbox input */
|
|
21997
|
-
name: string;
|
|
21998
22242
|
/** (optional) sets the disabled state */
|
|
21999
22243
|
disabled?: boolean;
|
|
22000
22244
|
/** (optional) sets the checked state of the input */
|
|
@@ -22020,25 +22264,27 @@ declare const InputToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
22020
22264
|
/** sets the label value */
|
|
22021
22265
|
label: React$1.ReactNode;
|
|
22022
22266
|
/** sets the type of input to use, either radio or checkbox */
|
|
22023
|
-
type:
|
|
22267
|
+
type: "radio" | "checkbox";
|
|
22024
22268
|
/** sets the name value of the radio/checkbox input */
|
|
22025
22269
|
name: string;
|
|
22270
|
+
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
22271
|
+
showLabel?: boolean;
|
|
22026
22272
|
/** (optional) sets the disabled state */
|
|
22027
|
-
disabled?: boolean
|
|
22273
|
+
disabled?: boolean;
|
|
22028
22274
|
/** (optional) sets the checked state of the input */
|
|
22029
|
-
checked?: boolean
|
|
22275
|
+
checked?: boolean;
|
|
22030
22276
|
/** (optional) sets caption text value */
|
|
22031
|
-
caption?: string | JSX.Element
|
|
22277
|
+
caption?: string | JSX.Element;
|
|
22032
22278
|
/** (optional) sets shows the the error message value */
|
|
22033
|
-
errorMessage?: string
|
|
22279
|
+
errorMessage?: string;
|
|
22034
22280
|
/** (optional) sets and shows the warning message value */
|
|
22035
|
-
warningMessage?: string
|
|
22281
|
+
warningMessage?: string;
|
|
22036
22282
|
/** (optional) sets the font weight of the label text
|
|
22037
22283
|
* @default 'normal'
|
|
22038
22284
|
*/
|
|
22039
|
-
fontWeight?: FontWeightProps
|
|
22285
|
+
fontWeight?: FontWeightProps;
|
|
22040
22286
|
/** (optional) sets test id for test automation*/
|
|
22041
|
-
testId?: string
|
|
22287
|
+
testId?: string;
|
|
22042
22288
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
22043
22289
|
|
|
22044
22290
|
type LabelProps = React$1.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
@@ -22049,12 +22295,12 @@ type LabelProps = React$1.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
|
22049
22295
|
/** (optional) test id for test automation*/
|
|
22050
22296
|
testId?: string;
|
|
22051
22297
|
};
|
|
22052
|
-
declare const Label: ({ children, className, testId, ...props }: LabelProps) =>
|
|
22298
|
+
declare const Label: ({ children, className, testId, ...props }: LabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22053
22299
|
|
|
22054
22300
|
type LegendProps = {
|
|
22055
22301
|
children: ReactNode;
|
|
22056
22302
|
};
|
|
22057
|
-
declare const Legend: ({ children }: LegendProps) =>
|
|
22303
|
+
declare const Legend: ({ children }: LegendProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22058
22304
|
|
|
22059
22305
|
type SuccessMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22060
22306
|
/** sets the error message value */
|
|
@@ -22066,7 +22312,7 @@ type SuccessMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
22066
22312
|
* Component that provides success messaging to input fields
|
|
22067
22313
|
* @example <SuccessMessage>something went wrong, please try again</SuccessMessage>
|
|
22068
22314
|
*/
|
|
22069
|
-
declare const SuccessMessage: ({ message, testId, ...props }: SuccessMessageProps) =>
|
|
22315
|
+
declare const SuccessMessage: ({ message, testId, ...props }: SuccessMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22070
22316
|
|
|
22071
22317
|
type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
22072
22318
|
/** (optional) sets the label value */
|
|
@@ -22089,23 +22335,23 @@ type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
|
22089
22335
|
*/
|
|
22090
22336
|
declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
22091
22337
|
/** (optional) sets the label value */
|
|
22092
|
-
label?: string
|
|
22338
|
+
label?: string;
|
|
22093
22339
|
/** (optional) sets caption text value */
|
|
22094
|
-
caption?: string | JSX.Element
|
|
22340
|
+
caption?: string | JSX.Element;
|
|
22095
22341
|
/** (optional) add an input icon to the input field */
|
|
22096
|
-
icon?: React$1.ReactElement
|
|
22342
|
+
icon?: React$1.ReactElement;
|
|
22097
22343
|
/** (optional) sets whether to hide the label and use aria-label on the input field */
|
|
22098
|
-
showLabel?: boolean
|
|
22344
|
+
showLabel?: boolean;
|
|
22099
22345
|
/** (optional) sets shows the error message value */
|
|
22100
|
-
errorMessage?: string
|
|
22346
|
+
errorMessage?: string;
|
|
22101
22347
|
/** (optional) sets and shows the warning message value */
|
|
22102
|
-
warningMessage?: string
|
|
22103
|
-
capture?: boolean | "user" | "environment"
|
|
22348
|
+
warningMessage?: string;
|
|
22349
|
+
capture?: boolean | "user" | "environment";
|
|
22104
22350
|
} & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
22105
22351
|
|
|
22106
22352
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22107
22353
|
/** sets the error message value */
|
|
22108
|
-
message?:
|
|
22354
|
+
message?: ReactNode;
|
|
22109
22355
|
/** sets the test id for test automation (optional) */
|
|
22110
22356
|
testId?: string;
|
|
22111
22357
|
};
|
|
@@ -22113,7 +22359,7 @@ type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
22113
22359
|
* Component that provides warning messaging to input fields
|
|
22114
22360
|
* @example <WarningMessage>something went wrong, please try again</ErrorMessage>
|
|
22115
22361
|
*/
|
|
22116
|
-
declare const WarningMessage: ({ message, testId, ...props }: WarningMessageProps) =>
|
|
22362
|
+
declare const WarningMessage: ({ message, testId, ...props }: WarningMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22117
22363
|
|
|
22118
22364
|
type IntegrationModalHeaderProps = {
|
|
22119
22365
|
/** sets the icon as inline svg or img tag */
|
|
@@ -22128,11 +22374,11 @@ type IntegrationModalHeaderProps = {
|
|
|
22128
22374
|
menu?: React$1.ReactNode;
|
|
22129
22375
|
};
|
|
22130
22376
|
type HexModalBackgroundProps = React$1.SVGAttributes<SVGElement>;
|
|
22131
|
-
declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) =>
|
|
22377
|
+
declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22132
22378
|
/** Uniform Integration Modal Header
|
|
22133
22379
|
* @example <IntegrationModalHeader icon="/icon.svg" name="name" />
|
|
22134
22380
|
*/
|
|
22135
|
-
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) =>
|
|
22381
|
+
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22136
22382
|
|
|
22137
22383
|
type JsonEditorProps = {
|
|
22138
22384
|
/**
|
|
@@ -22155,7 +22401,34 @@ type JsonEditorProps = {
|
|
|
22155
22401
|
/** Makes the editor read-only */
|
|
22156
22402
|
readOnly?: boolean;
|
|
22157
22403
|
};
|
|
22158
|
-
declare const JsonEditor: ({ defaultValue, onChange, jsonSchema, height, readOnly }: JsonEditorProps) =>
|
|
22404
|
+
declare const JsonEditor: ({ defaultValue, onChange, jsonSchema, height, readOnly }: JsonEditorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22405
|
+
|
|
22406
|
+
type KeyValueItem<TValue extends string = string> = {
|
|
22407
|
+
key: string;
|
|
22408
|
+
value: TValue;
|
|
22409
|
+
uniqueId?: string;
|
|
22410
|
+
};
|
|
22411
|
+
type KeyValueInputProps<TValue extends string = string> = {
|
|
22412
|
+
value: KeyValueItem<TValue>[];
|
|
22413
|
+
onChange: (value: KeyValueItem<TValue>[]) => void;
|
|
22414
|
+
label?: ReactNode;
|
|
22415
|
+
disabled?: boolean;
|
|
22416
|
+
newItemDefault?: KeyValueItem<TValue>;
|
|
22417
|
+
keyLabel?: string;
|
|
22418
|
+
valueLabel?: string;
|
|
22419
|
+
keyInfoPopover?: ReactNode;
|
|
22420
|
+
valueInfoPopover?: ReactNode;
|
|
22421
|
+
errors?: (Record<keyof Omit<KeyValueItem, 'uniqueId'>, string> | null)[];
|
|
22422
|
+
onFocusChange?: (isFocused: boolean) => void;
|
|
22423
|
+
};
|
|
22424
|
+
/**
|
|
22425
|
+
* A component to render a sortable key-value input
|
|
22426
|
+
* @example
|
|
22427
|
+
* const [value, setValue] = useState([]);
|
|
22428
|
+
* return <KeyValueInput value={value} onChange={setValue} />
|
|
22429
|
+
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
22430
|
+
*/
|
|
22431
|
+
declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, keyInfoPopover, valueInfoPopover, disabled, errors, onFocusChange, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22159
22432
|
|
|
22160
22433
|
type SpacingProp = '0' | '2xs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl';
|
|
22161
22434
|
type BackgroundColorProp = 'transparent' | 'white' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900';
|
|
@@ -22190,15 +22463,16 @@ type RhythmProps = React.HTMLAttributes<HTMLDivElement | HTMLFieldSetElement> &
|
|
|
22190
22463
|
children: React.ReactNode;
|
|
22191
22464
|
/** for use when fieldset is applied to the tag prop */
|
|
22192
22465
|
disabled?: boolean;
|
|
22466
|
+
ref?: Ref<HTMLDivElement>;
|
|
22193
22467
|
};
|
|
22194
22468
|
|
|
22195
22469
|
type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivElement> & {
|
|
22196
22470
|
tag?: HtmlTagProps;
|
|
22197
22471
|
children: React$1.ReactNode;
|
|
22198
22472
|
};
|
|
22199
|
-
declare const Container: ({ tag, backgroundColor, border, rounded, padding, margin, children, ...props }: ContainerProps) =>
|
|
22473
|
+
declare const Container: ({ tag, backgroundColor, border, rounded, padding, margin, children, ...props }: ContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22200
22474
|
|
|
22201
|
-
declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ...props }: RhythmProps) =>
|
|
22475
|
+
declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22202
22476
|
|
|
22203
22477
|
type TwoColumnLayoutProps = {
|
|
22204
22478
|
/** sets the full bleed background colour
|
|
@@ -22215,9 +22489,9 @@ type TwoColumnLayoutProps = {
|
|
|
22215
22489
|
invertLayout?: boolean;
|
|
22216
22490
|
};
|
|
22217
22491
|
/** @example <TwoColumnLayout supportingContent={<div>supporting content</div>}><h1>title</h1></TwoColumnLayout> */
|
|
22218
|
-
declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) =>
|
|
22492
|
+
declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22219
22493
|
|
|
22220
|
-
declare const VerticalRhythm: ({ align, justify, tag, gap, children, ...props }: RhythmProps) =>
|
|
22494
|
+
declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22221
22495
|
|
|
22222
22496
|
type LimitsBarProps = {
|
|
22223
22497
|
/** The current value of used limits */
|
|
@@ -22231,7 +22505,7 @@ type LimitsBarProps = {
|
|
|
22231
22505
|
* Uniform Limits Bar Component
|
|
22232
22506
|
* @example <LimitsBar current="3" max="5" label="signals" />
|
|
22233
22507
|
*/
|
|
22234
|
-
declare const LimitsBar: ({ current, max, label }: LimitsBarProps) =>
|
|
22508
|
+
declare const LimitsBar: ({ current, max, label }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22235
22509
|
|
|
22236
22510
|
type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
22237
22511
|
/** sets the title field */
|
|
@@ -22243,7 +22517,7 @@ type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
22243
22517
|
/** (optional) sets react child component */
|
|
22244
22518
|
children?: React$1.ReactNode;
|
|
22245
22519
|
};
|
|
22246
|
-
declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) =>
|
|
22520
|
+
declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22247
22521
|
|
|
22248
22522
|
type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
22249
22523
|
/** (optional) sets the label value */
|
|
@@ -22255,7 +22529,7 @@ type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
22255
22529
|
* Component that sets the base structure for scrollable content in a max height container
|
|
22256
22530
|
* @example <ScrollableList label="allowed content types"><button>say hello</button></ScrollableList>
|
|
22257
22531
|
*/
|
|
22258
|
-
declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) =>
|
|
22532
|
+
declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22259
22533
|
|
|
22260
22534
|
type ScrollableListContainerProps = {
|
|
22261
22535
|
/** sets whether to show or hide the shadow around the element
|
|
@@ -22277,7 +22551,7 @@ type ScrollableItemProps = {
|
|
|
22277
22551
|
children: React.ReactNode;
|
|
22278
22552
|
} & ScrollableListContainerProps;
|
|
22279
22553
|
/** @example <ScrollableListInputItem label="my label" active={true}><input type="radio" name="age" /></ScrollableListInputItem>*/
|
|
22280
|
-
declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, children, labelTestId, ...props }: ScrollableItemProps) =>
|
|
22554
|
+
declare const ScrollableListInputItem: ({ label, icon, active, disableShadow, children, labelTestId, ...props }: ScrollableItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22281
22555
|
|
|
22282
22556
|
type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
22283
22557
|
/** sets the button text value */
|
|
@@ -22288,15 +22562,15 @@ type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> &
|
|
|
22288
22562
|
* Component used within <ScrollableList /> for adding interactive button components with predefined styles
|
|
22289
22563
|
* @example <ScrollableListItem buttontext="my button" active={false} />
|
|
22290
22564
|
*/
|
|
22291
|
-
declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) =>
|
|
22565
|
+
declare const ScrollableListItem: ({ buttonText, icon, active, disableShadow, ...props }: ScrollableListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22292
22566
|
|
|
22293
22567
|
/**
|
|
22294
22568
|
* Loading Indicator
|
|
22295
22569
|
* @example <LoadingIndicator />
|
|
22296
22570
|
*/
|
|
22297
22571
|
declare const LoadingIndicator: ({ size, ...props }: HTMLAttributes<HTMLDivElement> & {
|
|
22298
|
-
size?: "
|
|
22299
|
-
}) =>
|
|
22572
|
+
size?: "lg" | "sm";
|
|
22573
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22300
22574
|
|
|
22301
22575
|
interface LoadingOverlayProps {
|
|
22302
22576
|
/** sets whether to display the loading overlay components */
|
|
@@ -22324,13 +22598,17 @@ interface LoadingOverlayProps {
|
|
|
22324
22598
|
*/
|
|
22325
22599
|
isTopAligned?: boolean;
|
|
22326
22600
|
children?: React__default.ReactNode;
|
|
22601
|
+
/** (optional) sets the position of the overlay
|
|
22602
|
+
* @default 'absolute'
|
|
22603
|
+
*/
|
|
22604
|
+
position?: 'absolute' | 'fixed';
|
|
22327
22605
|
}
|
|
22328
22606
|
/**
|
|
22329
22607
|
* Loading Overlay.
|
|
22330
22608
|
* NOTE: the container/parent element must have a non-static `position` value for the overlay to work properly.
|
|
22331
22609
|
* @example <LoadingOverlay isActive={true} statusMessage="Loading..." />
|
|
22332
22610
|
*/
|
|
22333
|
-
declare const LoadingOverlay: ({ isActive, statusMessage, zIndex, loaderSize, overlayBackgroundColor, isTopAligned, isPaused, children, }: LoadingOverlayProps) =>
|
|
22611
|
+
declare const LoadingOverlay: ({ isActive, statusMessage, zIndex, loaderSize, overlayBackgroundColor, isTopAligned, isPaused, children, position, }: LoadingOverlayProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22334
22612
|
interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
|
|
22335
22613
|
/** (optional) prop that sets a number value for the height of the icon */
|
|
22336
22614
|
width?: number;
|
|
@@ -22341,7 +22619,15 @@ interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
|
|
|
22341
22619
|
* Loading Icon
|
|
22342
22620
|
* @example <LoadingIcon height={128} width={128} />
|
|
22343
22621
|
*/
|
|
22344
|
-
declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) =>
|
|
22622
|
+
declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22623
|
+
|
|
22624
|
+
interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
22625
|
+
children: React.ReactNode;
|
|
22626
|
+
/** sets the background color of the button */
|
|
22627
|
+
bgColor?: string;
|
|
22628
|
+
}
|
|
22629
|
+
/** Renders a dropdown menu style menu trigger button */
|
|
22630
|
+
declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22345
22631
|
|
|
22346
22632
|
declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
|
|
22347
22633
|
type LegacyPlacement = (typeof legacyPlacements)[number];
|
|
@@ -22387,6 +22673,7 @@ interface MenuProps extends MenuProps$2 {
|
|
|
22387
22673
|
* this is not compatible with nested menus that expand to the left or right of the menu
|
|
22388
22674
|
*/
|
|
22389
22675
|
maxMenuHeight?: string;
|
|
22676
|
+
portalElement?: React$1.ComponentProps<typeof Menu$1>['portalElement'];
|
|
22390
22677
|
}
|
|
22391
22678
|
/**
|
|
22392
22679
|
* Component used for creating clickable menus
|
|
@@ -22402,11 +22689,11 @@ declare const Menu: React$1.ForwardRefExoticComponent<Omit<MenuProps, "ref"> & R
|
|
|
22402
22689
|
|
|
22403
22690
|
type MenuGroupProps = {
|
|
22404
22691
|
/** Title for the menu group. If undefined or an empty string, the group will render as normal menu */
|
|
22405
|
-
title:
|
|
22692
|
+
title: ReactNode | undefined;
|
|
22406
22693
|
/** Menu items to render in the group */
|
|
22407
22694
|
children: ReactNode;
|
|
22408
22695
|
};
|
|
22409
|
-
declare const MenuGroup: ({ title, children }: MenuGroupProps) =>
|
|
22696
|
+
declare const MenuGroup: ({ title, children }: MenuGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22410
22697
|
|
|
22411
22698
|
type MenuItemTextThemeProps = 'base' | 'red';
|
|
22412
22699
|
type MenuItemProps = MenuItemProps$1 & {
|
|
@@ -22430,13 +22717,18 @@ type MenuItemProps = MenuItemProps$1 & {
|
|
|
22430
22717
|
* Normally automatically managed.
|
|
22431
22718
|
*/
|
|
22432
22719
|
active?: boolean;
|
|
22720
|
+
/**
|
|
22721
|
+
* Renders a keyboard shortcut for the menu item. The onClick of the menu will
|
|
22722
|
+
* be automatically set to invoke the shortcut's handler function.
|
|
22723
|
+
*/
|
|
22724
|
+
shortcut?: ShortcutReference;
|
|
22433
22725
|
};
|
|
22434
22726
|
type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement | null;
|
|
22435
22727
|
/**
|
|
22436
22728
|
* MenuItem Component used along side <Menu /> component
|
|
22437
22729
|
* @example <MenuItem onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
|
|
22438
22730
|
*/
|
|
22439
|
-
declare const MenuItem: React$1.
|
|
22731
|
+
declare const MenuItem: React$1.ForwardRefExoticComponent<Omit<MenuItemProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
22440
22732
|
/**
|
|
22441
22733
|
* MenuItem Component for headless use outside <Menu /> component
|
|
22442
22734
|
* Use only if adapting Uniform menu item appearance to a non-ariakit menu.
|
|
@@ -22444,8 +22736,72 @@ declare const MenuItem: React$1.FC<MenuItemProps>;
|
|
|
22444
22736
|
* @example <MenuItemInner onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
|
|
22445
22737
|
*/
|
|
22446
22738
|
declare const MenuItemInner: React$1.FC<MenuItemProps>;
|
|
22739
|
+
/**
|
|
22740
|
+
* Renders an icon for a menu item. Optional micro wrapper around an Icon component
|
|
22741
|
+
* configured to match the menu item icon style.
|
|
22742
|
+
*/
|
|
22743
|
+
declare function MenuItemIcon({ icon }: {
|
|
22744
|
+
icon: IconType;
|
|
22745
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
22746
|
+
/**
|
|
22747
|
+
* Indents a menu item as if it had an icon when it does not
|
|
22748
|
+
* Use this to align menu items without icons with those that have icons
|
|
22749
|
+
* in a mixed menu. Intended to be passed as the `icon` prop to a MenuItem.
|
|
22750
|
+
*/
|
|
22751
|
+
declare function MenuItemEmptyIcon(): _emotion_react_jsx_runtime.JSX.Element;
|
|
22752
|
+
|
|
22753
|
+
declare const MenuItemHeading: ({ children }: {
|
|
22754
|
+
children: ReactNode;
|
|
22755
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22756
|
+
|
|
22757
|
+
declare const MenuItemSeparator: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
22758
|
+
|
|
22759
|
+
type MenuButtonProp = {
|
|
22760
|
+
children: React.ReactNode;
|
|
22761
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
22762
|
+
declare const MenuButton: React$1.ForwardRefExoticComponent<{
|
|
22763
|
+
children: React.ReactNode;
|
|
22764
|
+
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22765
|
+
type MenuThreeDotsProps = {
|
|
22766
|
+
/** sets the aria-label and title value on the button
|
|
22767
|
+
* @default 'More options'
|
|
22768
|
+
*/
|
|
22769
|
+
buttonTitle?: string;
|
|
22770
|
+
/** sets the icon size
|
|
22771
|
+
* @default '1rem'
|
|
22772
|
+
*/
|
|
22773
|
+
iconSize?: string;
|
|
22774
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
22775
|
+
declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
|
|
22776
|
+
/** sets the aria-label and title value on the button
|
|
22777
|
+
* @default 'More options'
|
|
22778
|
+
*/
|
|
22779
|
+
buttonTitle?: string;
|
|
22780
|
+
/** sets the icon size
|
|
22781
|
+
* @default '1rem'
|
|
22782
|
+
*/
|
|
22783
|
+
iconSize?: string;
|
|
22784
|
+
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22447
22785
|
|
|
22448
|
-
|
|
22786
|
+
type SearchableMenuProps = {
|
|
22787
|
+
/** Note: this is pre-debounced for your handling enjoyment */
|
|
22788
|
+
onSearchTextChanged: (searchTerm: string) => void;
|
|
22789
|
+
/** Shows a no results message when no matching results exist */
|
|
22790
|
+
hasNoResults: boolean | string;
|
|
22791
|
+
/** Disables the search function, i.e. if few menu items exist */
|
|
22792
|
+
disableSearch?: boolean;
|
|
22793
|
+
/** Sets the placeholder in the search input */
|
|
22794
|
+
searchPlaceholder?: string;
|
|
22795
|
+
} & MenuProps;
|
|
22796
|
+
/**
|
|
22797
|
+
* Searchable menu allows searching through its menu items
|
|
22798
|
+
*/
|
|
22799
|
+
declare function SearchableMenu(props: SearchableMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22800
|
+
|
|
22801
|
+
interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
|
|
22802
|
+
selected: boolean;
|
|
22803
|
+
}
|
|
22804
|
+
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22449
22805
|
|
|
22450
22806
|
type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
22451
22807
|
title: string;
|
|
@@ -22457,7 +22813,7 @@ type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
|
22457
22813
|
buttonType?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
22458
22814
|
onClick?: () => void;
|
|
22459
22815
|
};
|
|
22460
|
-
declare const MediaCard: ({ title, subtitle, infoPopover, cover, menuItems, sideSection, onClick, buttonType, ...cardProps }: MediaCardProps) =>
|
|
22816
|
+
declare const MediaCard: ({ title, subtitle, infoPopover, cover, menuItems, sideSection, onClick, buttonType, ...cardProps }: MediaCardProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22461
22817
|
|
|
22462
22818
|
type ModalProps = {
|
|
22463
22819
|
header?: React__default.ReactNode;
|
|
@@ -22479,6 +22835,8 @@ type ModalProps = {
|
|
|
22479
22835
|
wrapperClassName?: string;
|
|
22480
22836
|
/** Removes the default padding on the content wrapper */
|
|
22481
22837
|
withoutContentPadding?: boolean;
|
|
22838
|
+
/** Removes the default background color of the content wrapper */
|
|
22839
|
+
withoutContentBackground?: boolean;
|
|
22482
22840
|
/** Places buttons at the bottom of the modal */
|
|
22483
22841
|
buttonGroup?: ReactNode;
|
|
22484
22842
|
} & React__default.HTMLProps<HTMLDialogElement>;
|
|
@@ -22491,12 +22849,138 @@ declare const Modal: React__default.ForwardRefExoticComponent<Omit<ModalProps, "
|
|
|
22491
22849
|
type ModalDialogProps = Omit<ModalProps, 'width'>;
|
|
22492
22850
|
declare const ModalDialog: React$1.ForwardRefExoticComponent<Omit<ModalDialogProps, "ref"> & React$1.RefAttributes<HTMLDialogElement>>;
|
|
22493
22851
|
|
|
22852
|
+
type ObjectGridContainerProps = {
|
|
22853
|
+
/** The number of columns in the grid */
|
|
22854
|
+
gridCount?: number;
|
|
22855
|
+
/** The children to render */
|
|
22856
|
+
children: React.ReactNode;
|
|
22857
|
+
};
|
|
22858
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22859
|
+
|
|
22860
|
+
type ObjectHeadingProps = {
|
|
22861
|
+
/** sets the heading value */
|
|
22862
|
+
heading: string;
|
|
22863
|
+
/** Slot that renders a component before the heading */
|
|
22864
|
+
beforeHeadingSlot?: ReactNode;
|
|
22865
|
+
/** Slot that renders a component after the heading */
|
|
22866
|
+
afterHeadingSlot?: ReactNode;
|
|
22867
|
+
};
|
|
22868
|
+
type ObjectItemProps = {
|
|
22869
|
+
/** Slot for the header component, we recommend using <ObjectGridItemHeading /> or <ObjectListItemHeading /> */
|
|
22870
|
+
header: ReactNode;
|
|
22871
|
+
/** Slot for the cover component, we recommend using <ObjectGridItemCoverButton />, <ObjectGridItemCover /> or <ObjectListItemCover /> */
|
|
22872
|
+
cover: ReactNode;
|
|
22873
|
+
/** Slot for the right component */
|
|
22874
|
+
rightSlot?: React.ReactNode;
|
|
22875
|
+
/** Slot for the menu items, <MenuItem /> component should be used here */
|
|
22876
|
+
menuItems?: React.ReactNode;
|
|
22877
|
+
/** If the item is selected */
|
|
22878
|
+
isSelected?: boolean;
|
|
22879
|
+
/** Slot for the children */
|
|
22880
|
+
children?: React.ReactNode;
|
|
22881
|
+
};
|
|
22882
|
+
|
|
22883
|
+
type ObjectGridItemProps = ObjectItemProps & {
|
|
22884
|
+
isSelected?: boolean;
|
|
22885
|
+
};
|
|
22886
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22887
|
+
|
|
22888
|
+
type ObjectGridItemCardCoverProps = {
|
|
22889
|
+
icon: IconType;
|
|
22890
|
+
} | {
|
|
22891
|
+
imageUrl: string;
|
|
22892
|
+
};
|
|
22893
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
22894
|
+
type ObjectGridItemCoverProps = {
|
|
22895
|
+
/** The left slot to render components */
|
|
22896
|
+
coverSlotLeft?: React.ReactNode;
|
|
22897
|
+
/** The right slot to render components */
|
|
22898
|
+
coverSlotRight?: React.ReactNode;
|
|
22899
|
+
} & ObjectGridItemCardCoverProps;
|
|
22900
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22901
|
+
type ObjectGridItemCoverButtonProps = {
|
|
22902
|
+
id: string;
|
|
22903
|
+
onSelection: (id: string) => void;
|
|
22904
|
+
isSelected: boolean;
|
|
22905
|
+
selectedText?: string;
|
|
22906
|
+
} & ObjectGridItemCoverProps;
|
|
22907
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22908
|
+
|
|
22909
|
+
type ObjectGridItemTitleProps = ObjectHeadingProps;
|
|
22910
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22911
|
+
|
|
22912
|
+
type ObjectGridItemIconWithTooltipProps = {
|
|
22913
|
+
/** The title of the tooltip */
|
|
22914
|
+
tooltipTitle: string;
|
|
22915
|
+
/** The icon to display */
|
|
22916
|
+
icon: IconType;
|
|
22917
|
+
/** The color of the icon */
|
|
22918
|
+
iconColor?: IconColor;
|
|
22919
|
+
} & Pick<TooltipProps, 'placement'>;
|
|
22920
|
+
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22921
|
+
|
|
22922
|
+
/** @deprecated - Beta Object grid loading skeleton component
|
|
22923
|
+
* @example <ObjectGridItemLoadingSkeleton />
|
|
22924
|
+
*/
|
|
22925
|
+
declare const ObjectGridItemLoadingSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
22926
|
+
|
|
22927
|
+
/** @deprecated - Beta Object item loading skeleton component */
|
|
22928
|
+
type ObjectItemLoadingSkeletonProps = {
|
|
22929
|
+
/** Show cover image loading skeleton */
|
|
22930
|
+
showCover?: boolean;
|
|
22931
|
+
/** Render as single or multi
|
|
22932
|
+
* @default 'single'
|
|
22933
|
+
*/
|
|
22934
|
+
renderAs?: 'single' | 'multi';
|
|
22935
|
+
};
|
|
22936
|
+
/** @deprecated - Beta Object item loading skeleton component
|
|
22937
|
+
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22938
|
+
*/
|
|
22939
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22940
|
+
|
|
22941
|
+
/** @deprecated - Beta Object list item component */
|
|
22942
|
+
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22943
|
+
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22944
|
+
cover?: ReactNode;
|
|
22945
|
+
dragHandle?: ReactNode;
|
|
22946
|
+
renderAs?: 'single';
|
|
22947
|
+
};
|
|
22948
|
+
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22949
|
+
cover?: ReactNode;
|
|
22950
|
+
dragHandle?: ReactNode;
|
|
22951
|
+
renderAs?: 'multi';
|
|
22952
|
+
children?: ReactNode;
|
|
22953
|
+
};
|
|
22954
|
+
/** @deprecated - beta Object list item component */
|
|
22955
|
+
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22956
|
+
|
|
22957
|
+
/** @deprecated - Beta Object list item container component */
|
|
22958
|
+
declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22959
|
+
|
|
22960
|
+
/** @deprecated - Beta Object list item cover component */
|
|
22961
|
+
type ObjectListItemCoverProps = {
|
|
22962
|
+
imageUrl?: string;
|
|
22963
|
+
/** (optional) sets the text to display when there is no image
|
|
22964
|
+
* @default 'Image not available'
|
|
22965
|
+
*/
|
|
22966
|
+
noImageText?: string;
|
|
22967
|
+
} & HTMLAttributes<HTMLImageElement>;
|
|
22968
|
+
/** @deprecated - beta Object list item cover component */
|
|
22969
|
+
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22970
|
+
|
|
22971
|
+
/** @deprecated - Beta Object list item heading component */
|
|
22972
|
+
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
22973
|
+
heading: ReactNode;
|
|
22974
|
+
};
|
|
22975
|
+
/** @deprecated - beta Object list item heading component */
|
|
22976
|
+
declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22977
|
+
|
|
22494
22978
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22495
22979
|
limit: number;
|
|
22496
22980
|
offset: number;
|
|
22497
22981
|
total: number;
|
|
22498
22982
|
onPageChange: (limit: number, offset: number) => void;
|
|
22499
|
-
}):
|
|
22983
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22500
22984
|
|
|
22501
22985
|
type CommonParameterProps = {
|
|
22502
22986
|
/** sets the label value */
|
|
@@ -22572,9 +23056,9 @@ type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
|
22572
23056
|
/** Disables hover state, sets aria-disabled */
|
|
22573
23057
|
isLocked?: boolean;
|
|
22574
23058
|
};
|
|
22575
|
-
declare const LabelLeadingIcon: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) =>
|
|
23059
|
+
declare const LabelLeadingIcon: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22576
23060
|
/** @deprecated use LabelLeadingIcon */
|
|
22577
|
-
declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) =>
|
|
23061
|
+
declare const ConnectToDataElementButton: ({ icon, iconColor, children, isBound, isActive, isLocked, title, ...props }: ConnectToDataElementButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22578
23062
|
|
|
22579
23063
|
type ParameterDataConnectButtonProps = {
|
|
22580
23064
|
/** Sets the label value */
|
|
@@ -22596,14 +23080,17 @@ type ParameterDataConnectButtonProps = {
|
|
|
22596
23080
|
* @example <ParameterDataConnectButton label="label" id="connect-data-button" onConnectDatasource={() => myFunction()}>Button Text</ParameterDataConnectButton>
|
|
22597
23081
|
* @deprecated no longer used in uniform UI
|
|
22598
23082
|
*/
|
|
22599
|
-
declare function ParameterDataResource({ label, labelLeadingIcon, id, onConnectDatasource, caption, disabled, children, }: ParameterDataConnectButtonProps):
|
|
23083
|
+
declare function ParameterDataResource({ label, labelLeadingIcon, id, onConnectDatasource, caption, disabled, children, }: ParameterDataConnectButtonProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22600
23084
|
|
|
22601
23085
|
type ParameterDrawerHeaderProps = {
|
|
22602
23086
|
title: string;
|
|
22603
23087
|
iconBeforeTitle?: ReactNode;
|
|
22604
23088
|
children?: ReactNode;
|
|
22605
23089
|
};
|
|
22606
|
-
|
|
23090
|
+
/**
|
|
23091
|
+
* @deprecated use <Drawer heading={"Hi!"} /> instead, to use default drawer heading styles
|
|
23092
|
+
*/
|
|
23093
|
+
declare const ParameterDrawerHeader: ({ title, iconBeforeTitle, children }: ParameterDrawerHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22607
23094
|
|
|
22608
23095
|
type ParameterGroupProps = React.HTMLAttributes<HTMLFieldSetElement> & {
|
|
22609
23096
|
/** sets the legend value */
|
|
@@ -22617,7 +23104,7 @@ declare const ParameterGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttr
|
|
|
22617
23104
|
/** sets the legend value */
|
|
22618
23105
|
legend: string | JSX.Element;
|
|
22619
23106
|
/** (optional) - sets a disabled attribute at the field level disabling all child input fields and buttons */
|
|
22620
|
-
isDisabled?: boolean
|
|
23107
|
+
isDisabled?: boolean;
|
|
22621
23108
|
children: ReactNode;
|
|
22622
23109
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
22623
23110
|
|
|
@@ -22628,27 +23115,27 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
22628
23115
|
/** @Example <ParameterImage {...inputArgs} value={value} onChange={(e) => setValue(e.currentTarget.value)} /> */
|
|
22629
23116
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22630
23117
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
22631
|
-
disablePreview?: boolean
|
|
23118
|
+
disablePreview?: boolean;
|
|
22632
23119
|
} & {
|
|
22633
|
-
children?: React__default.ReactNode;
|
|
23120
|
+
children?: React__default.ReactNode | undefined;
|
|
22634
23121
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22635
23122
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
22636
|
-
disablePreview?: boolean
|
|
23123
|
+
disablePreview?: boolean;
|
|
22637
23124
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
22638
23125
|
|
|
22639
23126
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
22640
23127
|
imageSrc: string;
|
|
22641
|
-
}):
|
|
23128
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22642
23129
|
|
|
22643
23130
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
22644
23131
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|
|
22645
23132
|
declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
22646
|
-
caption?: string
|
|
23133
|
+
caption?: string;
|
|
22647
23134
|
menuItems?: React$1.ReactNode;
|
|
22648
|
-
actionItems?: React
|
|
22649
|
-
errorTestId?: string
|
|
22650
|
-
captionTestId?: string
|
|
22651
|
-
title?: string
|
|
23135
|
+
actionItems?: React.ReactNode;
|
|
23136
|
+
errorTestId?: string;
|
|
23137
|
+
captionTestId?: string;
|
|
23138
|
+
title?: string;
|
|
22652
23139
|
} & React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
22653
23140
|
declare const ParameterInputInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
22654
23141
|
|
|
@@ -22660,7 +23147,7 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
|
22660
23147
|
asSpan?: boolean;
|
|
22661
23148
|
};
|
|
22662
23149
|
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
22663
|
-
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) =>
|
|
23150
|
+
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22664
23151
|
|
|
22665
23152
|
type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
22666
23153
|
/** (optional) sets the button text when value is empty
|
|
@@ -22675,22 +23162,22 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
|
|
|
22675
23162
|
};
|
|
22676
23163
|
/** @example <ParameterLink label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
22677
23164
|
declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
22678
|
-
caption?: string
|
|
23165
|
+
caption?: string;
|
|
22679
23166
|
menuItems?: React$1.ReactNode;
|
|
22680
|
-
actionItems?: React
|
|
22681
|
-
errorTestId?: string
|
|
22682
|
-
captionTestId?: string
|
|
22683
|
-
title?: string
|
|
23167
|
+
actionItems?: React.ReactNode;
|
|
23168
|
+
errorTestId?: string;
|
|
23169
|
+
captionTestId?: string;
|
|
23170
|
+
title?: string;
|
|
22684
23171
|
} & React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
22685
23172
|
/** (optional) sets the button text when value is empty
|
|
22686
23173
|
* @default 'Configure link'
|
|
22687
23174
|
*/
|
|
22688
|
-
buttonText?: string
|
|
23175
|
+
buttonText?: string;
|
|
22689
23176
|
/** sets the button function */
|
|
22690
23177
|
onConnectLink: () => void;
|
|
22691
23178
|
/** sets the disabled state of the button, useful for permissions */
|
|
22692
|
-
disabled?: boolean
|
|
22693
|
-
externalLink?: string
|
|
23179
|
+
disabled?: boolean;
|
|
23180
|
+
externalLink?: string;
|
|
22694
23181
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
22695
23182
|
declare const ParameterLinkInner: React$1.ForwardRefExoticComponent<Omit<ParameterLinkProps, "label" | "id"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
22696
23183
|
|
|
@@ -22702,6 +23189,20 @@ type ParameterMenuButtonProps = {
|
|
|
22702
23189
|
/** @example <ParameterMenuButton label="label value"><MenuItem>menu option component</MenuItem></ParameterMenuButton> */
|
|
22703
23190
|
declare const ParameterMenuButton: React$1.ForwardRefExoticComponent<ParameterMenuButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22704
23191
|
|
|
23192
|
+
type ParameterMultiSelectOption = InputComboBoxOption;
|
|
23193
|
+
type ParameterMultiSelectInnerProps = Pick<InputComboBoxProps<ParameterMultiSelectOption, true>, 'options' | 'value' | 'defaultValue' | 'onChange' | 'onBlur' | 'isClearable' | 'isDisabled'>;
|
|
23194
|
+
type ParameterMultiSelectProps = CommonParameterInputProps & ParameterMultiSelectInnerProps & {
|
|
23195
|
+
disabled?: boolean;
|
|
23196
|
+
};
|
|
23197
|
+
/**
|
|
23198
|
+
* @deprecated beta
|
|
23199
|
+
* @example <ParameterMultiSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
23200
|
+
declare const ParameterMultiSelect: ({ disabled, ...props }: ParameterMultiSelectProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23201
|
+
/**
|
|
23202
|
+
* @deprecated beta
|
|
23203
|
+
* @example <ParameterMultiSelectInner options={[{ label: 'option label', value: 0}]} />*/
|
|
23204
|
+
declare const ParameterMultiSelectInner: (props: ParameterMultiSelectInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23205
|
+
|
|
22705
23206
|
type ParameterNameAndPublicIdInputProps = {
|
|
22706
23207
|
id?: undefined | string;
|
|
22707
23208
|
/** sets the label for the name input field
|
|
@@ -22751,7 +23252,7 @@ type ParameterNameAndPublicIdInputProps = {
|
|
|
22751
23252
|
hasInitialPublicIdField?: boolean;
|
|
22752
23253
|
};
|
|
22753
23254
|
/** @example <ParameterNameAndPublicIdInput /> */
|
|
22754
|
-
declare const ParameterNameAndPublicIdInput: ({ id, onBlur, autoFocus, onNameChange, onPublicIdChange, nameIdError, publicIdError, readOnly, hasInitialPublicIdField, label, warnOverLength, nameIdField, nameCaption, namePlaceholderText, publicIdFieldName, publicIdCaption, publicIdPlaceholderText, values, }: ParameterNameAndPublicIdInputProps) =>
|
|
23255
|
+
declare const ParameterNameAndPublicIdInput: ({ id, onBlur, autoFocus, onNameChange, onPublicIdChange, nameIdError, publicIdError, readOnly, hasInitialPublicIdField, label, warnOverLength, nameIdField, nameCaption, namePlaceholderText, publicIdFieldName, publicIdCaption, publicIdPlaceholderText, values, }: ParameterNameAndPublicIdInputProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22755
23256
|
|
|
22756
23257
|
type LinkNodeProps = NonNullable<LinkParamValue>;
|
|
22757
23258
|
type SerializedLinkNode = Spread<{
|
|
@@ -22783,6 +23284,7 @@ type LinkNodePluginProps = {
|
|
|
22783
23284
|
onSetValue: (value: LinkParamValue) => void;
|
|
22784
23285
|
}) => Promise<void>;
|
|
22785
23286
|
getBoundPath?: (path: string) => string;
|
|
23287
|
+
positioningAnchorEl: HTMLElement;
|
|
22786
23288
|
};
|
|
22787
23289
|
|
|
22788
23290
|
declare const richTextToolbarButton: _emotion_react.SerializedStyles;
|
|
@@ -22790,20 +23292,56 @@ declare const richTextToolbarButtonActive: _emotion_react.SerializedStyles;
|
|
|
22790
23292
|
type RichTextToolbarIconProps = {
|
|
22791
23293
|
icon: IconType;
|
|
22792
23294
|
};
|
|
22793
|
-
declare const RichTextToolbarIcon: ({ icon }: RichTextToolbarIconProps) =>
|
|
23295
|
+
declare const RichTextToolbarIcon: ({ icon }: RichTextToolbarIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22794
23296
|
type RichTextToolbarProps = {
|
|
22795
23297
|
config?: RichTextParamConfiguration;
|
|
22796
23298
|
/** Variables */
|
|
22797
23299
|
customControls?: React.ReactElement;
|
|
23300
|
+
onInsertTable?: () => Promise<{
|
|
23301
|
+
rows: number;
|
|
23302
|
+
columns: number;
|
|
23303
|
+
} | null>;
|
|
23304
|
+
};
|
|
23305
|
+
type UseRichTextToolbarStateProps = {
|
|
23306
|
+
config?: RichTextParamConfiguration;
|
|
23307
|
+
};
|
|
23308
|
+
declare const useRichTextToolbarState: ({ config }: UseRichTextToolbarStateProps) => {
|
|
23309
|
+
activeFormats: _uniformdev_richtext.RichTextBuiltInFormat[];
|
|
23310
|
+
setActiveFormats: React$1.Dispatch<React$1.SetStateAction<_uniformdev_richtext.RichTextBuiltInFormat[]>>;
|
|
23311
|
+
activeElement: "paragraph" | _uniformdev_richtext.RichTextBuiltInElement;
|
|
23312
|
+
setActiveElement: React$1.Dispatch<React$1.SetStateAction<"paragraph" | _uniformdev_richtext.RichTextBuiltInElement>>;
|
|
23313
|
+
visibleFormatsWithIcon: {
|
|
23314
|
+
label: string;
|
|
23315
|
+
type: _uniformdev_richtext.RichTextBuiltInFormat;
|
|
23316
|
+
}[];
|
|
23317
|
+
visibleFormatsWithoutIcon: {
|
|
23318
|
+
label: string;
|
|
23319
|
+
type: _uniformdev_richtext.RichTextBuiltInFormat;
|
|
23320
|
+
}[];
|
|
23321
|
+
visibleTextualElements: {
|
|
23322
|
+
label: string;
|
|
23323
|
+
type: _uniformdev_richtext.RichTextBuiltInElement;
|
|
23324
|
+
}[];
|
|
23325
|
+
isLink: boolean;
|
|
23326
|
+
setIsLink: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
23327
|
+
linkElementVisible: boolean;
|
|
23328
|
+
visibleLists: Set<string>;
|
|
23329
|
+
quoteElementVisible: boolean;
|
|
23330
|
+
codeElementVisible: boolean;
|
|
23331
|
+
tableElementVisible: boolean;
|
|
23332
|
+
visibleElementsWithIcons: Set<string>;
|
|
23333
|
+
visibleInsertElementsWithIcons: Set<string>;
|
|
22798
23334
|
};
|
|
22799
23335
|
|
|
22800
23336
|
type RichTextProps = {
|
|
22801
23337
|
config?: RichTextParamConfiguration;
|
|
22802
|
-
onChange?: (value: SerializedEditorState) => void;
|
|
23338
|
+
onChange?: (value: SerializedEditorState, tags: Set<string>) => void;
|
|
22803
23339
|
onConnectLink?: LinkNodePluginProps['onConnectLink'];
|
|
22804
23340
|
onRichTextInit?: (editor: LexicalEditor) => void;
|
|
22805
23341
|
readOnly?: boolean;
|
|
23342
|
+
minimalInteractivity?: boolean;
|
|
22806
23343
|
editorInputClassName?: string;
|
|
23344
|
+
editorInputWrapperClassName?: string;
|
|
22807
23345
|
/** Register additional custom node types to the RTE */
|
|
22808
23346
|
customNodes?: InitialConfigType['nodes'];
|
|
22809
23347
|
/** Children allows registering custom Lexical plugins */
|
|
@@ -22814,6 +23352,11 @@ type RichTextProps = {
|
|
|
22814
23352
|
};
|
|
22815
23353
|
/** Rich Text Toolbar custom controls */
|
|
22816
23354
|
customControls?: RichTextToolbarProps['customControls'];
|
|
23355
|
+
/** Tables */
|
|
23356
|
+
onInsertTable?: () => Promise<{
|
|
23357
|
+
rows: number;
|
|
23358
|
+
columns: number;
|
|
23359
|
+
} | null>;
|
|
22817
23360
|
};
|
|
22818
23361
|
type RichTextParamValue = SerializedEditorState | undefined | null;
|
|
22819
23362
|
type ParameterRichTextInnerProps = RichTextProps & {
|
|
@@ -22822,32 +23365,25 @@ type ParameterRichTextInnerProps = RichTextProps & {
|
|
|
22822
23365
|
editorFooter?: React.ReactNode;
|
|
22823
23366
|
};
|
|
22824
23367
|
type ParameterRichTextProps = CommonParameterInputProps & ParameterRichTextInnerProps;
|
|
22825
|
-
declare const ParameterRichText: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, customNodes, children, variables, customControls, }: ParameterRichTextProps) =>
|
|
22826
|
-
declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, children, customNodes, variables, customControls, }: ParameterRichTextInnerProps) =>
|
|
23368
|
+
declare const ParameterRichText: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorInputWrapperClassName, editorFooter, customNodes, children, variables, customControls, onInsertTable, minimalInteractivity, }: ParameterRichTextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23369
|
+
declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorInputWrapperClassName, editorFooter, children, customNodes, variables, customControls, onInsertTable, minimalInteractivity, }: ParameterRichTextInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22827
23370
|
|
|
22828
23371
|
type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectProps & React.InputHTMLAttributes<HTMLSelectElement>;
|
|
22829
23372
|
/** @example <ParameterSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
22830
23373
|
declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
22831
|
-
caption?: string
|
|
23374
|
+
caption?: string;
|
|
22832
23375
|
menuItems?: React$1.ReactNode;
|
|
22833
|
-
actionItems?: React
|
|
22834
|
-
errorTestId?: string
|
|
22835
|
-
captionTestId?: string
|
|
22836
|
-
title?: string
|
|
23376
|
+
actionItems?: React.ReactNode;
|
|
23377
|
+
errorTestId?: string;
|
|
23378
|
+
captionTestId?: string;
|
|
23379
|
+
title?: string;
|
|
22837
23380
|
} & CommonParameterSelectProps & React$1.InputHTMLAttributes<HTMLSelectElement> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
22838
23381
|
/** @example <ParameterSelectInner options={[{ label: 'option label', value: 0}]} />*/
|
|
22839
23382
|
declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<ParameterSelectProps, "label" | "id"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
22840
23383
|
|
|
22841
23384
|
/** A function that extracts all common props and element props
|
|
22842
23385
|
* @example const { shellProps, innerProps } = extractParameterProps(props) */
|
|
22843
|
-
declare const extractParameterProps: <T>(props: T &
|
|
22844
|
-
caption?: string | undefined;
|
|
22845
|
-
menuItems?: ReactNode;
|
|
22846
|
-
actionItems?: ReactNode;
|
|
22847
|
-
errorTestId?: string | undefined;
|
|
22848
|
-
captionTestId?: string | undefined;
|
|
22849
|
-
title?: string | undefined;
|
|
22850
|
-
}) => {
|
|
23386
|
+
declare const extractParameterProps: <T>(props: T & CommonParameterInputProps) => {
|
|
22851
23387
|
shellProps: {
|
|
22852
23388
|
id: string;
|
|
22853
23389
|
label: string;
|
|
@@ -22865,13 +23401,13 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
|
|
|
22865
23401
|
onResetOverriddenValue: (() => void) | undefined;
|
|
22866
23402
|
};
|
|
22867
23403
|
innerProps: Omit<T & CommonParameterProps & {
|
|
22868
|
-
caption?: string
|
|
23404
|
+
caption?: string;
|
|
22869
23405
|
menuItems?: ReactNode;
|
|
22870
|
-
actionItems?: ReactNode;
|
|
22871
|
-
errorTestId?: string
|
|
22872
|
-
captionTestId?: string
|
|
22873
|
-
title?: string
|
|
22874
|
-
}, "caption" | "label" | "title" | "id" | "
|
|
23406
|
+
actionItems?: React.ReactNode;
|
|
23407
|
+
errorTestId?: string;
|
|
23408
|
+
captionTestId?: string;
|
|
23409
|
+
title?: string;
|
|
23410
|
+
}, "caption" | "label" | "title" | "id" | "warningMessage" | "errorMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "menuItems" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
|
|
22875
23411
|
};
|
|
22876
23412
|
type ParameterShellOverrideProps = {
|
|
22877
23413
|
/** sets overriding parameters indicator
|
|
@@ -22893,22 +23429,22 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
|
|
|
22893
23429
|
* Uniform Parameter shell component
|
|
22894
23430
|
* @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
|
|
22895
23431
|
*/
|
|
22896
|
-
declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, isParameterGroup, ...props }: ParameterShellProps) =>
|
|
23432
|
+
declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, isParameterGroup, ...props }: ParameterShellProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22897
23433
|
declare const ParameterShellPlaceholder: ({ children }: {
|
|
22898
23434
|
children?: ReactNode;
|
|
22899
|
-
}) =>
|
|
23435
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22900
23436
|
/** @deprecated */
|
|
22901
|
-
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) =>
|
|
23437
|
+
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22902
23438
|
|
|
22903
23439
|
type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
22904
23440
|
/** @example <ParameterTextarea label="label value" id="my-textarea" /> */
|
|
22905
23441
|
declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
22906
|
-
caption?: string
|
|
23442
|
+
caption?: string;
|
|
22907
23443
|
menuItems?: React$1.ReactNode;
|
|
22908
|
-
actionItems?: React
|
|
22909
|
-
errorTestId?: string
|
|
22910
|
-
captionTestId?: string
|
|
22911
|
-
title?: string
|
|
23444
|
+
actionItems?: React.ReactNode;
|
|
23445
|
+
errorTestId?: string;
|
|
23446
|
+
captionTestId?: string;
|
|
23447
|
+
title?: string;
|
|
22912
23448
|
} & React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
22913
23449
|
/** @example <ParameterTextareaInner /> */
|
|
22914
23450
|
declare const ParameterTextareaInner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -22918,14 +23454,14 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
|
|
|
22918
23454
|
};
|
|
22919
23455
|
/** @example <ParameterToggle title="my checkbox" label="label value" id="my-checkbox" type="checkbox" onIconClick={() => alert('icon clicked)} /> */
|
|
22920
23456
|
declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
|
|
22921
|
-
caption?: string
|
|
23457
|
+
caption?: string;
|
|
22922
23458
|
menuItems?: React$1.ReactNode;
|
|
22923
|
-
actionItems?: React
|
|
22924
|
-
errorTestId?: string
|
|
22925
|
-
captionTestId?: string
|
|
22926
|
-
title?: string
|
|
23459
|
+
actionItems?: React.ReactNode;
|
|
23460
|
+
errorTestId?: string;
|
|
23461
|
+
captionTestId?: string;
|
|
23462
|
+
title?: string;
|
|
22927
23463
|
} & {
|
|
22928
|
-
type:
|
|
23464
|
+
type: "checkbox" | "radio";
|
|
22929
23465
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
22930
23466
|
declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
22931
23467
|
|
|
@@ -22957,8 +23493,23 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
22957
23493
|
trigger?: ReactNode;
|
|
22958
23494
|
/** @deprecated */
|
|
22959
23495
|
baseId?: string;
|
|
23496
|
+
onInit?: ({ store }: {
|
|
23497
|
+
store: PopoverStore;
|
|
23498
|
+
}) => void;
|
|
23499
|
+
/**
|
|
23500
|
+
* Valid CSS unit to set the maximum popover width
|
|
23501
|
+
* @default '220px'
|
|
23502
|
+
*/
|
|
23503
|
+
maxWidth?: string;
|
|
22960
23504
|
};
|
|
22961
|
-
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, ...otherProps }: PopoverProps) =>
|
|
23505
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23506
|
+
/**
|
|
23507
|
+
* Hook to get the current popover context
|
|
23508
|
+
* @description This hook is used to get the current popover context
|
|
23509
|
+
* useful for closing the popover with a nested button or interative element
|
|
23510
|
+
* @example const currentPopoverContext = usePopoverComponentContext();
|
|
23511
|
+
*/
|
|
23512
|
+
declare const usePopoverComponentContext: () => PopoverStore | undefined;
|
|
22962
23513
|
|
|
22963
23514
|
interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
22964
23515
|
current: number;
|
|
@@ -22969,7 +23520,7 @@ interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
22969
23520
|
/**
|
|
22970
23521
|
* @deprecated This component is in beta, and might receive breaking changes in minor releases!
|
|
22971
23522
|
*/
|
|
22972
|
-
declare function ProgressBar({ current, max, theme, variant, ...props }: ProgressBarProps):
|
|
23523
|
+
declare function ProgressBar({ current, max, theme, variant, ...props }: ProgressBarProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22973
23524
|
|
|
22974
23525
|
type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
|
|
22975
23526
|
type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
@@ -22987,7 +23538,7 @@ type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
|
22987
23538
|
* Component that sets the base structure for scrollable content in a max height container
|
|
22988
23539
|
* @example <ProgressList items={[{ id: 'step1', label: 'Step 1' }, { id: 'step2', label: 'Step 2' }]} />
|
|
22989
23540
|
*/
|
|
22990
|
-
declare const ProgressList: ({ inProgressId, items, autoEllipsis, ...htmlProps }: ProgressListProps) =>
|
|
23541
|
+
declare const ProgressList: ({ inProgressId, items, autoEllipsis, ...htmlProps }: ProgressListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22991
23542
|
type ProgressListItemProps = React__default.HTMLAttributes<HTMLLIElement> & {
|
|
22992
23543
|
/** The status of the item. Defaults to 'queued' */
|
|
22993
23544
|
status?: ProgressListItemStatus;
|
|
@@ -23006,333 +23557,7 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
23006
23557
|
* */
|
|
23007
23558
|
errorLevel?: 'danger' | 'caution';
|
|
23008
23559
|
};
|
|
23009
|
-
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) =>
|
|
23010
|
-
|
|
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;
|
|
23560
|
+
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23336
23561
|
|
|
23337
23562
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
23338
23563
|
value: TValue;
|
|
@@ -23340,6 +23565,7 @@ type SegmentedControlOption<TValue extends string = string> = {
|
|
|
23340
23565
|
icon?: IconType;
|
|
23341
23566
|
tooltip?: string;
|
|
23342
23567
|
disabled?: boolean;
|
|
23568
|
+
'data-testid'?: string;
|
|
23343
23569
|
};
|
|
23344
23570
|
type SegmentedControlProps<TValue extends string = string> = Omit<React__default.HTMLAttributes<HTMLDivElement>, 'onChange'> & {
|
|
23345
23571
|
/** A unique name for the component, used to group the options */
|
|
@@ -23363,33 +23589,24 @@ type SegmentedControlProps<TValue extends string = string> = Omit<React__default
|
|
|
23363
23589
|
* The size of the input
|
|
23364
23590
|
* @default 'md'
|
|
23365
23591
|
*/
|
|
23366
|
-
size?: 'sm' | 'md' | 'lg';
|
|
23592
|
+
size?: 'sm' | 'md' | 'lg' | 'xl';
|
|
23593
|
+
/** Hides the text of the options */
|
|
23594
|
+
hideOptionText?: boolean;
|
|
23595
|
+
/** The size of the icon
|
|
23596
|
+
* @default '1.5em'
|
|
23597
|
+
*/
|
|
23598
|
+
iconSize?: string;
|
|
23599
|
+
/**
|
|
23600
|
+
* This is used to match the color of the scroll indicators with the background color of the parent.
|
|
23601
|
+
* @default 'white'
|
|
23602
|
+
*/
|
|
23603
|
+
currentBackgroundColor?: React__default.CSSProperties['backgroundColor'];
|
|
23367
23604
|
};
|
|
23368
23605
|
/**
|
|
23369
|
-
*
|
|
23606
|
+
* A control with multiple segments. Can be used as a replacement of radio buttons.
|
|
23370
23607
|
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
23371
23608
|
*/
|
|
23372
|
-
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, ...props }: SegmentedControlProps<TValue>) =>
|
|
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>>;
|
|
23609
|
+
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, hideOptionText, iconSize, currentBackgroundColor, ...props }: SegmentedControlProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23393
23610
|
|
|
23394
23611
|
type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
23395
23612
|
width?: string;
|
|
@@ -23401,17 +23618,19 @@ type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttribu
|
|
|
23401
23618
|
* A loading skeleton
|
|
23402
23619
|
* @example <Skeleton width="50%" height="32px" />
|
|
23403
23620
|
*/
|
|
23404
|
-
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) =>
|
|
23621
|
+
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23405
23622
|
|
|
23406
|
-
type SwitchProps = Omit<React
|
|
23623
|
+
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
23407
23624
|
/** sets the label value */
|
|
23408
|
-
label:
|
|
23625
|
+
label: ReactNode;
|
|
23409
23626
|
/** (optional) sets information text */
|
|
23410
23627
|
infoText?: string;
|
|
23411
23628
|
/** sets the toggle text value */
|
|
23412
23629
|
toggleText?: string;
|
|
23413
23630
|
/** sets child elements */
|
|
23414
|
-
children?:
|
|
23631
|
+
children?: ReactNode;
|
|
23632
|
+
/** the size of the control */
|
|
23633
|
+
switchSize?: 'base' | 'sm';
|
|
23415
23634
|
};
|
|
23416
23635
|
/**
|
|
23417
23636
|
* Uniform Switch Input Component
|
|
@@ -23420,13 +23639,15 @@ type SwitchProps = Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'type'> &
|
|
|
23420
23639
|
*/
|
|
23421
23640
|
declare const Switch: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & {
|
|
23422
23641
|
/** sets the label value */
|
|
23423
|
-
label:
|
|
23642
|
+
label: ReactNode;
|
|
23424
23643
|
/** (optional) sets information text */
|
|
23425
|
-
infoText?: string
|
|
23644
|
+
infoText?: string;
|
|
23426
23645
|
/** sets the toggle text value */
|
|
23427
|
-
toggleText?: string
|
|
23646
|
+
toggleText?: string;
|
|
23428
23647
|
/** sets child elements */
|
|
23429
|
-
children?:
|
|
23648
|
+
children?: ReactNode;
|
|
23649
|
+
/** the size of the control */
|
|
23650
|
+
switchSize?: "base" | "sm";
|
|
23430
23651
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23431
23652
|
|
|
23432
23653
|
type TableProps = {
|
|
@@ -23468,7 +23689,7 @@ declare const Table: React$1.ForwardRefExoticComponent<{
|
|
|
23468
23689
|
/** The CSS padding of the table cells (includes the head cells as well).
|
|
23469
23690
|
* @default 'var(--spacing-base) var(--spacing-md)'
|
|
23470
23691
|
*/
|
|
23471
|
-
cellPadding?: string
|
|
23692
|
+
cellPadding?: string;
|
|
23472
23693
|
} & Omit<Omit<React$1.DetailedHTMLProps<React$1.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">, "cellPadding"> & React$1.RefAttributes<HTMLTableElement>>;
|
|
23473
23694
|
declare const TableHead: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
23474
23695
|
declare const TableBody: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -23489,18 +23710,18 @@ type TabsProps<TTabName extends string = string> = {
|
|
|
23489
23710
|
*/
|
|
23490
23711
|
useHashForState?: boolean;
|
|
23491
23712
|
};
|
|
23492
|
-
declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, ...props }: TabsProps<TTabName>) =>
|
|
23493
|
-
declare const TabButtonGroup: ({ children, ...props }: Partial<TabListProps>) =>
|
|
23713
|
+
declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, ...props }: TabsProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23714
|
+
declare const TabButtonGroup: ({ children, ...props }: Partial<TabListProps>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23494
23715
|
type TabButtonProps<TTabName extends string = string> = Partial<TabProps> & {
|
|
23495
23716
|
id: TTabName;
|
|
23496
23717
|
children: React__default.ReactNode;
|
|
23497
23718
|
};
|
|
23498
|
-
declare const TabButton: <TTabName extends string = string>({ children, id, ...props }: TabButtonProps<TTabName>) =>
|
|
23719
|
+
declare const TabButton: <TTabName extends string = string>({ children, id, ...props }: TabButtonProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23499
23720
|
type TabContentProps<TTabName extends string = string> = Partial<TabPanelProps> & {
|
|
23500
23721
|
tabId?: TTabName;
|
|
23501
23722
|
children: React__default.ReactNode;
|
|
23502
23723
|
};
|
|
23503
|
-
declare const TabContent: <TTabName extends string = string>({ children, ...props }: TabContentProps<TTabName>) =>
|
|
23724
|
+
declare const TabContent: <TTabName extends string = string>({ children, ...props }: TabContentProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23504
23725
|
|
|
23505
23726
|
type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
23506
23727
|
/** (optional) sets the title value
|
|
@@ -23518,7 +23739,7 @@ type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
23518
23739
|
*/
|
|
23519
23740
|
asDeepLink?: boolean;
|
|
23520
23741
|
};
|
|
23521
|
-
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, ...props }: CreateTeamIntegrationTileProps) =>
|
|
23742
|
+
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, ...props }: CreateTeamIntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23522
23743
|
|
|
23523
23744
|
interface IntegrationTileFields {
|
|
23524
23745
|
icon?: string | React.ComponentType<{
|
|
@@ -23540,7 +23761,7 @@ type EditTeamIntegrationTileProps = IntegrationTileFields & {
|
|
|
23540
23761
|
/** Uniform Edit Team Integration Tile
|
|
23541
23762
|
* @example <EditTeamIntegrationTile id="example" onEdit={() => func()} canEdit={true} isPublis={true} name="example" icon="./image.svg" />
|
|
23542
23763
|
*/
|
|
23543
|
-
declare const EditTeamIntegrationTile: ({ id, icon, name, onEdit, isPublic, canEdit, }: EditTeamIntegrationTileProps) =>
|
|
23764
|
+
declare const EditTeamIntegrationTile: ({ id, icon, name, onEdit, isPublic, canEdit, }: EditTeamIntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23544
23765
|
|
|
23545
23766
|
type IntegrationComingSoonProps = IntegrationTileFields & React.HTMLAttributes<HTMLDivElement> & {
|
|
23546
23767
|
/** sets the id and data-testid value */
|
|
@@ -23556,7 +23777,7 @@ type IntegrationComingSoonProps = IntegrationTileFields & React.HTMLAttributes<H
|
|
|
23556
23777
|
* Uniform Integration Coming Soon Component
|
|
23557
23778
|
* @example <IntegrationComingSoon id="piedpiper" name="Pied Piper" icon="./piedpiper.svg" onUpVoteClick={() => someFunc()} />
|
|
23558
23779
|
*/
|
|
23559
|
-
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, ...props }: IntegrationComingSoonProps) =>
|
|
23780
|
+
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, ...props }: IntegrationComingSoonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23560
23781
|
|
|
23561
23782
|
type IntegrationLoadingTileProps = {
|
|
23562
23783
|
/** (optional) sets the number of skeletal loading elements to show
|
|
@@ -23567,7 +23788,7 @@ type IntegrationLoadingTileProps = {
|
|
|
23567
23788
|
/** Uniform Integration Loading Tile
|
|
23568
23789
|
* @example <IntegrationLoadingTile count={10} />
|
|
23569
23790
|
*/
|
|
23570
|
-
declare const IntegrationLoadingTile: ({ count }: IntegrationLoadingTileProps) =>
|
|
23791
|
+
declare const IntegrationLoadingTile: ({ count }: IntegrationLoadingTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23571
23792
|
|
|
23572
23793
|
type IntegrationModalIconProps = React$1.ImgHTMLAttributes<HTMLImageElement> & {
|
|
23573
23794
|
/** sets the icon as inline svg or img tag */
|
|
@@ -23581,7 +23802,7 @@ type IntegrationModalIconProps = React$1.ImgHTMLAttributes<HTMLImageElement> & {
|
|
|
23581
23802
|
* Uniform Integration Modal Icon
|
|
23582
23803
|
* @example <IntegrationModalIcon name="name" icon="/my-icon.svg" />
|
|
23583
23804
|
*/
|
|
23584
|
-
declare const IntegrationModalIcon: ({ icon, name, ...imgProps }: IntegrationModalIconProps) =>
|
|
23805
|
+
declare const IntegrationModalIcon: ({ icon, name, ...imgProps }: IntegrationModalIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23585
23806
|
|
|
23586
23807
|
type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
23587
23808
|
id: string;
|
|
@@ -23593,7 +23814,7 @@ type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAttributes
|
|
|
23593
23814
|
className?: string;
|
|
23594
23815
|
}> | undefined;
|
|
23595
23816
|
};
|
|
23596
|
-
declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) =>
|
|
23817
|
+
declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23597
23818
|
|
|
23598
23819
|
type ClassNameOptions = 'logo' | 'author';
|
|
23599
23820
|
type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVGElement> & React__default.ImgHTMLAttributes<HTMLImageElement> & {
|
|
@@ -23605,14 +23826,14 @@ type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVG
|
|
|
23605
23826
|
/** Uniform Resolve Icon Component
|
|
23606
23827
|
* @example <ResolveIcon icon="/my-image.png" name="my image" />
|
|
23607
23828
|
*/
|
|
23608
|
-
declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) =>
|
|
23829
|
+
declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
23609
23830
|
|
|
23610
23831
|
type TileProps = {
|
|
23611
23832
|
children: ReactNode;
|
|
23612
23833
|
disabled?: boolean;
|
|
23613
23834
|
isSelected?: boolean;
|
|
23614
23835
|
} & HtmlHTMLAttributes<HTMLButtonElement>;
|
|
23615
|
-
declare const Tile: ({ children, disabled, isSelected, ...props }: TileProps) =>
|
|
23836
|
+
declare const Tile: ({ children, disabled, isSelected, ...props }: TileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23616
23837
|
|
|
23617
23838
|
type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
23618
23839
|
/** sets the background colour of the outter container
|
|
@@ -23638,37 +23859,26 @@ type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
|
23638
23859
|
* Uniform Tile Container Component
|
|
23639
23860
|
* @example <TileContainer><div>child content</div></TileContainer>
|
|
23640
23861
|
*/
|
|
23641
|
-
declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, ...props }: TileContainerProps) =>
|
|
23862
|
+
declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, ...props }: TileContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23642
23863
|
|
|
23643
23864
|
type TileTitleProps = {
|
|
23644
23865
|
as?: 'heading' | 'description';
|
|
23645
23866
|
children: ReactNode;
|
|
23646
23867
|
} & HTMLAttributes<HTMLSpanElement>;
|
|
23647
|
-
declare const TileText: ({ as, children, ...props }: TileTitleProps) =>
|
|
23868
|
+
declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23648
23869
|
|
|
23649
23870
|
type ToastContainerProps = {
|
|
23650
23871
|
limit?: number;
|
|
23872
|
+
/** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
|
|
23873
|
+
* @default 'normal'
|
|
23874
|
+
*/
|
|
23875
|
+
autoCloseDelay?: 'normal' | 'medium' | 'long';
|
|
23651
23876
|
};
|
|
23652
23877
|
/**
|
|
23653
23878
|
* 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>
|
|
23655
|
-
*
|
|
23656
|
-
* @deprecated This component is in beta, and might receive breaking changes in minor releases!
|
|
23879
|
+
* @example <App><ToastContainer autoCloseDelay="normal" /></App>
|
|
23657
23880
|
*/
|
|
23658
|
-
declare const ToastContainer: ({ limit }: ToastContainerProps) =>
|
|
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;
|
|
23881
|
+
declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23672
23882
|
|
|
23673
23883
|
/** Available heading weights e.g. 1 - 6 */
|
|
23674
23884
|
type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -23694,8 +23904,9 @@ type HeadingProps = {
|
|
|
23694
23904
|
* Component that sets the heading tag
|
|
23695
23905
|
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
23696
23906
|
*/
|
|
23697
|
-
declare const Heading: ({ level, as, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) =>
|
|
23907
|
+
declare const Heading: ({ level, as, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23698
23908
|
|
|
23909
|
+
/** @deprecated - Integration header section props are no longer supported or maintained */
|
|
23699
23910
|
type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
23700
23911
|
/** sets the title text of the integration */
|
|
23701
23912
|
title: string;
|
|
@@ -23715,10 +23926,10 @@ type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement>
|
|
|
23715
23926
|
menu?: React$1.ReactNode;
|
|
23716
23927
|
};
|
|
23717
23928
|
/**
|
|
23718
|
-
* Uniform Integration Header Section Component
|
|
23929
|
+
* @deprecated Uniform Integration Header Section Component is no longer supported or maintained
|
|
23719
23930
|
* @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
|
|
23720
23931
|
*/
|
|
23721
|
-
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) =>
|
|
23932
|
+
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23722
23933
|
|
|
23723
23934
|
type LinkColorProps = 'currentColor' | 'destructive' | 'default';
|
|
23724
23935
|
type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
@@ -23755,16 +23966,16 @@ declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.Anchor
|
|
|
23755
23966
|
/** (optional) sets the link color
|
|
23756
23967
|
* @default 'currentColor'
|
|
23757
23968
|
*/
|
|
23758
|
-
linkColor?: LinkColorProps
|
|
23969
|
+
linkColor?: LinkColorProps;
|
|
23759
23970
|
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
23760
|
-
external?: boolean
|
|
23971
|
+
external?: boolean;
|
|
23761
23972
|
/** (optional) For supporting inside next/link component */
|
|
23762
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement
|
|
23973
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
23763
23974
|
/** (optional) sets react child elements */
|
|
23764
23975
|
children?: React$1.ReactNode;
|
|
23765
23976
|
} & {
|
|
23766
23977
|
href: string;
|
|
23767
|
-
as?: string
|
|
23978
|
+
as?: string;
|
|
23768
23979
|
linkManagerComponent: LinkManagerWithRefType;
|
|
23769
23980
|
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
23770
23981
|
|
|
@@ -23781,7 +23992,7 @@ type PageHeaderSectionProps = Omit<React$1.HTMLAttributes<HTMLHeadingElement>, '
|
|
|
23781
23992
|
level?: LevelProps;
|
|
23782
23993
|
linkManagerComponent?: LinkManagerWithRefType;
|
|
23783
23994
|
};
|
|
23784
|
-
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) =>
|
|
23995
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23785
23996
|
|
|
23786
23997
|
type ParagraphProps = {
|
|
23787
23998
|
/** (optional) adds child elements to the paragraph tag */
|
|
@@ -23795,7 +24006,7 @@ type ParagraphProps = {
|
|
|
23795
24006
|
* Component for generic paragraph tags
|
|
23796
24007
|
* @example <Paragraph>This is the text that was be inside the paragraph tag.</Paragraph>
|
|
23797
24008
|
*/
|
|
23798
|
-
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) =>
|
|
24009
|
+
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23799
24010
|
|
|
23800
24011
|
type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown' | 'Deleted';
|
|
23801
24012
|
type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -23812,6 +24023,6 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23812
24023
|
*/
|
|
23813
24024
|
size?: 'sm' | 'base';
|
|
23814
24025
|
};
|
|
23815
|
-
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) =>
|
|
24026
|
+
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23816
24027
|
|
|
23817
|
-
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps,
|
|
24028
|
+
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, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, 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, InputCreatableComboBox, type InputCreatableComboBoxProps, 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, KeyValueInput, type KeyValueInputProps, type KeyValueItem, 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, MenuItemHeading, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, 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, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, 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, convertComboBoxGroupsToSelectableGroups, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, 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, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|