@uniformdev/design-system 19.114.0 → 19.115.0
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 +1286 -276
- package/dist/index.d.mts +146 -1
- package/dist/index.d.ts +146 -1
- package/dist/index.js +1316 -283
- package/package.json +5 -4
package/dist/index.d.mts
CHANGED
|
@@ -20354,6 +20354,7 @@ declare const allSupportedIcons: {
|
|
|
20354
20354
|
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20355
20355
|
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20356
20356
|
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20357
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20357
20358
|
'add-r': _react_icons_all_files_lib.IconType;
|
|
20358
20359
|
add: _react_icons_all_files_lib.IconType;
|
|
20359
20360
|
airplane: _react_icons_all_files_lib.IconType;
|
|
@@ -21063,6 +21064,7 @@ declare const customIcons: {
|
|
|
21063
21064
|
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21064
21065
|
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21065
21066
|
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21067
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21066
21068
|
};
|
|
21067
21069
|
|
|
21068
21070
|
type IconsMap = Record<string, IconType$1>;
|
|
@@ -22970,6 +22972,149 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
22970
22972
|
};
|
|
22971
22973
|
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22972
22974
|
|
|
22975
|
+
type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
|
|
22976
|
+
type InputOption = {
|
|
22977
|
+
label: string;
|
|
22978
|
+
value?: string | undefined;
|
|
22979
|
+
options?: Array<FilterOption>;
|
|
22980
|
+
isDisabled?: boolean;
|
|
22981
|
+
};
|
|
22982
|
+
type Operator = {
|
|
22983
|
+
label: string;
|
|
22984
|
+
value?: string;
|
|
22985
|
+
symbol?: string;
|
|
22986
|
+
options?: Array<InputOption>;
|
|
22987
|
+
editorType?: FilterEditor;
|
|
22988
|
+
};
|
|
22989
|
+
type FilterOption = {
|
|
22990
|
+
label: string;
|
|
22991
|
+
value: string;
|
|
22992
|
+
options?: FilterOption[];
|
|
22993
|
+
operatorOptions?: Operator[];
|
|
22994
|
+
valueOptions?: InputOption[];
|
|
22995
|
+
};
|
|
22996
|
+
type Filter = {
|
|
22997
|
+
field: string;
|
|
22998
|
+
operator: string;
|
|
22999
|
+
value: string;
|
|
23000
|
+
};
|
|
23001
|
+
|
|
23002
|
+
type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
|
|
23003
|
+
type OperatorValueType = {
|
|
23004
|
+
value: OperatorValue;
|
|
23005
|
+
};
|
|
23006
|
+
type OperatorType = Array<Omit<Operator, 'value'> & OperatorValueType>;
|
|
23007
|
+
declare const NUMBER_OPERATORS: OperatorType;
|
|
23008
|
+
declare const DATE_OPERATORS: OperatorType;
|
|
23009
|
+
declare const TEXTBOX_OPERATORS: OperatorType;
|
|
23010
|
+
declare const RICHTEXT_OPERATORS: OperatorType;
|
|
23011
|
+
declare const CHECKBOX_OPERATORS: OperatorType;
|
|
23012
|
+
declare const SYSTEM_FIELD_OPERATORS: OperatorType;
|
|
23013
|
+
|
|
23014
|
+
type FilterButtonProps = {
|
|
23015
|
+
text?: string;
|
|
23016
|
+
filterCount?: number;
|
|
23017
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
23018
|
+
declare const FilterButton: ({ text, filterCount, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23019
|
+
|
|
23020
|
+
declare const FilterControls: ({ children }: {
|
|
23021
|
+
children?: ReactNode;
|
|
23022
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23023
|
+
|
|
23024
|
+
type FilterRowProps = {
|
|
23025
|
+
index: number;
|
|
23026
|
+
paramOptions: Operator[];
|
|
23027
|
+
onParamChange: (e: string) => void;
|
|
23028
|
+
operatorOptions: Operator[];
|
|
23029
|
+
onOperatorChange: (e: string) => void;
|
|
23030
|
+
onValueChange: (e: string) => void;
|
|
23031
|
+
valueOptions: InputOption[];
|
|
23032
|
+
};
|
|
23033
|
+
declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23034
|
+
declare const FilterItems: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23035
|
+
|
|
23036
|
+
type SearchAndFilterOptionsContainerProps = {
|
|
23037
|
+
buttonRow?: React$1.ReactNode;
|
|
23038
|
+
children: React$1.ReactNode;
|
|
23039
|
+
};
|
|
23040
|
+
declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23041
|
+
type FiltersProps = {
|
|
23042
|
+
id: string;
|
|
23043
|
+
addButtonText?: string;
|
|
23044
|
+
resetButtonText?: string;
|
|
23045
|
+
filterTitle?: string;
|
|
23046
|
+
isAddDisabled?: boolean;
|
|
23047
|
+
children: React$1.ReactNode;
|
|
23048
|
+
};
|
|
23049
|
+
declare const FilterMenu: ({ id, addButtonText, isAddDisabled, resetButtonText, filterTitle, children, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23050
|
+
|
|
23051
|
+
type SearchAndFilterProviderProps = {
|
|
23052
|
+
/** sets the filter values */
|
|
23053
|
+
filters: Filter[];
|
|
23054
|
+
/** function to trigger filter change events */
|
|
23055
|
+
onChange: (filters: Filter[]) => void;
|
|
23056
|
+
/** sets the list of filter options for each filter row */
|
|
23057
|
+
filterOptions: FilterOption[];
|
|
23058
|
+
/** sets child components giving access to useSearchAndFilter context */
|
|
23059
|
+
children: ReactNode;
|
|
23060
|
+
};
|
|
23061
|
+
type SearchAndFilterContextProps = {
|
|
23062
|
+
/** the search term value */
|
|
23063
|
+
searchTerm: string;
|
|
23064
|
+
/** sets teh search term value */
|
|
23065
|
+
setSearchTerm: (term: string) => void;
|
|
23066
|
+
/** current filter visibility */
|
|
23067
|
+
filterVisibility: boolean;
|
|
23068
|
+
/** sets the filter visibility */
|
|
23069
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23070
|
+
/** sets the initial filters */
|
|
23071
|
+
filters: Filter[];
|
|
23072
|
+
/** function to update the current filters */
|
|
23073
|
+
setFilters: (updatedFilters: Filter[]) => void;
|
|
23074
|
+
/** function that adds a blank set of filter options */
|
|
23075
|
+
handleAddFilter: () => void;
|
|
23076
|
+
/** function to reset all filter values */
|
|
23077
|
+
handleResetFilters: () => void;
|
|
23078
|
+
/** function that deletes a row and it's values visually and from state */
|
|
23079
|
+
handleDeleteFilter: (index: number) => void;
|
|
23080
|
+
/** sets the initial list of filter options */
|
|
23081
|
+
filterOptions: FilterOption[];
|
|
23082
|
+
/** a valid list of valid filter options */
|
|
23083
|
+
validFilterQuery: Filter[] | undefined;
|
|
23084
|
+
};
|
|
23085
|
+
declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProps>;
|
|
23086
|
+
declare const SearchAndFilterProvider: ({ filters, filterOptions, onChange, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23087
|
+
declare const useSearchAndFilter: () => {
|
|
23088
|
+
/** the search term value */
|
|
23089
|
+
searchTerm: string;
|
|
23090
|
+
/** sets teh search term value */
|
|
23091
|
+
setSearchTerm: (term: string) => void;
|
|
23092
|
+
/** current filter visibility */
|
|
23093
|
+
filterVisibility: boolean;
|
|
23094
|
+
/** sets the filter visibility */
|
|
23095
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23096
|
+
/** sets the initial filters */
|
|
23097
|
+
filters: Filter[];
|
|
23098
|
+
/** function to update the current filters */
|
|
23099
|
+
setFilters: (updatedFilters: Filter[]) => void;
|
|
23100
|
+
/** function that adds a blank set of filter options */
|
|
23101
|
+
handleAddFilter: () => void;
|
|
23102
|
+
/** function to reset all filter values */
|
|
23103
|
+
handleResetFilters: () => void;
|
|
23104
|
+
/** function that deletes a row and it's values visually and from state */
|
|
23105
|
+
handleDeleteFilter: (index: number) => void;
|
|
23106
|
+
/** sets the initial list of filter options */
|
|
23107
|
+
filterOptions: FilterOption[];
|
|
23108
|
+
/** a valid list of valid filter options */
|
|
23109
|
+
validFilterQuery: Filter[] | undefined;
|
|
23110
|
+
};
|
|
23111
|
+
|
|
23112
|
+
type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
23113
|
+
filterControls?: React$1.ReactNode;
|
|
23114
|
+
children?: React$1.ReactNode;
|
|
23115
|
+
};
|
|
23116
|
+
declare const SearchAndFilter: ({ filters, filterOptions, filterControls, children, onChange, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23117
|
+
|
|
22973
23118
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
22974
23119
|
value: TValue;
|
|
22975
23120
|
label?: string;
|
|
@@ -23450,4 +23595,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23450
23595
|
};
|
|
23451
23596
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23452
23597
|
|
|
23453
|
-
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
|
|
23598
|
+
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, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -20354,6 +20354,7 @@ declare const allSupportedIcons: {
|
|
|
20354
20354
|
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20355
20355
|
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20356
20356
|
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20357
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
20357
20358
|
'add-r': _react_icons_all_files_lib.IconType;
|
|
20358
20359
|
add: _react_icons_all_files_lib.IconType;
|
|
20359
20360
|
airplane: _react_icons_all_files_lib.IconType;
|
|
@@ -21063,6 +21064,7 @@ declare const customIcons: {
|
|
|
21063
21064
|
'magic-wand': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21064
21065
|
'list-view-short': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21065
21066
|
'list-view-long': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21067
|
+
'filter-add': (props: _react_icons_all_files.IconBaseProps) => JSX.Element;
|
|
21066
21068
|
};
|
|
21067
21069
|
|
|
21068
21070
|
type IconsMap = Record<string, IconType$1>;
|
|
@@ -22970,6 +22972,149 @@ type ProgressListItem<IdType extends string = string> = {
|
|
|
22970
22972
|
};
|
|
22971
22973
|
declare const ProgressListItem: ({ children, status, error, errorLevel, autoEllipsis, }: ProgressListItemProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
22972
22974
|
|
|
22975
|
+
type FilterEditor = 'singleChoice' | 'multiChoice' | 'dateRange' | 'date' | 'text' | 'empty' | 'number' | 'numberRange' | 'statusMultiChoice' | 'statusSingleChoice';
|
|
22976
|
+
type InputOption = {
|
|
22977
|
+
label: string;
|
|
22978
|
+
value?: string | undefined;
|
|
22979
|
+
options?: Array<FilterOption>;
|
|
22980
|
+
isDisabled?: boolean;
|
|
22981
|
+
};
|
|
22982
|
+
type Operator = {
|
|
22983
|
+
label: string;
|
|
22984
|
+
value?: string;
|
|
22985
|
+
symbol?: string;
|
|
22986
|
+
options?: Array<InputOption>;
|
|
22987
|
+
editorType?: FilterEditor;
|
|
22988
|
+
};
|
|
22989
|
+
type FilterOption = {
|
|
22990
|
+
label: string;
|
|
22991
|
+
value: string;
|
|
22992
|
+
options?: FilterOption[];
|
|
22993
|
+
operatorOptions?: Operator[];
|
|
22994
|
+
valueOptions?: InputOption[];
|
|
22995
|
+
};
|
|
22996
|
+
type Filter = {
|
|
22997
|
+
field: string;
|
|
22998
|
+
operator: string;
|
|
22999
|
+
value: string;
|
|
23000
|
+
};
|
|
23001
|
+
|
|
23002
|
+
type OperatorValue = 'eq' | 'neq' | 'gt' | 'gte' | 'lt' | 'lte' | 'in' | 'nin' | 'between' | 'ndef' | 'def' | 'match';
|
|
23003
|
+
type OperatorValueType = {
|
|
23004
|
+
value: OperatorValue;
|
|
23005
|
+
};
|
|
23006
|
+
type OperatorType = Array<Omit<Operator, 'value'> & OperatorValueType>;
|
|
23007
|
+
declare const NUMBER_OPERATORS: OperatorType;
|
|
23008
|
+
declare const DATE_OPERATORS: OperatorType;
|
|
23009
|
+
declare const TEXTBOX_OPERATORS: OperatorType;
|
|
23010
|
+
declare const RICHTEXT_OPERATORS: OperatorType;
|
|
23011
|
+
declare const CHECKBOX_OPERATORS: OperatorType;
|
|
23012
|
+
declare const SYSTEM_FIELD_OPERATORS: OperatorType;
|
|
23013
|
+
|
|
23014
|
+
type FilterButtonProps = {
|
|
23015
|
+
text?: string;
|
|
23016
|
+
filterCount?: number;
|
|
23017
|
+
} & HTMLAttributes<HTMLButtonElement>;
|
|
23018
|
+
declare const FilterButton: ({ text, filterCount, ...props }: FilterButtonProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23019
|
+
|
|
23020
|
+
declare const FilterControls: ({ children }: {
|
|
23021
|
+
children?: ReactNode;
|
|
23022
|
+
}) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23023
|
+
|
|
23024
|
+
type FilterRowProps = {
|
|
23025
|
+
index: number;
|
|
23026
|
+
paramOptions: Operator[];
|
|
23027
|
+
onParamChange: (e: string) => void;
|
|
23028
|
+
operatorOptions: Operator[];
|
|
23029
|
+
onOperatorChange: (e: string) => void;
|
|
23030
|
+
onValueChange: (e: string) => void;
|
|
23031
|
+
valueOptions: InputOption[];
|
|
23032
|
+
};
|
|
23033
|
+
declare const FilterItem: ({ index, paramOptions, operatorOptions, valueOptions, onParamChange, onOperatorChange, onValueChange, }: FilterRowProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23034
|
+
declare const FilterItems: () => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23035
|
+
|
|
23036
|
+
type SearchAndFilterOptionsContainerProps = {
|
|
23037
|
+
buttonRow?: React$1.ReactNode;
|
|
23038
|
+
children: React$1.ReactNode;
|
|
23039
|
+
};
|
|
23040
|
+
declare const SearchAndFilterOptionsContainer: ({ buttonRow, children, }: SearchAndFilterOptionsContainerProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23041
|
+
type FiltersProps = {
|
|
23042
|
+
id: string;
|
|
23043
|
+
addButtonText?: string;
|
|
23044
|
+
resetButtonText?: string;
|
|
23045
|
+
filterTitle?: string;
|
|
23046
|
+
isAddDisabled?: boolean;
|
|
23047
|
+
children: React$1.ReactNode;
|
|
23048
|
+
};
|
|
23049
|
+
declare const FilterMenu: ({ id, addButtonText, isAddDisabled, resetButtonText, filterTitle, children, }: FiltersProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23050
|
+
|
|
23051
|
+
type SearchAndFilterProviderProps = {
|
|
23052
|
+
/** sets the filter values */
|
|
23053
|
+
filters: Filter[];
|
|
23054
|
+
/** function to trigger filter change events */
|
|
23055
|
+
onChange: (filters: Filter[]) => void;
|
|
23056
|
+
/** sets the list of filter options for each filter row */
|
|
23057
|
+
filterOptions: FilterOption[];
|
|
23058
|
+
/** sets child components giving access to useSearchAndFilter context */
|
|
23059
|
+
children: ReactNode;
|
|
23060
|
+
};
|
|
23061
|
+
type SearchAndFilterContextProps = {
|
|
23062
|
+
/** the search term value */
|
|
23063
|
+
searchTerm: string;
|
|
23064
|
+
/** sets teh search term value */
|
|
23065
|
+
setSearchTerm: (term: string) => void;
|
|
23066
|
+
/** current filter visibility */
|
|
23067
|
+
filterVisibility: boolean;
|
|
23068
|
+
/** sets the filter visibility */
|
|
23069
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23070
|
+
/** sets the initial filters */
|
|
23071
|
+
filters: Filter[];
|
|
23072
|
+
/** function to update the current filters */
|
|
23073
|
+
setFilters: (updatedFilters: Filter[]) => void;
|
|
23074
|
+
/** function that adds a blank set of filter options */
|
|
23075
|
+
handleAddFilter: () => void;
|
|
23076
|
+
/** function to reset all filter values */
|
|
23077
|
+
handleResetFilters: () => void;
|
|
23078
|
+
/** function that deletes a row and it's values visually and from state */
|
|
23079
|
+
handleDeleteFilter: (index: number) => void;
|
|
23080
|
+
/** sets the initial list of filter options */
|
|
23081
|
+
filterOptions: FilterOption[];
|
|
23082
|
+
/** a valid list of valid filter options */
|
|
23083
|
+
validFilterQuery: Filter[] | undefined;
|
|
23084
|
+
};
|
|
23085
|
+
declare const SearchAndFilterContext: React$1.Context<SearchAndFilterContextProps>;
|
|
23086
|
+
declare const SearchAndFilterProvider: ({ filters, filterOptions, onChange, children, }: SearchAndFilterProviderProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23087
|
+
declare const useSearchAndFilter: () => {
|
|
23088
|
+
/** the search term value */
|
|
23089
|
+
searchTerm: string;
|
|
23090
|
+
/** sets teh search term value */
|
|
23091
|
+
setSearchTerm: (term: string) => void;
|
|
23092
|
+
/** current filter visibility */
|
|
23093
|
+
filterVisibility: boolean;
|
|
23094
|
+
/** sets the filter visibility */
|
|
23095
|
+
setFilterVisibility: (visible: boolean) => void;
|
|
23096
|
+
/** sets the initial filters */
|
|
23097
|
+
filters: Filter[];
|
|
23098
|
+
/** function to update the current filters */
|
|
23099
|
+
setFilters: (updatedFilters: Filter[]) => void;
|
|
23100
|
+
/** function that adds a blank set of filter options */
|
|
23101
|
+
handleAddFilter: () => void;
|
|
23102
|
+
/** function to reset all filter values */
|
|
23103
|
+
handleResetFilters: () => void;
|
|
23104
|
+
/** function that deletes a row and it's values visually and from state */
|
|
23105
|
+
handleDeleteFilter: (index: number) => void;
|
|
23106
|
+
/** sets the initial list of filter options */
|
|
23107
|
+
filterOptions: FilterOption[];
|
|
23108
|
+
/** a valid list of valid filter options */
|
|
23109
|
+
validFilterQuery: Filter[] | undefined;
|
|
23110
|
+
};
|
|
23111
|
+
|
|
23112
|
+
type SearchAndFilterProps = Omit<SearchAndFilterProviderProps, 'children'> & {
|
|
23113
|
+
filterControls?: React$1.ReactNode;
|
|
23114
|
+
children?: React$1.ReactNode;
|
|
23115
|
+
};
|
|
23116
|
+
declare const SearchAndFilter: ({ filters, filterOptions, filterControls, children, onChange, }: SearchAndFilterProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23117
|
+
|
|
22973
23118
|
type SegmentedControlOption<TValue extends string = string> = {
|
|
22974
23119
|
value: TValue;
|
|
22975
23120
|
label?: string;
|
|
@@ -23450,4 +23595,4 @@ type StatusBulletProps = React$1.HTMLAttributes<HTMLSpanElement> & {
|
|
|
23450
23595
|
};
|
|
23451
23596
|
declare const StatusBullet: ({ status, hideText, size, message, ...props }: StatusBulletProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
23452
23597
|
|
|
23453
|
-
export { type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AnimationFile, type AnimationFileProps, type ArrowPositionProps, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Badge, type BadgeProps, type BadgeSizeProps, type BadgeThemeProps, type BadgeThemeStyleProps, Banner, type BannerProps, type BannerType, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps$1 as ButtonSizeProps, type ButtonThemeProps$1 as ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarProps, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, ConnectToDataElementButton, type ConnectToDataElementButtonProps, Container, type ContainerProps, Counter, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, type DateTimePickerValue, DateTimePickerVariant, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, Fieldset, type FieldsetProps, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, InlineAlert, type InlineAlertProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationHeaderSection, type IntegrationHeaderSectionProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, Label, LabelLeadingIcon, type LabelProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, MediaCard, type MediaCardProps, Menu, MenuGroup, type MenuGroupProps, MenuItem, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, Modal, type ModalProps, MultilineChip, type MultilineChipProps, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, type ParameterDataConnectButtonProps, ParameterDataResource, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, type PopoverProps, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SerializedLinkNode, ShortcutContext, ShortcutRevealer, Skeleton, type SkeletonProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, SuccessMessage, type SuccessMessageProps, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, addPathSegmentToPathname, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, cq, customIcons, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getDrawerAttributes, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isMacLike, isSecureURL, isValidUrl, jsonIcon, labelText, loader as loaderAnimationData, macifyShortcut, mq, numberInput, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInTtb, spinner as spinnerAnimationData, structurePanelIcon, supports, textInput, useBreakpoint, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useOutsideClick, useParameterShell, useShortcut, warningIcon, yesNoIcon };
|
|
23598
|
+
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, 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, 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 };
|