@uniformdev/design-system 20.7.1-alpha.12 → 20.7.1-alpha.120

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/index.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
2
- import { Decorator } from '@storybook/react';
2
+ import { Decorator } from '@storybook/react-vite';
3
3
  import * as React$1 from 'react';
4
- import React__default, { RefObject, ReactElement, MutableRefObject, HTMLAttributes, ReactNode, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, PropsWithChildren, FocusEventHandler, ChangeEvent, HtmlHTMLAttributes } from 'react';
4
+ import React__default, { RefObject, ReactElement, MutableRefObject, HTMLAttributes, ReactNode, ButtonHTMLAttributes, ImgHTMLAttributes, SVGProps, InputHTMLAttributes, CSSProperties, Ref, HtmlHTMLAttributes, PropsWithChildren, FocusEventHandler, ChangeEvent } from 'react';
5
5
  import { GroupBase, Props, MultiValue, SingleValue } from 'react-select';
6
6
  export { ActionMeta, FormatOptionLabelContext, FormatOptionLabelMeta, GetOptionLabel, GetOptionValue, GroupBase, GroupHeadingProps, GroupProps, MenuListProps, MenuPlacement, MultiValue, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, OnChangeValue, OptionContext, OptionProps, Options, OptionsOrGroups } from 'react-select';
7
7
  import * as _emotion_react from '@emotion/react';
@@ -16,7 +16,6 @@ import { IconType as IconType$2 } from '@react-icons/all-files';
16
16
  import { DateValue } from '@internationalized/date';
17
17
  import { CalendarProps as CalendarProps$1, TimeFieldProps, TimeValue } from 'react-aria-components';
18
18
  import { CreatableProps } from 'react-select/creatable';
19
- import InternalSelect from '../../../node_modules/react-select/dist/declarations/src/Select';
20
19
  import { JsonSchema7Type } from 'zod-to-json-schema/src/parseDef';
21
20
  import { InitialConfigType } from '@lexical/react/LexicalComposer';
22
21
  import { LinkParamValue, RichTextParamConfiguration } from '@uniformdev/canvas';
@@ -81,6 +80,14 @@ declare const supports: (cssProp: string) => string;
81
80
  * @example `${cq('300px')} { background: red; }`
82
81
  */
83
82
  declare const cq: (size: string) => string;
83
+ /**
84
+ * Prefers Reduced Motion Helper Function
85
+ * @function
86
+ * @param {string} cssProp - The css property you want to check support
87
+ * @returns {string} - compiled prefers reduced motion query e.g. @media (prefers-reduced-motion: reduce)
88
+ * @example `${prefersReducedMotion('reduce')} { animation: none; }`
89
+ */
90
+ declare const prefersReducedMotion: (cssProp: "reduce" | "no-preference") => string;
84
91
 
85
92
  /** @deprecated for internal use only */
86
93
  declare const debounce: (fn: (...args: any[]) => void, ms?: number) => (this: any, ...args: any[]) => void;
@@ -189,6 +196,7 @@ declare const skeletonLoading: _emotion_react.Keyframes;
189
196
  declare const fadeInLtr: _emotion_react.Keyframes;
190
197
  declare const fadeInRtl: _emotion_react.Keyframes;
191
198
  declare const slideInTtb: _emotion_react.Keyframes;
199
+ declare const slideInRtl: _emotion_react.Keyframes;
192
200
  declare const spin: _emotion_react.Keyframes;
193
201
 
194
202
  /** Custom scrollbar styles */
@@ -383,8 +391,12 @@ type UseShortcutOptions = {
383
391
  doNotPreventDefault?: boolean;
384
392
  /** Whether the shortcut will activate with a form field in focus */
385
393
  activeWhenEditing?: boolean;
386
- /** When true, the shortcut is disabled. The result will also reflect this state, which may disable attached menus, buttons, etc */
387
- disabled?: boolean;
394
+ /**
395
+ * When true or 'silent', the shortcut is disabled. When undefined or false, it is enabled.
396
+ * The result will also reflect this state, which may disable attached menus, buttons, etc
397
+ * 'silent' will not show a toast notification when the shortcut is invoked while disabled.
398
+ */
399
+ disabled?: boolean | 'silent';
388
400
  };
