@uniformdev/design-system 19.137.1-alpha.4 → 19.138.1-alpha.4

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
@@ -23064,11 +23064,6 @@ type Filter = {
23064
23064
  /** The value selected */
23065
23065
  value: string | string[];
23066
23066
  };
23067
- /** @deprecated beta - Locale filter options */
23068
- type LocaleOptions = {
23069
- label: string;
23070
- value: string;
23071
- }[];
23072
23067
 
23073
23068
  /** @deprecated beta - a list of possible operator values that sync with uniform search api */
23074
23069
  type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
@@ -23224,97 +23219,22 @@ declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRende
23224
23219
  /** @deprecated beta - A mapper for filter editor components */
23225
23220
  declare const filterMapper: Record<FilterEditor, ComponentType<any> | null>;
23226
23221
 
23227
- type FilterRowProps = {
23228
- /** the index of the filter row */
23229
- index: number;
23230
- /** the list of filter options for each filter row */
23231
- paramOptions: FilterOption[];
23232
- /** function to trigger filter change events */
23233
- onParamChange: (e: string) => void;
23234
- /** the list of operator options for each filter row */
23235
- operatorOptions: Operator[];
23236
- /** function to trigger operator change events */
23237
- onOperatorChange: (e: string) => void;
23238
- /** function to trigger value change events */
23239
- onValueChange: (e: string) => void;
23240
- /** the list of value options for each filter row */
23241
- valueOptions: InputOption[];
23242
- };
23243
- /** @deprecated beta - A filter item component used to display filter options */
23244
- declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23245
- type FilterItemsProps = {
23246
- /** The text for the add button */
23247
- addButtonText?: string;
23248
- };
23249
- /** @deprecated beta - A filter items component used to display filter options */
23250
- declare const FilterItems: ({ addButtonText }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23251
-
23252
- type SearchAndFilterOptionsContainerProps = {
23253
- /** The button row to be displayed at the bottom of the container */
23254
- buttonRow?: React__default.ReactNode;
23255
- /** The sort controls to be displayed at the bottom of the container */
23256
- sortControls?: React__default.ReactNode;
23257
- /** The children of the container */
23258
- children: React__default.ReactNode;
23259
- };
23260
- /**
23261
- * @deprecated beta - A container component for search and filter options
23262
- * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23263
- * */
23264
- declare const SearchAndFilterOptionsContainer: ({ buttonRow, sortControls, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23265
- type FiltersProps = {
23266
- /** The id of the filter menu */
23267
- id: string;
23268
- /** The text for the filter title */
23269
- filterTitle?: string;
23270
- /** The controls to be displayed at the bottom of the filter menu */
23271
- menuControls?: React__default.ReactNode;
23272
- /** Sort options controls that display at the bottom of the filter menu */
23273
- sortControls?: React__default.ReactNode;
23274
- /** The children of the filter menu */
23275
- children: React__default.ReactNode;
23276
- /** Sets the data-test-id attribute for the filter menu */
23277
- dataTestId?: string;
23278
- /** The text for the reset button
23279
- * @default 'reset'
23280
- */
23281
- resetButtonText?: string;
23282
- };
23283
- /**
23284
- * @deprecated beta - A filter menu component used to display filter options
23285
- * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23286
- * */
23287
- declare const FilterMenu: ({ id, filterTitle, menuControls, sortControls, children, dataTestId, resetButtonText, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23288
-
23289
23222
  type FilterMapper = Record<string, ComponentType<any> | null>;
23290
23223
  type SearchAndFilterProviderProps = {
23291
23224
  /** sets the filter values */
23292
23225
  filters: Filter[];
23293
- /** sets the filter mode */
23294
23226
  /** sets the filter visibility */
23295
23227
  filterVisible?: boolean;
23296
23228
  /** function to trigger search change event */
23297
23229
  onSearchChange?: (term: string) => void;
23298
23230
  /** function to trigger filter change events */
23299
23231
  onChange: (filters: Filter[]) => void;
23300
- /** function to trigger sort change events */
23301
- onSortChange: (sort: string) => void;
23302
23232
  /** sets the reset filter values
23303
23233
  * @default "[{ field: '', operator: '', value: '' }]"
23304
23234
  */
23305
23235
  resetFilterValues?: Filter[];
23306
23236
  /** sets the list of filter options for each filter row */
23307
23237
  filterOptions: FilterOption[];
23308
- /** sets the list of sort options */
23309
- sortOptions: FilterOption[];
23310
- /** the default sort by value */
23311
- defaultSortByValue: string;
23312
- /** sets the list of locale options */
23313
- localeOptions?: LocaleOptions;
23314
- /** function to trigger locale change events */
23315
- onLocaleChange?: (locale: string) => void;
23316
- /** sets the default locale option value */
23317
- defaultLocale?: string;
23318
23238
  /** the total number of results */
23319
23239
  totalResults?: number;
23320
23240
  /** the filter mapper function */
@@ -23322,7 +23242,6 @@ type SearchAndFilterProviderProps = {
23322
23242
  /** sets child components giving access to useSearchAndFilter context */
23323
23243
  children: ReactNode;
23324
23244
  };
23325
- type filterMode = 'filters' | 'sort' | undefined;
23326
23245
  type SearchAndFilterContextProps = {
23327
23246
  /** the search term value */
23328
23247
  searchTerm: string;
@@ -23336,26 +23255,14 @@ type SearchAndFilterContextProps = {
23336
23255
  filters: Filter[];
23337
23256
  /** function to update the current filters */
23338
23257
  setFilters: (updatedFilters: Filter[]) => void;
23339
- /** function to update the current sort */
23340
- setSortBy: (sort: string) => void;
23341
23258
  /** function that adds a blank set of filter options */
23342
23259
  handleAddFilter: () => void;
23343
23260
  /** function to reset all filter values */
23344
23261
  handleResetFilters: (filters?: Filter[]) => void;
23345
23262
  /** function that deletes a row and it's values visually and from state */
23346
23263
  handleDeleteFilter: (index: number) => void;
23347
- /** function to handle locale change */
23348
- handleLocaleChange: (locale: string) => void;
23349
23264
  /** sets the initial list of filter options */
23350
23265
  filterOptions: FilterOption[];
23351
- /** sets the initial list of sort options */
23352
- sortOptions: FilterOption[];
23353
- /** a value of the selected sort by value */
23354
- sortByValue: string;
23355
- /** sets the initial list of locale options */
23356
- localeOptions?: LocaleOptions;
23357
- /** the value of the selected locale */
23358
- localeValue?: string;
23359
23266
  /** a valid list of valid filter options */
23360
23267
  validFilterQuery: Filter[] | undefined;
23361
23268
  /** a component list to map filter options */
@@ -23368,7 +23275,7 @@ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProp
23368
23275
  * @deprecated beta - Search and filter provider
23369
23276
  * @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
23370
23277
  * */
23371
- declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, defaultLocale, localeOptions, onLocaleChange, filterVisible, onSearchChange, onChange, onSortChange, resetFilterValues, totalResults, filterMapper, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23278
+ declare const SearchAndFilterProvider: ({ filters, filterOptions, filterVisible, onSearchChange, onChange, resetFilterValues, totalResults, filterMapper, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23372
23279
  /** @deprecated beta - Search and filter hook
23373
23280
  * @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
23374
23281
  */
@@ -23385,26 +23292,14 @@ declare const useSearchAndFilter: () => {
23385
23292
  filters: Filter[];
23386
23293
  /** function to update the current filters */
23387
23294
  setFilters: (updatedFilters: Filter[]) => void;
23388
- /** function to update the current sort */
23389
- setSortBy: (sort: string) => void;
23390
23295
  /** function that adds a blank set of filter options */
23391
23296
  handleAddFilter: () => void;
23392
23297
  /** function to reset all filter values */
23393
23298
  handleResetFilters: (filters?: Filter[]) => void;
23394
23299
  /** function that deletes a row and it's values visually and from state */
23395
23300
  handleDeleteFilter: (index: number) => void;
23396
- /** function to handle locale change */
23397
- handleLocaleChange: (locale: string) => void;
23398
23301
  /** sets the initial list of filter options */
23399
23302
  filterOptions: FilterOption[];
23400
- /** sets the initial list of sort options */
23401
- sortOptions: FilterOption[];
23402
- /** a value of the selected sort by value */
23403
- sortByValue: string;
23404
- /** sets the initial list of locale options */
23405
- localeOptions?: LocaleOptions | undefined;
23406
- /** the value of the selected locale */
23407
- localeValue?: string | undefined;
23408
23303
  /** a valid list of valid filter options */
23409
23304
  validFilterQuery: Filter[] | undefined;
23410
23305
  /** a component list to map filter options */
@@ -23430,16 +23325,79 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
23430
23325
  resultsContainerView?: React$1.ReactNode;
23431
23326
  /** sets the reset filter values */
23432
23327
  resetFilterValues?: Filter[];
23433
- /** The children of the search and filter component */
23434
- children?: React$1.ReactNode;
23435
23328
  /** The filter mapper function */
23436
23329
  filterMapper?: Record<FilterEditor, React$1.ComponentType<any> | null>;
23330
+ /** Component to render inside filters container right below main Filters widget
23331
+ * that should contain additional controls like filters
23332
+ * which do not fit main structure or sorting */
23333
+ additionalFiltersContainer?: React$1.ReactNode;
23437
23334
  };
23438
23335
  /**
23439
23336
  * @deprecated beta - Search and filter component
23440
23337
  * @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
23441
23338
  * */
23442
- declare const SearchAndFilter: ({ filters, filterOptions, filterVisible, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, resultsContainerView, children, filterMapper, onChange, onSearchChange, onSortChange, onLocaleChange, totalResults, resetFilterValues, defaultLocale, localeOptions, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23339
+ declare const SearchAndFilter: ({ filters, filterOptions, filterVisible, filterControls, viewSwitchControls, resultsContainerView, filterMapper, additionalFiltersContainer, onChange, onSearchChange, totalResults, resetFilterValues, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23340
+
23341
+ type FilterRowProps = {
23342
+ /** the index of the filter row */
23343
+ index: number;
23344
+ /** the list of filter options for each filter row */
23345
+ paramOptions: FilterOption[];
23346
+ /** function to trigger filter change events */
23347
+ onParamChange: (e: string) => void;
23348
+ /** the list of operator options for each filter row */
23349
+ operatorOptions: Operator[];
23350
+ /** function to trigger operator change events */
23351
+ onOperatorChange: (e: string) => void;
23352
+ /** function to trigger value change events */
23353
+ onValueChange: (e: string) => void;
23354
+ /** the list of value options for each filter row */
23355
+ valueOptions: InputOption[];
23356
+ };
23357
+ /** @deprecated beta - A filter item component used to display filter options */
23358
+ declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23359
+ type FilterItemsProps = {
23360
+ /** The text for the add button */
23361
+ addButtonText?: string;
23362
+ additionalFiltersContainer: SearchAndFilterProps['additionalFiltersContainer'];
23363
+ };
23364
+ /** @deprecated beta - A filter items component used to display filter options */
23365
+ declare const FilterItems: ({ addButtonText, additionalFiltersContainer, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23366
+
23367
+ type SearchAndFilterOptionsContainerProps = {
23368
+ /** The button row to be displayed at the bottom of the container */
23369
+ buttonRow?: React__default.ReactNode;
23370
+ /** The children of the container */
23371
+ children: React__default.ReactNode;
23372
+ additionalFiltersContainer?: SearchAndFilterProps['additionalFiltersContainer'];
23373
+ };
23374
+ /**
23375
+ * @deprecated beta - A container component for search and filter options
23376
+ * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23377
+ * */
23378
+ declare const SearchAndFilterOptionsContainer: ({ buttonRow, additionalFiltersContainer, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23379
+ type FiltersProps = {
23380
+ /** The id of the filter menu */
23381
+ id: string;
23382
+ /** The text for the filter title */
23383
+ filterTitle?: string;
23384
+ /** The controls to be displayed at the bottom of the filter menu */
23385
+ menuControls?: React__default.ReactNode;
23386
+ /** The children of the filter menu */
23387
+ children: React__default.ReactNode;
23388
+ /** Sets the data-test-id attribute for the filter menu */
23389
+ dataTestId?: string;
23390
+ /** The text for the reset button
23391
+ * @default 'reset'
23392
+ */
23393
+ resetButtonText?: string;
23394
+ additionalFiltersContainer?: SearchAndFilterProps['additionalFiltersContainer'];
23395
+ };
23396
+ /**
23397
+ * @deprecated beta - A filter menu component used to display filter options
23398
+ * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23399
+ * */
23400
+ declare const FilterMenu: ({ id, filterTitle, menuControls, additionalFiltersContainer, children, dataTestId, resetButtonText, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23443
23401
 
23444
23402
  type SearchAndFilterResultContainerProps = {
23445
23403
  /** The label for the clear button
@@ -23954,4 +23912,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23954
23912
  };
23955
23913
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23956
23914
 
23957
- 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, DateEditor, DateRangeEditor, 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, type FilterEditorCommonInputProps, type FilterEditorProps, FilterEditorRenderer, type FilterEditorRendererProps, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, NumberEditor, NumberRangeEditor, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, 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, StatusMultiEditor, StatusSingleEditor, 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, TextEditor, 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, filterMapper, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
23915
+ 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, DateEditor, DateRangeEditor, 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, type FilterEditorCommonInputProps, type FilterEditorProps, FilterEditorRenderer, type FilterEditorRendererProps, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, NumberEditor, NumberRangeEditor, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, 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, StatusMultiEditor, StatusSingleEditor, 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, TextEditor, 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, filterMapper, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
package/dist/index.d.ts CHANGED
@@ -23064,11 +23064,6 @@ type Filter = {
23064
23064
  /** The value selected */
23065
23065
  value: string | string[];
23066
23066
  };
23067
- /** @deprecated beta - Locale filter options */
23068
- type LocaleOptions = {
23069
- label: string;
23070
- value: string;
23071
- }[];
23072
23067
 
23073
23068
  /** @deprecated beta - a list of possible operator values that sync with uniform search api */
23074
23069
  type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
@@ -23224,97 +23219,22 @@ declare const FilterEditorRenderer: ({ editorType, ...props }: FilterEditorRende
23224
23219
  /** @deprecated beta - A mapper for filter editor components */
23225
23220
  declare const filterMapper: Record<FilterEditor, ComponentType<any> | null>;
23226
23221
 
23227
- type FilterRowProps = {
23228
- /** the index of the filter row */
23229
- index: number;
23230
- /** the list of filter options for each filter row */
23231
- paramOptions: FilterOption[];
23232
- /** function to trigger filter change events */
23233
- onParamChange: (e: string) => void;
23234
- /** the list of operator options for each filter row */
23235
- operatorOptions: Operator[];
23236
- /** function to trigger operator change events */
23237
- onOperatorChange: (e: string) => void;
23238
- /** function to trigger value change events */
23239
- onValueChange: (e: string) => void;
23240
- /** the list of value options for each filter row */
23241
- valueOptions: InputOption[];
23242
- };
23243
- /** @deprecated beta - A filter item component used to display filter options */
23244
- declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23245
- type FilterItemsProps = {
23246
- /** The text for the add button */
23247
- addButtonText?: string;
23248
- };
23249
- /** @deprecated beta - A filter items component used to display filter options */
23250
- declare const FilterItems: ({ addButtonText }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23251
-
23252
- type SearchAndFilterOptionsContainerProps = {
23253
- /** The button row to be displayed at the bottom of the container */
23254
- buttonRow?: React__default.ReactNode;
23255
- /** The sort controls to be displayed at the bottom of the container */
23256
- sortControls?: React__default.ReactNode;
23257
- /** The children of the container */
23258
- children: React__default.ReactNode;
23259
- };
23260
- /**
23261
- * @deprecated beta - A container component for search and filter options
23262
- * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23263
- * */
23264
- declare const SearchAndFilterOptionsContainer: ({ buttonRow, sortControls, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23265
- type FiltersProps = {
23266
- /** The id of the filter menu */
23267
- id: string;
23268
- /** The text for the filter title */
23269
- filterTitle?: string;
23270
- /** The controls to be displayed at the bottom of the filter menu */
23271
- menuControls?: React__default.ReactNode;
23272
- /** Sort options controls that display at the bottom of the filter menu */
23273
- sortControls?: React__default.ReactNode;
23274
- /** The children of the filter menu */
23275
- children: React__default.ReactNode;
23276
- /** Sets the data-test-id attribute for the filter menu */
23277
- dataTestId?: string;
23278
- /** The text for the reset button
23279
- * @default 'reset'
23280
- */
23281
- resetButtonText?: string;
23282
- };
23283
- /**
23284
- * @deprecated beta - A filter menu component used to display filter options
23285
- * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23286
- * */
23287
- declare const FilterMenu: ({ id, filterTitle, menuControls, sortControls, children, dataTestId, resetButtonText, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23288
-
23289
23222
  type FilterMapper = Record<string, ComponentType<any> | null>;
23290
23223
  type SearchAndFilterProviderProps = {
23291
23224
  /** sets the filter values */
23292
23225
  filters: Filter[];
23293
- /** sets the filter mode */
23294
23226
  /** sets the filter visibility */
23295
23227
  filterVisible?: boolean;
23296
23228
  /** function to trigger search change event */
23297
23229
  onSearchChange?: (term: string) => void;
23298
23230
  /** function to trigger filter change events */
23299
23231
  onChange: (filters: Filter[]) => void;
23300
- /** function to trigger sort change events */
23301
- onSortChange: (sort: string) => void;
23302
23232
  /** sets the reset filter values
23303
23233
  * @default "[{ field: '', operator: '', value: '' }]"
23304
23234
  */
23305
23235
  resetFilterValues?: Filter[];
23306
23236
  /** sets the list of filter options for each filter row */
23307
23237
  filterOptions: FilterOption[];
23308
- /** sets the list of sort options */
23309
- sortOptions: FilterOption[];
23310
- /** the default sort by value */
23311
- defaultSortByValue: string;
23312
- /** sets the list of locale options */
23313
- localeOptions?: LocaleOptions;
23314
- /** function to trigger locale change events */
23315
- onLocaleChange?: (locale: string) => void;
23316
- /** sets the default locale option value */
23317
- defaultLocale?: string;
23318
23238
  /** the total number of results */
23319
23239
  totalResults?: number;
23320
23240
  /** the filter mapper function */
@@ -23322,7 +23242,6 @@ type SearchAndFilterProviderProps = {
23322
23242
  /** sets child components giving access to useSearchAndFilter context */
23323
23243
  children: ReactNode;
23324
23244
  };
23325
- type filterMode = 'filters' | 'sort' | undefined;
23326
23245
  type SearchAndFilterContextProps = {
23327
23246
  /** the search term value */
23328
23247
  searchTerm: string;
@@ -23336,26 +23255,14 @@ type SearchAndFilterContextProps = {
23336
23255
  filters: Filter[];
23337
23256
  /** function to update the current filters */
23338
23257
  setFilters: (updatedFilters: Filter[]) => void;
23339
- /** function to update the current sort */
23340
- setSortBy: (sort: string) => void;
23341
23258
  /** function that adds a blank set of filter options */
23342
23259
  handleAddFilter: () => void;
23343
23260
  /** function to reset all filter values */
23344
23261
  handleResetFilters: (filters?: Filter[]) => void;
23345
23262
  /** function that deletes a row and it's values visually and from state */
23346
23263
  handleDeleteFilter: (index: number) => void;
23347
- /** function to handle locale change */
23348
- handleLocaleChange: (locale: string) => void;
23349
23264
  /** sets the initial list of filter options */
23350
23265
  filterOptions: FilterOption[];
23351
- /** sets the initial list of sort options */
23352
- sortOptions: FilterOption[];
23353
- /** a value of the selected sort by value */
23354
- sortByValue: string;
23355
- /** sets the initial list of locale options */
23356
- localeOptions?: LocaleOptions;
23357
- /** the value of the selected locale */
23358
- localeValue?: string;
23359
23266
  /** a valid list of valid filter options */
23360
23267
  validFilterQuery: Filter[] | undefined;
23361
23268
  /** a component list to map filter options */
@@ -23368,7 +23275,7 @@ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProp
23368
23275
  * @deprecated beta - Search and filter provider
23369
23276
  * @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
23370
23277
  * */
23371
- declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, defaultLocale, localeOptions, onLocaleChange, filterVisible, onSearchChange, onChange, onSortChange, resetFilterValues, totalResults, filterMapper, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23278
+ declare const SearchAndFilterProvider: ({ filters, filterOptions, filterVisible, onSearchChange, onChange, resetFilterValues, totalResults, filterMapper, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23372
23279
  /** @deprecated beta - Search and filter hook
23373
23280
  * @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
23374
23281
  */
@@ -23385,26 +23292,14 @@ declare const useSearchAndFilter: () => {
23385
23292
  filters: Filter[];
23386
23293
  /** function to update the current filters */
23387
23294
  setFilters: (updatedFilters: Filter[]) => void;
23388
- /** function to update the current sort */
23389
- setSortBy: (sort: string) => void;
23390
23295
  /** function that adds a blank set of filter options */
23391
23296
  handleAddFilter: () => void;
23392
23297
  /** function to reset all filter values */
23393
23298
  handleResetFilters: (filters?: Filter[]) => void;
23394
23299
  /** function that deletes a row and it's values visually and from state */
23395
23300
  handleDeleteFilter: (index: number) => void;
23396
- /** function to handle locale change */
23397
- handleLocaleChange: (locale: string) => void;
23398
23301
  /** sets the initial list of filter options */
23399
23302
  filterOptions: FilterOption[];
23400
- /** sets the initial list of sort options */
23401
- sortOptions: FilterOption[];
23402
- /** a value of the selected sort by value */
23403
- sortByValue: string;
23404
- /** sets the initial list of locale options */
23405
- localeOptions?: LocaleOptions | undefined;
23406
- /** the value of the selected locale */
23407
- localeValue?: string | undefined;
23408
23303
  /** a valid list of valid filter options */
23409
23304
  validFilterQuery: Filter[] | undefined;
23410
23305
  /** a component list to map filter options */
@@ -23430,16 +23325,79 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
23430
23325
  resultsContainerView?: React$1.ReactNode;
23431
23326
  /** sets the reset filter values */
23432
23327
  resetFilterValues?: Filter[];
23433
- /** The children of the search and filter component */
23434
- children?: React$1.ReactNode;
23435
23328
  /** The filter mapper function */
23436
23329
  filterMapper?: Record<FilterEditor, React$1.ComponentType<any> | null>;
23330
+ /** Component to render inside filters container right below main Filters widget
23331
+ * that should contain additional controls like filters
23332
+ * which do not fit main structure or sorting */
23333
+ additionalFiltersContainer?: React$1.ReactNode;
23437
23334
  };
23438
23335
  /**
23439
23336
  * @deprecated beta - Search and filter component
23440
23337
  * @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
23441
23338
  * */
23442
- declare const SearchAndFilter: ({ filters, filterOptions, filterVisible, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, resultsContainerView, children, filterMapper, onChange, onSearchChange, onSortChange, onLocaleChange, totalResults, resetFilterValues, defaultLocale, localeOptions, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23339
+ declare const SearchAndFilter: ({ filters, filterOptions, filterVisible, filterControls, viewSwitchControls, resultsContainerView, filterMapper, additionalFiltersContainer, onChange, onSearchChange, totalResults, resetFilterValues, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23340
+
23341
+ type FilterRowProps = {
23342
+ /** the index of the filter row */
23343
+ index: number;
23344
+ /** the list of filter options for each filter row */
23345
+ paramOptions: FilterOption[];
23346
+ /** function to trigger filter change events */
23347
+ onParamChange: (e: string) => void;
23348
+ /** the list of operator options for each filter row */
23349
+ operatorOptions: Operator[];
23350
+ /** function to trigger operator change events */
23351
+ onOperatorChange: (e: string) => void;
23352
+ /** function to trigger value change events */
23353
+ onValueChange: (e: string) => void;
23354
+ /** the list of value options for each filter row */
23355
+ valueOptions: InputOption[];
23356
+ };
23357
+ /** @deprecated beta - A filter item component used to display filter options */
23358
+ declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23359
+ type FilterItemsProps = {
23360
+ /** The text for the add button */
23361
+ addButtonText?: string;
23362
+ additionalFiltersContainer: SearchAndFilterProps['additionalFiltersContainer'];
23363
+ };
23364
+ /** @deprecated beta - A filter items component used to display filter options */
23365
+ declare const FilterItems: ({ addButtonText, additionalFiltersContainer, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23366
+
23367
+ type SearchAndFilterOptionsContainerProps = {
23368
+ /** The button row to be displayed at the bottom of the container */
23369
+ buttonRow?: React__default.ReactNode;
23370
+ /** The children of the container */
23371
+ children: React__default.ReactNode;
23372
+ additionalFiltersContainer?: SearchAndFilterProps['additionalFiltersContainer'];
23373
+ };
23374
+ /**
23375
+ * @deprecated beta - A container component for search and filter options
23376
+ * @example <SearchAndFilterOptionsContainer buttonRow={<button>Button</button>}>Children</SearchAndFilterOptionsContainer>
23377
+ * */
23378
+ declare const SearchAndFilterOptionsContainer: ({ buttonRow, additionalFiltersContainer, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23379
+ type FiltersProps = {
23380
+ /** The id of the filter menu */
23381
+ id: string;
23382
+ /** The text for the filter title */
23383
+ filterTitle?: string;
23384
+ /** The controls to be displayed at the bottom of the filter menu */
23385
+ menuControls?: React__default.ReactNode;
23386
+ /** The children of the filter menu */
23387
+ children: React__default.ReactNode;
23388
+ /** Sets the data-test-id attribute for the filter menu */
23389
+ dataTestId?: string;
23390
+ /** The text for the reset button
23391
+ * @default 'reset'
23392
+ */
23393
+ resetButtonText?: string;
23394
+ additionalFiltersContainer?: SearchAndFilterProps['additionalFiltersContainer'];
23395
+ };
23396
+ /**
23397
+ * @deprecated beta - A filter menu component used to display filter options
23398
+ * @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
23399
+ * */
23400
+ declare const FilterMenu: ({ id, filterTitle, menuControls, additionalFiltersContainer, children, dataTestId, resetButtonText, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23443
23401
 
23444
23402
  type SearchAndFilterResultContainerProps = {
23445
23403
  /** The label for the clear button
@@ -23954,4 +23912,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
23954
23912
  };
23955
23913
  declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
23956
23914
 
23957
- 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, DateEditor, DateRangeEditor, 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, type FilterEditorCommonInputProps, type FilterEditorProps, FilterEditorRenderer, type FilterEditorRendererProps, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, NumberEditor, NumberRangeEditor, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, 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, StatusMultiEditor, StatusSingleEditor, 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, TextEditor, 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, filterMapper, type filterMode, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
23915
+ 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, DateEditor, DateRangeEditor, 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, type FilterEditorCommonInputProps, type FilterEditorProps, FilterEditorRenderer, type FilterEditorRendererProps, FilterItem, FilterItems, type FilterItemsProps, type FilterMapper, FilterMenu, FilterMultiChoiceEditor, type FilterOption, type FilterRowProps, FilterSingleChoiceEditor, type FiltersProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputOption, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, ModalDialog, type ModalDialogProps, type ModalProps, MultilineChip, type MultilineChipProps, NUMBER_OPERATORS, NumberEditor, NumberRangeEditor, type Operator, type OperatorType, type OperatorValue, type OperatorValueType, PUBLISH_STATUS_FIELD_OPERATORS, 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, StatusMultiEditor, StatusSingleEditor, 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, TextEditor, 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, filterMapper, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spin, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };