@sanity/ui 3.0.12-canary.2 → 3.0.13
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/_chunks-cjs/_visual-editing.js +656 -852
- package/dist/_chunks-cjs/_visual-editing.js.map +1 -1
- package/dist/_chunks-es/_visual-editing.mjs +658 -854
- package/dist/_chunks-es/_visual-editing.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +144 -183
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +145 -184
- package/dist/index.mjs.map +1 -1
- package/package.json +40 -26
- package/src/core/components/autocomplete/autocomplete.tsx +14 -10
- package/src/core/components/breadcrumbs/breadcrumbs.tsx +2 -3
- package/src/core/components/dialog/dialog.tsx +14 -10
- package/src/core/components/hotkeys/hotkeys.tsx +2 -2
- package/src/core/components/menu/menuGroup.tsx +4 -2
- package/src/core/components/menu/menuItem.tsx +4 -4
- package/src/core/components/skeleton/skeleton.tsx +4 -4
- package/src/core/components/skeleton/textSkeleton.tsx +5 -5
- package/src/core/components/tree/tree.tsx +1 -0
- package/src/core/hooks/index.ts +1 -1
- package/src/core/hooks/useArrayProp.ts +17 -5
- package/src/core/hooks/useClickOutside.ts +1 -0
- package/src/core/primitives/avatar/avatar.tsx +17 -14
- package/src/core/primitives/avatar/avatarCounter.tsx +16 -14
- package/src/core/primitives/avatar/avatarStack.tsx +2 -2
- package/src/core/primitives/badge/badge.tsx +3 -3
- package/src/core/primitives/box/box.tsx +26 -26
- package/src/core/primitives/button/button.tsx +11 -11
- package/src/core/primitives/card/card.tsx +8 -8
- package/src/core/primitives/code/code.tsx +2 -2
- package/src/core/primitives/container/container.tsx +2 -2
- package/src/core/primitives/flex/flex.tsx +6 -6
- package/src/core/primitives/grid/grid.tsx +9 -9
- package/src/core/primitives/heading/heading.tsx +3 -3
- package/src/core/primitives/inline/inline.tsx +2 -2
- package/src/core/primitives/kbd/kbd.tsx +2 -2
- package/src/core/primitives/label/label.tsx +3 -3
- package/src/core/primitives/popover/popover.tsx +6 -7
- package/src/core/primitives/select/select.tsx +5 -6
- package/src/core/primitives/stack/stack.tsx +2 -2
- package/src/core/primitives/text/text.tsx +3 -3
- package/src/core/primitives/textArea/textArea.tsx +5 -6
- package/src/core/primitives/textInput/textInput.tsx +5 -6
- package/src/core/primitives/tooltip/tooltip.tsx +3 -3
- package/src/core/utils/layer/layerProvider.tsx +2 -3
- package/src/core/utils/virtualList/virtualList.tsx +2 -0
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { isHTMLElement, isHTMLAnchorElement, isHTMLInputElement, isHTMLButtonElement, isHTMLSelectElement, isHTMLTextAreaElement,
|
|
2
|
-
import { Arrow, Avatar, AvatarCounter, AvatarStack, Badge, BoundaryElementProvider, Checkbox, ConditionalWrapper, ElementQuery, Heading, Hotkeys, Inline, KBD, Label, Menu, MenuDivider, MenuGroup, MenuItem, PortalProvider, Radio, Select, Spinner, SrOnly, Switch, Tab, TabList, TextArea, ThemeColorProvider, ThemeProvider, Tooltip, TooltipDelayGroupContext, TooltipDelayGroupProvider, VirtualList, _ResizeObserver, _elementSizeObserver, _fillCSSObject, _getResponsiveSpace, _isScrollable, createColorTheme, hexToRgb, hslToRgb, multiply, parseColor, responsiveCodeFontStyle, responsiveHeadingFont, responsiveLabelFont, responsiveTextAlignStyle, responsiveTextFont, rgbToHex, rgbToHsl, rgba, screen, studioTheme, useCustomValidity, useMatchMedia, useMediaIndex, usePrefersDark, useRootTheme, useTheme, useTooltipDelayGroup } from "./_chunks-es/_visual-editing.mjs";
|
|
1
|
+
import { isHTMLElement, isHTMLAnchorElement, isHTMLInputElement, isHTMLButtonElement, isHTMLSelectElement, isHTMLTextAreaElement, EMPTY_ARRAY, useElementSize, Code, Box, _isEnterToClickElement, useArrayProp, EMPTY_RECORD, Card, Text, Button, Stack, Popover, TextInput, useClickOutsideEvent, _responsive, createGlobalScopedContext, Container, Flex, usePortal, useBoundaryElement, useLayer, useGlobalKeyDown, useTheme_v2, usePrefersReducedMotion, Portal, containsOrEqualsElement, Layer, responsivePaddingStyle, responsiveRadiusStyle, Grid, LayerProvider, isRecord, _cardColorStyle, rem } from "./_chunks-es/_visual-editing.mjs";
|
|
2
|
+
import { Arrow, Avatar, AvatarCounter, AvatarStack, Badge, BoundaryElementProvider, Checkbox, ConditionalWrapper, ElementQuery, Heading, Hotkeys, Inline, KBD, Label, Menu, MenuDivider, MenuGroup, MenuItem, PortalProvider, Radio, Select, Spinner, SrOnly, Switch, Tab, TabList, TextArea, ThemeColorProvider, ThemeProvider, Tooltip, TooltipDelayGroupContext, TooltipDelayGroupProvider, VirtualList, _ResizeObserver, _elementSizeObserver, _fillCSSObject, _getArrayProp, _getResponsiveSpace, _isScrollable, createColorTheme, hexToRgb, hslToRgb, multiply, parseColor, responsiveCodeFontStyle, responsiveHeadingFont, responsiveLabelFont, responsiveTextAlignStyle, responsiveTextFont, rgbToHex, rgbToHsl, rgba, screen, studioTheme, useCustomValidity, useMatchMedia, useMediaIndex, usePrefersDark, useRootTheme, useTheme, useTooltipDelayGroup } from "./_chunks-es/_visual-editing.mjs";
|
|
3
3
|
import { jsx, jsxs, Fragment as Fragment$1 } from "react/jsx-runtime";
|
|
4
4
|
import { c } from "react-compiler-runtime";
|
|
5
5
|
import { SpinnerIcon, ChevronDownIcon, CloseIcon, ToggleArrowRightIcon } from "@sanity/icons";
|
|
@@ -53,11 +53,6 @@ function focusLastDescendant(element) {
|
|
|
53
53
|
}
|
|
54
54
|
return !1;
|
|
55
55
|
}
|
|
56
|
-
function useArrayProp(val, defaultVal) {
|
|
57
|
-
const $ = c(3);
|
|
58
|
-
let t0;
|
|
59
|
-
return $[0] !== defaultVal || $[1] !== val ? (t0 = _getArrayProp(val, defaultVal), $[0] = defaultVal, $[1] = val, $[2] = t0) : t0 = $[2], t0;
|
|
60
|
-
}
|
|
61
56
|
function _getElements(element, elementsArg) {
|
|
62
57
|
const ret = [element];
|
|
63
58
|
for (const el of elementsArg)
|
|
@@ -220,7 +215,7 @@ function autocompleteReducer(state, msg) {
|
|
|
220
215
|
} : state;
|
|
221
216
|
}
|
|
222
217
|
const AUTOCOMPLETE_LISTBOX_IGNORE_KEYS = ["Control", "Shift", "Alt", "Enter", "Home", "End", "PageUp", "PageDown", "Meta", "Tab", "CapsLock"], AUTOCOMPLETE_POPOVER_PLACEMENT = "bottom-start", AUTOCOMPLETE_POPOVER_FALLBACK_PLACEMENTS = ["bottom-start", "top-start"], DEFAULT_RENDER_VALUE = (value, option) => option ? option.value : value, DEFAULT_FILTER_OPTION = (query, option) => option.value.toLowerCase().indexOf(query.toLowerCase()) > -1, InnerAutocomplete = forwardRef(function(props, forwardedRef) {
|
|
223
|
-
const $ = c(
|
|
218
|
+
const $ = c(179);
|
|
224
219
|
let customValidity, disabled, filterOptionProp, icon, id, loading, onBlur, onChange, onFocus, onQueryChange, onSelect, openButton, openOnFocus, optionsProp, prefix, readOnly, relatedElements, renderOptionProp, renderPopover, restProps, suffix, t0, t1, t2, t3, t4, t5, t6, valueProp;
|
|
225
220
|
$[0] !== props ? ({
|
|
226
221
|
border: t0,
|
|
@@ -281,7 +276,7 @@ const AUTOCOMPLETE_LISTBOX_IGNORE_KEYS = ["Control", "Shift", "Alt", "Enter", "H
|
|
|
281
276
|
$[36] !== inputElement ? (t11 = () => inputElement, t12 = [inputElement], $[36] = inputElement, $[37] = t11, $[38] = t12) : (t11 = $[37], t12 = $[38]), useImperativeHandle(inputElementRef, t11, t12);
|
|
282
277
|
let t13, t14;
|
|
283
278
|
$[39] !== inputElement ? (t13 = () => inputElement, t14 = [inputElement], $[39] = inputElement, $[40] = t13, $[41] = t14) : (t13 = $[40], t14 = $[41]), useImperativeHandle(forwardedRef, t13, t14);
|
|
284
|
-
const listBoxId = `${id}-listbox`, options = Array.isArray(optionsProp) ? optionsProp : EMPTY_ARRAY, padding =
|
|
279
|
+
const listBoxId = `${id}-listbox`, options = Array.isArray(optionsProp) ? optionsProp : EMPTY_ARRAY, padding = useArrayProp(paddingProp);
|
|
285
280
|
let t15;
|
|
286
281
|
$[42] !== options || $[43] !== value ? (t15 = value !== null ? options.find((o) => o.value === value) : void 0, $[42] = options, $[43] = value, $[44] = t15) : t15 = $[44];
|
|
287
282
|
const currentOption = t15;
|
|
@@ -462,82 +457,88 @@ const AUTOCOMPLETE_LISTBOX_IGNORE_KEYS = ["Control", "Shift", "Alt", "Enter", "H
|
|
|
462
457
|
}
|
|
463
458
|
t34 = void 0;
|
|
464
459
|
}
|
|
465
|
-
const clearButton = t34
|
|
460
|
+
const clearButton = t34;
|
|
466
461
|
let t35;
|
|
467
|
-
$[94] !==
|
|
468
|
-
|
|
469
|
-
}, $[94] = dispatchOpen, $[95] = openButtonProps, $[96] = t35) : t35 = $[96];
|
|
470
|
-
const handleOpenClick = t35;
|
|
462
|
+
$[94] !== padding ? (t35 = padding.map(_temp$3), $[94] = padding, $[95] = t35) : t35 = $[95];
|
|
463
|
+
const openButtonBoxPadding = t35;
|
|
471
464
|
let t36;
|
|
472
|
-
$[
|
|
473
|
-
const
|
|
465
|
+
$[96] !== padding ? (t36 = padding.map(_temp2$1), $[96] = padding, $[97] = t36) : t36 = $[97];
|
|
466
|
+
const openButtonPadding = t36, openButtonProps = typeof openButton == "object" ? openButton : EMPTY_RECORD;
|
|
474
467
|
let t37;
|
|
468
|
+
$[98] !== dispatchOpen || $[99] !== openButtonProps ? (t37 = (event_4) => {
|
|
469
|
+
dispatchOpen(), openButtonProps.onClick && openButtonProps.onClick(event_4), _raf(() => inputElementRef.current?.focus());
|
|
470
|
+
}, $[98] = dispatchOpen, $[99] = openButtonProps, $[100] = t37) : t37 = $[100];
|
|
471
|
+
const handleOpenClick = t37;
|
|
472
|
+
let t38;
|
|
473
|
+
$[101] !== disabled || $[102] !== expanded || $[103] !== fontSize || $[104] !== handleOpenClick || $[105] !== openButton || $[106] !== openButtonBoxPadding || $[107] !== openButtonPadding || $[108] !== openButtonProps || $[109] !== readOnly ? (t38 = !disabled && !readOnly && openButton ? /* @__PURE__ */ jsx(Box, { "aria-hidden": expanded, padding: openButtonBoxPadding, children: /* @__PURE__ */ jsx(Button, { "aria-label": "Open", disabled: expanded, fontSize, icon: ChevronDownIcon, mode: "bleed", padding: openButtonPadding, ...openButtonProps, onClick: handleOpenClick }) }) : void 0, $[101] = disabled, $[102] = expanded, $[103] = fontSize, $[104] = handleOpenClick, $[105] = openButton, $[106] = openButtonBoxPadding, $[107] = openButtonPadding, $[108] = openButtonProps, $[109] = readOnly, $[110] = t38) : t38 = $[110];
|
|
474
|
+
const openButtonNode = t38;
|
|
475
|
+
let t39;
|
|
475
476
|
bb1: {
|
|
476
477
|
if (query === null) {
|
|
477
478
|
if (value !== null) {
|
|
478
|
-
let
|
|
479
|
-
$[
|
|
479
|
+
let t402;
|
|
480
|
+
$[111] !== currentOption || $[112] !== renderValue || $[113] !== value ? (t402 = renderValue(value, currentOption), $[111] = currentOption, $[112] = renderValue, $[113] = value, $[114] = t402) : t402 = $[114], t39 = t402;
|
|
480
481
|
break bb1;
|
|
481
482
|
}
|
|
482
|
-
|
|
483
|
+
t39 = "";
|
|
483
484
|
break bb1;
|
|
484
485
|
}
|
|
485
|
-
|
|
486
|
+
t39 = query;
|
|
486
487
|
}
|
|
487
|
-
const inputValue =
|
|
488
|
-
let
|
|
489
|
-
$[
|
|
488
|
+
const inputValue = t39;
|
|
489
|
+
let t40;
|
|
490
|
+
$[115] !== listFocused ? (t40 = (event_5) => {
|
|
490
491
|
event_5.key === "Tab" && listFocused && inputElementRef.current?.focus();
|
|
491
|
-
}, $[
|
|
492
|
-
const handleListBoxKeyDown =
|
|
493
|
-
let
|
|
492
|
+
}, $[115] = listFocused, $[116] = t40) : t40 = $[116];
|
|
493
|
+
const handleListBoxKeyDown = t40;
|
|
494
|
+
let t41;
|
|
494
495
|
bb2: {
|
|
495
496
|
if (filteredOptions.length === 0) {
|
|
496
|
-
|
|
497
|
+
t41 = null;
|
|
497
498
|
break bb2;
|
|
498
499
|
}
|
|
499
|
-
let
|
|
500
|
-
if ($[
|
|
501
|
-
let
|
|
502
|
-
$[
|
|
500
|
+
let t422;
|
|
501
|
+
if ($[117] !== activeValue || $[118] !== currentOption || $[119] !== filteredOptions || $[120] !== handleOptionSelect || $[121] !== id || $[122] !== listFocused || $[123] !== loading || $[124] !== renderOption) {
|
|
502
|
+
let t433;
|
|
503
|
+
$[126] !== activeValue || $[127] !== currentOption || $[128] !== handleOptionSelect || $[129] !== id || $[130] !== listFocused || $[131] !== loading || $[132] !== renderOption ? (t433 = (option_0) => {
|
|
503
504
|
const active = activeValue !== null ? option_0.value === activeValue : currentOption === option_0;
|
|
504
505
|
return /* @__PURE__ */ jsx(AutocompleteOption, { id: `${id}-option-${option_0.value}`, onSelect: handleOptionSelect, selected: active, value: option_0.value, children: cloneElement(renderOption(option_0), {
|
|
505
506
|
disabled: loading,
|
|
506
507
|
selected: active,
|
|
507
508
|
tabIndex: listFocused && active ? 0 : -1
|
|
508
509
|
}) }, option_0.value);
|
|
509
|
-
}, $[
|
|
510
|
+
}, $[126] = activeValue, $[127] = currentOption, $[128] = handleOptionSelect, $[129] = id, $[130] = listFocused, $[131] = loading, $[132] = renderOption, $[133] = t433) : t433 = $[133], t422 = filteredOptions.map(t433), $[117] = activeValue, $[118] = currentOption, $[119] = filteredOptions, $[120] = handleOptionSelect, $[121] = id, $[122] = listFocused, $[123] = loading, $[124] = renderOption, $[125] = t422;
|
|
510
511
|
} else
|
|
511
|
-
|
|
512
|
-
let
|
|
513
|
-
$[
|
|
514
|
-
let
|
|
515
|
-
$[
|
|
512
|
+
t422 = $[125];
|
|
513
|
+
let t432;
|
|
514
|
+
$[134] !== listBoxId || $[135] !== t422 ? (t432 = /* @__PURE__ */ jsx(Stack, { as: "ul", "aria-multiselectable": !1, "data-ui": "AutoComplete__resultsList", id: listBoxId, ref: listBoxElementRef, role: "listbox", space: 1, children: t422 }), $[134] = listBoxId, $[135] = t422, $[136] = t432) : t432 = $[136];
|
|
515
|
+
let t442;
|
|
516
|
+
$[137] !== handleListBoxKeyDown || $[138] !== listBox || $[139] !== t432 ? (t442 = /* @__PURE__ */ jsx(ListBox, { "data-ui": "AutoComplete__results", onKeyDown: handleListBoxKeyDown, padding: 1, ...listBox, tabIndex: -1, children: t432 }), $[137] = handleListBoxKeyDown, $[138] = listBox, $[139] = t432, $[140] = t442) : t442 = $[140], t41 = t442;
|
|
516
517
|
}
|
|
517
|
-
const content2 =
|
|
518
|
-
let
|
|
518
|
+
const content2 = t41;
|
|
519
|
+
let t42;
|
|
519
520
|
bb3: {
|
|
520
521
|
if (renderPopover) {
|
|
521
|
-
const
|
|
522
|
-
let
|
|
523
|
-
$[
|
|
522
|
+
const t433 = !expanded;
|
|
523
|
+
let t442;
|
|
524
|
+
$[141] !== content2 || $[142] !== inputElement || $[143] !== renderPopover || $[144] !== t433 ? (t442 = /* @__PURE__ */ jsx(RenderPopover, { content: content2, hidden: t433, inputElement, onMouseEnter: handlePopoverMouseEnter, onMouseLeave: handlePopoverMouseLeave, resultsPopoverElementRef, renderPopover }), $[141] = content2, $[142] = inputElement, $[143] = renderPopover, $[144] = t433, $[145] = t442) : t442 = $[145], t42 = t442;
|
|
524
525
|
break bb3;
|
|
525
526
|
}
|
|
526
527
|
if (filteredOptionsLen === 0) {
|
|
527
|
-
|
|
528
|
+
t42 = null;
|
|
528
529
|
break bb3;
|
|
529
530
|
}
|
|
530
|
-
let
|
|
531
|
-
$[
|
|
531
|
+
let t432;
|
|
532
|
+
$[146] !== content2 || $[147] !== expanded || $[148] !== inputElement || $[149] !== popover || $[150] !== radius ? (t432 = /* @__PURE__ */ jsx(Popover, { arrow: !1, constrainSize: !0, content: content2, fallbackPlacements: AUTOCOMPLETE_POPOVER_FALLBACK_PLACEMENTS, matchReferenceWidth: !0, onMouseEnter: handlePopoverMouseEnter, onMouseLeave: handlePopoverMouseLeave, open: expanded, overflow: "auto", placement: AUTOCOMPLETE_POPOVER_PLACEMENT, portal: !0, radius, ref: resultsPopoverElementRef, referenceElement: inputElement, ...popover }), $[146] = content2, $[147] = expanded, $[148] = inputElement, $[149] = popover, $[150] = radius, $[151] = t432) : t432 = $[151], t42 = t432;
|
|
532
533
|
}
|
|
533
|
-
const results =
|
|
534
|
-
let
|
|
535
|
-
$[152] !== activeItemId || $[153] !== border || $[154] !== clearButton || $[155] !== customValidity || $[156] !== disabled || $[157] !== expanded || $[158] !== fontSize || $[159] !== handleClearButtonClick || $[160] !== handleInputChange || $[161] !== handleInputFocus || $[162] !== icon || $[163] !== id || $[164] !== inputValue || $[165] !== listBoxId || $[166] !== padding || $[167] !== prefix || $[168] !== radius || $[169] !== readOnly || $[170] !== restProps || $[171] !==
|
|
536
|
-
let
|
|
537
|
-
return $[174] !== handleRootBlur || $[175] !==
|
|
538
|
-
|
|
534
|
+
const results = t42, t43 = loading && AnimatedSpinnerIcon, t44 = suffix || openButtonNode;
|
|
535
|
+
let t45;
|
|
536
|
+
$[152] !== activeItemId || $[153] !== border || $[154] !== clearButton || $[155] !== customValidity || $[156] !== disabled || $[157] !== expanded || $[158] !== fontSize || $[159] !== handleClearButtonClick || $[160] !== handleInputChange || $[161] !== handleInputFocus || $[162] !== icon || $[163] !== id || $[164] !== inputValue || $[165] !== listBoxId || $[166] !== padding || $[167] !== prefix || $[168] !== radius || $[169] !== readOnly || $[170] !== restProps || $[171] !== t43 || $[172] !== t44 ? (t45 = /* @__PURE__ */ jsx(TextInput, { ...restProps, "aria-activedescendant": activeItemId, "aria-autocomplete": "list", "aria-expanded": expanded, "aria-owns": listBoxId, autoCapitalize: "off", autoComplete: "off", autoCorrect: "off", border, clearButton, customValidity, disabled, fontSize, icon, iconRight: t43, id, inputMode: "search", onChange: handleInputChange, onClear: handleClearButtonClick, onFocus: handleInputFocus, padding, prefix, radius, readOnly, ref: setInputElement, role: "combobox", spellCheck: !1, suffix: t44, value: inputValue }), $[152] = activeItemId, $[153] = border, $[154] = clearButton, $[155] = customValidity, $[156] = disabled, $[157] = expanded, $[158] = fontSize, $[159] = handleClearButtonClick, $[160] = handleInputChange, $[161] = handleInputFocus, $[162] = icon, $[163] = id, $[164] = inputValue, $[165] = listBoxId, $[166] = padding, $[167] = prefix, $[168] = radius, $[169] = readOnly, $[170] = restProps, $[171] = t43, $[172] = t44, $[173] = t45) : t45 = $[173];
|
|
537
|
+
let t46;
|
|
538
|
+
return $[174] !== handleRootBlur || $[175] !== handleRootKeyDown || $[176] !== results || $[177] !== t45 ? (t46 = /* @__PURE__ */ jsxs(StyledAutocomplete, { "data-ui": "Autocomplete", onBlur: handleRootBlur, onFocus: handleRootFocus, onKeyDown: handleRootKeyDown, ref: rootElementRef, children: [
|
|
539
|
+
t45,
|
|
539
540
|
results
|
|
540
|
-
] }), $[174] = handleRootBlur, $[175] =
|
|
541
|
+
] }), $[174] = handleRootBlur, $[175] = handleRootKeyDown, $[176] = results, $[177] = t45, $[178] = t46) : t46 = $[178], t46;
|
|
541
542
|
});
|
|
542
543
|
function RenderPopover({
|
|
543
544
|
renderPopover,
|
|
@@ -571,7 +572,7 @@ const StyledBreadcrumbs = styled.ol.withConfig({
|
|
|
571
572
|
displayName: "ExpandButton",
|
|
572
573
|
componentId: "sc-1es8h8q-1"
|
|
573
574
|
})`appearance:none;margin:-4px;`, Breadcrumbs = forwardRef(function(props, ref) {
|
|
574
|
-
const $ = c(
|
|
575
|
+
const $ = c(27);
|
|
575
576
|
let children, maxLength, restProps, separator, t0;
|
|
576
577
|
$[0] !== props ? ({
|
|
577
578
|
children,
|
|
@@ -580,23 +581,20 @@ const StyledBreadcrumbs = styled.ol.withConfig({
|
|
|
580
581
|
space: t0,
|
|
581
582
|
...restProps
|
|
582
583
|
} = props, $[0] = props, $[1] = children, $[2] = maxLength, $[3] = restProps, $[4] = separator, $[5] = t0) : (children = $[1], maxLength = $[2], restProps = $[3], separator = $[4], t0 = $[5]);
|
|
583
|
-
const
|
|
584
|
+
const space = useArrayProp(t0 === void 0 ? 2 : t0), [open, setOpen] = useState(!1), expandElementRef = useRef(null), popoverElementRef = useRef(null);
|
|
584
585
|
let t1;
|
|
585
|
-
$[6]
|
|
586
|
-
const
|
|
586
|
+
$[6] === Symbol.for("react.memo_cache_sentinel") ? (t1 = () => setOpen(!1), $[6] = t1) : t1 = $[6];
|
|
587
|
+
const collapse = t1;
|
|
587
588
|
let t2;
|
|
588
|
-
$[
|
|
589
|
-
const
|
|
589
|
+
$[7] === Symbol.for("react.memo_cache_sentinel") ? (t2 = () => setOpen(!0), $[7] = t2) : t2 = $[7];
|
|
590
|
+
const expand = t2;
|
|
590
591
|
let t3;
|
|
591
|
-
$[
|
|
592
|
-
const expand = t3;
|
|
592
|
+
$[8] === Symbol.for("react.memo_cache_sentinel") ? (t3 = () => [expandElementRef.current, popoverElementRef.current], $[8] = t3) : t3 = $[8], useClickOutsideEvent(collapse, t3);
|
|
593
593
|
let t4;
|
|
594
|
-
$[
|
|
594
|
+
$[9] !== children ? (t4 = Children.toArray(children).filter(isValidElement), $[9] = children, $[10] = t4) : t4 = $[10];
|
|
595
|
+
const rawItems = t4;
|
|
595
596
|
let t5;
|
|
596
|
-
$[11] !==
|
|
597
|
-
const rawItems = t5;
|
|
598
|
-
let t6;
|
|
599
|
-
$[13] !== maxLength || $[14] !== open || $[15] !== rawItems || $[16] !== space ? (t6 = {
|
|
597
|
+
$[11] !== maxLength || $[12] !== open || $[13] !== rawItems || $[14] !== space ? (t5 = {
|
|
600
598
|
collapse,
|
|
601
599
|
expand,
|
|
602
600
|
expandElementRef,
|
|
@@ -605,19 +603,19 @@ const StyledBreadcrumbs = styled.ol.withConfig({
|
|
|
605
603
|
popoverElementRef,
|
|
606
604
|
rawItems,
|
|
607
605
|
space
|
|
608
|
-
}, $[
|
|
609
|
-
const items = useItems(
|
|
610
|
-
let
|
|
611
|
-
if ($[
|
|
612
|
-
let
|
|
613
|
-
$[
|
|
606
|
+
}, $[11] = maxLength, $[12] = open, $[13] = rawItems, $[14] = space, $[15] = t5) : t5 = $[15];
|
|
607
|
+
const items = useItems(t5);
|
|
608
|
+
let t6;
|
|
609
|
+
if ($[16] !== items || $[17] !== separator || $[18] !== space) {
|
|
610
|
+
let t72;
|
|
611
|
+
$[20] !== separator || $[21] !== space ? (t72 = (item, itemIndex) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
614
612
|
itemIndex > 0 && /* @__PURE__ */ jsx(Box, { "aria-hidden": !0, as: "li", paddingX: space, children: separator || /* @__PURE__ */ jsx(Text, { muted: !0, children: "/" }) }),
|
|
615
613
|
/* @__PURE__ */ jsx(Box, { as: "li", children: item })
|
|
616
|
-
] }, itemIndex), $[
|
|
614
|
+
] }, itemIndex), $[20] = separator, $[21] = space, $[22] = t72) : t72 = $[22], t6 = items.map(t72), $[16] = items, $[17] = separator, $[18] = space, $[19] = t6;
|
|
617
615
|
} else
|
|
618
|
-
|
|
619
|
-
let
|
|
620
|
-
return $[
|
|
616
|
+
t6 = $[19];
|
|
617
|
+
let t7;
|
|
618
|
+
return $[23] !== ref || $[24] !== restProps || $[25] !== t6 ? (t7 = /* @__PURE__ */ jsx(StyledBreadcrumbs, { "data-ui": "Breadcrumbs", ...restProps, ref, children: t6 }), $[23] = ref, $[24] = restProps, $[25] = t6, $[26] = t7) : t7 = $[26], t7;
|
|
621
619
|
});
|
|
622
620
|
Breadcrumbs.displayName = "ForwardRef(Breadcrumbs)";
|
|
623
621
|
function useItems(t0) {
|
|
@@ -740,7 +738,7 @@ const StyledDialog = /* @__PURE__ */ styled(Layer).withConfig({
|
|
|
740
738
|
displayName: "DialogFooter",
|
|
741
739
|
componentId: "sc-4n4xb3-6"
|
|
742
740
|
})`position:relative;z-index:3;`, DialogCard = forwardRef(function(props, forwardedRef) {
|
|
743
|
-
const $ = c(
|
|
741
|
+
const $ = c(38), {
|
|
744
742
|
__unstable_autoFocus: autoFocus,
|
|
745
743
|
__unstable_hideCloseButton: hideCloseButton,
|
|
746
744
|
children,
|
|
@@ -755,63 +753,54 @@ const StyledDialog = /* @__PURE__ */ styled(Layer).withConfig({
|
|
|
755
753
|
scheme,
|
|
756
754
|
shadow: shadowProp,
|
|
757
755
|
width: widthProp
|
|
758
|
-
} = props, portal = usePortal(), portalElement = portalProp ? portal.elements?.[portalProp] || null : portal.element, boundaryElement = useBoundaryElement().element
|
|
759
|
-
let t0;
|
|
760
|
-
$[0] !== radiusProp ? (t0 = _getArrayProp(radiusProp), $[0] = radiusProp, $[1] = t0) : t0 = $[1];
|
|
761
|
-
const radius = t0;
|
|
762
|
-
let t1;
|
|
763
|
-
$[2] !== shadowProp ? (t1 = _getArrayProp(shadowProp), $[2] = shadowProp, $[3] = t1) : t1 = $[3];
|
|
764
|
-
const shadow = t1;
|
|
765
|
-
let t2;
|
|
766
|
-
$[4] !== widthProp ? (t2 = _getArrayProp(widthProp), $[4] = widthProp, $[5] = t2) : t2 = $[5];
|
|
767
|
-
const width = t2, ref = useRef(null), contentRef = useRef(null), layer = useLayer(), {
|
|
756
|
+
} = props, portal = usePortal(), portalElement = portalProp ? portal.elements?.[portalProp] || null : portal.element, boundaryElement = useBoundaryElement().element, radius = useArrayProp(radiusProp), shadow = useArrayProp(shadowProp), width = useArrayProp(widthProp), ref = useRef(null), contentRef = useRef(null), layer = useLayer(), {
|
|
768
757
|
isTopLayer
|
|
769
758
|
} = layer, labelId = `${id}_label`, showCloseButton = !!onClose && hideCloseButton === !1, showHeader = !!header || showCloseButton;
|
|
770
|
-
let
|
|
771
|
-
$[
|
|
772
|
-
let
|
|
773
|
-
$[
|
|
774
|
-
let
|
|
775
|
-
$[
|
|
759
|
+
let t0;
|
|
760
|
+
$[0] === Symbol.for("react.memo_cache_sentinel") ? (t0 = () => ref.current, $[0] = t0) : t0 = $[0], useImperativeHandle(forwardedRef, t0);
|
|
761
|
+
let t1;
|
|
762
|
+
$[1] === Symbol.for("react.memo_cache_sentinel") ? (t1 = () => contentRef.current, $[1] = t1) : t1 = $[1], useImperativeHandle(forwardedContentRef, t1);
|
|
763
|
+
let t2, t3;
|
|
764
|
+
$[2] !== autoFocus ? (t2 = () => {
|
|
776
765
|
autoFocus && ref.current && focusFirstDescendant(ref.current);
|
|
777
|
-
},
|
|
778
|
-
let
|
|
779
|
-
$[
|
|
766
|
+
}, t3 = [autoFocus, ref], $[2] = autoFocus, $[3] = t2, $[4] = t3) : (t2 = $[3], t3 = $[4]), useEffect(t2, t3);
|
|
767
|
+
let t4;
|
|
768
|
+
$[5] !== boundaryElement || $[6] !== isTopLayer || $[7] !== onClose || $[8] !== portalElement ? (t4 = (event) => {
|
|
780
769
|
if (!isTopLayer || !onClose)
|
|
781
770
|
return;
|
|
782
771
|
const target = document.activeElement;
|
|
783
772
|
target && !isTargetWithinScope(boundaryElement, portalElement, target) || event.key === "Escape" && (event.preventDefault(), event.stopPropagation(), onClose());
|
|
784
|
-
}, $[
|
|
785
|
-
let
|
|
786
|
-
$[
|
|
773
|
+
}, $[5] = boundaryElement, $[6] = isTopLayer, $[7] = onClose, $[8] = portalElement, $[9] = t4) : t4 = $[9], useGlobalKeyDown(t4);
|
|
774
|
+
let t5;
|
|
775
|
+
$[10] !== boundaryElement || $[11] !== isTopLayer || $[12] !== onClickOutside || $[13] !== portalElement ? (t5 = isTopLayer && onClickOutside && ((event_0) => {
|
|
787
776
|
const target_0 = event_0.target;
|
|
788
777
|
target_0 && !isTargetWithinScope(boundaryElement, portalElement, target_0) || onClickOutside();
|
|
789
|
-
}), $[
|
|
790
|
-
let
|
|
791
|
-
$[
|
|
792
|
-
let
|
|
793
|
-
$[
|
|
778
|
+
}), $[10] = boundaryElement, $[11] = isTopLayer, $[12] = onClickOutside, $[13] = portalElement, $[14] = t5) : t5 = $[14];
|
|
779
|
+
let t6;
|
|
780
|
+
$[15] === Symbol.for("react.memo_cache_sentinel") ? (t6 = () => [ref.current], $[15] = t6) : t6 = $[15], useClickOutsideEvent(t5, t6);
|
|
781
|
+
let t7;
|
|
782
|
+
$[16] !== header || $[17] !== labelId || $[18] !== onClose || $[19] !== showCloseButton || $[20] !== showHeader ? (t7 = showHeader && /* @__PURE__ */ jsx(DialogHeader, { children: /* @__PURE__ */ jsxs(Flex, { align: "flex-start", padding: 3, children: [
|
|
794
783
|
/* @__PURE__ */ jsx(Box, { flex: 1, padding: 2, children: header && /* @__PURE__ */ jsx(Text, { id: labelId, size: 1, weight: "semibold", children: header }) }),
|
|
795
784
|
showCloseButton && /* @__PURE__ */ jsx(Box, { flex: "none", children: /* @__PURE__ */ jsx(Button, { "aria-label": "Close dialog", disabled: !onClose, icon: CloseIcon, mode: "bleed", onClick: onClose, padding: 2 }) })
|
|
796
|
-
] }) }), $[
|
|
785
|
+
] }) }), $[16] = header, $[17] = labelId, $[18] = onClose, $[19] = showCloseButton, $[20] = showHeader, $[21] = t7) : t7 = $[21];
|
|
786
|
+
let t8;
|
|
787
|
+
$[22] !== children ? (t8 = /* @__PURE__ */ jsx(DialogContent, { flex: 1, ref: contentRef, tabIndex: -1, children }), $[22] = children, $[23] = t8) : t8 = $[23];
|
|
788
|
+
let t9;
|
|
789
|
+
$[24] !== footer ? (t9 = footer && /* @__PURE__ */ jsx(DialogFooter, { children: footer }), $[24] = footer, $[25] = t9) : t9 = $[25];
|
|
790
|
+
let t10;
|
|
791
|
+
$[26] !== t7 || $[27] !== t8 || $[28] !== t9 ? (t10 = /* @__PURE__ */ jsxs(DialogLayout, { direction: "column", children: [
|
|
792
|
+
t7,
|
|
793
|
+
t8,
|
|
794
|
+
t9
|
|
795
|
+
] }), $[26] = t7, $[27] = t8, $[28] = t9, $[29] = t10) : t10 = $[29];
|
|
797
796
|
let t11;
|
|
798
|
-
$[
|
|
797
|
+
$[30] !== radius || $[31] !== scheme || $[32] !== shadow || $[33] !== t10 ? (t11 = /* @__PURE__ */ jsx(DialogCardRoot, { radius, ref, scheme, shadow, children: t10 }), $[30] = radius, $[31] = scheme, $[32] = shadow, $[33] = t10, $[34] = t11) : t11 = $[34];
|
|
799
798
|
let t12;
|
|
800
|
-
$[
|
|
801
|
-
let t13;
|
|
802
|
-
$[32] !== t10 || $[33] !== t11 || $[34] !== t12 ? (t13 = /* @__PURE__ */ jsxs(DialogLayout, { direction: "column", children: [
|
|
803
|
-
t10,
|
|
804
|
-
t11,
|
|
805
|
-
t12
|
|
806
|
-
] }), $[32] = t10, $[33] = t11, $[34] = t12, $[35] = t13) : t13 = $[35];
|
|
807
|
-
let t14;
|
|
808
|
-
$[36] !== radius || $[37] !== scheme || $[38] !== shadow || $[39] !== t13 ? (t14 = /* @__PURE__ */ jsx(DialogCardRoot, { radius, ref, scheme, shadow, children: t13 }), $[36] = radius, $[37] = scheme, $[38] = shadow, $[39] = t13, $[40] = t14) : t14 = $[40];
|
|
809
|
-
let t15;
|
|
810
|
-
return $[41] !== t14 || $[42] !== width ? (t15 = /* @__PURE__ */ jsx(DialogContainer, { "data-ui": "DialogCard", width, children: t14 }), $[41] = t14, $[42] = width, $[43] = t15) : t15 = $[43], t15;
|
|
799
|
+
return $[35] !== t11 || $[36] !== width ? (t12 = /* @__PURE__ */ jsx(DialogContainer, { "data-ui": "DialogCard", width, children: t11 }), $[35] = t11, $[36] = width, $[37] = t12) : t12 = $[37], t12;
|
|
811
800
|
});
|
|
812
801
|
DialogCard.displayName = "ForwardRef(DialogCard)";
|
|
813
802
|
const Dialog = forwardRef(function(props, ref) {
|
|
814
|
-
const $ = c(
|
|
803
|
+
const $ = c(60), dialog = useDialog(), {
|
|
815
804
|
layer
|
|
816
805
|
} = useTheme_v2();
|
|
817
806
|
let _positionProp, _zOffsetProp, children, contentRef, footer, header, id, onActivate, onClickOutside, onClose, onFocus, portalProp, restProps, scheme, t0, t1, t2, t3, t4, t5, t6;
|
|
@@ -838,24 +827,9 @@ const Dialog = forwardRef(function(props, ref) {
|
|
|
838
827
|
animate: t6,
|
|
839
828
|
...restProps
|
|
840
829
|
} = props, $[0] = props, $[1] = _positionProp, $[2] = _zOffsetProp, $[3] = children, $[4] = contentRef, $[5] = footer, $[6] = header, $[7] = id, $[8] = onActivate, $[9] = onClickOutside, $[10] = onClose, $[11] = onFocus, $[12] = portalProp, $[13] = restProps, $[14] = scheme, $[15] = t0, $[16] = t1, $[17] = t2, $[18] = t3, $[19] = t4, $[20] = t5, $[21] = t6) : (_positionProp = $[1], _zOffsetProp = $[2], children = $[3], contentRef = $[4], footer = $[5], header = $[6], id = $[7], onActivate = $[8], onClickOutside = $[9], onClose = $[10], onFocus = $[11], portalProp = $[12], restProps = $[13], scheme = $[14], t0 = $[15], t1 = $[16], t2 = $[17], t3 = $[18], t4 = $[19], t5 = $[20], t6 = $[21]);
|
|
841
|
-
const autoFocus = t0 === void 0 ? !0 : t0, hideCloseButton = t1 === void 0 ? !1 : t1, cardRadiusProp = t2 === void 0 ? 4 : t2, cardShadow = t3 === void 0 ? 3 : t3, paddingProp = t4 === void 0 ? 3 : t4, widthProp = t5 === void 0 ? 0 : t5, _animate = t6 === void 0 ? !1 : t6, positionProp = _positionProp ?? (dialog.position || "fixed"), zOffsetProp = _zOffsetProp ?? (dialog.zOffset || layer.dialog.zOffset), animate = usePrefersReducedMotion() ? !1 : _animate, portal = usePortal(), portalElement = portalProp ? portal.elements?.[portalProp] || null : portal.element, boundaryElement = useBoundaryElement().element;
|
|
830
|
+
const autoFocus = t0 === void 0 ? !0 : t0, hideCloseButton = t1 === void 0 ? !1 : t1, cardRadiusProp = t2 === void 0 ? 4 : t2, cardShadow = t3 === void 0 ? 3 : t3, paddingProp = t4 === void 0 ? 3 : t4, widthProp = t5 === void 0 ? 0 : t5, _animate = t6 === void 0 ? !1 : t6, positionProp = _positionProp ?? (dialog.position || "fixed"), zOffsetProp = _zOffsetProp ?? (dialog.zOffset || layer.dialog.zOffset), animate = usePrefersReducedMotion() ? !1 : _animate, portal = usePortal(), portalElement = portalProp ? portal.elements?.[portalProp] || null : portal.element, boundaryElement = useBoundaryElement().element, cardRadius = useArrayProp(cardRadiusProp), padding = useArrayProp(paddingProp), position = useArrayProp(positionProp), width = useArrayProp(widthProp), zOffset = useArrayProp(zOffsetProp), preDivRef = useRef(null), postDivRef = useRef(null), cardRef = useRef(null), focusedElementRef = useRef(null);
|
|
842
831
|
let t7;
|
|
843
|
-
$[22] !==
|
|
844
|
-
const cardRadius = t7;
|
|
845
|
-
let t8;
|
|
846
|
-
$[24] !== paddingProp ? (t8 = _getArrayProp(paddingProp), $[24] = paddingProp, $[25] = t8) : t8 = $[25];
|
|
847
|
-
const padding = t8;
|
|
848
|
-
let t9;
|
|
849
|
-
$[26] !== positionProp ? (t9 = _getArrayProp(positionProp), $[26] = positionProp, $[27] = t9) : t9 = $[27];
|
|
850
|
-
const position = t9;
|
|
851
|
-
let t10;
|
|
852
|
-
$[28] !== widthProp ? (t10 = _getArrayProp(widthProp), $[28] = widthProp, $[29] = t10) : t10 = $[29];
|
|
853
|
-
const width = t10;
|
|
854
|
-
let t11;
|
|
855
|
-
$[30] !== zOffsetProp ? (t11 = _getArrayProp(zOffsetProp), $[30] = zOffsetProp, $[31] = t11) : t11 = $[31];
|
|
856
|
-
const zOffset = t11, preDivRef = useRef(null), postDivRef = useRef(null), cardRef = useRef(null), focusedElementRef = useRef(null);
|
|
857
|
-
let t12;
|
|
858
|
-
$[32] !== onFocus ? (t12 = (event) => {
|
|
832
|
+
$[22] !== onFocus ? (t7 = (event) => {
|
|
859
833
|
onFocus?.(event);
|
|
860
834
|
const target = event.target, cardElement = cardRef.current;
|
|
861
835
|
if (cardElement && target === preDivRef.current) {
|
|
@@ -867,10 +841,10 @@ const Dialog = forwardRef(function(props, ref) {
|
|
|
867
841
|
return;
|
|
868
842
|
}
|
|
869
843
|
isHTMLElement(event.target) && (focusedElementRef.current = event.target);
|
|
870
|
-
}, $[
|
|
871
|
-
const handleFocus =
|
|
872
|
-
let
|
|
873
|
-
$[
|
|
844
|
+
}, $[22] = onFocus, $[23] = t7) : t7 = $[23];
|
|
845
|
+
const handleFocus = t7, labelId = `${id}_label`, rootClickTimeoutRef = useRef(void 0);
|
|
846
|
+
let t8;
|
|
847
|
+
$[24] !== boundaryElement || $[25] !== portalElement ? (t8 = () => {
|
|
874
848
|
rootClickTimeoutRef.current && clearTimeout(rootClickTimeoutRef.current), rootClickTimeoutRef.current = setTimeout(() => {
|
|
875
849
|
const activeElement = document.activeElement;
|
|
876
850
|
if (activeElement && !isTargetWithinScope(boundaryElement, portalElement, activeElement)) {
|
|
@@ -883,22 +857,22 @@ const Dialog = forwardRef(function(props, ref) {
|
|
|
883
857
|
target_0.focus();
|
|
884
858
|
}
|
|
885
859
|
}, 0);
|
|
886
|
-
}, $[
|
|
887
|
-
const handleRootClick =
|
|
888
|
-
let
|
|
889
|
-
$[
|
|
890
|
-
let
|
|
891
|
-
$[
|
|
892
|
-
let
|
|
893
|
-
$[
|
|
894
|
-
let
|
|
895
|
-
$[
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
] }), $[
|
|
900
|
-
let
|
|
901
|
-
return $[
|
|
860
|
+
}, $[24] = boundaryElement, $[25] = portalElement, $[26] = t8) : t8 = $[26];
|
|
861
|
+
const handleRootClick = t8;
|
|
862
|
+
let t9;
|
|
863
|
+
$[27] === Symbol.for("react.memo_cache_sentinel") ? (t9 = /* @__PURE__ */ jsx("div", { ref: preDivRef, tabIndex: 0 }), $[27] = t9) : t9 = $[27];
|
|
864
|
+
let t10;
|
|
865
|
+
$[28] !== autoFocus || $[29] !== cardRadius || $[30] !== cardShadow || $[31] !== children || $[32] !== contentRef || $[33] !== footer || $[34] !== header || $[35] !== hideCloseButton || $[36] !== id || $[37] !== onClickOutside || $[38] !== onClose || $[39] !== portalProp || $[40] !== scheme || $[41] !== width ? (t10 = /* @__PURE__ */ jsx(DialogCard, { __unstable_autoFocus: autoFocus, __unstable_hideCloseButton: hideCloseButton, contentRef, footer, header, id, onClickOutside, onClose, portal: portalProp, radius: cardRadius, ref: cardRef, scheme, shadow: cardShadow, width, children }), $[28] = autoFocus, $[29] = cardRadius, $[30] = cardShadow, $[31] = children, $[32] = contentRef, $[33] = footer, $[34] = header, $[35] = hideCloseButton, $[36] = id, $[37] = onClickOutside, $[38] = onClose, $[39] = portalProp, $[40] = scheme, $[41] = width, $[42] = t10) : t10 = $[42];
|
|
866
|
+
let t11;
|
|
867
|
+
$[43] === Symbol.for("react.memo_cache_sentinel") ? (t11 = /* @__PURE__ */ jsx("div", { ref: postDivRef, tabIndex: 0 }), $[43] = t11) : t11 = $[43];
|
|
868
|
+
let t12;
|
|
869
|
+
$[44] !== animate || $[45] !== handleFocus || $[46] !== handleRootClick || $[47] !== id || $[48] !== labelId || $[49] !== onActivate || $[50] !== padding || $[51] !== position || $[52] !== ref || $[53] !== restProps || $[54] !== t10 || $[55] !== zOffset ? (t12 = /* @__PURE__ */ jsxs(StyledDialog, { ...restProps, $animate: animate, $padding: padding, $position: position, "aria-labelledby": labelId, "aria-modal": !0, "data-ui": "Dialog", id, onActivate, onClick: handleRootClick, onFocus: handleFocus, ref, role: "dialog", zOffset, children: [
|
|
870
|
+
t9,
|
|
871
|
+
t10,
|
|
872
|
+
t11
|
|
873
|
+
] }), $[44] = animate, $[45] = handleFocus, $[46] = handleRootClick, $[47] = id, $[48] = labelId, $[49] = onActivate, $[50] = padding, $[51] = position, $[52] = ref, $[53] = restProps, $[54] = t10, $[55] = zOffset, $[56] = t12) : t12 = $[56];
|
|
874
|
+
let t13;
|
|
875
|
+
return $[57] !== portalProp || $[58] !== t12 ? (t13 = /* @__PURE__ */ jsx(Portal, { __unstable_name: portalProp, children: t12 }), $[57] = portalProp, $[58] = t12, $[59] = t13) : t13 = $[59], t13;
|
|
902
876
|
});
|
|
903
877
|
Dialog.displayName = "ForwardRef(Dialog)";
|
|
904
878
|
function DialogProvider(props) {
|
|
@@ -1100,7 +1074,7 @@ const keyframe = keyframes`
|
|
|
1100
1074
|
displayName: "StyledSkeleton",
|
|
1101
1075
|
componentId: "sc-ebtpni-0"
|
|
1102
1076
|
})(responsiveRadiusStyle, skeletonStyle), Skeleton = forwardRef(function(props, ref) {
|
|
1103
|
-
const $ = c(
|
|
1077
|
+
const $ = c(14);
|
|
1104
1078
|
let delay, radius, restProps, t0;
|
|
1105
1079
|
$[0] !== props ? ({
|
|
1106
1080
|
animated: t0,
|
|
@@ -1112,7 +1086,7 @@ const keyframe = keyframes`
|
|
|
1112
1086
|
let t1, t2;
|
|
1113
1087
|
$[5] !== delay ? (t1 = () => {
|
|
1114
1088
|
if (!delay)
|
|
1115
|
-
return
|
|
1089
|
+
return;
|
|
1116
1090
|
const timeout = setTimeout(() => {
|
|
1117
1091
|
setVisible(!0);
|
|
1118
1092
|
}, delay);
|
|
@@ -1120,10 +1094,9 @@ const keyframe = keyframes`
|
|
|
1120
1094
|
clearTimeout(timeout);
|
|
1121
1095
|
};
|
|
1122
1096
|
}, t2 = [delay], $[5] = delay, $[6] = t1, $[7] = t2) : (t1 = $[6], t2 = $[7]), useEffect(t1, t2);
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
return $[10] !== animated || $[11] !== ref || $[12] !== restProps || $[13] !== t3 || $[14] !== visible ? (t4 = /* @__PURE__ */ jsx(StyledSkeleton$1, { ...restProps, $animated: animated, $radius: t3, $visible: visible, ref }), $[10] = animated, $[11] = ref, $[12] = restProps, $[13] = t3, $[14] = visible, $[15] = t4) : t4 = $[15], t4;
|
|
1097
|
+
const t3 = useArrayProp(radius), t4 = delay ? visible : !0;
|
|
1098
|
+
let t5;
|
|
1099
|
+
return $[8] !== animated || $[9] !== ref || $[10] !== restProps || $[11] !== t3 || $[12] !== t4 ? (t5 = /* @__PURE__ */ jsx(StyledSkeleton$1, { ...restProps, $animated: animated, $radius: t3, $visible: t4, ref }), $[8] = animated, $[9] = ref, $[10] = restProps, $[11] = t3, $[12] = t4, $[13] = t5) : t5 = $[13], t5;
|
|
1127
1100
|
});
|
|
1128
1101
|
Skeleton.displayName = "ForwardRef(Skeleton)";
|
|
1129
1102
|
const StyledSkeleton = /* @__PURE__ */ styled(Skeleton).withConfig({
|
|
@@ -1144,63 +1117,51 @@ const StyledSkeleton = /* @__PURE__ */ styled(Skeleton).withConfig({
|
|
|
1144
1117
|
};
|
|
1145
1118
|
});
|
|
1146
1119
|
}), TextSkeleton = forwardRef(function(props, ref) {
|
|
1147
|
-
const $ = c(
|
|
1120
|
+
const $ = c(7);
|
|
1148
1121
|
let restProps, t0;
|
|
1149
1122
|
$[0] !== props ? ({
|
|
1150
1123
|
size: t0,
|
|
1151
1124
|
...restProps
|
|
1152
1125
|
} = props, $[0] = props, $[1] = restProps, $[2] = t0) : (restProps = $[1], t0 = $[2]);
|
|
1153
|
-
const size = t0 === void 0 ? 2 : t0;
|
|
1126
|
+
const $size = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
1154
1127
|
let t1;
|
|
1155
|
-
$[3] !== size ? (t1 =
|
|
1156
|
-
const $size = t1;
|
|
1157
|
-
let t2;
|
|
1158
|
-
return $[5] !== $size || $[6] !== ref || $[7] !== restProps ? (t2 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "text" }), $[5] = $size, $[6] = ref, $[7] = restProps, $[8] = t2) : t2 = $[8], t2;
|
|
1128
|
+
return $[3] !== $size || $[4] !== ref || $[5] !== restProps ? (t1 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "text" }), $[3] = $size, $[4] = ref, $[5] = restProps, $[6] = t1) : t1 = $[6], t1;
|
|
1159
1129
|
});
|
|
1160
1130
|
TextSkeleton.displayName = "ForwardRef(TextSkeleton)";
|
|
1161
1131
|
const LabelSkeleton = forwardRef(function(props, ref) {
|
|
1162
|
-
const $ = c(
|
|
1132
|
+
const $ = c(7);
|
|
1163
1133
|
let restProps, t0;
|
|
1164
1134
|
$[0] !== props ? ({
|
|
1165
1135
|
size: t0,
|
|
1166
1136
|
...restProps
|
|
1167
1137
|
} = props, $[0] = props, $[1] = restProps, $[2] = t0) : (restProps = $[1], t0 = $[2]);
|
|
1168
|
-
const size = t0 === void 0 ? 2 : t0;
|
|
1138
|
+
const $size = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
1169
1139
|
let t1;
|
|
1170
|
-
$[3] !== size ? (t1 =
|
|
1171
|
-
const $size = t1;
|
|
1172
|
-
let t2;
|
|
1173
|
-
return $[5] !== $size || $[6] !== ref || $[7] !== restProps ? (t2 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "label" }), $[5] = $size, $[6] = ref, $[7] = restProps, $[8] = t2) : t2 = $[8], t2;
|
|
1140
|
+
return $[3] !== $size || $[4] !== ref || $[5] !== restProps ? (t1 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "label" }), $[3] = $size, $[4] = ref, $[5] = restProps, $[6] = t1) : t1 = $[6], t1;
|
|
1174
1141
|
});
|
|
1175
1142
|
LabelSkeleton.displayName = "ForwardRef(LabelSkeleton)";
|
|
1176
1143
|
const HeadingSkeleton = forwardRef(function(props, ref) {
|
|
1177
|
-
const $ = c(
|
|
1144
|
+
const $ = c(7);
|
|
1178
1145
|
let restProps, t0;
|
|
1179
1146
|
$[0] !== props ? ({
|
|
1180
1147
|
size: t0,
|
|
1181
1148
|
...restProps
|
|
1182
1149
|
} = props, $[0] = props, $[1] = restProps, $[2] = t0) : (restProps = $[1], t0 = $[2]);
|
|
1183
|
-
const size = t0 === void 0 ? 2 : t0;
|
|
1150
|
+
const $size = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
1184
1151
|
let t1;
|
|
1185
|
-
$[3] !== size ? (t1 =
|
|
1186
|
-
const $size = t1;
|
|
1187
|
-
let t2;
|
|
1188
|
-
return $[5] !== $size || $[6] !== ref || $[7] !== restProps ? (t2 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "heading" }), $[5] = $size, $[6] = ref, $[7] = restProps, $[8] = t2) : t2 = $[8], t2;
|
|
1152
|
+
return $[3] !== $size || $[4] !== ref || $[5] !== restProps ? (t1 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "heading" }), $[3] = $size, $[4] = ref, $[5] = restProps, $[6] = t1) : t1 = $[6], t1;
|
|
1189
1153
|
});
|
|
1190
1154
|
HeadingSkeleton.displayName = "ForwardRef(HeadingSkeleton)";
|
|
1191
1155
|
const CodeSkeleton = forwardRef(function(props, ref) {
|
|
1192
|
-
const $ = c(
|
|
1156
|
+
const $ = c(7);
|
|
1193
1157
|
let restProps, t0;
|
|
1194
1158
|
$[0] !== props ? ({
|
|
1195
1159
|
size: t0,
|
|
1196
1160
|
...restProps
|
|
1197
1161
|
} = props, $[0] = props, $[1] = restProps, $[2] = t0) : (restProps = $[1], t0 = $[2]);
|
|
1198
|
-
const size = t0 === void 0 ? 2 : t0;
|
|
1162
|
+
const $size = useArrayProp(t0 === void 0 ? 2 : t0);
|
|
1199
1163
|
let t1;
|
|
1200
|
-
$[3] !== size ? (t1 =
|
|
1201
|
-
const $size = t1;
|
|
1202
|
-
let t2;
|
|
1203
|
-
return $[5] !== $size || $[6] !== ref || $[7] !== restProps ? (t2 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "code" }), $[5] = $size, $[6] = ref, $[7] = restProps, $[8] = t2) : t2 = $[8], t2;
|
|
1164
|
+
return $[3] !== $size || $[4] !== ref || $[5] !== restProps ? (t1 = /* @__PURE__ */ jsx(StyledSkeleton, { ...restProps, $size, ref, $style: "code" }), $[3] = $size, $[4] = ref, $[5] = restProps, $[6] = t1) : t1 = $[6], t1;
|
|
1204
1165
|
});
|
|
1205
1166
|
CodeSkeleton.displayName = "ForwardRef(CodeSkeleton)";
|
|
1206
1167
|
const TabPanel = forwardRef(function(props, ref) {
|