@uniformdev/design-system 20.66.7-alpha.10 → 20.67.1-alpha.22
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 +80 -35
- package/dist/index.d.mts +37 -1
- package/dist/index.d.ts +37 -1
- package/dist/index.js +82 -34
- package/package.json +5 -5
package/dist/esm/index.js
CHANGED
|
@@ -898,6 +898,62 @@ var BetaDecorator = (Story) => /* @__PURE__ */ jsxs5(VerticalRhythm, { children:
|
|
|
898
898
|
/* @__PURE__ */ jsx10(Story, {})
|
|
899
899
|
] });
|
|
900
900
|
|
|
901
|
+
// src/components/utils/nativeButton.ts
|
|
902
|
+
import * as React2 from "react";
|
|
903
|
+
|
|
904
|
+
// src/components/utils/suppressBaseUiNativeButtonWarning.ts
|
|
905
|
+
var NATIVE_BUTTON_WARNING_MARKER = "acts as a button expected";
|
|
906
|
+
var INSTALLED_FLAG = Symbol.for("uniform.designSystem.baseUiNativeButtonWarningFilterInstalled");
|
|
907
|
+
function installBaseUiNativeButtonWarningFilter() {
|
|
908
|
+
if (process.env.NODE_ENV === "production") {
|
|
909
|
+
return;
|
|
910
|
+
}
|
|
911
|
+
const globalScope = globalThis;
|
|
912
|
+
if (globalScope[INSTALLED_FLAG]) {
|
|
913
|
+
return;
|
|
914
|
+
}
|
|
915
|
+
globalScope[INSTALLED_FLAG] = true;
|
|
916
|
+
const originalConsoleError = console.error;
|
|
917
|
+
console.error = function filteredConsoleError(...args) {
|
|
918
|
+
if (typeof args[0] === "string" && args[0].includes(NATIVE_BUTTON_WARNING_MARKER)) {
|
|
919
|
+
return;
|
|
920
|
+
}
|
|
921
|
+
originalConsoleError.apply(console, args);
|
|
922
|
+
};
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
// src/components/utils/nativeButton.ts
|
|
926
|
+
installBaseUiNativeButtonWarningFilter();
|
|
927
|
+
function markNativeButton(component) {
|
|
928
|
+
component.renderNativeButton = true;
|
|
929
|
+
return component;
|
|
930
|
+
}
|
|
931
|
+
function isNativeButtonTrigger(element) {
|
|
932
|
+
if (!React2.isValidElement(element)) {
|
|
933
|
+
return false;
|
|
934
|
+
}
|
|
935
|
+
if (element.type === "button") {
|
|
936
|
+
return true;
|
|
937
|
+
}
|
|
938
|
+
if (typeof element.type !== "string") {
|
|
939
|
+
if (element.type.renderNativeButton) {
|
|
940
|
+
return true;
|
|
941
|
+
}
|
|
942
|
+
const props = element.props;
|
|
943
|
+
if ((props == null ? void 0 : props.type) === "button") {
|
|
944
|
+
return true;
|
|
945
|
+
}
|
|
946
|
+
const emotionType = props == null ? void 0 : props.__EMOTION_TYPE_PLEASE_DO_NOT_USE__;
|
|
947
|
+
if (emotionType === "button") {
|
|
948
|
+
return true;
|
|
949
|
+
}
|
|
950
|
+
if (emotionType && typeof emotionType !== "string" && emotionType.renderNativeButton) {
|
|
951
|
+
return true;
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
return false;
|
|
955
|
+
}
|
|
956
|
+
|
|
901
957
|
// src/utils/debounce.ts
|
|
902
958
|
var debounce = (fn, ms = 300) => {
|
|
903
959
|
let timeoutId;
|
|
@@ -1242,7 +1298,7 @@ import { GenIcon } from "@react-icons/all-files";
|
|
|
1242
1298
|
import { MdSettings } from "@react-icons/all-files/md/MdSettings";
|
|
1243
1299
|
|
|
1244
1300
|
// src/components/Icons/Icon.tsx
|
|
1245
|
-
import
|
|
1301
|
+
import React3 from "react";
|
|
1246
1302
|
|
|
1247
1303
|
// src/components/Icons/Icon.styles.ts
|
|
1248
1304
|
import { css as css11 } from "@emotion/react";
|
|
@@ -1355,7 +1411,7 @@ var IconInner = ({ icon, iconColor = "default", size = "1.5rem", ...otherProps }
|
|
|
1355
1411
|
}
|
|
1356
1412
|
);
|
|
1357
1413
|
};
|
|
1358
|
-
var Icon =
|
|
1414
|
+
var Icon = React3.memo(IconInner);
|
|
1359
1415
|
|
|
1360
1416
|
// src/components/Icons/customIcons.tsx
|
|
1361
1417
|
import { jsx as jsx13 } from "@emotion/react/jsx-runtime";
|
|
@@ -3200,31 +3256,6 @@ function Tooltip({
|
|
|
3200
3256
|
] });
|
|
3201
3257
|
}
|
|
3202
3258
|
|
|
3203
|
-
// src/components/utils/nativeButton.ts
|
|
3204
|
-
import * as React4 from "react";
|
|
3205
|
-
function markNativeButton(component) {
|
|
3206
|
-
component.renderNativeButton = true;
|
|
3207
|
-
return component;
|
|
3208
|
-
}
|
|
3209
|
-
function isNativeButtonTrigger(element) {
|
|
3210
|
-
var _a;
|
|
3211
|
-
if (!React4.isValidElement(element)) {
|
|
3212
|
-
return false;
|
|
3213
|
-
}
|
|
3214
|
-
if (element.type === "button") {
|
|
3215
|
-
return true;
|
|
3216
|
-
}
|
|
3217
|
-
if (typeof element.type !== "string") {
|
|
3218
|
-
if (element.type.renderNativeButton) {
|
|
3219
|
-
return true;
|
|
3220
|
-
}
|
|
3221
|
-
if (((_a = element.props) == null ? void 0 : _a.type) === "button") {
|
|
3222
|
-
return true;
|
|
3223
|
-
}
|
|
3224
|
-
}
|
|
3225
|
-
return false;
|
|
3226
|
-
}
|
|
3227
|
-
|
|
3228
3259
|
// src/components/Button/hooks/useButtonStyles.ts
|
|
3229
3260
|
var btnSize = {
|
|
3230
3261
|
zero: "padding: 0; font-size: var(--fs-sm);",
|
|
@@ -5188,7 +5219,15 @@ var Menu = React8.forwardRef(function Menu2({
|
|
|
5188
5219
|
);
|
|
5189
5220
|
if (isNested) {
|
|
5190
5221
|
return /* @__PURE__ */ jsxs17(BaseUIMenu.SubmenuRoot, { open: controlledOpen, onOpenChange: handleOpenChange, disabled: disabled2, children: [
|
|
5191
|
-
/* @__PURE__ */ jsx28(SubmenuTriggerModeContext.Provider, { value: true, children: /* @__PURE__ */ jsx28(
|
|
5222
|
+
/* @__PURE__ */ jsx28(SubmenuTriggerModeContext.Provider, { value: true, children: /* @__PURE__ */ jsx28(
|
|
5223
|
+
BaseUIMenu.SubmenuTrigger,
|
|
5224
|
+
{
|
|
5225
|
+
render: submenuTriggerElement,
|
|
5226
|
+
disabled: disabled2,
|
|
5227
|
+
closeDelay: 100,
|
|
5228
|
+
nativeButton: isNativeButtonTrigger(submenuTriggerElement)
|
|
5229
|
+
}
|
|
5230
|
+
) }),
|
|
5192
5231
|
/* @__PURE__ */ jsx28(BaseUIMenu.Portal, { container: portalContainer, children: menuContent })
|
|
5193
5232
|
] });
|
|
5194
5233
|
}
|
|
@@ -5264,6 +5303,7 @@ var MenuItem = React9.forwardRef(
|
|
|
5264
5303
|
css: [menuItem(textColor2, active2), typeof className === "object" ? className : void 0],
|
|
5265
5304
|
className: typeof className === "string" ? className : void 0,
|
|
5266
5305
|
render,
|
|
5306
|
+
nativeButton: isNativeButtonTrigger(render),
|
|
5267
5307
|
...props,
|
|
5268
5308
|
onClick: onClickHandler,
|
|
5269
5309
|
disabled: disabledValue,
|
|
@@ -8857,6 +8897,7 @@ var DateTimePicker = ({
|
|
|
8857
8897
|
render: /* @__PURE__ */ jsx66(Button, { buttonType: "ghostUnimportant" }),
|
|
8858
8898
|
disabled: disabled2,
|
|
8859
8899
|
"data-testid": `${testId}-trigger`,
|
|
8900
|
+
nativeButton: true,
|
|
8860
8901
|
children: /* @__PURE__ */ jsx66(DateTimePickerSummary, { value, placeholder })
|
|
8861
8902
|
}
|
|
8862
8903
|
),
|
|
@@ -9750,10 +9791,12 @@ var variants = {
|
|
|
9750
9791
|
|
|
9751
9792
|
// src/components/IconButton/IconButton.tsx
|
|
9752
9793
|
import { jsx as jsx77 } from "@emotion/react/jsx-runtime";
|
|
9753
|
-
var IconButton =
|
|
9754
|
-
(
|
|
9755
|
-
|
|
9756
|
-
|
|
9794
|
+
var IconButton = markNativeButton(
|
|
9795
|
+
forwardRef19(
|
|
9796
|
+
({ children, size = "md", variant = "square", ...props }, ref) => {
|
|
9797
|
+
return /* @__PURE__ */ jsx77(Button, { ref, css: [iconButton, variants[variant], sizes2[size]], ...props, children });
|
|
9798
|
+
}
|
|
9799
|
+
)
|
|
9757
9800
|
);
|
|
9758
9801
|
IconButton.displayName = "IconButton";
|
|
9759
9802
|
|
|
@@ -13372,8 +13415,8 @@ var ObjectListItemRightSlot = css89`
|
|
|
13372
13415
|
gap: var(--spacing-sm);
|
|
13373
13416
|
`;
|
|
13374
13417
|
var ObjectListItemContainer = css89`
|
|
13375
|
-
> [role='listitem']:not(:
|
|
13376
|
-
border-
|
|
13418
|
+
> [role='listitem']:not(:last-child) {
|
|
13419
|
+
border-bottom: 1px solid var(--gray-200);
|
|
13377
13420
|
}
|
|
13378
13421
|
`;
|
|
13379
13422
|
var ObjectListItemCover = css89`
|
|
@@ -17986,7 +18029,7 @@ var toolbarGroup = css106`
|
|
|
17986
18029
|
gap: var(--spacing-xs);
|
|
17987
18030
|
position: relative;
|
|
17988
18031
|
|
|
17989
|
-
&:not(:first-
|
|
18032
|
+
&:not(:first-of-type)::before {
|
|
17990
18033
|
background-color: var(--gray-300);
|
|
17991
18034
|
content: '';
|
|
17992
18035
|
display: block;
|
|
@@ -20944,10 +20987,12 @@ export {
|
|
|
20944
20987
|
input,
|
|
20945
20988
|
inputError,
|
|
20946
20989
|
inputSelect,
|
|
20990
|
+
isNativeButtonTrigger,
|
|
20947
20991
|
isSecureURL,
|
|
20948
20992
|
isValidUrl,
|
|
20949
20993
|
jsonIcon,
|
|
20950
20994
|
labelText,
|
|
20995
|
+
markNativeButton,
|
|
20951
20996
|
mq,
|
|
20952
20997
|
numberInput,
|
|
20953
20998
|
popTopLayerDialog,
|
package/dist/index.d.mts
CHANGED
|
@@ -40,6 +40,42 @@ declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emot
|
|
|
40
40
|
|
|
41
41
|
declare const BetaDecorator: Decorator;
|
|
42
42
|
|
|
43
|
+
/**
|
|
44
|
+
* Static marker used by {@link isNativeButtonTrigger} to detect design-system
|
|
45
|
+
* components whose root DOM node is a real `<button>`. Base UI's Menu/Tooltip
|
|
46
|
+
* triggers warn when `nativeButton={false}` is passed but the rendered element
|
|
47
|
+
* is still a `<button>`; setting this marker on the wrapper component allows
|
|
48
|
+
* those triggers to opt back into the native-button code path safely.
|
|
49
|
+
*
|
|
50
|
+
* Set this marker via {@link markNativeButton} on any forwardRef/component
|
|
51
|
+
* whose root DOM node is `<button>`. Consumers writing custom triggers can do
|
|
52
|
+
* the same.
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* export const MyButton = markNativeButton(forwardRef<HTMLButtonElement, Props>(...));
|
|
56
|
+
*/
|
|
57
|
+
declare function markNativeButton<T extends object>(component: T): T;
|
|
58
|
+
/**
|
|
59
|
+
* Determines if the given trigger element will render a real `<button>` element
|
|
60
|
+
* to the DOM, so that Base UI's `nativeButton` prop can be set correctly.
|
|
61
|
+
*
|
|
62
|
+
* Detection strategy (any one of):
|
|
63
|
+
* 1. Plain `<button>` JSX (`element.type === 'button'`).
|
|
64
|
+
* 2. A component carrying the `renderNativeButton` static marker applied via
|
|
65
|
+
* {@link markNativeButton}.
|
|
66
|
+
* 3. An Emotion-wrapped element — Emotion's `css` prop replaces `element.type`
|
|
67
|
+
* with an internal wrapper component and stashes the original type/component
|
|
68
|
+
* in the `__EMOTION_TYPE_PLEASE_DO_NOT_USE__` prop. We re-check that stashed
|
|
69
|
+
* type so a marked component (e.g. `<MenuThreeDots css={...} />`) or a
|
|
70
|
+
* `<button css={...} />` is still detected. We also fall back to checking
|
|
71
|
+
* `element.props.type === 'button'` for the original `type="button"`
|
|
72
|
+
* attribute Emotion preserves.
|
|
73
|
+
*
|
|
74
|
+
* Anything else (including non-element children, plain `<div>`s, an `<Icon>`,
|
|
75
|
+
* etc.) falls back to `false` so Base UI's keyboard polyfill keeps firing.
|
|
76
|
+
*/
|
|
77
|
+
declare function isNativeButtonTrigger(element: React$1.ReactNode): boolean;
|
|
78
|
+
|
|
43
79
|
/** Breakpoint label values */
|
|
44
80
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
45
81
|
type BreakpointsMap = Record<BreakpointSize, number>;
|
|
@@ -5650,4 +5686,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
|
|
|
5650
5686
|
|
|
5651
5687
|
declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
|
|
5652
5688
|
|
|
5653
|
-
export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, StackedModalHeader, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|
|
5689
|
+
export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, StackedModalHeader, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isNativeButtonTrigger, isSecureURL, isValidUrl, jsonIcon, labelText, markNativeButton, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,42 @@ declare const Theme: ({ disableReset, disableGlobalReset }: ThemeProps) => _emot
|
|
|
40
40
|
|
|
41
41
|
declare const BetaDecorator: Decorator;
|
|
42
42
|
|
|
43
|
+
/**
|
|
44
|
+
* Static marker used by {@link isNativeButtonTrigger} to detect design-system
|
|
45
|
+
* components whose root DOM node is a real `<button>`. Base UI's Menu/Tooltip
|
|
46
|
+
* triggers warn when `nativeButton={false}` is passed but the rendered element
|
|
47
|
+
* is still a `<button>`; setting this marker on the wrapper component allows
|
|
48
|
+
* those triggers to opt back into the native-button code path safely.
|
|
49
|
+
*
|
|
50
|
+
* Set this marker via {@link markNativeButton} on any forwardRef/component
|
|
51
|
+
* whose root DOM node is `<button>`. Consumers writing custom triggers can do
|
|
52
|
+
* the same.
|
|
53
|
+
*
|
|
54
|
+
* @example
|
|
55
|
+
* export const MyButton = markNativeButton(forwardRef<HTMLButtonElement, Props>(...));
|
|
56
|
+
*/
|
|
57
|
+
declare function markNativeButton<T extends object>(component: T): T;
|
|
58
|
+
/**
|
|
59
|
+
* Determines if the given trigger element will render a real `<button>` element
|
|
60
|
+
* to the DOM, so that Base UI's `nativeButton` prop can be set correctly.
|
|
61
|
+
*
|
|
62
|
+
* Detection strategy (any one of):
|
|
63
|
+
* 1. Plain `<button>` JSX (`element.type === 'button'`).
|
|
64
|
+
* 2. A component carrying the `renderNativeButton` static marker applied via
|
|
65
|
+
* {@link markNativeButton}.
|
|
66
|
+
* 3. An Emotion-wrapped element — Emotion's `css` prop replaces `element.type`
|
|
67
|
+
* with an internal wrapper component and stashes the original type/component
|
|
68
|
+
* in the `__EMOTION_TYPE_PLEASE_DO_NOT_USE__` prop. We re-check that stashed
|
|
69
|
+
* type so a marked component (e.g. `<MenuThreeDots css={...} />`) or a
|
|
70
|
+
* `<button css={...} />` is still detected. We also fall back to checking
|
|
71
|
+
* `element.props.type === 'button'` for the original `type="button"`
|
|
72
|
+
* attribute Emotion preserves.
|
|
73
|
+
*
|
|
74
|
+
* Anything else (including non-element children, plain `<div>`s, an `<Icon>`,
|
|
75
|
+
* etc.) falls back to `false` so Base UI's keyboard polyfill keeps firing.
|
|
76
|
+
*/
|
|
77
|
+
declare function isNativeButtonTrigger(element: React$1.ReactNode): boolean;
|
|
78
|
+
|
|
43
79
|
/** Breakpoint label values */
|
|
44
80
|
type BreakpointSize = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
45
81
|
type BreakpointsMap = Record<BreakpointSize, number>;
|
|
@@ -5650,4 +5686,4 @@ declare const StatusBullet: ({ status, hideText, size, message, compact, ...prop
|
|
|
5650
5686
|
|
|
5651
5687
|
declare const actionBarVisibilityStyles: _emotion_react.SerializedStyles;
|
|
5652
5688
|
|
|
5653
|
-
export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, StackedModalHeader, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isSecureURL, isValidUrl, jsonIcon, labelText, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|
|
5689
|
+
export { AVATAR_SIZE_2XL, AVATAR_SIZE_2XS, AVATAR_SIZE_3XL, AVATAR_SIZE_LG, AVATAR_SIZE_MD, AVATAR_SIZE_SM, AVATAR_SIZE_XL, AVATAR_SIZE_XS, type ActionButtonsProps, AddButton, type AddButtonProps, AddListButton, type AddListButtonProps, type AddListButtonThemeProps, AsideAndSectionLayout, Avatar, AvatarGroup, type AvatarGroupProps, type AvatarProps, Banner, type BannerProps, type BannerType, BetaDecorator, type BoxHeightProps, type BreakpointSize, type BreakpointsMap, Button, type ButtonProps, type ButtonSizeProps, type ButtonSoftThemeProps, type ButtonThemeProps, ButtonWithMenu, type ButtonWithMenuProps, Calendar, type CalendarCellCss, type CalendarProps, type CalendarStyles, Callout, type CalloutProps, type CalloutType, Caption, type CaptionProps, Card, CardContainer, type CardContainerBgColorProps, type CardContainerProps, type CardProps, CardTitle, type CardTitleProps, CheckboxWithInfo, type CheckboxWithInforProps, type ChildFunction, Chip, type ChipProps, type ChipTheme, type ComboBoxGroupBase, type ComboBoxSelectableGroup, type ComboBoxSelectableItem, type ComboBoxSelectableOption, Container, type ContainerProps, type ConvertComboBoxGroupsToSelectableGroupsOptions, Counter, type CounterBgColors, type CounterIconColors, type CounterProps, CreateTeamIntegrationTile, type CreateTeamIntegrationTileProps, CurrentDrawerContext, DashedBox, type DashedBoxProps, DateTimePicker, type DateTimePickerProps, DateTimePickerSummary, type DateTimePickerValue, DateTimePickerVariant, DebouncedInputKeywordSearch, type DebouncedInputKeywordSearchProps, DescriptionList, type DescriptionListProps, Details, type DetailsProps, DismissibleChipAction, DragHandle, type DraggableHandleProps, Drawer, DrawerContent, type DrawerContentProps, type DrawerContextValue, type DrawerItem, type DrawerProps, DrawerProvider, DrawerRenderer, type DrawerRendererItemProps, type DrawerRendererProps, type DrawersRegistryRecord, DropdownStyleMenuTrigger, type DropdownStyleMenuTriggerProps, EditTeamIntegrationTile, type EditTeamIntegrationTileProps, ErrorMessage, type ErrorMessageProps, FieldMessage, type FieldMessageProps, Fieldset, type FieldsetProps, FilterChip, FlexiCard, FlexiCardTitle, type GroupedOption, Heading, type HeadingProps, HexModalBackground, HorizontalRhythm, Icon, IconButton, type IconButtonProps, type IconColor, type IconName, type IconProps, type IconType, IconsProvider, Image, ImageBroken, type ImageProps, InfoMessage, type InfoMessageProps, Input, InputComboBox, type InputComboBoxOption, type InputComboBoxProps, InputCreatableComboBox, type InputCreatableComboBoxProps, InputInlineSelect, type InputInlineSelectOption, type InputInlineSelectProps, InputKeywordSearch, type InputKeywordSearchProps, type InputProps, InputSelect, type InputSelectProps, InputTime, type InputTimeProps, InputToggle, type InputToggleProps, IntegrationComingSoon, type IntegrationComingSoonProps, IntegrationLoadingTile, type IntegrationLoadingTileProps, IntegrationModalHeader, type IntegrationModalHeaderProps, IntegrationModalIcon, type IntegrationModalIconProps, IntegrationTile, type IntegrationTileProps, type IsoDateString, type IsoDateTimeString, type IsoTimeString, JsonEditor, type JsonEditorProps, KeyValueInput, type KeyValueInputProps, type KeyValueItem, Label, LabelLeadingIcon, type LabelLeadingIconProps, type LabelOption, type LabelProps, LabelsQuickFilter, type LabelsQuickFilterItem, type LabelsQuickFilterProps, Legend, type LegendProps, type LevelProps, LimitsBar, type LimitsBarProps, Link, LinkButton, type LinkButtonProps, type LinkColorProps, LinkList, type LinkListProps, type LinkManagerWithRefType, LinkNode, type LinkProps, LinkTile, type LinkTileWithRefProps, LinkWithRef, LoadingCardSkeleton, LoadingIcon, type LoadingIconProps, LoadingIndicator, LoadingOverlay, type LoadingOverlayProps, Menu, MenuButton, type MenuButtonProp, MenuGroup, type MenuGroupProps, MenuItem, MenuItemEmptyIcon, MenuItemIcon, MenuItemInner, type MenuItemProps, MenuItemSeparator, type MenuItemTextThemeProps, type MenuProps, MenuSelect, MenuThreeDots, type MenuThreeDotsProps, Modal, ModalDialog, type ModalDialogProps, ModalPortalContext, type ModalProps, MultilineChip, type MultilineChipProps, ObjectGridContainer, type ObjectGridContainerProps, ObjectGridItem, ObjectGridItemCardCover, type ObjectGridItemCardCoverProps, ObjectGridItemCover, ObjectGridItemCoverButton, type ObjectGridItemCoverButtonProps, type ObjectGridItemCoverProps, ObjectGridItemHeading, ObjectGridItemIconWithTooltip, type ObjectGridItemIconWithTooltipProps, ObjectGridItemLoadingSkeleton, type ObjectGridItemProps, type ObjectGridItemTitleProps, ObjectItemLoadingSkeleton, type ObjectItemLoadingSkeletonProps, ObjectListItem, ObjectListItemContainer, ObjectListItemCover, type ObjectListItemCoverProps, ObjectListItemHeading, type ObjectListItemHeadingProps, type ObjectListItemProps, ObjectListSubText, PageHeaderSection, type PageHeaderSectionProps, Pagination, Paragraph, type ParagraphProps, ParameterActionButton, type ParameterActionButtonProps, ParameterDrawerHeader, type ParameterDrawerHeaderProps, ParameterGroup, type ParameterGroupProps, ParameterImage, ParameterImageInner, ParameterImagePreview, type ParameterImageProps, ParameterInput, ParameterInputInner, type ParameterInputProps, ParameterLabel, type ParameterLabelProps, ParameterLabels, ParameterLabelsInner, ParameterLink, ParameterLinkInner, type ParameterLinkProps, ParameterMenuButton, type ParameterMenuButtonProps, ParameterMultiSelect, ParameterMultiSelectInner, type ParameterMultiSelectOption, type ParameterMultiSelectProps, ParameterNameAndPublicIdInput, type ParameterNameAndPublicIdInputProps, ParameterNumberSlider, ParameterNumberSliderInner, type ParameterNumberSliderProps, ParameterOverrideMarker, ParameterRichText, ParameterRichTextInner, type ParameterRichTextInnerProps, type ParameterRichTextProps, ParameterSelect, ParameterSelectInner, type ParameterSelectProps, ParameterSelectSlider, ParameterSelectSliderInner, type ParameterSelectSliderProps, ParameterShell, ParameterShellContext, ParameterShellPlaceholder, type ParameterShellProps, ParameterTextarea, ParameterTextareaInner, type ParameterTextareaProps, ParameterToggle, ParameterToggleInner, type ParameterToggleProps, Popover, PopoverBody, type PopoverBodyProps, type PopoverProps, type PopoverStore, ProgressBar, type ProgressBarProps, ProgressList, ProgressListItem, type ProgressListItemProps, type ProgressListProps, QuickFilter, type QuickFilterSelectedItem, type RegisterDrawerProps, ResolveIcon, type ResolveIconProps, ResponsiveTableContainer, type RhythmProps, type RichTextParamValue, RichTextToolbarIcon, type ScrollableItemProps, ScrollableList, type ScrollableListContainerProps, ScrollableListInputItem, ScrollableListItem, type ScrollableListItemProps, type ScrollableListProps, SearchableMenu, type SearchableMenuProps, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, SelectableMenuItem, type SelectableMenuItemProps, type SerializedLinkNode, type ShortcutReference, Skeleton, type SkeletonProps, Slider, SliderLabels, type SliderLabelsProps, type SliderOption, type SliderProps, Spinner, StackedModal, StackedModalHeader, type StackedModalProps, StackedModalStep, type StackedModalStepProps, StatusBullet, type StatusBulletProps, type StatusTypeProps, type StepTransitionState, SuccessMessage, type SuccessMessageProps, Swatch, SwatchComboBox, SwatchComboBoxLabelStyles, SwatchLabel, type SwatchLabelProps, SwatchLabelRemoveButton, SwatchLabelTooltip, type SwatchProps, type SwatchSize, type SwatchVariant, Switch, type SwitchProps, TAKEOVER_STACK_ID, TabButton, TabButtonGroup, type TabButtonGroupProps, type TabButtonProps, TabContent, type TabContentProps, Table, TableBody, type TableBodyProps, TableCellData, type TableCellDataProps, TableCellHead, type TableCellHeadProps, TableFoot, type TableFootProps, TableHead, type TableHeadProps, type TableProps, TableRow, type TableRowProps, Tabs, type TabsProps, TakeoverDrawerRenderer, type TextAlignProps, Textarea, type TextareaProps, Theme, type ThemeProps, type TickMark, Tile, TileContainer, type TileContainerProps, type TileProps, TileText, type TileTitleProps, ToastContainer, type ToastContainerProps, type ToastData, type ToastId, type ToastOptions, type ToastPromiseOptions, type ToastUpdate, Tooltip, type TooltipProps, TwoColumnLayout, type TwoColumnLayoutProps, UniformBadge, UniformLogo, UniformLogoLarge, type UniformLogoProps, type UseShortcutOptions, type UseShortcutResult, VerticalRhythm, WarningMessage, type WarningMessageProps, accessibleHidden, actionBarVisibilityStyles, addPathSegmentToPathname, avatarImageStyles, avatarSize2xlStyles, avatarSize2xsStyles, avatarSize3xlStyles, avatarSizeLgStyles, avatarSizeMdStyles, avatarSizeSmStyles, avatarSizeXlStyles, avatarSizeXsStyles, avatarStyles, borderTopIcon, breakpoints, button, buttonAccentAltDark, buttonAccentAltDarkOutline, buttonDestructive, buttonDisabled, buttonGhost, buttonGhostDestructive, buttonGhostUnimportant, buttonPrimary, buttonPrimaryInvert, buttonRippleEffect, buttonSecondary, buttonSecondaryInvert, buttonSoftAccentPrimary, buttonSoftAlt, buttonSoftDestructive, buttonSoftPrimary, buttonSoftTertiary, buttonTertiary, buttonTertiaryOutline, buttonUnimportant, canvasAlertIcon, cardIcon, chatIcon, convertComboBoxGroupsToSelectableGroups, cq, customIcons, debounce, extractParameterProps, fadeIn, fadeInBottom, fadeInLtr, fadeInRtl, fadeInTop, fadeOutBottom, fullWidthScreenIcon, getButtonSize, getButtonStyles, getComboBoxSelectedSelectableGroups, getDrawerAttributes, getFormattedShortcut, getParentPath, getPathSegment, growSubtle, imageTextIcon, infoFilledIcon, input, inputError, inputSelect, isNativeButtonTrigger, isSecureURL, isValidUrl, jsonIcon, labelText, markNativeButton, mq, numberInput, popTopLayerDialog, prefersReducedMotion, pushTopLayerDialog, queryStringIcon, rectangleRoundedIcon, replaceUnderscoreInString, richTextToolbarButton, richTextToolbarButtonActive, ripple, scrollbarStyles, settings, settingsIcon, skeletonLoading, slideInRtl, slideInTtb, spin, structurePanelIcon, subscribeTopLayerDialog, supports, swatchColors, swatchVariant, textInput, toast, uniformAiIcon, uniformComponentIcon, uniformComponentPatternIcon, uniformCompositionPatternIcon, uniformConditionalValuesIcon, uniformContentTypeIcon, uniformEntryIcon, uniformEntryPatternIcon, uniformLocaleDisabledIcon, uniformLocaleIcon, uniformStatusDraftIcon, uniformStatusModifiedIcon, uniformStatusPublishedIcon, uniformUsageStatusIcon, useBreakpoint, useButtonStyles, useCloseCurrentDrawer, useCurrentDrawer, useCurrentTab, useDateTimePickerContext, useDrawer, useIconContext, useImageLoadFallback, useIsSubmenuTriggerMode, useModalPortalContainer, useOutsideClick, useParameterShell, usePopoverComponentContext, useRichTextToolbarState, useShortcut, useStackedModal, functionalColors as utilityColors, warningIcon, yesNoIcon, zigZag, zigZagThick };
|
package/dist/index.js
CHANGED
|
@@ -1635,10 +1635,12 @@ __export(src_exports, {
|
|
|
1635
1635
|
input: () => input,
|
|
1636
1636
|
inputError: () => inputError,
|
|
1637
1637
|
inputSelect: () => inputSelect,
|
|
1638
|
+
isNativeButtonTrigger: () => isNativeButtonTrigger,
|
|
1638
1639
|
isSecureURL: () => isSecureURL,
|
|
1639
1640
|
isValidUrl: () => isValidUrl,
|
|
1640
1641
|
jsonIcon: () => jsonIcon,
|
|
1641
1642
|
labelText: () => labelText,
|
|
1643
|
+
markNativeButton: () => markNativeButton,
|
|
1642
1644
|
mq: () => mq,
|
|
1643
1645
|
numberInput: () => numberInput,
|
|
1644
1646
|
popTopLayerDialog: () => popTopLayerDialog,
|
|
@@ -2636,6 +2638,64 @@ var BetaDecorator = (Story) => /* @__PURE__ */ (0, import_jsx_runtime9.jsxs)(Ver
|
|
|
2636
2638
|
// src/utils/index.ts
|
|
2637
2639
|
init_emotion_jsx_shim();
|
|
2638
2640
|
|
|
2641
|
+
// src/components/utils/nativeButton.ts
|
|
2642
|
+
init_emotion_jsx_shim();
|
|
2643
|
+
var React2 = __toESM(require("react"));
|
|
2644
|
+
|
|
2645
|
+
// src/components/utils/suppressBaseUiNativeButtonWarning.ts
|
|
2646
|
+
init_emotion_jsx_shim();
|
|
2647
|
+
var NATIVE_BUTTON_WARNING_MARKER = "acts as a button expected";
|
|
2648
|
+
var INSTALLED_FLAG = Symbol.for("uniform.designSystem.baseUiNativeButtonWarningFilterInstalled");
|
|
2649
|
+
function installBaseUiNativeButtonWarningFilter() {
|
|
2650
|
+
if (process.env.NODE_ENV === "production") {
|
|
2651
|
+
return;
|
|
2652
|
+
}
|
|
2653
|
+
const globalScope = globalThis;
|
|
2654
|
+
if (globalScope[INSTALLED_FLAG]) {
|
|
2655
|
+
return;
|
|
2656
|
+
}
|
|
2657
|
+
globalScope[INSTALLED_FLAG] = true;
|
|
2658
|
+
const originalConsoleError = console.error;
|
|
2659
|
+
console.error = function filteredConsoleError(...args) {
|
|
2660
|
+
if (typeof args[0] === "string" && args[0].includes(NATIVE_BUTTON_WARNING_MARKER)) {
|
|
2661
|
+
return;
|
|
2662
|
+
}
|
|
2663
|
+
originalConsoleError.apply(console, args);
|
|
2664
|
+
};
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2667
|
+
// src/components/utils/nativeButton.ts
|
|
2668
|
+
installBaseUiNativeButtonWarningFilter();
|
|
2669
|
+
function markNativeButton(component) {
|
|
2670
|
+
component.renderNativeButton = true;
|
|
2671
|
+
return component;
|
|
2672
|
+
}
|
|
2673
|
+
function isNativeButtonTrigger(element) {
|
|
2674
|
+
if (!React2.isValidElement(element)) {
|
|
2675
|
+
return false;
|
|
2676
|
+
}
|
|
2677
|
+
if (element.type === "button") {
|
|
2678
|
+
return true;
|
|
2679
|
+
}
|
|
2680
|
+
if (typeof element.type !== "string") {
|
|
2681
|
+
if (element.type.renderNativeButton) {
|
|
2682
|
+
return true;
|
|
2683
|
+
}
|
|
2684
|
+
const props = element.props;
|
|
2685
|
+
if ((props == null ? void 0 : props.type) === "button") {
|
|
2686
|
+
return true;
|
|
2687
|
+
}
|
|
2688
|
+
const emotionType = props == null ? void 0 : props.__EMOTION_TYPE_PLEASE_DO_NOT_USE__;
|
|
2689
|
+
if (emotionType === "button") {
|
|
2690
|
+
return true;
|
|
2691
|
+
}
|
|
2692
|
+
if (emotionType && typeof emotionType !== "string" && emotionType.renderNativeButton) {
|
|
2693
|
+
return true;
|
|
2694
|
+
}
|
|
2695
|
+
}
|
|
2696
|
+
return false;
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2639
2699
|
// src/utils/debounce.ts
|
|
2640
2700
|
init_emotion_jsx_shim();
|
|
2641
2701
|
var debounce = (fn, ms = 300) => {
|
|
@@ -4962,32 +5022,6 @@ function Tooltip({
|
|
|
4962
5022
|
] });
|
|
4963
5023
|
}
|
|
4964
5024
|
|
|
4965
|
-
// src/components/utils/nativeButton.ts
|
|
4966
|
-
init_emotion_jsx_shim();
|
|
4967
|
-
var React4 = __toESM(require("react"));
|
|
4968
|
-
function markNativeButton(component) {
|
|
4969
|
-
component.renderNativeButton = true;
|
|
4970
|
-
return component;
|
|
4971
|
-
}
|
|
4972
|
-
function isNativeButtonTrigger(element) {
|
|
4973
|
-
var _a;
|
|
4974
|
-
if (!React4.isValidElement(element)) {
|
|
4975
|
-
return false;
|
|
4976
|
-
}
|
|
4977
|
-
if (element.type === "button") {
|
|
4978
|
-
return true;
|
|
4979
|
-
}
|
|
4980
|
-
if (typeof element.type !== "string") {
|
|
4981
|
-
if (element.type.renderNativeButton) {
|
|
4982
|
-
return true;
|
|
4983
|
-
}
|
|
4984
|
-
if (((_a = element.props) == null ? void 0 : _a.type) === "button") {
|
|
4985
|
-
return true;
|
|
4986
|
-
}
|
|
4987
|
-
}
|
|
4988
|
-
return false;
|
|
4989
|
-
}
|
|
4990
|
-
|
|
4991
5025
|
// src/components/Button/hooks/useButtonStyles.ts
|
|
4992
5026
|
init_emotion_jsx_shim();
|
|
4993
5027
|
var btnSize = {
|
|
@@ -6995,7 +7029,15 @@ var Menu = React8.forwardRef(function Menu2({
|
|
|
6995
7029
|
);
|
|
6996
7030
|
if (isNested) {
|
|
6997
7031
|
return /* @__PURE__ */ (0, import_jsx_runtime28.jsxs)(import_menu.Menu.SubmenuRoot, { open: controlledOpen, onOpenChange: handleOpenChange, disabled: disabled2, children: [
|
|
6998
|
-
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(SubmenuTriggerModeContext.Provider, { value: true, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
7032
|
+
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(SubmenuTriggerModeContext.Provider, { value: true, children: /* @__PURE__ */ (0, import_jsx_runtime28.jsx)(
|
|
7033
|
+
import_menu.Menu.SubmenuTrigger,
|
|
7034
|
+
{
|
|
7035
|
+
render: submenuTriggerElement,
|
|
7036
|
+
disabled: disabled2,
|
|
7037
|
+
closeDelay: 100,
|
|
7038
|
+
nativeButton: isNativeButtonTrigger(submenuTriggerElement)
|
|
7039
|
+
}
|
|
7040
|
+
) }),
|
|
6999
7041
|
/* @__PURE__ */ (0, import_jsx_runtime28.jsx)(import_menu.Menu.Portal, { container: portalContainer, children: menuContent })
|
|
7000
7042
|
] });
|
|
7001
7043
|
}
|
|
@@ -7072,6 +7114,7 @@ var MenuItem = React9.forwardRef(
|
|
|
7072
7114
|
css: [menuItem(textColor2, active2), typeof className === "object" ? className : void 0],
|
|
7073
7115
|
className: typeof className === "string" ? className : void 0,
|
|
7074
7116
|
render,
|
|
7117
|
+
nativeButton: isNativeButtonTrigger(render),
|
|
7075
7118
|
...props,
|
|
7076
7119
|
onClick: onClickHandler,
|
|
7077
7120
|
disabled: disabledValue,
|
|
@@ -10732,6 +10775,7 @@ var DateTimePicker = ({
|
|
|
10732
10775
|
render: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(Button, { buttonType: "ghostUnimportant" }),
|
|
10733
10776
|
disabled: disabled2,
|
|
10734
10777
|
"data-testid": `${testId}-trigger`,
|
|
10778
|
+
nativeButton: true,
|
|
10735
10779
|
children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(DateTimePickerSummary, { value, placeholder })
|
|
10736
10780
|
}
|
|
10737
10781
|
),
|
|
@@ -11656,10 +11700,12 @@ var variants = {
|
|
|
11656
11700
|
|
|
11657
11701
|
// src/components/IconButton/IconButton.tsx
|
|
11658
11702
|
var import_jsx_runtime77 = require("@emotion/react/jsx-runtime");
|
|
11659
|
-
var IconButton = (
|
|
11660
|
-
(
|
|
11661
|
-
|
|
11662
|
-
|
|
11703
|
+
var IconButton = markNativeButton(
|
|
11704
|
+
(0, import_react97.forwardRef)(
|
|
11705
|
+
({ children, size = "md", variant = "square", ...props }, ref) => {
|
|
11706
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(Button, { ref, css: [iconButton, variants[variant], sizes2[size]], ...props, children });
|
|
11707
|
+
}
|
|
11708
|
+
)
|
|
11663
11709
|
);
|
|
11664
11710
|
IconButton.displayName = "IconButton";
|
|
11665
11711
|
|
|
@@ -15349,8 +15395,8 @@ var ObjectListItemRightSlot = import_react137.css`
|
|
|
15349
15395
|
gap: var(--spacing-sm);
|
|
15350
15396
|
`;
|
|
15351
15397
|
var ObjectListItemContainer = import_react137.css`
|
|
15352
|
-
> [role='listitem']:not(:
|
|
15353
|
-
border-
|
|
15398
|
+
> [role='listitem']:not(:last-child) {
|
|
15399
|
+
border-bottom: 1px solid var(--gray-200);
|
|
15354
15400
|
}
|
|
15355
15401
|
`;
|
|
15356
15402
|
var ObjectListItemCover = import_react137.css`
|
|
@@ -19941,7 +19987,7 @@ var toolbarGroup = import_react176.css`
|
|
|
19941
19987
|
gap: var(--spacing-xs);
|
|
19942
19988
|
position: relative;
|
|
19943
19989
|
|
|
19944
|
-
&:not(:first-
|
|
19990
|
+
&:not(:first-of-type)::before {
|
|
19945
19991
|
background-color: var(--gray-300);
|
|
19946
19992
|
content: '';
|
|
19947
19993
|
display: block;
|
|
@@ -22949,10 +22995,12 @@ var StatusBullet = ({
|
|
|
22949
22995
|
input,
|
|
22950
22996
|
inputError,
|
|
22951
22997
|
inputSelect,
|
|
22998
|
+
isNativeButtonTrigger,
|
|
22952
22999
|
isSecureURL,
|
|
22953
23000
|
isValidUrl,
|
|
22954
23001
|
jsonIcon,
|
|
22955
23002
|
labelText,
|
|
23003
|
+
markNativeButton,
|
|
22956
23004
|
mq,
|
|
22957
23005
|
numberInput,
|
|
22958
23006
|
popTopLayerDialog,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/design-system",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.67.1-alpha.22+329be3528c",
|
|
4
4
|
"description": "Uniform design system components",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"exports": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@storybook/react-vite": "10.2.10",
|
|
35
35
|
"@types/react": "19.2.2",
|
|
36
36
|
"@types/react-dom": "19.2.2",
|
|
37
|
-
"@uniformdev/canvas": "^20.
|
|
38
|
-
"@uniformdev/richtext": "^20.
|
|
37
|
+
"@uniformdev/canvas": "^20.67.1-alpha.22+329be3528c",
|
|
38
|
+
"@uniformdev/richtext": "^20.67.1-alpha.22+329be3528c",
|
|
39
39
|
"autoprefixer": "10.4.21",
|
|
40
40
|
"hygen": "6.2.11",
|
|
41
41
|
"jsdom": "29.0.2",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"tsup": "8.3.0"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@base-ui/react": "
|
|
49
|
+
"@base-ui/react": "1.5.0",
|
|
50
50
|
"@dnd-kit/core": "^6.3.1",
|
|
51
51
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
52
52
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"publishConfig": {
|
|
85
85
|
"access": "public"
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "329be3528c6e4e6d01316386d18059ec0ffcd172"
|
|
88
88
|
}
|