@uniformdev/design-system 19.117.1-alpha.2 → 19.117.2-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/index.js +351 -218
- package/dist/index.d.mts +55 -20
- package/dist/index.d.ts +55 -20
- package/dist/index.js +400 -261
- package/package.json +4 -4
package/dist/index.d.mts
CHANGED
|
@@ -23057,20 +23057,31 @@ declare const SYSTEM_FIELD_OPERATORS: OperatorType;
|
|
|
23057
23057
|
|
|
23058
23058
|
/** @description beta - filter button type */
|
|
23059
23059
|
type FilterButtonProps = {
|
|
23060
|
+
/** text to display on the button
|
|
23061
|
+
* @default "Filters"
|
|
23062
|
+
*/
|
|
23060
23063
|
text?: string;
|
|
23064
|
+
/** icon to display on the button
|
|
23065
|
+
* @default "filter-add"
|
|
23066
|
+
*/
|
|
23067
|
+
icon?: IconType;
|
|
23068
|
+
/** number of filters to display on the button and sets the styles on the button */
|
|
23061
23069
|
filterCount?: number;
|
|
23070
|
+
/** sets the selected styles on the button */
|
|
23071
|
+
hasSelectedValue?: boolean;
|
|
23062
23072
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
23063
23073
|
/**
|
|
23064
23074
|
* @deprecated beta - A filter button component used to display filter menu options
|
|
23065
23075
|
* @example <FilterButton text="Filters" filterCount={3} />
|
|
23066
23076
|
*/
|
|
23067
|
-
declare const FilterButton: ({ text, filterCount, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23077
|
+
declare const FilterButton: ({ text, icon, filterCount, hasSelectedValue, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23068
23078
|
|
|
23069
23079
|
/**
|
|
23070
23080
|
* @deprecated beta - Default filter controls for search and filter
|
|
23071
23081
|
* @example <FilterControls />
|
|
23072
23082
|
*/
|
|
23073
|
-
declare const FilterControls: ({ children }: {
|
|
23083
|
+
declare const FilterControls: ({ children, }: {
|
|
23084
|
+
/** optional param to allow you to add your own controls */
|
|
23074
23085
|
children?: ReactNode;
|
|
23075
23086
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23076
23087
|
|
|
@@ -23092,14 +23103,20 @@ type FilterRowProps = {
|
|
|
23092
23103
|
};
|
|
23093
23104
|
/** @deprecated beta - A filter item component used to display filter options */
|
|
23094
23105
|
declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23106
|
+
type FilterItemsProps = {
|
|
23107
|
+
/** The text for the add button */
|
|
23108
|
+
addButtonText?: string;
|
|
23109
|
+
/** The text for the reset button */
|
|
23110
|
+
resetButtonText?: string;
|
|
23111
|
+
};
|
|
23095
23112
|
/** @deprecated beta - A filter items component used to display filter options */
|
|
23096
|
-
declare const FilterItems: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23113
|
+
declare const FilterItems: ({ addButtonText, resetButtonText, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23097
23114
|
|
|
23098
23115
|
type SearchAndFilterOptionsContainerProps = {
|
|
23099
23116
|
/** The button row to be displayed at the bottom of the container */
|
|
23100
|
-
buttonRow?:
|
|
23117
|
+
buttonRow?: React__default.ReactNode;
|
|
23101
23118
|
/** The children of the container */
|
|
23102
|
-
children:
|
|
23119
|
+
children: React__default.ReactNode;
|
|
23103
23120
|
};
|
|
23104
23121
|
/**
|
|
23105
23122
|
* @deprecated beta - A container component for search and filter options
|
|
@@ -23109,22 +23126,18 @@ declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: Search
|
|
|
23109
23126
|
type FiltersProps = {
|
|
23110
23127
|
/** The id of the filter menu */
|
|
23111
23128
|
id: string;
|
|
23112
|
-
/** The text for the add button */
|
|
23113
|
-
addButtonText?: string;
|
|
23114
|
-
/** The text for the reset button */
|
|
23115
|
-
resetButtonText?: string;
|
|
23116
23129
|
/** The text for the filter title */
|
|
23117
23130
|
filterTitle?: string;
|
|
23118
|
-
/**
|
|
23119
|
-
|
|
23131
|
+
/** The controls to be displayed at the bottom of the filter menu */
|
|
23132
|
+
menuControls?: React__default.ReactNode;
|
|
23120
23133
|
/** The children of the filter menu */
|
|
23121
|
-
children:
|
|
23134
|
+
children: React__default.ReactNode;
|
|
23122
23135
|
};
|
|
23123
23136
|
/**
|
|
23124
23137
|
* @deprecated beta - A filter menu component used to display filter options
|
|
23125
23138
|
* @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
|
|
23126
23139
|
* */
|
|
23127
|
-
declare const FilterMenu: ({ id,
|
|
23140
|
+
declare const FilterMenu: ({ id, filterTitle, menuControls, children }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23128
23141
|
|
|
23129
23142
|
type SearchAndFilterProviderProps = {
|
|
23130
23143
|
/** sets the filter values */
|
|
@@ -23133,26 +23146,35 @@ type SearchAndFilterProviderProps = {
|
|
|
23133
23146
|
onSearchChange: (term: string) => void;
|
|
23134
23147
|
/** function to trigger filter change events */
|
|
23135
23148
|
onChange: (filters: Filter[]) => void;
|
|
23149
|
+
/** function to trigger sort change events */
|
|
23150
|
+
onSortChange: (sort: string) => void;
|
|
23136
23151
|
/** sets the list of filter options for each filter row */
|
|
23137
23152
|
filterOptions: FilterOption[];
|
|
23153
|
+
/** sets the list of sort options */
|
|
23154
|
+
sortOptions: FilterOption[];
|
|
23155
|
+
/** the default sort by value */
|
|
23156
|
+
defaultSortByValue: string;
|
|
23138
23157
|
/** the total number of results */
|
|
23139
23158
|
totalResults?: number;
|
|
23140
23159
|
/** sets child components giving access to useSearchAndFilter context */
|
|
23141
23160
|
children: ReactNode;
|
|
23142
23161
|
};
|
|
23162
|
+
type filterMode = 'filters' | 'sort' | undefined;
|
|
23143
23163
|
type SearchAndFilterContextProps = {
|
|
23144
23164
|
/** the search term value */
|
|
23145
23165
|
searchTerm: string;
|
|
23146
23166
|
/** sets the search term value */
|
|
23147
23167
|
setSearchTerm: (term: string) => void;
|
|
23148
23168
|
/** current filter visibility */
|
|
23149
|
-
filterVisibility
|
|
23169
|
+
filterVisibility?: filterMode;
|
|
23150
23170
|
/** sets the filter visibility */
|
|
23151
|
-
setFilterVisibility: (
|
|
23171
|
+
setFilterVisibility: (mode: filterMode) => void;
|
|
23152
23172
|
/** sets the initial filters */
|
|
23153
23173
|
filters: Filter[];
|
|
23154
23174
|
/** function to update the current filters */
|
|
23155
23175
|
setFilters: (updatedFilters: Filter[]) => void;
|
|
23176
|
+
/** function to update the current sort */
|
|
23177
|
+
setSortBy: (sort: string) => void;
|
|
23156
23178
|
/** function that adds a blank set of filter options */
|
|
23157
23179
|
handleAddFilter: () => void;
|
|
23158
23180
|
/** function to reset all filter values */
|
|
@@ -23161,6 +23183,10 @@ type SearchAndFilterContextProps = {
|
|
|
23161
23183
|
handleDeleteFilter: (index: number) => void;
|
|
23162
23184
|
/** sets the initial list of filter options */
|
|
23163
23185
|
filterOptions: FilterOption[];
|
|
23186
|
+
/** sets the initial list of sort options */
|
|
23187
|
+
sortOptions: FilterOption[];
|
|
23188
|
+
/** a valid list of valid filter options */
|
|
23189
|
+
sortByValue: string;
|
|
23164
23190
|
/** a valid list of valid filter options */
|
|
23165
23191
|
validFilterQuery: Filter[] | undefined;
|
|
23166
23192
|
/** the total number of results */
|
|
@@ -23171,7 +23197,7 @@ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProp
|
|
|
23171
23197
|
* @deprecated beta - Search and filter provider
|
|
23172
23198
|
* @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
|
|
23173
23199
|
* */
|
|
23174
|
-
declare const SearchAndFilterProvider: ({ filters, filterOptions, onSearchChange, onChange, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23200
|
+
declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, onSearchChange, onChange, onSortChange, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23175
23201
|
/** @deprecated beta - Search and filter hook
|
|
23176
23202
|
* @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
|
|
23177
23203
|
*/
|
|
@@ -23181,13 +23207,15 @@ declare const useSearchAndFilter: () => {
|
|
|
23181
23207
|
/** sets the search term value */
|
|
23182
23208
|
setSearchTerm: (term: string) => void;
|
|
23183
23209
|
/** current filter visibility */
|
|
23184
|
-
filterVisibility
|
|
23210
|
+
filterVisibility?: filterMode;
|
|
23185
23211
|
/** sets the filter visibility */
|
|
23186
|
-
setFilterVisibility: (
|
|
23212
|
+
setFilterVisibility: (mode: filterMode) => void;
|
|
23187
23213
|
/** sets the initial filters */
|
|
23188
23214
|
filters: Filter[];
|
|
23189
23215
|
/** function to update the current filters */
|
|
23190
23216
|
setFilters: (updatedFilters: Filter[]) => void;
|
|
23217
|
+
/** function to update the current sort */
|
|
23218
|
+
setSortBy: (sort: string) => void;
|
|
23191
23219
|
/** function that adds a blank set of filter options */
|
|
23192
23220
|
handleAddFilter: () => void;
|
|
23193
23221
|
/** function to reset all filter values */
|
|
@@ -23196,6 +23224,10 @@ declare const useSearchAndFilter: () => {
|
|
|
23196
23224
|
handleDeleteFilter: (index: number) => void;
|
|
23197
23225
|
/** sets the initial list of filter options */
|
|
23198
23226
|
filterOptions: FilterOption[];
|
|
23227
|
+
/** sets the initial list of sort options */
|
|
23228
|
+
sortOptions: FilterOption[];
|
|
23229
|
+
/** a valid list of valid filter options */
|
|
23230
|
+
sortByValue: string;
|
|
23199
23231
|
/** a valid list of valid filter options */
|
|
23200
23232
|
validFilterQuery: Filter[] | undefined;
|
|
23201
23233
|
/** the total number of results */
|
|
@@ -23209,6 +23241,9 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23209
23241
|
filterControls?: React$1.ReactNode;
|
|
23210
23242
|
/** The view switch controls to be displayed */
|
|
23211
23243
|
viewSwitchControls?: React$1.ReactNode;
|
|
23244
|
+
/** The default sort by value */
|
|
23245
|
+
defaultSortByValue: string;
|
|
23246
|
+
/** The number of total results */
|
|
23212
23247
|
totalResults?: number;
|
|
23213
23248
|
/** The children of the search and filter component */
|
|
23214
23249
|
children?: React$1.ReactNode;
|
|
@@ -23217,7 +23252,7 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23217
23252
|
* @deprecated beta - Search and filter component
|
|
23218
23253
|
* @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
|
|
23219
23254
|
* */
|
|
23220
|
-
declare const SearchAndFilter: ({ filters, filterOptions, filterControls, viewSwitchControls, children, onChange, onSearchChange, totalResults, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23255
|
+
declare const SearchAndFilter: ({ filters, filterOptions, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, children, onChange, onSearchChange, onSortChange, totalResults, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23221
23256
|
|
|
23222
23257
|
type SearchAndFilterResultContainerProps = {
|
|
23223
23258
|
/** The label for the clear button
|
|
@@ -23710,4 +23745,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23710
23745
|
};
|
|
23711
23746
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23712
23747
|
|
|
23713
|
-
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, 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_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, 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, 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, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
|
|
23748
|
+
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_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, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -23057,20 +23057,31 @@ declare const SYSTEM_FIELD_OPERATORS: OperatorType;
|
|
|
23057
23057
|
|
|
23058
23058
|
/** @description beta - filter button type */
|
|
23059
23059
|
type FilterButtonProps = {
|
|
23060
|
+
/** text to display on the button
|
|
23061
|
+
* @default "Filters"
|
|
23062
|
+
*/
|
|
23060
23063
|
text?: string;
|
|
23064
|
+
/** icon to display on the button
|
|
23065
|
+
* @default "filter-add"
|
|
23066
|
+
*/
|
|
23067
|
+
icon?: IconType;
|
|
23068
|
+
/** number of filters to display on the button and sets the styles on the button */
|
|
23061
23069
|
filterCount?: number;
|
|
23070
|
+
/** sets the selected styles on the button */
|
|
23071
|
+
hasSelectedValue?: boolean;
|
|
23062
23072
|
} & HTMLAttributes<HTMLButtonElement>;
|
|
23063
23073
|
/**
|
|
23064
23074
|
* @deprecated beta - A filter button component used to display filter menu options
|
|
23065
23075
|
* @example <FilterButton text="Filters" filterCount={3} />
|
|
23066
23076
|
*/
|
|
23067
|
-
declare const FilterButton: ({ text, filterCount, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23077
|
+
declare const FilterButton: ({ text, icon, filterCount, hasSelectedValue, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23068
23078
|
|
|
23069
23079
|
/**
|
|
23070
23080
|
* @deprecated beta - Default filter controls for search and filter
|
|
23071
23081
|
* @example <FilterControls />
|
|
23072
23082
|
*/
|
|
23073
|
-
declare const FilterControls: ({ children }: {
|
|
23083
|
+
declare const FilterControls: ({ children, }: {
|
|
23084
|
+
/** optional param to allow you to add your own controls */
|
|
23074
23085
|
children?: ReactNode;
|
|
23075
23086
|
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23076
23087
|
|
|
@@ -23092,14 +23103,20 @@ type FilterRowProps = {
|
|
|
23092
23103
|
};
|
|
23093
23104
|
/** @deprecated beta - A filter item component used to display filter options */
|
|
23094
23105
|
declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23106
|
+
type FilterItemsProps = {
|
|
23107
|
+
/** The text for the add button */
|
|
23108
|
+
addButtonText?: string;
|
|
23109
|
+
/** The text for the reset button */
|
|
23110
|
+
resetButtonText?: string;
|
|
23111
|
+
};
|
|
23095
23112
|
/** @deprecated beta - A filter items component used to display filter options */
|
|
23096
|
-
declare const FilterItems: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23113
|
+
declare const FilterItems: ({ addButtonText, resetButtonText, }: FilterItemsProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23097
23114
|
|
|
23098
23115
|
type SearchAndFilterOptionsContainerProps = {
|
|
23099
23116
|
/** The button row to be displayed at the bottom of the container */
|
|
23100
|
-
buttonRow?:
|
|
23117
|
+
buttonRow?: React__default.ReactNode;
|
|
23101
23118
|
/** The children of the container */
|
|
23102
|
-
children:
|
|
23119
|
+
children: React__default.ReactNode;
|
|
23103
23120
|
};
|
|
23104
23121
|
/**
|
|
23105
23122
|
* @deprecated beta - A container component for search and filter options
|
|
@@ -23109,22 +23126,18 @@ declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: Search
|
|
|
23109
23126
|
type FiltersProps = {
|
|
23110
23127
|
/** The id of the filter menu */
|
|
23111
23128
|
id: string;
|
|
23112
|
-
/** The text for the add button */
|
|
23113
|
-
addButtonText?: string;
|
|
23114
|
-
/** The text for the reset button */
|
|
23115
|
-
resetButtonText?: string;
|
|
23116
23129
|
/** The text for the filter title */
|
|
23117
23130
|
filterTitle?: string;
|
|
23118
|
-
/**
|
|
23119
|
-
|
|
23131
|
+
/** The controls to be displayed at the bottom of the filter menu */
|
|
23132
|
+
menuControls?: React__default.ReactNode;
|
|
23120
23133
|
/** The children of the filter menu */
|
|
23121
|
-
children:
|
|
23134
|
+
children: React__default.ReactNode;
|
|
23122
23135
|
};
|
|
23123
23136
|
/**
|
|
23124
23137
|
* @deprecated beta - A filter menu component used to display filter options
|
|
23125
23138
|
* @example <FilterMenu id="search-and-filter-options">Children</FilterMenu>
|
|
23126
23139
|
* */
|
|
23127
|
-
declare const FilterMenu: ({ id,
|
|
23140
|
+
declare const FilterMenu: ({ id, filterTitle, menuControls, children }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23128
23141
|
|
|
23129
23142
|
type SearchAndFilterProviderProps = {
|
|
23130
23143
|
/** sets the filter values */
|
|
@@ -23133,26 +23146,35 @@ type SearchAndFilterProviderProps = {
|
|
|
23133
23146
|
onSearchChange: (term: string) => void;
|
|
23134
23147
|
/** function to trigger filter change events */
|
|
23135
23148
|
onChange: (filters: Filter[]) => void;
|
|
23149
|
+
/** function to trigger sort change events */
|
|
23150
|
+
onSortChange: (sort: string) => void;
|
|
23136
23151
|
/** sets the list of filter options for each filter row */
|
|
23137
23152
|
filterOptions: FilterOption[];
|
|
23153
|
+
/** sets the list of sort options */
|
|
23154
|
+
sortOptions: FilterOption[];
|
|
23155
|
+
/** the default sort by value */
|
|
23156
|
+
defaultSortByValue: string;
|
|
23138
23157
|
/** the total number of results */
|
|
23139
23158
|
totalResults?: number;
|
|
23140
23159
|
/** sets child components giving access to useSearchAndFilter context */
|
|
23141
23160
|
children: ReactNode;
|
|
23142
23161
|
};
|
|
23162
|
+
type filterMode = 'filters' | 'sort' | undefined;
|
|
23143
23163
|
type SearchAndFilterContextProps = {
|
|
23144
23164
|
/** the search term value */
|
|
23145
23165
|
searchTerm: string;
|
|
23146
23166
|
/** sets the search term value */
|
|
23147
23167
|
setSearchTerm: (term: string) => void;
|
|
23148
23168
|
/** current filter visibility */
|
|
23149
|
-
filterVisibility
|
|
23169
|
+
filterVisibility?: filterMode;
|
|
23150
23170
|
/** sets the filter visibility */
|
|
23151
|
-
setFilterVisibility: (
|
|
23171
|
+
setFilterVisibility: (mode: filterMode) => void;
|
|
23152
23172
|
/** sets the initial filters */
|
|
23153
23173
|
filters: Filter[];
|
|
23154
23174
|
/** function to update the current filters */
|
|
23155
23175
|
setFilters: (updatedFilters: Filter[]) => void;
|
|
23176
|
+
/** function to update the current sort */
|
|
23177
|
+
setSortBy: (sort: string) => void;
|
|
23156
23178
|
/** function that adds a blank set of filter options */
|
|
23157
23179
|
handleAddFilter: () => void;
|
|
23158
23180
|
/** function to reset all filter values */
|
|
@@ -23161,6 +23183,10 @@ type SearchAndFilterContextProps = {
|
|
|
23161
23183
|
handleDeleteFilter: (index: number) => void;
|
|
23162
23184
|
/** sets the initial list of filter options */
|
|
23163
23185
|
filterOptions: FilterOption[];
|
|
23186
|
+
/** sets the initial list of sort options */
|
|
23187
|
+
sortOptions: FilterOption[];
|
|
23188
|
+
/** a valid list of valid filter options */
|
|
23189
|
+
sortByValue: string;
|
|
23164
23190
|
/** a valid list of valid filter options */
|
|
23165
23191
|
validFilterQuery: Filter[] | undefined;
|
|
23166
23192
|
/** the total number of results */
|
|
@@ -23171,7 +23197,7 @@ declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProp
|
|
|
23171
23197
|
* @deprecated beta - Search and filter provider
|
|
23172
23198
|
* @example <SearchAndFilterProvider filters={filters} filterOptions={filterOptions} onSearchChange={onSearchChange} onChange={onChange}>Children</SearchAndFilterProvider>
|
|
23173
23199
|
* */
|
|
23174
|
-
declare const SearchAndFilterProvider: ({ filters, filterOptions, onSearchChange, onChange, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23200
|
+
declare const SearchAndFilterProvider: ({ filters, filterOptions, sortOptions, defaultSortByValue, onSearchChange, onChange, onSortChange, totalResults, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23175
23201
|
/** @deprecated beta - Search and filter hook
|
|
23176
23202
|
* @example const { searchTerm, setSearchTerm, filterVisibility, setFilterVisibility, filters, setFilters, handleAddFilter, handleResetFilters, handleDeleteFilter, filterOptions, validFilterQuery } = useSearchAndFilter();
|
|
23177
23203
|
*/
|
|
@@ -23181,13 +23207,15 @@ declare const useSearchAndFilter: () => {
|
|
|
23181
23207
|
/** sets the search term value */
|
|
23182
23208
|
setSearchTerm: (term: string) => void;
|
|
23183
23209
|
/** current filter visibility */
|
|
23184
|
-
filterVisibility
|
|
23210
|
+
filterVisibility?: filterMode;
|
|
23185
23211
|
/** sets the filter visibility */
|
|
23186
|
-
setFilterVisibility: (
|
|
23212
|
+
setFilterVisibility: (mode: filterMode) => void;
|
|
23187
23213
|
/** sets the initial filters */
|
|
23188
23214
|
filters: Filter[];
|
|
23189
23215
|
/** function to update the current filters */
|
|
23190
23216
|
setFilters: (updatedFilters: Filter[]) => void;
|
|
23217
|
+
/** function to update the current sort */
|
|
23218
|
+
setSortBy: (sort: string) => void;
|
|
23191
23219
|
/** function that adds a blank set of filter options */
|
|
23192
23220
|
handleAddFilter: () => void;
|
|
23193
23221
|
/** function to reset all filter values */
|
|
@@ -23196,6 +23224,10 @@ declare const useSearchAndFilter: () => {
|
|
|
23196
23224
|
handleDeleteFilter: (index: number) => void;
|
|
23197
23225
|
/** sets the initial list of filter options */
|
|
23198
23226
|
filterOptions: FilterOption[];
|
|
23227
|
+
/** sets the initial list of sort options */
|
|
23228
|
+
sortOptions: FilterOption[];
|
|
23229
|
+
/** a valid list of valid filter options */
|
|
23230
|
+
sortByValue: string;
|
|
23199
23231
|
/** a valid list of valid filter options */
|
|
23200
23232
|
validFilterQuery: Filter[] | undefined;
|
|
23201
23233
|
/** the total number of results */
|
|
@@ -23209,6 +23241,9 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23209
23241
|
filterControls?: React$1.ReactNode;
|
|
23210
23242
|
/** The view switch controls to be displayed */
|
|
23211
23243
|
viewSwitchControls?: React$1.ReactNode;
|
|
23244
|
+
/** The default sort by value */
|
|
23245
|
+
defaultSortByValue: string;
|
|
23246
|
+
/** The number of total results */
|
|
23212
23247
|
totalResults?: number;
|
|
23213
23248
|
/** The children of the search and filter component */
|
|
23214
23249
|
children?: React$1.ReactNode;
|
|
@@ -23217,7 +23252,7 @@ type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
|
23217
23252
|
* @deprecated beta - Search and filter component
|
|
23218
23253
|
* @example <SearchAndFilter filters={filters} filterOptions={filterOptions} onChange={onChange} onSearchChange={onSearchChange} onSearchReset={onSearchReset} totalResults={totalResults} />
|
|
23219
23254
|
* */
|
|
23220
|
-
declare const SearchAndFilter: ({ filters, filterOptions, filterControls, viewSwitchControls, children, onChange, onSearchChange, totalResults, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23255
|
+
declare const SearchAndFilter: ({ filters, filterOptions, sortOptions, defaultSortByValue, filterControls, viewSwitchControls, children, onChange, onSearchChange, onSortChange, totalResults, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23221
23256
|
|
|
23222
23257
|
type SearchAndFilterResultContainerProps = {
|
|
23223
23258
|
/** The label for the clear button
|
|
@@ -23710,4 +23745,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23710
23745
|
};
|
|
23711
23746
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23712
23747
|
|
|
23713
|
-
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, 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_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, 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, 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, useSearchAndFilter, useShortcut, warningIcon, yesNoIcon };
|
|
23748
|
+
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_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, 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, 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 };
|