389
401
  type ShortcutReference = {
390
402
  shortcut: string;
@@ -408,8 +420,12 @@ type TooltipProps = TooltipOptions & {
408
420
  children: JSX.Element;
409
421
  /** If the tooltip should not be rendered inside a portal */
410
422
  withoutPortal?: boolean;
423
+ /** sets the delay time before showing the tooltip
424
+ * @default 0
425
+ */
426
+ timeout?: number;
411
427
  } & Pick<HTMLAttributes<HTMLDivElement>, 'className'>;
412
- declare function Tooltip({ children, title, placement, visible, withoutPortal, ...tooltipProps }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
428
+ declare function Tooltip({ children, title, placement, visible, withoutPortal, timeout, ...tooltipProps }: TooltipProps): _emotion_react_jsx_runtime.JSX.Element;
413
429
 
414
430
  /** Button sizes that are available to use with our brand */
415
431
  type ButtonSizeProps$1 = 'zero' | 'xs' | 'sm' | 'md' | 'lg' | 'xl';
@@ -427,6 +443,12 @@ type ButtonSoftStylesProps = {
427
443
  size: ButtonSizeProps$1;
428
444
  variant?: 'soft' | undefined;
429
445
  };
446
+ declare const getButtonSize: (size: ButtonSizeProps$1) => string;
447
+ declare const getButtonStyles: ({ size, ...props }: ButtonStylesProps) => {
448
+ buttonTheme: SerializedStyles;
449
+ btnSize: string;
450
+ };
451
+ /** @deprecated - use getButtonStyles instead */
430
452
  declare const useButtonStyles: ({ size, ...props }: ButtonStylesProps) => {
431
453
  buttonTheme: SerializedStyles;
432
454
  btnSize: string;
@@ -1150,17 +1172,18 @@ declare const allSupportedIcons: {
1150
1172
  'device-tv': _react_icons_all_files.IconType;
1151
1173
  'device-ipad': _react_icons_all_files.IconType;
1152
1174
  'device-mobile-rotated': _react_icons_all_files.IconType;
1175
+ 'plug-angled': _react_icons_all_files.IconType;
1176
+ 'clock-edit': _react_icons_all_files.IconType;
1153
1177
  };
1154
1178
 
1155
1179
  /** A list of available icon names that can be used with the Uniform brand */
1156
1180
  type IconName = keyof typeof allSupportedIcons;
1157
-
1181
+ /** sets the type of icon to use from the available list */
1182
+ type IconType = IconName | IconType$1;
1158
1183
  /** sets fill color of the svg icon
1159
1184
  * @default 'default'
1160
1185
  */
1161
- type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light' | 'accent-alt-dark';
1162
- /** sets the type of icon to use from the available list */
1163
- type IconType = IconName | IconType$1;
1186
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'gray300' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light' | 'accent-alt-dark' | 'utility-success';
1164
1187
  interface IconProps extends IconBaseProps {
1165
1188
  /** sets the icon to be used */
1166
1189
  icon: IconType;
@@ -1169,11 +1192,6 @@ interface IconProps extends IconBaseProps {
1169
1192
  /** sets additional icon props provided by "react-icons" */
1170
1193
  otherProps?: IconBaseProps;
1171
1194
  }
1172
- /**
1173
- * Component that renders icons
1174
- * @example <Icon icon="add-r" iconColor="currentColor" />
1175
- */
1176
- declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_jsx_runtime.JSX.Element | null>;
1177
1195
 
1178
1196
  declare const rectangleRoundedIcon: (props: _react_icons_all_files.IconBaseProps) => React.JSX.Element;
1179
1197
  declare const cardIcon: (props: _react_icons_all_files.IconBaseProps) => React.JSX.Element;
@@ -1228,6 +1246,12 @@ declare const customIcons: {
1228
1246
  'zig-zag-thick': (props: _react_icons_all_files.IconBaseProps) => React.JSX.Element;
1229
1247
  };
1230
1248
 
1249
+ /**
1250
+ * Component that renders icons
1251
+ * @example <Icon icon="add-r" iconColor="currentColor" />
1252
+ */
1253
+ declare const Icon: React__default.MemoExoticComponent<({ icon, iconColor, size, ...otherProps }: IconProps) => _emotion_react_jsx_runtime.JSX.Element | null>;
1254
+
1231
1255
  type IconsMap = Record<string, IconType$1>;
1232
1256
  declare function useIconContext(): {
1233
1257
  iconsMap: IconsMap;
@@ -1251,6 +1275,10 @@ declare const uniformCompositionPatternIcon: IconType$1;
1251
1275
  declare const uniformContentTypeIcon: IconType$1;
1252
1276
  declare const uniformEntryIcon: IconType$1;
1253
1277
  declare const uniformEntryPatternIcon: IconType$1;
1278
+ declare const uniformStatusDraftIcon: IconType$1;
1279
+ declare const uniformStatusModifiedIcon: IconType$1;
1280
+ declare const uniformStatusPublishedIcon: IconType$1;
1281
+ declare const uniformUsageStatusIcon: IconType$1;
1254
1282
 
1255
1283
  type ButtonThemeProps = 'primary' | 'secondary' | 'unimportant' | 'ghost' | 'secondaryOutline';
1256
1284
  type ButtonSizeProps = 'sm' | 'base' | 'lg';
@@ -1269,7 +1297,10 @@ interface ActionButtonsProps {
1269
1297
  icon?: IconName;
1270
1298
  /** adds child components to the ButtonWithMenu component */
1271
1299
  children: React$1.ReactNode;
1272
- /** sets the button size */
1300
+ /**
1301
+ * sets the button size
1302
+ * @default "base"
1303
+ */
1273
1304
  size?: ButtonSizeProps;
1274
1305
  /** sets additional Menu component styles */
1275
1306
  menuContainerCssClasses?: SerializedStyles;
@@ -1364,6 +1395,10 @@ type CardProps = React$1.HTMLAttributes<HTMLDivElement> & {
1364
1395
  */
1365
1396
  tag?: React$1.ElementType;
1366
1397
  };
1398
+ /**
1399
+ * @deprecated Use the `FlexiCard` component from `@uniformdev/design-system` instead.
1400
+ * It will be removed in the next major version.
1401
+ */
1367
1402
  declare const Card: ({ title, menuItems, children, titleWithMarginBottom, disabled, tag: Tag, menuButtonTestId, ...props }: CardProps) => _emotion_react_jsx_runtime.JSX.Element;
1368
1403
  type CardTitleProps = {
1369
1404
  children?: React$1.ReactNode;
@@ -1391,11 +1426,19 @@ type CardContainerProps = React$1.HTMLAttributes<HTMLDivElement> & {
1391
1426
  */
1392
1427
  withLastColumn?: boolean;
1393
1428
  };
1394
- /** Uniform Card Container
1429
+ /**
1430
+ * Uniform Card Container
1395
1431
  * @example <CardContainer><Card title="card title" /></CardContainer>
1432
+ *
1433
+ * @deprecated Use the `FlexiCard` component from `@uniformdev/design-system` instead.
1434
+ * It will be removed in the next major version.
1396
1435
  */
1397
1436
  declare const CardContainer: ({ bgColor, padding, withLastColumn, children, ...props }: CardContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
1398
1437
 
1438
+ /**
1439
+ * @deprecated Use the `LoadingCardSkeleton` component from `@uniformdev/design-system` instead.
1440
+ * It will be removed in the next major version.
1441
+ */
1399
1442
  declare const LoadingCardSkeleton: () => _emotion_react_jsx_runtime.JSX.Element;
1400
1443
 
1401
1444
  type ChipSizeProp = 'xs' | 'sm' | 'md';
@@ -1445,6 +1488,17 @@ type DismissibleChipActionProps = {
1445
1488
  */
1446
1489
  declare const DismissibleChipAction: ({ onDismiss, ...props }: DismissibleChipActionProps) => _emotion_react_jsx_runtime.JSX.Element;
1447
1490
 
1491
+ type FilterChipSize = 'xs' | 'sm' | 'md' | 'lg';
1492
+ type FilterChipProps = {
1493
+ leadingIcon?: IconType;
1494
+ asDropdown?: boolean;
1495
+ children: React.ReactNode;
1496
+ dataTestId?: string;
1497
+ size?: FilterChipSize;
1498
+ isSelected?: boolean;
1499
+ } & ButtonHTMLAttributes<HTMLButtonElement>;
1500
+ declare const FilterChip: ({ leadingIcon, asDropdown, children, dataTestId, size, isSelected, ...props }: FilterChipProps) => _emotion_react_jsx_runtime.JSX.Element;
1501
+
1448
1502
  type MultilineChipProps = {
1449
1503
  children: ReactNode;
1450
1504
  onClick?: () => void;
@@ -1457,10 +1511,12 @@ type MultilineChipProps = {
1457
1511
  declare const MultilineChip: ({ children, onClick, ...props }: MultilineChipProps) => _emotion_react_jsx_runtime.JSX.Element;
1458
1512
 
1459
1513
  type CounterBgColors = 'var(--white)' | 'var(--gray-50)' | 'var(--accent-light)' | 'var(--accent-dark)' | 'transparent';
1460
- type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'red';
1514
+ type CounterIconColors = 'auto' | 'var(--utility-caution-icon)' | 'var(--utility-danger-icon)' | 'var(--utility-info-icon)' | 'var(--utility-success-icon)' | 'red';
1461
1515
  type CounterProps = {
1462
- /** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear. */
1463
- count: number | undefined;
1516
+ /** sets the count value, a 0 will show a dot instead of a number. Undefined will cause the counter to disappear.
1517
+ * String can be used for formatting purposes, e.g. "1.2k" or regionalized number, e.g. "1,200"
1518
+ */
1519
+ count: number | string | undefined;
1464
1520
  /** sets the background color
1465
1521
  * @default 'transparent'
1466
1522
  */
@@ -1469,9 +1525,13 @@ type CounterProps = {
1469
1525
  iconColor?: CounterIconColors;
1470
1526
  /** Optional icon for the counter */
1471
1527
  icon?: IconType;
1528
+ /** sets the size of the counter
1529
+ * @default 'md'
1530
+ */
1531
+ size?: 'sm' | 'md';
1472
1532
  } & React.HTMLAttributes<HTMLDivElement>;
1473
1533
  /** @example <Counter count={1} /> */
1474
- declare const Counter: ({ count, bgColor, icon, iconColor, ...props }: CounterProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1534
+ declare const Counter: ({ count, bgColor, icon, iconColor, size, ...props }: CounterProps) => _emotion_react_jsx_runtime.JSX.Element | null;
1475
1535
 
1476
1536
  type TextAlignProps = 'left' | 'right' | 'center';
1477
1537
  type BoxHeightProps = 'auto' | 'xs' | 'sm' | 'md' | 'lg';
@@ -1608,6 +1668,8 @@ type DateTimePickerProps = {
1608
1668
  * @default 8
1609
1669
  */
1610
1670
  offset?: number;
1671
+ /** (optional) sets whether to render the popover in a portal */
1672
+ portal?: boolean;
1611
1673
  };
1612
1674
  /**
1613
1675
  * Use this context for slots within the date time picker
@@ -1627,7 +1689,7 @@ declare function useDateTimePickerContext(): {
1627
1689
  * Subcomponents can manipulate the value directly by using
1628
1690
  * the `useDateTimePickerContext()` hook.
1629
1691
  */
1630
- declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, offset, testId, placement, ...props }: DateTimePickerProps) => _emotion_react_jsx_runtime.JSX.Element;
1692
+ declare const DateTimePicker: ({ id, label, triggerIcon, value, minVisible, maxVisible, variant, caption, placeholder, belowTimeInputSlot, showLabel, errorMessage, warningMessage, disabled, onChange, offset, testId, placement, portal, ...props }: DateTimePickerProps) => _emotion_react_jsx_runtime.JSX.Element;
1631
1693
 
1632
1694
  declare function DateTimePickerSummary({ value, placeholder, }: {
1633
1695
  value: DateTimePickerValue | null | undefined;
@@ -1835,6 +1897,23 @@ declare const TakeoverDrawerRenderer: (props: Omit<DrawerRendererProps, "stackId
1835
1897
  stackId?: string;
1836
1898
  }) => _emotion_react_jsx_runtime.JSX.Element;
1837
1899
 
1900
+ type FlexiCardProps = {
1901
+ heading?: ReactNode;
1902
+ children: ReactNode;
1903
+ height?: string;
1904
+ width?: string;
1905
+ } & HTMLAttributes<HTMLDivElement>;
1906
+ declare const FlexiCard: ({ heading, children, width, height, ...props }: FlexiCardProps) => _emotion_react_jsx_runtime.JSX.Element;
1907
+
1908
+ type FlexiCardTitleProps = {
1909
+ icon?: IconType;
1910
+ heading: string;
1911
+ } & React.HTMLAttributes<HTMLDivElement>;
1912
+ /** Flexi Card Title Component
1913
+ * recommended to be used within the FlexiCard component
1914
+ */
1915
+ declare const FlexiCardTitle: ({ icon, heading, ...props }: FlexiCardTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
1916
+
1838
1917
  interface IconButtonProps extends Omit<ButtonProps, 'size'> {
1839
1918
  variant?: 'square' | 'rounded';
1840
1919
  /** Style for the larger sizes have not been decided yet */
@@ -1888,7 +1967,7 @@ declare const CheckboxWithInfo: React$1.ForwardRefExoticComponent<React$1.HTMLAt
1888
1967
 
1889
1968
  type ErrorMessageProps = {
1890
1969
  /** sets the error message value */
1891
- message?: string;
1970
+ message?: ReactNode;
1892
1971
  /** sets the test id for test automation (optional) */
1893
1972
  testId?: string;
1894
1973
  className?: string;
@@ -1996,6 +2075,11 @@ type InputProps = React$1.InputHTMLAttributes<HTMLInputElement> & {
1996
2075
  * (optional) sets an overriding classname on the label element
1997
2076
  * @deprecated */
1998
2077
  classNameLabel?: string | SerializedStyles;
2078
+ /**
2079
+ * If true, the input will allow mouse wheel scrolling to change the value.
2080
+ * @default false
2081
+ */
2082
+ enableMouseWheel?: boolean;
1999
2083
  };
2000
2084
  /**
2001
2085
  * Input Component
@@ -2038,6 +2122,11 @@ declare const Input: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttribut
2038
2122
  * (optional) sets an overriding classname on the label element
2039
2123
  * @deprecated */
2040
2124
  classNameLabel?: string | SerializedStyles;
2125
+ /**
2126
+ * If true, the input will allow mouse wheel scrolling to change the value.
2127
+ * @default false
2128
+ */
2129
+ enableMouseWheel?: boolean;
2041
2130
  } & React$1.RefAttributes<HTMLInputElement>>;
2042
2131
 
2043
2132
  /**
@@ -2059,8 +2148,13 @@ type InputComboBoxOption<TValue = string> = {
2059
2148
  * Note: this works for any type used for an option where a boolean called indented exists.
2060
2149
  */
2061
2150
  indented?: boolean;
2151
+ /**
2152
+ * Sets the option to be fixed.
2153
+ * This will prevent the option from being removed or selected.
2154
+ */
2155
+ isFixed?: boolean;
2062
2156
  };
2063
- type InputComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = Props<TOption, IsMulti, TGroup> & React$1.RefAttributes<InternalSelect<TOption, IsMulti, TGroup>>;
2157
+ type InputComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = Props<TOption, IsMulti, TGroup>;
2064
2158
  type InputCreatableComboBoxProps<TOption = InputComboBoxOption, IsMulti extends boolean = boolean, TGroup extends GroupBase<TOption> = GroupBase<TOption>> = CreatableProps<TOption, IsMulti, TGroup>;
2065
2159
  type ComboBoxGroupBase<TOption> = GroupBase<TOption>;
2066
2160
  /**
@@ -2195,13 +2289,22 @@ declare const DebouncedInputKeywordSearch: React$1.ForwardRefExoticComponent<Omi
2195
2289
  defaultValue?: string;
2196
2290
  } & React$1.RefAttributes<HTMLInputElement>>;
2197
2291
 
2292
+ type GroupedOption = {
2293
+ label: string;
2294
+ options: Array<{
2295
+ label: string;
2296
+ value: string;
2297
+ }>;
2298
+ };
2198
2299
  type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
2199
2300
  /** (optional) sets the first item in the options list with empty value */
2200
2301
  defaultOption?: string;
2201
2302
  /** sets an array of select options with value and text value */
2202
- options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
2303
+ options?: Array<React.OptionHTMLAttributes<HTMLOptionElement | HTMLOptGroupElement> & {
2203
2304
  label: string;
2204
2305
  }>;
2306
+ /** (optional) sets grouped options with optgroups */
2307
+ groupedOptions?: GroupedOption[];
2205
2308
  /** (optional) sets caption text value */
2206
2309
  caption?: string | JSX.Element;
2207
2310
  /** sets the label value */
@@ -2239,9 +2342,11 @@ declare const InputSelect: React$1.ForwardRefExoticComponent<React$1.SelectHTMLA
2239
2342
  /** (optional) sets the first item in the options list with empty value */
2240
2343
  defaultOption?: string;
2241
2344
  /** sets an array of select options with value and text value */
2242
- options: Array<React.OptionHTMLAttributes<HTMLOptionElement> & {
2345
+ options?: Array<React.OptionHTMLAttributes<HTMLOptionElement | HTMLOptGroupElement> & {
2243
2346
  label: string;
2244
2347
  }>;
2348
+ /** (optional) sets grouped options with optgroups */
2349
+ groupedOptions?: GroupedOption[];
2245
2350
  /** (optional) sets caption text value */
2246
2351
  caption?: string | JSX.Element;
2247
2352
  /** sets the label value */
@@ -2447,6 +2552,7 @@ declare const JsonEditor: ({ defaultValue, onChange, jsonSchema, height, readOnl
2447
2552
  type KeyValueItem<TValue extends string = string> = {
2448
2553
  key: string;
2449
2554
  value: TValue;
2555
+ icon?: string;
2450
2556
  uniqueId?: string;
2451
2557
  };
2452
2558
  type KeyValueInputProps<TValue extends string = string> = {
@@ -2457,10 +2563,18 @@ type KeyValueInputProps<TValue extends string = string> = {
2457
2563
  newItemDefault?: KeyValueItem<TValue>;
2458
2564
  keyLabel?: string;
2459
2565
  valueLabel?: string;
2566
+ iconLabel?: string;
2460
2567
  keyInfoPopover?: ReactNode;
2461
2568
  valueInfoPopover?: ReactNode;
2462
- errors?: (Record<keyof Omit<KeyValueItem, 'uniqueId'>, string> | null)[];
2569
+ iconInfoPopover?: ReactNode;
2570
+ errors?: (Record<keyof Omit<KeyValueItem, 'uniqueId'>, string> | Partial<Record<keyof Omit<KeyValueItem, 'uniqueId'>, string>> | null)[];
2463
2571
  onFocusChange?: (isFocused: boolean) => void;
2572
+ showIconColumn?: boolean;
2573
+ renderIconSelector?: (props: {
2574
+ value?: string;
2575
+ onChange: (icon: string) => void;
2576
+ disabled?: boolean;
2577
+ }) => ReactNode;
2464
2578
  };
2465
2579
  /**
2466
2580
  * A component to render a sortable key-value input
@@ -2469,7 +2583,19 @@ type KeyValueInputProps<TValue extends string = string> = {
2469
2583
  * return <KeyValueInput value={value} onChange={setValue} />
2470
2584
  * @deprecated This component is in beta, name and props are subject to change without a major version
2471
2585
  */
2472
- 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;
2586
+ declare const KeyValueInput: <TValue extends string = string>({ value, onChange, label, newItemDefault, keyLabel, valueLabel, iconLabel, keyInfoPopover, valueInfoPopover, iconInfoPopover, disabled, errors, onFocusChange, showIconColumn, renderIconSelector, }: KeyValueInputProps<TValue>) => _emotion_react_jsx_runtime.JSX.Element;
2587
+
2588
+ type AsideAndSectionLayout = {
2589
+ /** sets child components in the aside / supporting column */
2590
+ sidebar?: ReactNode;
2591
+ /** sets child components in the section / main content column */
2592
+ children: ReactNode;
2593
+ /** Makes the sidebar sticky to the top of the container
2594
+ * @default false
2595
+ */
2596
+ isStickyAside?: boolean;
2597
+ };
2598
+ declare const AsideAndSectionLayout: ({ sidebar, children, isStickyAside, }: AsideAndSectionLayout) => _emotion_react_jsx_runtime.JSX.Element;
2473
2599
 
2474
2600
  type SpacingProp = '0' | '2xs' | 'xs' | 'sm' | 'base' | 'md' | 'lg' | 'xl' | '2xl';
2475
2601
  type BackgroundColorProp = 'transparent' | 'white' | 'gray-50' | 'gray-100' | 'gray-200' | 'gray-300' | 'gray-400' | 'gray-500' | 'gray-600' | 'gray-700' | 'gray-800' | 'gray-900';
@@ -2539,26 +2665,24 @@ type LimitsBarProps = {
2539
2665
  current: number;
2540
2666
  /** The maximum number of limits */
2541
2667
  max: number;
2542
- /** Text value used for the label text */
2543
- label: string;
2668
+ /** @deprecated No longer used */
2669
+ label?: string;
2670
+ /** Optional popover content for info icon */
2671
+ popoverContent?: ReactNode;
2544
2672
  };
2545
2673
  /**
2546
2674
  * Uniform Limits Bar Component
2547
- * @example <LimitsBar current="3" max="5" label="signals" />
2675
+ * @example <LimitsBar current={3} max={5} />
2548
2676
  */
2549
- declare const LimitsBar: ({ current, max, label }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
2677
+ declare const LimitsBar: ({ current, max, popoverContent }: LimitsBarProps) => _emotion_react_jsx_runtime.JSX.Element;
2550
2678
 
2551
2679
  type LinkListProps = React$1.HTMLAttributes<HTMLDivElement> & {
2552
2680
  /** sets the title field */
2553
2681
  title: string;
2554
- /** sets padding value
2555
- * @default 'var(--spacing-md)'
2556
- */
2557
- padding?: string;
2558
2682
  /** (optional) sets react child component */
2559
2683
  children?: React$1.ReactNode;
2560
2684
  };
2561
- declare const LinkList: ({ title, padding, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
2685
+ declare const LinkList: ({ title, children, ...props }: LinkListProps) => _emotion_react_jsx_runtime.JSX.Element;
2562
2686
 
2563
2687
  type ScrollableListProps = React$1.HTMLAttributes<HTMLDivElement> & {
2564
2688
  /** (optional) sets the label value */
@@ -2668,9 +2792,13 @@ interface DropdownStyleMenuTriggerProps extends React.HTMLAttributes<HTMLButtonE
2668
2792
  children: React.ReactNode;
2669
2793
  /** sets the background color of the button */
2670
2794
  bgColor?: string;
2795
+ /** sets the variant of the button
2796
+ * @default "ghost"
2797
+ */
2798
+ variant?: 'ghost' | 'outline';
2671
2799
  }
2672
2800
  /** Renders a dropdown menu style menu trigger button */
2673
- declare function DropdownStyleMenuTrigger({ bgColor, children, ...buttonProps }: DropdownStyleMenuTriggerProps): _emotion_react_jsx_runtime.JSX.Element;
2801
+ declare const DropdownStyleMenuTrigger: React$1.ForwardRefExoticComponent<DropdownStyleMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
2674
2802
 
2675
2803
  declare const legacyPlacements: readonly ["auto", "auto-start", "auto-end"];
2676
2804
  type LegacyPlacement = (typeof legacyPlacements)[number];
@@ -2704,6 +2832,11 @@ interface MenuProps extends MenuProps$1 {
2704
2832
  */
2705
2833
  maxMenuHeight?: string;
2706
2834
  portalElement?: React$1.ComponentProps<typeof Menu$1>['portalElement'];
2835
+ /** sets the menu size
2836
+ * it's recommended to use the same size for all menu items in a menu
2837
+ * @default 'base'
2838
+ */
2839
+ size?: 'small' | 'base';
2707
2840
  }
2708
2841
  /**
2709
2842
  * Component used for creating clickable menus
@@ -2725,6 +2858,11 @@ type MenuGroupProps = {
2725
2858
  };
2726
2859
  declare const MenuGroup: ({ title, children }: MenuGroupProps) => _emotion_react_jsx_runtime.JSX.Element;
2727
2860
 
2861
+ /**
2862
+ * base - default
2863
+ * red - red text
2864
+ * accent-alt - AI color (accent-alt-dark). DOES NOT change the text - only the icon color!
2865
+ */
2728
2866
  type MenuItemTextThemeProps = 'base' | 'red' | 'accent-alt';
2729
2867
  type MenuItemProps = MenuItemProps$1 & {
2730
2868
  /**
@@ -2734,7 +2872,9 @@ type MenuItemProps = MenuItemProps$1 & {
2734
2872
  children?: ChildFunction | React$1.ReactNode;
2735
2873
  /** (optional) set whether to hide the menu after a click action */
2736
2874
  hideMenuOnClick?: boolean;
2737
- /** (optional) set an icon along side the item text */
2875
+ /** (optional) set an icon along side the item text, we recommend using the MenuItemIcon component
2876
+ * @example <MenuItemIcon icon="add-r" />
2877
+ */
2738
2878
  icon?: React$1.ReactElement;
2739
2879
  /** When an element is disabled, it may still be focusable. It works similarly to readOnly on form elements. In this case, only aria-disabled will be set. */
2740
2880
  focusable?: boolean;
@@ -2770,8 +2910,9 @@ declare const MenuItemInner: React$1.FC<MenuItemProps>;
2770
2910
  * Renders an icon for a menu item. Optional micro wrapper around an Icon component
2771
2911
  * configured to match the menu item icon style.
2772
2912
  */
2773
- declare function MenuItemIcon({ icon }: {
2913
+ declare function MenuItemIcon({ icon, size }: {
2774
2914
  icon: IconType;
2915
+ size?: string;
2775
2916
  }): _emotion_react_jsx_runtime.JSX.Element;
2776
2917
  /**
2777
2918
  * Indents a menu item as if it had an icon when it does not
@@ -2780,7 +2921,7 @@ declare function MenuItemIcon({ icon }: {
2780
2921
  */
2781
2922
  declare function MenuItemEmptyIcon(): _emotion_react_jsx_runtime.JSX.Element;
2782
2923
 
2783
- declare const MenuItemSeparator: () => _emotion_react_jsx_runtime.JSX.Element;
2924
+ declare const MenuItemSeparator: ({ ...props }: HtmlHTMLAttributes<HTMLHRElement>) => _emotion_react_jsx_runtime.JSX.Element;
2784
2925
 
2785
2926
  type MenuButtonProp = {
2786
2927
  children: React.ReactNode;
@@ -2797,6 +2938,7 @@ type MenuThreeDotsProps = {
2797
2938
  * @default '1rem'
2798
2939
  */
2799
2940
  iconSize?: string;
2941
+ disabled?: boolean;
2800
2942
  } & HTMLAttributes<HTMLButtonElement>;
2801
2943
  declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
2802
2944
  /** sets the aria-label and title value on the button
@@ -2807,6 +2949,14 @@ declare const MenuThreeDots: React$1.ForwardRefExoticComponent<{
2807
2949
  * @default '1rem'
2808
2950
  */
2809
2951
  iconSize?: string;
2952
+ disabled?: boolean;
2953
+ } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
2954
+ declare const MenuSelect: React$1.ForwardRefExoticComponent<{
2955
+ /** sets the size of the menu select
2956
+ * @default 'base'
2957
+ */
2958
+ size?: "xs" | "sm" | "base" | "md" | "lg";
2959
+ children: React.ReactNode;
2810
2960
  } & HTMLAttributes<HTMLButtonElement> & React$1.RefAttributes<HTMLButtonElement>>;
2811
2961
 
2812
2962
  type SearchableMenuProps = {
@@ -2822,7 +2972,7 @@ type SearchableMenuProps = {
2822
2972
  /**
2823
2973
  * Searchable menu allows searching through its menu items
2824
2974
  */
2825
- declare function SearchableMenu(props: SearchableMenuProps): _emotion_react_jsx_runtime.JSX.Element;
2975
+ declare const SearchableMenu: (props: SearchableMenuProps) => _emotion_react_jsx_runtime.JSX.Element;
2826
2976
 
2827
2977
  interface SelectableMenuItemProps extends PropsWithChildren<Omit<MenuItemProps, 'children'>> {
2828
2978
  selected: boolean;
@@ -2975,20 +3125,25 @@ type ObjectItemLoadingSkeletonProps = {
2975
3125
  declare const ObjectItemLoadingSkeleton: ({ showCover, renderAs, }: ObjectItemLoadingSkeletonProps) => _emotion_react_jsx_runtime.JSX.Element;
2976
3126
 
2977
3127
  /** @deprecated - Beta Object list item component */
2978
- type ObjectListItemProps = (ObjectListItemSingleProps & HTMLAttributes<HTMLDivElement>) | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>);
2979
- type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
3128
+ type ObjectListItemProps = {
3129
+ /** Optional ref to the stacked route container to scope all components rendered via portal to be inside the stacked route container */
3130
+ portalElement?: MenuProps['portalElement'];
2980
3131
  cover?: ReactNode;
2981
3132
  dragHandle?: ReactNode;
3133
+ /** Sets the container query width for wrapping container
3134
+ * @default '34rem'
3135
+ */
3136
+ minContainerQueryWidth?: string;
3137
+ } & ((ObjectListItemSingleProps & HTMLAttributes<HTMLDivElement>) | (ObjectListItemMultiProps & HTMLAttributes<HTMLDivElement>));
3138
+ type ObjectListItemSingleProps = Omit<ObjectItemProps, 'cover' | 'children'> & {
2982
3139
  renderAs?: 'single';
2983
3140
  };
2984
3141
  type ObjectListItemMultiProps = Omit<ObjectItemProps, 'cover'> & {
2985
- cover?: ReactNode;
2986
- dragHandle?: ReactNode;
2987
3142
  renderAs?: 'multi';
2988
3143
  children?: ReactNode;
2989
3144
  };
2990
3145
  /** @deprecated - beta Object list item component */
2991
- declare const ObjectListItem: (props: ObjectListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
3146
+ declare const ObjectListItem: ({ minContainerQueryWidth, ...props }: ObjectListItemProps) => _emotion_react_jsx_runtime.JSX.Element;
2992
3147
 
2993
3148
  /** @deprecated - Beta Object list item container component */
2994
3149
  declare const ObjectListItemContainer: ({ children, gap, ...props }: RhythmProps) => _emotion_react_jsx_runtime.JSX.Element;
@@ -3090,6 +3245,35 @@ type LabelLeadingIconProps = HTMLAttributes<HTMLButtonElement> & {
3090
3245
  };
3091
3246
  declare const LabelLeadingIcon: ({ icon, iconColor, children, isActive, isLocked, title, ...props }: LabelLeadingIconProps) => _emotion_react_jsx_runtime.JSX.Element;
3092
3247
 
3248
+ type BaseParameterActionButtonProps = {
3249
+ children: React__default.ReactNode;
3250
+ disabled?: boolean;
3251
+ /**
3252
+ * The tooltip to display when hovering over the button.
3253
+ * If a string is provided, it will be displayed as a tooltip.
3254
+ * If a React element is provided, it will be displayed as a tooltip.
3255
+ */
3256
+ tooltip?: string | React__default.ReactNode;
3257
+ /**
3258
+ * The component to render the button as.
3259
+ * There maybe a scenario where we want to render the button as a div
3260
+ * @default 'button'
3261
+ */
3262
+ renderAs?: 'button' | 'div';
3263
+ } & HTMLAttributes<HTMLButtonElement | HTMLDivElement>;
3264
+ interface OutlineVariant extends BaseParameterActionButtonProps {
3265
+ themeType: 'outline';
3266
+ }
3267
+ interface FilledVariant extends BaseParameterActionButtonProps {
3268
+ themeType: 'filled';
3269
+ /** inverts the border layout of the button
3270
+ * @default false
3271
+ */
3272
+ inverted?: boolean;
3273
+ }
3274
+ type ParameterActionButtonProps = OutlineVariant | FilledVariant;
3275
+ declare const ParameterActionButton: ({ children, themeType, tooltip, renderAs, disabled, ...props }: ParameterActionButtonProps) => _emotion_react_jsx_runtime.JSX.Element;
3276
+
3093
3277
  type ParameterDrawerHeaderProps = {
3094
3278
  title: string;
3095
3279
  iconBeforeTitle?: ReactNode;
@@ -3135,8 +3319,16 @@ declare function ParameterImagePreview({ imageSrc }: {
3135
3319
  imageSrc: string;
3136
3320
  }): _emotion_react_jsx_runtime.JSX.Element | null;
3137
3321
 
3138
- type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement>;
3139
- /** @example <ParameterInput label="label value" id="my-input" /> */
3322
+ type ParameterInputProps = CommonParameterInputProps & React.InputHTMLAttributes<HTMLInputElement> & {
3323
+ /**
3324
+ * If true, the input will allow mouse wheel scrolling to change the value.
3325
+ * @default false
3326
+ */
3327
+ enableMouseWheel?: boolean;
3328
+ };
3329
+ /** @example <ParameterInput label="label value" id="my-input" />
3330
+ * @example <ParameterInput label="Number input" id="my-number" type="number" enableMouseWheel={false} />
3331
+ */
3140
3332
  declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterProps & {
3141
3333
  caption?: string;
3142
3334
  menuItems?: React$1.ReactNode;
@@ -3144,8 +3336,16 @@ declare const ParameterInput: React$1.ForwardRefExoticComponent<CommonParameterP
3144
3336
  errorTestId?: string;
3145
3337
  captionTestId?: string;
3146
3338
  title?: string;
3147
- } & React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
3148
- declare const ParameterInputInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
3339
+ } & React$1.InputHTMLAttributes<HTMLInputElement> & {
3340
+ /**
3341
+ * If true, the input will allow mouse wheel scrolling to change the value.
3342
+ * @default false
3343
+ */
3344
+ enableMouseWheel?: boolean;
3345
+ } & React$1.RefAttributes<HTMLInputElement>>;
3346
+ declare const ParameterInputInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & {
3347
+ enableMouseWheel?: boolean;
3348
+ } & React$1.RefAttributes<HTMLInputElement>>;
3149
3349
 
3150
3350
  type ParameterLabelProps = HTMLAttributes<HTMLLabelElement> & {
3151
3351
  /** sets the value for label and id on the input field */
@@ -3195,6 +3395,9 @@ type ParameterMenuButtonProps = {
3195
3395
  /** sets the legend value */
3196
3396
  label: string;
3197
3397
  children?: ReactNode;
3398
+ disabled?: boolean;
3399
+ /** set to true to render the menu directly in the parent DOM */
3400
+ withoutPortal?: boolean;
3198
3401
  };
3199
3402
  /** @example <ParameterMenuButton label="label value"><MenuItem>menu option component</MenuItem></ParameterMenuButton> */
3200
3403
  declare const ParameterMenuButton: React$1.ForwardRefExoticComponent<ParameterMenuButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
@@ -3264,6 +3467,84 @@ type ParameterNameAndPublicIdInputProps = {
3264
3467
  /** @example <ParameterNameAndPublicIdInput /> */
3265
3468
  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;
3266
3469
 
3470
+ type SliderOption = {
3471
+ value: string;
3472
+ text: string;
3473
+ };
3474
+ type SliderProps = {
3475
+ value: number;
3476
+ onChange: (value: number) => void;
3477
+ onBlur?: () => void;
3478
+ min?: number;
3479
+ max?: number;
3480
+ step?: number;
3481
+ options?: SliderOption[];
3482
+ showNumberInput?: boolean;
3483
+ disabled?: boolean;
3484
+ 'aria-label'?: string;
3485
+ id?: string;
3486
+ name?: string;
3487
+ };
3488
+ /**
3489
+ * Slider component that supports both numeric values and predefined options
3490
+ * @example
3491
+ * // Numeric mode
3492
+ * <Slider value={50} onChange={setValue} min={0} max={100} step={1} />
3493
+ *
3494
+ * // Options mode
3495
+ * <Slider value={1} onChange={setValue} options={[{value: 'small', text: 'Small'}, {value: 'large', text: 'Large'}]} />
3496
+ */
3497
+ declare const Slider: React$1.ForwardRefExoticComponent<SliderProps & React$1.RefAttributes<HTMLInputElement>>;
3498
+
3499
+ type TickMark = {
3500
+ position: number;
3501
+ percentage: number;
3502
+ label?: string;
3503
+ isLarge: boolean;
3504
+ };
3505
+ type SliderLabelsProps = {
3506
+ ticks: TickMark[];
3507
+ currentValue: number;
3508
+ containerWidth?: number;
3509
+ };
3510
+ /**
3511
+ * SliderLabels component that intelligently shows/hides labels based on available space
3512
+ */
3513
+ declare function SliderLabels({ ticks, currentValue, containerWidth }: SliderLabelsProps): _emotion_react_jsx_runtime.JSX.Element;
3514
+
3515
+ type ParameterNumberSliderProps = CommonParameterInputProps & Omit<SliderProps, 'id' | 'aria-label' | 'options'> & {
3516
+ /**
3517
+ * The current numeric value of the slider
3518
+ */
3519
+ value: number;
3520
+ /**
3521
+ * Callback when the value changes
3522
+ */
3523
+ onChange: (value: number) => void;
3524
+ };
3525
+ /**
3526
+ * Parameter wrapper for numeric sliders
3527
+ * @example <ParameterNumberSlider label="Opacity" value={50} onChange={setValue} min={0} max={100} step={1} />
3528
+ */
3529
+ declare const ParameterNumberSlider: React$1.ForwardRefExoticComponent<CommonParameterProps & {
3530
+ caption?: string;
3531
+ menuItems?: React$1.ReactNode;
3532
+ actionItems?: React.ReactNode;
3533
+ errorTestId?: string;
3534
+ captionTestId?: string;
3535
+ title?: string;
3536
+ } & Omit<SliderProps, "id" | "aria-label" | "options"> & {
3537
+ /**
3538
+ * The current numeric value of the slider
3539
+ */
3540
+ value: number;
3541
+ /**
3542
+ * Callback when the value changes
3543
+ */
3544
+ onChange: (value: number) => void;
3545
+ } & React$1.RefAttributes<HTMLInputElement>>;
3546
+ declare const ParameterNumberSliderInner: React$1.ForwardRefExoticComponent<Omit<SliderProps, "id" | "aria-label" | "options"> & React$1.RefAttributes<HTMLInputElement>>;
3547
+
3267
3548
  type LinkNodeProps = NonNullable<LinkParamValue>;
3268
3549
  type SerializedLinkNode = Spread<{
3269
3550
  link: LinkNodeProps;
@@ -3372,16 +3653,17 @@ type RichTextProps = {
3372
3653
  } | null>;
3373
3654
  /** Assets */
3374
3655
  onInsertAsset?: () => void;
3656
+ placeholder?: string;
3375
3657
  };
3376
3658
  type RichTextParamValue = SerializedEditorState | undefined | null;
3377
- type ParameterRichTextInnerProps = RichTextProps & {
3378
- value: RichTextParamValue;
3659
+ type ParameterRichTextInnerProps = Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> & RichTextProps & {
3660
+ value: RichTextParamValue | ((editor: LexicalEditor) => void);
3379
3661
  editorWrapperClassName?: string;
3380
3662
  editorFooter?: React.ReactNode;
3381
3663
  };
3382
3664
  type ParameterRichTextProps = CommonParameterInputProps & ParameterRichTextInnerProps;
3383
- 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, onInsertAsset, minimalInteractivity, }: ParameterRichTextProps) => _emotion_react_jsx_runtime.JSX.Element;
3384
- declare const ParameterRichTextInner: ({ value, onChange, onConnectLink, config, onRichTextInit, readOnly, editorWrapperClassName, editorInputClassName, editorInputWrapperClassName, editorFooter, children, customNodes, variables, customControls, onInsertTable, onInsertAsset, minimalInteractivity, }: ParameterRichTextInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
3665
+ declare const ParameterRichText: ({ label, labelLeadingIcon, hiddenLabel, id, errorMessage, caption, errorTestId, captionTestId, menuItems, children, ...innerProps }: ParameterRichTextProps) => _emotion_react_jsx_runtime.JSX.Element;
3666
+ declare const ParameterRichTextInner: ({ value, editorFooter, children, customNodes, editorWrapperClassName, ...richTextProps }: ParameterRichTextInnerProps) => _emotion_react_jsx_runtime.JSX.Element;
3385
3667
 
3386
3668
  type ParameterSelectProps = CommonParameterInputProps & CommonParameterSelectProps & React.InputHTMLAttributes<HTMLSelectElement>;
3387
3669
  /** @example <ParameterSelect label="my label" id="my-id" options={[{ label: 'option label', value: 0}]} */
@@ -3396,6 +3678,47 @@ declare const ParameterSelect: React$1.ForwardRefExoticComponent<CommonParameter
3396
3678
  /** @example <ParameterSelectInner options={[{ label: 'option label', value: 0}]} />*/
3397
3679
  declare const ParameterSelectInner: React$1.ForwardRefExoticComponent<Omit<ParameterSelectProps, "label" | "id"> & React$1.RefAttributes<HTMLSelectElement>>;
3398
3680
 
3681
+ type ParameterSelectSliderProps = CommonParameterInputProps & Omit<SliderProps, 'id' | 'aria-label' | 'value' | 'onChange' | 'min' | 'max' | 'step' | 'showNumberInput'> & {
3682
+ /**
3683
+ * The available options for the slider
3684
+ */
3685
+ options: SliderOption[];
3686
+ /**
3687
+ * The current selected value (option value string)
3688
+ */
3689
+ value: string;
3690
+ /**
3691
+ * Callback when the selection changes (receives option value string)
3692
+ */
3693
+ onChange: (value: string) => void;
3694
+ };
3695
+ /**
3696
+ * Parameter wrapper for option-based sliders
3697
+ * @example <ParameterSelectSlider label="Size" value="medium" onChange={setValue} options={[{value: 'small', text: 'Small'}, {value: 'medium', text: 'Medium'}, {value: 'large', text: 'Large'}]} />
3698
+ */
3699
+ declare const ParameterSelectSlider: React$1.ForwardRefExoticComponent<CommonParameterProps & {
3700
+ caption?: string;
3701
+ menuItems?: React$1.ReactNode;
3702
+ actionItems?: React.ReactNode;
3703
+ errorTestId?: string;
3704
+ captionTestId?: string;
3705
+ title?: string;
3706
+ } & Omit<SliderProps, "id" | "aria-label" | "onChange" | "max" | "min" | "step" | "value" | "showNumberInput"> & {
3707
+ /**
3708
+ * The available options for the slider
3709
+ */
3710
+ options: SliderOption[];
3711
+ /**
3712
+ * The current selected value (option value string)
3713
+ */
3714
+ value: string;
3715
+ /**
3716
+ * Callback when the selection changes (receives option value string)
3717
+ */
3718
+ onChange: (value: string) => void;
3719
+ } & React$1.RefAttributes<HTMLInputElement>>;
3720
+ declare const ParameterSelectSliderInner: React$1.ForwardRefExoticComponent<Omit<ParameterSelectSliderProps, "caption" | "title" | "errorTestId" | "captionTestId" | "menuItems" | "actionItems" | keyof CommonParameterProps> & React$1.RefAttributes<HTMLInputElement>>;
3721
+
3399
3722
  /** A function that extracts all common props and element props
3400
3723
  * @example const { shellProps, innerProps } = extractParameterProps(props) */
3401
3724
  declare const extractParameterProps: <T>(props: T & CommonParameterInputProps) => {
@@ -3437,12 +3760,15 @@ type ParameterShellOverrideProps = {
3437
3760
  */
3438
3761
  isParameterGroup?: boolean;
3439
3762
  };
3440
- type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonParameterInputProps & ParameterShellOverrideProps;
3763
+ type ParameterShellProps = React.InputHTMLAttributes<HTMLDivElement> & CommonParameterInputProps & ParameterShellOverrideProps & {
3764
+ /** set to true to render the menu directly in the parent DOM */
3765
+ menuWithoutPortal?: boolean;
3766
+ };
3441
3767
  /**
3442
3768
  * Uniform Parameter shell component
3443
3769
  * @example <ParameterShell label="my label" id="my-id"><ParameterInput onChange={() => {}} /></ParameterShell>
3444
3770
  */
3445
- 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;
3771
+ declare const ParameterShell: ({ label, labelLeadingIcon, labelTrailingIcon, hiddenLabel, id, errorMessage, warningMessage, infoMessage, caption, errorTestId, captionTestId, menuItems, actionItems, hasOverriddenValue, onResetOverriddenValue, title, children, isParameterGroup, menuWithoutPortal, ...props }: ParameterShellProps) => _emotion_react_jsx_runtime.JSX.Element;
3446
3772
  declare const ParameterShellPlaceholder: ({ children }: {
3447
3773
  children?: ReactNode;
3448
3774
  }) => _emotion_react_jsx_runtime.JSX.Element;
@@ -3461,21 +3787,27 @@ declare const ParameterTextarea: React$1.ForwardRefExoticComponent<CommonParamet
3461
3787
  /** @example <ParameterTextareaInner /> */
3462
3788
  declare const ParameterTextareaInner: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTextAreaElement> & React$1.RefAttributes<HTMLTextAreaElement>>;
3463
3789
 
3464
- type ParameterToggleProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & CommonParameterInputProps & {
3790
+ type ParameterToggleInnerProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
3465
3791
  type: 'checkbox' | 'radio';
3792
+ withoutIndeterminateState?: boolean;
3466
3793
  };
3794
+ type ParameterToggleProps = CommonParameterInputProps & ParameterToggleInnerProps;
3467
3795
  /** @example <ParameterToggle title="my checkbox" label="label value" id="my-checkbox" type="checkbox" onIconClick={() => alert('icon clicked)} /> */
3468
- declare const ParameterToggle: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & CommonParameterProps & {
3796
+ declare const ParameterToggle: React$1.ForwardRefExoticComponent<CommonParameterProps & {
3469
3797
  caption?: string;
3470
3798
  menuItems?: React$1.ReactNode;
3471
3799
  actionItems?: React.ReactNode;
3472
3800
  errorTestId?: string;
3473
3801
  captionTestId?: string;
3474
3802
  title?: string;
3475
- } & {
3803
+ } & Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & {
3804
+ type: "checkbox" | "radio";
3805
+ withoutIndeterminateState?: boolean;
3806
+ } & React$1.RefAttributes<HTMLInputElement>>;
3807
+ declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "type"> & {
3476
3808
  type: "checkbox" | "radio";
3809
+ withoutIndeterminateState?: boolean;
3477
3810
  } & React$1.RefAttributes<HTMLInputElement>>;
3478
- declare const ParameterToggleInner: React$1.ForwardRefExoticComponent<React$1.InputHTMLAttributes<HTMLInputElement> & React$1.RefAttributes<HTMLInputElement>>;
3479
3811
 
3480
3812
  type PopoverProps = Omit<PopoverProps$1, 'unmountOnHide'> & {
3481
3813
  /** sets the aria-controls and id value of the matching popover set */
@@ -3508,11 +3840,15 @@ type PopoverProps = Omit<PopoverProps$1, 'unmountOnHide'> & {
3508
3840
  }) => void;
3509
3841
  /**
3510
3842
  * Valid CSS unit to set the maximum popover width
3511
- * @default '220px'
3843
+ * @default '14rem'
3512
3844
  */
3513
3845
  maxWidth?: string;
3846
+ /** sets the variant to show
3847
+ * @default 'small'
3848
+ */
3849
+ variant?: 'large' | 'small';
3514
3850
  };
3515
- declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, onInit, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3851
+ declare const Popover: ({ iconColor, icon, iconSize, buttonText, ariaLabel, placement, testId, trigger, children, onInit, variant, maxWidth, ...otherProps }: PopoverProps) => _emotion_react_jsx_runtime.JSX.Element;
3516
3852
  /**
3517
3853
  * Hook to get the current popover context
3518
3854
  * @description This hook is used to get the current popover context
@@ -3637,13 +3973,18 @@ type SwitchProps = Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'> & {
3637
3973
  /** sets the label value */
3638
3974
  label: ReactNode;
3639
3975
  /** (optional) sets information text */
3640
- infoText?: string;
3976
+ infoText?: string | ReactNode;
3641
3977
  /** sets the toggle text value */
3642
3978
  toggleText?: string;
3643
3979
  /** sets child elements */
3644
3980
  children?: ReactNode;
3645
3981
  /** the size of the control */
3646
3982
  switchSize?: 'base' | 'sm';
3983
+ /**
3984
+ * sets the switch positioning
3985
+ * @default "left"
3986
+ */
3987
+ alignment?: 'left' | 'right';
3647
3988
  };
3648
3989
  /**
3649
3990
  * Uniform Switch Input Component
@@ -3654,15 +3995,25 @@ declare const Switch: React$1.ForwardRefExoticComponent<Omit<React$1.InputHTMLAt
3654
3995
  /** sets the label value */
3655
3996
  label: ReactNode;
3656
3997
  /** (optional) sets information text */
3657
- infoText?: string;
3998
+ infoText?: string | ReactNode;
3658
3999
  /** sets the toggle text value */
3659
4000
  toggleText?: string;
3660
4001
  /** sets child elements */
3661
4002
  children?: ReactNode;
3662
4003
  /** the size of the control */
3663
4004
  switchSize?: "base" | "sm";
4005
+ /**
4006
+ * sets the switch positioning
4007
+ * @default "left"
4008
+ */
4009
+ alignment?: "left" | "right";
3664
4010
  } & React$1.RefAttributes<HTMLInputElement>>;
3665
4011
 
4012
+ /** @deprecated - Beta Responsive table container component */
4013
+ declare const ResponsiveTableContainer: ({ children }: {
4014
+ children: ReactNode;
4015
+ }) => _emotion_react_jsx_runtime.JSX.Element;
4016
+
3666
4017
  type TableProps = {
3667
4018
  /** The CSS padding of the table cells (includes the head cells as well).
3668
4019
  * @default 'var(--spacing-base) var(--spacing-md)'
@@ -3829,70 +4180,6 @@ type IntegrationTileProps = IntegrationTileFields & React$1.ButtonHTMLAttributes
3829
4180
  };
3830
4181
  declare const IntegrationTile: ({ id, icon, name, requiedEntitlement, onAddIntegration, isPublic, isInstalled, authorIcon, ...btnProps }: IntegrationTileProps) => _emotion_react_jsx_runtime.JSX.Element;
3831
4182
 
3832
- type ClassNameOptions = 'logo' | 'author';
3833
- type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVGElement> & React__default.ImgHTMLAttributes<HTMLImageElement> & {
3834
- /** sets the emotion styles for the rendered image
3835
- * @default 'logo'
3836
- */
3837
- styleType?: ClassNameOptions;
3838
- };
3839
- /** Uniform Resolve Icon Component
3840
- * @example <ResolveIcon icon="/my-image.png" name="my image" />
3841
- */
3842
- declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) => _emotion_react_jsx_runtime.JSX.Element | null;
3843
-
3844
- type TileProps = {
3845
- children: ReactNode;
3846
- disabled?: boolean;
3847
- isSelected?: boolean;
3848
- } & HtmlHTMLAttributes<HTMLButtonElement>;
3849
- declare const Tile: ({ children, disabled, isSelected, ...props }: TileProps) => _emotion_react_jsx_runtime.JSX.Element;
3850
-
3851
- type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
3852
- /** sets the background colour of the outter container
3853
- * @default 'var(--brand-secondary-2)'
3854
- */
3855
- bgColor?: string;
3856
- /** sets the padding of the outter container
3857
- * @default 'base'
3858
- */
3859
- containerPadding?: '0' | 'sm' | 'base' | 'md' | 'lg';
3860
- /** sets the grid-template-columns css property
3861
- * @default 'repeat(auto-fill, minmax(13rem, 1fr))'
3862
- */
3863
- gridTemplateColumns?: string;
3864
- /** sets the spacing between grid elements
3865
- * @default 'base'
3866
- */
3867
- gap?: '0' | 'sm' | 'base' | 'md' | 'lg';
3868
- /** sets react child elements */
3869
- children: React$1.ReactNode;
3870
- };
3871
- /**
3872
- * Uniform Tile Container Component
3873
- * @example <TileContainer><div>child content</div></TileContainer>
3874
- */
3875
- declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, ...props }: TileContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
3876
-
3877
- type TileTitleProps = {
3878
- as?: 'heading' | 'description';
3879
- children: ReactNode;
3880
- } & HTMLAttributes<HTMLSpanElement>;
3881
- declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
3882
-
3883
- type ToastContainerProps = {
3884
- limit?: number;
3885
- /** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
3886
- * @default 'normal'
3887
- */
3888
- autoCloseDelay?: 'normal' | 'medium' | 'long';
3889
- };
3890
- /**
3891
- * A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
3892
- * @example <App><ToastContainer autoCloseDelay="normal" /></App>
3893
- */
3894
- declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
3895
-
3896
4183
  /** Available heading weights e.g. 1 - 6 */
3897
4184
  type LevelProps = 1 | 2 | 3 | 4 | 5 | 6;
3898
4185
  type HeadingProps = {
@@ -3992,6 +4279,99 @@ type ParagraphProps = {
3992
4279
  */
3993
4280
  declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_jsx_runtime.JSX.Element;
3994
4281
 
4282
+ type LinkOrientation = {
4283
+ /**
4284
+ * The orientation of the tile icon and content
4285
+ * @default 'vertical'
4286
+ */
4287
+ orientation?: 'horizontal' | 'vertical';
4288
+ };
4289
+ type LinkTileProps = {
4290
+ children: ReactNode;
4291
+ } & React.AnchorHTMLAttributes<HTMLAnchorElement> & LinkOrientation;
4292
+ type LinkTileWithRefProps = {
4293
+ children: ReactNode;
4294
+ linkManagerComponent: LinkManagerWithRefType;
4295
+ as?: string;
4296
+ href: string;
4297
+ passHref: true;
4298
+ legacyBehavior?: boolean;
4299
+ } & React.RefAttributes<HTMLAnchorElement> & LinkOrientation;
4300
+ declare const LinkTile: React$1.ForwardRefExoticComponent<(LinkTileProps | Omit<LinkTileWithRefProps, "ref">) & React$1.RefAttributes<HTMLAnchorElement>>;
4301
+
4302
+ type ClassNameOptions = 'logo' | 'author';
4303
+ type ResolveIconProps = IntegrationTileFields & React__default.SVGAttributes<SVGElement> & React__default.ImgHTMLAttributes<HTMLImageElement> & {
4304
+ /** sets the emotion styles for the rendered image
4305
+ * @default 'logo'
4306
+ */
4307
+ styleType?: ClassNameOptions;
4308
+ };
4309
+ /** Uniform Resolve Icon Component
4310
+ * @example <ResolveIcon icon="/my-image.png" name="my image" />
4311
+ */
4312
+ declare const ResolveIcon: ({ icon, name, styleType, ...props }: ResolveIconProps) => _emotion_react_jsx_runtime.JSX.Element | null;
4313
+
4314
+ type TileProps = {
4315
+ children: ReactNode;
4316
+ disabled?: boolean;
4317
+ isSelected?: boolean;
4318
+ /**
4319
+ * The orientation of the tile icon and content
4320
+ * @default 'vertical'
4321
+ */
4322
+ orientation?: 'horizontal' | 'vertical';
4323
+ } & HtmlHTMLAttributes<HTMLButtonElement>;
4324
+ declare const Tile: ({ children, disabled, isSelected, orientation, ...props }: TileProps) => _emotion_react_jsx_runtime.JSX.Element;
4325
+
4326
+ type TileContainerProps = React$1.HtmlHTMLAttributes<HTMLDivElement> & {
4327
+ /** sets the background colour of the outter container
4328
+ * @default 'var(--brand-secondary-2)'
4329
+ */
4330
+ bgColor?: string;
4331
+ /** sets the padding of the outter container
4332
+ * @default 'base'
4333
+ */
4334
+ containerPadding?: '0' | 'sm' | 'base' | 'md' | 'lg';
4335
+ /** sets the grid-template-columns css property
4336
+ * @default 'repeat(auto-fill, minmax(13rem, 1fr))'
4337
+ */
4338
+ gridTemplateColumns?: string;
4339
+ /** sets the spacing between grid elements
4340
+ * @default 'base'
4341
+ */
4342
+ gap?: '0' | 'sm' | 'base' | 'md' | 'lg';
4343
+ /** sets react child elements */
4344
+ children: React$1.ReactNode;
4345
+ /** sets whether to group the tiles in a container without a contour or not
4346
+ * @default false
4347
+ */
4348
+ withoutGrouping?: boolean;
4349
+ };
4350
+ /**
4351
+ * Uniform Tile Container Component
4352
+ * @example <TileContainer><div>child content</div></TileContainer>
4353
+ */
4354
+ declare const TileContainer: ({ bgColor, containerPadding, gap, gridTemplateColumns, children, withoutGrouping, ...props }: TileContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
4355
+
4356
+ type TileTitleProps = {
4357
+ as?: 'heading' | 'description';
4358
+ children: ReactNode;
4359
+ } & HTMLAttributes<HTMLSpanElement>;
4360
+ declare const TileText: ({ as, children, ...props }: TileTitleProps) => _emotion_react_jsx_runtime.JSX.Element;
4361
+
4362
+ type ToastContainerProps = {
4363
+ limit?: number;
4364
+ /** sets the auto close delay in seconds normal: 5 seconds, medium: 8 seconds, long: 10 seconds
4365
+ * @default 'normal'
4366
+ */
4367
+ autoCloseDelay?: 'normal' | 'medium' | 'long';
4368
+ };
4369
+ /**
4370
+ * A component to render toasts in your app. This component is supposed to be used just once in your app. Typically inside _app.tsx
4371
+ * @example <App><ToastContainer autoCloseDelay="normal" /></App>
4372
+ */
4373
+ declare const ToastContainer: ({ limit, autoCloseDelay }: ToastContainerProps) => _emotion_react_jsx_runtime.JSX.Element;
4374
+
3995
4375
  type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown' | 'Deleted';
3996
4376
  type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
3997
4377
  /** sets the current status */
@@ -4013,4 +4393,6 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
4013
4393
  };
4014
4394
  declare const StatusBullet: ({ status, hideText, size, message, compact, ...props }: StatusBulletProps) => _emotion_react_jsx_runtime.JSX.Element;
4015
4395
 
4016
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonSoftThemeProps, 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, 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, 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 LabelLeadingIconProps, 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, 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, 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, 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, type ShortcutReference, Skeleton, type SkeletonProps, Spinner, 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, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
4396
+ declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
4397
+
4398
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonSoftThemeProps, 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, 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, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, 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, 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 LabelLeadingIconProps, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, 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, ParameterActionButton, type ParameterActionButtonProps, 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, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, 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, ResponsiveTableContainer, 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, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, 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, type TickMark, 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, actionBarVisibilityStyles, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, prefersReducedMotion, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, supports, textInput, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };