@uniformdev/design-system 19.173.1-alpha.17 → 19.173.2-alpha.210
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 +2612 -1328
- package/dist/index.d.mts +404 -322
- package/dist/index.d.ts +404 -322
- package/dist/index.js +2789 -1526
- package/package.json +19 -18
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
2
2
|
import { Decorator } from '@storybook/react';
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import React__default, { RefObject, HTMLAttributes, MutableRefObject, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, ButtonHTMLAttributes, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
|
|
@@ -16,16 +16,18 @@ import * as _react_icons_all_files from '@react-icons/all-files';
|
|
|
16
16
|
import { IconType as IconType$2 } from '@react-icons/all-files';
|
|
17
17
|
import { DateValue } from '@internationalized/date';
|
|
18
18
|
import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
|
|
19
|
+
import { PopoverState } from 'reakit/Popover';
|
|
19
20
|
import { CreatableProps } from 'react-select/creatable';
|
|
20
|
-
import InternalSelect from 'react-select/dist/declarations/src/Select';
|
|
21
|
+
import InternalSelect from '../../../node_modules/react-select/dist/declarations/src/Select';
|
|
21
22
|
import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
|
|
22
23
|
import * as _ariakit_react from '@ariakit/react';
|
|
23
|
-
import { MenuProps as MenuProps$2, MenuStoreProps, MenuItemProps as MenuItemProps$1, PopoverProps as PopoverProps$1, PopoverProviderProps, PopoverStore, 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';
|
|
24
25
|
export { PopoverStore } from '@ariakit/react';
|
|
25
26
|
import { InitialConfigType } from '@lexical/react/LexicalComposer';
|
|
26
27
|
import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
|
|
27
28
|
export { RichTextBuiltInElement, RichTextBuiltInFormat } from '@uniformdev/canvas';
|
|
28
29
|
import { Spread, SerializedElementNode, ElementNode, NodeKey, EditorConfig, DOMConversionMap, RangeSelection, SerializedEditorState, LexicalEditor } from 'lexical';
|
|
30
|
+
import * as _uniformdev_richtext from '@uniformdev/richtext';
|
|
29
31
|
export { richTextBuiltInElements, richTextBuiltInFormats } from '@uniformdev/richtext';
|
|
30
32
|
export { Id as ToastId, toast } from 'react-toastify';
|
|
31
33
|
|
|
@@ -44,7 +46,7 @@ type ThemeProps = {
|
|
|
44
46
|
/**
|
|
45
47
|
* Uniform CSS Variables, font provider and optional reset stylesheet
|
|
46
48
|
* @example <Theme disableReset={true} /> */
|
|
47
|
-
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) =>
|
|
49
|
+
declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
48
50
|
|
|
49
51
|
declare const BetaDecorator: Decorator;
|
|
50
52
|
|
|
@@ -124,7 +126,7 @@ declare const buttonTertiaryOutline: _emotion_react.SerializedStyles;
|
|
|
124
126
|
declare const buttonGhostUnimportant: _emotion_react.SerializedStyles;
|
|
125
127
|
|
|
126
128
|
declare const labelText: _emotion_react.SerializedStyles;
|
|
127
|
-
declare const input: (whiteSpaceWrap:
|
|
129
|
+
declare const input: (whiteSpaceWrap: "wrap" | "nowrap") => _emotion_react.SerializedStyles;
|
|
128
130
|
declare const inputError: _emotion_react.SerializedStyles;
|
|
129
131
|
declare const inputSelect: _emotion_react.SerializedStyles;
|
|
130
132
|
|
|
@@ -209,7 +211,7 @@ type AddButtonProps = Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, 'onC
|
|
|
209
211
|
* @param {Omit<React.HTMLAttributes<HTMLButtonElement>, 'onChange'>} props - object of button props
|
|
210
212
|
* @example <AddButton buttonText="Button Text" />
|
|
211
213
|
*/
|
|
212
|
-
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;
|
|
213
215
|
|
|
214
216
|
type AddListButtonThemeProps = 'var(--brand-secondary-5)' | 'var(--primary-action-default)';
|
|
215
217
|
type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
@@ -238,7 +240,7 @@ type AddListButtonProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
|
238
240
|
* Uniform Add List Button Component
|
|
239
241
|
* @example <AddListButton buttonText="my text" onButtonClick={() => console.log('button clicked')} icon="add" />
|
|
240
242
|
*/
|
|
241
|
-
declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) =>
|
|
243
|
+
declare const AddListButton: ({ buttonText, onButtonClick, disabled, icon, variant, theme, ...buttonProps }: AddListButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
242
244
|
|
|
243
245
|
var v$1 = "4.8.0";
|
|
244
246
|
var meta$1 = {
|
|
@@ -20206,7 +20208,7 @@ type AnimationFileProps = LottieComponentProps & {
|
|
|
20206
20208
|
* See https://lottiereact.com/ for example documentation
|
|
20207
20209
|
* @example <AnimationFile animationData={spinnerAnimationData} label="My Animation" width={364} height={282} />
|
|
20208
20210
|
*/
|
|
20209
|
-
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;
|
|
20210
20212
|
|
|
20211
20213
|
type AvatarSizeProp = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
20212
20214
|
type AvatarProps = {
|
|
@@ -20218,7 +20220,7 @@ type AvatarProps = {
|
|
|
20218
20220
|
* @description A component to render rounded avatars of a user or an app.
|
|
20219
20221
|
* @example <Avatar>AB</Avatar>
|
|
20220
20222
|
*/
|
|
20221
|
-
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;
|
|
20222
20224
|
|
|
20223
20225
|
type AvatarGroupProps = {
|
|
20224
20226
|
/**
|
|
@@ -20237,7 +20239,7 @@ type AvatarGroupProps = {
|
|
|
20237
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.
|
|
20238
20240
|
* @example <AvatarGroup max={2}><Avatar>AB</Avatar><Avatar>CD</Avatar><Avatar>EF</Avatar><AvatarGroup>
|
|
20239
20241
|
*/
|
|
20240
|
-
declare const AvatarGroup: ({ max, children, getTruncatedLabel, ...props }: AvatarGroupProps) =>
|
|
20242
|
+
declare const AvatarGroup: ({ max, children, getTruncatedLabel, ...props }: AvatarGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20241
20243
|
|
|
20242
20244
|
type BadgeThemeProps = 'caution' | 'info' | 'note' | 'success' | 'error' | 'unimportant';
|
|
20243
20245
|
type SizeProps = 'xs' | 'sm' | 'base';
|
|
@@ -20262,7 +20264,7 @@ type BadgeSizeProps = Record<SizeProps, SerializedStyles>;
|
|
|
20262
20264
|
* @example <Badge text="My badge" theme="success" size="base" />
|
|
20263
20265
|
* @deprecated please use Chip component instead
|
|
20264
20266
|
*/
|
|
20265
|
-
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;
|
|
20266
20268
|
|
|
20267
20269
|
type BannerType = 'note' | 'info' | 'caution' | 'danger' | 'success';
|
|
20268
20270
|
type BannerProps = React__default.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -20286,7 +20288,7 @@ type BannerProps = React__default.HTMLAttributes<HTMLDivElement> & {
|
|
|
20286
20288
|
* Uniform Banner Component
|
|
20287
20289
|
* @example <Banner type="caution" onDismiss={() => {}}>My Banner Message</Callout>
|
|
20288
20290
|
*/
|
|
20289
|
-
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;
|
|
20290
20292
|
|
|
20291
20293
|
type UniformLogoProps = {
|
|
20292
20294
|
/** sets a light or dark theme for the uniform badge or logo component
|
|
@@ -20300,14 +20302,14 @@ type UniformLogoProps = {
|
|
|
20300
20302
|
* @param props - sets react svg element attribute props
|
|
20301
20303
|
* @example <UniformBadge theme="dark" />
|
|
20302
20304
|
*/
|
|
20303
|
-
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;
|
|
20304
20306
|
|
|
20305
20307
|
/**
|
|
20306
20308
|
* Uniform Logo
|
|
20307
20309
|
* @param props - sets react svg element attribute props
|
|
20308
20310
|
* @example <UniformLogo theme="light" /> */
|
|
20309
|
-
declare const UniformLogo: ({ theme, ...props }: UniformLogoProps & React.SVGAttributes<SVGElement>) =>
|
|
20310
|
-
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;
|
|
20311
20313
|
|
|
20312
20314
|
/**
|
|
20313
20315
|
* Gets a formatted version of a shortcut for display.
|
|
@@ -20324,7 +20326,7 @@ declare function getFormattedShortcut(shortcut: string | null): string[];
|
|
|
20324
20326
|
*/
|
|
20325
20327
|
declare function ShortcutContext({ children }: {
|
|
20326
20328
|
children: React__default.ReactNode;
|
|
20327
|
-
}):
|
|
20329
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
20328
20330
|
/**
|
|
20329
20331
|
* @deprecated Use tooltips or menu items with a shortcut instead,
|
|
20330
20332
|
* and getFormattedShortcut for display
|
|
@@ -20333,7 +20335,7 @@ declare function ShortcutRevealer({ shortcut, macShortcut, className, }: {
|
|
|
20333
20335
|
shortcut: string;
|
|
20334
20336
|
macShortcut?: string;
|
|
20335
20337
|
className?: SerializedStyles | string;
|
|
20336
|
-
}):
|
|
20338
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
20337
20339
|
|
|
20338
20340
|
type UseShortcutOptions = {
|
|
20339
20341
|
/**
|
|
@@ -20387,7 +20389,7 @@ type TooltipProps = TooltipOptions & {
|
|
|
20387
20389
|
/** If the tooltip should not be rendered inside a portal */
|
|
20388
20390
|
withoutPortal?: boolean;
|
|
20389
20391
|
};
|
|
20390
|
-
declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps):
|
|
20392
|
+
declare function Tooltip({ children, title, placement, visible, withoutPortal, ...props }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
20391
20393
|
|
|
20392
20394
|
/** Button themes that are available to use with our brand */
|
|
20393
20395
|
type ButtonThemeProps$1 = 'primary' | 'secondary' | 'accent-alt-dark' | 'accent-alt-dark-outline' | 'destructive' | 'tertiary' | 'tertiaryOutline' | 'unimportant' | 'ghost' | 'ghostDestructive' | 'primaryInvert' | 'secondaryInvert' | 'ghostUnimportant';
|
|
@@ -20437,7 +20439,7 @@ declare const allSupportedIcons: {
|
|
|
20437
20439
|
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20438
20440
|
warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20439
20441
|
'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20440
|
-
settings: (props: IconProps) =>
|
|
20442
|
+
settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
20441
20443
|
'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20442
20444
|
json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20443
20445
|
'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
@@ -20457,6 +20459,8 @@ declare const allSupportedIcons: {
|
|
|
20457
20459
|
'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20458
20460
|
'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
20459
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;
|
|
20460
20464
|
'add-r': _react_icons_all_files.IconType;
|
|
20461
20465
|
add: _react_icons_all_files.IconType;
|
|
20462
20466
|
airplane: _react_icons_all_files.IconType;
|
|
@@ -21122,7 +21126,7 @@ interface IconProps extends IconBaseProps {
|
|
|
21122
21126
|
* Component that renders icons
|
|
21123
21127
|
* @example <Icon icon="add-r" iconColor="currentColor" />
|
|
21124
21128
|
*/
|
|
21125
|
-
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>;
|
|
21126
21130
|
|
|
21127
21131
|
declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21128
21132
|
declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
@@ -21135,11 +21139,13 @@ declare const canvasAlertIcon: (props: _react_icons_all_files.IconBaseProps) =>
|
|
|
21135
21139
|
declare const warningIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21136
21140
|
declare const infoFilledIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21137
21141
|
declare const settingsIcon: IconType$2;
|
|
21138
|
-
declare const settings: (props: IconProps) =>
|
|
21142
|
+
declare const settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21139
21143
|
declare const queryStringIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21140
21144
|
declare const structurePanelIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21141
21145
|
declare const jsonIcon: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21142
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;
|
|
21143
21149
|
declare const customIcons: {
|
|
21144
21150
|
'rectangle-rounded': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21145
21151
|
card: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
@@ -21151,7 +21157,7 @@ declare const customIcons: {
|
|
|
21151
21157
|
'canvas-alert': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21152
21158
|
warning: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21153
21159
|
'info-filled': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21154
|
-
settings: (props: IconProps) =>
|
|
21160
|
+
settings: (props: IconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21155
21161
|
'query-string': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21156
21162
|
json: (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21157
21163
|
'format-bold': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
@@ -21171,6 +21177,8 @@ declare const customIcons: {
|
|
|
21171
21177
|
'clipboard-copy': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21172
21178
|
'clipboard-paste': (props: _react_icons_all_files.IconBaseProps) => React$1.JSX.Element;
|
|
21173
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;
|
|
21174
21182
|
};
|
|
21175
21183
|
|
|
21176
21184
|
type IconsMap = Record<string, IconType$1>;
|
|
@@ -21184,7 +21192,7 @@ declare function useIconContext(): {
|
|
|
21184
21192
|
*/
|
|
21185
21193
|
declare function IconsProvider({ children }: {
|
|
21186
21194
|
children: ReactNode;
|
|
21187
|
-
}):
|
|
21195
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
21188
21196
|
|
|
21189
21197
|
declare const uniformComponentIcon: IconType$1;
|
|
21190
21198
|
declare const uniformConditionalValuesIcon: IconType$1;
|
|
@@ -21243,7 +21251,7 @@ interface ActionButtonsProps {
|
|
|
21243
21251
|
}
|
|
21244
21252
|
/** ButtonWithMenuProps combines the ActionButtonsProps with React HTMLButtonElement attributes */
|
|
21245
21253
|
type ButtonWithMenuProps = ActionButtonsProps & React$1.ButtonHTMLAttributes<HTMLButtonElement>;
|
|
21246
|
-
declare const ButtonWithMenu: ({ onButtonClick, buttonType, buttonText, icon, disabled, children, placement, size, menuContainerCssClasses, withoutPortal, portal, maxMenuHeight, tooltip, shortcut, ...buttonProps }: ButtonWithMenuProps) =>
|
|
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;
|
|
21247
21255
|
|
|
21248
21256
|
/**
|
|
21249
21257
|
* A string in the ISO 8601 date format: YYYY-MM-DD
|
|
@@ -21262,7 +21270,7 @@ type CalendarProps = Pick<CalendarProps$1<DateValue>, 'autoFocus' | 'isDisabled'
|
|
|
21262
21270
|
*
|
|
21263
21271
|
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
21264
21272
|
*/
|
|
21265
|
-
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;
|
|
21266
21274
|
|
|
21267
21275
|
/** Callout button types available to use with our brand */
|
|
21268
21276
|
type CalloutType = 'caution' | 'danger' | 'info' | 'note' | 'success' | 'tip' | 'error';
|
|
@@ -21288,7 +21296,7 @@ interface CalloutProps {
|
|
|
21288
21296
|
* Uniform Callout Component
|
|
21289
21297
|
* @example <Callout title="my title" type="caution"><p>callout body copy</p></Callout>
|
|
21290
21298
|
*/
|
|
21291
|
-
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;
|
|
21292
21300
|
|
|
21293
21301
|
type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
21294
21302
|
/** (optional) sets the title value of the card */
|
|
@@ -21313,11 +21321,11 @@ type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21313
21321
|
*/
|
|
21314
21322
|
tag?: React$1.ElementType;
|
|
21315
21323
|
};
|
|
21316
|
-
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;
|
|
21317
21325
|
type CardTitleProps = {
|
|
21318
21326
|
children?: React$1.ReactNode;
|
|
21319
21327
|
} & Pick<CardProps, 'title' | 'titleWithMarginBottom'>;
|
|
21320
|
-
declare const CardTitle: ({ title, titleWithMarginBottom, children }: CardTitleProps) =>
|
|
21328
|
+
declare const CardTitle: ({ title, titleWithMarginBottom, children }: CardTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21321
21329
|
|
|
21322
21330
|
type CardContainerBgColorProps = 'gray' | 'white';
|
|
21323
21331
|
type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -21343,9 +21351,9 @@ type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21343
21351
|
/** Uniform Card Container
|
|
21344
21352
|
* @example <CardContainer><Card title="card title" /></CardContainer>
|
|
21345
21353
|
*/
|
|
21346
|
-
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;
|
|
21347
21355
|
|
|
21348
|
-
declare const LoadingCardSkeleton: () =>
|
|
21356
|
+
declare const LoadingCardSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
21349
21357
|
|
|
21350
21358
|
type ChipSizeProp = 'xs' | 'sm' | 'md';
|
|
21351
21359
|
type ChipTheme = 'accent-light' | 'accent-dark' | 'accent-alt-light' | 'accent-alt-dark' | 'neutral-light' | 'neutral-dark';
|
|
@@ -21379,7 +21387,7 @@ type ChipProps = {
|
|
|
21379
21387
|
* To represent a different object, as a reference
|
|
21380
21388
|
* @example <Chip text="productId" theme="accent-light" chipAction={<DismissibleChipAction onDismiss={() => {...}}/>} />
|
|
21381
21389
|
*/
|
|
21382
|
-
declare const Chip: ({ icon, iconColor, text, size, theme, variant, chipAction, as, ...props }: ChipProps) =>
|
|
21390
|
+
declare const Chip: ({ icon, iconColor, text, size, theme, variant, chipAction, as, ...props }: ChipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21383
21391
|
type DismissibleChipActionProps = {
|
|
21384
21392
|
onDismiss: () => void;
|
|
21385
21393
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
@@ -21387,7 +21395,7 @@ type DismissibleChipActionProps = {
|
|
|
21387
21395
|
* @description Dismissible chip action should be used with the Chip component
|
|
21388
21396
|
* @example <DismissibleChipAction onDismiss={() => {...}}/>
|
|
21389
21397
|
*/
|
|
21390
|
-
declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) =>
|
|
21398
|
+
declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21391
21399
|
|
|
21392
21400
|
type MultilineChipProps = {
|
|
21393
21401
|
children: ReactNode;
|
|
@@ -21398,7 +21406,7 @@ type MultilineChipProps = {
|
|
|
21398
21406
|
* Unlike a regular chip, this one can go onto multiple lines with word wrap, and uses inline behaviours.
|
|
21399
21407
|
* @example <MultilineChip text="productId" />
|
|
21400
21408
|
*/
|
|
21401
|
-
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) =>
|
|
21409
|
+
declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21402
21410
|
|
|
21403
21411
|
type CounterBgColors = 'var(--white)' | 'var(--gray-50)' | 'var(--accent-light)' | 'var(--accent-dark)' | 'transparent';
|
|
21404
21412
|
type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'red';
|
|
@@ -21415,7 +21423,7 @@ type CounterProps = {
|
|
|
21415
21423
|
icon?: IconType;
|
|
21416
21424
|
} & React.HTMLAttributes<HTMLDivElement>;
|
|
21417
21425
|
/** @example <Counter count={1} /> */
|
|
21418
|
-
declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) =>
|
|
21426
|
+
declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21419
21427
|
|
|
21420
21428
|
type TextAlignProps = 'left' | 'right' | 'center';
|
|
21421
21429
|
type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -21433,7 +21441,73 @@ type DashedBoxProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
21433
21441
|
* Uniform Dashed Box Component
|
|
21434
21442
|
* @example <DashedBox bgColor="white" boxHeight="md" textAlign="center"><h1>hello world</h1></DashedBox>
|
|
21435
21443
|
*/
|
|
21436
|
-
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>>;
|
|
21437
21511
|
|
|
21438
21512
|
/**
|
|
21439
21513
|
* A string in the ISO 8601 datetime format
|
|
@@ -21480,6 +21554,10 @@ type DateTimePickerProps = {
|
|
|
21480
21554
|
disabled?: boolean;
|
|
21481
21555
|
/** (optional) sets the base test id for each of the elements with a testid */
|
|
21482
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;
|
|
21483
21561
|
};
|
|
21484
21562
|
/**
|
|
21485
21563
|
* Use this context for slots within the date time picker
|
|
@@ -21487,8 +21565,8 @@ type DateTimePickerProps = {
|
|
|
21487
21565
|
*/
|
|
21488
21566
|
declare function useDateTimePickerContext(): {
|
|
21489
21567
|
clearValue(): void;
|
|
21490
|
-
changeDate(isoDate:
|
|
21491
|
-
changeTime(isoTime:
|
|
21568
|
+
changeDate(isoDate: IsoDateString): void;
|
|
21569
|
+
changeTime(isoTime: IsoTimeString): void;
|
|
21492
21570
|
};
|
|
21493
21571
|
/**
|
|
21494
21572
|
* Date Time Picker
|
|
@@ -21502,12 +21580,12 @@ declare function useDateTimePickerContext(): {
|
|
|
21502
21580
|
* Subcomponents can manipulate the value directly by using
|
|
21503
21581
|
* the `useDateTimePickerContext()` hook.
|
|
21504
21582
|
*/
|
|
21505
|
-
declare const DateTimePicker: ({ id, label, triggerIcon, 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;
|
|
21506
21584
|
|
|
21507
21585
|
declare function DateTimePickerSummary({ value, placeholder, }: {
|
|
21508
21586
|
value: DateTimePickerValue | null | undefined;
|
|
21509
21587
|
placeholder: ReactNode;
|
|
21510
|
-
}):
|
|
21588
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
21511
21589
|
|
|
21512
21590
|
type DescriptionListProps = {
|
|
21513
21591
|
items: {
|
|
@@ -21525,7 +21603,7 @@ declare const DescriptionList: React__default.ForwardRefExoticComponent<{
|
|
|
21525
21603
|
label: string;
|
|
21526
21604
|
value: string | number | boolean | React__default.ReactNode;
|
|
21527
21605
|
}[];
|
|
21528
|
-
variant?: "horizontal" | "vertical"
|
|
21606
|
+
variant?: "horizontal" | "vertical";
|
|
21529
21607
|
} & React__default.HTMLAttributes<HTMLDListElement> & React__default.RefAttributes<HTMLDListElement>>;
|
|
21530
21608
|
|
|
21531
21609
|
type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
@@ -21551,13 +21629,21 @@ type DetailsProps = React$1.HTMLAttributes<HTMLDetailsElement> & {
|
|
|
21551
21629
|
isCompact?: boolean;
|
|
21552
21630
|
};
|
|
21553
21631
|
/** @example <Details summary="summary text">child content here</Details>*/
|
|
21554
|
-
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;
|
|
21555
21633
|
|
|
21556
21634
|
type DraggableHandleProps = {
|
|
21557
21635
|
disableDnd?: boolean;
|
|
21636
|
+
/** (optional) Height of the drag handle
|
|
21637
|
+
* @default 3.125rem
|
|
21638
|
+
*/
|
|
21639
|
+
height?: string;
|
|
21558
21640
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
21559
21641
|
declare const DragHandle: React$1.ForwardRefExoticComponent<{
|
|
21560
|
-
disableDnd?: boolean
|
|
21642
|
+
disableDnd?: boolean;
|
|
21643
|
+
/** (optional) Height of the drag handle
|
|
21644
|
+
* @default 3.125rem
|
|
21645
|
+
*/
|
|
21646
|
+
height?: string;
|
|
21561
21647
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
21562
21648
|
|
|
21563
21649
|
interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDivElement>, 'children'> {
|
|
@@ -21595,7 +21681,7 @@ interface DrawerRendererProps extends Omit<React__default.HTMLAttributes<HTMLDiv
|
|
|
21595
21681
|
* Renders a stack of drawers in a different location than their original position in the component tree. Uses React Portal under the hood.
|
|
21596
21682
|
* @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
|
|
21597
21683
|
*/
|
|
21598
|
-
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;
|
|
21599
21685
|
interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivElement> {
|
|
21600
21686
|
index: number;
|
|
21601
21687
|
totalDrawers: number;
|
|
@@ -21607,7 +21693,7 @@ interface DrawerRendererItemProps extends React__default.HTMLAttributes<HTMLDivE
|
|
|
21607
21693
|
}
|
|
21608
21694
|
declare const getDrawerAttributes: ({ providerId, stackId, id, }: {
|
|
21609
21695
|
providerId: string;
|
|
21610
|
-
stackId?: string
|
|
21696
|
+
stackId?: string;
|
|
21611
21697
|
id: string;
|
|
21612
21698
|
}) => {
|
|
21613
21699
|
'data-drawer-id': string;
|
|
@@ -21661,7 +21747,7 @@ type DrawerContextValue = {
|
|
|
21661
21747
|
* Provides the context to the Drawer and DrawerRenderer components.
|
|
21662
21748
|
* @example <DrawerProvider><Drawer id="my-drawer" stackId="my-stack" header="Title">Hello</Drawer><DrawerRenderer stackId="my-stack"/></DrawerProvider>
|
|
21663
21749
|
*/
|
|
21664
|
-
declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) =>
|
|
21750
|
+
declare const DrawerProvider: ({ children }: React__default.PropsWithChildren) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21665
21751
|
declare const useDrawer: () => DrawerContextValue;
|
|
21666
21752
|
declare const useCloseCurrentDrawer: () => (() => void) | undefined;
|
|
21667
21753
|
|
|
@@ -21672,14 +21758,14 @@ type DrawerProps = DrawerItem & Omit<DrawerRendererProps, 'stackId'> & {
|
|
|
21672
21758
|
leftAligned?: DrawerRendererProps['leftAligned'];
|
|
21673
21759
|
};
|
|
21674
21760
|
declare const CurrentDrawerContext: React__default.Context<{
|
|
21675
|
-
id?:
|
|
21676
|
-
stackId?:
|
|
21677
|
-
leftAligned?: DrawerRendererProps[
|
|
21761
|
+
id?: DrawerProps["id"];
|
|
21762
|
+
stackId?: DrawerRendererProps["stackId"];
|
|
21763
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21678
21764
|
}>;
|
|
21679
21765
|
declare const useCurrentDrawer: () => {
|
|
21680
|
-
id?:
|
|
21681
|
-
stackId?:
|
|
21682
|
-
leftAligned?: DrawerRendererProps[
|
|
21766
|
+
id?: DrawerProps["id"];
|
|
21767
|
+
stackId?: DrawerRendererProps["stackId"];
|
|
21768
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21683
21769
|
};
|
|
21684
21770
|
/**
|
|
21685
21771
|
* A drawer component that opens from the right side of is parent. The component is used in combination with DrawerProvider and DrawerRenderer
|
|
@@ -21688,8 +21774,8 @@ declare const useCurrentDrawer: () => {
|
|
|
21688
21774
|
declare const Drawer: React__default.ForwardRefExoticComponent<DrawerItem & Omit<DrawerRendererProps, "stackId"> & {
|
|
21689
21775
|
header?: React__default.ReactNode;
|
|
21690
21776
|
children?: React__default.ReactNode;
|
|
21691
|
-
bgColor?: "var(--
|
|
21692
|
-
leftAligned?: DrawerRendererProps[
|
|
21777
|
+
bgColor?: "var(--gray-50)" | "var(--white)";
|
|
21778
|
+
leftAligned?: DrawerRendererProps["leftAligned"];
|
|
21693
21779
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
21694
21780
|
|
|
21695
21781
|
type DrawerContentProps = {
|
|
@@ -21697,12 +21783,12 @@ type DrawerContentProps = {
|
|
|
21697
21783
|
buttonGroup?: ReactNode;
|
|
21698
21784
|
noPadding?: boolean;
|
|
21699
21785
|
} & HTMLAttributes<HTMLDivElement>;
|
|
21700
|
-
declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) =>
|
|
21786
|
+
declare const DrawerContent: ({ children, buttonGroup, noPadding, ...props }: DrawerContentProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21701
21787
|
|
|
21702
21788
|
declare const TAKEOVER_STACK_ID = "takeover-stack";
|
|
21703
|
-
declare const TakeoverDrawerRenderer: (props: Omit<DrawerRendererProps,
|
|
21789
|
+
declare const TakeoverDrawerRenderer: (props: Omit<DrawerRendererProps, "stackId"> & {
|
|
21704
21790
|
stackId?: string;
|
|
21705
|
-
}) =>
|
|
21791
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21706
21792
|
|
|
21707
21793
|
interface IconButtonProps extends Omit<ButtonProps, 'size'> {
|
|
21708
21794
|
variant?: 'square' | 'rounded';
|
|
@@ -21715,9 +21801,9 @@ interface ImageProps extends ImgHTMLAttributes<HTMLImageElement> {
|
|
|
21715
21801
|
imgClassName?: string;
|
|
21716
21802
|
variant?: 'inline' | 'fill-container';
|
|
21717
21803
|
}
|
|
21718
|
-
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;
|
|
21719
21805
|
|
|
21720
|
-
declare const ImageBroken: ({ width, height, ...props }: SVGProps<SVGSVGElement>) =>
|
|
21806
|
+
declare const ImageBroken: ({ width, height, ...props }: SVGProps<SVGSVGElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21721
21807
|
|
|
21722
21808
|
type CaptionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
21723
21809
|
/** allows users to add child elements */
|
|
@@ -21731,7 +21817,7 @@ type CaptionProps = React$1.HTMLAttributes<HTMLElement> & {
|
|
|
21731
21817
|
* Component that provides caption text to input fields
|
|
21732
21818
|
* @example <Caption>some help text here</Caption>
|
|
21733
21819
|
*/
|
|
21734
|
-
declare const Caption: ({ children, testId, dynamicSize, ...props }: CaptionProps) =>
|
|
21820
|
+
declare const Caption: ({ children, testId, dynamicSize, ...props }: CaptionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
21735
21821
|
|
|
21736
21822
|
type CheckboxWithInforProps = React.HTMLAttributes<HTMLInputElement> & {
|
|
21737
21823
|
/** sets the label value */
|
|
@@ -21750,9 +21836,9 @@ declare const CheckboxWithInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAt
|
|
|
21750
21836
|
/** sets the name value of the radio/checkbox input */
|
|
21751
21837
|
name: string;
|
|
21752
21838
|
/** sets info message */
|
|
21753
|
-
info?: string
|
|
21839
|
+
info?: string;
|
|
21754
21840
|
/** (optional) sets the checked state of the input */
|
|
21755
|
-
checked?: boolean
|
|
21841
|
+
checked?: boolean;
|
|
21756
21842
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21757
21843
|
|
|
21758
21844
|
type ErrorMessageProps = {
|
|
@@ -21772,7 +21858,7 @@ type ErrorMessageProps = {
|
|
|
21772
21858
|
* Component that provides error messaging to input fields
|
|
21773
21859
|
* @example <ErrorMessage>something went wrong, please try again</ErrorMessage>
|
|
21774
21860
|
*/
|
|
21775
|
-
declare const ErrorMessage: ({ message, testId, truncated, ...otherProps }: ErrorMessageProps) =>
|
|
21861
|
+
declare const ErrorMessage: ({ message, testId, truncated, ...otherProps }: ErrorMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21776
21862
|
|
|
21777
21863
|
type FieldMessageProps = {
|
|
21778
21864
|
/** (optional) sets help message within the caption component */
|
|
@@ -21790,7 +21876,7 @@ type FieldMessageProps = {
|
|
|
21790
21876
|
/** (optional) sets and shows the the info message value */
|
|
21791
21877
|
infoMessage?: string;
|
|
21792
21878
|
};
|
|
21793
|
-
declare const FieldMessage: ({ helperMessage, warningMessage, errorMessage, infoMessage, errorTestId, helperMessageTestId, }: FieldMessageProps) =>
|
|
21879
|
+
declare const FieldMessage: ({ helperMessage, warningMessage, errorMessage, infoMessage, errorTestId, helperMessageTestId, }: FieldMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21794
21880
|
|
|
21795
21881
|
type FieldsetProps = React$1.HTMLAttributes<HTMLFieldSetElement> & {
|
|
21796
21882
|
/** sets the legend value */
|
|
@@ -21807,11 +21893,11 @@ declare const Fieldset: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes
|
|
|
21807
21893
|
/** sets the legend value */
|
|
21808
21894
|
legend: React$1.ReactElement;
|
|
21809
21895
|
/** sets the disabled value and sets child inputs disabled */
|
|
21810
|
-
disabled?: boolean
|
|
21811
|
-
actionButton?: React$1.ReactElement
|
|
21896
|
+
disabled?: boolean;
|
|
21897
|
+
actionButton?: React$1.ReactElement;
|
|
21812
21898
|
children: React$1.ReactNode;
|
|
21813
21899
|
/** Inverts the background to white for use on forms that already have a gray background */
|
|
21814
|
-
invert?: boolean
|
|
21900
|
+
invert?: boolean;
|
|
21815
21901
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
21816
21902
|
|
|
21817
21903
|
type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -21826,7 +21912,7 @@ type InfoMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
21826
21912
|
* Component that provides info messaging to input fields
|
|
21827
21913
|
* @example <InfoMessage>be aware of this</InfoMessage>
|
|
21828
21914
|
*/
|
|
21829
|
-
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) =>
|
|
21915
|
+
declare const InfoMessage: ({ message, testId, icon, ...props }: InfoMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
21830
21916
|
|
|
21831
21917
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21832
21918
|
/** (optional) sets the label value */
|
|
@@ -21873,42 +21959,42 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
|
21873
21959
|
*/
|
|
21874
21960
|
declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
21875
21961
|
/** (optional) sets the label value */
|
|
21876
|
-
label?: string
|
|
21962
|
+
label?: string;
|
|
21877
21963
|
/** (optional) sets caption text value */
|
|
21878
|
-
caption?: string | JSX.Element
|
|
21964
|
+
caption?: string | JSX.Element;
|
|
21879
21965
|
/** (optional) add an input icon to the input field */
|
|
21880
|
-
icon?: React$1.ReactElement
|
|
21966
|
+
icon?: React$1.ReactElement;
|
|
21881
21967
|
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
21882
|
-
showLabel?: boolean
|
|
21968
|
+
showLabel?: boolean;
|
|
21883
21969
|
/** (optional) sets and shows the the error message value */
|
|
21884
|
-
errorMessage?: string
|
|
21970
|
+
errorMessage?: string;
|
|
21885
21971
|
/** (optional) sets and shows the warning message value */
|
|
21886
|
-
warningMessage?: string
|
|
21972
|
+
warningMessage?: string;
|
|
21887
21973
|
/** (optional) sets the test id for input field container for test automation*/
|
|
21888
|
-
containerTestId?: string
|
|
21974
|
+
containerTestId?: string;
|
|
21889
21975
|
/** (optional) sets label test id */
|
|
21890
|
-
labelTestId?: string
|
|
21976
|
+
labelTestId?: string;
|
|
21891
21977
|
/** (option) sets validation message test id for test automation */
|
|
21892
|
-
errorTestId?: string
|
|
21978
|
+
errorTestId?: string;
|
|
21893
21979
|
/** (option) sets caption message test id for test automation */
|
|
21894
|
-
captionTestId?: string
|
|
21895
|
-
capture?: boolean | "user" | "environment"
|
|
21980
|
+
captionTestId?: string;
|
|
21981
|
+
capture?: boolean | "user" | "environment";
|
|
21896
21982
|
/**
|
|
21897
21983
|
* (optional) sets an overriding classname on the root element
|
|
21898
21984
|
*/
|
|
21899
|
-
classNameRoot?: string | SerializedStyles
|
|
21985
|
+
classNameRoot?: string | SerializedStyles;
|
|
21900
21986
|
/**
|
|
21901
21987
|
* (optional) sets an overriding classname on the container element
|
|
21902
21988
|
* @deprecated */
|
|
21903
|
-
classNameContainer?: string | SerializedStyles
|
|
21989
|
+
classNameContainer?: string | SerializedStyles;
|
|
21904
21990
|
/**
|
|
21905
21991
|
* (optional) sets an overriding classname on the input element
|
|
21906
21992
|
* @deprecated */
|
|
21907
|
-
classNameControl?: string | SerializedStyles
|
|
21993
|
+
classNameControl?: string | SerializedStyles;
|
|
21908
21994
|
/**
|
|
21909
21995
|
* (optional) sets an overriding classname on the label element
|
|
21910
21996
|
* @deprecated */
|
|
21911
|
-
classNameLabel?: string | SerializedStyles
|
|
21997
|
+
classNameLabel?: string | SerializedStyles;
|
|
21912
21998
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
21913
21999
|
|
|
21914
22000
|
/**
|
|
@@ -21938,13 +22024,13 @@ type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
|
|
|
21938
22024
|
* InputComboBox
|
|
21939
22025
|
* @component
|
|
21940
22026
|
* @example <InputComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
|
|
21941
|
-
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;
|
|
21942
22028
|
/**
|
|
21943
22029
|
* InputCreatableComboBox
|
|
21944
22030
|
* Like ComboBox, but allows for creating new options
|
|
21945
22031
|
* @component
|
|
21946
22032
|
* @example <InputCreatableComboBox name="name" id="combo-box" options={[{ value: 'chocolate', label: 'Chocolate' }, { value: 'strawberry', label: 'Strawberry' }, { value: 'vanilla', label: 'Vanilla' }]} isMulti /> */
|
|
21947
|
-
declare function InputCreatableComboBox<TOption = InputComboBoxOption, IsMulti extends boolean = false, TGroup extends ComboBoxGroupBase<TOption> = ComboBoxGroupBase<TOption>>(props: InputCreatableComboBoxProps<TOption, IsMulti, TGroup>):
|
|
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;
|
|
21948
22034
|
|
|
21949
22035
|
type ComboBoxSelectableOption = InputComboBoxOption<string | string[]>;
|
|
21950
22036
|
interface ComboBoxSelectableGroup extends GroupBase<ComboBoxSelectableOption> {
|
|
@@ -22007,7 +22093,7 @@ type InputInlineSelectProps = Omit<React$1.HTMLAttributes<HTMLButtonElement>, 'o
|
|
|
22007
22093
|
* Input Inline Select
|
|
22008
22094
|
* @example <InputInlineSelect disabled={index > 1} value={currentValue ?? '&'} options={[{ label: 'AND', value: '&' }, { label: 'OR', value: '|' }]} onChange={(s) => {setState(s.value)}} />
|
|
22009
22095
|
*/
|
|
22010
|
-
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;
|
|
22011
22097
|
|
|
22012
22098
|
interface InputKeywordSearchProps extends InputHTMLAttributes<HTMLInputElement> {
|
|
22013
22099
|
/** function that takes a string value */
|
|
@@ -22061,9 +22147,9 @@ type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> &
|
|
|
22061
22147
|
*/
|
|
22062
22148
|
declare const DebouncedInputKeywordSearch: React$1.ForwardRefExoticComponent<Omit<InputKeywordSearchProps, "value"> & {
|
|
22063
22149
|
/** Debounce delay in milliseconds */
|
|
22064
|
-
delay?: number
|
|
22150
|
+
delay?: number;
|
|
22065
22151
|
/**Default value to initialize field with, as it is not controlled component and does not support providing values */
|
|
22066
|
-
defaultValue?: string
|
|
22152
|
+
defaultValue?: string;
|
|
22067
22153
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
22068
22154
|
|
|
22069
22155
|
type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
@@ -22108,107 +22194,41 @@ type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
|
22108
22194
|
*/
|
|
22109
22195
|
declare const InputSelect: React$1.ForwardRefExoticComponent<React$1.SelectHTMLAttributes<HTMLSelectElement> & {
|
|
22110
22196
|
/** (optional) sets the first item in the options list with empty value */
|
|
22111
|
-
defaultOption?: string
|
|
22197
|
+
defaultOption?: string;
|
|
22112
22198
|
/** sets an array of select options with value and text value */
|
|
22113
22199
|
options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
|
|
22114
22200
|
label: string;
|
|
22115
22201
|
}>;
|
|
22116
22202
|
/** (optional) sets caption text value */
|
|
22117
|
-
caption?: string | JSX.Element
|
|
22203
|
+
caption?: string | JSX.Element;
|
|
22118
22204
|
/** sets the label value */
|
|
22119
22205
|
label: string;
|
|
22120
22206
|
/** (optional) sets whether to hide the label and use aria-label on the input field
|
|
22121
22207
|
* @default false
|
|
22122
22208
|
*/
|
|
22123
|
-
showLabel?: boolean
|
|
22209
|
+
showLabel?: boolean;
|
|
22124
22210
|
/** (optional) sets and shows the the error message value */
|
|
22125
|
-
errorMessage?: string
|
|
22211
|
+
errorMessage?: string;
|
|
22126
22212
|
/** (optional) sets and shows the warning message value */
|
|
22127
|
-
warningMessage?: string
|
|
22213
|
+
warningMessage?: string;
|
|
22128
22214
|
/** (optional) allows react components to be added inline with the label element */
|
|
22129
|
-
labelCta?: JSX.Element
|
|
22215
|
+
labelCta?: JSX.Element;
|
|
22130
22216
|
/** (optional) styles the component in a compact format */
|
|
22131
|
-
compact?: boolean
|
|
22217
|
+
compact?: boolean;
|
|
22132
22218
|
/**
|
|
22133
22219
|
* (optional) sets an overriding classname on the container element
|
|
22134
22220
|
* @deprecated */
|
|
22135
|
-
classNameContainer?: string
|
|
22221
|
+
classNameContainer?: string;
|
|
22136
22222
|
/**
|
|
22137
22223
|
* (optional) sets an overriding classname on the input element
|
|
22138
22224
|
* @deprecated */
|
|
22139
|
-
classNameControl?: string
|
|
22225
|
+
classNameControl?: string;
|
|
22140
22226
|
/**
|
|
22141
22227
|
* (optional) sets an overriding classname on the label element
|
|
22142
22228
|
* @deprecated */
|
|
22143
|
-
classNameLabel?: string
|
|
22229
|
+
classNameLabel?: string;
|
|
22144
22230
|
} & React$1.RefAttributes<HTMLSelectElement>>;
|
|
22145
22231
|
|
|
22146
|
-
/**
|
|
22147
|
-
* A string in the ISO 8601 time format: hh:mm
|
|
22148
|
-
*/
|
|
22149
|
-
type IsoTimeString = string;
|
|
22150
|
-
type InputTimeProps = Pick<TimeFieldProps<TimeValue>, 'id' | 'name' | 'hourCycle' | 'autoFocus'> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, 'disabled'> & {
|
|
22151
|
-
/** (optional) sets the label value */
|
|
22152
|
-
label?: string;
|
|
22153
|
-
/** (optional) sets caption text value */
|
|
22154
|
-
caption?: string | JSX.Element;
|
|
22155
|
-
/** The current value in ISO 8601 time format */
|
|
22156
|
-
value: IsoTimeString | null | undefined;
|
|
22157
|
-
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
22158
|
-
minValue?: IsoTimeString;
|
|
22159
|
-
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
22160
|
-
maxValue?: IsoTimeString;
|
|
22161
|
-
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
22162
|
-
showLabel?: boolean;
|
|
22163
|
-
/** (optional) sets and shows the the error message value */
|
|
22164
|
-
errorMessage?: string;
|
|
22165
|
-
/** (optional) sets and shows the warning message value */
|
|
22166
|
-
warningMessage?: string;
|
|
22167
|
-
/** (optional) sets the test id for input field container for test automation*/
|
|
22168
|
-
containerTestId?: string;
|
|
22169
|
-
/** (optional) sets label test id */
|
|
22170
|
-
labelTestId?: string;
|
|
22171
|
-
/** (option) sets validation message test id for test automation */
|
|
22172
|
-
errorTestId?: string;
|
|
22173
|
-
/** (option) sets caption message test id for test automation */
|
|
22174
|
-
captionTestId?: string;
|
|
22175
|
-
belowInputSlot?: ReactNode;
|
|
22176
|
-
onChange?: (value: IsoTimeString) => void;
|
|
22177
|
-
};
|
|
22178
|
-
/**
|
|
22179
|
-
* Time input with segmented control
|
|
22180
|
-
*
|
|
22181
|
-
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
22182
|
-
*/
|
|
22183
|
-
declare const InputTime: React$1.ForwardRefExoticComponent<Pick<TimeFieldProps<TimeValue>, "autoFocus" | "id" | "name" | "hourCycle"> & Pick<React$1.InputHTMLAttributes<HTMLInputElement>, "disabled"> & {
|
|
22184
|
-
/** (optional) sets the label value */
|
|
22185
|
-
label?: string | undefined;
|
|
22186
|
-
/** (optional) sets caption text value */
|
|
22187
|
-
caption?: string | JSX.Element | undefined;
|
|
22188
|
-
/** The current value in ISO 8601 time format */
|
|
22189
|
-
value: IsoTimeString | null | undefined;
|
|
22190
|
-
/** (optional) sets the minimum time value in iso8601 time format. ie 10:00 */
|
|
22191
|
-
minValue?: string | undefined;
|
|
22192
|
-
/** (optional) sets the maximum time value in iso8601 time format. ie 22:00 */
|
|
22193
|
-
maxValue?: string | undefined;
|
|
22194
|
-
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
22195
|
-
showLabel?: boolean | undefined;
|
|
22196
|
-
/** (optional) sets and shows the the error message value */
|
|
22197
|
-
errorMessage?: string | undefined;
|
|
22198
|
-
/** (optional) sets and shows the warning message value */
|
|
22199
|
-
warningMessage?: string | undefined;
|
|
22200
|
-
/** (optional) sets the test id for input field container for test automation*/
|
|
22201
|
-
containerTestId?: string | undefined;
|
|
22202
|
-
/** (optional) sets label test id */
|
|
22203
|
-
labelTestId?: string | undefined;
|
|
22204
|
-
/** (option) sets validation message test id for test automation */
|
|
22205
|
-
errorTestId?: string | undefined;
|
|
22206
|
-
/** (option) sets caption message test id for test automation */
|
|
22207
|
-
captionTestId?: string | undefined;
|
|
22208
|
-
belowInputSlot?: ReactNode;
|
|
22209
|
-
onChange?: ((value: IsoTimeString) => void) | undefined;
|
|
22210
|
-
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
22211
|
-
|
|
22212
22232
|
type FontWeightProps = 'normal' | 'medium' | 'bold';
|
|
22213
22233
|
type InputToggleProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
22214
22234
|
/** sets the label value */
|
|
@@ -22244,27 +22264,27 @@ declare const InputToggle: React$1.ForwardRefExoticComponent<React$1.InputHTMLAt
|
|
|
22244
22264
|
/** sets the label value */
|
|
22245
22265
|
label: React$1.ReactNode;
|
|
22246
22266
|
/** sets the type of input to use, either radio or checkbox */
|
|
22247
|
-
type:
|
|
22267
|
+
type: "radio" | "checkbox";
|
|
22248
22268
|
/** sets the name value of the radio/checkbox input */
|
|
22249
22269
|
name: string;
|
|
22250
22270
|
/** (optional) sets whether to show the label or hide it and add a aria-label attributes to the input field directly */
|
|
22251
|
-
showLabel?: boolean
|
|
22271
|
+
showLabel?: boolean;
|
|
22252
22272
|
/** (optional) sets the disabled state */
|
|
22253
|
-
disabled?: boolean
|
|
22273
|
+
disabled?: boolean;
|
|
22254
22274
|
/** (optional) sets the checked state of the input */
|
|
22255
|
-
checked?: boolean
|
|
22275
|
+
checked?: boolean;
|
|
22256
22276
|
/** (optional) sets caption text value */
|
|
22257
|
-
caption?: string | JSX.Element
|
|
22277
|
+
caption?: string | JSX.Element;
|
|
22258
22278
|
/** (optional) sets shows the the error message value */
|
|
22259
|
-
errorMessage?: string
|
|
22279
|
+
errorMessage?: string;
|
|
22260
22280
|
/** (optional) sets and shows the warning message value */
|
|
22261
|
-
warningMessage?: string
|
|
22281
|
+
warningMessage?: string;
|
|
22262
22282
|
/** (optional) sets the font weight of the label text
|
|
22263
22283
|
* @default 'normal'
|
|
22264
22284
|
*/
|
|
22265
|
-
fontWeight?: FontWeightProps
|
|
22285
|
+
fontWeight?: FontWeightProps;
|
|
22266
22286
|
/** (optional) sets test id for test automation*/
|
|
22267
|
-
testId?: string
|
|
22287
|
+
testId?: string;
|
|
22268
22288
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
22269
22289
|
|
|
22270
22290
|
type LabelProps = React$1.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
@@ -22275,12 +22295,12 @@ type LabelProps = React$1.LabelHTMLAttributes<HTMLLabelElement> & {
|
|
|
22275
22295
|
/** (optional) test id for test automation*/
|
|
22276
22296
|
testId?: string;
|
|
22277
22297
|
};
|
|
22278
|
-
declare const Label: ({ children, className, testId, ...props }: LabelProps) =>
|
|
22298
|
+
declare const Label: ({ children, className, testId, ...props }: LabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22279
22299
|
|
|
22280
22300
|
type LegendProps = {
|
|
22281
22301
|
children: ReactNode;
|
|
22282
22302
|
};
|
|
22283
|
-
declare const Legend: ({ children }: LegendProps) =>
|
|
22303
|
+
declare const Legend: ({ children }: LegendProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22284
22304
|
|
|
22285
22305
|
type SuccessMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
22286
22306
|
/** sets the error message value */
|
|
@@ -22292,7 +22312,7 @@ type SuccessMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
22292
22312
|
* Component that provides success messaging to input fields
|
|
22293
22313
|
* @example <SuccessMessage>something went wrong, please try again</SuccessMessage>
|
|
22294
22314
|
*/
|
|
22295
|
-
declare const SuccessMessage: ({ message, testId, ...props }: SuccessMessageProps) =>
|
|
22315
|
+
declare const SuccessMessage: ({ message, testId, ...props }: SuccessMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22296
22316
|
|
|
22297
22317
|
type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
22298
22318
|
/** (optional) sets the label value */
|
|
@@ -22315,18 +22335,18 @@ type TextareaProps = React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
|
22315
22335
|
*/
|
|
22316
22336
|
declare const Textarea: React$1.ForwardRefExoticComponent<React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & {
|
|
22317
22337
|
/** (optional) sets the label value */
|
|
22318
|
-
label?: string
|
|
22338
|
+
label?: string;
|
|
22319
22339
|
/** (optional) sets caption text value */
|
|
22320
|
-
caption?: string | JSX.Element
|
|
22340
|
+
caption?: string | JSX.Element;
|
|
22321
22341
|
/** (optional) add an input icon to the input field */
|
|
22322
|
-
icon?: React$1.ReactElement
|
|
22342
|
+
icon?: React$1.ReactElement;
|
|
22323
22343
|
/** (optional) sets whether to hide the label and use aria-label on the input field */
|
|
22324
|
-
showLabel?: boolean
|
|
22344
|
+
showLabel?: boolean;
|
|
22325
22345
|
/** (optional) sets shows the error message value */
|
|
22326
|
-
errorMessage?: string
|
|
22346
|
+
errorMessage?: string;
|
|
22327
22347
|
/** (optional) sets and shows the warning message value */
|
|
22328
|
-
warningMessage?: string
|
|
22329
|
-
capture?: boolean | "user" | "environment"
|
|
22348
|
+
warningMessage?: string;
|
|
22349
|
+
capture?: boolean | "user" | "environment";
|
|
22330
22350
|
} & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
22331
22351
|
|
|
22332
22352
|
type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -22339,7 +22359,7 @@ type WarningMessageProps = React.HTMLAttributes<HTMLSpanElement> & {
|
|
|
22339
22359
|
* Component that provides warning messaging to input fields
|
|
22340
22360
|
* @example <WarningMessage>something went wrong, please try again</ErrorMessage>
|
|
22341
22361
|
*/
|
|
22342
|
-
declare const WarningMessage: ({ message, testId, ...props }: WarningMessageProps) =>
|
|
22362
|
+
declare const WarningMessage: ({ message, testId, ...props }: WarningMessageProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22343
22363
|
|
|
22344
22364
|
type IntegrationModalHeaderProps = {
|
|
22345
22365
|
/** sets the icon as inline svg or img tag */
|
|
@@ -22354,11 +22374,11 @@ type IntegrationModalHeaderProps = {
|
|
|
22354
22374
|
menu?: React$1.ReactNode;
|
|
22355
22375
|
};
|
|
22356
22376
|
type HexModalBackgroundProps = React$1.SVGAttributes<SVGElement>;
|
|
22357
|
-
declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) =>
|
|
22377
|
+
declare const HexModalBackground: ({ ...props }: HexModalBackgroundProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22358
22378
|
/** Uniform Integration Modal Header
|
|
22359
22379
|
* @example <IntegrationModalHeader icon="/icon.svg" name="name" />
|
|
22360
22380
|
*/
|
|
22361
|
-
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) =>
|
|
22381
|
+
declare const IntegrationModalHeader: ({ icon, name, menu, children }: IntegrationModalHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22362
22382
|
|
|
22363
22383
|
type JsonEditorProps = {
|
|
22364
22384
|
/**
|
|
@@ -22381,7 +22401,7 @@ type JsonEditorProps = {
|
|
|
22381
22401
|
/** Makes the editor read-only */
|
|
22382
22402
|
readOnly?: boolean;
|
|
22383
22403
|
};
|
|
22384
|
-
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;
|
|
22385
22405
|
|
|
22386
22406
|
type KeyValueItem<TValue extends string = string> = {
|
|
22387
22407
|
key: string;
|
|
@@ -22408,7 +22428,7 @@ type KeyValueInputProps<TValue extends string = string> = {
|
|
|
22408
22428
|
* return <KeyValueInput value={value} onChange={setValue} />
|
|
22409
22429
|
* @deprecated This component is in beta, name and props are subject to change without a major version
|
|
22410
22430
|
*/
|
|
22411
|
-
declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, keyInfoPopover, valueInfoPopover, disabled, errors, onFocusChange, }: KeyValueInputProps<TValue>) =>
|
|
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;
|
|
22412
22432
|
|
|
22413
22433
|
type SpacingProp = '0' | '2xs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl';
|
|
22414
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';
|
|
@@ -22450,9 +22470,9 @@ type ContainerProps = CommonContainerProps & React$1.HTMLAttributes<HTMLDivEleme
|
|
|
22450
22470
|
tag?: HtmlTagProps;
|
|
22451
22471
|
children: React$1.ReactNode;
|
|
22452
22472
|
};
|
|
22453
|
-
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;
|
|
22454
22474
|
|
|
22455
|
-
declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) =>
|
|
22475
|
+
declare const HorizontalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22456
22476
|
|
|
22457
22477
|
type TwoColumnLayoutProps = {
|
|
22458
22478
|
/** sets the full bleed background colour
|
|
@@ -22469,9 +22489,9 @@ type TwoColumnLayoutProps = {
|
|
|
22469
22489
|
invertLayout?: boolean;
|
|
22470
22490
|
};
|
|
22471
22491
|
/** @example <TwoColumnLayout supportingContent={<div>supporting content</div>}><h1>title</h1></TwoColumnLayout> */
|
|
22472
|
-
declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) =>
|
|
22492
|
+
declare const TwoColumnLayout: ({ bgColor, invertLayout, supportingContent, children, }: TwoColumnLayoutProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22473
22493
|
|
|
22474
|
-
declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) =>
|
|
22494
|
+
declare const VerticalRhythm: ({ align, justify, tag, gap, children, ref, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22475
22495
|
|
|
22476
22496
|
type LimitsBarProps = {
|
|
22477
22497
|
/** The current value of used limits */
|
|
@@ -22485,7 +22505,7 @@ type LimitsBarProps = {
|
|
|
22485
22505
|
* Uniform Limits Bar Component
|
|
22486
22506
|
* @example <LimitsBar current="3" max="5" label="signals" />
|
|
22487
22507
|
*/
|
|
22488
|
-
declare const LimitsBar: ({ current, max, label }: LimitsBarProps) =>
|
|
22508
|
+
declare const LimitsBar: ({ current, max, label }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22489
22509
|
|
|
22490
22510
|
type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
22491
22511
|
/** sets the title field */
|
|
@@ -22497,7 +22517,7 @@ type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
22497
22517
|
/** (optional) sets react child component */
|
|
22498
22518
|
children?: React$1.ReactNode;
|
|
22499
22519
|
};
|
|
22500
|
-
declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) =>
|
|
22520
|
+
declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22501
22521
|
|
|
22502
22522
|
type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
22503
22523
|
/** (optional) sets the label value */
|
|
@@ -22509,7 +22529,7 @@ type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
|
|
|
22509
22529
|
* Component that sets the base structure for scrollable content in a max height container
|
|
22510
22530
|
* @example <ScrollableList label="allowed content types"><button>say hello</button></ScrollableList>
|
|
22511
22531
|
*/
|
|
22512
|
-
declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) =>
|
|
22532
|
+
declare const ScrollableList: ({ label, children, ...props }: ScrollableListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22513
22533
|
|
|
22514
22534
|
type ScrollableListContainerProps = {
|
|
22515
22535
|
/** sets whether to show or hide the shadow around the element
|
|
@@ -22531,7 +22551,7 @@ type ScrollableItemProps = {
|
|
|
22531
22551
|
children: React.ReactNode;
|
|
22532
22552
|
} & ScrollableListContainerProps;
|
|
22533
22553
|
/** @example <ScrollableListInputItem label="my label" active={true}><input type="radio" name="age" /></ScrollableListInputItem>*/
|
|
22534
|
-
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;
|
|
22535
22555
|
|
|
22536
22556
|
type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
22537
22557
|
/** sets the button text value */
|
|
@@ -22542,15 +22562,15 @@ type ScrollableListItemProps = React$1.ButtonHTMLAttributes<HTMLButtonElement> &
|
|
|
22542
22562
|
* Component used within <ScrollableList /> for adding interactive button components with predefined styles
|
|
22543
22563
|
* @example <ScrollableListItem buttontext="my button" active={false} />
|
|
22544
22564
|
*/
|
|
22545
|
-
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;
|
|
22546
22566
|
|
|
22547
22567
|
/**
|
|
22548
22568
|
* Loading Indicator
|
|
22549
22569
|
* @example <LoadingIndicator />
|
|
22550
22570
|
*/
|
|
22551
22571
|
declare const LoadingIndicator: ({ size, ...props }: HTMLAttributes<HTMLDivElement> & {
|
|
22552
|
-
size?: "
|
|
22553
|
-
}) =>
|
|
22572
|
+
size?: "lg" | "sm";
|
|
22573
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22554
22574
|
|
|
22555
22575
|
interface LoadingOverlayProps {
|
|
22556
22576
|
/** sets whether to display the loading overlay components */
|
|
@@ -22578,13 +22598,17 @@ interface LoadingOverlayProps {
|
|
|
22578
22598
|
*/
|
|
22579
22599
|
isTopAligned?: boolean;
|
|
22580
22600
|
children?: React__default.ReactNode;
|
|
22601
|
+
/** (optional) sets the position of the overlay
|
|
22602
|
+
* @default 'absolute'
|
|
22603
|
+
*/
|
|
22604
|
+
position?: 'absolute' | 'fixed';
|
|
22581
22605
|
}
|
|
22582
22606
|
/**
|
|
22583
22607
|
* Loading Overlay.
|
|
22584
22608
|
* NOTE: the container/parent element must have a non-static `position` value for the overlay to work properly.
|
|
22585
22609
|
* @example <LoadingOverlay isActive={true} statusMessage="Loading..." />
|
|
22586
22610
|
*/
|
|
22587
|
-
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;
|
|
22588
22612
|
interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
|
|
22589
22613
|
/** (optional) prop that sets a number value for the height of the icon */
|
|
22590
22614
|
width?: number;
|
|
@@ -22595,7 +22619,7 @@ interface LoadingIconProps extends HTMLAttributes<SVGSVGElement> {
|
|
|
22595
22619
|
* Loading Icon
|
|
22596
22620
|
* @example <LoadingIcon height={128} width={128} />
|
|
22597
22621
|
*/
|
|
22598
|
-
declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) =>
|
|
22622
|
+
declare const LoadingIcon: ({ height, width, ...props }: LoadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22599
22623
|
|
|
22600
22624
|
interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonElement> {
|
|
22601
22625
|
children: React.ReactNode;
|
|
@@ -22603,7 +22627,7 @@ interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonE
|
|
|
22603
22627
|
bgColor?: string;
|
|
22604
22628
|
}
|
|
22605
22629
|
/** Renders a dropdown menu style menu trigger button */
|
|
22606
|
-
declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps):
|
|
22630
|
+
declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22607
22631
|
|
|
22608
22632
|
declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
|
|
22609
22633
|
type LegacyPlacement = (typeof legacyPlacements)[number];
|
|
@@ -22649,6 +22673,7 @@ interface MenuProps extends MenuProps$2 {
|
|
|
22649
22673
|
* this is not compatible with nested menus that expand to the left or right of the menu
|
|
22650
22674
|
*/
|
|
22651
22675
|
maxMenuHeight?: string;
|
|
22676
|
+
portalElement?: React$1.ComponentProps<typeof Menu$1>['portalElement'];
|
|
22652
22677
|
}
|
|
22653
22678
|
/**
|
|
22654
22679
|
* Component used for creating clickable menus
|
|
@@ -22668,7 +22693,7 @@ type MenuGroupProps = {
|
|
|
22668
22693
|
/** Menu items to render in the group */
|
|
22669
22694
|
children: ReactNode;
|
|
22670
22695
|
};
|
|
22671
|
-
declare const MenuGroup: ({ title, children }: MenuGroupProps) =>
|
|
22696
|
+
declare const MenuGroup: ({ title, children }: MenuGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22672
22697
|
|
|
22673
22698
|
type MenuItemTextThemeProps = 'base' | 'red';
|
|
22674
22699
|
type MenuItemProps = MenuItemProps$1 & {
|
|
@@ -22703,7 +22728,7 @@ type ChildFunction = (menuItemProps: MenuItemProps$1) => React$1.ReactElement |
|
|
|
22703
22728
|
* MenuItem Component used along side <Menu /> component
|
|
22704
22729
|
* @example <MenuItem onClick={() => alert('menu item was clicked')} icon={<RedClose />}>Remove Link</MenuItem>
|
|
22705
22730
|
*/
|
|
22706
|
-
declare const MenuItem: React$1.
|
|
22731
|
+
declare const MenuItem: React$1.ForwardRefExoticComponent<Omit<MenuItemProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
22707
22732
|
/**
|
|
22708
22733
|
* MenuItem Component for headless use outside <Menu /> component
|
|
22709
22734
|
* Use only if adapting Uniform menu item appearance to a non-ariakit menu.
|
|
@@ -22717,15 +22742,19 @@ declare const MenuItemInner: React$1.FC<MenuItemProps>;
|
|
|
22717
22742
|
*/
|
|
22718
22743
|
declare function MenuItemIcon({ icon }: {
|
|
22719
22744
|
icon: IconType;
|
|
22720
|
-
}):
|
|
22745
|
+
}): _emotion_react_jsx_runtime.JSX.Element;
|
|
22721
22746
|
/**
|
|
22722
22747
|
* Indents a menu item as if it had an icon when it does not
|
|
22723
22748
|
* Use this to align menu items without icons with those that have icons
|
|
22724
22749
|
* in a mixed menu. Intended to be passed as the `icon` prop to a MenuItem.
|
|
22725
22750
|
*/
|
|
22726
|
-
declare function MenuItemEmptyIcon():
|
|
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;
|
|
22727
22756
|
|
|
22728
|
-
declare const MenuItemSeparator: () =>
|
|
22757
|
+
declare const MenuItemSeparator: () => _emotion_react_jsx_runtime.JSX.Element;
|
|
22729
22758
|
|
|
22730
22759
|
type MenuButtonProp = {
|
|
22731
22760
|
children: React.ReactNode;
|
|
@@ -22747,11 +22776,11 @@ declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
|
|
|
22747
22776
|
/** sets the aria-label and title value on the button
|
|
22748
22777
|
* @default 'More options'
|
|
22749
22778
|
*/
|
|
22750
|
-
buttonTitle?: string
|
|
22779
|
+
buttonTitle?: string;
|
|
22751
22780
|
/** sets the icon size
|
|
22752
22781
|
* @default '1rem'
|
|
22753
22782
|
*/
|
|
22754
|
-
iconSize?: string
|
|
22783
|
+
iconSize?: string;
|
|
22755
22784
|
} & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
22756
22785
|
|
|
22757
22786
|
type SearchableMenuProps = {
|
|
@@ -22767,12 +22796,12 @@ type SearchableMenuProps = {
|
|
|
22767
22796
|
/**
|
|
22768
22797
|
* Searchable menu allows searching through its menu items
|
|
22769
22798
|
*/
|
|
22770
|
-
declare function SearchableMenu(props: SearchableMenuProps):
|
|
22799
|
+
declare function SearchableMenu(props: SearchableMenuProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22771
22800
|
|
|
22772
22801
|
interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
|
|
22773
22802
|
selected: boolean;
|
|
22774
22803
|
}
|
|
22775
|
-
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps):
|
|
22804
|
+
declare function SelectableMenuItem({ selected, children, ...menuItemProps }: SelectableMenuItemProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
22776
22805
|
|
|
22777
22806
|
type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
22778
22807
|
title: string;
|
|
@@ -22784,7 +22813,7 @@ type MediaCardProps = Omit<CardProps, 'menuItems'> & {
|
|
|
22784
22813
|
buttonType?: ButtonHTMLAttributes<HTMLButtonElement>['type'];
|
|
22785
22814
|
onClick?: () => void;
|
|
22786
22815
|
};
|
|
22787
|
-
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;
|
|
22788
22817
|
|
|
22789
22818
|
type ModalProps = {
|
|
22790
22819
|
header?: React__default.ReactNode;
|
|
@@ -22826,7 +22855,7 @@ type ObjectGridContainerProps = {
|
|
|
22826
22855
|
/** The children to render */
|
|
22827
22856
|
children: React.ReactNode;
|
|
22828
22857
|
};
|
|
22829
|
-
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) =>
|
|
22858
|
+
declare const ObjectGridContainer: ({ gridCount, children }: ObjectGridContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22830
22859
|
|
|
22831
22860
|
type ObjectHeadingProps = {
|
|
22832
22861
|
/** sets the heading value */
|
|
@@ -22854,31 +22883,31 @@ type ObjectItemProps = {
|
|
|
22854
22883
|
type ObjectGridItemProps = ObjectItemProps & {
|
|
22855
22884
|
isSelected?: boolean;
|
|
22856
22885
|
};
|
|
22857
|
-
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) =>
|
|
22886
|
+
declare const ObjectGridItem: ({ header, cover, rightSlot, menuItems, isSelected, children, }: ObjectGridItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22858
22887
|
|
|
22859
22888
|
type ObjectGridItemCardCoverProps = {
|
|
22860
22889
|
icon: IconType;
|
|
22861
22890
|
} | {
|
|
22862
22891
|
imageUrl: string;
|
|
22863
22892
|
};
|
|
22864
|
-
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) =>
|
|
22893
|
+
declare const ObjectGridItemCardCover: (props: ObjectGridItemCardCoverProps) => _emotion_react_jsx_runtime.JSX.Element | undefined;
|
|
22865
22894
|
type ObjectGridItemCoverProps = {
|
|
22866
22895
|
/** The left slot to render components */
|
|
22867
22896
|
coverSlotLeft?: React.ReactNode;
|
|
22868
22897
|
/** The right slot to render components */
|
|
22869
22898
|
coverSlotRight?: React.ReactNode;
|
|
22870
22899
|
} & ObjectGridItemCardCoverProps;
|
|
22871
|
-
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) =>
|
|
22900
|
+
declare const ObjectGridItemCover: ({ coverSlotLeft, coverSlotRight, ...props }: ObjectGridItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22872
22901
|
type ObjectGridItemCoverButtonProps = {
|
|
22873
22902
|
id: string;
|
|
22874
22903
|
onSelection: (id: string) => void;
|
|
22875
22904
|
isSelected: boolean;
|
|
22876
22905
|
selectedText?: string;
|
|
22877
22906
|
} & ObjectGridItemCoverProps;
|
|
22878
|
-
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) =>
|
|
22907
|
+
declare const ObjectGridItemCoverButton: ({ id, isSelected, onSelection, coverSlotLeft, coverSlotRight, selectedText, ...props }: ObjectGridItemCoverButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22879
22908
|
|
|
22880
22909
|
type ObjectGridItemTitleProps = ObjectHeadingProps;
|
|
22881
|
-
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) =>
|
|
22910
|
+
declare const ObjectGridItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, }: ObjectGridItemTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22882
22911
|
|
|
22883
22912
|
type ObjectGridItemIconWithTooltipProps = {
|
|
22884
22913
|
/** The title of the tooltip */
|
|
@@ -22888,55 +22917,70 @@ type ObjectGridItemIconWithTooltipProps = {
|
|
|
22888
22917
|
/** The color of the icon */
|
|
22889
22918
|
iconColor?: IconColor;
|
|
22890
22919
|
} & Pick<TooltipProps, 'placement'>;
|
|
22891
|
-
declare const ObjectGridItemIconWithTooltip: ({ tooltipTitle, placement, icon, iconColor, }: ObjectGridItemIconWithTooltipProps) =>
|
|
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;
|
|
22892
22926
|
|
|
22893
22927
|
/** @deprecated - Beta Object item loading skeleton component */
|
|
22894
22928
|
type ObjectItemLoadingSkeletonProps = {
|
|
22895
22929
|
/** Show cover image loading skeleton */
|
|
22896
22930
|
showCover?: boolean;
|
|
22931
|
+
/** Render as single or multi
|
|
22932
|
+
* @default 'single'
|
|
22933
|
+
*/
|
|
22934
|
+
renderAs?: 'single' | 'multi';
|
|
22897
22935
|
};
|
|
22898
22936
|
/** @deprecated - Beta Object item loading skeleton component
|
|
22899
22937
|
* @example <ObjectItemLoadingSkeleton showCover />
|
|
22900
22938
|
*/
|
|
22901
|
-
declare const ObjectItemLoadingSkeleton: ({ showCover }: ObjectItemLoadingSkeletonProps) =>
|
|
22939
|
+
declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22902
22940
|
|
|
22903
22941
|
/** @deprecated - Beta Object list item component */
|
|
22904
22942
|
type ObjectListItemProps = ObjectListItemSingleProps | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
|
|
22905
22943
|
type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
|
|
22906
22944
|
cover?: ReactNode;
|
|
22945
|
+
dragHandle?: ReactNode;
|
|
22907
22946
|
renderAs?: 'single';
|
|
22908
22947
|
};
|
|
22909
22948
|
type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
|
|
22910
22949
|
cover?: ReactNode;
|
|
22950
|
+
dragHandle?: ReactNode;
|
|
22911
22951
|
renderAs?: 'multi';
|
|
22912
22952
|
children?: ReactNode;
|
|
22913
22953
|
};
|
|
22914
22954
|
/** @deprecated - beta Object list item component */
|
|
22915
|
-
declare const ObjectListItem: (props: ObjectListItemProps) =>
|
|
22955
|
+
declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22916
22956
|
|
|
22917
22957
|
/** @deprecated - Beta Object list item container component */
|
|
22918
|
-
declare const ObjectListItemContainer: ({ children, ...props }: RhythmProps) =>
|
|
22958
|
+
declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22919
22959
|
|
|
22920
22960
|
/** @deprecated - Beta Object list item cover component */
|
|
22921
22961
|
type ObjectListItemCoverProps = {
|
|
22922
22962
|
imageUrl?: string;
|
|
22963
|
+
/** (optional) sets the text to display when there is no image
|
|
22964
|
+
* @default 'Image not available'
|
|
22965
|
+
*/
|
|
22966
|
+
noImageText?: string;
|
|
22923
22967
|
} & HTMLAttributes<HTMLImageElement>;
|
|
22924
22968
|
/** @deprecated - beta Object list item cover component */
|
|
22925
|
-
declare const ObjectListItemCover: ({ imageUrl, ...props }: ObjectListItemCoverProps) =>
|
|
22969
|
+
declare const ObjectListItemCover: ({ imageUrl, noImageText, ...props }: ObjectListItemCoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22926
22970
|
|
|
22927
22971
|
/** @deprecated - Beta Object list item heading component */
|
|
22928
22972
|
type ObjectListItemHeadingProps = Omit<ObjectHeadingProps, 'heading'> & HTMLAttributes<HTMLDivElement> & {
|
|
22929
22973
|
heading: ReactNode;
|
|
22930
22974
|
};
|
|
22931
22975
|
/** @deprecated - beta Object list item heading component */
|
|
22932
|
-
declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) =>
|
|
22976
|
+
declare const ObjectListItemHeading: ({ heading, beforeHeadingSlot, afterHeadingSlot, ...props }: ObjectListItemHeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
22933
22977
|
|
|
22934
22978
|
declare function Pagination({ limit, offset, total, onPageChange, }: {
|
|
22935
22979
|
limit: number;
|
|
22936
22980
|
offset: number;
|
|
22937
22981
|
total: number;
|
|
22938
22982
|
onPageChange: (limit: number, offset: number) => void;
|
|
22939
|
-
}):
|
|
22983
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
22940
22984
|
|
|
22941
22985
|
type CommonParameterProps = {
|
|
22942
22986
|
/** sets the label value */
|
|
@@ -23012,9 +23056,9 @@ type ConnectToDataElementButtonProps = HTMLAttributes<HTMLButtonElement> & {
|
|
|
23012
23056
|
/** Disables hover state, sets aria-disabled */
|
|
23013
23057
|
isLocked?: boolean;
|
|
23014
23058
|
};
|
|
23015
|
-
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;
|
|
23016
23060
|
/** @deprecated use LabelLeadingIcon */
|
|
23017
|
-
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;
|
|
23018
23062
|
|
|
23019
23063
|
type ParameterDataConnectButtonProps = {
|
|
23020
23064
|
/** Sets the label value */
|
|
@@ -23036,7 +23080,7 @@ type ParameterDataConnectButtonProps = {
|
|
|
23036
23080
|
* @example <ParameterDataConnectButton label="label" id="connect-data-button" onConnectDatasource={() => myFunction()}>Button Text</ParameterDataConnectButton>
|
|
23037
23081
|
* @deprecated no longer used in uniform UI
|
|
23038
23082
|
*/
|
|
23039
|
-
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;
|
|
23040
23084
|
|
|
23041
23085
|
type ParameterDrawerHeaderProps = {
|
|
23042
23086
|
title: string;
|
|
@@ -23046,7 +23090,7 @@ type ParameterDrawerHeaderProps = {
|
|
|
23046
23090
|
/**
|
|
23047
23091
|
* @deprecated use <Drawer heading={"Hi!"} /> instead, to use default drawer heading styles
|
|
23048
23092
|
*/
|
|
23049
|
-
declare const ParameterDrawerHeader: ({ title, iconBeforeTitle, children }: ParameterDrawerHeaderProps) =>
|
|
23093
|
+
declare const ParameterDrawerHeader: ({ title, iconBeforeTitle, children }: ParameterDrawerHeaderProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23050
23094
|
|
|
23051
23095
|
type ParameterGroupProps = React.HTMLAttributes<HTMLFieldSetElement> & {
|
|
23052
23096
|
/** sets the legend value */
|
|
@@ -23060,7 +23104,7 @@ declare const ParameterGroup: React$1.ForwardRefExoticComponent<React$1.HTMLAttr
|
|
|
23060
23104
|
/** sets the legend value */
|
|
23061
23105
|
legend: string | JSX.Element;
|
|
23062
23106
|
/** (optional) - sets a disabled attribute at the field level disabling all child input fields and buttons */
|
|
23063
|
-
isDisabled?: boolean
|
|
23107
|
+
isDisabled?: boolean;
|
|
23064
23108
|
children: ReactNode;
|
|
23065
23109
|
} & React$1.RefAttributes<HTMLFieldSetElement>>;
|
|
23066
23110
|
|
|
@@ -23071,27 +23115,27 @@ type ParameterImageProps = Omit<CommonParameterInputProps, 'inputIcon' | 'type'>
|
|
|
23071
23115
|
/** @Example <ParameterImage {...inputArgs} value={value} onChange={(e) => setValue(e.currentTarget.value)} /> */
|
|
23072
23116
|
declare const ParameterImage: React__default.ForwardRefExoticComponent<Omit<CommonParameterInputProps, "type" | "inputIcon"> & React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
23073
23117
|
/** Turns off the image preview, if it's not desired or rendered separately with `ParameterImageImage` elsewhere */
|
|
23074
|
-
disablePreview?: boolean
|
|
23118
|
+
disablePreview?: boolean;
|
|
23075
23119
|
} & {
|
|
23076
|
-
children?: React__default.ReactNode;
|
|
23120
|
+
children?: React__default.ReactNode | undefined;
|
|
23077
23121
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
23078
23122
|
declare const ParameterImageInner: React__default.ForwardRefExoticComponent<React__default.InputHTMLAttributes<HTMLInputElement> & {
|
|
23079
|
-
disablePreview?: boolean
|
|
23123
|
+
disablePreview?: boolean;
|
|
23080
23124
|
} & React__default.RefAttributes<HTMLInputElement>>;
|
|
23081
23125
|
|
|
23082
23126
|
declare function ParameterImagePreview({ imageSrc }: {
|
|
23083
23127
|
imageSrc: string;
|
|
23084
|
-
}):
|
|
23128
|
+
}): _emotion_react_jsx_runtime.JSX.Element | null;
|
|
23085
23129
|
|
|
23086
23130
|
type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
|
|
23087
23131
|
/** @example <ParameterInput label="label value" id="my-input" /> */
|
|
23088
23132
|
declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
23089
|
-
caption?: string
|
|
23133
|
+
caption?: string;
|
|
23090
23134
|
menuItems?: React$1.ReactNode;
|
|
23091
|
-
actionItems?: React
|
|
23092
|
-
errorTestId?: string
|
|
23093
|
-
captionTestId?: string
|
|
23094
|
-
title?: string
|
|
23135
|
+
actionItems?: React.ReactNode;
|
|
23136
|
+
errorTestId?: string;
|
|
23137
|
+
captionTestId?: string;
|
|
23138
|
+
title?: string;
|
|
23095
23139
|
} & React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
23096
23140
|
declare const ParameterInputInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
23097
23141
|
|
|
@@ -23101,9 +23145,11 @@ type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
|
|
|
23101
23145
|
children: React.ReactNode;
|
|
23102
23146
|
/** sets the label to use a span tag with aria-labelledby */
|
|
23103
23147
|
asSpan?: boolean;
|
|
23148
|
+
/** sets the data-testId attribute */
|
|
23149
|
+
testId?: string;
|
|
23104
23150
|
};
|
|
23105
23151
|
/** @example <ParameterLabel id="my-label">my label</ParameterLabel> */
|
|
23106
|
-
declare const ParameterLabel: ({ id, asSpan, children, ...props }: ParameterLabelProps) =>
|
|
23152
|
+
declare const ParameterLabel: ({ id, asSpan, children, testId, ...props }: ParameterLabelProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23107
23153
|
|
|
23108
23154
|
type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
|
|
23109
23155
|
/** (optional) sets the button text when value is empty
|
|
@@ -23118,22 +23164,22 @@ type ParameterLinkProps = CommonParameterInputProps & React.InputHTMLAttributes<
|
|
|
23118
23164
|
};
|
|
23119
23165
|
/** @example <ParameterLink label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
23120
23166
|
declare const ParameterLink: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
23121
|
-
caption?: string
|
|
23167
|
+
caption?: string;
|
|
23122
23168
|
menuItems?: React$1.ReactNode;
|
|
23123
|
-
actionItems?: React
|
|
23124
|
-
errorTestId?: string
|
|
23125
|
-
captionTestId?: string
|
|
23126
|
-
title?: string
|
|
23169
|
+
actionItems?: React.ReactNode;
|
|
23170
|
+
errorTestId?: string;
|
|
23171
|
+
captionTestId?: string;
|
|
23172
|
+
title?: string;
|
|
23127
23173
|
} & React$1.InputHTMLAttributes<HTMLInputElement> & {
|
|
23128
23174
|
/** (optional) sets the button text when value is empty
|
|
23129
23175
|
* @default 'Configure link'
|
|
23130
23176
|
*/
|
|
23131
|
-
buttonText?: string
|
|
23177
|
+
buttonText?: string;
|
|
23132
23178
|
/** sets the button function */
|
|
23133
23179
|
onConnectLink: () => void;
|
|
23134
23180
|
/** sets the disabled state of the button, useful for permissions */
|
|
23135
|
-
disabled?: boolean
|
|
23136
|
-
externalLink?: string
|
|
23181
|
+
disabled?: boolean;
|
|
23182
|
+
externalLink?: string;
|
|
23137
23183
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23138
23184
|
declare const ParameterLinkInner: React$1.ForwardRefExoticComponent<Omit<ParameterLinkProps, "label" | "id"> & React$1.RefAttributes<HTMLInputElement>>;
|
|
23139
23185
|
|
|
@@ -23153,11 +23199,11 @@ type ParameterMultiSelectProps = CommonParameterInputProps & ParameterMultiSelec
|
|
|
23153
23199
|
/**
|
|
23154
23200
|
* @deprecated beta
|
|
23155
23201
|
* @example <ParameterMultiSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
23156
|
-
declare const ParameterMultiSelect: ({ disabled, ...props }: ParameterMultiSelectProps) =>
|
|
23202
|
+
declare const ParameterMultiSelect: ({ disabled, ...props }: ParameterMultiSelectProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23157
23203
|
/**
|
|
23158
23204
|
* @deprecated beta
|
|
23159
23205
|
* @example <ParameterMultiSelectInner options={[{ label: 'option label', value: 0}]} />*/
|
|
23160
|
-
declare const ParameterMultiSelectInner: (props: ParameterMultiSelectInnerProps) =>
|
|
23206
|
+
declare const ParameterMultiSelectInner: (props: ParameterMultiSelectInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23161
23207
|
|
|
23162
23208
|
type ParameterNameAndPublicIdInputProps = {
|
|
23163
23209
|
id?: undefined | string;
|
|
@@ -23208,7 +23254,7 @@ type ParameterNameAndPublicIdInputProps = {
|
|
|
23208
23254
|
hasInitialPublicIdField?: boolean;
|
|
23209
23255
|
};
|
|
23210
23256
|
/** @example <ParameterNameAndPublicIdInput /> */
|
|
23211
|
-
declare const ParameterNameAndPublicIdInput: ({ id, onBlur, autoFocus, onNameChange, onPublicIdChange, nameIdError, publicIdError, readOnly, hasInitialPublicIdField, label, warnOverLength, nameIdField, nameCaption, namePlaceholderText, publicIdFieldName, publicIdCaption, publicIdPlaceholderText, values, }: ParameterNameAndPublicIdInputProps) =>
|
|
23257
|
+
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;
|
|
23212
23258
|
|
|
23213
23259
|
type LinkNodeProps = NonNullable<LinkParamValue>;
|
|
23214
23260
|
type SerializedLinkNode = Spread<{
|
|
@@ -23240,6 +23286,7 @@ type LinkNodePluginProps = {
|
|
|
23240
23286
|
onSetValue: (value: LinkParamValue) => void;
|
|
23241
23287
|
}) => Promise<void>;
|
|
23242
23288
|
getBoundPath?: (path: string) => string;
|
|
23289
|
+
positioningAnchorEl: HTMLElement;
|
|
23243
23290
|
};
|
|
23244
23291
|
|
|
23245
23292
|
declare const richTextToolbarButton: _emotion_react.SerializedStyles;
|
|
@@ -23247,20 +23294,56 @@ declare const richTextToolbarButtonActive: _emotion_react.SerializedStyles;
|
|
|
23247
23294
|
type RichTextToolbarIconProps = {
|
|
23248
23295
|
icon: IconType;
|
|
23249
23296
|
};
|
|
23250
|
-
declare const RichTextToolbarIcon: ({ icon }: RichTextToolbarIconProps) =>
|
|
23297
|
+
declare const RichTextToolbarIcon: ({ icon }: RichTextToolbarIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23251
23298
|
type RichTextToolbarProps = {
|
|
23252
23299
|
config?: RichTextParamConfiguration;
|
|
23253
23300
|
/** Variables */
|
|
23254
23301
|
customControls?: React.ReactElement;
|
|
23302
|
+
onInsertTable?: () => Promise<{
|
|
23303
|
+
rows: number;
|
|
23304
|
+
columns: number;
|
|
23305
|
+
} | null>;
|
|
23306
|
+
};
|
|
23307
|
+
type UseRichTextToolbarStateProps = {
|
|
23308
|
+
config?: RichTextParamConfiguration;
|
|
23309
|
+
};
|
|
23310
|
+
declare const useRichTextToolbarState: ({ config }: UseRichTextToolbarStateProps) => {
|
|
23311
|
+
activeFormats: _uniformdev_richtext.RichTextBuiltInFormat[];
|
|
23312
|
+
setActiveFormats: React$1.Dispatch<React$1.SetStateAction<_uniformdev_richtext.RichTextBuiltInFormat[]>>;
|
|
23313
|
+
activeElement: "paragraph" | _uniformdev_richtext.RichTextBuiltInElement;
|
|
23314
|
+
setActiveElement: React$1.Dispatch<React$1.SetStateAction<"paragraph" | _uniformdev_richtext.RichTextBuiltInElement>>;
|
|
23315
|
+
visibleFormatsWithIcon: {
|
|
23316
|
+
label: string;
|
|
23317
|
+
type: _uniformdev_richtext.RichTextBuiltInFormat;
|
|
23318
|
+
}[];
|
|
23319
|
+
visibleFormatsWithoutIcon: {
|
|
23320
|
+
label: string;
|
|
23321
|
+
type: _uniformdev_richtext.RichTextBuiltInFormat;
|
|
23322
|
+
}[];
|
|
23323
|
+
visibleTextualElements: {
|
|
23324
|
+
label: string;
|
|
23325
|
+
type: _uniformdev_richtext.RichTextBuiltInElement;
|
|
23326
|
+
}[];
|
|
23327
|
+
isLink: boolean;
|
|
23328
|
+
setIsLink: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
23329
|
+
linkElementVisible: boolean;
|
|
23330
|
+
visibleLists: Set<string>;
|
|
23331
|
+
quoteElementVisible: boolean;
|
|
23332
|
+
codeElementVisible: boolean;
|
|
23333
|
+
tableElementVisible: boolean;
|
|
23334
|
+
visibleElementsWithIcons: Set<string>;
|
|
23335
|
+
visibleInsertElementsWithIcons: Set<string>;
|
|
23255
23336
|
};
|
|
23256
23337
|
|
|
23257
23338
|
type RichTextProps = {
|
|
23258
23339
|
config?: RichTextParamConfiguration;
|
|
23259
|
-
onChange?: (value: SerializedEditorState) => void;
|
|
23340
|
+
onChange?: (value: SerializedEditorState, tags: Set<string>) => void;
|
|
23260
23341
|
onConnectLink?: LinkNodePluginProps['onConnectLink'];
|
|
23261
23342
|
onRichTextInit?: (editor: LexicalEditor) => void;
|
|
23262
23343
|
readOnly?: boolean;
|
|
23344
|
+
minimalInteractivity?: boolean;
|
|
23263
23345
|
editorInputClassName?: string;
|
|
23346
|
+
editorInputWrapperClassName?: string;
|
|
23264
23347
|
/** Register additional custom node types to the RTE */
|
|
23265
23348
|
customNodes?: InitialConfigType['nodes'];
|
|
23266
23349
|
/** Children allows registering custom Lexical plugins */
|
|
@@ -23271,6 +23354,11 @@ type RichTextProps = {
|
|
|
23271
23354
|
};
|
|
23272
23355
|
/** Rich Text Toolbar custom controls */
|
|
23273
23356
|
customControls?: RichTextToolbarProps['customControls'];
|
|
23357
|
+
/** Tables */
|
|
23358
|
+
onInsertTable?: () => Promise<{
|
|
23359
|
+
rows: number;
|
|
23360
|
+
columns: number;
|
|
23361
|
+
} | null>;
|
|
23274
23362
|
};
|
|
23275
23363
|
type RichTextParamValue = SerializedEditorState | undefined | null;
|
|
23276
23364
|
type ParameterRichTextInnerProps = RichTextProps & {
|
|
@@ -23279,32 +23367,25 @@ type ParameterRichTextInnerProps = RichTextProps & {
|
|
|
23279
23367
|
editorFooter?: React.ReactNode;
|
|
23280
23368
|
};
|
|
23281
23369
|
type ParameterRichTextProps = CommonParameterInputProps & ParameterRichTextInnerProps;
|
|
23282
|
-
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) =>
|
|
23283
|
-
declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorFooter, children, customNodes, variables, customControls, }: ParameterRichTextInnerProps) =>
|
|
23370
|
+
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;
|
|
23371
|
+
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;
|
|
23284
23372
|
|
|
23285
23373
|
type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectProps & React.InputHTMLAttributes<HTMLSelectElement>;
|
|
23286
23374
|
/** @example <ParameterSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
|
|
23287
23375
|
declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
23288
|
-
caption?: string
|
|
23376
|
+
caption?: string;
|
|
23289
23377
|
menuItems?: React$1.ReactNode;
|
|
23290
|
-
actionItems?: React
|
|
23291
|
-
errorTestId?: string
|
|
23292
|
-
captionTestId?: string
|
|
23293
|
-
title?: string
|
|
23378
|
+
actionItems?: React.ReactNode;
|
|
23379
|
+
errorTestId?: string;
|
|
23380
|
+
captionTestId?: string;
|
|
23381
|
+
title?: string;
|
|
23294
23382
|
} & CommonParameterSelectProps & React$1.InputHTMLAttributes<HTMLSelectElement> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
23295
23383
|
/** @example <ParameterSelectInner options={[{ label: 'option label', value: 0}]} />*/
|
|
23296
23384
|
declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<ParameterSelectProps, "label" | "id"> & React$1.RefAttributes<HTMLSelectElement>>;
|
|
23297
23385
|
|
|
23298
23386
|
/** A function that extracts all common props and element props
|
|
23299
23387
|
* @example const { shellProps, innerProps } = extractParameterProps(props) */
|
|
23300
|
-
declare const extractParameterProps: <T>(props: T &
|
|
23301
|
-
caption?: string | undefined;
|
|
23302
|
-
menuItems?: ReactNode;
|
|
23303
|
-
actionItems?: ReactNode;
|
|
23304
|
-
errorTestId?: string | undefined;
|
|
23305
|
-
captionTestId?: string | undefined;
|
|
23306
|
-
title?: string | undefined;
|
|
23307
|
-
}) => {
|
|
23388
|
+
declare const extractParameterProps: <T>(props: T & CommonParameterInputProps) => {
|
|
23308
23389
|
shellProps: {
|
|
23309
23390
|
id: string;
|
|
23310
23391
|
label: string;
|
|
@@ -23322,12 +23403,12 @@ declare const extractParameterProps: <T>(props: T & CommonParameterProps & {
|
|
|
23322
23403
|
onResetOverriddenValue: (() => void) | undefined;
|
|
23323
23404
|
};
|
|
23324
23405
|
innerProps: Omit<T & CommonParameterProps & {
|
|
23325
|
-
caption?: string
|
|
23406
|
+
caption?: string;
|
|
23326
23407
|
menuItems?: ReactNode;
|
|
23327
|
-
actionItems?: ReactNode;
|
|
23328
|
-
errorTestId?: string
|
|
23329
|
-
captionTestId?: string
|
|
23330
|
-
title?: string
|
|
23408
|
+
actionItems?: React.ReactNode;
|
|
23409
|
+
errorTestId?: string;
|
|
23410
|
+
captionTestId?: string;
|
|
23411
|
+
title?: string;
|
|
23331
23412
|
}, "caption" | "label" | "title" | "id" | "warningMessage" | "errorMessage" | "infoMessage" | "errorTestId" | "captionTestId" | "menuItems" | "hiddenLabel" | "labelLeadingIcon" | "hasOverriddenValue" | "onResetOverriddenValue">;
|
|
23332
23413
|
};
|
|
23333
23414
|
type ParameterShellOverrideProps = {
|
|
@@ -23350,22 +23431,22 @@ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonPar
|
|
|
23350
23431
|
* Uniform Parameter shell component
|
|
23351
23432
|
* @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
|
|
23352
23433
|
*/
|
|
23353
|
-
declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, isParameterGroup, ...props }: ParameterShellProps) =>
|
|
23434
|
+
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;
|
|
23354
23435
|
declare const ParameterShellPlaceholder: ({ children }: {
|
|
23355
23436
|
children?: ReactNode;
|
|
23356
|
-
}) =>
|
|
23437
|
+
}) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23357
23438
|
/** @deprecated */
|
|
23358
|
-
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) =>
|
|
23439
|
+
declare const ParameterOverrideMarker: (props: HTMLAttributes<HTMLButtonElement>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23359
23440
|
|
|
23360
23441
|
type ParameterTextareaProps = CommonParameterInputProps & React.TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
23361
23442
|
/** @example <ParameterTextarea label="label value" id="my-textarea" /> */
|
|
23362
23443
|
declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParameterProps & {
|
|
23363
|
-
caption?: string
|
|
23444
|
+
caption?: string;
|
|
23364
23445
|
menuItems?: React$1.ReactNode;
|
|
23365
|
-
actionItems?: React
|
|
23366
|
-
errorTestId?: string
|
|
23367
|
-
captionTestId?: string
|
|
23368
|
-
title?: string
|
|
23446
|
+
actionItems?: React.ReactNode;
|
|
23447
|
+
errorTestId?: string;
|
|
23448
|
+
captionTestId?: string;
|
|
23449
|
+
title?: string;
|
|
23369
23450
|
} & React$1.TextareaHTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
23370
23451
|
/** @example <ParameterTextareaInner /> */
|
|
23371
23452
|
declare const ParameterTextareaInner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -23375,14 +23456,14 @@ type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 't
|
|
|
23375
23456
|
};
|
|
23376
23457
|
/** @example <ParameterToggle title="my checkbox" label="label value" id="my-checkbox" type="checkbox" onIconClick={() => alert('icon clicked)} /> */
|
|
23377
23458
|
declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
|
|
23378
|
-
caption?: string
|
|
23459
|
+
caption?: string;
|
|
23379
23460
|
menuItems?: React$1.ReactNode;
|
|
23380
|
-
actionItems?: React
|
|
23381
|
-
errorTestId?: string
|
|
23382
|
-
captionTestId?: string
|
|
23383
|
-
title?: string
|
|
23461
|
+
actionItems?: React.ReactNode;
|
|
23462
|
+
errorTestId?: string;
|
|
23463
|
+
captionTestId?: string;
|
|
23464
|
+
title?: string;
|
|
23384
23465
|
} & {
|
|
23385
|
-
type:
|
|
23466
|
+
type: "checkbox" | "radio";
|
|
23386
23467
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23387
23468
|
declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
|
|
23388
23469
|
|
|
@@ -23423,7 +23504,7 @@ type PopoverProps = PopoverProps$1 & {
|
|
|
23423
23504
|
*/
|
|
23424
23505
|
maxWidth?: string;
|
|
23425
23506
|
};
|
|
23426
|
-
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) =>
|
|
23507
|
+
declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, baseId, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23427
23508
|
/**
|
|
23428
23509
|
* Hook to get the current popover context
|
|
23429
23510
|
* @description This hook is used to get the current popover context
|
|
@@ -23441,7 +23522,7 @@ interface ProgressBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
23441
23522
|
/**
|
|
23442
23523
|
* @deprecated This component is in beta, and might receive breaking changes in minor releases!
|
|
23443
23524
|
*/
|
|
23444
|
-
declare function ProgressBar({ current, max, theme, variant, ...props }: ProgressBarProps):
|
|
23525
|
+
declare function ProgressBar({ current, max, theme, variant, ...props }: ProgressBarProps): _emotion_react_jsx_runtime.JSX.Element;
|
|
23445
23526
|
|
|
23446
23527
|
type ProgressListItemStatus = 'completed' | 'inProgress' | 'queued';
|
|
23447
23528
|
type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
@@ -23459,7 +23540,7 @@ type ProgressListProps = React__default.HTMLAttributes<HTMLOListElement> & {
|
|
|
23459
23540
|
* Component that sets the base structure for scrollable content in a max height container
|
|
23460
23541
|
* @example <ProgressList items={[{ id: 'step1', label: 'Step 1' }, { id: 'step2', label: 'Step 2' }]} />
|
|
23461
23542
|
*/
|
|
23462
|
-
declare const ProgressList: ({ inProgressId, items, autoEllipsis, ...htmlProps }: ProgressListProps) =>
|
|
23543
|
+
declare const ProgressList: ({ inProgressId, items, autoEllipsis, ...htmlProps }: ProgressListProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23463
23544
|
type ProgressListItemProps = React__default.HTMLAttributes<HTMLLIElement> & {
|
|
23464
23545
|
/** The status of the item. Defaults to 'queued' */
|
|
23465
23546
|
status?: ProgressListItemStatus;
|
|
@@ -23478,7 +23559,7 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
23478
23559
|
* */
|
|
23479
23560
|
errorLevel?: 'danger' | 'caution';
|
|
23480
23561
|
};
|
|
23481
|
-
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) =>
|
|
23562
|
+
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23482
23563
|
|
|
23483
23564
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
23484
23565
|
value: TValue;
|
|
@@ -23527,7 +23608,7 @@ type SegmentedControlProps<TValue extends string = string> = Omit<React__default
|
|
|
23527
23608
|
* A control with multiple segments. Can be used as a replacement of radio buttons.
|
|
23528
23609
|
* @example <SegmentedControl name="mySegmentedControl" value={value} options={[{label: 'Option 1', value: 'option1',label: 'Option 2', value: 'option2'}]} onChange={setValue} />
|
|
23529
23610
|
*/
|
|
23530
|
-
declare const SegmentedControl: <TValue extends string = string>({ name, options, value, onChange, noCheckmark, disabled, orientation, size, hideOptionText, iconSize, currentBackgroundColor, ...props }: SegmentedControlProps<TValue>) =>
|
|
23611
|
+
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;
|
|
23531
23612
|
|
|
23532
23613
|
type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttributes<HTMLDivElement>> & {
|
|
23533
23614
|
width?: string;
|
|
@@ -23539,7 +23620,7 @@ type SkeletonProps = React__default.PropsWithChildren<React__default.HTMLAttribu
|
|
|
23539
23620
|
* A loading skeleton
|
|
23540
23621
|
* @example <Skeleton width="50%" height="32px" />
|
|
23541
23622
|
*/
|
|
23542
|
-
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) =>
|
|
23623
|
+
declare const Skeleton: ({ width, height, inline, circle, children, ...otherProps }: SkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23543
23624
|
|
|
23544
23625
|
type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
|
|
23545
23626
|
/** sets the label value */
|
|
@@ -23562,13 +23643,13 @@ declare const Switch: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAt
|
|
|
23562
23643
|
/** sets the label value */
|
|
23563
23644
|
label: ReactNode;
|
|
23564
23645
|
/** (optional) sets information text */
|
|
23565
|
-
infoText?: string
|
|
23646
|
+
infoText?: string;
|
|
23566
23647
|
/** sets the toggle text value */
|
|
23567
|
-
toggleText?: string
|
|
23648
|
+
toggleText?: string;
|
|
23568
23649
|
/** sets child elements */
|
|
23569
23650
|
children?: ReactNode;
|
|
23570
23651
|
/** the size of the control */
|
|
23571
|
-
switchSize?: "base" | "sm"
|
|
23652
|
+
switchSize?: "base" | "sm";
|
|
23572
23653
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
23573
23654
|
|
|
23574
23655
|
type TableProps = {
|
|
@@ -23610,7 +23691,7 @@ declare const Table: React$1.ForwardRefExoticComponent<{
|
|
|
23610
23691
|
/** The CSS padding of the table cells (includes the head cells as well).
|
|
23611
23692
|
* @default 'var(--spacing-base) var(--spacing-md)'
|
|
23612
23693
|
*/
|
|
23613
|
-
cellPadding?: string
|
|
23694
|
+
cellPadding?: string;
|
|
23614
23695
|
} & Omit<Omit<React$1.DetailedHTMLProps<React$1.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref">, "cellPadding"> & React$1.RefAttributes<HTMLTableElement>>;
|
|
23615
23696
|
declare const TableHead: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
23616
23697
|
declare const TableBody: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
@@ -23631,18 +23712,18 @@ type TabsProps<TTabName extends string = string> = {
|
|
|
23631
23712
|
*/
|
|
23632
23713
|
useHashForState?: boolean;
|
|
23633
23714
|
};
|
|
23634
|
-
declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, ...props }: TabsProps<TTabName>) =>
|
|
23635
|
-
declare const TabButtonGroup: ({ children, ...props }: Partial<TabListProps>) =>
|
|
23715
|
+
declare const Tabs: <TTabName extends string = string>({ children, onSelectedIdChange, useHashForState, selectedId, manual, ...props }: TabsProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23716
|
+
declare const TabButtonGroup: ({ children, ...props }: Partial<TabListProps>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23636
23717
|
type TabButtonProps<TTabName extends string = string> = Partial<TabProps> & {
|
|
23637
23718
|
id: TTabName;
|
|
23638
23719
|
children: React__default.ReactNode;
|
|
23639
23720
|
};
|
|
23640
|
-
declare const TabButton: <TTabName extends string = string>({ children, id, ...props }: TabButtonProps<TTabName>) =>
|
|
23721
|
+
declare const TabButton: <TTabName extends string = string>({ children, id, ...props }: TabButtonProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23641
23722
|
type TabContentProps<TTabName extends string = string> = Partial<TabPanelProps> & {
|
|
23642
23723
|
tabId?: TTabName;
|
|
23643
23724
|
children: React__default.ReactNode;
|
|
23644
23725
|
};
|
|
23645
|
-
declare const TabContent: <TTabName extends string = string>({ children, ...props }: TabContentProps<TTabName>) =>
|
|
23726
|
+
declare const TabContent: <TTabName extends string = string>({ children, ...props }: TabContentProps<TTabName>) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23646
23727
|
|
|
23647
23728
|
type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
23648
23729
|
/** (optional) sets the title value
|
|
@@ -23660,7 +23741,7 @@ type CreateTeamIntegrationTileProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
|
23660
23741
|
*/
|
|
23661
23742
|
asDeepLink?: boolean;
|
|
23662
23743
|
};
|
|
23663
|
-
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, ...props }: CreateTeamIntegrationTileProps) =>
|
|
23744
|
+
declare const CreateTeamIntegrationTile: ({ title, buttonText, onClick, asDeepLink, ...props }: CreateTeamIntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23664
23745
|
|
|
23665
23746
|
interface IntegrationTileFields {
|
|
23666
23747
|
icon?: string | React.ComponentType<{
|
|
@@ -23682,7 +23763,7 @@ type EditTeamIntegrationTileProps = IntegrationTileFields & {
|
|
|
23682
23763
|
/** Uniform Edit Team Integration Tile
|
|
23683
23764
|
* @example <EditTeamIntegrationTile id="example" onEdit={() => func()} canEdit={true} isPublis={true} name="example" icon="./image.svg" />
|
|
23684
23765
|
*/
|
|
23685
|
-
declare const EditTeamIntegrationTile: ({ id, icon, name, onEdit, isPublic, canEdit, }: EditTeamIntegrationTileProps) =>
|
|
23766
|
+
declare const EditTeamIntegrationTile: ({ id, icon, name, onEdit, isPublic, canEdit, }: EditTeamIntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23686
23767
|
|
|
23687
23768
|
type IntegrationComingSoonProps = IntegrationTileFields & React.HTMLAttributes<HTMLDivElement> & {
|
|
23688
23769
|
/** sets the id and data-testid value */
|
|
@@ -23698,7 +23779,7 @@ type IntegrationComingSoonProps = IntegrationTileFields & React.HTMLAttributes<H
|
|
|
23698
23779
|
* Uniform Integration Coming Soon Component
|
|
23699
23780
|
* @example <IntegrationComingSoon id="piedpiper" name="Pied Piper" icon="./piedpiper.svg" onUpVoteClick={() => someFunc()} />
|
|
23700
23781
|
*/
|
|
23701
|
-
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, ...props }: IntegrationComingSoonProps) =>
|
|
23782
|
+
declare const IntegrationComingSoon: ({ name, icon, id, onUpVoteClick, timing, ...props }: IntegrationComingSoonProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23702
23783
|
|
|
23703
23784
|
type IntegrationLoadingTileProps = {
|
|
23704
23785
|
/** (optional) sets the number of skeletal loading elements to show
|
|
@@ -23709,7 +23790,7 @@ type IntegrationLoadingTileProps = {
|
|
|
23709
23790
|
/** Uniform Integration Loading Tile
|
|
23710
23791
|
* @example <IntegrationLoadingTile count={10} />
|
|
23711
23792
|
*/
|
|
23712
|
-
declare const IntegrationLoadingTile: ({ count }: IntegrationLoadingTileProps) =>
|
|
23793
|
+
declare const IntegrationLoadingTile: ({ count }: IntegrationLoadingTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23713
23794
|
|
|
23714
23795
|
type IntegrationModalIconProps = React$1.ImgHTMLAttributes<HTMLImageElement> & {
|
|
23715
23796
|
/** sets the icon as inline svg or img tag */
|
|
@@ -23723,7 +23804,7 @@ type IntegrationModalIconProps = React$1.ImgHTMLAttributes<HTMLImageElement> & {
|
|
|
23723
23804
|
* Uniform Integration Modal Icon
|
|
23724
23805
|
* @example <IntegrationModalIcon name="name" icon="/my-icon.svg" />
|
|
23725
23806
|
*/
|
|
23726
|
-
declare const IntegrationModalIcon: ({ icon, name, ...imgProps }: IntegrationModalIconProps) =>
|
|
23807
|
+
declare const IntegrationModalIcon: ({ icon, name, ...imgProps }: IntegrationModalIconProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23727
23808
|
|
|
23728
23809
|
type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAttributes<HTMLButtonElement> & {
|
|
23729
23810
|
id: string;
|
|
@@ -23735,7 +23816,7 @@ type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAttributes
|
|
|
23735
23816
|
className?: string;
|
|
23736
23817
|
}> | undefined;
|
|
23737
23818
|
};
|
|
23738
|
-
declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) =>
|
|
23819
|
+
declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23739
23820
|
|
|
23740
23821
|
type ClassNameOptions = 'logo' | 'author';
|
|
23741
23822
|
type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVGElement> & React__default.ImgHTMLAttributes<HTMLImageElement> & {
|
|
@@ -23747,14 +23828,14 @@ type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVG
|
|
|
23747
23828
|
/** Uniform Resolve Icon Component
|
|
23748
23829
|
* @example <ResolveIcon icon="/my-image.png" name="my image" />
|
|
23749
23830
|
*/
|
|
23750
|
-
declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) =>
|
|
23831
|
+
declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) => _emotion_react_jsx_runtime.JSX.Element | null;
|
|
23751
23832
|
|
|
23752
23833
|
type TileProps = {
|
|
23753
23834
|
children: ReactNode;
|
|
23754
23835
|
disabled?: boolean;
|
|
23755
23836
|
isSelected?: boolean;
|
|
23756
23837
|
} & HtmlHTMLAttributes<HTMLButtonElement>;
|
|
23757
|
-
declare const Tile: ({ children, disabled, isSelected, ...props }: TileProps) =>
|
|
23838
|
+
declare const Tile: ({ children, disabled, isSelected, ...props }: TileProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23758
23839
|
|
|
23759
23840
|
type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
23760
23841
|
/** sets the background colour of the outter container
|
|
@@ -23780,13 +23861,13 @@ type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
|
23780
23861
|
* Uniform Tile Container Component
|
|
23781
23862
|
* @example <TileContainer><div>child content</div></TileContainer>
|
|
23782
23863
|
*/
|
|
23783
|
-
declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, ...props }: TileContainerProps) =>
|
|
23864
|
+
declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, ...props }: TileContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23784
23865
|
|
|
23785
23866
|
type TileTitleProps = {
|
|
23786
23867
|
as?: 'heading' | 'description';
|
|
23787
23868
|
children: ReactNode;
|
|
23788
23869
|
} & HTMLAttributes<HTMLSpanElement>;
|
|
23789
|
-
declare const TileText: ({ as, children, ...props }: TileTitleProps) =>
|
|
23870
|
+
declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23790
23871
|
|
|
23791
23872
|
type ToastContainerProps = {
|
|
23792
23873
|
limit?: number;
|
|
@@ -23799,7 +23880,7 @@ type ToastContainerProps = {
|
|
|
23799
23880
|
* A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
|
|
23800
23881
|
* @example <App><ToastContainer autoCloseDelay="normal" /></App>
|
|
23801
23882
|
*/
|
|
23802
|
-
declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) =>
|
|
23883
|
+
declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23803
23884
|
|
|
23804
23885
|
/** Available heading weights e.g. 1 - 6 */
|
|
23805
23886
|
type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
|
|
@@ -23825,8 +23906,9 @@ type HeadingProps = {
|
|
|
23825
23906
|
* Component that sets the heading tag
|
|
23826
23907
|
* @example <Heading level={1}>Blog Post Title</Heading>
|
|
23827
23908
|
*/
|
|
23828
|
-
declare const Heading: ({ level, as, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) =>
|
|
23909
|
+
declare const Heading: ({ level, as, asSpan, withMarginBottom, children, ...hAttributes }: HeadingProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23829
23910
|
|
|
23911
|
+
/** @deprecated - Integration header section props are no longer supported or maintained */
|
|
23830
23912
|
type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
|
|
23831
23913
|
/** sets the title text of the integration */
|
|
23832
23914
|
title: string;
|
|
@@ -23846,10 +23928,10 @@ type IntegrationHeaderSectionProps = React$1.HtmlHTMLAttributes<HTMLDivElement>
|
|
|
23846
23928
|
menu?: React$1.ReactNode;
|
|
23847
23929
|
};
|
|
23848
23930
|
/**
|
|
23849
|
-
* Uniform Integration Header Section Component
|
|
23931
|
+
* @deprecated Uniform Integration Header Section Component is no longer supported or maintained
|
|
23850
23932
|
* @Example <IntegrationHeaderSection title="custom integration" description="custom integration description text" />
|
|
23851
23933
|
*/
|
|
23852
|
-
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) =>
|
|
23934
|
+
declare const IntegrationHeaderSection: ({ title, description, icon, docsLink, badgeText, menu, children, ...props }: IntegrationHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23853
23935
|
|
|
23854
23936
|
type LinkColorProps = 'currentColor' | 'destructive' | 'default';
|
|
23855
23937
|
type LinkProps = React$1.AnchorHTMLAttributes<HTMLAnchorElement> & {
|
|
@@ -23886,16 +23968,16 @@ declare const LinkWithRef: React$1.ForwardRefExoticComponent<Omit<React$1.Anchor
|
|
|
23886
23968
|
/** (optional) sets the link color
|
|
23887
23969
|
* @default 'currentColor'
|
|
23888
23970
|
*/
|
|
23889
|
-
linkColor?: LinkColorProps
|
|
23971
|
+
linkColor?: LinkColorProps;
|
|
23890
23972
|
/** (optional) sets whether the link is external or not adding an icon to the link */
|
|
23891
|
-
external?: boolean
|
|
23973
|
+
external?: boolean;
|
|
23892
23974
|
/** (optional) For supporting inside next/link component */
|
|
23893
|
-
ref?: React$1.ForwardedRef<HTMLAnchorElement
|
|
23975
|
+
ref?: React$1.ForwardedRef<HTMLAnchorElement>;
|
|
23894
23976
|
/** (optional) sets react child elements */
|
|
23895
23977
|
children?: React$1.ReactNode;
|
|
23896
23978
|
} & {
|
|
23897
23979
|
href: string;
|
|
23898
|
-
as?: string
|
|
23980
|
+
as?: string;
|
|
23899
23981
|
linkManagerComponent: LinkManagerWithRefType;
|
|
23900
23982
|
}, "ref"> & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
23901
23983
|
|
|
@@ -23912,7 +23994,7 @@ type PageHeaderSectionProps = Omit<React$1.HTMLAttributes<HTMLHeadingElement>, '
|
|
|
23912
23994
|
level?: LevelProps;
|
|
23913
23995
|
linkManagerComponent?: LinkManagerWithRefType;
|
|
23914
23996
|
};
|
|
23915
|
-
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) =>
|
|
23997
|
+
declare const PageHeaderSection: ({ title, desc, children, linkText, level, linkProps, linkManagerComponent, ...htmlProps }: PageHeaderSectionProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23916
23998
|
|
|
23917
23999
|
type ParagraphProps = {
|
|
23918
24000
|
/** (optional) adds child elements to the paragraph tag */
|
|
@@ -23926,7 +24008,7 @@ type ParagraphProps = {
|
|
|
23926
24008
|
* Component for generic paragraph tags
|
|
23927
24009
|
* @example <Paragraph>This is the text that was be inside the paragraph tag.</Paragraph>
|
|
23928
24010
|
*/
|
|
23929
|
-
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) =>
|
|
24011
|
+
declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23930
24012
|
|
|
23931
24013
|
type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown' | 'Deleted';
|
|
23932
24014
|
type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
@@ -23943,6 +24025,6 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23943
24025
|
*/
|
|
23944
24026
|
size?: 'sm' | 'base';
|
|
23945
24027
|
};
|
|
23946
|
-
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) =>
|
|
24028
|
+
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
23947
24029
|
|
|
23948
|
-
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, 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, 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, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon };
|
|
24030
|
+
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 };
|