@uniformdev/design-system 19.79.1-alpha.13 → 19.79.1-alpha.18

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.mts CHANGED
@@ -20354,6 +20354,7 @@ declare const allSupportedIcons: {
20354
20354
  'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20355
20355
  'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20356
20356
  'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20357
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
20357
20358
  'add-r': _react_icons_all_files_lib.IconType;
20358
20359
  add: _react_icons_all_files_lib.IconType;
20359
20360
  airplane: _react_icons_all_files_lib.IconType;
@@ -21003,7 +21004,7 @@ type IconName = keyof typeof allSupportedIcons;
21003
21004
  /** sets fill color of the svg icon
21004
21005
  * @default 'default'
21005
21006
  */
21006
- type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-light';
21007
+ type IconColor = 'white' | 'action' | 'default' | 'red' | 'gray' | 'accent' | 'currentColor' | 'accent-dark' | 'accent-light';
21007
21008
  /** sets the type of icon to use from the available list */
21008
21009
  type IconType = IconName | IconType$1;
21009
21010
  interface IconProps extends IconBaseProps {
@@ -21063,6 +21064,7 @@ declare const customIcons: {
21063
21064
  'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21064
21065
  'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21065
21066
  'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21067
+ 'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
21066
21068
  };
21067
21069
 
21068
21070
  type IconsMap = Record<string, IconType$1>;
@@ -21090,7 +21092,7 @@ interface ActionButtonsProps {
21090
21092
  */
21091
21093
  buttonType?: ButtonThemeProps;
21092
21094
  /** sets the button text value */
21093
- buttonText: string;
21095
+ buttonText: React$1.ReactNode;
21094
21096
  /** sets a leading icon supporting the button text */
21095
21097
  icon?: IconName;
21096
21098
  /** adds child components to the ButtonWithMenu component */
@@ -21313,7 +21315,7 @@ interface DateTimePickerValue {
21313
21315
  type DateTimePickerProps = {
21314
21316
  id: string;
21315
21317
  /** (optional) sets the label value */
21316
- label?: string;
21318
+ label?: ReactNode;
21317
21319
  /** The current controlled value of the picker */
21318
21320
  value: DateTimePickerValue | null | undefined;
21319
21321
  /** (optional) The minimum visible date. The calendar will not show previous months */
@@ -21813,9 +21815,23 @@ interface InputKeywordSearchProps extends React$1.InputHTMLAttributes<HTMLInputE
21813
21815
  }
21814
21816
  /**
21815
21817
  * Component used for keyword search functionality
21816
- * @example <InlineSelectInput disabled={index > 1} value={currentValue ?? '&'} options={[{ label: 'AND', value: '&' }, { label: 'OR', value: '|' }]} onChange={(s) => {setState(s.value)}} />
21818
+ *
21819
+ * @example <InputKeywordSearch onSearchTextChanged={setKeyword} delay={500} value={keyword} compact />
21817
21820
  */
21818
21821
  declare const InputKeywordSearch: ({ onSearchTextChanged, disabled, placeholder, inputFieldName, disabledFieldSubmission, value, onClear, compact, rounded, ...props }: InputKeywordSearchProps) => React$1.ReactElement;
21822
+ type DebouncedInputKeywordSearchProps = Omit<InputKeywordSearchProps, 'value'> & {
21823
+ /** Debounce delay in milliseconds */
21824
+ delay?: number;
21825
+ /**Default value to initialize field with, as it is not controlled component and does not support providing values */
21826
+ defaultValue?: string;
21827
+ };
21828
+ /**
21829
+ * Wrapper for InputKeywordSearch that debounces the onSearchTextChanged callback
21830
+ * to avoid triggering any business logic on every keystroke.
21831
+ *
21832
+ * @example <DebouncedInputKeywordSearch onSearchTextChanged={setKeyword} delay={500} />
21833
+ */
21834
+ declare const DebouncedInputKeywordSearch: ({ delay, onSearchTextChanged, defaultValue, ...props }: DebouncedInputKeywordSearchProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
21819
21835
 
21820
21836
  type InputSelectProps = React.SelectHTMLAttributes<HTMLSelectElement> & {
21821
21837
  /** (optional) sets the first item in the options list with empty value */
@@ -22970,6 +22986,322 @@ type ProgressListItem<IdType extends string = string> = {
22970
22986
  };
22971
22987
  declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
22972
22988
 
22989
+ /** @deprecated beta - Filter editor component names */
22990
+ type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
22991
+ /** @deprecated beta - Input option props */
22992
+ type InputOption = {
22993
+ /** The label for the option */
22994
+ label: string;
22995
+ /** The value for the option */
22996
+ value?: string | undefined;
22997
+ /** The options for the option */
22998
+ options?: Array<FilterOption>;
22999
+ /** Set a disabled state on the input */
23000
+ isDisabled?: boolean;
23001
+ /** Set a readonly state on the input */
23002
+ readOnly?: boolean;
23003
+ };
23004
+ /** @deprecated beta - Operator option props */
23005
+ type Operator = {
23006
+ /** The label for the operator */
23007
+ label: string;
23008
+ /** The symbol for the operator */
23009
+ value?: string;
23010
+ /** The symbol for the operator */
23011
+ symbol?: string;
23012
+ /** The editor type for the operator */
23013
+ options?: Array<InputOption>;
23014
+ /** The editor type for the operator */
23015
+ editorType?: FilterEditor;
23016
+ };
23017
+ /** @deprecated beta - Filter option props */
23018
+ type FilterOption = {
23019
+ /** The label for the option */
23020
+ label: string;
23021
+ /** The value for the option */
23022
+ value: string;
23023
+ /** The options for the option */
23024
+ options?: FilterOption[];
23025
+ /** The operator options for the option */
23026
+ operatorOptions?: Operator[];
23027
+ /** The value options for the option */
23028
+ valueOptions?: InputOption[];
23029
+ /** Set a readonly state on the input */
23030
+ readOnly?: boolean;
23031
+ /** Set a disabled state on the input */
23032
+ disabled?: boolean;
23033
+ };
23034
+ /** @deprecated beta - Filter selected and query value props */
23035
+ type Filter = {
23036
+ /** The field value selected */
23037
+ field: string;
23038
+ /** The operator value selected */
23039
+ operator: string;
23040
+ /** The value selected */
23041
+ value: string | string[];
23042
+ };
23043
+
23044
+ /** @deprecated beta - a list of possible operator values that sync with uniform search api */
23045
+ type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
23046
+ type OperatorValueType = {
23047
+ value: OperatorValue;
23048
+ };
23049
+ /** @deprecated beta - a list of possible operator types */
23050
+ type OperatorType = Array<Omit<Operator, 'value'> & OperatorValueType>;
23051
+ /** @deprecated beta - uniform number operators */
23052
+ declare const NUMBER_OPERATORS: OperatorType;
23053
+ /** @deprecated beta - uniform date operators */
23054
+ declare const DATE_OPERATORS: OperatorType;
23055
+ /** @deprecated beta - uniform textbox operators */
23056
+ declare const TEXTBOX_OPERATORS: OperatorType;
23057
+ /** @deprecated beta - uniform user operators */
23058
+ declare const USER_OPERATORS: OperatorType;
23059
+ /** @deprecated beta - uniform system date operators */
23060
+ declare const SYSTEM_DATE_OPERATORS: OperatorType;
23061
+ /** @deprecated beta - uniform rich text operators */
23062
+ declare const RICHTEXT_OPERATORS: OperatorType;
23063
+ /** @deprecated beta - uniform checkbox operators */
23064
+ declare const CHECKBOX_OPERATORS: OperatorType;
23065
+ /** @deprecated beta - uniform system field operators */
23066
+ declare const SYSTEM_FIELD_OPERATORS: OperatorType;
23067
+
23068
+ /** @description beta - filter button type */
23069
+ type FilterButtonProps = {
23070
+ /** text to display on the button
23071
+ * @default "Filters"
23072
+ */
23073
+ text?: string;
23074
+ /** icon to display on the button
23075
+ * @default "filter-add"
23076
+ */
23077
+ icon?: IconType;
23078
+ /** number of filters to display on the button and sets the styles on the button */
23079
+ filterCount?: number;
23080
+ /** sets the selected styles on the button */
23081
+ hasSelectedValue?: boolean;
23082
+ } & HTMLAttributes<HTMLButtonElement>;
23083
+ /**
23084
+ * @deprecated beta - A filter button component used to display filter menu options
23085
+ * @example <FilterButton text="Filters" filterCount={3} />
23086
+ */
23087
+ declare const FilterButton: ({ text, icon, filterCount, hasSelectedValue, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23088
+
23089
+ /**
23090
+ * @deprecated beta - Default filter controls for search and filter
23091
+ * @example <FilterControls />
23092
+ */
23093
+ declare const FilterControls: ({ children, defaultSortByValue, hideSearchInput, }: {
23094
+ /** optional param to allow you to add your own controls */
23095
+ children?: ReactNode;
23096
+ /** optional param to hide the search input */
23097
+ hideSearchInput?: boolean | undefined;
23098
+ /** The default sort by value */
23099
+ defaultSortByValue: string;
23100
+ }) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23101
+
23102
+ type FilterRowProps = {
23103
+ /** the index of the filter row */
23104
+ index: number;
23105
+ /** the list of filter options for each filter row */
23106
+ paramOptions: FilterOption[];
23107
+ /** function to trigger filter change events */
23108
+ onParamChange: (e: string) => void;
23109
+ /** the list of operator options for each filter row */
23110
+ operatorOptions: Operator[];
23111
+ /** function to trigger operator change events */
23112
+ onOperatorChange: (e: string) => void;
23113
+ /** function to trigger value change events */
23114
+ onValueChange: (e: string) => void;
23115
+ /** the list of value options for each filter row */
23116
+ valueOptions: InputOption[];
23117
+ };
23118
+ /** @deprecated beta - A filter item component used to display filter options */
23119
+ declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23120
+ type FilterItemsProps = {
23121
+ /** The text for the add button */
23122
+ addButtonText?: string;
23123
+ /** The text for the reset button */
23124
+ resetButtonText?: string;
23125
+ };
23126
+ /** @deprecated beta - A filter items component used to display filter options */
23127
+ declare const FilterItems: ({ addButtonText, resetButtonText, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23128
+
23129
+ type SearchAndFilterOptionsContainerProps = {
23130
+ /** The button row to be displayed at the bottom of the container */
23131
+ buttonRow?: React__default.ReactNode;
23132
+ /** The children of the container */
23133
+ children: React__default.ReactNode;
23134
+ };
23135
+ /**
23136
+ * @deprecated beta - A container component for search and filter options
23137
+ * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23138
+ * */
23139
+ declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23140
+ type FiltersProps = {
23141
+ /** The id of the filter menu */
23142
+ id: string;
23143
+ /** The text for the filter title */
23144
+ filterTitle?: string;
23145
+ /** The controls to be displayed at the bottom of the filter menu */
23146
+ menuControls?: React__default.ReactNode;
23147
+ /** The children of the filter menu */
23148
+ children: React__default.ReactNode;
23149
+ };
23150
+ /**
23151
+ * @deprecated beta - A filter menu component used to display filter options
23152
+ * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23153
+ * */
23154
+ declare const FilterMenu: ({ id, filterTitle, menuControls, children }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23155
+
23156
+ type SearchAndFilterProviderProps = {
23157
+ /** sets the filter values */
23158
+ filters: Filter[];
23159
+ /** sets the filter mode */
23160
+ filterMode?: filterMode;
23161
+ /** function to trigger search change event */
23162
+ onSearchChange?: (term: string) => void;
23163
+ /** function to trigger filter change events */
23164
+ onChange: (filters: Filter[]) => void;
23165
+ /** function to trigger sort change events */
23166
+ onSortChange: (sort: string) => void;
23167
+ /** sets the list of filter options for each filter row */
23168
+ filterOptions: FilterOption[];
23169
+ /** sets the list of sort options */
23170
+ sortOptions: FilterOption[];
23171
+ /** the default sort by value */
23172
+ defaultSortByValue: string;
23173
+ /** the total number of results */
23174
+ totalResults?: number;
23175
+ /** sets child components giving access to useSearchAndFilter context */
23176
+ children: ReactNode;
23177
+ };
23178
+ type filterMode = 'filters' | 'sort' | undefined;
23179
+ type SearchAndFilterContextProps = {
23180
+ /** the search term value */
23181
+ searchTerm: string;
23182
+ /** sets the search term value */
23183
+ setSearchTerm: (term: string) => void;
23184
+ /** current filter visibility */
23185
+ filterVisibility?: filterMode;
23186
+ /** sets the filter visibility */
23187
+ setFilterVisibility: (mode: filterMode) => void;
23188
+ /** sets the initial filters */
23189
+ filters: Filter[];
23190
+ /** function to update the current filters */
23191
+ setFilters: (updatedFilters: Filter[]) => void;
23192
+ /** function to update the current sort */
23193
+ setSortBy: (sort: string) => void;
23194
+ /** function that adds a blank set of filter options */
23195
+ handleAddFilter: () => void;
23196
+ /** function to reset all filter values */
23197
+ handleResetFilters: () => void;
23198
+ /** function that deletes a row and it's values visually and from state */
23199
+ handleDeleteFilter: (index: number) => void;
23200
+ /** sets the initial list of filter options */
23201
+ filterOptions: FilterOption[];
23202
+ /** sets the initial list of sort options */
23203
+ sortOptions: FilterOption[];
23204
+ /** a valid list of valid filter options */
23205
+ sortByValue: string;
23206
+ /** a valid list of valid filter options */
23207
+ validFilterQuery: Filter[] | undefined;
23208
+ /** the total number of results */
23209
+ totalResults?: number;
23210
+ };
23211
+ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProps>;
23212
+ /**
23213
+ * @deprecated beta - Search and filter provider
23214
+ * @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
23215
+ * */
23216
+ declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, filterMode, onSearchChange, onChange, onSortChange, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23217
+ /** @deprecated beta - Search and filter hook
23218
+ * @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
23219
+ */
23220
+ declare const useSearchAndFilter: () => {
23221
+ /** the search term value */
23222
+ searchTerm: string;
23223
+ /** sets the search term value */
23224
+ setSearchTerm: (term: string) => void;
23225
+ /** current filter visibility */
23226
+ filterVisibility?: filterMode;
23227
+ /** sets the filter visibility */
23228
+ setFilterVisibility: (mode: filterMode) => void;
23229
+ /** sets the initial filters */
23230
+ filters: Filter[];
23231
+ /** function to update the current filters */
23232
+ setFilters: (updatedFilters: Filter[]) => void;
23233
+ /** function to update the current sort */
23234
+ setSortBy: (sort: string) => void;
23235
+ /** function that adds a blank set of filter options */
23236
+ handleAddFilter: () => void;
23237
+ /** function to reset all filter values */
23238
+ handleResetFilters: () => void;
23239
+ /** function that deletes a row and it's values visually and from state */
23240
+ handleDeleteFilter: (index: number) => void;
23241
+ /** sets the initial list of filter options */
23242
+ filterOptions: FilterOption[];
23243
+ /** sets the initial list of sort options */
23244
+ sortOptions: FilterOption[];
23245
+ /** a valid list of valid filter options */
23246
+ sortByValue: string;
23247
+ /** a valid list of valid filter options */
23248
+ validFilterQuery: Filter[] | undefined;
23249
+ /** the total number of results */
23250
+ totalResults?: number | undefined;
23251
+ };
23252
+
23253
+ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
23254
+ /** The filter controls to be displayed
23255
+ * @default '<FilterControls />'
23256
+ */
23257
+ filterControls?: React$1.ReactNode;
23258
+ /** sets the filter mode */
23259
+ filterMode?: filterMode;
23260
+ /** The view switch controls to be displayed */
23261
+ viewSwitchControls?: React$1.ReactNode;
23262
+ /** The default sort by value */
23263
+ defaultSortByValue: string;
23264
+ /** The number of total results */
23265
+ totalResults?: number;
23266
+ /** The results container view
23267
+ * @default '<SearchAndFilterResultContainer />'
23268
+ */
23269
+ resultsContainerView?: React$1.ReactNode;
23270
+ /** The children of the search and filter component */
23271
+ children?: React$1.ReactNode;
23272
+ };
23273
+ /**
23274
+ * @deprecated beta - Search and filter component
23275
+ * @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
23276
+ * */
23277
+ declare const SearchAndFilter: ({ filters, filterOptions, filterMode, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, resultsContainerView, children, onChange, onSearchChange, onSortChange, totalResults, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23278
+
23279
+ type SearchAndFilterResultContainerProps = {
23280
+ /** The label for the clear button
23281
+ * @default 'Clear'
23282
+ */
23283
+ clearButtonLabel?: string;
23284
+ /** The text for the button */
23285
+ buttonText?: string;
23286
+ /** The title for the callout */
23287
+ calloutTitle?: string;
23288
+ /** The text for the callout */
23289
+ calloutText?: string;
23290
+ /** The function to handle the clear button */
23291
+ onHandleClear?: () => void;
23292
+ };
23293
+ /** @deprecated beta - Search and filter results container */
23294
+ declare const SearchAndFilterResultContainer: ({ buttonText, clearButtonLabel, calloutTitle, calloutText, onHandleClear, }: SearchAndFilterResultContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element | null;
23295
+
23296
+ declare const SearchOnlyContext: React$1.Context<Pick<SearchAndFilterContextProps, "searchTerm" | "setSearchTerm">>;
23297
+ type SearchOnlyProviderProps = Pick<SearchAndFilterProviderProps, 'onSearchChange'> & {
23298
+ /** sets the max width of input wrapper
23299
+ * @default '712px'
23300
+ */
23301
+ maxWidth?: string;
23302
+ };
23303
+ declare const SearchOnlyFilter: ({ onSearchChange, maxWidth }: SearchOnlyProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23304
+
22973
23305
  type SegmentedControlOption<TValue extends string = string> = {
22974
23306
  value: TValue;
22975
23307
  label?: string;
@@ -23433,7 +23765,7 @@ type ParagraphProps = {
23433
23765
  */
23434
23766
  declare const Paragraph: ({ className, htmlContent, children, ...pAttributes }: ParagraphProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23435
23767
 
23436
- type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown';
23768
+ type StatusTypeProps = 'Modified' | 'Unsaved' | 'Error' | 'Draft' | 'Published' | 'Orphan' | 'Previous' | 'Unknown' | 'Deleted';
23437
23769
  type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23438
23770
  /** sets the current status */
23439
23771
  status: StatusTypeProps;
@@ -23450,4 +23782,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23450
23782
  };
23451
23783
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23452
23784
 
23453
- export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, 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, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
23785
+ export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, CHECKBOX_OPERATORS, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DATE_OPERATORS, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, type Filter, FilterButton, type FilterButtonProps, FilterControls, type FilterEditor, FilterItem, FilterItems, type FilterItemsProps, FilterMenu, type FilterOption, type FilterRowProps, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, RICHTEXT_OPERATORS, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, SYSTEM_DATE_OPERATORS, SYSTEM_FIELD_OPERATORS, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchAndFilter, SearchAndFilterContext, type SearchAndFilterContextProps, SearchAndFilterOptionsContainer, type SearchAndFilterOptionsContainerProps, type SearchAndFilterProps, SearchAndFilterProvider, type SearchAndFilterProviderProps, SearchAndFilterResultContainer, type SearchAndFilterResultContainerProps, SearchOnlyContext, SearchOnlyFilter, type SearchOnlyProviderProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TEXTBOX_OPERATORS, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, USER_OPERATORS, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };