@embedreach/components 0.1.33 → 0.1.35
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/index.js +130 -69
- package/dist/index.umd.js +130 -69
- package/dist/styles.css +3 -1
- package/package.json +1 -1
package/dist/chunks/index.js
CHANGED
|
@@ -12409,7 +12409,7 @@ function createCollection(name) {
|
|
|
12409
12409
|
createCollectionScope2
|
|
12410
12410
|
];
|
|
12411
12411
|
}
|
|
12412
|
-
var NODES$
|
|
12412
|
+
var NODES$3 = [
|
|
12413
12413
|
"a",
|
|
12414
12414
|
"button",
|
|
12415
12415
|
"div",
|
|
@@ -12427,7 +12427,7 @@ var NODES$2 = [
|
|
|
12427
12427
|
"svg",
|
|
12428
12428
|
"ul"
|
|
12429
12429
|
];
|
|
12430
|
-
var Primitive$
|
|
12430
|
+
var Primitive$3 = NODES$3.reduce((primitive, node) => {
|
|
12431
12431
|
const Node2 = React.forwardRef((props, forwardedRef) => {
|
|
12432
12432
|
const { asChild, ...primitiveProps } = props;
|
|
12433
12433
|
const Comp = asChild ? Slot$3 : node;
|
|
@@ -12549,7 +12549,7 @@ var DismissableLayer$3 = React.forwardRef(
|
|
|
12549
12549
|
return () => document.removeEventListener(CONTEXT_UPDATE$3, handleUpdate);
|
|
12550
12550
|
}, []);
|
|
12551
12551
|
return /* @__PURE__ */ jsx(
|
|
12552
|
-
Primitive$
|
|
12552
|
+
Primitive$3.div,
|
|
12553
12553
|
{
|
|
12554
12554
|
...layerProps,
|
|
12555
12555
|
ref: composedRefs,
|
|
@@ -12582,7 +12582,7 @@ var DismissableLayerBranch$3 = React.forwardRef((props, forwardedRef) => {
|
|
|
12582
12582
|
};
|
|
12583
12583
|
}
|
|
12584
12584
|
}, [context.branches]);
|
|
12585
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
12585
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
12586
12586
|
});
|
|
12587
12587
|
DismissableLayerBranch$3.displayName = BRANCH_NAME$3;
|
|
12588
12588
|
function usePointerDownOutside$3(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -12672,7 +12672,7 @@ var Portal$6 = React.forwardRef((props, forwardedRef) => {
|
|
|
12672
12672
|
const [mounted, setMounted] = React.useState(false);
|
|
12673
12673
|
useLayoutEffect2(() => setMounted(true), []);
|
|
12674
12674
|
const container2 = containerProp || mounted && globalThis?.document?.body;
|
|
12675
|
-
return container2 ? ReactDOM__default.createPortal(/* @__PURE__ */ jsx(Primitive$
|
|
12675
|
+
return container2 ? ReactDOM__default.createPortal(/* @__PURE__ */ jsx(Primitive$3.div, { ...portalProps, ref: forwardedRef }), container2) : null;
|
|
12676
12676
|
});
|
|
12677
12677
|
Portal$6.displayName = PORTAL_NAME$7;
|
|
12678
12678
|
function useStateMachine(initialState, machine) {
|
|
@@ -12837,11 +12837,11 @@ function useUncontrolledState({
|
|
|
12837
12837
|
}, [value, prevValueRef, handleChange]);
|
|
12838
12838
|
return uncontrolledState;
|
|
12839
12839
|
}
|
|
12840
|
-
var NAME$
|
|
12841
|
-
var VisuallyHidden = React.forwardRef(
|
|
12840
|
+
var NAME$4 = "VisuallyHidden";
|
|
12841
|
+
var VisuallyHidden$1 = React.forwardRef(
|
|
12842
12842
|
(props, forwardedRef) => {
|
|
12843
12843
|
return /* @__PURE__ */ jsx(
|
|
12844
|
-
Primitive$
|
|
12844
|
+
Primitive$3.span,
|
|
12845
12845
|
{
|
|
12846
12846
|
...props,
|
|
12847
12847
|
ref: forwardedRef,
|
|
@@ -12863,8 +12863,8 @@ var VisuallyHidden = React.forwardRef(
|
|
|
12863
12863
|
);
|
|
12864
12864
|
}
|
|
12865
12865
|
);
|
|
12866
|
-
VisuallyHidden.displayName = NAME$
|
|
12867
|
-
var Root$6 = VisuallyHidden;
|
|
12866
|
+
VisuallyHidden$1.displayName = NAME$4;
|
|
12867
|
+
var Root$6 = VisuallyHidden$1;
|
|
12868
12868
|
var PROVIDER_NAME$1 = "ToastProvider";
|
|
12869
12869
|
var [Collection$3, useCollection$3, createCollectionScope$3] = createCollection("Toast");
|
|
12870
12870
|
var [createToastContext, createToastScope] = createContextScope("Toast", [createCollectionScope$3]);
|
|
@@ -13039,7 +13039,7 @@ var ToastViewport$1 = React.forwardRef(
|
|
|
13039
13039
|
}
|
|
13040
13040
|
}
|
|
13041
13041
|
),
|
|
13042
|
-
/* @__PURE__ */ jsx(Collection$3.Slot, { scope: __scopeToast, children: /* @__PURE__ */ jsx(Primitive$
|
|
13042
|
+
/* @__PURE__ */ jsx(Collection$3.Slot, { scope: __scopeToast, children: /* @__PURE__ */ jsx(Primitive$3.ol, { tabIndex: -1, ...viewportProps, ref: composedRefs }) }),
|
|
13043
13043
|
hasToasts && /* @__PURE__ */ jsx(
|
|
13044
13044
|
FocusProxy,
|
|
13045
13045
|
{
|
|
@@ -13064,7 +13064,7 @@ var FocusProxy = React.forwardRef(
|
|
|
13064
13064
|
const { __scopeToast, onFocusFromOutsideViewport, ...proxyProps } = props;
|
|
13065
13065
|
const context = useToastProviderContext(FOCUS_PROXY_NAME, __scopeToast);
|
|
13066
13066
|
return /* @__PURE__ */ jsx(
|
|
13067
|
-
VisuallyHidden,
|
|
13067
|
+
VisuallyHidden$1,
|
|
13068
13068
|
{
|
|
13069
13069
|
"aria-hidden": true,
|
|
13070
13070
|
tabIndex: 0,
|
|
@@ -13231,7 +13231,7 @@ var ToastImpl = React.forwardRef(
|
|
|
13231
13231
|
context.isFocusedToastEscapeKeyDownRef.current = false;
|
|
13232
13232
|
}),
|
|
13233
13233
|
children: /* @__PURE__ */ jsx(
|
|
13234
|
-
Primitive$
|
|
13234
|
+
Primitive$3.li,
|
|
13235
13235
|
{
|
|
13236
13236
|
role: "status",
|
|
13237
13237
|
"aria-live": "off",
|
|
@@ -13330,7 +13330,7 @@ var ToastAnnounce = (props) => {
|
|
|
13330
13330
|
const timer = window.setTimeout(() => setIsAnnounced(true), 1e3);
|
|
13331
13331
|
return () => window.clearTimeout(timer);
|
|
13332
13332
|
}, []);
|
|
13333
|
-
return isAnnounced ? null : /* @__PURE__ */ jsx(Portal$6, { asChild: true, children: /* @__PURE__ */ jsx(VisuallyHidden, { ...announceProps, children: renderAnnounceText && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
13333
|
+
return isAnnounced ? null : /* @__PURE__ */ jsx(Portal$6, { asChild: true, children: /* @__PURE__ */ jsx(VisuallyHidden$1, { ...announceProps, children: renderAnnounceText && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
13334
13334
|
context.label,
|
|
13335
13335
|
" ",
|
|
13336
13336
|
children2
|
|
@@ -13340,7 +13340,7 @@ var TITLE_NAME$1 = "ToastTitle";
|
|
|
13340
13340
|
var ToastTitle$1 = React.forwardRef(
|
|
13341
13341
|
(props, forwardedRef) => {
|
|
13342
13342
|
const { __scopeToast, ...titleProps } = props;
|
|
13343
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
13343
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...titleProps, ref: forwardedRef });
|
|
13344
13344
|
}
|
|
13345
13345
|
);
|
|
13346
13346
|
ToastTitle$1.displayName = TITLE_NAME$1;
|
|
@@ -13348,7 +13348,7 @@ var DESCRIPTION_NAME$1 = "ToastDescription";
|
|
|
13348
13348
|
var ToastDescription$1 = React.forwardRef(
|
|
13349
13349
|
(props, forwardedRef) => {
|
|
13350
13350
|
const { __scopeToast, ...descriptionProps } = props;
|
|
13351
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
13351
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...descriptionProps, ref: forwardedRef });
|
|
13352
13352
|
}
|
|
13353
13353
|
);
|
|
13354
13354
|
ToastDescription$1.displayName = DESCRIPTION_NAME$1;
|
|
@@ -13372,7 +13372,7 @@ var ToastClose$1 = React.forwardRef(
|
|
|
13372
13372
|
const { __scopeToast, ...closeProps } = props;
|
|
13373
13373
|
const interactiveContext = useToastInteractiveContext(CLOSE_NAME$2, __scopeToast);
|
|
13374
13374
|
return /* @__PURE__ */ jsx(ToastAnnounceExclude, { asChild: true, children: /* @__PURE__ */ jsx(
|
|
13375
|
-
Primitive$
|
|
13375
|
+
Primitive$3.button,
|
|
13376
13376
|
{
|
|
13377
13377
|
type: "button",
|
|
13378
13378
|
...closeProps,
|
|
@@ -13386,7 +13386,7 @@ ToastClose$1.displayName = CLOSE_NAME$2;
|
|
|
13386
13386
|
var ToastAnnounceExclude = React.forwardRef((props, forwardedRef) => {
|
|
13387
13387
|
const { __scopeToast, altText, ...announceExcludeProps } = props;
|
|
13388
13388
|
return /* @__PURE__ */ jsx(
|
|
13389
|
-
Primitive$
|
|
13389
|
+
Primitive$3.div,
|
|
13390
13390
|
{
|
|
13391
13391
|
"data-radix-toast-announce-exclude": "",
|
|
13392
13392
|
"data-radix-toast-announce-alt": altText || void 0,
|
|
@@ -24259,7 +24259,7 @@ const buttonVariants = cva([styles$6.base], {
|
|
|
24259
24259
|
}
|
|
24260
24260
|
});
|
|
24261
24261
|
const Button$1 = React.forwardRef(
|
|
24262
|
-
({ className: className2, variant, size: size2, asChild = false, ...props }, ref) => {
|
|
24262
|
+
({ className: className2, variant, size: size2 = "default", asChild = false, ...props }, ref) => {
|
|
24263
24263
|
const Comp = asChild ? Slot$2 : "button";
|
|
24264
24264
|
return /* @__PURE__ */ jsx(
|
|
24265
24265
|
Comp,
|
|
@@ -26861,7 +26861,7 @@ function getElementRef$1(element) {
|
|
|
26861
26861
|
}
|
|
26862
26862
|
return element.props.ref || element.ref;
|
|
26863
26863
|
}
|
|
26864
|
-
var NODES$
|
|
26864
|
+
var NODES$2 = [
|
|
26865
26865
|
"a",
|
|
26866
26866
|
"button",
|
|
26867
26867
|
"div",
|
|
@@ -26879,7 +26879,7 @@ var NODES$1 = [
|
|
|
26879
26879
|
"svg",
|
|
26880
26880
|
"ul"
|
|
26881
26881
|
];
|
|
26882
|
-
var Primitive$
|
|
26882
|
+
var Primitive$2 = NODES$2.reduce((primitive, node) => {
|
|
26883
26883
|
const Node2 = React.forwardRef((props, forwardedRef) => {
|
|
26884
26884
|
const { asChild, ...primitiveProps } = props;
|
|
26885
26885
|
const Comp = asChild ? Slot$1 : node;
|
|
@@ -26982,7 +26982,7 @@ var DismissableLayer$2 = React.forwardRef(
|
|
|
26982
26982
|
return () => document.removeEventListener(CONTEXT_UPDATE$2, handleUpdate);
|
|
26983
26983
|
}, []);
|
|
26984
26984
|
return /* @__PURE__ */ jsx(
|
|
26985
|
-
Primitive$
|
|
26985
|
+
Primitive$2.div,
|
|
26986
26986
|
{
|
|
26987
26987
|
...layerProps,
|
|
26988
26988
|
ref: composedRefs,
|
|
@@ -27015,7 +27015,7 @@ var DismissableLayerBranch$2 = React.forwardRef((props, forwardedRef) => {
|
|
|
27015
27015
|
};
|
|
27016
27016
|
}
|
|
27017
27017
|
}, [context.branches]);
|
|
27018
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
27018
|
+
return /* @__PURE__ */ jsx(Primitive$2.div, { ...props, ref: composedRefs });
|
|
27019
27019
|
});
|
|
27020
27020
|
DismissableLayerBranch$2.displayName = BRANCH_NAME$2;
|
|
27021
27021
|
function usePointerDownOutside$2(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -27212,7 +27212,7 @@ var FocusScope$1 = React.forwardRef((props, forwardedRef) => {
|
|
|
27212
27212
|
},
|
|
27213
27213
|
[loop, trapped, focusScope.paused]
|
|
27214
27214
|
);
|
|
27215
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
27215
|
+
return /* @__PURE__ */ jsx(Primitive$2.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
|
|
27216
27216
|
});
|
|
27217
27217
|
FocusScope$1.displayName = FOCUS_SCOPE_NAME$1;
|
|
27218
27218
|
function focusFirst$3(candidates, { select = false } = {}) {
|
|
@@ -27300,7 +27300,7 @@ var Portal$5 = React.forwardRef((props, forwardedRef) => {
|
|
|
27300
27300
|
const [mounted, setMounted] = React.useState(false);
|
|
27301
27301
|
useLayoutEffect2(() => setMounted(true), []);
|
|
27302
27302
|
const container2 = containerProp || mounted && globalThis?.document?.body;
|
|
27303
|
-
return container2 ? ReactDOM__default.createPortal(/* @__PURE__ */ jsx(Primitive$
|
|
27303
|
+
return container2 ? ReactDOM__default.createPortal(/* @__PURE__ */ jsx(Primitive$2.div, { ...portalProps, ref: forwardedRef }), container2) : null;
|
|
27304
27304
|
});
|
|
27305
27305
|
Portal$5.displayName = PORTAL_NAME$6;
|
|
27306
27306
|
var count = 0;
|
|
@@ -28145,7 +28145,7 @@ var DialogTrigger = React.forwardRef(
|
|
|
28145
28145
|
const context = useDialogContext(TRIGGER_NAME$5, __scopeDialog);
|
|
28146
28146
|
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
|
|
28147
28147
|
return /* @__PURE__ */ jsx(
|
|
28148
|
-
Primitive$
|
|
28148
|
+
Primitive$2.button,
|
|
28149
28149
|
{
|
|
28150
28150
|
type: "button",
|
|
28151
28151
|
"aria-haspopup": "dialog",
|
|
@@ -28188,7 +28188,7 @@ var DialogOverlayImpl = React.forwardRef(
|
|
|
28188
28188
|
// Make sure `Content` is scrollable even when it doesn't live inside `RemoveScroll`
|
|
28189
28189
|
// ie. when `Overlay` and `Content` are siblings
|
|
28190
28190
|
/* @__PURE__ */ jsx(ReactRemoveScroll$1, { as: Slot$1, allowPinchZoom: true, shards: [context.contentRef], children: /* @__PURE__ */ jsx(
|
|
28191
|
-
Primitive$
|
|
28191
|
+
Primitive$2.div,
|
|
28192
28192
|
{
|
|
28193
28193
|
"data-state": getState$1(context.open),
|
|
28194
28194
|
...overlayProps,
|
|
@@ -28326,7 +28326,7 @@ var DialogTitle$1 = React.forwardRef(
|
|
|
28326
28326
|
(props, forwardedRef) => {
|
|
28327
28327
|
const { __scopeDialog, ...titleProps } = props;
|
|
28328
28328
|
const context = useDialogContext(TITLE_NAME, __scopeDialog);
|
|
28329
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
28329
|
+
return /* @__PURE__ */ jsx(Primitive$2.h2, { id: context.titleId, ...titleProps, ref: forwardedRef });
|
|
28330
28330
|
}
|
|
28331
28331
|
);
|
|
28332
28332
|
DialogTitle$1.displayName = TITLE_NAME;
|
|
@@ -28335,7 +28335,7 @@ var DialogDescription$1 = React.forwardRef(
|
|
|
28335
28335
|
(props, forwardedRef) => {
|
|
28336
28336
|
const { __scopeDialog, ...descriptionProps } = props;
|
|
28337
28337
|
const context = useDialogContext(DESCRIPTION_NAME, __scopeDialog);
|
|
28338
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
28338
|
+
return /* @__PURE__ */ jsx(Primitive$2.p, { id: context.descriptionId, ...descriptionProps, ref: forwardedRef });
|
|
28339
28339
|
}
|
|
28340
28340
|
);
|
|
28341
28341
|
DialogDescription$1.displayName = DESCRIPTION_NAME;
|
|
@@ -28345,7 +28345,7 @@ var DialogClose = React.forwardRef(
|
|
|
28345
28345
|
const { __scopeDialog, ...closeProps } = props;
|
|
28346
28346
|
const context = useDialogContext(CLOSE_NAME$1, __scopeDialog);
|
|
28347
28347
|
return /* @__PURE__ */ jsx(
|
|
28348
|
-
Primitive$
|
|
28348
|
+
Primitive$2.button,
|
|
28349
28349
|
{
|
|
28350
28350
|
type: "button",
|
|
28351
28351
|
...closeProps,
|
|
@@ -28400,6 +28400,63 @@ var Content$2 = DialogContent$1;
|
|
|
28400
28400
|
var Title = DialogTitle$1;
|
|
28401
28401
|
var Description = DialogDescription$1;
|
|
28402
28402
|
var Close = DialogClose;
|
|
28403
|
+
var NODES$1 = [
|
|
28404
|
+
"a",
|
|
28405
|
+
"button",
|
|
28406
|
+
"div",
|
|
28407
|
+
"form",
|
|
28408
|
+
"h2",
|
|
28409
|
+
"h3",
|
|
28410
|
+
"img",
|
|
28411
|
+
"input",
|
|
28412
|
+
"label",
|
|
28413
|
+
"li",
|
|
28414
|
+
"nav",
|
|
28415
|
+
"ol",
|
|
28416
|
+
"p",
|
|
28417
|
+
"span",
|
|
28418
|
+
"svg",
|
|
28419
|
+
"ul"
|
|
28420
|
+
];
|
|
28421
|
+
var Primitive$1 = NODES$1.reduce((primitive, node) => {
|
|
28422
|
+
const Node2 = React.forwardRef((props, forwardedRef) => {
|
|
28423
|
+
const { asChild, ...primitiveProps } = props;
|
|
28424
|
+
const Comp = asChild ? Slot$2 : node;
|
|
28425
|
+
if (typeof window !== "undefined") {
|
|
28426
|
+
window[Symbol.for("radix-ui")] = true;
|
|
28427
|
+
}
|
|
28428
|
+
return /* @__PURE__ */ jsx(Comp, { ...primitiveProps, ref: forwardedRef });
|
|
28429
|
+
});
|
|
28430
|
+
Node2.displayName = `Primitive.${node}`;
|
|
28431
|
+
return { ...primitive, [node]: Node2 };
|
|
28432
|
+
}, {});
|
|
28433
|
+
var NAME$3 = "VisuallyHidden";
|
|
28434
|
+
var VisuallyHidden = React.forwardRef(
|
|
28435
|
+
(props, forwardedRef) => {
|
|
28436
|
+
return /* @__PURE__ */ jsx(
|
|
28437
|
+
Primitive$1.span,
|
|
28438
|
+
{
|
|
28439
|
+
...props,
|
|
28440
|
+
ref: forwardedRef,
|
|
28441
|
+
style: {
|
|
28442
|
+
// See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
|
|
28443
|
+
position: "absolute",
|
|
28444
|
+
border: 0,
|
|
28445
|
+
width: 1,
|
|
28446
|
+
height: 1,
|
|
28447
|
+
padding: 0,
|
|
28448
|
+
margin: -1,
|
|
28449
|
+
overflow: "hidden",
|
|
28450
|
+
clip: "rect(0, 0, 0, 0)",
|
|
28451
|
+
whiteSpace: "nowrap",
|
|
28452
|
+
wordWrap: "normal",
|
|
28453
|
+
...props.style
|
|
28454
|
+
}
|
|
28455
|
+
}
|
|
28456
|
+
);
|
|
28457
|
+
}
|
|
28458
|
+
);
|
|
28459
|
+
VisuallyHidden.displayName = NAME$3;
|
|
28403
28460
|
function cn(...inputs) {
|
|
28404
28461
|
return twMerge(clsx(inputs));
|
|
28405
28462
|
}
|
|
@@ -28471,6 +28528,8 @@ const DialogDescription = React.forwardRef(({ className: className2, ...props },
|
|
|
28471
28528
|
}
|
|
28472
28529
|
));
|
|
28473
28530
|
DialogDescription.displayName = Description.displayName;
|
|
28531
|
+
const DialogVisuallyHidden = React.forwardRef(({ className: className2, children: children2, ...props }, ref) => /* @__PURE__ */ jsx(VisuallyHidden, { ref, className: cn(className2), ...props, children: children2 }));
|
|
28532
|
+
DialogVisuallyHidden.displayName = "DialogVisuallyHidden";
|
|
28474
28533
|
var DISMISSABLE_LAYER_NAME$1 = "DismissableLayer";
|
|
28475
28534
|
var CONTEXT_UPDATE$1 = "dismissableLayer.update";
|
|
28476
28535
|
var POINTER_DOWN_OUTSIDE$1 = "dismissableLayer.pointerDownOutside";
|
|
@@ -28559,7 +28618,7 @@ var DismissableLayer$1 = React.forwardRef(
|
|
|
28559
28618
|
return () => document.removeEventListener(CONTEXT_UPDATE$1, handleUpdate);
|
|
28560
28619
|
}, []);
|
|
28561
28620
|
return /* @__PURE__ */ jsx(
|
|
28562
|
-
Primitive$
|
|
28621
|
+
Primitive$3.div,
|
|
28563
28622
|
{
|
|
28564
28623
|
...layerProps,
|
|
28565
28624
|
ref: composedRefs,
|
|
@@ -28592,7 +28651,7 @@ var DismissableLayerBranch$1 = React.forwardRef((props, forwardedRef) => {
|
|
|
28592
28651
|
};
|
|
28593
28652
|
}
|
|
28594
28653
|
}, [context.branches]);
|
|
28595
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
28654
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
28596
28655
|
});
|
|
28597
28656
|
DismissableLayerBranch$1.displayName = BRANCH_NAME$1;
|
|
28598
28657
|
function usePointerDownOutside$1(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -30514,7 +30573,7 @@ var NAME$2 = "Arrow";
|
|
|
30514
30573
|
var Arrow$1 = React.forwardRef((props, forwardedRef) => {
|
|
30515
30574
|
const { children: children2, width = 10, height = 5, ...arrowProps } = props;
|
|
30516
30575
|
return /* @__PURE__ */ jsx(
|
|
30517
|
-
Primitive$
|
|
30576
|
+
Primitive$3.svg,
|
|
30518
30577
|
{
|
|
30519
30578
|
...arrowProps,
|
|
30520
30579
|
ref: forwardedRef,
|
|
@@ -30581,7 +30640,7 @@ var PopperAnchor = React.forwardRef(
|
|
|
30581
30640
|
React.useEffect(() => {
|
|
30582
30641
|
context.onAnchorChange(virtualRef?.current || ref.current);
|
|
30583
30642
|
});
|
|
30584
|
-
return virtualRef ? null : /* @__PURE__ */ jsx(Primitive$
|
|
30643
|
+
return virtualRef ? null : /* @__PURE__ */ jsx(Primitive$3.div, { ...anchorProps, ref: composedRefs });
|
|
30585
30644
|
}
|
|
30586
30645
|
);
|
|
30587
30646
|
PopperAnchor.displayName = ANCHOR_NAME$2;
|
|
@@ -30708,7 +30767,7 @@ var PopperContent = React.forwardRef(
|
|
|
30708
30767
|
arrowY,
|
|
30709
30768
|
shouldHideArrow: cannotCenterArrow,
|
|
30710
30769
|
children: /* @__PURE__ */ jsx(
|
|
30711
|
-
Primitive$
|
|
30770
|
+
Primitive$3.div,
|
|
30712
30771
|
{
|
|
30713
30772
|
"data-side": placedSide,
|
|
30714
30773
|
"data-align": placedAlign,
|
|
@@ -30984,7 +31043,7 @@ var TooltipTrigger$1 = React.forwardRef(
|
|
|
30984
31043
|
return () => document.removeEventListener("pointerup", handlePointerUp);
|
|
30985
31044
|
}, [handlePointerUp]);
|
|
30986
31045
|
return /* @__PURE__ */ jsx(Anchor, { asChild: true, ...popperScope, children: /* @__PURE__ */ jsx(
|
|
30987
|
-
Primitive$
|
|
31046
|
+
Primitive$3.button,
|
|
30988
31047
|
{
|
|
30989
31048
|
"aria-describedby": context.open ? context.contentId : void 0,
|
|
30990
31049
|
"data-state": context.stateAttribute,
|
|
@@ -35799,7 +35858,7 @@ var FocusScope = React.forwardRef((props, forwardedRef) => {
|
|
|
35799
35858
|
},
|
|
35800
35859
|
[loop, trapped, focusScope.paused]
|
|
35801
35860
|
);
|
|
35802
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
35861
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
|
|
35803
35862
|
});
|
|
35804
35863
|
FocusScope.displayName = FOCUS_SCOPE_NAME;
|
|
35805
35864
|
function focusFirst$2(candidates, { select = false } = {}) {
|
|
@@ -35945,7 +36004,7 @@ var PopoverTrigger$1 = React.forwardRef(
|
|
|
35945
36004
|
const popperScope = usePopperScope$2(__scopePopover);
|
|
35946
36005
|
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
|
|
35947
36006
|
const trigger = /* @__PURE__ */ jsx(
|
|
35948
|
-
Primitive$
|
|
36007
|
+
Primitive$3.button,
|
|
35949
36008
|
{
|
|
35950
36009
|
type: "button",
|
|
35951
36010
|
"aria-haspopup": "dialog",
|
|
@@ -36130,7 +36189,7 @@ var PopoverClose = React.forwardRef(
|
|
|
36130
36189
|
const { __scopePopover, ...closeProps } = props;
|
|
36131
36190
|
const context = usePopoverContext(CLOSE_NAME, __scopePopover);
|
|
36132
36191
|
return /* @__PURE__ */ jsx(
|
|
36133
|
-
Primitive$
|
|
36192
|
+
Primitive$3.button,
|
|
36134
36193
|
{
|
|
36135
36194
|
type: "button",
|
|
36136
36195
|
...closeProps,
|
|
@@ -36766,7 +36825,7 @@ var SelectTrigger$1 = React.forwardRef(
|
|
|
36766
36825
|
}
|
|
36767
36826
|
};
|
|
36768
36827
|
return /* @__PURE__ */ jsx(Anchor, { asChild: true, ...popperScope, children: /* @__PURE__ */ jsx(
|
|
36769
|
-
Primitive$
|
|
36828
|
+
Primitive$3.button,
|
|
36770
36829
|
{
|
|
36771
36830
|
type: "button",
|
|
36772
36831
|
role: "combobox",
|
|
@@ -36825,7 +36884,7 @@ var SelectValue$1 = React.forwardRef(
|
|
|
36825
36884
|
onValueNodeHasChildrenChange(hasChildren);
|
|
36826
36885
|
}, [onValueNodeHasChildrenChange, hasChildren]);
|
|
36827
36886
|
return /* @__PURE__ */ jsx(
|
|
36828
|
-
Primitive$
|
|
36887
|
+
Primitive$3.span,
|
|
36829
36888
|
{
|
|
36830
36889
|
...valueProps,
|
|
36831
36890
|
ref: composedRefs,
|
|
@@ -36840,7 +36899,7 @@ var ICON_NAME = "SelectIcon";
|
|
|
36840
36899
|
var SelectIcon = React.forwardRef(
|
|
36841
36900
|
(props, forwardedRef) => {
|
|
36842
36901
|
const { __scopeSelect, children: children2, ...iconProps } = props;
|
|
36843
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
36902
|
+
return /* @__PURE__ */ jsx(Primitive$3.span, { "aria-hidden": true, ...iconProps, ref: forwardedRef, children: children2 || "▼" });
|
|
36844
36903
|
}
|
|
36845
36904
|
);
|
|
36846
36905
|
SelectIcon.displayName = ICON_NAME;
|
|
@@ -37248,7 +37307,7 @@ var SelectItemAlignedPosition = React.forwardRef((props, forwardedRef) => {
|
|
|
37248
37307
|
zIndex: contentZIndex
|
|
37249
37308
|
},
|
|
37250
37309
|
children: /* @__PURE__ */ jsx(
|
|
37251
|
-
Primitive$
|
|
37310
|
+
Primitive$3.div,
|
|
37252
37311
|
{
|
|
37253
37312
|
...popperProps,
|
|
37254
37313
|
ref: composedRefs,
|
|
@@ -37322,7 +37381,7 @@ var SelectViewport = React.forwardRef(
|
|
|
37322
37381
|
}
|
|
37323
37382
|
),
|
|
37324
37383
|
/* @__PURE__ */ jsx(Collection$2.Slot, { scope: __scopeSelect, children: /* @__PURE__ */ jsx(
|
|
37325
|
-
Primitive$
|
|
37384
|
+
Primitive$3.div,
|
|
37326
37385
|
{
|
|
37327
37386
|
"data-radix-select-viewport": "",
|
|
37328
37387
|
role: "presentation",
|
|
@@ -37377,7 +37436,7 @@ var SelectGroup = React.forwardRef(
|
|
|
37377
37436
|
(props, forwardedRef) => {
|
|
37378
37437
|
const { __scopeSelect, ...groupProps } = props;
|
|
37379
37438
|
const groupId = useId$1();
|
|
37380
|
-
return /* @__PURE__ */ jsx(SelectGroupContextProvider, { scope: __scopeSelect, id: groupId, children: /* @__PURE__ */ jsx(Primitive$
|
|
37439
|
+
return /* @__PURE__ */ jsx(SelectGroupContextProvider, { scope: __scopeSelect, id: groupId, children: /* @__PURE__ */ jsx(Primitive$3.div, { role: "group", "aria-labelledby": groupId, ...groupProps, ref: forwardedRef }) });
|
|
37381
37440
|
}
|
|
37382
37441
|
);
|
|
37383
37442
|
SelectGroup.displayName = GROUP_NAME$3;
|
|
@@ -37386,7 +37445,7 @@ var SelectLabel$1 = React.forwardRef(
|
|
|
37386
37445
|
(props, forwardedRef) => {
|
|
37387
37446
|
const { __scopeSelect, ...labelProps } = props;
|
|
37388
37447
|
const groupContext = useSelectGroupContext(LABEL_NAME$2, __scopeSelect);
|
|
37389
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
37448
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { id: groupContext.id, ...labelProps, ref: forwardedRef });
|
|
37390
37449
|
}
|
|
37391
37450
|
);
|
|
37392
37451
|
SelectLabel$1.displayName = LABEL_NAME$2;
|
|
@@ -37442,7 +37501,7 @@ var SelectItem$1 = React.forwardRef(
|
|
|
37442
37501
|
disabled,
|
|
37443
37502
|
textValue,
|
|
37444
37503
|
children: /* @__PURE__ */ jsx(
|
|
37445
|
-
Primitive$
|
|
37504
|
+
Primitive$3.div,
|
|
37446
37505
|
{
|
|
37447
37506
|
role: "option",
|
|
37448
37507
|
"aria-labelledby": textId,
|
|
@@ -37519,7 +37578,7 @@ var SelectItemText = React.forwardRef(
|
|
|
37519
37578
|
return () => onNativeOptionRemove(nativeOption);
|
|
37520
37579
|
}, [onNativeOptionAdd, onNativeOptionRemove, nativeOption]);
|
|
37521
37580
|
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
37522
|
-
/* @__PURE__ */ jsx(Primitive$
|
|
37581
|
+
/* @__PURE__ */ jsx(Primitive$3.span, { id: itemContext.textId, ...itemTextProps, ref: composedRefs }),
|
|
37523
37582
|
itemContext.isSelected && context.valueNode && !context.valueNodeHasChildren ? ReactDOM.createPortal(itemTextProps.children, context.valueNode) : null
|
|
37524
37583
|
] });
|
|
37525
37584
|
}
|
|
@@ -37530,7 +37589,7 @@ var SelectItemIndicator = React.forwardRef(
|
|
|
37530
37589
|
(props, forwardedRef) => {
|
|
37531
37590
|
const { __scopeSelect, ...itemIndicatorProps } = props;
|
|
37532
37591
|
const itemContext = useSelectItemContext(ITEM_INDICATOR_NAME$1, __scopeSelect);
|
|
37533
|
-
return itemContext.isSelected ? /* @__PURE__ */ jsx(Primitive$
|
|
37592
|
+
return itemContext.isSelected ? /* @__PURE__ */ jsx(Primitive$3.span, { "aria-hidden": true, ...itemIndicatorProps, ref: forwardedRef }) : null;
|
|
37534
37593
|
}
|
|
37535
37594
|
);
|
|
37536
37595
|
SelectItemIndicator.displayName = ITEM_INDICATOR_NAME$1;
|
|
@@ -37620,7 +37679,7 @@ var SelectScrollButtonImpl = React.forwardRef((props, forwardedRef) => {
|
|
|
37620
37679
|
activeItem?.ref.current?.scrollIntoView({ block: "nearest" });
|
|
37621
37680
|
}, [getItems]);
|
|
37622
37681
|
return /* @__PURE__ */ jsx(
|
|
37623
|
-
Primitive$
|
|
37682
|
+
Primitive$3.div,
|
|
37624
37683
|
{
|
|
37625
37684
|
"aria-hidden": true,
|
|
37626
37685
|
...scrollIndicatorProps,
|
|
@@ -37647,7 +37706,7 @@ var SEPARATOR_NAME$2 = "SelectSeparator";
|
|
|
37647
37706
|
var SelectSeparator$1 = React.forwardRef(
|
|
37648
37707
|
(props, forwardedRef) => {
|
|
37649
37708
|
const { __scopeSelect, ...separatorProps } = props;
|
|
37650
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
37709
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { "aria-hidden": true, ...separatorProps, ref: forwardedRef });
|
|
37651
37710
|
}
|
|
37652
37711
|
);
|
|
37653
37712
|
SelectSeparator$1.displayName = SEPARATOR_NAME$2;
|
|
@@ -37685,7 +37744,7 @@ var BubbleSelect = React.forwardRef(
|
|
|
37685
37744
|
select.dispatchEvent(event);
|
|
37686
37745
|
}
|
|
37687
37746
|
}, [prevValue, value]);
|
|
37688
|
-
return /* @__PURE__ */ jsx(VisuallyHidden, { asChild: true, children: /* @__PURE__ */ jsx("select", { ...selectProps, ref: composedRefs, defaultValue: value }) });
|
|
37747
|
+
return /* @__PURE__ */ jsx(VisuallyHidden$1, { asChild: true, children: /* @__PURE__ */ jsx("select", { ...selectProps, ref: composedRefs, defaultValue: value }) });
|
|
37689
37748
|
}
|
|
37690
37749
|
);
|
|
37691
37750
|
BubbleSelect.displayName = "BubbleSelect";
|
|
@@ -38401,7 +38460,7 @@ var RovingFocusGroupImpl = React.forwardRef((props, forwardedRef) => {
|
|
|
38401
38460
|
[]
|
|
38402
38461
|
),
|
|
38403
38462
|
children: /* @__PURE__ */ jsx(
|
|
38404
|
-
Primitive$
|
|
38463
|
+
Primitive$3.div,
|
|
38405
38464
|
{
|
|
38406
38465
|
tabIndex: isTabbingBackOut || focusableItemsCount === 0 ? -1 : 0,
|
|
38407
38466
|
"data-orientation": orientation,
|
|
@@ -38465,7 +38524,7 @@ var RovingFocusGroupItem = React.forwardRef(
|
|
|
38465
38524
|
focusable,
|
|
38466
38525
|
active,
|
|
38467
38526
|
children: /* @__PURE__ */ jsx(
|
|
38468
|
-
Primitive$
|
|
38527
|
+
Primitive$3.span,
|
|
38469
38528
|
{
|
|
38470
38529
|
tabIndex: isCurrentTabStop ? 0 : -1,
|
|
38471
38530
|
"data-orientation": context.orientation,
|
|
@@ -38572,7 +38631,7 @@ var Tabs$1 = React.forwardRef(
|
|
|
38572
38631
|
dir: direction,
|
|
38573
38632
|
activationMode,
|
|
38574
38633
|
children: /* @__PURE__ */ jsx(
|
|
38575
|
-
Primitive$
|
|
38634
|
+
Primitive$3.div,
|
|
38576
38635
|
{
|
|
38577
38636
|
dir: direction,
|
|
38578
38637
|
"data-orientation": orientation,
|
|
@@ -38600,7 +38659,7 @@ var TabsList$1 = React.forwardRef(
|
|
|
38600
38659
|
dir: context.dir,
|
|
38601
38660
|
loop,
|
|
38602
38661
|
children: /* @__PURE__ */ jsx(
|
|
38603
|
-
Primitive$
|
|
38662
|
+
Primitive$3.div,
|
|
38604
38663
|
{
|
|
38605
38664
|
role: "tablist",
|
|
38606
38665
|
"aria-orientation": context.orientation,
|
|
@@ -38630,7 +38689,7 @@ var TabsTrigger$1 = React.forwardRef(
|
|
|
38630
38689
|
focusable: !disabled,
|
|
38631
38690
|
active: isSelected,
|
|
38632
38691
|
children: /* @__PURE__ */ jsx(
|
|
38633
|
-
Primitive$
|
|
38692
|
+
Primitive$3.button,
|
|
38634
38693
|
{
|
|
38635
38694
|
type: "button",
|
|
38636
38695
|
role: "tab",
|
|
@@ -38679,7 +38738,7 @@ var TabsContent$1 = React.forwardRef(
|
|
|
38679
38738
|
return () => cancelAnimationFrame(rAF);
|
|
38680
38739
|
}, []);
|
|
38681
38740
|
return /* @__PURE__ */ jsx(Presence, { present: forceMount || isSelected, children: ({ present }) => /* @__PURE__ */ jsx(
|
|
38682
|
-
Primitive$
|
|
38741
|
+
Primitive$3.div,
|
|
38683
38742
|
{
|
|
38684
38743
|
"data-state": isSelected ? "active" : "inactive",
|
|
38685
38744
|
"data-orientation": context.orientation,
|
|
@@ -39205,8 +39264,7 @@ const AutomationContent = ({ automationId, iconDefinitions }) => {
|
|
|
39205
39264
|
}
|
|
39206
39265
|
) }),
|
|
39207
39266
|
/* @__PURE__ */ jsx("h3", { className: "text-xl font-semibold text-gray-800 mb-2", children: "Automation Content Missing" }),
|
|
39208
|
-
/* @__PURE__ */ jsx("p", { className: "text-gray-500 max-w-md", children: "Complete your automation setup to preview the content here. We'll guide you through each step." })
|
|
39209
|
-
/* @__PURE__ */ jsx("button", { className: "mt-6 px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors duration-200 ease-in-out", children: "Set Up Automation" })
|
|
39267
|
+
/* @__PURE__ */ jsx("p", { className: "text-gray-500 max-w-md", children: "Complete your automation setup to preview the content here. We'll guide you through each step. Start by clicking Actions in the top right, and then click Edit!" })
|
|
39210
39268
|
] }) : /* @__PURE__ */ jsxs("div", { className: "space-y-4", children: [
|
|
39211
39269
|
/* @__PURE__ */ jsx(
|
|
39212
39270
|
PreviewPanel,
|
|
@@ -39370,7 +39428,7 @@ var DismissableLayer = React.forwardRef(
|
|
|
39370
39428
|
return () => document.removeEventListener(CONTEXT_UPDATE, handleUpdate);
|
|
39371
39429
|
}, []);
|
|
39372
39430
|
return /* @__PURE__ */ jsx(
|
|
39373
|
-
Primitive$
|
|
39431
|
+
Primitive$3.div,
|
|
39374
39432
|
{
|
|
39375
39433
|
...layerProps,
|
|
39376
39434
|
ref: composedRefs,
|
|
@@ -39403,7 +39461,7 @@ var DismissableLayerBranch = React.forwardRef((props, forwardedRef) => {
|
|
|
39403
39461
|
};
|
|
39404
39462
|
}
|
|
39405
39463
|
}, [context.branches]);
|
|
39406
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
39464
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
39407
39465
|
});
|
|
39408
39466
|
DismissableLayerBranch.displayName = BRANCH_NAME;
|
|
39409
39467
|
function usePointerDownOutside(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -39808,7 +39866,7 @@ var GROUP_NAME$1 = "MenuGroup";
|
|
|
39808
39866
|
var MenuGroup = React.forwardRef(
|
|
39809
39867
|
(props, forwardedRef) => {
|
|
39810
39868
|
const { __scopeMenu, ...groupProps } = props;
|
|
39811
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
39869
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { role: "group", ...groupProps, ref: forwardedRef });
|
|
39812
39870
|
}
|
|
39813
39871
|
);
|
|
39814
39872
|
MenuGroup.displayName = GROUP_NAME$1;
|
|
@@ -39816,7 +39874,7 @@ var LABEL_NAME$1 = "MenuLabel";
|
|
|
39816
39874
|
var MenuLabel = React.forwardRef(
|
|
39817
39875
|
(props, forwardedRef) => {
|
|
39818
39876
|
const { __scopeMenu, ...labelProps } = props;
|
|
39819
|
-
return /* @__PURE__ */ jsx(Primitive$
|
|
39877
|
+
return /* @__PURE__ */ jsx(Primitive$3.div, { ...labelProps, ref: forwardedRef });
|
|
39820
39878
|
}
|
|
39821
39879
|
);
|
|
39822
39880
|
MenuLabel.displayName = LABEL_NAME$1;
|
|
@@ -39892,7 +39950,7 @@ var MenuItemImpl = React.forwardRef(
|
|
|
39892
39950
|
disabled,
|
|
39893
39951
|
textValue: textValue ?? textContent,
|
|
39894
39952
|
children: /* @__PURE__ */ jsx(Item, { asChild: true, ...rovingFocusGroupScope, focusable: !disabled, children: /* @__PURE__ */ jsx(
|
|
39895
|
-
Primitive$
|
|
39953
|
+
Primitive$3.div,
|
|
39896
39954
|
{
|
|
39897
39955
|
role: "menuitem",
|
|
39898
39956
|
"data-highlighted": isFocused ? "" : void 0,
|
|
@@ -40000,7 +40058,7 @@ var MenuItemIndicator = React.forwardRef(
|
|
|
40000
40058
|
{
|
|
40001
40059
|
present: forceMount || isIndeterminate(indicatorContext.checked) || indicatorContext.checked === true,
|
|
40002
40060
|
children: /* @__PURE__ */ jsx(
|
|
40003
|
-
Primitive$
|
|
40061
|
+
Primitive$3.span,
|
|
40004
40062
|
{
|
|
40005
40063
|
...itemIndicatorProps,
|
|
40006
40064
|
ref: forwardedRef,
|
|
@@ -40017,7 +40075,7 @@ var MenuSeparator = React.forwardRef(
|
|
|
40017
40075
|
(props, forwardedRef) => {
|
|
40018
40076
|
const { __scopeMenu, ...separatorProps } = props;
|
|
40019
40077
|
return /* @__PURE__ */ jsx(
|
|
40020
|
-
Primitive$
|
|
40078
|
+
Primitive$3.div,
|
|
40021
40079
|
{
|
|
40022
40080
|
role: "separator",
|
|
40023
40081
|
"aria-orientation": "horizontal",
|
|
@@ -40303,7 +40361,7 @@ var DropdownMenuTrigger$1 = React.forwardRef(
|
|
|
40303
40361
|
const context = useDropdownMenuContext(TRIGGER_NAME, __scopeDropdownMenu);
|
|
40304
40362
|
const menuScope = useMenuScope(__scopeDropdownMenu);
|
|
40305
40363
|
return /* @__PURE__ */ jsx(Anchor2, { asChild: true, ...menuScope, children: /* @__PURE__ */ jsx(
|
|
40306
|
-
Primitive$
|
|
40364
|
+
Primitive$3.button,
|
|
40307
40365
|
{
|
|
40308
40366
|
type: "button",
|
|
40309
40367
|
id: context.triggerId,
|
|
@@ -40779,7 +40837,7 @@ var ChannelAccountTypeEnum = /* @__PURE__ */ ((ChannelAccountTypeEnum2) => {
|
|
|
40779
40837
|
var NAME = "Label";
|
|
40780
40838
|
var Label$1 = React.forwardRef((props, forwardedRef) => {
|
|
40781
40839
|
return /* @__PURE__ */ jsx(
|
|
40782
|
-
Primitive$
|
|
40840
|
+
Primitive$3.label,
|
|
40783
40841
|
{
|
|
40784
40842
|
...props,
|
|
40785
40843
|
ref: forwardedRef,
|
|
@@ -47000,6 +47058,9 @@ const ViewAutomationModal = ({ inRouter = false, ...props }) => {
|
|
|
47000
47058
|
}
|
|
47001
47059
|
return /* @__PURE__ */ jsx(MemoryRouter, { children: /* @__PURE__ */ jsx(ViewAutomationModalContent, { ...props }) });
|
|
47002
47060
|
};
|
|
47061
|
+
Object.values(
|
|
47062
|
+
/* @__PURE__ */ Object.assign({})
|
|
47063
|
+
);
|
|
47003
47064
|
export {
|
|
47004
47065
|
$TRACK as $,
|
|
47005
47066
|
getQueryStatusColorByLabel as A,
|
package/dist/index.umd.js
CHANGED
|
@@ -12426,7 +12426,7 @@
|
|
|
12426
12426
|
createCollectionScope2
|
|
12427
12427
|
];
|
|
12428
12428
|
}
|
|
12429
|
-
var NODES$
|
|
12429
|
+
var NODES$3 = [
|
|
12430
12430
|
"a",
|
|
12431
12431
|
"button",
|
|
12432
12432
|
"div",
|
|
@@ -12444,7 +12444,7 @@
|
|
|
12444
12444
|
"svg",
|
|
12445
12445
|
"ul"
|
|
12446
12446
|
];
|
|
12447
|
-
var Primitive$
|
|
12447
|
+
var Primitive$3 = NODES$3.reduce((primitive, node) => {
|
|
12448
12448
|
const Node2 = React__namespace.forwardRef((props, forwardedRef) => {
|
|
12449
12449
|
const { asChild, ...primitiveProps } = props;
|
|
12450
12450
|
const Comp = asChild ? Slot$3 : node;
|
|
@@ -12566,7 +12566,7 @@
|
|
|
12566
12566
|
return () => document.removeEventListener(CONTEXT_UPDATE$3, handleUpdate);
|
|
12567
12567
|
}, []);
|
|
12568
12568
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12569
|
-
Primitive$
|
|
12569
|
+
Primitive$3.div,
|
|
12570
12570
|
{
|
|
12571
12571
|
...layerProps,
|
|
12572
12572
|
ref: composedRefs,
|
|
@@ -12599,7 +12599,7 @@
|
|
|
12599
12599
|
};
|
|
12600
12600
|
}
|
|
12601
12601
|
}, [context.branches]);
|
|
12602
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
12602
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
12603
12603
|
});
|
|
12604
12604
|
DismissableLayerBranch$3.displayName = BRANCH_NAME$3;
|
|
12605
12605
|
function usePointerDownOutside$3(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -12689,7 +12689,7 @@
|
|
|
12689
12689
|
const [mounted, setMounted] = React__namespace.useState(false);
|
|
12690
12690
|
useLayoutEffect2(() => setMounted(true), []);
|
|
12691
12691
|
const container2 = containerProp || mounted && globalThis?.document?.body;
|
|
12692
|
-
return container2 ? ReactDOM.createPortal(/* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
12692
|
+
return container2 ? ReactDOM.createPortal(/* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...portalProps, ref: forwardedRef }), container2) : null;
|
|
12693
12693
|
});
|
|
12694
12694
|
Portal$6.displayName = PORTAL_NAME$7;
|
|
12695
12695
|
function useStateMachine(initialState, machine) {
|
|
@@ -12854,11 +12854,11 @@
|
|
|
12854
12854
|
}, [value, prevValueRef, handleChange]);
|
|
12855
12855
|
return uncontrolledState;
|
|
12856
12856
|
}
|
|
12857
|
-
var NAME$
|
|
12858
|
-
var VisuallyHidden = React__namespace.forwardRef(
|
|
12857
|
+
var NAME$4 = "VisuallyHidden";
|
|
12858
|
+
var VisuallyHidden$1 = React__namespace.forwardRef(
|
|
12859
12859
|
(props, forwardedRef) => {
|
|
12860
12860
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
12861
|
-
Primitive$
|
|
12861
|
+
Primitive$3.span,
|
|
12862
12862
|
{
|
|
12863
12863
|
...props,
|
|
12864
12864
|
ref: forwardedRef,
|
|
@@ -12880,8 +12880,8 @@
|
|
|
12880
12880
|
);
|
|
12881
12881
|
}
|
|
12882
12882
|
);
|
|
12883
|
-
VisuallyHidden.displayName = NAME$
|
|
12884
|
-
var Root$6 = VisuallyHidden;
|
|
12883
|
+
VisuallyHidden$1.displayName = NAME$4;
|
|
12884
|
+
var Root$6 = VisuallyHidden$1;
|
|
12885
12885
|
var PROVIDER_NAME$1 = "ToastProvider";
|
|
12886
12886
|
var [Collection$3, useCollection$3, createCollectionScope$3] = createCollection$1("Toast");
|
|
12887
12887
|
var [createToastContext, createToastScope] = createContextScope("Toast", [createCollectionScope$3]);
|
|
@@ -13056,7 +13056,7 @@
|
|
|
13056
13056
|
}
|
|
13057
13057
|
}
|
|
13058
13058
|
),
|
|
13059
|
-
/* @__PURE__ */ jsxRuntime.jsx(Collection$3.Slot, { scope: __scopeToast, children: /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
13059
|
+
/* @__PURE__ */ jsxRuntime.jsx(Collection$3.Slot, { scope: __scopeToast, children: /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.ol, { tabIndex: -1, ...viewportProps, ref: composedRefs }) }),
|
|
13060
13060
|
hasToasts && /* @__PURE__ */ jsxRuntime.jsx(
|
|
13061
13061
|
FocusProxy,
|
|
13062
13062
|
{
|
|
@@ -13081,7 +13081,7 @@
|
|
|
13081
13081
|
const { __scopeToast, onFocusFromOutsideViewport, ...proxyProps } = props;
|
|
13082
13082
|
const context = useToastProviderContext(FOCUS_PROXY_NAME, __scopeToast);
|
|
13083
13083
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
13084
|
-
VisuallyHidden,
|
|
13084
|
+
VisuallyHidden$1,
|
|
13085
13085
|
{
|
|
13086
13086
|
"aria-hidden": true,
|
|
13087
13087
|
tabIndex: 0,
|
|
@@ -13248,7 +13248,7 @@
|
|
|
13248
13248
|
context.isFocusedToastEscapeKeyDownRef.current = false;
|
|
13249
13249
|
}),
|
|
13250
13250
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
13251
|
-
Primitive$
|
|
13251
|
+
Primitive$3.li,
|
|
13252
13252
|
{
|
|
13253
13253
|
role: "status",
|
|
13254
13254
|
"aria-live": "off",
|
|
@@ -13347,7 +13347,7 @@
|
|
|
13347
13347
|
const timer = window.setTimeout(() => setIsAnnounced(true), 1e3);
|
|
13348
13348
|
return () => window.clearTimeout(timer);
|
|
13349
13349
|
}, []);
|
|
13350
|
-
return isAnnounced ? null : /* @__PURE__ */ jsxRuntime.jsx(Portal$6, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(VisuallyHidden, { ...announceProps, children: renderAnnounceText && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
13350
|
+
return isAnnounced ? null : /* @__PURE__ */ jsxRuntime.jsx(Portal$6, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(VisuallyHidden$1, { ...announceProps, children: renderAnnounceText && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
13351
13351
|
context.label,
|
|
13352
13352
|
" ",
|
|
13353
13353
|
children2
|
|
@@ -13357,7 +13357,7 @@
|
|
|
13357
13357
|
var ToastTitle$1 = React__namespace.forwardRef(
|
|
13358
13358
|
(props, forwardedRef) => {
|
|
13359
13359
|
const { __scopeToast, ...titleProps } = props;
|
|
13360
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
13360
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...titleProps, ref: forwardedRef });
|
|
13361
13361
|
}
|
|
13362
13362
|
);
|
|
13363
13363
|
ToastTitle$1.displayName = TITLE_NAME$1;
|
|
@@ -13365,7 +13365,7 @@
|
|
|
13365
13365
|
var ToastDescription$1 = React__namespace.forwardRef(
|
|
13366
13366
|
(props, forwardedRef) => {
|
|
13367
13367
|
const { __scopeToast, ...descriptionProps } = props;
|
|
13368
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
13368
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...descriptionProps, ref: forwardedRef });
|
|
13369
13369
|
}
|
|
13370
13370
|
);
|
|
13371
13371
|
ToastDescription$1.displayName = DESCRIPTION_NAME$1;
|
|
@@ -13389,7 +13389,7 @@
|
|
|
13389
13389
|
const { __scopeToast, ...closeProps } = props;
|
|
13390
13390
|
const interactiveContext = useToastInteractiveContext(CLOSE_NAME$2, __scopeToast);
|
|
13391
13391
|
return /* @__PURE__ */ jsxRuntime.jsx(ToastAnnounceExclude, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
13392
|
-
Primitive$
|
|
13392
|
+
Primitive$3.button,
|
|
13393
13393
|
{
|
|
13394
13394
|
type: "button",
|
|
13395
13395
|
...closeProps,
|
|
@@ -13403,7 +13403,7 @@
|
|
|
13403
13403
|
var ToastAnnounceExclude = React__namespace.forwardRef((props, forwardedRef) => {
|
|
13404
13404
|
const { __scopeToast, altText, ...announceExcludeProps } = props;
|
|
13405
13405
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
13406
|
-
Primitive$
|
|
13406
|
+
Primitive$3.div,
|
|
13407
13407
|
{
|
|
13408
13408
|
"data-radix-toast-announce-exclude": "",
|
|
13409
13409
|
"data-radix-toast-announce-alt": altText || void 0,
|
|
@@ -24276,7 +24276,7 @@
|
|
|
24276
24276
|
}
|
|
24277
24277
|
});
|
|
24278
24278
|
const Button$2 = React__namespace.forwardRef(
|
|
24279
|
-
({ className: className2, variant, size: size3, asChild = false, ...props }, ref) => {
|
|
24279
|
+
({ className: className2, variant, size: size3 = "default", asChild = false, ...props }, ref) => {
|
|
24280
24280
|
const Comp = asChild ? Slot$2 : "button";
|
|
24281
24281
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
24282
24282
|
Comp,
|
|
@@ -26878,7 +26878,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
26878
26878
|
}
|
|
26879
26879
|
return element.props.ref || element.ref;
|
|
26880
26880
|
}
|
|
26881
|
-
var NODES$
|
|
26881
|
+
var NODES$2 = [
|
|
26882
26882
|
"a",
|
|
26883
26883
|
"button",
|
|
26884
26884
|
"div",
|
|
@@ -26896,7 +26896,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
26896
26896
|
"svg",
|
|
26897
26897
|
"ul"
|
|
26898
26898
|
];
|
|
26899
|
-
var Primitive$
|
|
26899
|
+
var Primitive$2 = NODES$2.reduce((primitive, node) => {
|
|
26900
26900
|
const Node2 = React__namespace.forwardRef((props, forwardedRef) => {
|
|
26901
26901
|
const { asChild, ...primitiveProps } = props;
|
|
26902
26902
|
const Comp = asChild ? Slot$1 : node;
|
|
@@ -26999,7 +26999,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
26999
26999
|
return () => document.removeEventListener(CONTEXT_UPDATE$2, handleUpdate);
|
|
27000
27000
|
}, []);
|
|
27001
27001
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
27002
|
-
Primitive$
|
|
27002
|
+
Primitive$2.div,
|
|
27003
27003
|
{
|
|
27004
27004
|
...layerProps,
|
|
27005
27005
|
ref: composedRefs,
|
|
@@ -27032,7 +27032,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
27032
27032
|
};
|
|
27033
27033
|
}
|
|
27034
27034
|
}, [context.branches]);
|
|
27035
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
27035
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$2.div, { ...props, ref: composedRefs });
|
|
27036
27036
|
});
|
|
27037
27037
|
DismissableLayerBranch$2.displayName = BRANCH_NAME$2;
|
|
27038
27038
|
function usePointerDownOutside$2(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -27229,7 +27229,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
27229
27229
|
},
|
|
27230
27230
|
[loop, trapped, focusScope.paused]
|
|
27231
27231
|
);
|
|
27232
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
27232
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$2.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
|
|
27233
27233
|
});
|
|
27234
27234
|
FocusScope$1.displayName = FOCUS_SCOPE_NAME$1;
|
|
27235
27235
|
function focusFirst$3(candidates, { select = false } = {}) {
|
|
@@ -27317,7 +27317,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
27317
27317
|
const [mounted, setMounted] = React__namespace.useState(false);
|
|
27318
27318
|
useLayoutEffect2(() => setMounted(true), []);
|
|
27319
27319
|
const container2 = containerProp || mounted && globalThis?.document?.body;
|
|
27320
|
-
return container2 ? ReactDOM.createPortal(/* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
27320
|
+
return container2 ? ReactDOM.createPortal(/* @__PURE__ */ jsxRuntime.jsx(Primitive$2.div, { ...portalProps, ref: forwardedRef }), container2) : null;
|
|
27321
27321
|
});
|
|
27322
27322
|
Portal$5.displayName = PORTAL_NAME$6;
|
|
27323
27323
|
var count = 0;
|
|
@@ -28162,7 +28162,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
28162
28162
|
const context = useDialogContext(TRIGGER_NAME$5, __scopeDialog);
|
|
28163
28163
|
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
|
|
28164
28164
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28165
|
-
Primitive$
|
|
28165
|
+
Primitive$2.button,
|
|
28166
28166
|
{
|
|
28167
28167
|
type: "button",
|
|
28168
28168
|
"aria-haspopup": "dialog",
|
|
@@ -28205,7 +28205,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
28205
28205
|
// Make sure `Content` is scrollable even when it doesn't live inside `RemoveScroll`
|
|
28206
28206
|
// ie. when `Overlay` and `Content` are siblings
|
|
28207
28207
|
/* @__PURE__ */ jsxRuntime.jsx(ReactRemoveScroll$1, { as: Slot$1, allowPinchZoom: true, shards: [context.contentRef], children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
28208
|
-
Primitive$
|
|
28208
|
+
Primitive$2.div,
|
|
28209
28209
|
{
|
|
28210
28210
|
"data-state": getState$1(context.open),
|
|
28211
28211
|
...overlayProps,
|
|
@@ -28343,7 +28343,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
28343
28343
|
(props, forwardedRef) => {
|
|
28344
28344
|
const { __scopeDialog, ...titleProps } = props;
|
|
28345
28345
|
const context = useDialogContext(TITLE_NAME, __scopeDialog);
|
|
28346
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
28346
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$2.h2, { id: context.titleId, ...titleProps, ref: forwardedRef });
|
|
28347
28347
|
}
|
|
28348
28348
|
);
|
|
28349
28349
|
DialogTitle$1.displayName = TITLE_NAME;
|
|
@@ -28352,7 +28352,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
28352
28352
|
(props, forwardedRef) => {
|
|
28353
28353
|
const { __scopeDialog, ...descriptionProps } = props;
|
|
28354
28354
|
const context = useDialogContext(DESCRIPTION_NAME, __scopeDialog);
|
|
28355
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
28355
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$2.p, { id: context.descriptionId, ...descriptionProps, ref: forwardedRef });
|
|
28356
28356
|
}
|
|
28357
28357
|
);
|
|
28358
28358
|
DialogDescription$1.displayName = DESCRIPTION_NAME;
|
|
@@ -28362,7 +28362,7 @@ Please change the parent <Route path="${parentPath}"> to <Route path="${parentPa
|
|
|
28362
28362
|
const { __scopeDialog, ...closeProps } = props;
|
|
28363
28363
|
const context = useDialogContext(CLOSE_NAME$1, __scopeDialog);
|
|
28364
28364
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28365
|
-
Primitive$
|
|
28365
|
+
Primitive$2.button,
|
|
28366
28366
|
{
|
|
28367
28367
|
type: "button",
|
|
28368
28368
|
...closeProps,
|
|
@@ -28417,6 +28417,63 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
28417
28417
|
var Title = DialogTitle$1;
|
|
28418
28418
|
var Description = DialogDescription$1;
|
|
28419
28419
|
var Close = DialogClose;
|
|
28420
|
+
var NODES$1 = [
|
|
28421
|
+
"a",
|
|
28422
|
+
"button",
|
|
28423
|
+
"div",
|
|
28424
|
+
"form",
|
|
28425
|
+
"h2",
|
|
28426
|
+
"h3",
|
|
28427
|
+
"img",
|
|
28428
|
+
"input",
|
|
28429
|
+
"label",
|
|
28430
|
+
"li",
|
|
28431
|
+
"nav",
|
|
28432
|
+
"ol",
|
|
28433
|
+
"p",
|
|
28434
|
+
"span",
|
|
28435
|
+
"svg",
|
|
28436
|
+
"ul"
|
|
28437
|
+
];
|
|
28438
|
+
var Primitive$1 = NODES$1.reduce((primitive, node) => {
|
|
28439
|
+
const Node2 = React__namespace.forwardRef((props, forwardedRef) => {
|
|
28440
|
+
const { asChild, ...primitiveProps } = props;
|
|
28441
|
+
const Comp = asChild ? Slot$2 : node;
|
|
28442
|
+
if (typeof window !== "undefined") {
|
|
28443
|
+
window[Symbol.for("radix-ui")] = true;
|
|
28444
|
+
}
|
|
28445
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Comp, { ...primitiveProps, ref: forwardedRef });
|
|
28446
|
+
});
|
|
28447
|
+
Node2.displayName = `Primitive.${node}`;
|
|
28448
|
+
return { ...primitive, [node]: Node2 };
|
|
28449
|
+
}, {});
|
|
28450
|
+
var NAME$3 = "VisuallyHidden";
|
|
28451
|
+
var VisuallyHidden = React__namespace.forwardRef(
|
|
28452
|
+
(props, forwardedRef) => {
|
|
28453
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28454
|
+
Primitive$1.span,
|
|
28455
|
+
{
|
|
28456
|
+
...props,
|
|
28457
|
+
ref: forwardedRef,
|
|
28458
|
+
style: {
|
|
28459
|
+
// See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
|
|
28460
|
+
position: "absolute",
|
|
28461
|
+
border: 0,
|
|
28462
|
+
width: 1,
|
|
28463
|
+
height: 1,
|
|
28464
|
+
padding: 0,
|
|
28465
|
+
margin: -1,
|
|
28466
|
+
overflow: "hidden",
|
|
28467
|
+
clip: "rect(0, 0, 0, 0)",
|
|
28468
|
+
whiteSpace: "nowrap",
|
|
28469
|
+
wordWrap: "normal",
|
|
28470
|
+
...props.style
|
|
28471
|
+
}
|
|
28472
|
+
}
|
|
28473
|
+
);
|
|
28474
|
+
}
|
|
28475
|
+
);
|
|
28476
|
+
VisuallyHidden.displayName = NAME$3;
|
|
28420
28477
|
function cn(...inputs) {
|
|
28421
28478
|
return twMerge(clsx$1(inputs));
|
|
28422
28479
|
}
|
|
@@ -28488,6 +28545,8 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
28488
28545
|
}
|
|
28489
28546
|
));
|
|
28490
28547
|
DialogDescription.displayName = Description.displayName;
|
|
28548
|
+
const DialogVisuallyHidden = React__namespace.forwardRef(({ className: className2, children: children2, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(VisuallyHidden, { ref, className: cn(className2), ...props, children: children2 }));
|
|
28549
|
+
DialogVisuallyHidden.displayName = "DialogVisuallyHidden";
|
|
28491
28550
|
var DISMISSABLE_LAYER_NAME$1 = "DismissableLayer";
|
|
28492
28551
|
var CONTEXT_UPDATE$1 = "dismissableLayer.update";
|
|
28493
28552
|
var POINTER_DOWN_OUTSIDE$1 = "dismissableLayer.pointerDownOutside";
|
|
@@ -28576,7 +28635,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
28576
28635
|
return () => document.removeEventListener(CONTEXT_UPDATE$1, handleUpdate);
|
|
28577
28636
|
}, []);
|
|
28578
28637
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
28579
|
-
Primitive$
|
|
28638
|
+
Primitive$3.div,
|
|
28580
28639
|
{
|
|
28581
28640
|
...layerProps,
|
|
28582
28641
|
ref: composedRefs,
|
|
@@ -28609,7 +28668,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
28609
28668
|
};
|
|
28610
28669
|
}
|
|
28611
28670
|
}, [context.branches]);
|
|
28612
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
28671
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
28613
28672
|
});
|
|
28614
28673
|
DismissableLayerBranch$1.displayName = BRANCH_NAME$1;
|
|
28615
28674
|
function usePointerDownOutside$1(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -30531,7 +30590,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
30531
30590
|
var Arrow$1 = React__namespace.forwardRef((props, forwardedRef) => {
|
|
30532
30591
|
const { children: children2, width = 10, height = 5, ...arrowProps } = props;
|
|
30533
30592
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
30534
|
-
Primitive$
|
|
30593
|
+
Primitive$3.svg,
|
|
30535
30594
|
{
|
|
30536
30595
|
...arrowProps,
|
|
30537
30596
|
ref: forwardedRef,
|
|
@@ -30598,7 +30657,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
30598
30657
|
React__namespace.useEffect(() => {
|
|
30599
30658
|
context.onAnchorChange(virtualRef?.current || ref.current);
|
|
30600
30659
|
});
|
|
30601
|
-
return virtualRef ? null : /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
30660
|
+
return virtualRef ? null : /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...anchorProps, ref: composedRefs });
|
|
30602
30661
|
}
|
|
30603
30662
|
);
|
|
30604
30663
|
PopperAnchor.displayName = ANCHOR_NAME$2;
|
|
@@ -30725,7 +30784,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
30725
30784
|
arrowY,
|
|
30726
30785
|
shouldHideArrow: cannotCenterArrow,
|
|
30727
30786
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
30728
|
-
Primitive$
|
|
30787
|
+
Primitive$3.div,
|
|
30729
30788
|
{
|
|
30730
30789
|
"data-side": placedSide,
|
|
30731
30790
|
"data-align": placedAlign,
|
|
@@ -31001,7 +31060,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
31001
31060
|
return () => document.removeEventListener("pointerup", handlePointerUp);
|
|
31002
31061
|
}, [handlePointerUp]);
|
|
31003
31062
|
return /* @__PURE__ */ jsxRuntime.jsx(Anchor, { asChild: true, ...popperScope, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
31004
|
-
Primitive$
|
|
31063
|
+
Primitive$3.button,
|
|
31005
31064
|
{
|
|
31006
31065
|
"aria-describedby": context.open ? context.contentId : void 0,
|
|
31007
31066
|
"data-state": context.stateAttribute,
|
|
@@ -35816,7 +35875,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
35816
35875
|
},
|
|
35817
35876
|
[loop, trapped, focusScope.paused]
|
|
35818
35877
|
);
|
|
35819
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
35878
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { tabIndex: -1, ...scopeProps, ref: composedRefs, onKeyDown: handleKeyDown });
|
|
35820
35879
|
});
|
|
35821
35880
|
FocusScope.displayName = FOCUS_SCOPE_NAME;
|
|
35822
35881
|
function focusFirst$2(candidates, { select = false } = {}) {
|
|
@@ -35962,7 +36021,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
35962
36021
|
const popperScope = usePopperScope$2(__scopePopover);
|
|
35963
36022
|
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
|
|
35964
36023
|
const trigger = /* @__PURE__ */ jsxRuntime.jsx(
|
|
35965
|
-
Primitive$
|
|
36024
|
+
Primitive$3.button,
|
|
35966
36025
|
{
|
|
35967
36026
|
type: "button",
|
|
35968
36027
|
"aria-haspopup": "dialog",
|
|
@@ -36147,7 +36206,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
36147
36206
|
const { __scopePopover, ...closeProps } = props;
|
|
36148
36207
|
const context = usePopoverContext(CLOSE_NAME, __scopePopover);
|
|
36149
36208
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
36150
|
-
Primitive$
|
|
36209
|
+
Primitive$3.button,
|
|
36151
36210
|
{
|
|
36152
36211
|
type: "button",
|
|
36153
36212
|
...closeProps,
|
|
@@ -36783,7 +36842,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
36783
36842
|
}
|
|
36784
36843
|
};
|
|
36785
36844
|
return /* @__PURE__ */ jsxRuntime.jsx(Anchor, { asChild: true, ...popperScope, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
36786
|
-
Primitive$
|
|
36845
|
+
Primitive$3.button,
|
|
36787
36846
|
{
|
|
36788
36847
|
type: "button",
|
|
36789
36848
|
role: "combobox",
|
|
@@ -36842,7 +36901,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
36842
36901
|
onValueNodeHasChildrenChange(hasChildren);
|
|
36843
36902
|
}, [onValueNodeHasChildrenChange, hasChildren]);
|
|
36844
36903
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
36845
|
-
Primitive$
|
|
36904
|
+
Primitive$3.span,
|
|
36846
36905
|
{
|
|
36847
36906
|
...valueProps,
|
|
36848
36907
|
ref: composedRefs,
|
|
@@ -36857,7 +36916,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
36857
36916
|
var SelectIcon = React__namespace.forwardRef(
|
|
36858
36917
|
(props, forwardedRef) => {
|
|
36859
36918
|
const { __scopeSelect, children: children2, ...iconProps } = props;
|
|
36860
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
36919
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.span, { "aria-hidden": true, ...iconProps, ref: forwardedRef, children: children2 || "▼" });
|
|
36861
36920
|
}
|
|
36862
36921
|
);
|
|
36863
36922
|
SelectIcon.displayName = ICON_NAME;
|
|
@@ -37265,7 +37324,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37265
37324
|
zIndex: contentZIndex
|
|
37266
37325
|
},
|
|
37267
37326
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
37268
|
-
Primitive$
|
|
37327
|
+
Primitive$3.div,
|
|
37269
37328
|
{
|
|
37270
37329
|
...popperProps,
|
|
37271
37330
|
ref: composedRefs,
|
|
@@ -37339,7 +37398,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37339
37398
|
}
|
|
37340
37399
|
),
|
|
37341
37400
|
/* @__PURE__ */ jsxRuntime.jsx(Collection$2.Slot, { scope: __scopeSelect, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
37342
|
-
Primitive$
|
|
37401
|
+
Primitive$3.div,
|
|
37343
37402
|
{
|
|
37344
37403
|
"data-radix-select-viewport": "",
|
|
37345
37404
|
role: "presentation",
|
|
@@ -37394,7 +37453,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37394
37453
|
(props, forwardedRef) => {
|
|
37395
37454
|
const { __scopeSelect, ...groupProps } = props;
|
|
37396
37455
|
const groupId = useId$1();
|
|
37397
|
-
return /* @__PURE__ */ jsxRuntime.jsx(SelectGroupContextProvider, { scope: __scopeSelect, id: groupId, children: /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
37456
|
+
return /* @__PURE__ */ jsxRuntime.jsx(SelectGroupContextProvider, { scope: __scopeSelect, id: groupId, children: /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { role: "group", "aria-labelledby": groupId, ...groupProps, ref: forwardedRef }) });
|
|
37398
37457
|
}
|
|
37399
37458
|
);
|
|
37400
37459
|
SelectGroup.displayName = GROUP_NAME$3;
|
|
@@ -37403,7 +37462,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37403
37462
|
(props, forwardedRef) => {
|
|
37404
37463
|
const { __scopeSelect, ...labelProps } = props;
|
|
37405
37464
|
const groupContext = useSelectGroupContext(LABEL_NAME$2, __scopeSelect);
|
|
37406
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
37465
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { id: groupContext.id, ...labelProps, ref: forwardedRef });
|
|
37407
37466
|
}
|
|
37408
37467
|
);
|
|
37409
37468
|
SelectLabel$1.displayName = LABEL_NAME$2;
|
|
@@ -37459,7 +37518,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37459
37518
|
disabled,
|
|
37460
37519
|
textValue,
|
|
37461
37520
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
37462
|
-
Primitive$
|
|
37521
|
+
Primitive$3.div,
|
|
37463
37522
|
{
|
|
37464
37523
|
role: "option",
|
|
37465
37524
|
"aria-labelledby": textId,
|
|
@@ -37536,7 +37595,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37536
37595
|
return () => onNativeOptionRemove(nativeOption);
|
|
37537
37596
|
}, [onNativeOptionAdd, onNativeOptionRemove, nativeOption]);
|
|
37538
37597
|
return /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
37539
|
-
/* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
37598
|
+
/* @__PURE__ */ jsxRuntime.jsx(Primitive$3.span, { id: itemContext.textId, ...itemTextProps, ref: composedRefs }),
|
|
37540
37599
|
itemContext.isSelected && context.valueNode && !context.valueNodeHasChildren ? ReactDOM__namespace.createPortal(itemTextProps.children, context.valueNode) : null
|
|
37541
37600
|
] });
|
|
37542
37601
|
}
|
|
@@ -37547,7 +37606,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37547
37606
|
(props, forwardedRef) => {
|
|
37548
37607
|
const { __scopeSelect, ...itemIndicatorProps } = props;
|
|
37549
37608
|
const itemContext = useSelectItemContext(ITEM_INDICATOR_NAME$1, __scopeSelect);
|
|
37550
|
-
return itemContext.isSelected ? /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
37609
|
+
return itemContext.isSelected ? /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.span, { "aria-hidden": true, ...itemIndicatorProps, ref: forwardedRef }) : null;
|
|
37551
37610
|
}
|
|
37552
37611
|
);
|
|
37553
37612
|
SelectItemIndicator.displayName = ITEM_INDICATOR_NAME$1;
|
|
@@ -37637,7 +37696,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37637
37696
|
activeItem?.ref.current?.scrollIntoView({ block: "nearest" });
|
|
37638
37697
|
}, [getItems]);
|
|
37639
37698
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
37640
|
-
Primitive$
|
|
37699
|
+
Primitive$3.div,
|
|
37641
37700
|
{
|
|
37642
37701
|
"aria-hidden": true,
|
|
37643
37702
|
...scrollIndicatorProps,
|
|
@@ -37664,7 +37723,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37664
37723
|
var SelectSeparator$1 = React__namespace.forwardRef(
|
|
37665
37724
|
(props, forwardedRef) => {
|
|
37666
37725
|
const { __scopeSelect, ...separatorProps } = props;
|
|
37667
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
37726
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { "aria-hidden": true, ...separatorProps, ref: forwardedRef });
|
|
37668
37727
|
}
|
|
37669
37728
|
);
|
|
37670
37729
|
SelectSeparator$1.displayName = SEPARATOR_NAME$2;
|
|
@@ -37702,7 +37761,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
37702
37761
|
select.dispatchEvent(event);
|
|
37703
37762
|
}
|
|
37704
37763
|
}, [prevValue, value]);
|
|
37705
|
-
return /* @__PURE__ */ jsxRuntime.jsx(VisuallyHidden, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("select", { ...selectProps, ref: composedRefs, defaultValue: value }) });
|
|
37764
|
+
return /* @__PURE__ */ jsxRuntime.jsx(VisuallyHidden$1, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx("select", { ...selectProps, ref: composedRefs, defaultValue: value }) });
|
|
37706
37765
|
}
|
|
37707
37766
|
);
|
|
37708
37767
|
BubbleSelect.displayName = "BubbleSelect";
|
|
@@ -38418,7 +38477,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38418
38477
|
[]
|
|
38419
38478
|
),
|
|
38420
38479
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
38421
|
-
Primitive$
|
|
38480
|
+
Primitive$3.div,
|
|
38422
38481
|
{
|
|
38423
38482
|
tabIndex: isTabbingBackOut || focusableItemsCount === 0 ? -1 : 0,
|
|
38424
38483
|
"data-orientation": orientation,
|
|
@@ -38482,7 +38541,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38482
38541
|
focusable,
|
|
38483
38542
|
active,
|
|
38484
38543
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
38485
|
-
Primitive$
|
|
38544
|
+
Primitive$3.span,
|
|
38486
38545
|
{
|
|
38487
38546
|
tabIndex: isCurrentTabStop ? 0 : -1,
|
|
38488
38547
|
"data-orientation": context.orientation,
|
|
@@ -38589,7 +38648,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38589
38648
|
dir: direction,
|
|
38590
38649
|
activationMode,
|
|
38591
38650
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
38592
|
-
Primitive$
|
|
38651
|
+
Primitive$3.div,
|
|
38593
38652
|
{
|
|
38594
38653
|
dir: direction,
|
|
38595
38654
|
"data-orientation": orientation,
|
|
@@ -38617,7 +38676,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38617
38676
|
dir: context.dir,
|
|
38618
38677
|
loop,
|
|
38619
38678
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
38620
|
-
Primitive$
|
|
38679
|
+
Primitive$3.div,
|
|
38621
38680
|
{
|
|
38622
38681
|
role: "tablist",
|
|
38623
38682
|
"aria-orientation": context.orientation,
|
|
@@ -38647,7 +38706,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38647
38706
|
focusable: !disabled,
|
|
38648
38707
|
active: isSelected,
|
|
38649
38708
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
38650
|
-
Primitive$
|
|
38709
|
+
Primitive$3.button,
|
|
38651
38710
|
{
|
|
38652
38711
|
type: "button",
|
|
38653
38712
|
role: "tab",
|
|
@@ -38696,7 +38755,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
38696
38755
|
return () => cancelAnimationFrame(rAF);
|
|
38697
38756
|
}, []);
|
|
38698
38757
|
return /* @__PURE__ */ jsxRuntime.jsx(Presence, { present: forceMount || isSelected, children: ({ present }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
38699
|
-
Primitive$
|
|
38758
|
+
Primitive$3.div,
|
|
38700
38759
|
{
|
|
38701
38760
|
"data-state": isSelected ? "active" : "inactive",
|
|
38702
38761
|
"data-orientation": context.orientation,
|
|
@@ -39222,8 +39281,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39222
39281
|
}
|
|
39223
39282
|
) }),
|
|
39224
39283
|
/* @__PURE__ */ jsxRuntime.jsx("h3", { className: "text-xl font-semibold text-gray-800 mb-2", children: "Automation Content Missing" }),
|
|
39225
|
-
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-gray-500 max-w-md", children: "Complete your automation setup to preview the content here. We'll guide you through each step." })
|
|
39226
|
-
/* @__PURE__ */ jsxRuntime.jsx("button", { className: "mt-6 px-6 py-2 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors duration-200 ease-in-out", children: "Set Up Automation" })
|
|
39284
|
+
/* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-gray-500 max-w-md", children: "Complete your automation setup to preview the content here. We'll guide you through each step. Start by clicking Actions in the top right, and then click Edit!" })
|
|
39227
39285
|
] }) : /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "space-y-4", children: [
|
|
39228
39286
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
39229
39287
|
PreviewPanel,
|
|
@@ -39387,7 +39445,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39387
39445
|
return () => document.removeEventListener(CONTEXT_UPDATE, handleUpdate);
|
|
39388
39446
|
}, []);
|
|
39389
39447
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
39390
|
-
Primitive$
|
|
39448
|
+
Primitive$3.div,
|
|
39391
39449
|
{
|
|
39392
39450
|
...layerProps,
|
|
39393
39451
|
ref: composedRefs,
|
|
@@ -39420,7 +39478,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39420
39478
|
};
|
|
39421
39479
|
}
|
|
39422
39480
|
}, [context.branches]);
|
|
39423
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
39481
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...props, ref: composedRefs });
|
|
39424
39482
|
});
|
|
39425
39483
|
DismissableLayerBranch.displayName = BRANCH_NAME;
|
|
39426
39484
|
function usePointerDownOutside(onPointerDownOutside, ownerDocument = globalThis?.document) {
|
|
@@ -39825,7 +39883,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39825
39883
|
var MenuGroup$1 = React__namespace.forwardRef(
|
|
39826
39884
|
(props, forwardedRef) => {
|
|
39827
39885
|
const { __scopeMenu, ...groupProps } = props;
|
|
39828
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
39886
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { role: "group", ...groupProps, ref: forwardedRef });
|
|
39829
39887
|
}
|
|
39830
39888
|
);
|
|
39831
39889
|
MenuGroup$1.displayName = GROUP_NAME$1;
|
|
@@ -39833,7 +39891,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39833
39891
|
var MenuLabel = React__namespace.forwardRef(
|
|
39834
39892
|
(props, forwardedRef) => {
|
|
39835
39893
|
const { __scopeMenu, ...labelProps } = props;
|
|
39836
|
-
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$
|
|
39894
|
+
return /* @__PURE__ */ jsxRuntime.jsx(Primitive$3.div, { ...labelProps, ref: forwardedRef });
|
|
39837
39895
|
}
|
|
39838
39896
|
);
|
|
39839
39897
|
MenuLabel.displayName = LABEL_NAME$1;
|
|
@@ -39909,7 +39967,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
39909
39967
|
disabled,
|
|
39910
39968
|
textValue: textValue ?? textContent,
|
|
39911
39969
|
children: /* @__PURE__ */ jsxRuntime.jsx(Item, { asChild: true, ...rovingFocusGroupScope, focusable: !disabled, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
39912
|
-
Primitive$
|
|
39970
|
+
Primitive$3.div,
|
|
39913
39971
|
{
|
|
39914
39972
|
role: "menuitem",
|
|
39915
39973
|
"data-highlighted": isFocused ? "" : void 0,
|
|
@@ -40017,7 +40075,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
40017
40075
|
{
|
|
40018
40076
|
present: forceMount || isIndeterminate(indicatorContext.checked) || indicatorContext.checked === true,
|
|
40019
40077
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
40020
|
-
Primitive$
|
|
40078
|
+
Primitive$3.span,
|
|
40021
40079
|
{
|
|
40022
40080
|
...itemIndicatorProps,
|
|
40023
40081
|
ref: forwardedRef,
|
|
@@ -40034,7 +40092,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
40034
40092
|
(props, forwardedRef) => {
|
|
40035
40093
|
const { __scopeMenu, ...separatorProps } = props;
|
|
40036
40094
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
40037
|
-
Primitive$
|
|
40095
|
+
Primitive$3.div,
|
|
40038
40096
|
{
|
|
40039
40097
|
role: "separator",
|
|
40040
40098
|
"aria-orientation": "horizontal",
|
|
@@ -40320,7 +40378,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
40320
40378
|
const context = useDropdownMenuContext(TRIGGER_NAME, __scopeDropdownMenu);
|
|
40321
40379
|
const menuScope = useMenuScope(__scopeDropdownMenu);
|
|
40322
40380
|
return /* @__PURE__ */ jsxRuntime.jsx(Anchor2, { asChild: true, ...menuScope, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
40323
|
-
Primitive$
|
|
40381
|
+
Primitive$3.button,
|
|
40324
40382
|
{
|
|
40325
40383
|
type: "button",
|
|
40326
40384
|
id: context.triggerId,
|
|
@@ -40796,7 +40854,7 @@ For more information, see https://radix-ui.com/primitives/docs/components/${titl
|
|
|
40796
40854
|
var NAME = "Label";
|
|
40797
40855
|
var Label$1 = React__namespace.forwardRef((props, forwardedRef) => {
|
|
40798
40856
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
40799
|
-
Primitive$
|
|
40857
|
+
Primitive$3.label,
|
|
40800
40858
|
{
|
|
40801
40859
|
...props,
|
|
40802
40860
|
ref: forwardedRef,
|
|
@@ -47017,6 +47075,9 @@ ${message2 ?? ""}`);
|
|
|
47017
47075
|
}
|
|
47018
47076
|
return /* @__PURE__ */ jsxRuntime.jsx(MemoryRouter, { children: /* @__PURE__ */ jsxRuntime.jsx(ViewAutomationModalContent, { ...props }) });
|
|
47019
47077
|
};
|
|
47078
|
+
Object.values(
|
|
47079
|
+
/* @__PURE__ */ Object.assign({})
|
|
47080
|
+
);
|
|
47020
47081
|
var isNonNullable = (i2) => i2 != null;
|
|
47021
47082
|
var filterNonNullable = (arr) => arr.filter(isNonNullable);
|
|
47022
47083
|
function chain(callbacks) {
|
package/dist/styles.css
CHANGED
|
@@ -7603,7 +7603,9 @@ body {
|
|
|
7603
7603
|
}
|
|
7604
7604
|
.\[\&_tr\]\:border-t tr {
|
|
7605
7605
|
border-top-width: 1px;
|
|
7606
|
-
}
|
|
7606
|
+
}
|
|
7607
|
+
|
|
7608
|
+
.reach-styles-module__base___RP4iu {
|
|
7607
7609
|
display: inline-flex;
|
|
7608
7610
|
align-items: center;
|
|
7609
7611
|
justify-content: center;
|