reshaped 3.8.0-canary.1 → 3.8.0-canary.11
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/CHANGELOG.md +97 -18
- package/dist/bundle.css +1 -1
- package/dist/bundle.d.ts +1 -1
- package/dist/bundle.js +11 -11
- package/dist/components/Accordion/AccordionControlled.js +1 -0
- package/dist/components/Actionable/Actionable.js +17 -3
- package/dist/components/Actionable/Actionable.module.css +1 -1
- package/dist/components/Actionable/Actionable.types.d.ts +15 -3
- package/dist/components/Actionable/tests/Actionable.stories.d.ts +13 -1
- package/dist/components/Actionable/tests/Actionable.stories.js +127 -7
- package/dist/components/Alert/tests/Alert.stories.d.ts +6 -5
- package/dist/components/Alert/tests/Alert.stories.js +15 -2
- package/dist/components/Autocomplete/Autocomplete.js +2 -2
- package/dist/components/Autocomplete/Autocomplete.types.d.ts +1 -1
- package/dist/components/Badge/Badge.module.css +1 -1
- package/dist/components/Badge/tests/Badge.stories.d.ts +5 -0
- package/dist/components/Badge/tests/Badge.stories.js +34 -0
- package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -0
- package/dist/components/Breadcrumbs/tests/Breadcrumbs.stories.d.ts +8 -4
- package/dist/components/Breadcrumbs/tests/Breadcrumbs.stories.js +57 -1
- package/dist/components/Button/Button.js +2 -2
- package/dist/components/Button/Button.types.d.ts +1 -1
- package/dist/components/Button/tests/Button.stories.d.ts +54 -12
- package/dist/components/Button/tests/Button.stories.js +725 -588
- package/dist/components/Calendar/CalendarMonth.js +1 -0
- package/dist/components/Card/Card.d.ts +1 -1
- package/dist/components/Card/Card.module.css +1 -1
- package/dist/components/Card/tests/Card.stories.d.ts +29 -7
- package/dist/components/Card/tests/Card.stories.js +110 -65
- package/dist/components/Carousel/Carousel.js +1 -0
- package/dist/components/Carousel/Carousel.module.css +1 -1
- package/dist/components/Checkbox/Checkbox.module.css +1 -1
- package/dist/components/Checkbox/tests/Checkbox.stories.d.ts +20 -4
- package/dist/components/Checkbox/tests/Checkbox.stories.js +150 -79
- package/dist/components/CheckboxGroup/tests/CheckboxGroup.stories.d.ts +9 -2
- package/dist/components/CheckboxGroup/tests/CheckboxGroup.stories.js +67 -35
- package/dist/components/Container/tests/Container.stories.d.ts +2 -0
- package/dist/components/Container/tests/Container.stories.js +14 -0
- package/dist/components/ContextMenu/tests/ContextMenu.stories.d.ts +10 -1
- package/dist/components/ContextMenu/tests/ContextMenu.stories.js +57 -13
- package/dist/components/Dismissible/tests/Dismissible.stories.d.ts +5 -0
- package/dist/components/Dismissible/tests/Dismissible.stories.js +30 -1
- package/dist/components/Divider/tests/Divider.stories.d.ts +8 -3
- package/dist/components/Divider/tests/Divider.stories.js +71 -41
- package/dist/components/DropdownMenu/DropdownMenu.js +4 -4
- package/dist/components/DropdownMenu/DropdownMenu.types.d.ts +2 -2
- package/dist/components/DropdownMenu/tests/DropdownMenu.stories.d.ts +35 -6
- package/dist/components/DropdownMenu/tests/DropdownMenu.stories.js +222 -115
- package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.d.ts +0 -15
- package/dist/components/DropdownMenu/tests/DropdownMenu.test.stories.js +0 -106
- package/dist/components/FileUpload/FileUpload.module.css +1 -1
- package/dist/components/Flyout/Flyout.module.css +1 -1
- package/dist/components/Flyout/Flyout.types.d.ts +7 -7
- package/dist/components/Flyout/FlyoutContent.js +4 -1
- package/dist/components/Flyout/FlyoutControlled.js +10 -3
- package/dist/components/Flyout/index.d.ts +1 -1
- package/dist/components/Flyout/tests/Flyout.stories.d.ts +8 -0
- package/dist/components/Flyout/tests/Flyout.stories.js +81 -33
- package/dist/components/Flyout/useFlyout.d.ts +1 -7
- package/dist/components/Flyout/useFlyout.js +5 -1
- package/dist/components/Flyout/utilities/calculatePosition.d.ts +3 -2
- package/dist/components/Flyout/utilities/calculatePosition.js +47 -22
- package/dist/components/Flyout/utilities/flyout.js +3 -2
- package/dist/components/Flyout/utilities/getPositionFallbacks.js +3 -3
- package/dist/components/Flyout/utilities/isFullyVisible.d.ts +0 -2
- package/dist/components/Flyout/utilities/isFullyVisible.js +5 -7
- package/dist/components/FormControl/FormControl.context.d.ts +1 -1
- package/dist/components/FormControl/tests/FormControl.stories.d.ts +2 -0
- package/dist/components/FormControl/tests/FormControl.stories.js +35 -0
- package/dist/components/Hidden/tests/Hidden.stories.d.ts +2 -0
- package/dist/components/Hidden/tests/Hidden.stories.js +9 -0
- package/dist/components/HiddenVisually/tests/HiddenVisually.stories.d.ts +2 -0
- package/dist/components/HiddenVisually/tests/HiddenVisually.stories.js +9 -0
- package/dist/components/Hotkey/tests/Hotkey.stories.d.ts +2 -0
- package/dist/components/Hotkey/tests/Hotkey.stories.js +15 -0
- package/dist/components/Icon/Icon.js +2 -2
- package/dist/components/Icon/Icon.types.d.ts +1 -1
- package/dist/components/Icon/tests/Icon.stories.d.ts +3 -0
- package/dist/components/Icon/tests/Icon.stories.js +29 -1
- package/dist/components/Link/Link.d.ts +1 -1
- package/dist/components/Link/Link.js +2 -2
- package/dist/components/Link/Link.types.d.ts +1 -1
- package/dist/components/Link/tests/Link.stories.d.ts +29 -6
- package/dist/components/Link/tests/Link.stories.js +141 -58
- package/dist/components/Link/tests/Link.test.stories.d.ts +1 -13
- package/dist/components/Link/tests/Link.test.stories.js +0 -76
- package/dist/components/Loader/tests/Loader.stories.d.ts +11 -2
- package/dist/components/Loader/tests/Loader.stories.js +52 -25
- package/dist/components/Loader/tests/Loader.test.stories.d.ts +0 -3
- package/dist/components/Loader/tests/Loader.test.stories.js +0 -21
- package/dist/components/MenuItem/MenuItem.js +2 -2
- package/dist/components/MenuItem/MenuItem.module.css +1 -1
- package/dist/components/MenuItem/MenuItem.types.d.ts +1 -1
- package/dist/components/MenuItem/tests/MenuItem.stories.d.ts +37 -7
- package/dist/components/MenuItem/tests/MenuItem.stories.js +218 -112
- package/dist/components/Modal/Modal.js +1 -1
- package/dist/components/Modal/Modal.module.css +1 -1
- package/dist/components/Modal/tests/Modal.stories.d.ts +49 -10
- package/dist/components/Modal/tests/Modal.stories.js +350 -210
- package/dist/components/Overlay/Overlay.js +2 -1
- package/dist/components/Overlay/tests/Overlay.stories.d.ts +15 -1
- package/dist/components/Overlay/tests/Overlay.stories.js +135 -1
- package/dist/components/Pagination/tests/Pagination.stories.d.ts +14 -1
- package/dist/components/Pagination/tests/Pagination.stories.js +93 -15
- package/dist/components/PinField/tests/PinField.stories.d.ts +1 -1
- package/dist/components/PinField/tests/PinField.stories.js +1 -1
- package/dist/components/Popover/Popover.js +2 -2
- package/dist/components/Popover/Popover.module.css +1 -1
- package/dist/components/Popover/Popover.types.d.ts +3 -1
- package/dist/components/Progress/tests/Progress.stories.d.ts +19 -4
- package/dist/components/Progress/tests/Progress.stories.js +85 -49
- package/dist/components/Radio/Radio.module.css +1 -1
- package/dist/components/Radio/tests/Radio.stories.d.ts +25 -4
- package/dist/components/Radio/tests/Radio.stories.js +147 -65
- package/dist/components/RadioGroup/tests/RadioGroup.stories.d.ts +9 -2
- package/dist/components/RadioGroup/tests/RadioGroup.stories.js +64 -38
- package/dist/components/Reshaped/Reshaped.css +1 -1
- package/dist/components/Scrim/tests/Scrim.stories.d.ts +10 -2
- package/dist/components/Scrim/tests/Scrim.stories.js +51 -31
- package/dist/components/ScrollArea/ScrollArea.module.css +1 -1
- package/dist/components/Select/Select.d.ts +8 -1
- package/dist/components/Select/Select.js +22 -48
- package/dist/components/Select/Select.module.css +1 -1
- package/dist/components/Select/Select.types.d.ts +83 -38
- package/dist/components/Select/SelectCustom.d.ts +3 -0
- package/dist/components/Select/SelectCustom.js +12 -0
- package/dist/components/Select/SelectCustomControlled.d.ts +4 -0
- package/dist/components/Select/SelectCustomControlled.js +105 -0
- package/dist/components/Select/SelectCustomUncontrolled.d.ts +4 -0
- package/dist/components/Select/SelectCustomUncontrolled.js +18 -0
- package/dist/components/Select/SelectEndContent.d.ts +3 -0
- package/dist/components/Select/SelectEndContent.js +12 -0
- package/dist/components/Select/SelectNative.d.ts +4 -0
- package/dist/components/Select/SelectNative.js +29 -0
- package/dist/components/Select/SelectOption.d.ts +4 -0
- package/dist/components/Select/SelectOption.js +13 -0
- package/dist/components/Select/SelectOptionGroup.d.ts +4 -0
- package/dist/components/Select/SelectOptionGroup.js +9 -0
- package/dist/components/Select/SelectRoot.d.ts +4 -0
- package/dist/components/Select/SelectRoot.js +21 -0
- package/dist/components/Select/SelectStartContent.d.ts +3 -0
- package/dist/components/Select/SelectStartContent.js +20 -0
- package/dist/components/Select/SelectTrigger.d.ts +4 -0
- package/dist/components/Select/SelectTrigger.js +16 -0
- package/dist/components/Select/tests/Select.stories.d.ts +38 -10
- package/dist/components/Select/tests/Select.stories.js +504 -175
- package/dist/components/Skeleton/tests/Skeleton.stories.d.ts +10 -2
- package/dist/components/Skeleton/tests/Skeleton.stories.js +46 -28
- package/dist/components/Slider/Slider.module.css +1 -1
- package/dist/components/Stepper/Stepper.js +2 -2
- package/dist/components/Stepper/Stepper.types.d.ts +2 -0
- package/dist/components/Stepper/tests/Stepper.stories.d.ts +18 -3
- package/dist/components/Stepper/tests/Stepper.stories.js +99 -47
- package/dist/components/Switch/Switch.module.css +1 -1
- package/dist/components/Switch/tests/Switch.stories.d.ts +10 -2
- package/dist/components/Switch/tests/Switch.stories.js +77 -23
- package/dist/components/Switch/tests/Switch.test.stories.d.ts +0 -10
- package/dist/components/Switch/tests/Switch.test.stories.js +0 -68
- package/dist/components/Table/Table.js +5 -3
- package/dist/components/Table/Table.module.css +1 -1
- package/dist/components/Table/tests/Table.stories.d.ts +25 -5
- package/dist/components/Table/tests/Table.stories.js +274 -177
- package/dist/components/Table/tests/Table.test.stories.d.ts +0 -5
- package/dist/components/Table/tests/Table.test.stories.js +0 -82
- package/dist/components/Tabs/Tabs.module.css +1 -1
- package/dist/components/Tabs/TabsControlled.js +1 -0
- package/dist/components/Text/Text.module.css +1 -1
- package/dist/components/TextArea/TextArea.module.css +1 -1
- package/dist/components/TextArea/tests/TextArea.stories.d.ts +41 -9
- package/dist/components/TextArea/tests/TextArea.stories.js +179 -93
- package/dist/components/TextField/TextField.js +1 -1
- package/dist/components/TextField/TextField.module.css +1 -1
- package/dist/components/TextField/tests/TextField.stories.d.ts +41 -11
- package/dist/components/TextField/tests/TextField.stories.js +206 -132
- package/dist/components/TextField/tests/TextField.test.stories.d.ts +0 -13
- package/dist/components/TextField/tests/TextField.test.stories.js +0 -88
- package/dist/components/Theme/Theme.module.css +1 -1
- package/dist/components/Timeline/Timeline.js +2 -2
- package/dist/components/Timeline/tests/Timeline.stories.d.ts +10 -2
- package/dist/components/Timeline/tests/Timeline.stories.js +69 -45
- package/dist/components/Timeline/tests/Timeline.test.stories.d.ts +0 -2
- package/dist/components/Timeline/tests/Timeline.test.stories.js +0 -21
- package/dist/components/Toast/ToastContainer.js +1 -0
- package/dist/components/Toast/ToastRegion.js +1 -0
- package/dist/components/Toast/tests/Toast.stories.d.ts +32 -8
- package/dist/components/Toast/tests/Toast.stories.js +111 -37
- package/dist/components/ToggleButton/ToggleButton.types.d.ts +1 -1
- package/dist/components/ToggleButtonGroup/ToggleButtonGroupControlled.js +1 -0
- package/dist/components/Tooltip/Tooltip.js +1 -1
- package/dist/components/Tooltip/Tooltip.types.d.ts +2 -2
- package/dist/components/Tooltip/tests/Tooltip.stories.d.ts +18 -4
- package/dist/components/Tooltip/tests/Tooltip.stories.js +139 -107
- package/dist/components/Tooltip/tests/Tooltip.test.stories.d.ts +0 -6
- package/dist/components/Tooltip/tests/Tooltip.test.stories.js +0 -29
- package/dist/components/View/View.js +11 -4
- package/dist/components/View/tests/View.stories.d.ts +4 -0
- package/dist/components/View/tests/View.stories.js +39 -0
- package/dist/components/_private/Expandable/Expandable.js +3 -1
- package/dist/components/_private/Portal/Portal.js +4 -1
- package/dist/hooks/_private/useIsDismissible.d.ts +1 -0
- package/dist/hooks/_private/useIsDismissible.js +6 -6
- package/dist/hooks/_private/usePrevious.js +1 -0
- package/dist/hooks/tests/useDrag.stories.js +1 -1
- package/dist/hooks/useOnClickOutside.js +0 -2
- package/dist/hooks/useScrollLock.js +5 -3
- package/dist/index.d.ts +1 -1
- package/dist/styles/resolvers/align/align.css +1 -1
- package/dist/styles/resolvers/aspectRatio/aspectRatio.css +1 -1
- package/dist/styles/resolvers/bleed/bleed.module.css +1 -1
- package/dist/styles/resolvers/justify/justify.css +1 -1
- package/dist/styles/resolvers/maxHeight/maxHeight.module.css +1 -1
- package/dist/styles/resolvers/maxWidth/maxWidth.module.css +1 -1
- package/dist/styles/resolvers/minHeight/minHeight.module.css +1 -1
- package/dist/styles/resolvers/minWidth/minWidth.module.css +1 -1
- package/dist/styles/resolvers/position/position.css +1 -1
- package/dist/styles/resolvers/textAlign/textAlign.css +1 -1
- package/dist/styles/resolvers/width/width.module.css +1 -1
- package/dist/utilities/scroll/disable.js +2 -2
- package/dist/utilities/scroll/index.d.ts +1 -1
- package/dist/utilities/scroll/index.js +1 -1
- package/dist/utilities/scroll/lock.d.ts +1 -2
- package/dist/utilities/scroll/lock.js +16 -15
- package/dist/utilities/scroll/lockSafari.js +1 -0
- package/package.json +23 -23
- package/dist/components/Actionable/tests/Actionable.test.stories.d.ts +0 -32
- package/dist/components/Actionable/tests/Actionable.test.stories.js +0 -130
- package/dist/components/Alert/tests/Alert.test.stories.d.ts +0 -15
- package/dist/components/Alert/tests/Alert.test.stories.js +0 -26
- package/dist/components/Badge/tests/Badge.test.stories.d.ts +0 -20
- package/dist/components/Badge/tests/Badge.test.stories.js +0 -46
- package/dist/components/Breadcrumbs/tests/Breadcrumbs.test.stories.d.ts +0 -23
- package/dist/components/Breadcrumbs/tests/Breadcrumbs.test.stories.js +0 -76
- package/dist/components/Button/tests/Button.test.stories.d.ts +0 -27
- package/dist/components/Button/tests/Button.test.stories.js +0 -112
- package/dist/components/Card/tests/Card.test.stories.d.ts +0 -35
- package/dist/components/Card/tests/Card.test.stories.js +0 -54
- package/dist/components/Checkbox/tests/Checkbox.test.stories.d.ts +0 -25
- package/dist/components/Checkbox/tests/Checkbox.test.stories.js +0 -104
- package/dist/components/CheckboxGroup/tests/CheckboxGroup.test.stories.d.ts +0 -22
- package/dist/components/CheckboxGroup/tests/CheckboxGroup.test.stories.js +0 -78
- package/dist/components/Container/tests/Container.test.stories.d.ts +0 -15
- package/dist/components/Container/tests/Container.test.stories.js +0 -26
- package/dist/components/ContextMenu/tests/ContextMenu.test.stories.d.ts +0 -25
- package/dist/components/ContextMenu/tests/ContextMenu.test.stories.js +0 -53
- package/dist/components/Dismissible/tests/Dismissible.test.stories.d.ts +0 -19
- package/dist/components/Dismissible/tests/Dismissible.test.stories.js +0 -42
- package/dist/components/Divider/tests/Divider.test.stories.d.ts +0 -18
- package/dist/components/Divider/tests/Divider.test.stories.js +0 -47
- package/dist/components/FormControl/tests/FormControl.test.stories.d.ts +0 -20
- package/dist/components/FormControl/tests/FormControl.test.stories.js +0 -49
- package/dist/components/Hidden/tests/Hidden.test.stories.d.ts +0 -15
- package/dist/components/Hidden/tests/Hidden.test.stories.js +0 -20
- package/dist/components/HiddenVisually/tests/HiddenVisually.test.stories.d.ts +0 -15
- package/dist/components/HiddenVisually/tests/HiddenVisually.test.stories.js +0 -20
- package/dist/components/Hotkey/tests/Hotkey.test.stories.d.ts +0 -15
- package/dist/components/Hotkey/tests/Hotkey.test.stories.js +0 -26
- package/dist/components/Icon/tests/Icon.test.stories.d.ts +0 -16
- package/dist/components/Icon/tests/Icon.test.stories.js +0 -35
- package/dist/components/MenuItem/tests/MenuItem.test.stories.d.ts +0 -26
- package/dist/components/MenuItem/tests/MenuItem.test.stories.js +0 -100
- package/dist/components/Modal/tests/Modal.test.stories.d.ts +0 -31
- package/dist/components/Modal/tests/Modal.test.stories.js +0 -149
- package/dist/components/Overlay/tests/Overlay.test.stories.d.ts +0 -28
- package/dist/components/Overlay/tests/Overlay.test.stories.js +0 -148
- package/dist/components/Pagination/tests/Pagination.test.stories.d.ts +0 -23
- package/dist/components/Pagination/tests/Pagination.test.stories.js +0 -86
- package/dist/components/Progress/tests/Progress.test.stories.d.ts +0 -16
- package/dist/components/Progress/tests/Progress.test.stories.js +0 -35
- package/dist/components/Radio/tests/Radio.test.stories.d.ts +0 -30
- package/dist/components/Radio/tests/Radio.test.stories.js +0 -118
- package/dist/components/RadioGroup/tests/RadioGroup.test.stories.d.ts +0 -22
- package/dist/components/RadioGroup/tests/RadioGroup.test.stories.js +0 -78
- package/dist/components/Scrim/tests/Scrim.test.stories.d.ts +0 -15
- package/dist/components/Scrim/tests/Scrim.test.stories.js +0 -25
- package/dist/components/Select/tests/Select.test.stories.d.ts +0 -27
- package/dist/components/Select/tests/Select.test.stories.js +0 -132
- package/dist/components/Skeleton/tests/Skeleton.test.stories.d.ts +0 -15
- package/dist/components/Skeleton/tests/Skeleton.test.stories.js +0 -23
- package/dist/components/Stepper/tests/Stepper.test.stories.d.ts +0 -20
- package/dist/components/Stepper/tests/Stepper.test.stories.js +0 -28
- package/dist/components/TextArea/tests/TextArea.test.stories.d.ts +0 -28
- package/dist/components/TextArea/tests/TextArea.test.stories.js +0 -99
- package/dist/components/Toast/tests/Toast.test.stories.d.ts +0 -16
- package/dist/components/Toast/tests/Toast.test.stories.js +0 -101
- package/dist/components/View/tests/View.test.stories.d.ts +0 -24
- package/dist/components/View/tests/View.test.stories.js +0 -50
package/dist/bundle.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
(function(
|
1
|
+
(function(M,a){typeof exports=="object"&&typeof module!="undefined"?a(exports,require("react"),require("react-dom")):typeof define=="function"&&define.amd?define(["exports","react","react-dom"],a):(M=typeof globalThis!="undefined"?globalThis:M||self,a(M.Reshaped={},M.React,M.ReactDOM))})(this,(function(M,a,Ce){"use strict";var vd=Object.defineProperty,xd=Object.defineProperties;var yd=Object.getOwnPropertyDescriptors;var hr=Object.getOwnPropertySymbols;var Vl=Object.prototype.hasOwnProperty,Bl=Object.prototype.propertyIsEnumerable;var Ol=M=>{throw TypeError(M)};var Do=(M,a,Ce)=>a in M?vd(M,a,{enumerable:!0,configurable:!0,writable:!0,value:Ce}):M[a]=Ce,g=(M,a)=>{for(var Ce in a||(a={}))Vl.call(a,Ce)&&Do(M,Ce,a[Ce]);if(hr)for(var Ce of hr(a))Bl.call(a,Ce)&&Do(M,Ce,a[Ce]);return M},N=(M,a)=>xd(M,yd(a));var Ee=(M,a)=>{var Ce={};for(var He in M)Vl.call(M,He)&&a.indexOf(He)<0&&(Ce[He]=M[He]);if(M!=null&&hr)for(var He of hr(M))a.indexOf(He)<0&&Bl.call(M,He)&&(Ce[He]=M[He]);return Ce};var Me=(M,a,Ce)=>Do(M,typeof a!="symbol"?a+"":a,Ce),Hl=(M,a,Ce)=>a.has(M)||Ol("Cannot "+Ce);var oe=(M,a,Ce)=>(Hl(M,a,"read from private field"),Ce?Ce.call(M):a.get(M)),pt=(M,a,Ce)=>a.has(M)?Ol("Cannot add the same private member more than once"):a instanceof WeakSet?a.add(M):a.set(M,Ce),Kt=(M,a,Ce,He)=>(Hl(M,a,"write to private field"),He?He.call(M,Ce):a.set(M,Ce),Ce);var Ut,Ie,kt,sn,ln,an,Pn,fr,Ln;var He={exports:{}},fn={};/**
|
2
2
|
* @license React
|
3
3
|
* react-jsx-runtime.production.min.js
|
4
4
|
*
|
@@ -6,7 +6,7 @@
|
|
6
6
|
*
|
7
7
|
* This source code is licensed under the MIT license found in the
|
8
8
|
* LICENSE file in the root directory of this source tree.
|
9
|
-
*/var
|
9
|
+
*/var Po;function ql(){if(Po)return fn;Po=1;var e=a,t=Symbol.for("react.element"),n=Symbol.for("react.fragment"),r=Object.prototype.hasOwnProperty,o=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function i(c,u,m){var _,d={},f=null,h=null;m!==void 0&&(f=""+m),u.key!==void 0&&(f=""+u.key),u.ref!==void 0&&(h=u.ref);for(_ in u)r.call(u,_)&&!s.hasOwnProperty(_)&&(d[_]=u[_]);if(c&&c.defaultProps)for(_ in u=c.defaultProps,u)d[_]===void 0&&(d[_]=u[_]);return{$$typeof:t,type:c,key:f,ref:h,props:d,_owner:o.current}}return fn.Fragment=n,fn.jsx=i,fn.jsxs=i,fn}var hn={};/**
|
10
10
|
* @license React
|
11
11
|
* react-jsx-runtime.development.js
|
12
12
|
*
|
@@ -14,18 +14,18 @@
|
|
14
14
|
*
|
15
15
|
* This source code is licensed under the MIT license found in the
|
16
16
|
* LICENSE file in the root directory of this source tree.
|
17
|
-
*/var
|
18
|
-
`+
|
19
|
-
`),
|
20
|
-
`),
|
21
|
-
`+
|
17
|
+
*/var Lo;function Wl(){return Lo||(Lo=1,process.env.NODE_ENV!=="production"&&(function(){var e=a,t=Symbol.for("react.element"),n=Symbol.for("react.portal"),r=Symbol.for("react.fragment"),o=Symbol.for("react.strict_mode"),s=Symbol.for("react.profiler"),i=Symbol.for("react.provider"),c=Symbol.for("react.context"),u=Symbol.for("react.forward_ref"),m=Symbol.for("react.suspense"),_=Symbol.for("react.suspense_list"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),h=Symbol.for("react.offscreen"),v=Symbol.iterator,p="@@iterator";function b(y){if(y===null||typeof y!="object")return null;var A=v&&y[v]||y[p];return typeof A=="function"?A:null}var x=e.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;function C(y){{for(var A=arguments.length,W=new Array(A>1?A-1:0),Q=1;Q<A;Q++)W[Q-1]=arguments[Q];w("error",y,W)}}function w(y,A,W){{var Q=x.ReactDebugCurrentFrame,we=Q.getStackAddendum();we!==""&&(A+="%s",W=W.concat([we]));var ze=W.map(function(me){return String(me)});ze.unshift("Warning: "+A),Function.prototype.apply.call(console[y],console,ze)}}var j=!1,z=!1,E=!1,k=!1,S=!1,I;I=Symbol.for("react.module.reference");function T(y){return!!(typeof y=="string"||typeof y=="function"||y===r||y===s||S||y===o||y===m||y===_||k||y===h||j||z||E||typeof y=="object"&&y!==null&&(y.$$typeof===f||y.$$typeof===d||y.$$typeof===i||y.$$typeof===c||y.$$typeof===u||y.$$typeof===I||y.getModuleId!==void 0))}function $(y,A,W){var Q=y.displayName;if(Q)return Q;var we=A.displayName||A.name||"";return we!==""?W+"("+we+")":W}function P(y){return y.displayName||"Context"}function D(y){if(y==null)return null;if(typeof y.tag=="number"&&C("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."),typeof y=="function")return y.displayName||y.name||null;if(typeof y=="string")return y;switch(y){case r:return"Fragment";case n:return"Portal";case s:return"Profiler";case o:return"StrictMode";case m:return"Suspense";case _:return"SuspenseList"}if(typeof y=="object")switch(y.$$typeof){case c:var A=y;return P(A)+".Consumer";case i:var W=y;return P(W._context)+".Provider";case u:return $(y,y.render,"ForwardRef");case d:var Q=y.displayName||null;return Q!==null?Q:D(y.type)||"Memo";case f:{var we=y,ze=we._payload,me=we._init;try{return D(me(ze))}catch(ae){return null}}}return null}var B=Object.assign,H=0,L,V,U,q,ie,ee,K;function te(){}te.__reactDisabledLog=!0;function J(){{if(H===0){L=console.log,V=console.info,U=console.warn,q=console.error,ie=console.group,ee=console.groupCollapsed,K=console.groupEnd;var y={configurable:!0,enumerable:!0,value:te,writable:!0};Object.defineProperties(console,{info:y,log:y,warn:y,error:y,group:y,groupCollapsed:y,groupEnd:y})}H++}}function ce(){{if(H--,H===0){var y={configurable:!0,enumerable:!0,writable:!0};Object.defineProperties(console,{log:B({},y,{value:L}),info:B({},y,{value:V}),warn:B({},y,{value:U}),error:B({},y,{value:q}),group:B({},y,{value:ie}),groupCollapsed:B({},y,{value:ee}),groupEnd:B({},y,{value:K})})}H<0&&C("disabledDepth fell below zero. This is a bug in React. Please file an issue.")}}var X=x.ReactCurrentDispatcher,ne;function pe(y,A,W){{if(ne===void 0)try{throw Error()}catch(we){var Q=we.stack.trim().match(/\n( *(at )?)/);ne=Q&&Q[1]||""}return`
|
18
|
+
`+ne+y}}var O=!1,R;{var se=typeof WeakMap=="function"?WeakMap:Map;R=new se}function fe(y,A){if(!y||O)return"";{var W=R.get(y);if(W!==void 0)return W}var Q;O=!0;var we=Error.prepareStackTrace;Error.prepareStackTrace=void 0;var ze;ze=X.current,X.current=null,J();try{if(A){var me=function(){throw Error()};if(Object.defineProperty(me.prototype,"props",{set:function(){throw Error()}}),typeof Reflect=="object"&&Reflect.construct){try{Reflect.construct(me,[])}catch(Qe){Q=Qe}Reflect.construct(y,[],me)}else{try{me.call()}catch(Qe){Q=Qe}y.call(me.prototype)}}else{try{throw Error()}catch(Qe){Q=Qe}y()}}catch(Qe){if(Qe&&Q&&typeof Qe.stack=="string"){for(var ae=Qe.stack.split(`
|
19
|
+
`),Ke=Q.stack.split(`
|
20
|
+
`),Ae=ae.length-1,Be=Ke.length-1;Ae>=1&&Be>=0&&ae[Ae]!==Ke[Be];)Be--;for(;Ae>=1&&Be>=0;Ae--,Be--)if(ae[Ae]!==Ke[Be]){if(Ae!==1||Be!==1)do if(Ae--,Be--,Be<0||ae[Ae]!==Ke[Be]){var at=`
|
21
|
+
`+ae[Ae].replace(" at new "," at ");return y.displayName&&at.includes("<anonymous>")&&(at=at.replace("<anonymous>",y.displayName)),typeof y=="function"&&R.set(y,at),at}while(Ae>=1&&Be>=0);break}}}finally{O=!1,X.current=ze,ce(),Error.prepareStackTrace=we}var _n=y?y.displayName||y.name:"",Gt=_n?pe(_n):"";return typeof y=="function"&&R.set(y,Gt),Gt}function $e(y,A,W){return fe(y,!1)}function De(y){var A=y.prototype;return!!(A&&A.isReactComponent)}function re(y,A,W){if(y==null)return"";if(typeof y=="function")return fe(y,De(y));if(typeof y=="string")return pe(y);switch(y){case m:return pe("Suspense");case _:return pe("SuspenseList")}if(typeof y=="object")switch(y.$$typeof){case u:return $e(y.render);case d:return re(y.type,A,W);case f:{var Q=y,we=Q._payload,ze=Q._init;try{return re(ze(we),A,W)}catch(me){}}}return""}var Z=Object.prototype.hasOwnProperty,le={},he=x.ReactDebugCurrentFrame;function be(y){if(y){var A=y._owner,W=re(y.type,y._source,A?A.type:null);he.setExtraStackFrame(W)}else he.setExtraStackFrame(null)}function Le(y,A,W,Q,we){{var ze=Function.call.bind(Z);for(var me in y)if(ze(y,me)){var ae=void 0;try{if(typeof y[me]!="function"){var Ke=Error((Q||"React class")+": "+W+" type `"+me+"` is invalid; it must be a function, usually from the `prop-types` package, but received `"+typeof y[me]+"`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");throw Ke.name="Invariant Violation",Ke}ae=y[me](A,me,Q,W,null,"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED")}catch(Ae){ae=Ae}ae&&!(ae instanceof Error)&&(be(we),C("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).",Q||"React class",W,me,typeof ae),be(null)),ae instanceof Error&&!(ae.message in le)&&(le[ae.message]=!0,be(we),C("Failed %s type: %s",W,ae.message),be(null))}}}var Re=Array.isArray;function je(y){return Re(y)}function ve(y){{var A=typeof Symbol=="function"&&Symbol.toStringTag,W=A&&y[Symbol.toStringTag]||y.constructor.name||"Object";return W}}function ye(y){try{return Pe(y),!1}catch(A){return!0}}function Pe(y){return""+y}function ke(y){if(ye(y))return C("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.",ve(y)),Pe(y)}var Ue=x.ReactCurrentOwner,ot={key:!0,ref:!0,__self:!0,__source:!0},Ye,Nt;function $t(y){if(Z.call(y,"ref")){var A=Object.getOwnPropertyDescriptor(y,"ref").get;if(A&&A.isReactWarning)return!1}return y.ref!==void 0}function cn(y){if(Z.call(y,"key")){var A=Object.getOwnPropertyDescriptor(y,"key").get;if(A&&A.isReactWarning)return!1}return y.key!==void 0}function dn(y,A){typeof y.ref=="string"&&Ue.current}function So(y,A){{var W=function(){Ye||(Ye=!0,C("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",A))};W.isReactWarning=!0,Object.defineProperty(y,"key",{get:W,configurable:!0})}}function To(y,A){{var W=function(){Nt||(Nt=!0,C("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)",A))};W.isReactWarning=!0,Object.defineProperty(y,"ref",{get:W,configurable:!0})}}var $o=function(y,A,W,Q,we,ze,me){var ae={$$typeof:t,type:y,key:A,ref:W,props:me,_owner:ze};return ae._store={},Object.defineProperty(ae._store,"validated",{configurable:!1,enumerable:!1,writable:!0,value:!1}),Object.defineProperty(ae,"_self",{configurable:!1,enumerable:!1,writable:!1,value:Q}),Object.defineProperty(ae,"_source",{configurable:!1,enumerable:!1,writable:!1,value:we}),Object.freeze&&(Object.freeze(ae.props),Object.freeze(ae)),ae};function Mo(y,A,W,Q,we){{var ze,me={},ae=null,Ke=null;W!==void 0&&(ke(W),ae=""+W),cn(A)&&(ke(A.key),ae=""+A.key),$t(A)&&(Ke=A.ref,dn(A,we));for(ze in A)Z.call(A,ze)&&!ot.hasOwnProperty(ze)&&(me[ze]=A[ze]);if(y&&y.defaultProps){var Ae=y.defaultProps;for(ze in Ae)me[ze]===void 0&&(me[ze]=Ae[ze])}if(ae||Ke){var Be=typeof y=="function"?y.displayName||y.name||"Unknown":y;ae&&So(me,Be),Ke&&To(me,Be)}return $o(y,ae,Ke,we,Q,Ue.current,me)}}var un=x.ReactCurrentOwner,ge=x.ReactDebugCurrentFrame;function Ze(y){if(y){var A=y._owner,W=re(y.type,y._source,A?A.type:null);ge.setExtraStackFrame(W)}else ge.setExtraStackFrame(null)}var Yt;Yt=!1;function mn(y){return typeof y=="object"&&y!==null&&y.$$typeof===t}function An(){{if(un.current){var y=D(un.current.type);if(y)return`
|
22
22
|
|
23
|
-
Check the render method of \``+
|
23
|
+
Check the render method of \``+y+"`."}return""}}function cd(y){return""}var Dl={};function dd(y){{var A=An();if(!A){var W=typeof y=="string"?y:y.displayName||y.name;W&&(A=`
|
24
24
|
|
25
|
-
Check the top-level render call using <`+W+">.")}return
|
25
|
+
Check the top-level render call using <`+W+">.")}return A}}function Pl(y,A){{if(!y._store||y._store.validated||y.key!=null)return;y._store.validated=!0;var W=dd(A);if(Dl[W])return;Dl[W]=!0;var Q="";y&&y._owner&&y._owner!==un.current&&(Q=" It was passed a child from "+D(y._owner.type)+"."),Ze(y),C('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.',W,Q),Ze(null)}}function Ll(y,A){{if(typeof y!="object")return;if(je(y))for(var W=0;W<y.length;W++){var Q=y[W];mn(Q)&&Pl(Q,A)}else if(mn(y))y._store&&(y._store.validated=!0);else if(y){var we=b(y);if(typeof we=="function"&&we!==y.entries)for(var ze=we.call(y),me;!(me=ze.next()).done;)mn(me.value)&&Pl(me.value,A)}}}function ud(y){{var A=y.type;if(A==null||typeof A=="string")return;var W;if(typeof A=="function")W=A.propTypes;else if(typeof A=="object"&&(A.$$typeof===u||A.$$typeof===d))W=A.propTypes;else return;if(W){var Q=D(A);Le(W,y.props,"prop",Q,y)}else if(A.PropTypes!==void 0&&!Yt){Yt=!0;var we=D(A);C("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?",we||"Unknown")}typeof A.getDefaultProps=="function"&&!A.getDefaultProps.isReactClassApproved&&C("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.")}}function md(y){{for(var A=Object.keys(y.props),W=0;W<A.length;W++){var Q=A[W];if(Q!=="children"&&Q!=="key"){Ze(y),C("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.",Q),Ze(null);break}}y.ref!==null&&(Ze(y),C("Invalid attribute `ref` supplied to `React.Fragment`."),Ze(null))}}var Al={};function Fl(y,A,W,Q,we,ze){{var me=T(y);if(!me){var ae="";(y===void 0||typeof y=="object"&&y!==null&&Object.keys(y).length===0)&&(ae+=" You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");var Ke=cd();Ke?ae+=Ke:ae+=An();var Ae;y===null?Ae="null":je(y)?Ae="array":y!==void 0&&y.$$typeof===t?(Ae="<"+(D(y.type)||"Unknown")+" />",ae=" Did you accidentally export a JSX literal instead of a component?"):Ae=typeof y,C("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",Ae,ae)}var Be=Mo(y,A,W,we,ze);if(Be==null)return Be;if(me){var at=A.children;if(at!==void 0)if(Q)if(je(at)){for(var _n=0;_n<at.length;_n++)Ll(at[_n],y);Object.freeze&&Object.freeze(at)}else C("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");else Ll(at,y)}if(Z.call(A,"key")){var Gt=D(y),Qe=Object.keys(A).filter(function(bd){return bd!=="key"}),Io=Qe.length>0?"{key: someKey, "+Qe.join(": ..., ")+": ...}":"{key: someKey}";if(!Al[Gt+Io]){var pd=Qe.length>0?"{"+Qe.join(": ..., ")+": ...}":"{}";C(`A props object containing a "key" prop is being spread into JSX:
|
26
26
|
let props = %s;
|
27
27
|
<%s {...props} />
|
28
28
|
React keys must be passed directly to JSX without using spread:
|
29
29
|
let props = %s;
|
30
|
-
<%s key={someKey} {...props} />`,ko,Yt,cd,Yt),Sl[Yt+ko]=!0}}return b===r?od(Fe):rd(Fe),Fe}}function sd(b,P,W){return Tl(b,P,W,!0)}function id(b,P,W){return Tl(b,P,W,!1)}var ld=id,ad=sd;fn.Fragment=r,fn.jsx=ld,fn.jsxs=ad})()),fn}var $o;function Al(){return $o||($o=1,process.env.NODE_ENV==="production"?Be.exports=Pl():Be.exports=Ll()),Be.exports}var l=Al();const F=(...e)=>e.reduce((t,n)=>{if(Array.isArray(n)){const r=F(...n);return r?`${t} ${r}`:t}return n?`${t} ${n}`:t},"").trim(),Mo=(e,t,n)=>{const{base:r,excludeValueFromClassName:o}=n||{},s=typeof e=="string"?e:e(t);return t===!0&&r||o?s:t===!0&&!r?`${s}-true`:t===!1&&!r?`${s}-false`:t!==void 0?`${s}-${t}`:null},me=(e,t,n,r)=>{if(typeof n!="object"){const o=Mo(t,n,{base:!0,excludeValueFromClassName:r==null?void 0:r.excludeValueFromClassName});return o?[e[o]]:[]}return Object.keys(n).reduce((o,s)=>{const i=s==="s",c=Mo(t,n[s],{base:i,excludeValueFromClassName:r==null?void 0:r.excludeValueFromClassName}),m=i?"":`--${s}`;return[...o,e[`${c}${m}`]]},[])},U=(e,t)=>t===void 0?{}:typeof t!="object"?{[`${e}-s`]:t}:Object.keys(t).reduce((n,r)=>{const o=t[r];return o===void 0||o===!1?n:j(v({},n),{[`${e}-${r}`]:o})},{}),Fl=e=>e===null?!1:typeof e=="object"&&e!==null&&"s"in e,_e=(e,t)=>Fl(e)?Object.keys(e).reduce((r,o)=>{const s=e[o];return s==null?r:j(v({},r),{[o]:t(s,o)})},{}):t(e,"s"),ql=e=>e?{variables:U("--rs-align",e)}:{},Vl=e=>e?{variables:U("--rs-ratio",e)}:{},Io={root:"_root_1l5o9_1","--bleed":"_--bleed_1l5o9_8","--bleed-true--m":"_--bleed-true--m_1l5o9_1","--bleed-false--m":"_--bleed-false--m_1l5o9_1","--bleed-true--l":"_--bleed-true--l_1l5o9_1","--bleed-false--l":"_--bleed-false--l_1l5o9_1","--bleed-true--xl":"_--bleed-true--xl_1l5o9_1","--bleed-false--xl":"_--bleed-false--xl_1l5o9_1"},Bl=e=>{if(e===void 0)return{};const t=me(Io,"--bleed",_e(e,r=>typeof r=="number"&&r>0)),n=U("--rs-bleed",e);return{classNames:[Io.root,t],variables:n}},Ol={"--border-neutral":"_--border-neutral_xj2hx_1","--border-neutral-faded":"_--border-neutral-faded_xj2hx_1","--border-positive":"_--border-positive_xj2hx_1","--border-positive-faded":"_--border-positive-faded_xj2hx_1","--border-warning":"_--border-warning_xj2hx_1","--border-warning-faded":"_--border-warning-faded_xj2hx_1","--border-critical":"_--border-critical_xj2hx_1","--border-critical-faded":"_--border-critical-faded_xj2hx_1","--border-primary":"_--border-primary_xj2hx_1","--border-primary-faded":"_--border-primary-faded_xj2hx_1","--border-disabled":"_--border-disabled_xj2hx_1","--border-brand":"_--border-brand_xj2hx_1","--border-transparent":"_--border-transparent_xj2hx_1","--border-neutral--m":"_--border-neutral--m_xj2hx_1","--border-neutral-faded--m":"_--border-neutral-faded--m_xj2hx_1","--border-positive--m":"_--border-positive--m_xj2hx_1","--border-positive-faded--m":"_--border-positive-faded--m_xj2hx_1","--border-warning--m":"_--border-warning--m_xj2hx_1","--border-warning-faded--m":"_--border-warning-faded--m_xj2hx_1","--border-critical--m":"_--border-critical--m_xj2hx_1","--border-critical-faded--m":"_--border-critical-faded--m_xj2hx_1","--border-primary--m":"_--border-primary--m_xj2hx_1","--border-primary-faded--m":"_--border-primary-faded--m_xj2hx_1","--border-disabled--m":"_--border-disabled--m_xj2hx_1","--border-brand--m":"_--border-brand--m_xj2hx_1","--border-transparent--m":"_--border-transparent--m_xj2hx_1","--border-neutral--l":"_--border-neutral--l_xj2hx_1","--border-neutral-faded--l":"_--border-neutral-faded--l_xj2hx_1","--border-positive--l":"_--border-positive--l_xj2hx_1","--border-positive-faded--l":"_--border-positive-faded--l_xj2hx_1","--border-warning--l":"_--border-warning--l_xj2hx_1","--border-warning-faded--l":"_--border-warning-faded--l_xj2hx_1","--border-critical--l":"_--border-critical--l_xj2hx_1","--border-critical-faded--l":"_--border-critical-faded--l_xj2hx_1","--border-primary--l":"_--border-primary--l_xj2hx_1","--border-primary-faded--l":"_--border-primary-faded--l_xj2hx_1","--border-disabled--l":"_--border-disabled--l_xj2hx_1","--border-brand--l":"_--border-brand--l_xj2hx_1","--border-transparent--l":"_--border-transparent--l_xj2hx_1","--border-neutral--xl":"_--border-neutral--xl_xj2hx_1","--border-neutral-faded--xl":"_--border-neutral-faded--xl_xj2hx_1","--border-positive--xl":"_--border-positive--xl_xj2hx_1","--border-positive-faded--xl":"_--border-positive-faded--xl_xj2hx_1","--border-warning--xl":"_--border-warning--xl_xj2hx_1","--border-warning-faded--xl":"_--border-warning-faded--xl_xj2hx_1","--border-critical--xl":"_--border-critical--xl_xj2hx_1","--border-critical-faded--xl":"_--border-critical-faded--xl_xj2hx_1","--border-primary--xl":"_--border-primary--xl_xj2hx_1","--border-primary-faded--xl":"_--border-primary-faded--xl_xj2hx_1","--border-disabled--xl":"_--border-disabled--xl_xj2hx_1","--border-brand--xl":"_--border-brand--xl_xj2hx_1","--border-transparent--xl":"_--border-transparent--xl_xj2hx_1"},Hl=e=>e?{variables:U("--rs-border-w",_e(e,t=>t?"1px":"0px"))}:{},Wl=e=>e?{variables:U("--rs-border-w-top",_e(e,t=>t?"1px":"0px"))}:{},Rl=e=>e?{variables:U("--rs-border-w-bottom",_e(e,t=>t?"1px":"0px"))}:{},Ul=e=>e?{variables:U("--rs-border-w-start",_e(e,t=>t?"1px":"0px"))}:{},Yl=e=>e?{variables:U("--rs-border-w-end",_e(e,t=>t?"1px":"0px"))}:{},Gl=e=>e?{variables:U("--rs-border-w-block",_e(e,t=>t?"1px":"0px"))}:{},Kl=e=>e?{variables:U("--rs-border-w-inline",_e(e,t=>t?"1px":"0px"))}:{},Xl=e=>e?{classNames:me(Ol,"--border",e)}:{},Do={root:"_root_14o7b_5","--type-literal":"_--type-literal_14o7b_14","--type-unit":"_--type-unit_14o7b_18","--type-literal--m":"_--type-literal--m_14o7b_1","--type-unit--m":"_--type-unit--m_14o7b_1","--type-literal--l":"_--type-literal--l_14o7b_1","--type-unit--l":"_--type-unit--l_14o7b_1","--type-literal--xl":"_--type-literal--xl_14o7b_1","--type-unit--xl":"_--type-unit--xl_14o7b_1"},Jl=e=>{if(!e)return{};const t=U("--rs-h",e),n=me(Do,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Do.root,n],variables:t}},Zl=e=>e===void 0?{}:{variables:U("--rs-inset",e)},Ql=e=>e===void 0?{}:{variables:U("--rs-inset-top",e)},ea=e=>e===void 0?{}:{variables:U("--rs-inset-bottom",e)},ta=e=>e===void 0?{}:{variables:U("--rs-inset-start",e)},na=e=>e===void 0?{}:{variables:U("--rs-inset-end",e)},ra=e=>e===void 0?{}:{variables:U("--rs-inset-inline",e)},oa=e=>e===void 0?{}:{variables:U("--rs-inset-block",e)},sa=e=>e?{variables:U("--rs-justify",e)}:{},Po={root:"_root_zg3so_1","--type-literal":"_--type-literal_zg3so_1","--type-unit":"_--type-unit_zg3so_1","--type-literal--m":"_--type-literal--m_zg3so_1","--type-unit--m":"_--type-unit--m_zg3so_1","--type-literal--l":"_--type-literal--l_zg3so_1","--type-unit--l":"_--type-unit--l_zg3so_1","--type-literal--xl":"_--type-literal--xl_zg3so_1","--type-unit--xl":"_--type-unit--xl_zg3so_1"},ia=e=>{if(!e)return{};const t=U("--rs-max-h",e),n=me(Po,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Po.root,n],variables:t}},Lo={root:"_root_1eres_1","--type-literal":"_--type-literal_1eres_1","--type-unit":"_--type-unit_1eres_1","--type-literal--m":"_--type-literal--m_1eres_1","--type-unit--m":"_--type-unit--m_1eres_1","--type-literal--l":"_--type-literal--l_1eres_1","--type-unit--l":"_--type-unit--l_1eres_1","--type-literal--xl":"_--type-literal--xl_1eres_1","--type-unit--xl":"_--type-unit--xl_1eres_1"},la=e=>{if(!e)return{};const t=U("--rs-max-w",e),n=me(Lo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Lo.root,n],variables:t}},Ao={root:"_root_oqaqc_1","--type-literal":"_--type-literal_oqaqc_1","--type-unit":"_--type-unit_oqaqc_1","--type-literal--m":"_--type-literal--m_oqaqc_1","--type-unit--m":"_--type-unit--m_oqaqc_1","--type-literal--l":"_--type-literal--l_oqaqc_1","--type-unit--l":"_--type-unit--l_oqaqc_1","--type-literal--xl":"_--type-literal--xl_oqaqc_1","--type-unit--xl":"_--type-unit--xl_oqaqc_1"},aa=e=>{if(!e)return{};const t=U("--rs-min-h",e),n=me(Ao,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Ao.root,n],variables:t}},Fo={root:"_root_1srxp_1","--type-literal":"_--type-literal_1srxp_1","--type-unit":"_--type-unit_1srxp_1","--type-literal--m":"_--type-literal--m_1srxp_1","--type-unit--m":"_--type-unit--m_1srxp_1","--type-literal--l":"_--type-literal--l_1srxp_1","--type-unit--l":"_--type-unit--l_1srxp_1","--type-literal--xl":"_--type-literal--xl_1srxp_1","--type-unit--xl":"_--type-unit--xl_1srxp_1"},ca=e=>{if(!e)return{};const t=U("--rs-min-w",e),n=me(Fo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Fo.root,n],variables:t}},da=e=>e?{variables:U("--rs-position",e)}:{},qo={root:"_root_w529z_1","--radius-none":"_--radius-none_w529z_1","--radius-small":"_--radius-small_w529z_1","--radius-medium":"_--radius-medium_w529z_1","--radius-large":"_--radius-large_w529z_1","--radius-circular":"_--radius-circular_w529z_1","--radius-none--m":"_--radius-none--m_w529z_1","--radius-small--m":"_--radius-small--m_w529z_1","--radius-medium--m":"_--radius-medium--m_w529z_1","--radius-large--m":"_--radius-large--m_w529z_1","--radius-circular--m":"_--radius-circular--m_w529z_1","--radius-none--l":"_--radius-none--l_w529z_1","--radius-small--l":"_--radius-small--l_w529z_1","--radius-medium--l":"_--radius-medium--l_w529z_1","--radius-large--l":"_--radius-large--l_w529z_1","--radius-circular--l":"_--radius-circular--l_w529z_1","--radius-none--xl":"_--radius-none--xl_w529z_1","--radius-small--xl":"_--radius-small--xl_w529z_1","--radius-medium--xl":"_--radius-medium--xl_w529z_1","--radius-large--xl":"_--radius-large--xl_w529z_1","--radius-circular--xl":"_--radius-circular--xl_w529z_1"},ua=e=>e?{classNames:[qo.root,...me(qo,"--radius",e)]}:{},ma=e=>e?{variables:U("--rs-text-align",e)}:{},Vo={root:"_root_92dhb_1","--type-literal":"_--type-literal_92dhb_1","--type-unit":"_--type-unit_92dhb_1","--type-literal--m":"_--type-literal--m_92dhb_1","--type-unit--m":"_--type-unit--m_92dhb_1","--type-literal--l":"_--type-literal--l_92dhb_1","--type-unit--l":"_--type-unit--l_92dhb_1","--type-literal--xl":"_--type-literal--xl_92dhb_1","--type-unit--xl":"_--type-unit--xl_92dhb_1"},_a={align:ql,aspectRatio:Vl,bleed:Bl,border:Hl,borderTop:Wl,borderBottom:Rl,borderStart:Ul,borderEnd:Yl,borderInline:Kl,borderBlock:Gl,borderColor:Xl,height:Jl,padding:e=>e?{variables:U("--rs-p",e)}:{},paddingTop:e=>e===void 0?{}:{variables:U("--rs-p-top",e)},paddingBottom:e=>e===void 0?{}:{variables:U("--rs-p-bottom",e)},paddingStart:e=>e===void 0?{}:{variables:U("--rs-p-start",e)},paddingEnd:e=>e===void 0?{}:{variables:U("--rs-p-end",e)},paddingInline:e=>e===void 0?{}:{variables:U("--rs-p-inline",e)},paddingBlock:e=>e===void 0?{}:{variables:U("--rs-p-block",e)},inset:Zl,insetTop:Ql,insetBottom:ea,insetStart:ta,insetEnd:na,insetInline:ra,insetBlock:oa,justify:sa,maxHeight:ia,maxWidth:la,minHeight:aa,minWidth:ca,position:da,radius:ua,textAlign:ma,width:e=>{if(!e)return{};const t=U("--rs-w",e),n=me(Vo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Vo.root,n],variables:t}}},at=e=>{const t={variables:{},classNames:[]};return Object.entries(e).forEach(([r,o])=>{const s=_a[r],i=s(o);i.variables&&(t.variables=v(v({},t.variables),i.variables)),i.classNames&&t.classNames.push(i.classNames)}),t},bt={root:"_root_1lqzv_1","--clamp":"_--clamp_1lqzv_6","--break-all":"_--break-all_1lqzv_13","--wrap-balance":"_--wrap-balance_1lqzv_17","--variant-title-1":"_--variant-title-1_1lqzv_1","--variant-title-2":"_--variant-title-2_1lqzv_1","--variant-title-3":"_--variant-title-3_1lqzv_1","--variant-title-4":"_--variant-title-4_1lqzv_1","--variant-title-5":"_--variant-title-5_1lqzv_1","--variant-title-6":"_--variant-title-6_1lqzv_1","--variant-featured-1":"_--variant-featured-1_1lqzv_1","--variant-featured-2":"_--variant-featured-2_1lqzv_1","--variant-featured-3":"_--variant-featured-3_1lqzv_1","--variant-body-1":"_--variant-body-1_1lqzv_1","--variant-body-2":"_--variant-body-2_1lqzv_1","--variant-body-3":"_--variant-body-3_1lqzv_1","--variant-caption-1":"_--variant-caption-1_1lqzv_1","--variant-caption-2":"_--variant-caption-2_1lqzv_1","--weight-regular":"_--weight-regular_1lqzv_1","--weight-medium":"_--weight-medium_1lqzv_1","--weight-bold":"_--weight-bold_1lqzv_1","--color-neutral":"_--color-neutral_1lqzv_1","--color-neutral-faded":"_--color-neutral-faded_1lqzv_1","--color-primary":"_--color-primary_1lqzv_1","--color-warning":"_--color-warning_1lqzv_1","--color-positive":"_--color-positive_1lqzv_1","--color-critical":"_--color-critical_1lqzv_1","--color-disabled":"_--color-disabled_1lqzv_1","--decoration-line-through":"_--decoration-line-through_1lqzv_155","--monospace":"_--monospace_1lqzv_159","--variant-title-1--m":"_--variant-title-1--m_1lqzv_1","--variant-title-2--m":"_--variant-title-2--m_1lqzv_1","--variant-title-3--m":"_--variant-title-3--m_1lqzv_1","--variant-title-4--m":"_--variant-title-4--m_1lqzv_1","--variant-title-5--m":"_--variant-title-5--m_1lqzv_1","--variant-title-6--m":"_--variant-title-6--m_1lqzv_1","--variant-featured-1--m":"_--variant-featured-1--m_1lqzv_1","--variant-featured-2--m":"_--variant-featured-2--m_1lqzv_1","--variant-featured-3--m":"_--variant-featured-3--m_1lqzv_1","--variant-body-1--m":"_--variant-body-1--m_1lqzv_1","--variant-body-2--m":"_--variant-body-2--m_1lqzv_1","--variant-body-3--m":"_--variant-body-3--m_1lqzv_1","--variant-caption-1--m":"_--variant-caption-1--m_1lqzv_1","--variant-caption-2--m":"_--variant-caption-2--m_1lqzv_1","--weight-regular--m":"_--weight-regular--m_1lqzv_1","--weight-medium--m":"_--weight-medium--m_1lqzv_1","--weight-bold--m":"_--weight-bold--m_1lqzv_1","--variant-title-1--l":"_--variant-title-1--l_1lqzv_1","--variant-title-2--l":"_--variant-title-2--l_1lqzv_1","--variant-title-3--l":"_--variant-title-3--l_1lqzv_1","--variant-title-4--l":"_--variant-title-4--l_1lqzv_1","--variant-title-5--l":"_--variant-title-5--l_1lqzv_1","--variant-title-6--l":"_--variant-title-6--l_1lqzv_1","--variant-featured-1--l":"_--variant-featured-1--l_1lqzv_1","--variant-featured-2--l":"_--variant-featured-2--l_1lqzv_1","--variant-featured-3--l":"_--variant-featured-3--l_1lqzv_1","--variant-body-1--l":"_--variant-body-1--l_1lqzv_1","--variant-body-2--l":"_--variant-body-2--l_1lqzv_1","--variant-body-3--l":"_--variant-body-3--l_1lqzv_1","--variant-caption-1--l":"_--variant-caption-1--l_1lqzv_1","--variant-caption-2--l":"_--variant-caption-2--l_1lqzv_1","--weight-regular--l":"_--weight-regular--l_1lqzv_1","--weight-medium--l":"_--weight-medium--l_1lqzv_1","--weight-bold--l":"_--weight-bold--l_1lqzv_1","--variant-title-1--xl":"_--variant-title-1--xl_1lqzv_1","--variant-title-2--xl":"_--variant-title-2--xl_1lqzv_1","--variant-title-3--xl":"_--variant-title-3--xl_1lqzv_1","--variant-title-4--xl":"_--variant-title-4--xl_1lqzv_1","--variant-title-5--xl":"_--variant-title-5--xl_1lqzv_1","--variant-title-6--xl":"_--variant-title-6--xl_1lqzv_1","--variant-featured-1--xl":"_--variant-featured-1--xl_1lqzv_1","--variant-featured-2--xl":"_--variant-featured-2--xl_1lqzv_1","--variant-featured-3--xl":"_--variant-featured-3--xl_1lqzv_1","--variant-body-1--xl":"_--variant-body-1--xl_1lqzv_1","--variant-body-2--xl":"_--variant-body-2--xl_1lqzv_1","--variant-body-3--xl":"_--variant-body-3--xl_1lqzv_1","--variant-caption-1--xl":"_--variant-caption-1--xl_1lqzv_1","--variant-caption-2--xl":"_--variant-caption-2--xl_1lqzv_1","--weight-regular--xl":"_--weight-regular--xl_1lqzv_1","--weight-medium--xl":"_--weight-medium--xl_1lqzv_1","--weight-bold--xl":"_--weight-bold--xl_1lqzv_1"},fa={"title-1":"h1","title-2":"h2","title-3":"h3","title-4":"h4","title-5":"h5","title-6":"h6"},fe=e=>{const{variant:t,color:n,weight:r,align:o,decoration:s,maxLines:i,wrap:c,monospace:m,children:u,className:_,attributes:d}=e,h=typeof t=="string"?t:(t==null?void 0:t.xl)||(t==null?void 0:t.l)||(t==null?void 0:t.m)||(t==null?void 0:t.s),g=at({textAlign:o}),p=e.as||h&&fa[h]||"div",f=F(bt.root,n&&bt[`--color-${n}`],...me(bt,"--variant",t),...me(bt,"--weight",r),s&&bt[`--decoration-${s}`],i!==void 0&&bt["--clamp"],i===1&&bt["--break-all"],c&&bt[`--wrap-${c}`],m&&bt["--monospace"],_,g.classNames),x=j(v(v({},d==null?void 0:d.style),g.variables),{"--rs-text-lines":i});return l.jsx(p,j(v({},d),{className:f,style:x,children:u}))};fe.displayName="Text";const hn={root:"_root_1tql4_1","--blank":"_--blank_1tql4_22","--vertical":"_--vertical_1tql4_28",label:"_label_1tql4_54","--content-position-center":"_--content-position-center_1tql4_78","--content-position-start":"_--content-position-start_1tql4_85","--vertical-true--m":"_--vertical-true--m_1tql4_1","--vertical-false--m":"_--vertical-false--m_1tql4_1","--vertical-true--l":"_--vertical-true--l_1tql4_1","--vertical-false--l":"_--vertical-false--l_1tql4_1","--vertical-true--xl":"_--vertical-true--xl_1tql4_1","--vertical-false--xl":"_--vertical-false--xl_1tql4_1"},gn=e=>{const{vertical:t,blank:n,children:r,contentPosition:o="center",className:s,attributes:i}=e,c=F(hn.root,s,n&&hn["--blank"],r?hn[`--content-position-${o}`]:void 0,...me(hn,"--vertical",t));let m;return(typeof t=="boolean"||t===void 0)&&(m=t?"vertical":"horizontal"),l.jsx("div",j(v({},i),{role:"separator","aria-orientation":m,className:c,children:r&&l.jsx(fe,{color:"neutral-faded",variant:"caption-1",className:hn.label,children:r})}))};gn.displayName="Divider";const fr={root:"_root_11ilc_1","--hidden":"_--hidden_11ilc_5","--visibility":"_--visibility_11ilc_9","--hidden-true--m":"_--hidden-true--m_11ilc_1","--hidden-false--m":"_--hidden-false--m_11ilc_1","--hidden-true--l":"_--hidden-true--l_11ilc_1","--hidden-false--l":"_--hidden-false--l_11ilc_1","--hidden-true--xl":"_--hidden-true--xl_11ilc_1","--hidden-false--xl":"_--hidden-false--xl_11ilc_1"},Mt=e=>{const{as:t="div",children:n,visibility:r,hide:o}=e,s=F(fr.root,...me(fr,"--hidden",o),r&&fr["--visibility"]);return l.jsx(t,{className:s,children:n})};Mt.displayName="Hidden";const Le={root:"_root_9u073_1",item:"_item_9u073_11","--animated":"_--animated_9u073_19","--bg-neutral":"_--bg-neutral_9u073_1","--bg-positive":"_--bg-positive_9u073_1","--bg-warning":"_--bg-warning_9u073_1","--bg-critical":"_--bg-critical_9u073_1","--bg-primary":"_--bg-primary_9u073_1","--bg-neutral-faded":"_--bg-neutral-faded_9u073_1","--bg-positive-faded":"_--bg-positive-faded_9u073_1","--bg-warning-faded":"_--bg-warning-faded_9u073_1","--bg-critical-faded":"_--bg-critical-faded_9u073_1","--bg-primary-faded":"_--bg-primary-faded_9u073_1","--bg-page":"_--bg-page_9u073_1","--bg-page-faded":"_--bg-page-faded_9u073_1","--bg-disabled":"_--bg-disabled_9u073_1","--bg-disabled-faded":"_--bg-disabled-faded_9u073_1","--bg-elevation-base":"_--bg-elevation-base_9u073_1","--bg-elevation-raised":"_--bg-elevation-raised_9u073_1","--bg-elevation-overlay":"_--bg-elevation-overlay_9u073_1","--bg-brand":"_--bg-brand_9u073_39","--bg-white":"_--bg-white_9u073_44","--bg-black":"_--bg-black_9u073_49","--shadow-raised":"_--shadow-raised_9u073_54","--shadow-overlay":"_--shadow-overlay_9u073_58","--overflow-hidden":"_--overflow-hidden_9u073_62","--overflow-auto":"_--overflow-auto_9u073_66","--divided":"_--divided_9u073_70","--flex":"_--flex_9u073_74","--direction-column":"_--direction-column_9u073_1","item--gap-before":"_item--gap-before_9u073_86","item--gap-auto":"_item--gap-auto_9u073_90","--direction-column-reverse":"_--direction-column-reverse_9u073_1","--direction-row":"_--direction-row_9u073_1","--direction-row-reverse":"_--direction-row-reverse_9u073_1","--nowrap":"_--nowrap_9u073_145","--wrap":"_--wrap_9u073_153","--nowrap-false--m":"_--nowrap-false--m_9u073_1","--wrap-true--m":"_--wrap-true--m_9u073_1","--nowrap-true--m":"_--nowrap-true--m_9u073_1","--wrap-false--m":"_--wrap-false--m_9u073_1","--nowrap-false--l":"_--nowrap-false--l_9u073_1","--wrap-true--l":"_--wrap-true--l_9u073_1","--nowrap-true--l":"_--nowrap-true--l_9u073_1","--wrap-false--l":"_--wrap-false--l_9u073_1","--nowrap-false--xl":"_--nowrap-false--xl_9u073_1","--wrap-true--xl":"_--wrap-true--xl_9u073_1","--nowrap-true--xl":"_--nowrap-true--xl_9u073_1","--wrap-false--xl":"_--wrap-false--xl_9u073_1",divider:"_divider_9u073_171","item--grow":"_item--grow_9u073_175","item--shrink":"_item--shrink_9u073_193","item--columns":"_item--columns_9u073_197","item--columns-1":"_item--columns-1_9u073_1","item--columns-2":"_item--columns-2_9u073_1","item--columns-3":"_item--columns-3_9u073_1","item--columns-4":"_item--columns-4_9u073_1","item--columns-5":"_item--columns-5_9u073_1","item--columns-6":"_item--columns-6_9u073_1","item--columns-7":"_item--columns-7_9u073_1","item--columns-8":"_item--columns-8_9u073_1","item--columns-9":"_item--columns-9_9u073_1","item--columns-10":"_item--columns-10_9u073_1","item--columns-11":"_item--columns-11_9u073_1","item--columns-12":"_item--columns-12_9u073_1","item--columns-auto":"_item--columns-auto_9u073_218","item--columns-1--m":"_item--columns-1--m_9u073_1","item--columns-auto--m":"_item--columns-auto--m_9u073_1","item--columns-2--m":"_item--columns-2--m_9u073_1","item--columns-3--m":"_item--columns-3--m_9u073_1","item--columns-4--m":"_item--columns-4--m_9u073_1","item--columns-5--m":"_item--columns-5--m_9u073_1","item--columns-6--m":"_item--columns-6--m_9u073_1","item--columns-7--m":"_item--columns-7--m_9u073_1","item--columns-8--m":"_item--columns-8--m_9u073_1","item--columns-9--m":"_item--columns-9--m_9u073_1","item--columns-10--m":"_item--columns-10--m_9u073_1","item--columns-11--m":"_item--columns-11--m_9u073_1","item--columns-12--m":"_item--columns-12--m_9u073_1","item--columns-1--l":"_item--columns-1--l_9u073_1","item--columns-auto--l":"_item--columns-auto--l_9u073_1","item--columns-2--l":"_item--columns-2--l_9u073_1","item--columns-3--l":"_item--columns-3--l_9u073_1","item--columns-4--l":"_item--columns-4--l_9u073_1","item--columns-5--l":"_item--columns-5--l_9u073_1","item--columns-6--l":"_item--columns-6--l_9u073_1","item--columns-7--l":"_item--columns-7--l_9u073_1","item--columns-8--l":"_item--columns-8--l_9u073_1","item--columns-9--l":"_item--columns-9--l_9u073_1","item--columns-10--l":"_item--columns-10--l_9u073_1","item--columns-11--l":"_item--columns-11--l_9u073_1","item--columns-12--l":"_item--columns-12--l_9u073_1","item--columns-1--xl":"_item--columns-1--xl_9u073_1","item--columns-auto--xl":"_item--columns-auto--xl_9u073_1","item--columns-2--xl":"_item--columns-2--xl_9u073_1","item--columns-3--xl":"_item--columns-3--xl_9u073_1","item--columns-4--xl":"_item--columns-4--xl_9u073_1","item--columns-5--xl":"_item--columns-5--xl_9u073_1","item--columns-6--xl":"_item--columns-6--xl_9u073_1","item--columns-7--xl":"_item--columns-7--xl_9u073_1","item--columns-8--xl":"_item--columns-8--xl_9u073_1","item--columns-9--xl":"_item--columns-9--xl_9u073_1","item--columns-10--xl":"_item--columns-10--xl_9u073_1","item--columns-11--xl":"_item--columns-11--xl_9u073_1","item--columns-12--xl":"_item--columns-12--xl_9u073_1","--direction-column--m":"_--direction-column--m_9u073_1","--direction-column-reverse--m":"_--direction-column-reverse--m_9u073_1","--direction-row--m":"_--direction-row--m_9u073_1","--direction-row-reverse--m":"_--direction-row-reverse--m_9u073_1","item--grow-true--m":"_item--grow-true--m_9u073_1","item--grow-false--m":"_item--grow-false--m_9u073_1","--direction-column--l":"_--direction-column--l_9u073_1","--direction-column-reverse--l":"_--direction-column-reverse--l_9u073_1","--direction-row--l":"_--direction-row--l_9u073_1","--direction-row-reverse--l":"_--direction-row-reverse--l_9u073_1","item--grow-true--l":"_item--grow-true--l_9u073_1","item--grow-false--l":"_item--grow-false--l_9u073_1","--direction-column--xl":"_--direction-column--xl_9u073_1","--direction-column-reverse--xl":"_--direction-column-reverse--xl_9u073_1","--direction-row--xl":"_--direction-row--xl_9u073_1","--direction-row-reverse--xl":"_--direction-row-reverse--xl_9u073_1","item--grow-true--xl":"_item--grow-true--xl_9u073_1","item--grow-false--xl":"_item--grow-false--xl_9u073_1"},hr=e=>{const{columns:t,grow:n,shrink:r,gapBefore:o,as:s="div",order:i,children:c,className:m,attributes:u}=e,_=F(Le.item,m,o==="auto"&&Le["item--gap-auto"],o!==void 0&&Le["item--gap-before"],t&&Le["item--columns"],r&&Le["item--shrink"],...me(Le,"item--grow",n),...me(Le,"item--columns",t)),d=v(v({},U("--rs-view-item-order",i)),U("--rs-view-item-gap-before",o));return l.jsx(s,j(v({},u),{style:v(v({},u==null?void 0:u.style),d),className:_,children:c}))},G=e=>{var De;const{align:t,justify:n,wrap:r,gap:o,height:s,width:i,aspectRatio:c,maxHeight:m,maxWidth:u,minHeight:_,minWidth:d,padding:h,paddingInline:g,paddingBlock:p,paddingBottom:f,paddingEnd:x,paddingStart:w,paddingTop:C,bleed:y,animated:z,backgroundColor:E,borderColor:S,borderTop:N,borderBottom:k,borderStart:M,borderEnd:T,borderInline:$,borderBlock:D,borderRadius:A,shadow:q,textAlign:V,overflow:L,position:B,inset:K,insetTop:Y,insetBottom:le,insetStart:te,insetEnd:H,zIndex:Z,grow:X,shrink:ye,as:O="div",children:R,divided:ee,className:Q,attributes:re}=e,Te=(De=e.border)!=null?De:S?!N&&!k&&!M&&!T&&!$&&!D:void 0;let Ce=!!t||!!n||!!o||!!e.direction;const ke=e.direction||(Ce?"column":void 0),Ee=at({align:t,inset:K,insetTop:Y,insetBottom:le,insetStart:te,insetEnd:H,bleed:y,width:i,height:s,maxWidth:u,maxHeight:m,minWidth:d,minHeight:_,position:B,aspectRatio:c,textAlign:V,justify:n,padding:h,paddingInline:g,paddingBlock:p,paddingBottom:f,paddingEnd:x,paddingStart:w,paddingTop:C,borderColor:S,border:Te,borderTop:N,borderBottom:k,borderStart:M,borderEnd:T,borderInline:$,borderBlock:D,radius:A});let ne=0,ae;const he=({className:se,key:ie})=>{const Je=F(Le.divider,se);let Ve=!1;return typeof ke=="string"&&ke.startsWith("row")?Ve=!0:ke&&(Ve=Object.keys(ke).reduce((Ue,Ze)=>{const it=ke[Ze];return it?j(v({},Ue),{[Ze]:it.startsWith("row")}):Ue},{})),l.jsx("div",{className:Je,children:l.jsx(gn,{vertical:Ve,blank:!0})},`${ie}-divider`)},de=({className:se,child:ie,index:Je})=>{var an,cn;const Ve=ie.type===hr,Ye=ie.type===G,Ue=ie.key,Ze=!!Je&&ee&&he({className:se,key:Ue});let it;return Ve?it=a.cloneElement(ie,{className:F(se,ie.props.className)}):!se&&(a.isValidElement(ie)||a.Children.count(R===1)||typeof ie=="string")?it=ie:it=l.jsx("div",{className:se,children:ie},Ue),(Ve||Ye)&&((an=ie.props)!=null&&an.grow)&&(ae=ie.props.grow,Ce=!0),Ve&&((cn=ie.props)==null?void 0:cn.gap)==="auto"&&(ae=!0),l.jsxs(a.Fragment,{children:[Ze,it]},Ue?`${Ue}-fragment`:void 0)},pe=a.Children.map(R,(se,ie)=>{if(!se)return null;const Je=ne;if(ne+=1,se.type===Mt){const Ve=se.props,{children:Ye}=Ve,Ue=$e(Ve,["children"]),Ze=se.key||ie;return a.createElement(Mt,j(v({},Ue),{key:Ze}),de({child:Ye,index:Je}))}return se.type===a.Fragment&&a.Children.count(se.props.children)>1?se.props.children.map(Ye=>Ye?(ne+=1,de({child:Ye,index:ne})):null):de({child:se,index:Je})}),we=F(Le.root,Q,Ee.classNames,E&&Le[`--bg-${E}`],q&&Le[`--shadow-${q}`],L&&Le[`--overflow-${L}`],z&&Le["--animated"],ee&&Le["--divided"],(Ce||ae)&&Le["--flex"],...me(Le,"--direction",ke),...me(Le,"--nowrap",ae||r===!1),...me(Le,"--wrap",r),...me(Le,"item--grow",X),ye&&Le["item--shrink"]),We=v(v(v(v({},re==null?void 0:re.style),U("--rs-view-gap",o)),Ee.variables),Z?{"--rs-view-z":Z}:{});return l.jsx(O,j(v({},re),{className:we,style:We,children:pe}))};G.Item=hr,G.displayName="View",hr.displayName="View.Item";const In={root:"_root_kbofm_1","--position-top":"_--position-top_kbofm_1","--position-top-start":"_--position-top-start_kbofm_1","--position-top-end":"_--position-top-end_kbofm_1","--position-bottom":"_--position-bottom_kbofm_101","--position-bottom-start":"_--position-bottom-start_kbofm_1","--position-bottom-end":"_--position-bottom-end_kbofm_1","--elevated":"_--elevated_kbofm_66","--active":"_--active_kbofm_80"},ha=["top","bottom"],Bo=e=>{const{position:t="bottom",positionType:n,offset:r,padding:o,paddingBlock:s=3,paddingInline:i=4,children:c,elevated:m,active:u=!0,className:_,attributes:d}=e,h=n!=null?n:r?"absolute":ha.includes(t)?"relative":"absolute",g=r!=null?r:h==="relative"?void 0:4,p=g&&U("--rs-action-bar-offset",g),f=F(In.root,(m||!!p)&&In["--elevated"],t&&In[`--position-${t}`],u&&In["--active"],_);return l.jsx(G,{className:f,attributes:j(v({},d),{style:v(v({},d==null?void 0:d.style),p)}),position:h,paddingBlock:o||s,paddingInline:o||i,children:c})};Bo.displayName="ActionBar";const gr={root:"_root_lf5ct_1","--auto":"_--auto_lf5ct_9","--color-neutral":"_--color-neutral_lf5ct_1","--color-neutral-faded":"_--color-neutral-faded_lf5ct_1","--color-primary":"_--color-primary_lf5ct_1","--color-positive":"_--color-positive_lf5ct_1","--color-warning":"_--color-warning_lf5ct_1","--color-critical":"_--color-critical_lf5ct_1","--color-disabled":"_--color-disabled_lf5ct_1"},ze=e=>{const{svg:t,className:n,color:r,size:o="1em",autoWidth:s,attributes:i}=e,c=at({height:o}),m=F(gr.root,n,c.classNames,r&&gr[`--color-${r}`],s&&gr["--auto"]),u=a.isValidElement(t)?t:l.jsx(t,{}),_=v(v({},i==null?void 0:i.style),c.variables);return l.jsx("span",j(v({},i),{"aria-hidden":"true",className:m,style:_,children:a.cloneElement(u,{focusable:!1})}))};ze.displayName="Icon";const ga={icon:"_icon_1elkf_1"},Oo=e=>{const{title:t,children:n,icon:r,actionsSlot:o,color:s="neutral",inline:i,bleed:c,className:m,attributes:u}=e,_=s==="neutral",d=()=>i?l.jsxs(l.Fragment,{children:[t&&l.jsx(fe,{variant:"body-3",weight:"medium",as:"span",children:t}),t&&n&&" ",n&&l.jsx(fe,{variant:"body-3",as:"span",children:n})]}):l.jsxs(G,{gap:1,grow:!0,children:[t&&l.jsx(fe,{variant:"body-3",weight:"medium",children:t}),n&&l.jsx(fe,{variant:"body-3",children:n})]}),h=g=>o?l.jsxs(G,{gap:i?4:2,direction:i?"row":"column",children:[i?l.jsx(G.Item,{grow:!0,children:g}):g,o&&l.jsx(fe,{variant:"body-3",weight:"medium",children:l.jsx(G,{direction:"row",gap:3,children:o})})]}):g;return l.jsx(G,{direction:"row",gap:3,padding:4,bleed:c,borderRadius:"medium",borderColor:`${s}-faded`,backgroundColor:`${s}-faded`,className:m,attributes:j(v({},u),{role:s==="critical"?"alert":"status"}),children:r?l.jsxs(l.Fragment,{children:[l.jsx("div",{className:ga.icon,children:l.jsx(ze,{svg:r,size:5,color:_?"primary":s})}),l.jsx(G.Item,{grow:!0,children:h(d())})]}):h(d())})};Oo.displayName="Alert";const et=e=>{const t=a.useId();return e||t},Ho=a.createContext({attributes:{}}),pa=Ho.Provider,pn=()=>a.useContext(Ho),mt=()=>{const{attributes:e,required:t,hasError:n,disabled:r}=pn();return{attributes:e,required:t,hasError:n,disabled:r}},pr=(e,t)=>`${e}-${t||"caption"}`,Wo={label:"_label_1v514_5",caption:"_caption_1v514_14"},Ro=e=>{const{children:t}=e,{attributes:n,required:r,group:o,disabled:s,size:i}=pn(),c=`${n.id}-label`,m=o?"legend":"label";return l.jsxs(fe,{variant:i==="large"?"body-2":"body-3",weight:"medium",className:Wo.label,color:s?"disabled":void 0,"aria-disabled":s,children:[l.jsx(m,{id:c,htmlFor:o?void 0:n.id,children:t}),r&&l.jsx(fe,{color:s?"disabled":"critical",as:"span",children:"*"})]})};Ro.displayName="FormControl.Label";const Uo=e=>{const{children:t,variant:n,disabled:r}=e,{attributes:o,size:s,helperRef:i,errorRef:c}=pn(),m=pr(o.id,n),u=n==="error"?"critical":"neutral-faded",_=n==="error"?c:i;return l.jsx(fe,{as:"span",variant:s==="large"?"body-3":"caption-1",color:r&&!n?"disabled":u,attributes:{id:m,role:"alert","aria-disabled":r,ref:_},className:Wo.caption,children:t})},Yo=e=>{const{children:t}=e,{disabled:n}=pn();return l.jsx(Uo,{disabled:n,children:t})};Yo.displayName="FormControl.Helper";const Go=e=>{const{children:t}=e,{hasError:n}=pn();return n?l.jsx(Uo,{variant:"error",children:t}):null};Go.displayName="FormControl.Error";const vn=e=>{const{children:t,id:n,required:r,hasError:o,group:s,disabled:i,size:c}=e,m=et(n),u=s?"fieldset":"div",[_,d]=a.useState(!1),[h,g]=a.useState(!1),p=[_&&pr(m),h&&pr(m,"error")].filter(Boolean).join(" "),f={id:m,"aria-describedby":p},x=()=>{g(!0)},w=()=>{d(!0)};return l.jsx(u,{children:l.jsx(pa,{value:{required:r,hasError:o,errorRef:x,helperRef:w,attributes:f,group:s,disabled:i,size:c},children:t})})};vn.Label=Ro,vn.Helper=Yo,vn.Error=Go,vn.displayName="FormControl";const Ko={root:"_root_5kfqj_1","--side-all":"_--side-all_5kfqj_6","--side-start":"_--side-start_5kfqj_10","--side-inline":"_--side-inline_5kfqj_11","--side-end":"_--side-end_5kfqj_15","--side-top":"_--side-top_5kfqj_20","--side-block":"_--side-block_5kfqj_21","--side-bottom":"_--side-bottom_5kfqj_25"},bn=e=>{const{side:t="all",children:n,className:r,attributes:o}=e,s=typeof t=="string"?[t]:t,i=F(Ko.root,s.map(c=>Ko[`--side-${c}`]),r);return l.jsx("div",j(v({},o),{className:i,children:n}))};bn.displayName="Aligner";const Re={root:"_root_1pufe_1","--focused":"_--focused_1pufe_17","--multiline":"_--multiline_1pufe_22",input:"_input_1pufe_25","--rounded":"_--rounded_1pufe_30",affix:"_affix_1pufe_33",icon:"_icon_1pufe_34",inner:"_inner_1pufe_44",slot:"_slot_1pufe_84","icon--position-end":"_icon--position-end_1pufe_97","affix--position-end":"_affix--position-end_1pufe_98","slot--position-end":"_slot--position-end_1pufe_99","affix--position-start":"_affix--position-start_1pufe_111","--disabled":"_--disabled_1pufe_136","--size-small":"_--size-small_1pufe_1","--size-medium":"_--size-medium_1pufe_1","--size-large":"_--size-large_1pufe_1","--size-xlarge":"_--size-xlarge_1pufe_1","--variant-faded":"_--variant-faded_1pufe_201","--variant-headless":"_--variant-headless_1pufe_212","--status-error":"_--status-error_1pufe_217","--size-small--m":"_--size-small--m_1pufe_1","--size-medium--m":"_--size-medium--m_1pufe_1","--size-large--m":"_--size-large--m_1pufe_1","--size-xlarge--m":"_--size-xlarge--m_1pufe_1","--size-small--l":"_--size-small--l_1pufe_1","--size-medium--l":"_--size-medium--l_1pufe_1","--size-large--l":"_--size-large--l_1pufe_1","--size-xlarge--l":"_--size-xlarge--l_1pufe_1","--size-small--xl":"_--size-small--xl_1pufe_1","--size-medium--xl":"_--size-medium--xl_1pufe_1","--size-large--xl":"_--size-large--xl_1pufe_1","--size-xlarge--xl":"_--size-xlarge--xl_1pufe_1"},Xo=e=>{const{slot:t,icon:n,size:r,affix:o,position:s,id:i}=e;if(!n&&!t&&!o)return null;const c=a.isValidElement(t)&&t.type===a.Fragment?t.props.children:t,m=t&&a.Children.map(c,h=>l.jsx("div",{className:F(Re.slot,Re[`slot--position-${s}`]),children:h},"slot")),u=n&&l.jsx("label",{className:F(Re.icon,Re[`icon--position-${s}`]),htmlFor:i,children:l.jsx(ze,{size:_e(r,h=>h==="large"?5:h==="xlarge"?6:4),svg:n,autoWidth:!0})},"icon"),_=o&&l.jsx("label",{className:F(Re.affix,Re[`affix--position-${s}`]),htmlFor:i,children:o},"affix");return(s==="start"?[u,m,_]:[u,_,m]).filter(Boolean)},xn=e=>{var A;const{onChange:t,onFocus:n,onBlur:r,name:o,value:s,defaultValue:i,placeholder:c,icon:m,endIcon:u,startSlot:_,endSlot:d,prefix:h,suffix:g,size:p="medium",variant:f="outline",focused:x,multiline:w,rounded:C,className:y,attributes:z}=e,E=mt(),S=et(e.id),N=(E==null?void 0:E.attributes.id)||((A=e.inputAttributes)==null?void 0:A.id)||S,k=(E==null?void 0:E.disabled)||e.disabled,M=(E==null?void 0:E.hasError)||e.hasError,T=v(v({},e.inputAttributes),E==null?void 0:E.attributes),$=F(Re.root,y,p&&me(Re,"--size",p),M&&Re["--status-error"],k&&Re["--disabled"],x&&Re["--focused"],w&&Re["--multiline"],C&&Re["--rounded"],f&&Re[`--variant-${f}`]),D=q=>{t&&t({name:o,value:q.target.value,event:q})};return l.jsxs("div",j(v({},z),{"data-rs-aligner-target":!0,className:$,children:[l.jsx(Xo,{position:"start",icon:m,slot:_,size:p,affix:h,id:S}),l.jsxs("div",{className:Re.inner,children:[l.jsx("input",j(v({type:"text",autoComplete:"off"},T),{className:F(Re.input,T.className),disabled:k,name:o,placeholder:c,value:s,defaultValue:i,onChange:D,onFocus:n||(T==null?void 0:T.onFocus),onBlur:r||(T==null?void 0:T.onBlur),id:N})),l.jsx(Xo,{position:"end",icon:u,slot:d,size:p,affix:g,id:S})]})]}))};xn.Aligner=bn,xn.displayName="TextField";const va=e=>"width"in e&&e.width!==void 0?e:j(v({},e),{width:0,height:0,left:e.x,right:e.x,top:e.y,bottom:e.y,toJSON:()=>{}}),Kt=e=>{const t=e==null?void 0:e.getRootNode();return t instanceof ShadowRoot?t:null},Dn=()=>{document.body.style.userSelect="none"},Pn=()=>{document.body.style.userSelect=""},ba=(e,t)=>{let n=e.parentElement;for(;n;){if(t(n))return n;n=n.parentElement}return null},vr=e=>{const{el:t,iteration:n=0}=e,r=t&&window.getComputedStyle(t),o=r==null?void 0:r.position,s=o==="fixed"||o==="sticky";if(n===0){const i=Kt(t);if(i!=null&&i.firstElementChild)return i.firstElementChild}return t===document.body||!t?document.body:s?t:vr({el:t.parentElement,iteration:n+1})},br=e=>{const{el:t,iteration:n=0}=e,r=t&&window.getComputedStyle(t),o=r==null?void 0:r.overflowY,s=(o==null?void 0:o.includes("scroll"))||(o==null?void 0:o.includes("auto"));return!t.parentElement||s&&t.scrollHeight>t.clientHeight?t:br({el:t.parentElement,iteration:n+1})},Jo=(e,t)=>{Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype,"value").set.call(e,t),e.dispatchEvent(new Event("change",{bubbles:!0}))},Ln="data-rs-focus",Zo='a,button,input:not([type="hidden"]),textarea,select,details,[tabindex],[contenteditable]',yn=e=>{const t=e?Kt(e):null,n=t!=null?t:document;return n.querySelector(`[${Ln}]`)||n.activeElement},An=(e,t)=>{var o;const n=Kt(e);(o=(n!=null?n:document).querySelector(`[${Ln}]`))==null||o.removeAttribute(Ln),t!=null&&t.pseudoFocus?e.setAttribute(Ln,"true"):e.focus()},Fn=(e,t)=>{const r=Array.from(e.querySelectorAll(Zo)).filter(o=>{if(o.hasAttribute("disabled")||o.clientHeight===0||!(t!=null&&t.includeNegativeTabIndex)&&o.getAttribute("tabindex")==="-1")return!1;if(o.type==="radio"){let s;if(o.form){const i=o.form.elements.namedItem(o.name);if(!i)return!1;"length"in i?s=Array.from(i).filter(m=>"type"in m&&m.type==="radio"):s=[i]}else s=Array.from(e.querySelectorAll(`[type="radio"][name="${o.name}"]`));if(s!=null&&s.length){const i=Array.from(s).find(c=>c.checked);if(i&&o!==i||!i&&o!==s[0])return!1}}return!0});return t!=null&&t.additionalElement&&r.length&&r.unshift(t.additionalElement),r},Qo=e=>{const{root:t,target:n,options:r}=e,o=Fn(t,{additionalElement:r==null?void 0:r.additionalElement,includeNegativeTabIndex:r==null?void 0:r.includeNegativeTabIndex}),s=o.length-1,i=yn(t),c=o.indexOf(i),m={next:c+1,prev:c-1,first:0,last:s};let u=m[n];const _=u>s||u<0;return _&&(r!=null&&r.circular?u=n==="prev"?m.last:m.first:u=n==="prev"?m.first:m.last),{overflow:_,el:o[u]}},qn=(e,t,n)=>{const r=Qo({root:e,target:t,options:n});An(r.el)},es=e=>qn(e,"next",{includeNegativeTabIndex:!0}),ts=e=>qn(e,"prev",{includeNegativeTabIndex:!0}),ns=e=>qn(e,"first",{includeNegativeTabIndex:!0}),rs=e=>qn(e,"last",{includeNegativeTabIndex:!0}),xr="data-rs-keyboard",xa=()=>{document.documentElement.setAttribute(xr,"true")},ya=()=>{document.documentElement.removeAttribute(xr)},Vn=()=>document.documentElement.hasAttribute(xr);class wa{constructor(){Se(this,"chain",{});Se(this,"tailId",null);Se(this,"idCounter",0)}generateId(){return this.idCounter+=1,this.idCounter}getAll(){return this.chain}get(t){return this.chain[t]}isLast(t){return this.tailId!==null&&t===this.tailId}isEmpty(){return typeof this.tailId!="number"}add(t){const n=this.tailId,r=n&&this.get(n),o=this.generateId();return this.chain[o]={previousId:n,data:t},r&&(r.nextId=o),this.tailId=o,o}remove(t){var m,u;const n=this.chain[t];if(!n)return;const r=n.previousId,o=r&&this.get(r),s=n.nextId,i=s&&this.get(s);o&&(o.nextId=(m=n.nextId)!=null?m:null),i&&(i.previousId=(u=n.previousId)!=null?u:null),s||(this.tailId=r!=null?r:null);const c=this.get(t).data;return delete this.chain[t],c}removePreviousTill(t,n){const r=this.get(t),o=this.remove(t);return!r||!r.previousId||n(r)?o:this.removePreviousTill(r.previousId,n)}}const Ca="Escape",za=" ",os="Enter",Na="Tab",It="ArrowUp",Dt="ArrowDown",Pt="ArrowRight",Lt="ArrowLeft",ja="Backspace";class ka{constructor(t){Se(this,"root");Se(this,"hiddenElements",[]);Se(this,"hideSiblingsFromScreenReader",t=>{let n=t.parentNode&&t.parentNode.firstChild;for(;n;){const r=n!==t,o=n.nodeType===1&&!n.hasAttribute("aria-hidden");r&&o&&(n.setAttribute("aria-hidden","true"),this.hiddenElements.push(n)),n=n.nextSibling}});Se(this,"release",()=>{this.hiddenElements.forEach(t=>{t.removeAttribute("aria-hidden")}),this.hiddenElements=[]});Se(this,"trap",()=>{let t=this.root;for(this.release();t!==document.body&&t.parentElement;)this.hideSiblingsFromScreenReader(t),t=t.parentElement});this.root=t}}const ot=class ot{constructor(){vt(this,Ut);vt(this,Me,null);vt(this,Nt,null);vt(this,on,{});Se(this,"trapped");vt(this,sn,null);vt(this,ln,null);vt(this,$n,t=>{if(t.defaultPrevented||ot.chain.tailId!==oe(this,Ut)||!oe(this,Me))return;const{mode:n,onRelease:r,pseudoFocus:o,includeTrigger:s}=oe(this,on);let i="tabs";(n==="action-menu"||n==="selection-menu"||n==="action-bar")&&(i="arrows");const c=t.key,m=c===Na,u=m&&t.shiftKey,_=m&&!t.shiftKey,d=[Lt,Pt,It,Dt].includes(c),h=i==="arrows"&&c===(n==="action-bar"?Lt:It),g=i==="arrows"&&c===(n==="action-bar"?Pt:Dt),p=u&&i==="tabs"||h,f=_&&i==="tabs"||g,x=yn(oe(this,Me))===oe(this,Nt),w=Qo({root:oe(this,Me),target:p?"prev":"next",options:{additionalElement:s?oe(this,Nt):void 0,circular:n!=="action-menu"&&n!=="action-bar"}});if(m&&i==="arrows"||n==="content-menu"&&m&&w.overflow){u&&!x&&t.preventDefault(),this.release(),r==null||r();return}if(!p&&!f){d&&(n==="action-bar"||n==="action-menu")&&t.preventDefault();return}t.preventDefault(),w.el&&An(w.el,{pseudoFocus:o})});vt(this,ur,()=>{const t=Kt(oe(this,Me));(t!=null?t:document).addEventListener("keydown",oe(this,$n))});vt(this,Mn,()=>{const t=Kt(oe(this,Me));(t!=null?t:document).removeEventListener("keydown",oe(this,$n))});Se(this,"trap",(t,n={})=>{const{mode:r="dialog",includeTrigger:o,initialFocusEl:s}=n;Gt(this,Me,t),Gt(this,sn,new ka(t));const i=yn(oe(this,Me)),c=Fn(oe(this,Me),{additionalElement:o?i:void 0}),m=r==="selection-menu";if(Gt(this,on,j(v({},n),{pseudoFocus:m})),Gt(this,Nt,i),Gt(this,ln,new MutationObserver(()=>{if(!oe(this,Me))return;const d=yn(oe(this,Me));if(oe(this,Me).contains(d))return;const h=Fn(oe(this,Me),{additionalElement:o?i:void 0});h.length&&An(h[0],{pseudoFocus:m})})),oe(this,Mn).call(this),oe(this,ln).observe(oe(this,Me),{childList:!0,subtree:!0}),!c.length&&!s)return;oe(this,ur).call(this),r==="dialog"&&oe(this,sn).trap();const u=ot.chain.tailId&&ot.chain.get(ot.chain.tailId),_=yn(oe(this,Me));(!u||oe(this,Me)!==oe(u.data,Me))&&(Gt(this,Ut,ot.chain.add(this)),oe(this,Me).contains(_)||An(s||c[0],{pseudoFocus:m})),this.trapped=!0});Se(this,"release",(t={})=>{var o,s;const{withoutFocusReturn:n}=t;if(!this.trapped||!oe(this,Ut)||!oe(this,Me))return;this.trapped=!1,oe(this,Nt)&&!n&&oe(this,Nt).focus({preventScroll:!Vn()}),ot.chain.removePreviousTill(oe(this,Ut),i=>document.body.contains(oe(i.data,Nt))),(o=oe(this,ln))==null||o.disconnect(),oe(this,Mn).call(this),(s=oe(this,sn))==null||s.release();const r=ot.chain.tailId&&ot.chain.get(ot.chain.tailId);r&&oe(r.data,Me)&&new ot().trap(oe(r.data,Me),oe(r.data,on))})}};Ut=new WeakMap,Me=new WeakMap,Nt=new WeakMap,on=new WeakMap,sn=new WeakMap,ln=new WeakMap,$n=new WeakMap,ur=new WeakMap,Mn=new WeakMap,Se(ot,"chain",new wa);let Xt=ot;const tt=e=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>e())})},yr="data-rs-no-transition",Ea=()=>{document.documentElement.setAttribute(yr,"true")},Sa=()=>{document.documentElement.removeAttribute(yr)},Ta=()=>!document.documentElement.hasAttribute(yr);let At={},kt=null;const $a=e=>{At[e]&&(e===kt&&(kt=At[e].parentId),delete At[e],kt===null&&(At={}))},Ma=(e,t,n)=>{At[e]={parentId:kt,triggerRef:n,contentRef:t},kt=e},ss=e=>{const{active:t,contentRef:n,triggerRef:r}=e,o=et();return a.useEffect(()=>{if(t)return tt(()=>Ma(o,n,r)),()=>$a(o)},[t,o,n,r]),a.useCallback(()=>{var u;if(!t)return!0;const s=kt?At[kt]:void 0,i=(u=s==null?void 0:s.triggerRef)==null?void 0:u.current,c=s!=null&&s.parentId?At[s.parentId]:void 0,m=c==null?void 0:c.contentRef.current;return!m||!i||!m.contains(i)?!0:kt===o},[o,t])},je=typeof window!="undefined"?a.useLayoutEffect:a.useEffect,wn="+",st=new Map;let Cn=[];const is=e=>e===" "?e:e.replace(/\s/g,"").toLowerCase(),Bn=e=>is(e).split(wn).sort().join(wn),ls=e=>{if(e.key)return e.altKey&&/^[Key|Digit|Numpad]/.test(e.code)?e.code.toLowerCase().replace(/key|digit|numpad/,""):e.key.toLowerCase()},as=(e,t)=>{Object.keys(e).forEach(n=>{n.split(",").forEach(r=>{const o=e[n];o&&t(Bn(r),o)})})};class Ia{constructor(){Se(this,"hotkeyMap",{});Se(this,"getSize",()=>Object.keys(this.hotkeyMap).length);Se(this,"bindHotkeys",(t,n,r)=>{as(t,(o,s)=>{s&&(this.hotkeyMap[o]||(this.hotkeyMap[o]=new Set),this.hotkeyMap[o].add({callback:s,ref:n,options:r}))})});Se(this,"unbindHotkeys",t=>{as(t,(n,r)=>{var o,s;r&&((o=this.hotkeyMap[n])==null||o.forEach(i=>{i.callback===r&&this.hotkeyMap[n].delete(i)}),(s=this.hotkeyMap[n])!=null&&s.size||delete this.hotkeyMap[n])})});Se(this,"handleKeyDown",(t,n)=>{if(!t.size)return;const r=[...t.keys()],o=Bn(r.join(wn)),s=o.split(wn),i=this.hotkeyMap[o],c=Bn(o.replace("control","mod")),m=Bn(o.replace("meta","mod")),u=s.includes("control")&&this.hotkeyMap[c],_=s.includes("meta")&&this.hotkeyMap[m];[i,u,_].forEach(d=>{d&&d!=null&&d.size&&d.forEach(h=>{const g=n.composedPath()[0];if(h.ref.current&&!(g===h.ref.current||h.ref.current.contains(g)))return;const p=t.get(o);h.options.preventDefault&&(p==null||p.preventDefault(),n.preventDefault()),h.callback(n)})})})}}const wr=new Ia,cs=a.createContext({}),Da=e=>{const{children:t}=e,[n,r]=a.useState(0),[o,s]=a.useState(0),i=a.useCallback(g=>{if(g.repeat||o===0)return;const p=ls(g);p&&(st.set(p,g),r(st.size),g.metaKey&&Cn.push(...st.keys()),st.has("Meta")&&Cn.push(p))},[o]),c=a.useCallback(g=>{if(o===0)return;const p=ls(g);p&&(st.delete(p),(p==="meta"||p==="control")&&st.delete("mod"),p==="meta"&&(Cn.forEach(f=>{st.has(f)&&st.delete(f)}),Cn=[]),r(st.size))},[o]),m=g=>!is(g).split(wn).some(f=>!st.has(f)),u=a.useCallback(g=>{g.key&&(i(g),wr.handleKeyDown(st,g))},[i]),_=a.useCallback(g=>{g.key&&c(g)},[c]),d=a.useCallback(()=>{st.clear(),Cn=[]},[]),h=a.useCallback((g,p,f={})=>(s(x=>x+1),wr.bindHotkeys(g,p,f),()=>{s(x=>x-1),wr.unbindHotkeys(g)}),[]);return a.useEffect(()=>(window.addEventListener("keydown",u),window.addEventListener("keyup",_),window.addEventListener("blur",d),()=>{window.removeEventListener("keydown",u),window.removeEventListener("keyup",_),window.removeEventListener("blur",d)}),[u,_,d]),l.jsx(cs.Provider,{value:{addHotkeys:h,isPressed:m},children:t})},Pa=()=>a.useContext(cs),nt=(e,t=[],n)=>{const{addHotkeys:r,isPressed:o}=Pa(),s=a.useRef(null),i=(n==null?void 0:n.ref)||s;return a.useEffect(()=>{if(n!=null&&n.disabled)return;const c=r(e,i,{preventDefault:n==null?void 0:n.preventDefault});return()=>c==null?void 0:c()},[r,Object.keys(e).join(","),n==null?void 0:n.disabled,n==null?void 0:n.preventDefault,...t]),{ref:i,checkHotkeyState:o}},Ae=e=>{const t=a.useRef(e);return je(()=>{t.current=e},[e]),t},ds=(e,t,n)=>{const{disabled:r}=n||{},o=Ae(t),s=a.useRef(!1);a.useEffect(()=>{const i=c=>{s.current=!1;const m=c.composedPath()[0];e.forEach(u=>{u.current&&(u.current===m||u.current.contains(m))&&(s.current=!0)})};return document.addEventListener("mousedown",i,{passive:!0}),document.addEventListener("touchstart",i,{passive:!0}),()=>{document.removeEventListener("mousedown",i),document.removeEventListener("touchstart",i)}},[...e]),a.useEffect(()=>{if(!o.current||r)return;const i=c=>{var m;c.pointerType&&c.button!==2&&(s.current||(m=o.current)==null||m.call(o,c))};return document.addEventListener("click",i,{passive:!0}),()=>document.removeEventListener("click",i)},[o,r,...e])},Cr=a.createContext({rtl:[!1,()=>{}],defaultViewport:"s"}),La=e=>{const t=a.useState(e||!1),[n,r]=t;return je(()=>{const o=new MutationObserver(s=>{s.forEach(i=>{if(i.attributeName!=="dir")return;const c=i.target.dir==="rtl";n!==c&&r(c)})});return o.observe(document.documentElement,{attributes:!0}),()=>o.disconnect()},[n]),je(()=>{document.documentElement.setAttribute("dir",n?"rtl":"ltr")},[n]),t},xt=()=>a.useContext(Cr).rtl,Aa=e=>e.includes("start")?e.replace("start","end"):e.includes("end")?e.replace("end","start"):e,us=(e,t)=>Math.floor(e/2-t/2),Et=8,Fa=e=>{var le,te;const{triggerBounds:t,flyoutBounds:n,containerBounds:r,position:o,rtl:s,width:i,contentGap:c=0,contentShift:m=0,passedContainer:u,fallbackAdjustLayout:_}=e,d=i==="full"||i==="100%";let h=0,g=0,p=null,f=null,x=o;s&&(x=Aa(x)),(d||i==="trigger")&&(x=x.includes("top")?"top":"bottom");const w=!!x.match(/^(start|end)/),C=n.width+(w?c:0),y=n.height+(w?0:c),z=t.width,E=t.height,S=u==null?void 0:u.scrollLeft,N=u==null?void 0:u.scrollTop,k=S!=null?S:window.scrollX,M=N!=null?N:window.scrollY,T=(le=u==null?void 0:u.clientHeight)!=null?le:window.innerHeight,$=(te=u==null?void 0:u.clientWidth)!=null?te:window.innerWidth,D=u?r.bottom:window.innerHeight-M,A=t.left-r.left+(S||0),q=r.right-t.right-(S||0),V=t.top-r.top+(N||0),L=D-t.bottom-(N||0);switch(x){case"start":case"start-top":case"start-bottom":h=A-C,f=q+z;break;case"end":case"end-top":case"end-bottom":h=A+z;break;case"bottom":case"top":h=A+us(z,C)+m;break;case"top-start":case"bottom-start":h=A+m;break;case"top-end":case"bottom-end":h=A+z-C+m,f=q-m;break}switch(x){case"top":case"top-start":case"top-end":g=V-y,p=L+E;break;case"bottom":case"bottom-start":case"bottom-end":g=V+E;break;case"start":case"end":g=V+us(E,y)+m;break;case"start-top":case"end-top":g=V+m;break;case"start-bottom":case"end-bottom":g=V+E-y+m,p=L-m;break}if(_){const H=-g+M+Et,Z=g+y+Et-M-T,X=-h+k+Et,ye=h+C+Et-k-$;w?H>0?(g=Et+M,p!==null&&(p=p-H)):Z>0&&(console.log({bottomOverflowSize:Z,renderContainerHeight:T}),g=g-Z):X>0?(h=Et+k,f!==null&&(f=f-X)):ye>0&&(h=h-ye)}let B;d?(h=Et,B=window.innerWidth-Et*2):i==="trigger"&&(B=t.width);const K=f!==null?-f:h,Y=p!==null?-p:g;return{position:x,styles:{width:B!=null?B:i,left:f===null?0:void 0,right:f===null?void 0:0,top:p===null?0:void 0,bottom:p===null?void 0:0,transform:`translate(${K}px, ${Y}px)`},boundaries:{left:h,top:g,height:Math.ceil(y),width:B!=null?B:Math.ceil(C)}}},ms={top:["top-start","top-end","top"],bottom:["bottom-start","bottom-end","bottom"],start:["start-top","start-bottom","start"],end:["end-top","end-bottom","end"]},qa={top:["bottom","start","end"],bottom:["top","end","start"],start:["end","top","bottom"],end:["start","bottom","top"]},Va=(e,t)=>{const n=[e],r=e.split("-"),[o]=r,s=ms[o],i=s.indexOf(e),c=[i];return s.forEach((m,u)=>{u!==i&&c.push(u)}),[o,...qa[o]].forEach(m=>{const u=ms[m];c.forEach(_=>{const d=u[_];(t==null?void 0:t.indexOf(d))!==-1&&n.push(d)})}),n},Ba=e=>{const{flyoutBounds:t,visualContainerBounds:n,renderContainerBounds:r,container:o}=e,s=o===document.body?window.scrollX:o.scrollLeft,i=o===document.body?window.scrollY:o.scrollTop;return!(r.left+t.left-s<n.left||r.top+t.top-i<n.top||r.left+t.left+t.width-s>n.right||r.top+t.top+t.height-i>n.bottom)},Oa=800,_s=100,Ha=150,fs={left:0,top:0,width:"auto",height:"auto",zIndex:"var(--rs-z-index-absolute)"},On={left:0,top:0,position:"absolute",visibility:"hidden",animation:"none",transition:"none",zIndex:"var(--rs-z-index-absolute)"},Wa=e=>{var q;const{triggerEl:t,flyoutEl:n,triggerBounds:r,contentShift:o=0,contentGap:s=0,position:i,fallbackPositions:c,fallbackAdjustLayout:m,width:u,container:_,lastUsedPosition:d,onPositionChoose:h,rtl:g}=e,p=n.cloneNode(!0),f=getComputedStyle(n).getPropertyValue("--rs-unit-x1"),x=f?parseInt(f):4,w=r||(t==null?void 0:t.getBoundingClientRect());if(!w)return;const C=va(w);p.style.cssText="",Object.keys(On).forEach(V=>{const L=On[V];L&&(p.style[V]=L.toString())}),u==="trigger"?p.style.width=`${C.width}px`:u&&u!=="full"&&(p.style.width=u),(t&&Kt(t)||document.body).appendChild(p);const z=p.getBoundingClientRect(),E={width:z.width,height:z.height},S=!_&&t?vr({el:t}):void 0,N=_||S||document.body,k=N.getBoundingClientRect(),M=(_||document.body).getBoundingClientRect(),T=V=>Fa({triggerBounds:C,flyoutBounds:E,containerBounds:k,position:V,contentGap:s*x,contentShift:o*x,rtl:g,width:u,passedContainer:_||(S!==document.body?S:void 0),fallbackAdjustLayout:m}),$=V=>Ba({flyoutBounds:V.boundaries,visualContainerBounds:M,renderContainerBounds:k,container:N});let D=null;return Va(i,c).some(V=>{const L=T(V),B=$(L);return B&&(D=L),B}),D||(D=T(d)),h(D.position),(q=p.parentNode)==null||q.removeChild(p),D},Ra=(e,t)=>{switch(t.type){case"render":return e.status!=="idle"?e:j(v({},e),{status:"rendered",styles:v({pointerEvents:"none"},On)});case"position":return!t.payload.sync&&e.status!=="rendered"||t.payload.sync&&e.status!=="visible"?e:j(v({},e),{status:t.payload.sync?"visible":"positioned",position:t.payload.position,styles:v(v({},fs),t.payload.styles)});case"show":return e.status!=="positioned"?e:j(v({},e),{status:"visible"});case"hide":return e.status!=="visible"?e:j(v({},e),{status:"hidden"});case"remove":return e.status!=="hidden"&&e.status!=="visible"?e:j(v({},e),{status:"idle",styles:On});default:throw new Error("[Reshaped] Invalid flyout reducer type")}},Ua=e=>{const N=e,{triggerElRef:t,flyoutElRef:n,triggerBounds:r,contentGap:o,contentShift:s}=N,i=$e(N,["triggerElRef","flyoutElRef","triggerBounds","contentGap","contentShift"]),{position:c="bottom",fallbackPositions:m,width:u,container:_,fallbackAdjustLayout:d}=i,h=a.useRef(c),g=a.useMemo(()=>m,[m==null?void 0:m.join(" ")]),[p]=xt(),[f,x]=a.useReducer(Ra,{position:c,styles:fs,status:"idle"}),w=a.useCallback(()=>{x({type:"render"})},[]),C=a.useCallback(()=>{x({type:"show"})},[]),y=a.useCallback(()=>{x({type:"hide"})},[]),z=a.useCallback(()=>{x({type:"remove"})},[]),E=a.useCallback(k=>{h.current=k},[]),S=a.useCallback(k=>{if(!n.current)return;const M=(k==null?void 0:k.fallback)!==!1,T=Wa({triggerEl:t.current,flyoutEl:n.current,triggerBounds:r,width:u,position:M?c:h.current,fallbackPositions:M?g:[],fallbackAdjustLayout:d,lastUsedPosition:h.current,onPositionChoose:E,rtl:p,container:_,contentGap:o,contentShift:s});T&&x({type:"position",payload:j(v({},T),{sync:k==null?void 0:k.sync})})},[_,c,g,d,p,n,t,r,u,o,s,E]);return a.useEffect(()=>{f.status==="rendered"&&S()},[f.status,S]),a.useMemo(()=>({position:f.position,styles:f.styles,status:f.status,updatePosition:S,render:w,hide:y,remove:z,show:C}),[w,S,y,z,C,f.position,f.styles,f.status])};class Ya{constructor(){Se(this,"status","cold");Se(this,"timer");Se(this,"warm",()=>{if(clearTimeout(this.timer),this.status==="cooling"){this.status="warm";return}this.status="warming",this.timer=setTimeout(()=>{this.status="warm",this.timer=void 0},_s)});Se(this,"cool",()=>{if(clearTimeout(this.timer),this.status==="warming"){this.status="cold";return}this.status="cooling",this.timer=setTimeout(()=>{this.status="cold",this.timer=void 0},500)})}}const Ft=new Ya,hs=a.createContext({}),gs=a.createContext(null),ps=a.createContext(null),Jt=()=>a.useContext(hs),Ga=()=>a.useContext(gs),Ka=()=>a.useContext(ps),Xa=hs.Provider,Ja=gs.Provider,Za=ps.Provider,zr=e=>{var mr;const{triggerType:t="click",groupTimeouts:n,onOpen:r,onClose:o,children:s,disabled:i,forcePosition:c,fallbackAdjustLayout:m,trapFocusMode:u="dialog",width:_,disableHideAnimation:d,disableContentHover:h,disableCloseOnOutsideClick:g,autoFocus:p=!0,originCoordinates:f,contentGap:x=2,contentShift:w,contentClassName:C,contentAttributes:y,position:z,active:E,id:S,instanceRef:N,containerRef:k,initialFocusRef:M}=e,T=e.fallbackPositions===!1||c?[]:e.fallbackPositions,$=Ae(r),D=Ae(o),A=i===!0?!1:E,q=Jt(),{elRef:V}=Ga()||{},{elRef:L}=Ka()||{},B=q.trapFocusMode==="action-menu"||q.trapFocusMode==="content-menu",[K]=xt(),Y=a.useRef(null),le=!!(V!=null&&V.current)&&((mr=L==null?void 0:L.current)==null?void 0:mr.contains(V.current)),H=(!L||le)&&V||Y,Z=a.useRef(null),X=a.useRef(null),ye=et(S),O=a.useRef(null),R=a.useRef(null),ee=a.useRef(!1),Q=a.useRef(!1),re=a.useRef(!1),Te=a.useRef(!0),Ce=a.useRef(!1),ke=Ua({triggerElRef:H,flyoutElRef:X,triggerBounds:f!=null?f:Z.current,width:_,position:z,defaultActive:A,container:k==null?void 0:k.current,fallbackPositions:T,fallbackAdjustLayout:m,contentGap:x,contentShift:w}),{status:Ee,updatePosition:ne,render:ae,hide:he,remove:de,show:pe}=ke,we=Ee!=="idle",We=ss({active:we&&t!=="hover",contentRef:X,triggerRef:H}),De=a.useCallback(()=>{O.current&&clearTimeout(O.current)},[O]),se=a.useCallback(()=>{var ge;ee.current||we&&t!=="hover"||(ge=$.current)==null||ge.call($)},[$,we,t]),ie=a.useCallback(ge=>{var jt,un;!(t==="click"&&!We())&&(we||i)&&((jt=D.current)==null||jt.call(D,{reason:ge.reason}),ge!=null&&ge.closeParents&&((un=q==null?void 0:q.handleClose)==null||un.call(q,{})))},[we,We,t,D,i,q]),Je=a.useCallback(ge=>{var dn;!Vn()||(dn=X.current)!=null&&dn.contains(ge.relatedTarget)||re.current||ie({})},[ie]),Ve=a.useCallback(()=>{t==="hover"&&!Vn()||se()},[se,t]),Ye=a.useCallback(()=>{t==="hover"&&(Ce.current=!0)},[t]),Ue=a.useCallback(()=>{De(),Ce.current?(se(),Ce.current=!1):(n&&Ft.warm(),O.current=setTimeout(()=>{se()},n&&Ft.status==="warming"?Oa:_s))},[De,O,se,n]),Ze=a.useCallback(()=>{Ft.cool(),De(),O.current=setTimeout(()=>ie({}),Ha)},[De,O,ie]),it=a.useCallback(()=>{we?ie({}):se()},[we,se,ie]),an=a.useCallback(()=>{var ut;const ge=(ut=H.current)==null?void 0:ut.getBoundingClientRect();ge&&(Z.current=ge)},[H]),cn=()=>{re.current=!0,Ce.current=!0},Co=()=>{re.current=!1},zo=a.useCallback(ge=>{A&&(X.current!==ge.currentTarget||ge.propertyName!=="transform"||(Q.current=!0,Z.current=null))},[A]),No=a.useCallback(ge=>{X.current!==ge.currentTarget||ge.propertyName!=="transform"||Ee==="hidden"&&(Q.current=!1,de())},[de,Ee]);return je(()=>{if(A){ae();return}i&&Ft.cool(),Ta()&&!d&&Q.current&&(Ft.status==="cooling"||!n)?he():de()},[A,ae,he,de,d,i,n]),a.useEffect(()=>{Ee==="positioned"&&tt(()=>pe())},[Ee,pe]),je(()=>{var ut;if(Ee!=="visible"||!X.current||(ut=R.current)!=null&&ut.trapped||u===!1)return;const ge=p?M==null?void 0:M.current:X.current.querySelector("[role][tabindex='-1']");R.current=new Xt,R.current.trap(X.current,{mode:u,initialFocusEl:ge,includeTrigger:t==="hover"&&u!=="dialog"&&!B,onRelease:()=>{ie({})}})},[Ee,t,u,p]),a.useEffect(()=>{var ge;!d&&Ee!=="hidden"||d&&we||(ge=R.current)!=null&&ge.trapped&&(t==="hover"&&(ee.current=!0,setTimeout(()=>{ee.current=!1},100)),R.current.release({withoutFocusReturn:!Te.current}),Te.current=!0)},[Ee,we,t,d]),a.useEffect(()=>()=>{var ge;return(ge=R.current)==null?void 0:ge.release()},[]),a.useEffect(()=>{if(!we)return;const ge=new ResizeObserver(()=>ne({sync:!0}));return ge.observe(document.body),H.current&&ge.observe(H.current),()=>ge.disconnect()},[ne,H,we]),a.useEffect(()=>{ne({sync:!0})},[K,ne]),a.useImperativeHandle(N,()=>({open:se,close:()=>ie({}),updatePosition:()=>ne({sync:!0})}),[se,ie,ne]),nt({Escape:()=>ie({reason:"escape-key"})},[ie]),ds([X,H],()=>{Te.current=!1,ie({reason:"outside-click"})},{disabled:!we||g}),l.jsx(Xa,{value:{id:ye,flyout:ke,width:_,triggerElRef:H,flyoutElRef:X,handleClose:ie,handleOpen:se,handleFocus:Ve,handleBlur:Je,handleMouseEnter:Ue,handleMouseLeave:Ze,handleTouchStart:Ye,handleTransitionStart:zo,handleTransitionEnd:No,handleMouseDown:an,handleClick:it,handleContentMouseDown:cn,handleContentMouseUp:Co,triggerType:t,trapFocusMode:u,contentGap:x,contentClassName:C,contentAttributes:y,containerRef:k,disableContentHover:h,autoFocus:p,isSubmenu:B},children:s})};zr.displayName="FlyoutControlled";const vs=e=>{const{defaultActive:t,onClose:n,onOpen:r}=e,[o,s]=a.useState(t||!1),i=m=>{s(!1),n==null||n(m)},c=()=>{s(!0),r==null||r()};return l.jsx(zr,j(v({},e),{defaultActive:void 0,active:o,onClose:i,onOpen:c}))};vs.displayName="FlyoutUncontrolled";const bs=e=>{const{children:t}=e,{id:n,triggerElRef:r,triggerType:o,flyout:s,handleFocus:i,handleBlur:c,handleMouseEnter:m,handleMouseLeave:u,handleMouseDown:_,handleTouchStart:d,handleClick:h,trapFocusMode:g,isSubmenu:p}=Jt(),f=s.status!=="idle",x={ref:r};return(o==="click"||g==="action-menu")&&(x.onClick=h,x.onMouseDown=_),o==="hover"&&(x.onMouseEnter=m,x.onMouseLeave=u,x.onTouchStart=d),(o==="hover"&&!p||o==="focus")&&(x.onFocus=i,x.onBlur=c,x["aria-describedby"]=f?n:void 0),(o==="click"||o==="focus"||g==="action-menu")&&(g==="dialog"?x["aria-haspopup"]="dialog":g==="selection-menu"?(x["aria-haspopup"]="listbox",x["aria-autocomplete"]="list"):x["aria-haspopup"]="menu",x["aria-expanded"]=f,x["aria-controls"]=f?n:void 0),l.jsx(Ja,{value:{elRef:r},children:t(x)})};bs.displayName="Flyout.Trigger";const Nr=(e,t)=>e>t?[]:Array.from({length:t-e+1},(n,r)=>e+r),jr=e=>{let t=null,n=null;return function(...r){n=r,t===null&&(t=requestAnimationFrame(()=>{t=null,e(...n)}))}},xs=a.createContext({}),kr=a.createContext({}),Hn=e=>e?e.hasAttribute("data-rs-root")||e===document.documentElement||!e.parentElement?e:Hn(e.parentElement):document.documentElement,Er=()=>a.useContext(kr),ys=()=>{const{colorMode:e,theme:t,setTheme:n,rootTheme:r,setRootTheme:o}=a.useContext(xs),{mode:s,setMode:i,invertMode:c}=a.useContext(kr);return a.useMemo(()=>({theme:t,setTheme:n,rootTheme:r,setRootTheme:o,colorMode:e||s,setColorMode:i,invertColorMode:c}),[e,s,i,c,t,n,o,r])},Qa={root:"_root_ve3fz_1"},ws=e=>typeof e=="string"?e:` ${e.join(" ")} `,Zt=e=>l.jsx(Cs,v({},e)),Cs=e=>{const{name:t,defaultName:n,colorMode:r,scoped:o,scopeRef:s,children:i,className:c}=e,[m,u]=a.useState(!1),[_,d]=a.useState(n),h=Er(),g=ys(),p=!g.theme,f=t||_||g.theme,x=p||o?f:g.rootTheme,w=p||o?h.mode:g.colorMode,y=r==="inverted"?w==="light"?"dark":"light":r||w,z=F(Qa.root,c),E=a.useCallback(k=>{p?d(k):g.setRootTheme(k)},[p,g]),S=a.useCallback(k=>{d(k)},[]);je(()=>{u(!0)},[]),je(()=>{if(!document||!p)return;const k=Hn(s==null?void 0:s.current),M=k.getAttribute("data-rs-color-mode"),T=ws(f);return T&&k.setAttribute("data-rs-theme",T),M||k.setAttribute("data-rs-color-mode",y),()=>{k.removeAttribute("data-rs-theme"),M||k.removeAttribute("data-rs-color-mode")}},[f,y,p,s]);const N=a.useMemo(()=>({theme:f,rootTheme:x,colorMode:y,setTheme:S,setRootTheme:E}),[f,y,S,E,x]);return l.jsx(xs.Provider,{value:N,children:l.jsx("div",{className:z,ref:s,"data-rs-root":o?!0:void 0,"data-rs-theme":p?void 0:ws(f),"data-rs-color-mode":p||!r&&!m?void 0:y,children:i})})};Zt.displayName="Theme";const zs=e=>{const{defaultMode:t,mode:n,scopeRef:r,children:o}=e,[s,i]=a.useState(t),c=Er(),m=a.useCallback(_=>{Hn(r==null?void 0:r.current).setAttribute("data-rs-color-mode",_),c.mode&&!r&&c.setMode(_),i(_)},[r,c]);je(()=>{Ea(),tt(()=>{Sa()})},[s,n]),je(()=>{const _=Hn(r==null?void 0:r.current).getAttribute("data-rs-color-mode");_&&m(_)},[m,r]);const u=a.useMemo(()=>({mode:n||s,setMode:m,invertMode:()=>{m(s==="light"?"dark":"light")}}),[s,n,m]);return l.jsx(kr.Provider,{value:u,children:o})};zs.displayName="GlobalColorMode";const ec={root:"_root_hqrz2_1"},qt=e=>{const[t,n]=a.useState(e||!1),r=a.useCallback(()=>{n(!0)},[]),o=a.useCallback(()=>{n(!1)},[]),s=a.useCallback(i=>{n(typeof i=="boolean"?i:c=>!c)},[]);return a.useMemo(()=>({active:t,activate:r,deactivate:o,toggle:s}),[r,o,s,t])},Ns=a.createContext({}),tc=()=>a.useContext(Ns),zn=e=>{var d;const{children:t,targetRef:n}=e,r=qt(),o=a.useRef(null),s=(d=o.current)==null?void 0:d.getRootNode(),c=s instanceof ShadowRoot?s:document.body,m=tc(),u=n||m.scopeRef,_=(u==null?void 0:u.current)||c;return je(()=>(r.activate(),()=>r.deactivate()),[]),[xe.createPortal(l.jsx(Zt,{children:t}),_),!r.active&&l.jsx("div",{ref:o,className:ec.root},"root")]};function js(e){const{children:t}=e,n=a.useRef(null);return l.jsx(Ns.Provider,{value:{scopeRef:n},children:t(n)})}zn.Scope=js,zn.displayName="Portal",js.displayName="PortalScope";const St={content:"_content_zz3qe_1","--hover":"_--hover_zz3qe_12","--hover-disabled":"_--hover-disabled_zz3qe_16",inner:"_inner_zz3qe_17","--width-trigger":"_--width-trigger_zz3qe_37","--position-top":"_--position-top_zz3qe_41","--position-top-end":"_--position-top-end_zz3qe_42","--position-top-start":"_--position-top-start_zz3qe_43","--position-bottom":"_--position-bottom_zz3qe_49","--position-bottom-end":"_--position-bottom-end_zz3qe_50","--position-bottom-start":"_--position-bottom-start_zz3qe_51","--position-start":"_--position-start_zz3qe_67","--position-start-top":"_--position-start-top_zz3qe_68","--position-start-bottom":"_--position-start-bottom_zz3qe_69","--position-end":"_--position-end_zz3qe_75","--position-end-top":"_--position-end-top_zz3qe_76","--position-end-bottom":"_--position-end-bottom_zz3qe_77","--visible":"_--visible_zz3qe_93","--animated":"_--animated_zz3qe_98"},ks=e=>{const{children:t,className:n,attributes:r}=e,{flyout:o,id:s,flyoutElRef:i,triggerElRef:c,handleClose:m,handleTransitionEnd:u,handleTransitionStart:_,triggerType:d,handleMouseEnter:h,handleMouseLeave:g,handleContentMouseDown:p,handleContentMouseUp:f,contentGap:x,contentClassName:w,contentAttributes:C,trapFocusMode:y,disableContentHover:z,autoFocus:E,width:S,containerRef:N,isSubmenu:k}=Jt(),{styles:M,status:T,position:$}=o,[D,A]=a.useState(!1),q=a.useMemo(()=>!D||!c?null:vr({el:c.current}),[D,c]),V=a.useMemo(()=>{if(D&&c!=null&&c.current)return br({el:c.current})},[D,c]),L=N||{current:q};if(je(()=>{A(!0)},[]),a.useEffect(()=>{const te=i.current;if(te)return te.addEventListener("transitionstart",_),()=>te.removeEventListener("transitionstart",_)},[_,i,T]),a.useEffect(()=>{if(T!=="visible"||!V)return;const te=c==null?void 0:c.current,H=V,Z=jr(()=>{const X=te==null?void 0:te.getBoundingClientRect(),ye=H.getBoundingClientRect();X&&(X.top<ye.top||X.left<ye.left||X.right>ye.right||X.bottom>ye.bottom)?m({}):o.updatePosition({sync:!0,fallback:!1})});return V.addEventListener("scroll",Z,{passive:!0}),()=>V.removeEventListener("scroll",Z)},[V,o,T,m,c]),T==="idle"||!D)return null;const B=F(St.content,d==="hover"&&St["--hover"],T==="visible"&&St["--visible"],(Ft.status==="cooling"||!Ft.timer||k||d!=="hover")&&St["--animated"],$&&St[`--position-${$}`],S==="trigger"&&St["--width-trigger"],d==="hover"&&z&&St["--hover-disabled"]),K=F(St.inner,n,w);let Y=r==null?void 0:r.role;d==="hover"?Y="tooltip":y==="dialog"?Y="dialog":y==="selection-menu"?Y="listbox":y==="action-menu"?Y="menu":y==="action-bar"&&(Y="menubar");const le=l.jsx(Za,{value:{elRef:i},children:l.jsx("div",{className:B,style:j(v({},M),{"--rs-flyout-gap":x}),ref:i,onTransitionEnd:u,onMouseEnter:d==="hover"?h:void 0,onMouseLeave:d==="hover"?g:void 0,onMouseDown:p,onTouchStart:p,onMouseUp:f,onTouchEnd:f,children:l.jsx("div",j(v({role:Y},r),{id:s,tabIndex:E?void 0:-1,"aria-modal":Y==="dialog"?!0:void 0,style:v(v({},r==null?void 0:r.style),C==null?void 0:C.style),className:K,children:t}))})});return l.jsx(zn,{targetRef:L,children:le})};ks.displayName="Flyout.Content";const _t=e=>{const{active:t}=e;return typeof t=="boolean"?l.jsx(zr,v({},e)):l.jsx(vs,v({},e))};_t.Trigger=bs,_t.Content=ks,_t.displayName="Flyout";const Wn={root:"_root_1f1sc_15","rs-reshaped-loader":"_rs-reshaped-loader_1f1sc_1",inner:"_inner_1f1sc_44","--color-inherit":"_--color-inherit_1f1sc_63","--color-primary":"_--color-primary_1f1sc_67","--color-positive":"_--color-positive_1f1sc_71","--color-critical":"_--color-critical_1f1sc_75","--size-small":"_--size-small_1f1sc_1","--size-medium":"_--size-medium_1f1sc_1","--size-large":"_--size-large_1f1sc_1","--size-small--m":"_--size-small--m_1f1sc_1","--size-medium--m":"_--size-medium--m_1f1sc_1","--size-large--m":"_--size-large--m_1f1sc_1","--size-small--l":"_--size-small--l_1f1sc_1","--size-medium--l":"_--size-medium--l_1f1sc_1","--size-large--l":"_--size-large--l_1f1sc_1","--size-small--xl":"_--size-small--xl_1f1sc_1","--size-medium--xl":"_--size-medium--xl_1f1sc_1","--size-large--xl":"_--size-large--xl_1f1sc_1"},Sr=e=>{const{size:t="small",color:n="primary",className:r,attributes:o}=e,s=e.ariaLabel||(o==null?void 0:o["aria-label"]),i=F(Wn.root,r,me(Wn,"--size",t),n&&Wn[`--color-${n}`]);return l.jsx("span",j(v({},o),{role:"progressbar","aria-live":s?"assertive":void 0,"aria-label":s,className:i,children:l.jsx("span",{className:Wn.inner})}))};Sr.displayName="Loader";const Vt={root:"_root_thv8z_2",touch:"_touch_thv8z_21","--inset":"_--inset_thv8z_44","--disabled-focus-ring":"_--disabled-focus-ring_thv8z_48","--radius-inherit":"_--radius-inherit_thv8z_52","--disabled":"_--disabled_thv8z_48","--full-width":"_--full-width_thv8z_82"},Oe=a.forwardRef((e,t)=>{const{children:n,href:r,onClick:o,type:s,disabled:i,insetFocus:c,disableFocusRing:m,borderRadius:u,as:_,stopPropagation:d,fullWidth:h,touchHitbox:g,className:p,attributes:f}=e,x=F(Vt.root,p,i&&Vt["--disabled"],u&&Vt[`--radius-${u}`],c&&Vt["--inset"],m&&Vt["--disabled-focus-ring"],h&&Vt["--full-width"]),w=v({},f),C=o||(f==null?void 0:f.onClick),y=(f==null?void 0:f.onFocus)||(f==null?void 0:f.onBlur),z=!!(r||f!=null&&f.href),E=!!(C||y||s||f!=null&&f.ref),S=!z&&E&&(!_||_==="button");let N;if(z)N="a",w.href=i?void 0:r||(f==null?void 0:f.href);else if(S)N="button",w.type=s||(f==null?void 0:f.type)||"button",w.disabled=i||(f==null?void 0:f.disabled);else if(E){const $=!(_==="label")||C||y;N=_||"span",w.role=$?"button":void 0,w.tabIndex=$?0:void 0}else N=_||"span";const k=T=>{var $;i||(d&&T.stopPropagation(),o==null||o(T),($=f==null?void 0:f.onClick)==null||$.call(f,T))},M=T=>{const $=T.key===za,D=T.key===os;!$&&!D||w.role==="button"&&(d&&T.stopPropagation(),T.preventDefault(),k(T))};return l.jsxs(N,j(v({ref:t},w),{"aria-disabled":i?!0:void 0,className:x,onClick:k,onKeyDown:M,children:[g&&(z||E)&&!i&&l.jsx("span",{className:Vt.touch}),n]}))});Oe.displayName="Actionable";const He={root:"_root_13916_1","--loading":"_--loading_13916_55","--highlighted":"_--highlighted_13916_55","--disabled":"_--disabled_13916_55",text:"_text_13916_68",icon:"_icon_13916_74","--icon-position-end":"_--icon-position-end_13916_83",loader:"_loader_13916_95","--icon-only":"_--icon-only_13916_103","--rounded":"_--rounded_13916_122","--size-small":"_--size-small_13916_1","--size-medium":"_--size-medium_13916_1","--size-large":"_--size-large_13916_1","--size-xlarge":"_--size-xlarge_13916_1","--full-width":"_--full-width_13916_168","--variant-solid":"_--variant-solid_13916_180","--color-neutral":"_--color-neutral_13916_181","--color-primary":"_--color-primary_13916_290","--color-critical":"_--color-critical_13916_291","--color-positive":"_--color-positive_13916_292","--color-media":"_--color-media_13916_195","--variant-faded":"_--variant-faded_13916_202","--color-inherit":"_--color-inherit_13916_218","--variant-outline":"_--variant-outline_13916_226","--variant-ghost":"_--variant-ghost_13916_262","--elevated":"_--elevated_13916_282",group:"_group_13916_343","--color-black":"_--color-black_13916_376","--color-white":"_--color-white_13916_388",aligner:"_aligner_13916_404","--size-small--m":"_--size-small--m_13916_1","--size-medium--m":"_--size-medium--m_13916_1","--size-large--m":"_--size-large--m_13916_1","--size-xlarge--m":"_--size-xlarge--m_13916_1","--full-width-true--m":"_--full-width-true--m_13916_1","--full-width-false--m":"_--full-width-false--m_13916_1","--size-small--l":"_--size-small--l_13916_1","--size-medium--l":"_--size-medium--l_13916_1","--size-large--l":"_--size-large--l_13916_1","--size-xlarge--l":"_--size-xlarge--l_13916_1","--full-width-true--l":"_--full-width-true--l_13916_1","--full-width-false--l":"_--full-width-false--l_13916_1","--size-small--xl":"_--size-small--xl_13916_1","--size-medium--xl":"_--size-medium--xl_13916_1","--size-large--xl":"_--size-large--xl_13916_1","--size-xlarge--xl":"_--size-xlarge--xl_13916_1","--full-width-true--xl":"_--full-width-true--xl_13916_1","--full-width-false--xl":"_--full-width-false--xl_13916_1"},Es=e=>{const{children:t,className:n,attributes:r}=e,o=F(He.group,n);return l.jsx("div",j(v({},r),{className:o,role:"group",children:t}))};Es.displayName="Button.Group";const Ss=e=>l.jsx(bn,j(v({},e),{side:e.side||e.position,className:[He.aligner,e.className]}));Ss.displayName="Button.Aligner";const qe=a.forwardRef((e,t)=>{const{variant:n="solid",color:r="neutral",elevated:o,highlighted:s,fullWidth:i,loading:c,loadingAriaLabel:m,disabled:u,type:_,href:d,size:h="medium",children:g,rounded:p,onClick:f,icon:x,endIcon:w,stopPropagation:C,as:y,className:z,attributes:E}=e,S=(x||w)&&!g,N=F(He.root,z,r&&He[`--color-${r}`],n&&He[`--variant-${n}`],me(He,"--size",h),me(He,"--full-width",i),o&&n!=="ghost"&&He["--elevated"],p&&He["--rounded"],u&&He["--disabled"],c&&He["--loading"],s&&He["--highlighted"],S&&He["--icon-only"]),k=M=>{if(!(M==="start"&&x||M==="end"&&w))return null;const A=F(He.icon,M==="end"&&He["--icon-position-end"]),q=_e(h,V=>V==="large"?5:V==="xlarge"?6:4);return l.jsx(ze,{className:A,svg:M==="start"?x:w,size:q,autoWidth:!0})};return l.jsxs(Oe,{disabled:u||c,className:N,attributes:j(v({},E),{"data-rs-aligner-target":!0}),type:_,onClick:f,href:d,ref:t,as:y,stopPropagation:C,children:[c&&l.jsx("div",{className:He.loader,children:l.jsx(Sr,{color:"inherit",attributes:{"aria-label":m}})}),k("start"),g&&l.jsx("span",{className:He.text,children:g}),k("end")]})});qe.Group=Es,qe.Aligner=Ss,qe.displayName="Button";const Ts=()=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",strokeWidth:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[l.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),l.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]}),Nn={root:"_root_1q0pg_1",close:"_close_1q0pg_9","--variant-media":"_--variant-media_1q0pg_16","--hide-close":"_--hide-close_1q0pg_17","--align-center":"_--align-center_1q0pg_26"},Tr=e=>{const{children:t,align:n,onClose:r,hideCloseButton:o,variant:s,closeAriaLabel:i,className:c,attributes:m}=e,u=F(Nn.root,c,s&&Nn[`--variant-${s}`],n&&Nn[`--align-${n}`],o&&Nn["--hide-close"]),_=s==="media"?"div":qe.Aligner;return l.jsxs("div",j(v({},m),{className:u,children:[t,!o&&l.jsx(_,{className:Nn.close,children:l.jsx(qe,j(v({size:"small"},s==="media"?{color:"media",variant:"faded"}:{variant:"ghost"}),{onClick:()=>r==null?void 0:r(),attributes:{"aria-label":r?i:void 0},icon:Ts}))})]}))};Tr.displayName="Dismissible";const Rn={content:"_content_ke5yp_1","content--variant-elevated":"_content--variant-elevated_ke5yp_5","content--elevation-raised":"_content--elevation-raised_ke5yp_14","content--has-width":"_content--has-width_ke5yp_18"},yt=e=>{var h,g;const d=e,{width:t,variant:n="elevated",triggerType:r="click",position:o="bottom",elevation:s}=d,i=$e(d,["width","variant","triggerType","position","elevation"]),c=(h=e.padding)!=null?h:n==="headless"?0:4,m=(g=e.trapFocusMode)!=null?g:r==="hover"?"content-menu":void 0,u=at({padding:c}),_=F(Rn.content,!!t&&Rn["content--has-width"],n&&Rn[`content--variant-${n}`],s&&Rn[`content--elevation-${s}`],u.classNames);return l.jsx(_t,j(v({},i),{position:o,trapFocusMode:m,triggerType:r,width:t,contentClassName:_,contentAttributes:{style:v({},u.variables)}}))},$s=e=>{const{handleClose:t}=Jt();return l.jsx(Tr,j(v({},e),{onClose:()=>t({})}))};yt.Dismissible=$s,yt.Trigger=_t.Trigger,yt.Content=_t.Content,yt.displayName="Popover",$s.displayName="Popover.Dismissible";const ft={root:"_root_18p8l_1",icon:"_icon_18p8l_14",content:"_content_18p8l_19","--rounded-corners":"_--rounded-corners_18p8l_24","--size-small":"_--size-small_18p8l_1","--size-medium":"_--size-medium_18p8l_1","--size-large":"_--size-large_18p8l_1","--color-neutral":"_--color-neutral_18p8l_66","--selected":"_--selected_18p8l_69","--highlighted":"_--highlighted_18p8l_71","--color-critical":"_--color-critical_18p8l_82","--color-primary":"_--color-primary_18p8l_98","--disabled":"_--disabled_18p8l_125",aligner:"_aligner_18p8l_146","--rounded-corners-true--m":"_--rounded-corners-true--m_18p8l_1","--rounded-corners-false--m":"_--rounded-corners-false--m_18p8l_1","--size-small--m":"_--size-small--m_18p8l_1","--size-medium--m":"_--size-medium--m_18p8l_1","--size-large--m":"_--size-large--m_18p8l_1","--rounded-corners-true--l":"_--rounded-corners-true--l_18p8l_1","--rounded-corners-false--l":"_--rounded-corners-false--l_18p8l_1","--size-small--l":"_--size-small--l_18p8l_1","--size-medium--l":"_--size-medium--l_18p8l_1","--size-large--l":"_--size-large--l_18p8l_1","--rounded-corners-true--xl":"_--rounded-corners-true--xl_18p8l_1","--rounded-corners-false--xl":"_--rounded-corners-false--xl_18p8l_1","--size-small--xl":"_--size-small--xl_18p8l_1","--size-medium--xl":"_--size-medium--xl_18p8l_1","--size-large--xl":"_--size-large--xl_18p8l_1"},Ms=e=>l.jsx(bn,j(v({},e),{side:e.side||"inline",className:[ft.aligner,e.className]}));Ms.displayName="MenuItem.Aligner";const Un=a.forwardRef((e,t)=>{const{icon:n,startSlot:r,endSlot:o,children:s,color:i="primary",selected:c,highlighted:m,disabled:u,onClick:_,href:d,size:h="medium",roundedCorners:g,stopPropagation:p,as:f,className:x,attributes:w}=e,C=F(ft.root,x,me(ft,"--size",h),me(ft,"--rounded-corners",g),i&&ft[`--color-${i}`],c&&ft["--selected"],u&&ft["--disabled"],m&&ft["--highlighted"]),y=_e(h,E=>E==="large"?3:2),z=_e(h,E=>E==="large"?5:4);return l.jsx(Oe,{disabled:u,className:C,attributes:j(v({},w),{"data-rs-aligner-target":!0}),onClick:_,href:d,ref:t,as:f,stopPropagation:p,children:l.jsxs(G,{direction:"row",gap:y,align:"center",children:[n&&l.jsx(ze,{svg:n,className:ft.icon,size:z}),!n&&r,s&&l.jsx(G.Item,{grow:!0,className:ft.content,children:s}),o]})})});Un.Aligner=Ms,Un.displayName="MenuItem";const Qt=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"9 18 15 12 9 6"})}),Yn={menu:"_menu_f04ws_1",section:"_section_f04ws_5",item:"_item_f04ws_11",arrow:"_arrow_f04ws_19"},$r=a.createContext(null),Is=a.createContext(!1),Ie=e=>{const i=e,{children:t,position:n="bottom-start",triggerType:r="click",trapFocusMode:o="action-menu"}=i,s=$e(i,["children","position","triggerType","trapFocusMode"]);return l.jsx(yt,j(v({},s),{position:n,padding:0,trapFocusMode:o,triggerType:r,children:t}))},Ds=e=>{const{children:t,attributes:n,className:r}=e,{flyout:o}=Jt(),s=a.useContext($r),[i]=xt(),{ref:c}=nt({[i?Pt:Lt]:()=>{var _;(_=s==null?void 0:s.current)==null||_.close()}},[s==null?void 0:s.current],{disabled:o.status==="idle",ref:n==null?void 0:n.ref}),m=F(Yn.menu,r),u=_=>{var d;_.stopPropagation(),(d=n==null?void 0:n.onClick)==null||d.call(n,_)};return l.jsx(yt.Content,{className:m,attributes:j(v({},n),{ref:c,onClick:u}),children:t})},Ps=e=>{const{children:t}=e;return l.jsx("div",{className:Yn.section,role:"group",children:t})},Mr=e=>{const{onClick:t}=e,{handleClose:n}=Jt(),r=a.useContext(Is),o=s=>{n&&!r&&n({closeParents:!0,reason:"item-selection"}),t&&t(s)};return l.jsx(Un,j(v({},e),{roundedCorners:!0,className:[Yn.item,e.className],attributes:v({role:"menuitem"},e.attributes),onClick:o}))},Ls=e=>{const{children:t}=e,n=a.useRef(null);return l.jsx($r.Provider,{value:n,children:l.jsx(Ie,{triggerType:"hover",position:"end-top",contentGap:.5,instanceRef:n,children:t})})},nc=e=>{const c=e,{children:t,attributes:n}=c,r=$e(c,["children","attributes"]),o=a.useContext($r),[s]=xt(),{ref:i}=nt({[s?Lt:Pt]:()=>{var m;(m=o==null?void 0:o.current)==null||m.open()}},[],{ref:n==null?void 0:n.ref,preventDefault:!0});return l.jsx(Mr,j(v({},r),{attributes:j(v({},n),{ref:i}),endSlot:l.jsx(ze,{autoWidth:!0,svg:Qt,className:Yn.arrow}),children:t}))},As=e=>{const r=e,{attributes:t}=r,n=$e(r,["attributes"]);return l.jsx(Is.Provider,{value:!0,children:l.jsx(Ie.Trigger,{children:o=>l.jsx(nc,j(v({},n),{attributes:v(v({},t),o)}))})})};Ie.Dismissible=yt.Dismissible,Ie.Trigger=yt.Trigger,Ie.Content=Ds,Ie.Section=Ps,Ie.Item=Mr,Ie.SubMenu=Ls,Ie.SubTrigger=As,Ie.displayName="DropdownMenu",Ds.displayName="DropdownMenu.Content",Ps.displayName="DropdownMenu.Section",Mr.displayName="DropdownMenu.Item",Ls.displayName="DropdownMenu.SubMenu",As.displayName="DropdownMenu.SubTrigger";const rc={"item--disabled":"_item--disabled_1vi4i_1"},Fs=a.createContext({}),Ir=e=>{var ye;const X=e,{children:t,onChange:n,onInput:r,onItemSelect:o,name:s,containerRef:i,instanceRef:c,onBackspace:m,onEnter:u,active:_,onOpen:d,onClose:h}=X,g=$e(X,["children","onChange","onInput","onItemSelect","name","containerRef","instanceRef","onBackspace","onEnter","active","onOpen","onClose"]),[p,f]=a.useState(),x=Ae(m),w=a.useRef(null),C=a.useRef(null),y=(ye=g.inputAttributes)==null?void 0:ye.ref,z=y&&typeof y!="string"&&"current"in y?y:C,[E,S]=a.useState(!1),N=!!a.Children.toArray(t).filter(Boolean).length,k=a.useRef(!1),M=Ae(d),T=Ae(h),$=Ae(n),D=Ae(o),A=Ae(u),q=N&&(_!=null?_:E),V=a.useCallback(()=>{k.current=!0,setTimeout(()=>{k.current=!1},100)},[]),L=a.useCallback(()=>{var O;k.current||(S(!0),(O=M.current)==null||O.call(M))},[M]),B=O=>{var R;S(!1),(R=T.current)==null||R.call(T,O)},K=a.useCallback(O=>{var R,ee;(R=$.current)==null||R.call($,{value:O.value,name:s}),(ee=D.current)==null||ee.call(D,O),V()},[V,$,D,s]),Y=O=>{n==null||n(O),L()},le=O=>{var R,ee;r==null||r({value:O.currentTarget.value,name:s,event:O}),(ee=(R=g.inputAttributes)==null?void 0:R.onInput)==null||ee.call(R,O)},te=()=>{var O;V(),(O=z.current)==null||O.focus()},H=a.useCallback(()=>{const O=w.current;return O?Array.from(O.querySelectorAll("[role=option]:not([disabled])")):[]},[]);nt({[os]:()=>{var ee;const R=H().find(Q=>Q.id===p);R==null||R.click(),(ee=A.current)==null||ee.call(A)},[ja]:()=>{var O;(O=x.current)==null||O.call(x)}},[H,A,x,p],{ref:z}),nt({[It]:()=>{const O=H();if(O.length){const R=O.findIndex(Q=>Q.id===p),ee=O.at(R-1)||O.at(-1);f(ee.id)}},[Dt]:()=>{L();const O=H();if(O.length){const R=O.findIndex(Q=>Q.id===p),ee=O.at(R+1)||O.at(0);f(ee.id)}}},[L,H,p],{ref:z,preventDefault:!0}),je(()=>{q&&requestAnimationFrame(()=>{var ee;const R=(ee=H()[0])==null?void 0:ee.id;R&&f(R)})},[q]);const Z=a.useMemo(()=>({onItemClick:K,highlightedId:p,setHighlightedId:f}),[p,K]);return l.jsx(Fs.Provider,{value:Z,children:l.jsxs(Ie,{position:"bottom",width:"trigger",triggerType:"focus",trapFocusMode:!1,active:q,onClose:B,onOpen:L,containerRef:i,disableHideAnimation:!0,instanceRef:c,children:[l.jsx(Ie.Trigger,{children:ee=>{var Q=ee,{ref:O}=Q,R=$e(Q,["ref"]);return l.jsx(xn,j(v({},g),{name:s,onChange:Y,focused:q,attributes:j(v({},g.attributes),{ref:O,onClick:R.onFocus}),inputAttributes:j(v(v({},g.inputAttributes),R),{onFocus:re=>{var Te,Ce,ke;(Te=R.onFocus)==null||Te.call(R),(Ce=g.onFocus)==null||Ce.call(g,re),k.current||(ke=z.current)==null||ke.select()},onInput:le,onClick:R.onFocus,ref:z,role:"combobox","aria-activedescendant":p,"aria-haspopup":"listbox","aria-autocomplete":"list"})}))}}),l.jsx(Ie.Content,{attributes:{onClick:te,role:"listbox",ref:w},children:t})]})})},qs=e=>{const d=e,{value:t,data:n,onClick:r,disabled:o}=d,s=$e(d,["value","data","onClick","disabled"]),{onItemClick:i,highlightedId:c}=a.useContext(Fs),m=et(),u=c===m,_=h=>{r==null||r(h),i({value:t,data:n})};return l.jsx(Ie.Item,j(v({},s),{className:[o&&rc["item--disabled"],s.className],highlighted:u,disabled:o,attributes:j(v({},s.attributes),{role:"option",id:m,tabIndex:u?0:-1}),onClick:_}))};Ir.Item=qs,Ir.displayName="Autocomplete",qs.displayName="Autocomplete.Item";const Gn={root:"_root_1trva_1",img:"_img_1trva_13","--variant-faded":"_--variant-faded_1trva_20","--color-neutral":"_--color-neutral_1trva_21","--color-critical":"_--color-critical_1trva_25","--color-positive":"_--color-positive_1trva_29","--color-warning":"_--color-warning_1trva_33","--color-primary":"_--color-primary_1trva_37"},Vs=e=>{const{color:t="neutral",variant:n,src:r,size:o=12,squared:s,initials:i,icon:c,className:m,renderImage:u,imageAttributes:_,attributes:d}=e,h=e.alt||(_==null?void 0:_.alt),g=s?_e(o,w=>w>=24?"large":w>=12?"medium":"small"):"circular",p=at({height:o}),f=F(Gn.root,m,p==null?void 0:p.classNames,t&&Gn[`--color-${t}`],n&&Gn[`--variant-${n}`]),x=()=>{if(r){const w=j(v({},_),{role:h?void 0:"presentation",src:r!=null?r:"",alt:h!=null?h:"",className:Gn.img});return u?u(w):l.jsx("img",v({},w))}return c?l.jsx(ze,{svg:c,size:_e(o,w=>Math.ceil(w*.4))}):i};return l.jsx(G,{borderRadius:g,attributes:j(v({},d),{style:v({},p==null?void 0:p.variables)}),backgroundColor:n==="faded"?`${t}-${n}`:t,className:f,children:x()})};Vs.displayName="Avatar";const rt={root:"_root_1mkpw_1",icon:"_icon_1mkpw_30",dismiss:"_dismiss_1mkpw_36","--actionable":"_--actionable_1mkpw_43","--variant-faded":"_--variant-faded_1mkpw_1","--variant-outline":"_--variant-outline_1mkpw_1","--color-positive":"_--color-positive_1mkpw_61","--color-critical":"_--color-critical_1mkpw_81","--color-warning":"_--color-warning_1mkpw_101","--color-primary":"_--color-primary_1mkpw_121","--size-small":"_--size-small_1mkpw_1","--size-medium":"_--size-medium_1mkpw_1","--size-large":"_--size-large_1mkpw_1","--rounded":"_--rounded_1mkpw_167","--hidden":"_--hidden_1mkpw_171",container:"_container_1mkpw_178","--container-overlap":"_--container-overlap_1mkpw_204","--container-position-top-end":"_--container-position-top-end_1mkpw_208","--container-position-bottom-end":"_--container-position-bottom-end_1mkpw_220"},Bs=e=>{const{children:t,position:n="top-end",overlap:r,className:o,attributes:s}=e,i=F(rt.container,o,r&&rt["--container-overlap"],n&&rt[`--container-position-${n}`]);return l.jsx("div",j(v({},s),{className:i,children:t}))};Bs.displayName="Badge.Container";const Dr=a.forwardRef((e,t)=>{const{children:n,color:r,rounded:o,size:s="medium",icon:i,endIcon:c,variant:m,hidden:u,href:_,onClick:d,onDismiss:h,dismissAriaLabel:g,className:p,attributes:f}=e,x=!!(d||_),w=s==="small"?3:4,C=F(rt.root,p,o&&rt["--rounded"],u&&rt["--hidden"],s&&rt[`--size-${s}`],r&&rt[`--color-${r}`],m&&rt[`--variant-${m}`],x&&rt["--actionable"]),y=z=>{z.stopPropagation(),h==null||h()};return l.jsxs(Oe,{onClick:d,href:_,className:C,attributes:f,ref:t,touchHitbox:!0,children:[i&&l.jsx(ze,{svg:i,autoWidth:!0,size:w,className:rt.icon}),n&&l.jsx(fe,{variant:s==="large"?"body-3":"caption-1",weight:"medium",attributes:{"aria-hidden":u?"true":void 0},children:n}),c&&l.jsx(ze,{svg:c,autoWidth:!0,size:w,className:rt.icon}),h&&l.jsx(Oe,{onClick:y,className:rt.dismiss,as:"span",attributes:{"aria-label":g},touchHitbox:!0,children:l.jsx(ze,{svg:Ts,size:w})})]})});Dr.Container=Bs,Dr.displayName="Badge";const Os=()=>l.jsxs("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[l.jsx("path",{d:"M8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9Z",fill:"currentColor"}),l.jsx("path",{d:"M12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9Z",fill:"currentColor"}),l.jsx("path",{d:"M4 9C4.55228 9 5 8.55228 5 8C5 7.44772 4.55228 7 4 7C3.44772 7 3 7.44772 3 8C3 8.55228 3.44772 9 4 9Z",fill:"currentColor"})]}),jn={root:"_root_x1qvh_1","--color-primary":"_--color-primary_x1qvh_6","--color-critical":"_--color-critical_x1qvh_10","--color-positive":"_--color-positive_x1qvh_14","--color-warning":"_--color-warning_x1qvh_18","--color-inherit":"_--color-inherit_x1qvh_22","--variant-plain":"_--variant-plain_x1qvh_27","--disabled":"_--disabled_x1qvh_32","--variant-underline":"_--variant-underline_x1qvh_39","--with-icon":"_--with-icon_x1qvh_57"},Pr=a.forwardRef((e,t)=>{const{icon:n,disabled:r,href:o,color:s="primary",variant:i="underline",className:c,children:m,attributes:u,type:_,onClick:d,stopPropagation:h}=e,g=F(jn.root,c,r&&jn["--disabled"],i&&jn[`--variant-${i}`],s&&jn[`--color-${s}`],n&&jn["--with-icon"]);return l.jsxs(Oe,{href:o,disabled:r,className:g,attributes:u,type:_,onClick:d,ref:t,stopPropagation:h,children:[n&&l.jsx(ze,{svg:n}),m]})});Pr.displayName="Link";const Hs=e=>{const{children:t,onClick:n,href:r,icon:o,disabled:s}=e;return!r&&!n&&!s?l.jsx(fe,{variant:"body-3",weight:"medium",color:"neutral",children:t}):l.jsx(Pr,{onClick:n,href:r,icon:o,disabled:s,variant:"plain",color:"inherit",children:t})};Hs.displayName="Breadcrumbs.Item";const Lr=e=>{const{children:t,separator:n,color:r,defaultVisibleItems:o,expandAriaLabel:s,disableExpand:i,ariaLabel:c,className:m,attributes:u}=e,_=o&&o>=2?o:null,[d,h]=a.useState(!1),g=F(m),p=a.Children.count(t);let f=0;const x=()=>{h(!0)};return l.jsx("nav",j(v({},u),{"aria-label":c||(u==null?void 0:u["aria-label"]),className:g,children:l.jsx(G,{as:"ol",direction:"row",gap:2,align:"center",children:a.Children.map(t,(w,C)=>{if(!w)return null;const y=p-(_||0),z=f===0,E=f>y,S=!_||z||E||d,N=f===y;f+=1;let k=null;return S?k=w:N&&(k=i?l.jsx(ze,{svg:Os,size:4}):l.jsx(qe.Aligner,{children:l.jsx(qe,{variant:"ghost",size:"small",icon:Os,onClick:x,attributes:{"aria-label":s}})})),k===null?null:l.jsxs(G,{as:"li",gap:2,direction:"row",align:"center",children:[C>0&&(S||N)&&l.jsx(fe,{color:"neutral-faded",children:n||l.jsx(ze,{svg:Qt,size:3})}),l.jsx(fe,{variant:"body-3",color:r==="primary"?"primary":"neutral-faded",children:k})]},C)})})}))};Lr.Item=Hs,Lr.displayName="Breadcrumbs";const Ws=7,Rs=1,wt=e=>{const{date:t}=e;return[t.getFullYear(),(t.getMonth()+1).toString().padStart(2,"0"),t.getDate().toString().padStart(2,"0")].join("-")},Ar=e=>{const{date:t,firstWeekDay:n=Rs}=e,r=t.getDay();return r<n?Ws-r-n:r-n},oc=e=>{const{firstWeekDay:t=Rs,renderWeekDay:n}=e,r=new Date(2021,1,t),o=[];for(let s=t;s<t+Ws;s++){const i=n?n({weekDay:s,date:r}):r.toLocaleDateString("en-US",{weekday:"short"});o.push(i.slice(0,2)),r.setDate(r.getDate()+1)}return o},sc=e=>{const{renderMonthLabel:t}=e;return new Array(12).fill(null).map((n,r)=>{const o=new Date(0,r);return t?t({month:r,date:o}):o.toLocaleString("default",{month:"short"})})},ic=e=>{const{date:t,firstWeekDay:n}=e,r=t.getMonth(),o=t.getFullYear(),s=[],i=new Date(o,r,1),c=Ar({date:i,firstWeekDay:n});for(c!==0&&s.push(new Array(c).fill(null));r===i.getMonth();)(Ar({date:i,firstWeekDay:n})===0||!s.length)&&s.push([]),s[s.length-1].push(new Date(i)),i.setDate(i.getDate()+1);const m=Ar({date:i,firstWeekDay:n});return m!==0&&s[s.length-1].push(...new Array(7-m).fill(null)),s},Us=e=>(e==null?void 0:e.querySelectorAll("[data-rs-date]"))||[],Fr=(e,t)=>{const n=new Date(e);return n.setMonth(t),n},lc=e=>Fr(e,e.getMonth()-1),Ys=e=>Fr(e,e.getMonth()+1),Gs=(e,t)=>{const n=new Date(e);return n.setFullYear(t),n},ac=e=>Gs(e,e.getFullYear()-1),cc=e=>Gs(e,e.getFullYear()+1),dc=e=>{const{date:t,min:n,max:r}=e,o=t.getMonth(),s=t.getFullYear(),i=new Date(s,o,0),c=Ys(t);return c.setDate(0),{isFirstMonth:n&&n>i,isLastMonth:r&&r<c}},uc=e=>{const{date:t,startValue:n,lastFocusedDate:r}=e,o=new Date,s=t.getMonth(),i=n==null?void 0:n.getMonth(),c=o.getMonth(),m=r==null?void 0:r.getMonth(),u=wt({date:t}),_=wt({date:o}),d=n&&wt({date:n}),h=r&&wt({date:r});return r&&s===m?u===h:n&&s===i?u===d:s===c?u===_:!0},mc=e=>{const{rootRef:t,changeToNextMonth:n,changeToPreviousMonth:r,monthDate:o,verticalDelta:s,min:i,max:c}=e,m=a.useRef(0),u=a.useCallback(_=>{const{delta:d,onMonthChange:h}=_,g=document.activeElement;if(!g)return;const p=Us(t.current),f=Array.from(p),w=f.findIndex(M=>M===g)+d,C=f[w],y=g.getAttribute("data-rs-date");if(!y)return;const[z,E,S]=y==null?void 0:y.split("-").map(Number);let N;if(S?N=new Date(z,E-1,S+d):d>0?N=new Date(z,E-1+d,1):N=new Date(z,E-1+d+1,0),!(i&&N<i||c&&N>c)){if(C){C.focus();return}m.current=w<0?w:w-(f.length-1),h()}},[t,i,c]);a.useEffect(()=>{const _=m.current;if(_===0)return;const d=Us(t.current),h=_<0?d.length+_:_-1,g=d[h];g&&g.focus(),m.current=0},[o,t]),nt({[Lt]:()=>u({delta:-1,onMonthChange:r}),[Pt]:()=>u({delta:1,onMonthChange:n}),[It]:()=>u({delta:-s,onMonthChange:r}),[Dt]:()=>u({delta:s,onMonthChange:n})},[n,r,u,s],{ref:t,preventDefault:!0})},Ke={selection:"_selection_1qf7s_6",weekday:"_weekday_1qf7s_11",control:"_control_1qf7s_17",cell:"_cell_1qf7s_21","cell-button":"_cell-button_1qf7s_26","--active":"_--active_1qf7s_31","--selection-range":"_--selection-range_1qf7s_59","--selection-start":"_--selection-start_1qf7s_65","--selection-end":"_--selection-end_1qf7s_75"},Ks=e=>{const{date:t,isoDate:n,startValue:r,endValue:o,disabled:s,focusable:i,onChange:c,range:m,hoveredDate:u,onDateHover:_,onDateHoverEnd:d,onDateFocus:h,renderAriaLabel:g,selectedDates:p}=e;if(!t)return l.jsx("td",{className:Ke.cell,"aria-hidden":"true"});const f=r&&wt({date:r}),x=o&&wt({date:o}),w=!!n&&!!f&&n===f,C=!!n&&!!x&&n===x,y=r&&t>r,z=o&&t<o,E=u&&!o&&u>t,S=!!(p!=null&&p.find(A=>wt({date:A})===n));let N;switch(!0){case(y&&E):case(y&&z):N="range";break;case(w&&(!m||C)):case S:N="standalone";break;case w:N="start";break;case C:N="end";break}const k=F([Ke.cell,N&&Ke["--active"],N&&Ke[`--selection-${N}`]]),M=()=>{if(!m){c==null||c({value:t});return}const A=r&&o,q=!r&&!o,V=r&&t<r,L=A||q||V,B=L?t:r,K=L?null:t;c==null||c({value:{start:B,end:K}})},T=()=>{_(t)},$=()=>{d(t)},D=()=>{T(),h(t)};return l.jsx("td",{className:k,role:s?"presentation":"gridcell",children:l.jsx(Oe,{fullWidth:!0,insetFocus:!0,className:Ke["cell-button"],disabled:s,onClick:M,attributes:{role:"checkbox",tabIndex:i?0:-1,"aria-hidden":s,"aria-label":g?g({date:t}):t.toLocaleDateString("en-us",{month:"long",day:"numeric",weekday:"long"}),"aria-checked":!!N,"data-rs-date":wt({date:t}),onMouseEnter:T,onMouseLeave:$,onFocus:D,onBlur:$},children:t.getDate()})})};Ks.displayName="CalendarDate";const Xs=e=>{const{date:t,value:n,onChange:r,min:o,max:s,range:i,firstWeekDay:c,selectedDates:m,hoveredDate:u,onDateHover:_,onDateHoverEnd:d,renderWeekDay:h,renderDateAriaLabel:g}=e;let p=!1;const[f,x]=a.useState(),w=t.getMonth(),C=ic({date:t,firstWeekDay:c}),y=oc({firstWeekDay:c,renderWeekDay:h});return l.jsxs("table",{className:Ke.selection,role:"grid",children:[l.jsx("thead",{"aria-hidden":"true",children:l.jsx("tr",{children:y.map(z=>l.jsx("th",{className:Ke.weekday,scope:"col",children:z},z))})}),l.jsx("tbody",{children:C.map(z=>{var S;const E=[w,(S=z[0])==null?void 0:S.getDate()].filter(Boolean).join("-");return l.jsx("tr",{className:Ke.row,children:z.map((N,k)=>{const M=!!N&&(o&&N<o||s&&N>s),T=n&&"start"in n?n.start:n,$=n&&"end"in n?n.end:n,D=N&&wt({date:N}),A=M?!1:!p&&!!N&&uc({date:N,lastFocusedDate:f,startValue:T});return A&&(p=!0),l.jsx(Ks,{date:N,isoDate:D,disabled:M,range:i,focusable:A,startValue:T,endValue:$,onChange:r,hoveredDate:u,onDateHover:_,onDateHoverEnd:d,onDateFocus:x,renderAriaLabel:g,selectedDates:m},k)})},E)})})]})};Xs.displayName="CalendarMonth";const qr=3,Js=e=>{const{renderMonthLabel:t,renderMonthAriaLabel:n,monthDate:r,min:o,max:s,onMonthClick:i}=e,c=a.useRef(null),m=sc({renderMonthLabel:t}),u=[];for(let _=0;_<m.length;_+=qr){const d=m.slice(_,_+qr);u.push(d)}return a.useEffect(()=>{var d;const _=(d=c.current)==null?void 0:d.querySelector('[tabIndex="0"]');tt(()=>{_==null||_.focus()})},[]),l.jsx("table",{ref:c,role:"grid",className:Ke.selection,children:l.jsx("tbody",{children:u.map((_,d)=>l.jsx("tr",{className:Ke.row,children:_.map((h,g)=>{const p=d*qr+g,f=new Date(r.getFullYear(),p),x=o&&o.getFullYear()>=f.getFullYear()&&o.getMonth()>f.getMonth(),C=s&&s.getFullYear()<=f.getFullYear()&&s.getMonth()<f.getMonth()||x;return l.jsx("td",{role:C?"presentation":"gridcell",className:Ke.cell,children:l.jsx(Oe,{fullWidth:!0,insetFocus:!0,className:Ke["cell-button"],disabled:C,onClick:()=>i(p),attributes:{tabIndex:p===r.getMonth()?0:-1,"aria-hidden":C,"aria-label":n?n({month:p}):h,"data-rs-date":`${r.getFullYear()}-${(p+1).toString().padStart(2,"0")}`},children:h})},h)})},d))})})};Js.displayName="CalendarYear";const _c={root:"_root_p9kz2_1"},Kn=e=>{const{children:t}=e;return l.jsx("div",{className:_c.root,children:t})};Kn.displayName="HiddenVisually";const Xn=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"15 18 9 12 15 6"})}),Zs=e=>{const{selectionMode:t,onMonthTitleClick:n,monthTitleRef:r,monthDate:o,renderSelectedMonthLabel:s,isFirstMonth:i,isLastMonth:c,onNextClick:m,onPreviousClick:u,monthSelectionAriaLabel:_="Select a month",previousMonthAriaLabel:d="Previous month",previousYearAriaLabel:h="Previous year",nextMonthAriaLabel:g="Next month",nextYearAriaLabel:p="Next year"}=e,f=a.useRef(null),x=a.useRef(null);return a.useEffect(()=>{if(!i||document.activeElement!==f.current)return;const w=x.current||r.current;tt(()=>{w==null||w.focus()})},[i,r]),a.useEffect(()=>{if(!c||document.activeElement!==x.current)return;const w=f.current||r.current;tt(()=>{w==null||w.focus()})},[c,r]),l.jsxs(G,{direction:"row",gap:2,align:"center",children:[l.jsx(Mt,{visibility:!0,hide:i,children:l.jsx("div",{className:Ke.control,children:l.jsx(qe,{variant:"ghost",icon:Xn,onClick:u,attributes:{ref:f,"aria-label":t==="date"?d:h}})})}),l.jsxs(G.Item,{grow:!0,children:[t==="date"&&l.jsxs(qe,{fullWidth:!0,variant:"ghost",onClick:n,attributes:{ref:r},children:[s?s({date:o}):o.toLocaleDateString("en-US",{month:"long",year:"numeric"}),l.jsx(Kn,{children:_})]}),t==="month"&&l.jsx(fe,{align:"center",weight:"medium",children:o.toLocaleDateString("en-US",{year:"numeric"})})]}),l.jsx(Mt,{visibility:!0,hide:c,children:l.jsx("div",{className:Ke.control,children:l.jsx(qe,{variant:"ghost",icon:Qt,onClick:m,attributes:{ref:x,"aria-label":t==="date"?g:p}})})})]})};Zs.displayName="CalendarControls";const Jn=e=>{const{value:t,onChange:n,defaultMonth:r,min:o,max:s,range:i,firstWeekDay:c,selectedDates:m,renderMonthLabel:u,renderSelectedMonthLabel:_,renderWeekDay:d,previousMonthAriaLabel:h,previousYearAriaLabel:g,nextMonthAriaLabel:p,nextYearAriaLabel:f,monthSelectionAriaLabel:x,renderMonthAriaLabel:w,renderDateAriaLabel:C}=e,[y,z]=a.useState("date"),[E,S]=a.useState(r||new Date),[N,k]=a.useState(null),M=a.useRef(null),T=a.useRef(y),$=dc({date:E,min:o,max:s}),D=a.useRef(null),A=()=>{if(y==="month"){S(Y=>ac(Y));return}S(Y=>lc(Y))},q=()=>{if(y==="month"){S(Y=>cc(Y));return}S(Y=>Ys(Y))},V=()=>{z("month")},L=Y=>{S(le=>Fr(le,Y)),z("date")},B=Y=>{k(Y)},K=Y=>{N&&+N==+Y&&k(null)};return a.useEffect(()=>{y==="date"&&y!==T.current&&tt(()=>{var Y;(Y=M.current)==null||Y.focus()}),T.current=y},[y]),mc({monthDate:E,rootRef:D,changeToNextMonth:q,changeToPreviousMonth:A,verticalDelta:y==="date"?7:3,min:o,max:s}),l.jsxs(G,{gap:2,children:[l.jsx(Zs,{renderSelectedMonthLabel:_,monthDate:E,selectionMode:y,isFirstMonth:$.isFirstMonth,isLastMonth:$.isLastMonth,monthTitleRef:M,onMonthTitleClick:V,onNextClick:q,onPreviousClick:A,previousMonthAriaLabel:h,previousYearAriaLabel:g,nextMonthAriaLabel:p,nextYearAriaLabel:f,monthSelectionAriaLabel:x}),l.jsxs(G.Item,{attributes:{ref:D},children:[y==="date"&&l.jsx(Xs,{date:E,value:t,onChange:n,min:o,max:s,range:i,firstWeekDay:c,hoveredDate:N,selectedDates:m,onDateHover:B,onDateHoverEnd:K,renderWeekDay:d,renderDateAriaLabel:C}),y==="month"&&l.jsx(Js,{monthDate:E,onMonthClick:L,renderMonthLabel:u,renderMonthAriaLabel:w,min:o,max:s})]})]})};Jn.displayName="CalendarControlled";const Qs=e=>{const c=e,{onChange:t,defaultValue:n,range:r}=c,o=$e(c,["onChange","defaultValue","range"]),[s,i]=a.useState(n||null);return r?l.jsx(Jn,j(v({range:!0},o),{value:s,onChange:m=>{i(m.value),t==null||t(m)}})):l.jsx(Jn,j(v({},o),{value:s,onChange:m=>{i(m.value),t==null||t(m)}}))};Qs.displayName="CalendarUncontrolled";const ei=e=>e.value!==void 0?l.jsx(Jn,v({},e)):l.jsx(Qs,v({},e));ei.displayName="Calendar";const Zn={root:"_root_re62h_1","--selected":"_--selected_re62h_15","--elevated":"_--elevated_re62h_21","--actionable":"_--actionable_re62h_26"},ti=a.forwardRef((e,t)=>{const{padding:n=4}=e,{selected:r,elevated:o,bleed:s,height:i,onClick:c,href:m,children:u,className:_,attributes:d,as:h="div"}=e,g=!!m||!!c,p=at({radius:"medium",bleed:s,height:i,padding:n}),f=F(Zn.root,p.classNames,g&&Zn["--actionable"],o&&Zn["--elevated"],r&&Zn["--selected"],_),x=v(v({},d==null?void 0:d.style),p.variables);return g?l.jsx(Oe,{className:f,attributes:j(v({},d),{style:x}),href:m,as:h,onClick:c,ref:t,children:u}):l.jsx(h,j(v({},d),{onClick:c,href:m,ref:t,className:f,style:x,children:u}))});ti.displayName="Card";const Ct={root:"_root_adyde_1",control:"_control_adyde_9","--control-prev":"_--control-prev_adyde_21","--control-next":"_--control-next_adyde_25","--control-visible":"_--control-visible_adyde_29",scroll:"_scroll_adyde_34",item:"_item_adyde_61","--control-rendered":"_--control-rendered_adyde_73","--bleed":"_--bleed_adyde_79","--bleed-true--m":"_--bleed-true--m_adyde_1","--bleed-false--m":"_--bleed-false--m_adyde_1","--bleed-true--l":"_--bleed-true--l_adyde_1","--bleed-false--l":"_--bleed-false--l_adyde_1","--bleed-true--xl":"_--bleed-true--xl_adyde_1","--bleed-false--xl":"_--bleed-false--xl_adyde_1"},Vr=a.forwardRef((e,t)=>{const{type:n,scrollElRef:r,oppositeControlElRef:o,scrollPosition:s,onClick:i,isRTL:c,mounted:m}=e,[u,_]=a.useState(!1),[d,h]=a.useState(!1),g=n==="forward",p=n===(c?"back":"forward"),f=F(Ct.control,p?Ct["--control-next"]:Ct["--control-prev"],u&&Ct["--control-visible"],d&&Ct["--control-rendered"]);return je(()=>{var S;const x=r.current;if(!x||!m)return;let w;const C=Math.abs(s),y=C<=0,z=C+x.clientWidth>=x.scrollWidth-1;return(g?z:y)?(_(!1),w=setTimeout(()=>h(!1),1500),(S=o.current)==null||S.focus()):(h(!0),_(!0)),()=>{w&&clearTimeout(w)}},[s,r,m,g]),l.jsx("div",{className:f,children:l.jsx(qe,{size:"small",onClick:i,icon:p?Qt:Xn,rounded:!0,variant:"outline",elevated:!0,attributes:{"aria-disabled":!u,"aria-hidden":!0},ref:t})})});Vr.displayName="CarouselControl";const ni=e=>{const{children:t,gap:n=3,visibleItems:r,bleed:o,navigationDisplay:s,onChange:i,onScroll:c,instanceRef:m,className:u,attributes:_}=e,d=a.useRef(0),h=a.useRef([]),[g,p]=a.useState(!1),[f,x]=a.useState(0),[w]=xt(),C=a.useRef(null),y=a.useRef(null),z=a.useRef(null),E={};typeof o=="object"&&Object.entries(o).forEach(([L,B])=>{E[L]=typeof B=="number"&&B>0});const S=F(Ct.root,u,...me(Ct,"--bleed",typeof o=="number"?!0:E)),N=(L,B)=>{h.current[B]=L},k=jr(L=>{const B=L.target,K=T();x(B.scrollLeft),c==null||c(L),d.current!==K&&(i==null||i({index:K})),d.current=K}),M=()=>{const B=getComputedStyle(C.current).gap.split(" ")[0];return Number(B.replace("px",""))},T=()=>{let L=0,B=0;const K=C.current;if(!K)return L;const Y=w?-K.scrollLeft:K.scrollLeft,le=M();return h.current.some((te,H)=>te?B+te.clientWidth/2>=Y?(L=H,!0):(B+=(te==null?void 0:te.clientWidth)+le,!1):!1),L},$=L=>{const B=C.current,K=h.current[L];K&&B.scrollTo({left:w?K.offsetLeft-(B.clientWidth-K.clientWidth):K.offsetLeft,top:0,behavior:"smooth"})},D=()=>{const L=C.current;L.scrollBy({left:L.clientWidth+M(),top:0,behavior:"smooth"})},A=()=>{const L=C.current;L.scrollBy({left:-L.clientWidth-M(),top:0,behavior:"smooth"})},q=w?D:A,V=w?A:D;return a.useImperativeHandle(m,()=>({navigateBack:q,navigateForward:V,navigateTo:$})),je(()=>{p(!0)},[]),l.jsxs("section",j(v({},_),{className:S,style:v(v(v({},U("--rs-carousel-items",r)),U("--rs-carousel-bleed",o)),_==null?void 0:_.style),children:[s!=="hidden"&&l.jsxs(l.Fragment,{children:[l.jsx(Vr,{isRTL:w,type:"back",ref:y,oppositeControlElRef:z,scrollElRef:C,scrollPosition:f,onClick:q,mounted:g}),l.jsx(Vr,{isRTL:w,type:"forward",ref:z,oppositeControlElRef:y,scrollElRef:C,scrollPosition:f,onClick:V,mounted:g})]}),l.jsx(G,{as:"ul",direction:"row",wrap:!1,gap:n,className:Ct.scroll,attributes:{ref:C,onScroll:k},children:a.Children.map(t,(L,B)=>l.jsx(G.Item,{className:Ct.item,as:"li",attributes:{ref:K=>N(K,B)},children:L}))})]}))};ni.displayName="Carousel";const fc={root:"_root_1feer_1"},Qn=e=>{const{name:t,value:n,type:r,onChange:o,onFocus:s,onBlur:i,checked:c,defaultChecked:m,disabled:u,className:_,attributes:d}=e,h=F(fc.root,_);return l.jsx("input",j(v({},d),{className:h,type:r,name:t,value:n,checked:c,defaultChecked:m,disabled:u,onChange:o,onFocus:s||(d==null?void 0:d.onFocus),onBlur:i||(d==null?void 0:d.onBlur)}))};Qn.displayName="HiddenInput";const ri=a.createContext(null),hc=()=>a.useContext(ri),Br=e=>{const{onChange:t,name:n,disabled:r,value:o,children:s,hasError:i}=e,c=m=>{const{event:u,value:_,checked:d}=m;if(!_)return;let h=[...o];d?h.push(_):h=h.filter(g=>g!==_),t&&t({name:n,value:h,event:u})};return l.jsx(ri.Provider,{value:{onChange:c,disabled:r,value:o,name:n,hasError:i},children:s})};Br.displayName="CheckboxGroupControlled";const oi=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||[]),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(Br,j(v({},e),{value:r,defaultValue:void 0,onChange:s}))};oi.displayName="CheckboxGroupUncontrolled";const si=e=>{const{value:t}=e;return t!==void 0?l.jsx(Br,v({},e)):l.jsx(oi,v({},e))};si.displayName="CheckboxGroup";const ii=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"20 6 9 17 4 12"})}),Tt={root:"_root_108j7_12",decorator:"_decorator_108j7_23",field:"_field_108j7_28","--size-small":"_--size-small_108j7_1","--size-medium":"_--size-medium_108j7_1","--size-large":"_--size-large_108j7_1",icon:"_icon_108j7_75",input:"_input_108j7_85","--error":"_--error_108j7_92","--disabled":"_--disabled_108j7_114","--size-small--m":"_--size-small--m_108j7_1","--size-medium--m":"_--size-medium--m_108j7_1","--size-large--m":"_--size-large--m_108j7_1","--size-small--l":"_--size-small--l_108j7_1","--size-medium--l":"_--size-medium--l_108j7_1","--size-large--l":"_--size-large--l_108j7_1","--size-small--xl":"_--size-small--xl_108j7_1","--size-medium--xl":"_--size-medium--xl_108j7_1","--size-large--xl":"_--size-large--xl_108j7_1"},li=e=>{var E;const{children:t,value:n,onChange:r,onFocus:o,onBlur:s,indeterminate:i,size:c="medium",className:m,attributes:u,inputAttributes:_}=e,d=hc(),h=mt(),g=(h==null?void 0:h.hasError)||e.hasError||(d==null?void 0:d.hasError),p=(h==null?void 0:h.disabled)||e.disabled||(d==null?void 0:d.disabled),f=d?(E=d.value)==null?void 0:E.includes(n):e.checked,x=d?void 0:e.defaultChecked,w=d?d.name:e.name,C=a.useRef(null),y=F(Tt.root,m,c&&g&&Tt["--error"],p&&Tt["--disabled"],c&&me(Tt,"--size",c)),z=S=>{if(!w)return;const{checked:N}=S.target,k={name:w,value:n,checked:N,event:S};r&&r(k),d!=null&&d.onChange&&d.onChange(k)};return je(()=>{C.current.indeterminate=i||!1},[i,f]),l.jsxs("label",j(v({},u),{className:y,children:[l.jsxs("span",{className:Tt.field,children:[l.jsx(Qn,{className:Tt.input,type:"checkbox",checked:f,defaultChecked:x,name:w,disabled:p,value:n,onChange:z,onFocus:o,onBlur:s,attributes:j(v({},_),{ref:C})}),l.jsx("div",{className:Tt.decorator,children:l.jsx(ze,{svg:ii,className:Tt.icon,size:_e(c,S=>S==="large"?5:S==="small"?3:4)})})]}),t&&l.jsx(fe,{as:"span",variant:_e(c,S=>S==="large"?"body-2":S==="small"?"caption-1":"body-3"),children:t})]}))};li.displayName="Checkbox";const er=e=>e.preventDefault(),Or=()=>{window.addEventListener("wheel",er,{passive:!1}),window.addEventListener("touchmove",er,{passive:!1})},Hr=()=>{window.removeEventListener("wheel",er),window.removeEventListener("touchmove",er)},Wr=e=>{var n;const t=((n=window.navigator.userAgentData)==null?void 0:n.platform)||window.navigator.platform;return typeof window!="undefined"?e.test(t):!1},gc=()=>Wr(/^iPhone/i),pc=()=>Wr(/^Mac/i),vc=()=>Wr(/^iPad/i)||pc()&&navigator.maxTouchPoints>1,bc=()=>gc()||vc();class ai{constructor(){Se(this,"cache",new Map);Se(this,"set",(t,n)=>{const r={},o=this.cache.get(t);Object.keys(n).forEach(s=>{r[s]=t.style.getPropertyValue(s)}),this.cache.set(t,v(v({},r),o)),Object.assign(t.style,n)});Se(this,"reset",()=>{for(const[t,n]of this.cache.entries())Object.assign(t.style,n);this.cache.clear()})}}const ci=new ai,xc=()=>{const e=window.visualViewport,t=(e==null?void 0:e.offsetLeft)||0,n=(e==null?void 0:e.offsetTop)||0,{scrollX:r,scrollY:o}=window;return ci.set(document.body,{position:"fixed",top:`${-(o-Math.floor(n))}px`,left:`${-(r-Math.floor(t))}px`,right:"0",overflow:"hidden"}),()=>{ci.reset(),window.scrollTo({top:o,left:r,behavior:"instant"})}},yc=(()=>{let e;return()=>{if(e)return e;const t=document.createElement("div");return t.style.position="absolute",t.style.top="-9999px",t.style.width="50px",t.style.height="50px",t.style.overflow="scroll",document.body.appendChild(t),e=t.getBoundingClientRect().width-t.clientWidth,document.body.removeChild(t),e}})(),Rr=new ai,wc=e=>{const{container:t}=e,n=t.getBoundingClientRect(),r=n.left+n.right<window.innerWidth;if(Rr.set(t,{overflow:"hidden"}),r){const o=yc();Rr.set(t,{paddingRight:`${o}px`})}return()=>Rr.reset()};let tr=0,Ur=()=>{};const Cc=e=>{var r;const t=bc()&&!e.containerEl&&!e.originEl;let n=document.body;e.originEl&&!t&&(n=br({el:e.originEl})),e.containerEl&&!t&&(n=e.containerEl),n===document.body&&(tr+=1),!(tr>1)&&(t?Ur=xc():Ur=wc({container:n}),(r=e.cb)==null||r.call(e))},zc=e=>{tr-=1,!(tr>0)&&(Ur(),e==null||e())},Yr=e=>{const{containerRef:t,originRef:n}=e||{},[r,o]=a.useState(!1),s=a.useCallback(()=>{Cc({containerEl:t==null?void 0:t.current,originEl:n==null?void 0:n.current,cb:()=>o(!0)})},[t,n]),i=a.useCallback(()=>{zc(()=>o(!1))},[]);return a.useMemo(()=>({scrollLocked:r,lockScroll:s,unlockScroll:i}),[r,s,i])},Nc={root:"_root_th78q_1"},Bt=e=>{const d=e,{position:t="end-top",onOpen:n,onClose:r}=d,o=$e(d,["position","onOpen","onClose"]),[s,i]=a.useState(),c=a.useRef(null),{lockScroll:m,unlockScroll:u}=Yr({originRef:c}),_=Ae(n);return a.useEffect(()=>{const h=c.current;if(!h)return;const g=p=>{var f;p.preventDefault(),i({x:p.clientX,y:p.clientY}),m(),(f=_.current)==null||f.call(_)};return h.addEventListener("contextmenu",g),()=>h.removeEventListener("contextmenu",g)},[m,_]),a.useEffect(()=>()=>u(),[u]),l.jsx("div",{className:Nc.root,ref:c,children:l.jsx(Ie,j(v({},o),{position:t,originCoordinates:s,active:!!s,onClose:h=>{i(void 0),u(),r==null||r(h)}}))})};Bt.Content=Ie.Content,Bt.Item=Ie.Item,Bt.Section=Ie.Section,Bt.SubMenu=Ie.SubMenu,Bt.SubTrigger=Ie.SubTrigger,Bt.displayName="ContextMenu";const $t={root:"_root_36mq4_1","--inline":"_--inline_36mq4_11",triggerLayer:"_triggerLayer_36mq4_15","--variant-outline":"_--variant-outline_36mq4_29","--highlighted":"_--highlighted_36mq4_34",trigger:"_trigger_36mq4_15"},di=e=>{const{children:t}=e;return l.jsx("span",{className:$t.trigger,children:t})},Gr=e=>{const{name:t,children:n,height:r,variant:o="outline",inline:s,className:i,attributes:c,inputAttributes:m,onChange:u}=e,_=qt(),d=F($t.root,o&&$t[`--variant-${o}`],s&&$t["--inline"],_.active&&$t["--highlighted"],i),h=y=>{var z;y.preventDefault(),(z=c==null?void 0:c.onDragOver)==null||z.call(c,y)},g=y=>{var z;_.activate(),(z=c==null?void 0:c.onDragEnter)==null||z.call(c,y)},p=y=>{var z;y.currentTarget.contains(y.relatedTarget)||(_.deactivate(),(z=c==null?void 0:c.onDragLeave)==null||z.call(c,y))},f=y=>{var z;y.preventDefault(),_.deactivate(),u==null||u({name:t,value:Array.from(y.dataTransfer.files),event:y}),(z=c==null?void 0:c.onDrop)==null||z.call(c,y)},x=y=>{var E;const z=y.target.files;z&&(u==null||u({name:t,event:y,value:Array.from(z)}),(E=m==null?void 0:m.onChange)==null||E.call(m,y))},w=l.jsx(Kn,{children:l.jsx("input",j(v({},m),{type:"file",className:$t.field,name:t,onChange:x}))}),C=typeof n=="function"?n({highlighted:_.active}):n;return l.jsx(G,{className:d,height:r,attributes:j(v({},c),{onDragOver:h,onDragEnter:g,onDragLeave:p,onDrop:f}),children:o==="outline"&&!s?l.jsxs(G,{as:"label",className:$t.triggerLayer,padding:6,borderRadius:"medium",gap:2,align:"center",justify:"center",textAlign:"center",animated:!0,height:"100%",children:[w,l.jsx(G.Item,{children:C})]}):l.jsxs("label",{className:$t.triggerLayer,children:[w,C]})})};Gr.Trigger=di,Gr.displayName="FileUpload",di.displayName="FileUpload.Trigger";const ui={root:"_root_bzk9x_1","--active":"_--active_bzk9x_14"},mi=e=>{const{children:t,active:n,className:r,attributes:o}=e,s=F(ui.root,n&&ui["--active"],r);return l.jsx(fe,{as:"kbd",variant:"caption-1",weight:"medium",color:"neutral-faded",className:s,attributes:o,children:t})};mi.displayName="Hotkey";const Kr={m:660,l:900,xl:1280},_i=e=>{var o,s,i,c,m,u;const{defaultViewport:t}=a.useContext(Cr),[n,r]=a.useState(t);return je(()=>{const _=document.querySelector("[data-rs-theme]"),d=_&&window.getComputedStyle(_),h={m:d&&Number(d.getPropertyValue("--rs-viewport-m-min"))||Kr.m,l:d&&Number(d.getPropertyValue("--rs-viewport-l-min"))||Kr.l,xl:d&&Number(d.getPropertyValue("--rs-viewport-xl-min"))||Kr.xl},g={s:`(max-width: ${h.m-1}px)`,m:`(min-width: ${h.m}px) and (max-width: ${h.l-1}px)`,l:`(min-width: ${h.l}px) and (max-width: ${h.xl-1}px)`,xl:`(min-width: ${h.xl}px)`},f=Object.keys(g).map(x=>{const w=window.matchMedia(g[x]);return{mq:w,handler:()=>w.matches&&r(x)}});return f.forEach(({handler:x,mq:w})=>{x(),w.addEventListener("change",x)}),()=>{f.forEach(({handler:x,mq:w})=>{w.removeEventListener("change",x)})}},[]),typeof e!="object"||e===null||!("s"in e)?e:n==="xl"?(i=(s=(o=e.xl)!=null?o:e.l)!=null?s:e.m)!=null?i:e.s:n==="l"?(m=(c=e.l)!=null?c:e.m)!=null?m:e.s:n==="m"&&(u=e.m)!=null?u:e.s},ht={root:"_root_1irm5_1",wrapper:"_wrapper_1irm5_26",inner:"_inner_1irm5_32",content:"_content_1irm5_38","--visible":"_--visible_1irm5_44","--click-through":"_--click-through_1irm5_49","--blurred":"_--blurred_1irm5_54","--contained":"_--contained_1irm5_72","--animated":"_--animated_1irm5_76","--overflow-auto":"_--overflow-auto_1irm5_85"},Xr=e=>{const{active:t,children:n,transparent:r,blurred:o,overflow:s,onClose:i,onOpen:c,onAfterClose:m,onAfterOpen:u,disableCloseOnClick:_,containerRef:d,className:h,attributes:g}=e,p=Ae(i),f=Ae(c),x=r===!0,w=x?0:(1-(r||0))*.7,[C,y]=a.useState(!1),[z,E]=a.useState(!1),[S,N]=a.useState([0,0]),k=a.useRef(null),{lockScroll:M,unlockScroll:T}=Yr({containerRef:d}),$=a.useRef(null),D=a.useRef(!1),{active:A,activate:q,deactivate:V}=qt(t||!1),{active:L,activate:B,deactivate:K}=qt(t||!1),Y=ss({active:t,contentRef:k}),le=F(ht.root,L&&ht["--visible"],x&&ht["--click-through"],o&&ht["--blurred"],z&&ht["--animated"],d&&ht["--contained"],s==="auto"&&ht["--overflow-auto"],h),te=O=>{if(!k.current)return;const R=k.current.firstChild;if(R)return R.contains(O)},H=a.useCallback(O=>{var R;!L||!Y()||($.current&&(d!=null&&d.current)&&(d.current.style.overflow=$.current,d.current.style.removeProperty("isolation"),$.current=null),(R=p.current)==null||R.call(p,{reason:O.reason}))},[L,Y,p,d]),Z=O=>{D.current=!te(O.target)},X=O=>{const R=!te(O.target);!(D.current&&R&&!x)||_||H({reason:"overlay-click"})},ye=O=>{if(!(O.propertyName!=="opacity"||O.target!==O.currentTarget)){if(E(!1),L){u==null||u();return}T(),V(),m==null||m()}};return nt({Escape:()=>H({reason:"escape-key"})},[H]),a.useEffect(()=>{E(!0),t&&!A&&q(),!t&&A&&K()},[t,q,K,A]),a.useEffect(()=>{A&&(x||M(),tt(()=>{B()}))},[A,B,M,x]),a.useEffect(()=>{var ee;if(!A||!k.current)return;const O=new Xt,R=d==null?void 0:d.current;return R&&($.current=R.style.overflow,R.style.overflow="hidden",R.style.isolation="isolate",N([R.scrollLeft,R.scrollTop])),O.trap(k.current,{initialFocusEl:k.current.querySelector("[role=dialog][tabindex='-1']")}),(ee=f.current)==null||ee.call(f),()=>O.release()},[A,f,d]),a.useEffect(()=>()=>T(),[T]),je(()=>{y(!0)},[]),!A||!C?null:l.jsx(zn,{targetRef:d,children:l.jsx(zn.Scope,{children:O=>l.jsx("div",j(v({},g),{ref:O,style:{"--rs-overlay-opacity":w,"--rs-overlay-offset-x":d?`${S[0]}px`:void 0,"--rs-overlay-offset-y":d?`${S[1]}px`:void 0},role:"button",tabIndex:-1,className:le,onMouseDown:Z,onMouseUp:X,onTransitionEnd:ye,children:l.jsx("div",{className:ht.wrapper,children:l.jsx("div",{className:ht.inner,children:l.jsx("div",{className:ht.content,ref:k,children:typeof n=="function"?n({active:L}):n})})})}))})})};Xr.displayName="Overlay";const en={root:"_root_xwxeb_1","--contained":"_--contained_xwxeb_16","--position-center":"_--position-center_xwxeb_1","--active":"_--active_xwxeb_41","--position-bottom":"_--position-bottom_xwxeb_1","--position-start":"_--position-start_xwxeb_1","--position-end":"_--position-end_xwxeb_1","--position-full-screen":"_--position-full-screen_xwxeb_1","--dragging":"_--dragging_xwxeb_154","--overflow-visible":"_--overflow-visible_xwxeb_158","--position-center--m":"_--position-center--m_xwxeb_1","--position-bottom--m":"_--position-bottom--m_xwxeb_1","--position-start--m":"_--position-start--m_xwxeb_1","--position-end--m":"_--position-end--m_xwxeb_1","--position-full-screen--m":"_--position-full-screen--m_xwxeb_1","--position-center--l":"_--position-center--l_xwxeb_1","--position-bottom--l":"_--position-bottom--l_xwxeb_1","--position-start--l":"_--position-start--l_xwxeb_1","--position-end--l":"_--position-end--l_xwxeb_1","--position-full-screen--l":"_--position-full-screen--l_xwxeb_1","--position-center--xl":"_--position-center--xl_xwxeb_1","--position-bottom--xl":"_--position-bottom--xl_xwxeb_1","--position-start--xl":"_--position-start--xl_xwxeb_1","--position-end--xl":"_--position-end--xl_xwxeb_1","--position-full-screen--xl":"_--position-full-screen--xl_xwxeb_1"},Jr=32,jc=100,kc=32,fi=a.createContext({id:"",titleMounted:!1,setTitleMounted:()=>{},subtitleMounted:!1,setSubtitleMounted:()=>{}}),hi=()=>a.useContext(fi),gi=e=>{const{children:t}=e,{id:n,setTitleMounted:r}=hi();return a.useEffect(()=>(r(!0),()=>r(!1)),[r]),l.jsx(fe,{variant:"featured-3",weight:"bold",attributes:{id:`${n}-title`},children:t})},pi=e=>{const{children:t}=e,{id:n,setSubtitleMounted:r}=hi();return a.useEffect(()=>(r(!0),()=>r(!1)),[r]),l.jsx(fe,{variant:"body-3",color:"neutral-faded",attributes:{id:`${n}-subtitle`},children:t})},nr=e=>{const{children:t,onClose:n,onOpen:r,onAfterClose:o,onAfterOpen:s,active:i,size:c,padding:m=4,position:u="center",overflow:_,transparentOverlay:d,blurredOverlay:h,ariaLabel:g,autoFocus:p=!0,disableSwipeGesture:f,disableCloseOnOutsideClick:x,containerRef:w,overlayClassName:C,className:y,attributes:z}=e,E=Ae(n),S=et(),N=_i(u),[k,M]=a.useState(!1),[T,$]=a.useState(!1),[D,A]=a.useState(!1),q=a.useRef(null),V=(z==null?void 0:z.ref)||q,L=a.useRef({x:0,y:0}),B=a.useRef(0),K=a.useRef(0),Y=a.useRef(0),[le,te]=a.useState(0),[H,Z]=a.useState(0),X=at({padding:m}),ye=a.useMemo(()=>({titleMounted:k,setTitleMounted:M,subtitleMounted:T,setSubtitleMounted:$,id:S}),[S,T,k]),O=()=>{L.current={x:0,y:0},B.current=0,Y.current=0,te(0)},R=Q=>{var Ce;if(f||(Ce=window.getSelection())!=null&&Ce.toString())return;let re=Q.target;const Te=V.current;for(;re&&(re===Te||Te!=null&&Te.contains(re));){if(re.scrollTop!==0||re.scrollLeft!==0||re.matches("input,textarea"))return;re=re?re.parentElement:null}N==="start"&&Q.targetTouches[0].clientX<kc||(Dn(),Or(),A(!0))},ee=Q=>{i||Q.propertyName==="transform"&&Q.currentTarget===Q.target&&O()};return a.useEffect(()=>{if(!D)return;const Q=()=>{var Ce;Pn(),Hr(),A(!1);const Te=N==="start"?Y.current<0:Y.current>0;Math.abs(K.current)>Jr&&Te?(Ce=E.current)==null||Ce.call(E,{reason:"drag"}):O()},re=Te=>{var de,pe;if(!D||N==="center"||((de=V.current)==null?void 0:de.scrollTop)!==0||((pe=V.current)==null?void 0:pe.scrollLeft)!==0)return;const Ce=Te.targetTouches[0],ke={x:Ce.clientX,y:Ce.clientY},Ee=N==="bottom"?"y":"x",ne=N==="bottom"?"x":"y";L.current[Ee]||(L.current=ke,B.current=ke[Ee]);const ae=Math.abs(ke[Ee]-L.current[Ee]),he=Math.abs(ke[ne]-L.current[ne]);if(u!=="bottom"&&(ae<he||he>jc)){B.current=ke[Ee];return}Y.current=ke[Ee]-B.current,B.current=ke[Ee],te(we=>N==="start"?Math.min(0,we+Y.current):Math.max(0,we+Y.current))};return document.addEventListener("touchmove",re,{passive:!0}),document.addEventListener("touchend",Q,{passive:!0}),()=>{document.removeEventListener("touchmove",re),document.removeEventListener("touchend",Q)}},[D,N,E,u,V]),a.useEffect(()=>{const Q=V.current;if(!Q||!N)return;const Te=["start","end"].includes(N)?Q.clientWidth:Q.clientHeight,Ce=Math.abs(le)/Te;Z(Ce/2),K.current=le},[le,N,V]),l.jsx(Xr,{onClose:n,onOpen:r,onAfterClose:o,onAfterOpen:s,disableCloseOnClick:x,active:i,transparent:d||H,blurred:h,overflow:_e(u,Q=>Q==="center"?"auto":"hidden"),className:C,containerRef:w,attributes:{onTouchStart:R},children:({active:Q})=>{const re=F(en.root,y,Q&&en["--active"],D&&en["--dragging"],_&&en[`--overflow-${_}`],w&&en["--contained"],me(en,"--position",u),X.classNames);return l.jsx(fi.Provider,{value:ye,children:l.jsx("div",j(v({},z),{style:j(v(v({},X.variables),U("--rs-modal-size",c)),{"--rs-modal-drag":Math.abs(le)<Jr?"0px":`${le+Jr*(N==="start"?1:-1)}px`}),"aria-labelledby":k?`${S}-title`:void 0,"aria-describedby":T?`${S}-subtitle`:void 0,"aria-label":g||(z==null?void 0:z["aria-label"]),className:re,"aria-modal":"true",role:"dialog",tabIndex:p?void 0:-1,ref:V,onTransitionEnd:ee,children:t}))})}})};nr.Title=gi,nr.Subtitle=pi,nr.displayName="Modal",gi.displayName="Modal.Title",pi.displayName="Modal.Subtitle";const Ec=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"18 15 12 9 6 15"})}),vi=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"6 9 12 15 18 9"})}),Sc=()=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[l.jsx("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),l.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),Tc=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})}),ct={field:"_field_meivp_1","controls-wrapper":"_controls-wrapper_meivp_5",controls:"_controls_meivp_5","controls--size-small":"_controls--size-small_meivp_1",control:"_control_meivp_5","controls--size-medium":"_controls--size-medium_meivp_1","controls--size-large":"_controls--size-large_meivp_1","controls--size-xlarge":"_controls--size-xlarge_meivp_1","icon--touch":"_icon--touch_meivp_107","--outline":"_--outline_meivp_111","icon--mouse":"_icon--mouse_meivp_139","controls--size-small--m":"_controls--size-small--m_meivp_1","controls--size-medium--m":"_controls--size-medium--m_meivp_1","controls--size-large--m":"_controls--size-large--m_meivp_1","controls--size-xlarge--m":"_controls--size-xlarge--m_meivp_1","controls--size-small--l":"_controls--size-small--l_meivp_1","controls--size-medium--l":"_controls--size-medium--l_meivp_1","controls--size-large--l":"_controls--size-large--l_meivp_1","controls--size-xlarge--l":"_controls--size-xlarge--l_meivp_1","controls--size-small--xl":"_controls--size-small--xl_meivp_1","controls--size-medium--xl":"_controls--size-medium--xl_meivp_1","controls--size-large--xl":"_controls--size-large--xl_meivp_1","controls--size-xlarge--xl":"_controls--size-xlarge--xl_meivp_1"},Zr=e=>{var te;const le=e,{increaseAriaLabel:t,decreaseAriaLabel:n,min:r,max:o,step:s=1,name:i,value:c,onChange:m,size:u="medium"}=le,_=$e(le,["increaseAriaLabel","decreaseAriaLabel","min","max","step","name","value","onChange","size"]),d=mt(),h=et(_.id),g=(d==null?void 0:d.attributes.id)||((te=e.inputAttributes)==null?void 0:te.id)||h,p=(d==null?void 0:d.disabled)||e.disabled,f=(d==null?void 0:d.hasError)||e.hasError,x=p||(c&&o?c>=o:!1),w=p||(c&&r?c<=r:!1),C=a.useRef(null),y=a.useRef(null),[z,E]=a.useState((c==null?void 0:c.toString())||""),S=a.useRef(c),N=Ae(m),k=a.useRef(null),M=a.useRef(null),T=a.useCallback(H=>{var Q,re;const Z=s*H,X=S.current;let ye=X===null?Z:X+Z;o!==void 0&&ye>o&&(ye=o),r!==void 0&&ye<r&&(ye=r);const O=((Q=s.toString().split(".")[1])==null?void 0:Q.length)||0,R=((re=X==null?void 0:X.toString().split(".")[1])==null?void 0:re.length)||0,ee=Math.max(O,R);return Number(ye.toFixed(ee))},[s,r,o]),$=a.useCallback((H,Z)=>{var X;(X=N.current)==null||X.call(N,{value:H,name:i}),Z!=null&&Z.programmatic||(S.current=H)},[i,N]),D=a.useCallback(()=>{const H=T(1);$(H,{programmatic:!0})},[T,$]),A=a.useCallback(()=>{const H=T(-1);$(H,{programmatic:!0})},[T,$]),q=H=>{if(!H.value.match(/^(-?)[0-9]*(\.?)[0-9]*$/))return;const Z=parseFloat(H.value);Z>Number.MAX_SAFE_INTEGER||Z<Number.MIN_SAFE_INTEGER||(E(H.value),!isNaN(Z)&&$(Z))},V=(H,Z)=>{var X;p||(Z(),H.pointerType!=="touch"&&((X=C.current)==null||X.focus()),k.current=setTimeout(()=>{M.current=setInterval(()=>{Z()},50)},500))},L=()=>{p||(k.current&&(clearTimeout(k.current),k.current=null),M.current&&(clearTimeout(M.current),M.current=null))};nt({[It]:D,[Dt]:A},[D,A],{preventDefault:!0,ref:y}),a.useEffect(()=>{var H;S.current=c,E((H=c==null?void 0:c.toString())!=null?H:"")},[c]);const B=_e(u,H=>H==="large"||H==="xlarge"?4:3),K=_e(u,H=>H==="small"?3:4),Y=l.jsx("span",{className:ct["controls-wrapper"],children:l.jsxs("span",{className:ct.controls,children:[l.jsxs(Oe,{className:ct.control,disabled:x,disableFocusRing:!0,as:"span",attributes:{"aria-label":t,"aria-controls":g,role:"button",tabIndex:x?void 0:-1,onPointerDown:H=>V(H,D),onPointerUp:L,onPointerLeave:L,onContextMenu:H=>H.preventDefault()},children:[l.jsx(ze,{svg:Ec,size:B,className:ct["icon--mouse"]}),l.jsx(ze,{svg:Sc,size:K,className:ct["icon--touch"]})]}),l.jsxs(Oe,{className:ct.control,disabled:w,disableFocusRing:!0,as:"span",attributes:{"aria-label":n,"aria-controls":g,role:"button",tabIndex:w?void 0:-1,onPointerDown:H=>V(H,A),onPointerUp:L,onPointerLeave:L,onContextMenu:H=>H.preventDefault()},children:[l.jsx(ze,{svg:vi,size:B,className:ct["icon--mouse"]}),l.jsx(ze,{svg:Tc,size:K,className:ct["icon--touch"]})]})]})});return l.jsx(xn,j(v({},_),{className:[_.className,me(ct,"controls--size",u),!(_.variant==="faded"||_.variant==="headless")&&ct["--outline"]],attributes:j(v({},_.attributes),{role:"group",ref:y}),inputAttributes:j(v({},_.inputAttributes),{ref:C,inputMode:"numeric",autoComplete:"off",autoCorrect:"off",spellCheck:"false",min:r,max:o,step:s,className:ct.field}),size:u,id:g,hasError:f,disabled:p,value:z,onChange:q,name:i,endSlot:Y}))};Zr.displayName="NumberFieldControlled";const bi=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t!=null?t:null),s=i=>{o(i.value),n&&n(i)};return l.jsx(Zr,j(v({},e),{value:r,defaultValue:void 0,onChange:s}))};bi.displayName="NumberFieldUncontrolled";const xi=e=>{const{value:t}=e;return t!==void 0?l.jsx(Zr,v({},e)):l.jsx(bi,v({},e))};xi.displayName="NumberField";const yi={page:"_page_j10le_1"},Qr=e=>{const{total:t,page:n=1,onChange:r,pageAriaLabel:o,previousAriaLabel:s,nextAriaLabel:i,className:c,attributes:m}=e,u=1,_=1,d=[],h=(_+1)*2+u*2+1,g=t>h&&n-u>_+2,p=t>h&&n+u<t-_;let f=u*2+1;g||(f+=_+1),p||(f+=_+1);const x=g?Math.min(t-f+1,Math.max(1,n-u)):1,w=p?Math.min(x+f-1,t):t;g&&d.push(...Nr(1,_),null),d.push(...Nr(x,w)),p&&d.push(null,...Nr(t-_+1,t));const C=y=>{const z=Math.min(t,Math.max(1,y));r==null||r({page:z})};return l.jsxs(G,{direction:"row",align:"center",gap:1,className:c,attributes:m,children:[l.jsx(qe,{variant:"ghost",size:"small",icon:Xn,onClick:()=>C(n-1),disabled:n===1,attributes:{"aria-label":s}}),d.map((y,z)=>y===null?l.jsx(G,{width:7,align:"center",children:"..."},`dots-${z}`):l.jsx(qe,{size:"small",variant:y===n?"solid":"ghost",color:y===n?"primary":"neutral",onClick:()=>C(y),attributes:{"aria-label":o==null?void 0:o({page:y}),"aria-current":y===n},className:yi.page,children:y},z)),l.jsx(qe,{variant:"ghost",size:"small",className:yi.page,icon:Qt,onClick:()=>C(n+1),disabled:n===t,attributes:{"aria-label":i}})]})};Qr.displayName="PaginationControlled";const wi=e=>{const c=e,{defaultPage:t=1,onChange:n}=c,r=$e(c,["defaultPage","onChange"]),[o,s]=a.useState(t||1),i=m=>{s(m.page),n==null||n(m)};return l.jsx(Qr,j(v({},r),{onChange:i,page:o}))};wi.displayName="PaginationUncontrolled";const Ci=e=>{const{page:t}=e;return t!==void 0?l.jsx(Qr,v({},e)):l.jsx(wi,v({},e))};Ci.displayName="Pagination";const zi="\\d",Ni="[a-zA-Z]",$c=`(${zi}|${Ni})`,rr={root:"_root_eojch_1",input:"_input_eojch_6",item:"_item_eojch_23","item--focused":"_item--focused_eojch_28"},Mc={small:7,medium:9,large:12,xlarge:14},Ic={numeric:zi,alphabetic:Ni,alphanumeric:$c},eo=e=>{const{valueLength:t=4,value:n,onChange:r,name:o,pattern:s="numeric",size:i="medium",variant:c="outline",className:m,attributes:u,inputAttributes:_}=e,d=Ic[s],h=_e(i,$=>Mc[$]),g=_e(i,$=>$==="medium"?"body-3":"body-2"),p=_e(i,$=>$==="xlarge"?"medium":"small"),[f,x]=a.useState(null),w=mt(),C=a.useRef(n.length===t?"edit":"type"),y=a.useRef(null),z=[],E=a.useCallback($=>{var L;const D=y.current;if(!D||D.selectionStart===null)return;const A=C.current,q=(L=$!=null?$:D.selectionStart)!=null?L:0,V=Math.min(A==="type"?D.value.length:D.value.length-1,Math.max(0,q));C.current==="type"?(D.selectionStart=V,D.selectionEnd=V):(D.selectionStart=V,D.selectionEnd=V+1),x(Math.min(D.selectionStart,t-1))},[t]);nt({[`${Lt},${It}`]:()=>{tt(()=>{const $=y.current;if(!$||$.selectionStart===null)return;const D=C.current,A=n.length?"edit":"type";C.current=A,E(D==="type"&&A==="edit"?$.selectionStart:$.selectionStart-1)})},[`${Pt},${Dt}`]:()=>{tt(()=>{const $=y.current;if(!$||$.selectionStart===null)return;const D=$.selectionStart===n.length&&$.selectionStart!==t?"type":"edit";C.current=D,E($.selectionStart)})}},[n,E,t],{ref:y});const S=()=>{E(n.length)},N=()=>{x(null)},k=$=>{if(f===null||!y.current)return;const D=$.clipboardData.getData("text"),A=n.slice(0,f)+n.slice(f+D.length);y.current.value=A,y.current.selectionEnd=f},M=$=>{const D=$.target,A=D.value,q=new RegExp(`^${d}+$`);if(A&&!A.match(q)||D.selectionStart===null)return;const V=A.length===t||A.length>D.selectionStart?"edit":"type";C.current=V,r==null||r({event:$,name:o,value:A}),tt(()=>{E()})},T=($,D)=>{y.current&&($.preventDefault(),y.current.focus(),C.current=D>=n.length?"type":"edit",E(D))};for(let $=0;$<t;$++)z.push(l.jsx(G,{height:h,width:h,borderRadius:p,borderColor:c==="faded"?"transparent":"neutral",backgroundColor:c==="faded"?"neutral-faded":"elevation-base",align:"center",justify:"center",className:[rr.item,f===$&&rr["item--focused"]],attributes:{onMouseDown:D=>{T(D,$)},onTouchStart:D=>{T(D,$)}},children:n[$]&&l.jsx(fe,{variant:g,children:n[$]})},$));return l.jsxs(G,{gap:2,direction:"row",className:[rr.root,m],attributes:u,children:[z,l.jsx("input",j(v(v({},_),w.attributes),{type:"text",className:rr.input,onFocus:S,onBlur:N,onPaste:k,onInput:M,value:n,name:o,maxLength:t,ref:y,autoComplete:(_==null?void 0:_.autoComplete)||"one-time-code",inputMode:s==="numeric"?"numeric":void 0,pattern:`${d}{${t}}`}))]})};eo.displayName="PinFieldControlled";const ji=e=>{const c=e,{defaultValue:t,onChange:n}=c,r=$e(c,["defaultValue","onChange"]),[o,s]=a.useState(t||""),i=m=>{s(m.value),n==null||n(m)};return l.jsx(eo,j(v({},r),{value:o,onChange:i}))};ji.displayName="PinFieldUncontrolled";const ki=e=>{const{value:t}=e;return t!==void 0?l.jsx(eo,v({},e)):l.jsx(ji,v({},e))};ki.displayName="PinField";const kn={root:"_root_1n3rz_1",value:"_value_1n3rz_9","--duration":"_--duration_1n3rz_23","--size-small":"_--size-small_1n3rz_27","--size-medium":"_--size-medium_1n3rz_31","--color-primary":"_--color-primary_1n3rz_35","--color-critical":"_--color-critical_1n3rz_39","--color-warning":"_--color-warning_1n3rz_43","--color-positive":"_--color-positive_1n3rz_47","--color-media":"_--color-media_1n3rz_51"},Ei=e=>{const{value:t=0,min:n=0,max:r=100,color:o="primary",size:s="medium",duration:i,ariaLabel:c,className:m,attributes:u}=e,_=F(kn.root,m,o&&kn[`--color-${o}`],s&&kn[`--size-${s}`],!!i&&kn["--duration"]),d=r-n,h=t-n,f=`${Math.max(n,Math.min(r,h))/d*100-100}%`;return l.jsx("div",j(v({role:"progressbar"},u),{className:_,"aria-label":c||(u==null?void 0:u["aria-label"]),"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":t,children:l.jsx("div",{className:kn.value,style:{"--rs-progress-value":f,"--rs-progress-duration":i?`${i}ms`:void 0}})}))};Ei.displayName="Progress";const tn={root:"_root_1r02e_1",container:"_container_1r02e_17",item:"_item_1r02e_26","item--active":"_item--active_1r02e_40","item--variant-secondary":"_item--variant-secondary_1r02e_45","--color-media":"_--color-media_1r02e_50"},to=7,no=Math.floor(to/2),Si=e=>{const{total:t,activeIndex:n=0,color:r="primary",ariaLabel:o,className:s,attributes:i}=e,c=F(tn.root,s,r&&tn[`--color-${r}`]),m=o?{"aria-label":o,role:"progressbar","aria-valuenow":n,"aria-valuemin":0,"aria-valuemax":t-1}:{},u=t>to?Math.min(t-to,Math.max(0,n-no)):0;return l.jsx("div",j(v({},i),{className:c,children:l.jsx("div",j(v({},m),{className:tn.container,style:{"--rs-progress-indicator-mod":u},children:Array.from({length:t}).map((_,d)=>{const h=F(tn.item,d===n&&tn["item--active"],(d<n-(no-1)||d>n+(no-1))&&tn["item--variant-secondary"]);return l.jsx("div",{className:h},d)})}))}))};Si.displayName="ProgressIndicator";const Ti=a.createContext(null),Dc=()=>a.useContext(Ti),ro=e=>{const{onChange:t,name:n,disabled:r,value:o,children:s,hasError:i}=e,c=({event:m,value:u})=>{u&&t&&t({name:n,value:u,event:m})};return l.jsx(Ti.Provider,{value:{onChange:c,disabled:r,value:o,name:n,hasError:i},children:s})};ro.displayName="RadioGroupControlled";const $i=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||null),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(ro,j(v({},e),{value:r,defaultValue:void 0,onChange:s}))};$i.displayName="RadioGroupUncontrolled";const Mi=e=>{const{value:t}=e;return t!==void 0?l.jsx(ro,v({},e)):l.jsx($i,v({},e))};Mi.displayName="RadioGroup";const Ot={root:"_root_qtzih_12",decorator:"_decorator_qtzih_22",field:"_field_qtzih_28","--size-small":"_--size-small_qtzih_1","--size-medium":"_--size-medium_qtzih_1","--size-large":"_--size-large_qtzih_1",input:"_input_qtzih_74","--error":"_--error_qtzih_81","--disabled":"_--disabled_qtzih_101","--size-small--m":"_--size-small--m_qtzih_1","--size-medium--m":"_--size-medium--m_qtzih_1","--size-large--m":"_--size-large--m_qtzih_1","--size-small--l":"_--size-small--l_qtzih_1","--size-medium--l":"_--size-medium--l_qtzih_1","--size-large--l":"_--size-large--l_qtzih_1","--size-small--xl":"_--size-small--xl_qtzih_1","--size-medium--xl":"_--size-medium--xl_qtzih_1","--size-large--xl":"_--size-large--xl_qtzih_1"},Ii=e=>{const{children:t,value:n,onChange:r,onFocus:o,onBlur:s,size:i="medium",className:c,attributes:m,inputAttributes:u}=e,_=mt(),d=Dc(),h=(_==null?void 0:_.hasError)||e.hasError||(d==null?void 0:d.hasError),g=(_==null?void 0:_.disabled)||e.disabled||(d==null?void 0:d.disabled),p=d?d.value===n:e.checked,f=d?void 0:e.defaultChecked,x=d?d.name:e.name,w=F(Ot.root,c,h&&Ot["--error"],g&&Ot["--disabled"],i&&me(Ot,"--size",i)),C=y=>{if(!x)return;const{checked:z}=y.target,E={name:x,value:n,checked:z,event:y};r&&r(E),d!=null&&d.onChange&&d.onChange(E)};return l.jsxs("label",j(v({},m),{className:w,children:[l.jsxs("span",{className:Ot.field,children:[l.jsx(Qn,{className:Ot.input,type:"radio",checked:p,defaultChecked:f,name:x,disabled:g,value:n,onChange:C,onFocus:o,onBlur:s,attributes:u}),l.jsx("div",{className:Ot.decorator})]}),t&&l.jsx(fe,{as:"span",variant:_e(i,y=>y==="large"?"body-2":y==="small"?"caption-1":"body-3"),children:t})]}))};Ii.displayName="Radio";const En={root:"_root_f2om1_1",scrim:"_scrim_f2om1_2",content:"_content_f2om1_31","--position-cover":"_--position-cover_f2om1_37","--position-top":"_--position-top_f2om1_56","--position-bottom":"_--position-bottom_f2om1_57","--position-start":"_--position-start_f2om1_61","--position-end":"_--position-end_f2om1_62","--with-background":"_--with-background_f2om1_100"},Di=e=>{const{children:t,backgroundSlot:n,position:r="cover",attributes:o,className:s,scrimClassName:i}=e,c=F(En.root,!!n&&En["--with-background"],r&&En[`--position-${r}`],s),m=F(En.scrim,i);return l.jsxs("div",j(v({},o),{className:c,children:[n,l.jsx("div",{className:m,children:l.jsx("div",{className:En.content,children:t})})]}))};Di.displayName="Scrim";const Pc=()=>l.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[l.jsx("path",{d:"M7 16L12 21L17 16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),l.jsx("path",{d:"M17 8L12 3L7 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})]}),gt={root:"_root_1b4gn_1",input:"_input_1b4gn_18",slot:"_slot_1b4gn_46",arrow:"_arrow_1b4gn_61","--size-small":"_--size-small_1b4gn_1","--size-medium":"_--size-medium_1b4gn_1","--size-large":"_--size-large_1b4gn_1","--size-xlarge":"_--size-xlarge_1b4gn_1","--variant-faded":"_--variant-faded_1b4gn_130","--variant-headless":"_--variant-headless_1b4gn_139","--status-error":"_--status-error_1b4gn_144","--placeholder":"_--placeholder_1b4gn_159","--disabled":"_--disabled_1b4gn_163","--size-small--m":"_--size-small--m_1b4gn_1","--size-medium--m":"_--size-medium--m_1b4gn_1","--size-large--m":"_--size-large--m_1b4gn_1","--size-xlarge--m":"_--size-xlarge--m_1b4gn_1","--size-small--l":"_--size-small--l_1b4gn_1","--size-medium--l":"_--size-medium--l_1b4gn_1","--size-large--l":"_--size-large--l_1b4gn_1","--size-xlarge--l":"_--size-xlarge--l_1b4gn_1","--size-small--xl":"_--size-small--xl_1b4gn_1","--size-medium--xl":"_--size-medium--xl_1b4gn_1","--size-large--xl":"_--size-large--xl_1b4gn_1","--size-xlarge--xl":"_--size-xlarge--xl_1b4gn_1"},Pi=e=>{var D,A;const{onChange:t,onClick:n,onFocus:r,onBlur:o,name:s,value:i,defaultValue:c,placeholder:m,options:u,children:_,icon:d,startSlot:h,size:g="medium",variant:p="outline",className:f,attributes:x}=e,[w,C]=a.useState(i===void 0?!c:!i),y=mt(),z=et(e.id),E=((D=y==null?void 0:y.attributes)==null?void 0:D.id)||((A=e.inputAttributes)==null?void 0:A.id)||z,S=(y==null?void 0:y.disabled)||e.disabled,N=(y==null?void 0:y.hasError)||e.hasError,k=v(v({},e.inputAttributes),y==null?void 0:y.attributes),M=F(gt.root,f,g&&me(gt,"--size",g),N&>["--status-error"],S&>["--disabled"],w&&u&>["--placeholder"],p&>[`--variant-${p}`]),T=q=>{const V=q.target.value;i===void 0&&C(!V),t&&t({name:s,value:V,event:q})};a.useEffect(()=>{i!==void 0&&C(!i)},[i]);const $=(h||d)&&l.jsx("div",{className:gt.slot,children:d?l.jsx(ze,{size:_e(g,q=>q==="large"?5:q==="xlarge"?6:4),svg:d}):h});return l.jsxs("div",j(v({},x),{className:M,children:[u?l.jsxs(l.Fragment,{children:[$,l.jsxs("select",j(v({},k),{onFocus:r||(k==null?void 0:k.onFocus),onBlur:o||(k==null?void 0:k.onBlur),className:gt.input,disabled:S,name:s,value:i,defaultValue:c,onChange:T,id:E,children:[m&&l.jsx("option",{value:"",children:m}),u.map(q=>l.jsx("option",{value:q.value,disabled:q.disabled,children:q.label},q.value))]}))]}):l.jsxs(l.Fragment,{children:[l.jsxs(Oe,{className:gt.input,disabled:S,disableFocusRing:!0,onClick:n,attributes:j(v({},k),{onFocus:r||(k==null?void 0:k.onFocus),onBlur:o||(k==null?void 0:k.onBlur)}),children:[$,_?l.jsx(fe,{maxLines:1,children:_}):null,m&&!_?l.jsx(fe,{color:"neutral-faded",children:m}):null]}),l.jsx("input",{type:"hidden",value:i,name:s})]}),l.jsx("div",{className:gt.arrow,children:l.jsx(ze,{svg:Pc,color:S?"disabled":"neutral-faded",size:_e(g,q=>q==="large"||q==="xlarge"?5:4)})})]}))};Pi.displayName="Select";const Lc={root:"_root_xavah_1"},Li=e=>{const{borderRadius:t="small",width:n,height:r,className:o,attributes:s}=e,i=F(Lc.root,o);return l.jsx(G,{backgroundColor:"disabled",width:n,height:r,borderRadius:t,className:i,attributes:s})};Li.displayName="Skeleton";const Ai=e=>{const t=e.toString().split(".")[1];return(t==null?void 0:t.length)||0},oo=(e,t)=>{const n=t%1!==0,r=Math.round(e/t)*t;if(n){const o=Ai(t);return Number(r.toFixed(o))}return r},Fi=({event:e,vertical:t})=>t?e instanceof MouseEvent?e.clientY:e.changedTouches[0].clientY:e instanceof MouseEvent?e.clientX:e.changedTouches[0].clientX,pt={root:"_root_cqyib_1",thumb:"_thumb_cqyib_13","thumb--active":"_thumb--active_cqyib_13",input:"_input_cqyib_13",bar:"_bar_cqyib_18",selection:"_selection_cqyib_34",tooltip:"_tooltip_cqyib_39",thumbs:"_thumbs_cqyib_61","--orientation-horizontal":"_--orientation-horizontal_cqyib_1","--orientation-vertical":"_--orientation-vertical_cqyib_1","--disabled":"_--disabled_cqyib_220"},so=a.forwardRef((e,t)=>{const{name:n,value:r,disabled:o,active:s,position:i,max:c,min:m,step:u,onChange:_,onDragStart:d,renderValue:h,tooltipRef:g,inputRef:p,orientation:f}=e,x=a.useId(),w=F(pt.thumb,s&&pt["thumb--active"]),C=Ai(u),y=h?h({value:r}):r.toFixed(C),z=E=>{_(+E.target.value,{native:!0})};return l.jsxs(l.Fragment,{children:[l.jsx("input",{className:pt.input,type:"range",name:n,value:r,onChange:z,disabled:o,max:c,min:m,step:u,"aria-labelledby":x,"aria-orientation":f,ref:p}),l.jsx("div",{ref:t,className:w,onMouseDown:d,onTouchStart:d,style:{"--ts-slider-thumb-position":`${i}%`},id:x,"aria-hidden":"true",children:h!==!1&&l.jsx(Zt,{colorMode:"inverted",children:l.jsx(fe,{variant:"caption-1",weight:"medium",className:pt.tooltip,attributes:{ref:g},children:y})})})]})});so.displayName="SliderThumb";const qi=16,or=e=>{var Ce,ke,Ee;const{name:t,range:n,max:r,min:o,step:s=1,onChange:i,onChangeCommit:c,renderValue:m,className:u,attributes:_,orientation:d="horizontal"}=e,h=Ae(i),g=Ae(c),p=d==="vertical",f=n&&e.minValue!==void 0?oo(e.minValue,s):void 0,x=oo(n?e.maxValue:e.value,s),w=(Ce=e.minName)!=null?Ce:e.name,C=(ke=e.maxName)!=null?ke:e.name,y=a.useRef(null),z=a.useRef(null),E=a.useRef(null),S=a.useRef(null),N=a.useRef(null),k=a.useRef(null),M=a.useRef(null),[T,$]=a.useState(null),[D]=xt(),A=mt(),q=et(),V=((Ee=A==null?void 0:A.attributes)==null?void 0:Ee.id)||q,L=`${V}-min`,B=`${V}-max`,K=(A==null?void 0:A.disabled)||e.disabled,Y=F(pt.root,K&&pt["--disabled"],d&&pt[`--orientation-${d}`],u),le=a.useCallback(ne=>{const ae=y.current;if(!ae)return;const he=p?ae.clientHeight:ae.clientWidth,pe=ae.getBoundingClientRect()[p?"top":"left"]+qi/2,we=ne-pe,We=he-qi;let De=we/We;(D||p)&&(De=1-De);let se=(r-o)*De+o;return se=Math.max(o,Math.min(r,se)),oo(se,s)},[r,o,D,s,p]),te=ne=>(ne-o)/(r-o)*100,H=a.useCallback(ne=>{var Ye,Ue,Ze;if(p)return;const ae=ne===L?S:N,he=ne===L?z:E;let de=0;const pe=(Ye=y.current)==null?void 0:Ye.getBoundingClientRect(),we=(Ue=ae.current)==null?void 0:Ue.getBoundingClientRect(),We=(Ze=he.current)==null?void 0:Ze.getBoundingClientRect(),De=pe==null?void 0:pe.left,se=De&&De+(pe==null?void 0:pe.width),ie=We&&we&&We.left-we.width/2,Je=We&&we&&We.left+we.width/2;ie&&De&&ie<De&&(de=we.width/2-8),Je&&se&&Je>se&&(de=-(we.width/2-8));const Ve=ae.current;Ve&&Ve.style.setProperty("--rs-slider-tooltip-offset",`${de||0}px`)},[L,p]),Z=a.useCallback((ne,ae={})=>{var de,pe;if(!n)return;const he={minValue:ne,maxValue:x,name:t,minName:w,maxName:C};ae.commit&&((de=g.current)==null||de.call(g,he)),ae.native&&((pe=h.current)==null||pe.call(h,he)),Jo(k.current,ne.toString())},[x,t,w,C,n,g,h]),X=a.useCallback((ne,ae={})=>{var de,pe;const he=n?{minValue:f,maxValue:ne,name:t,minName:w,maxName:C}:{value:ne,name:t};ae.commit&&((de=g.current)==null||de.call(g,he)),ae.native&&((pe=h.current)==null||pe.call(h,he)),Jo(M.current,ne.toString())},[f,t,w,C,n,h,g]),ye=({nativeEvent:ne})=>{if(K)return;let ae,he;const de=Fi({event:ne,vertical:p}),pe=le(de);[{ref:z,id:L},{ref:E,id:B}].forEach(We=>{if(!We.ref.current)return;const se=We.ref.current.getBoundingClientRect(),ie=Math.abs((p?se.top:se.left)-de);(ae===void 0||ie<=ae)&&(ae=ie,he=We.id)}),!(!he||pe===void 0)&&(he===L&&Z(pe),he===B&&X(pe),Dn(),Or(),$(he))},O=ne=>{K||(ne.stopPropagation(),$(L))},R=ne=>{K||(ne.stopPropagation(),$(B))},ee=a.useCallback(()=>{T===L&&f!==void 0&&Z(f,{commit:!0}),T===B&&X(x,{commit:!0}),Pn(),Hr(),$(null)},[f,x,Z,X,T,L,B]),Q=a.useCallback(ne=>{if(!T)return;const ae=Fi({event:ne,vertical:p}),he=le(ae);if(he===void 0)return;let de=T;T===L&&he>x&&(de=B),T===B&&f&&he<f&&(de=L),de===L&&Z(he),de===B&&X(he),T!==de&&$(de)},[T,f,x,le,X,Z,B,L,p]);a.useEffect(()=>{H(L),H(B)},[L,B,f,x,H]),a.useEffect(()=>(window.addEventListener("mouseup",ee),window.addEventListener("touchend",ee),window.addEventListener("mousemove",Q),window.addEventListener("touchmove",Q),()=>{window.removeEventListener("mouseup",ee),window.removeEventListener("touchend",ee),window.removeEventListener("mousemove",Q),window.removeEventListener("touchmove",Q)}),[ee,Q]);const re=f&&te(f),Te=te(x);return l.jsxs("div",j(v({},_),{className:Y,onMouseDown:ye,onTouchStart:ye,children:[l.jsx("div",{className:pt.bar,ref:y,children:l.jsx("div",{className:pt.selection,style:{"--rs-slider-selection-start":`${re||0}%`,"--rs-slider-selection-size":`${Te-(re||0)}%`}})}),l.jsxs("div",{className:pt.thumbs,children:[f!==void 0&&re!==void 0&&l.jsx(so,{id:L,active:L===T,name:w,disabled:K,onChange:Z,value:f,onDragStart:O,position:re,max:r,min:o,ref:z,tooltipRef:S,inputRef:k,renderValue:m,step:s,orientation:d}),l.jsx(so,{id:B,active:B===T,name:C,disabled:K,onChange:X,value:x,onDragStart:R,position:Te,max:r,min:o,ref:E,tooltipRef:N,inputRef:M,renderValue:m,step:s,orientation:d})]})]}))};or.displayName="SliderControlled";const Vi=(e,t,n)=>Math.min(Math.max(e,t),n),Bi=e=>{const{min:t,max:n,onChange:r,range:o}=e,s="defaultMinValue"in e&&e.defaultMinValue!==void 0&&e.defaultMinValue||"defaultValue"in e&&e.defaultValue!==void 0&&e.defaultValue||t,i="defaultMaxValue"in e&&e.defaultMaxValue!==void 0&&e.defaultMaxValue||"defaultValue"in e&&e.defaultValue!==void 0&&e.defaultValue||(o?n:t),[c,m]=a.useState(Vi(s,t,n)),[u,_]=a.useState(Vi(i,t,n)),d=g=>{o||(_(g.value),r==null||r(g))},h=g=>{o&&(m(g.minValue),_(g.maxValue),r==null||r(g))};return o?l.jsx(or,j(v({},e),{min:t,max:n,minValue:c,maxValue:u,defaultMinValue:void 0,defaultMaxValue:void 0,onChange:h})):l.jsx(or,j(v({},e),{min:t,max:n,value:u,defaultValue:void 0,onChange:d}))};Bi.displayName="SliderUncontrolled";const Oi=e=>{const o=e,{min:t=0,max:n=100}=o,r=$e(o,["min","max"]);return"value"in e&&e.value!==void 0||"minValue"in e&&"maxValue"in e&&e.minValue!==void 0&&e.maxValue!==void 0?l.jsx(or,j(v({},r),{min:t,max:n})):l.jsx(Bi,j(v({},r),{min:t,max:n}))};Oi.displayName="Slider";const Hi={root:"_root_1as3o_1","--animated":"_--animated_1as3o_6"},io=e=>{const{children:t,active:n,attributes:r}=e,o=a.useRef(null),s=a.useRef(!1),[i,c]=a.useState(n?"auto":null),m=F(Hi.root,s.current&&i!=="auto"&&Hi["--animated"]),u=_=>{_.propertyName==="height"&&c(n?"auto":null)};return a.useEffect(()=>{tt(()=>{s.current=!0})},[]),je(()=>{const _=o.current;!_||!s.current||(n?(_.style.height="auto",requestAnimationFrame(()=>{const d=_.clientHeight;_.style.height="0",requestAnimationFrame(()=>{c(d)})})):(_.style.height=`${_.clientHeight}px`,requestAnimationFrame(()=>{c(0)})))},[n]),l.jsx("div",j(v({},r),{className:m,ref:o,style:i!==null?{height:i,overflow:i==="auto"?"visible":void 0}:void 0,onTransitionEnd:u,role:"region",hidden:!n&&i===null,children:t}))};io.displayName="Expandable";const Ac={verticalDivider:"_verticalDivider_oa23g_1"},Fc=e=>{const{title:t,subtitle:n,children:r,direction:o,className:s,attributes:i,labelDisplay:c,step:m,completed:u,active:_,last:d}=e,h=c&&_e(c,p=>p==="hidden"),g=l.jsx(G,{gap:3,grow:!0,children:l.jsxs(G.Item,{children:[l.jsx(fe,{variant:"body-3",weight:"medium",children:t}),l.jsx(fe,{variant:"caption-1",color:"neutral-faded",children:n})]})});return l.jsxs(G,{attributes:i,className:s,children:[l.jsxs(G,{direction:"row",gap:2,align:"center",position:"static",children:[l.jsxs(G.Item,{children:[l.jsx(G,{align:"center",justify:"center",backgroundColor:_||u?"primary":"neutral-faded",borderColor:_||u?void 0:"neutral-faded",borderRadius:"circular",as:"span",width:8,height:8,zIndex:5,children:l.jsx(fe,{variant:"body-3",weight:_?"bold":"medium",children:u?l.jsx(ze,{svg:ii,size:4}):m})}),o==="column"&&!d&&l.jsx(gn,{vertical:!0,className:Ac.verticalDivider})]}),c?l.jsx(Mt,{hide:h,children:g}):g]}),o==="column"&&r&&l.jsx(io,{active:_,children:l.jsx(G,{paddingStart:10,paddingTop:2,children:r})})]})},lo=e=>null,ao=e=>{const{children:t,direction:n="row",activeId:r,labelDisplay:o,className:s,attributes:i}=e,c=n==="column",m=a.Children.count(t);return l.jsx(G,{attributes:i,direction:n,align:c?"stretch":"center",className:s,gap:3,wrap:!1,children:a.Children.map(t,(u,_)=>{if(!a.isValidElement(u)||u.type!==lo)return null;const d=u.props,h=d.id||`${_}`;return l.jsxs(a.Fragment,{children:[l.jsx(Fc,j(v({},d),{id:h,active:(r==null?void 0:r.toString())===h,step:_+1,last:_===m-1,direction:n,labelDisplay:o})),!c&&_<m-1&&l.jsx(G,{grow:!0,children:l.jsx(gn,{})})]},_)})})};ao.Item=lo,ao.displayName="Stepper",lo.displayName="Stepper.Item";const Ht={root:"_root_1g1bp_1","--reversed":"_--reversed_1g1bp_9",input:"_input_1g1bp_14",area:"_area_1g1bp_26",thumb:"_thumb_1g1bp_30",hitbox:"_hitbox_1g1bp_76","--size-small":"_--size-small_1g1bp_1","--size-medium":"_--size-medium_1g1bp_1","--size-large":"_--size-large_1g1bp_1","--size-small--m":"_--size-small--m_1g1bp_1","--size-medium--m":"_--size-medium--m_1g1bp_1","--size-large--m":"_--size-large--m_1g1bp_1","--size-small--l":"_--size-small--l_1g1bp_1","--size-medium--l":"_--size-medium--l_1g1bp_1","--size-large--l":"_--size-large--l_1g1bp_1","--size-small--xl":"_--size-small--xl_1g1bp_1","--size-medium--xl":"_--size-medium--xl_1g1bp_1","--size-large--xl":"_--size-large--xl_1g1bp_1"},Wi=e=>{var C;const{children:t,name:n,checked:r,size:o="medium",reversed:s,defaultChecked:i,onChange:c,onFocus:m,onBlur:u,className:_,attributes:d}=e,h=F(Ht.root,o&&me(Ht,"--size",o),s&&Ht["--reversed"],_),g=mt(),p=et((g==null?void 0:g.attributes.id)||e.id||((C=e.inputAttributes)==null?void 0:C.id)),f=v(v({},e.inputAttributes),g==null?void 0:g.attributes),x=(g==null?void 0:g.disabled)||e.disabled,w=y=>{c&&c({name:n,event:y,checked:y.target.checked})};return l.jsxs("label",j(v({},d),{className:h,children:[l.jsx("input",j(v({type:"checkbox"},f),{className:Ht.input,name:n,checked:r,defaultChecked:i,disabled:x,onChange:w,onFocus:m||(f==null?void 0:f.onFocus),onBlur:u||(f==null?void 0:f.onBlur),id:p})),l.jsxs("span",{className:Ht.area,"aria-hidden":"true",children:[l.jsx("span",{className:Ht.hitbox}),l.jsx("span",{className:Ht.thumb})]}),t&&l.jsx(fe,{variant:_e(o,y=>y==="large"?"body-2":y==="medium"?"body-3":"caption-1"),weight:"medium",color:x?"disabled":void 0,children:t})]}))};Wi.displayName="Switch";const Xe={root:"_root_kvwrk_13",table:"_table_kvwrk_26",row:"_row_kvwrk_32",cell:"_cell_kvwrk_46",head:"_head_kvwrk_61",body:"_body_kvwrk_61","cell--align-start":"_cell--align-start_kvwrk_1","cell--align-center":"_cell--align-center_kvwrk_1","cell--align-end":"_cell--align-end_kvwrk_1","cell--valign-start":"_cell--valign-start_kvwrk_1","cell--valign-center":"_cell--valign-center_kvwrk_1","cell--valign-end":"_cell--valign-end_kvwrk_1","cell--width-auto":"_cell--width-auto_kvwrk_77","--row-highlighted":"_--row-highlighted_kvwrk_81","--border-outer":"_--border-outer_kvwrk_85","--border-column":"_--border-column_kvwrk_90","--fade-start":"_--fade-start_kvwrk_100","--fade-end":"_--fade-end_kvwrk_101"},Ri=(e,t={})=>{const{disabled:n}=t,[r]=xt(),[o,s]=a.useState(null),i=a.useCallback(()=>{const c=e.current;if(!c)return;c.clientWidth<c.scrollWidth||s(null);const u=c.scrollLeft*(r?-1:1),_=u>1,d=u+c.clientWidth<c.scrollWidth-1;if(d&&_)return s("both");if(_)return s("start");if(d)return s("end")},[r,e]);return je(()=>{const c=e.current;if(!c||n)return;const m=jr(i);return requestAnimationFrame(()=>i()),window.addEventListener("resize",m),c.addEventListener("scroll",m),()=>{window.removeEventListener("resize",m),c.removeEventListener("scroll",m)}},[r,n]),o},Ui=e=>{const{minWidth:t,rowSpan:n,colSpan:r,align:o,verticalAlign:s,tagName:i,padding:c,paddingInline:m,paddingBlock:u,children:_,className:d,attributes:h}=e,g=e.width==="auto"?"0px":e.width,p=at({width:g,minWidth:t}),f=F(Xe.cell,p.classNames,(g===0||g==="0px")&&Xe["cell--width-auto"],o&&Xe[`cell--align-${o}`],s&&Xe[`cell--valign-${s}`],d),x=v(v(v({},p.variables),U("--rs-table-p-vertical",u!=null?u:c)),U("--rs-table-p-horizontal",m!=null?m:c));return l.jsx(i,j(v({},h),{className:f,rowSpan:n,colSpan:r,style:x,children:_}))},Yi=e=>l.jsx(Ui,j(v({},e),{tagName:"td"})),Gi=e=>l.jsx(Ui,j(v({},e),{tagName:"th"})),Ki=e=>{const{highlighted:t,children:n,className:r,attributes:o}=e,s=e.onClick||(o==null?void 0:o.onClick),i=F(Xe.row,t&&Xe["--row-highlighted"],r);return l.jsx("tr",j(v({},o),{className:i,onClick:s,tabIndex:s?0:void 0,children:n}))},sr=e=>{const{children:t,attributes:n,className:r}=e;return l.jsx("tbody",j(v({},n),{className:F(Xe.body,r),children:t}))},co=e=>{const{children:t,attributes:n,className:r}=e;return l.jsx("thead",j(v({},n),{className:F(Xe.head,r),children:t}))},Wt=e=>{const{children:t,border:n,columnBorder:r,className:o,attributes:s}=e,i=a.useRef(null),c=Ri(i),m=F(Xe.root,o,n&&Xe["--border-outer"],r&&Xe["--border-column"],(c==="start"||c==="both")&&Xe["--fade-start"],(c==="end"||c==="both")&&Xe["--fade-end"]),[u]=a.Children.toArray(t);return l.jsx("div",j(v({},s),{className:m,ref:i,children:l.jsx("table",{className:Xe.table,children:a.isValidElement(u)&&(u.type===sr||u.type===co)?t:l.jsx(sr,{children:t})})}))};Wt.Cell=Yi,Wt.Heading=Gi,Wt.Row=Ki,Wt.Body=sr,Wt.Head=co,Wt.displayName="Table",Yi.displayName="TableCell",Gi.displayName="TableHeading",Ki.displayName="TableRow",sr.displayName="TableBody",co.displayName="TableHead";const Xi=a.createContext({}),qc=Xi.Provider,uo=e=>{const r=a.useContext(Xi),{id:t}=r,n=$e(r,["id"]);return j(v({},n),{panelId:e!==void 0?`${t}-tabs-panel-${e}`:void 0,buttonId:e!==void 0?`${t}-tabs-button-${e}`:void 0})},mo=e=>{const{children:t,value:n,onChange:r,onSilentChange:o,itemWidth:s,variant:i,name:c,direction:m="row",size:u="medium"}=e,_=et(),d=a.useRef(null),h=a.useRef(d.current),g=a.useRef(null),[p,f]=a.useState({scaleX:0,scaleY:0,left:0,top:0,status:"idle"}),x=w=>{w!==void 0&&o&&o({value:w,name:c})};return l.jsx(qc,{value:{value:n,name:c,size:u,direction:m,itemWidth:s,variant:i,onChange:r,id:_,setDefaultValue:x,elActiveRef:d,elPrevActiveRef:h,elScrollableRef:g,selection:p,setSelection:f},children:t})};mo.displayName="TabsControlled";const Ji=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t),s=({value:c})=>{o(c),n&&n({value:c})},i=({value:c})=>{o(c)};return l.jsx(mo,j(v({},e),{onChange:s,onSilentChange:i,value:r,defaultValue:void 0}))};Ji.displayName="TabsUncontrolled";const ve={root:"_root_zn8u6_25",list:"_list_zn8u6_37",inner:"_inner_zn8u6_44",listItem:"_listItem_zn8u6_51",button:"_button_zn8u6_56",buttonContent:"_buttonContent_zn8u6_72",icon:"_icon_zn8u6_80",radio:"_radio_zn8u6_85",item:"_item_zn8u6_93","--item-disabled":"_--item-disabled_zn8u6_97","--item-active":"_--item-active_zn8u6_97",selector:"_selector_zn8u6_112","--selector-hidden":"_--selector-hidden_zn8u6_130","--selector-animated":"_--selector-animated_zn8u6_134",control:"_control_zn8u6_140","control--active":"_control--active_zn8u6_151","control--next":"_control--next_zn8u6_161","control--prev":"_control--prev_zn8u6_165",panel:"_panel_zn8u6_169","--panel-hidden":"_--panel-hidden_zn8u6_177","--scrollable":"_--scrollable_zn8u6_181","--direction-row":"_--direction-row_zn8u6_206","--direction-column":"_--direction-column_zn8u6_249","--variant-borderless":"_--variant-borderless_zn8u6_295","--variant-pills":"_--variant-pills_zn8u6_296","--variant-pills-elevated":"_--variant-pills-elevated_zn8u6_297","--size-medium":"_--size-medium_zn8u6_374","--size-large":"_--size-large_zn8u6_379","--item-width-equal":"_--item-width-equal_zn8u6_384","--fade-start":"_--fade-start_zn8u6_403","--fade-end":"_--fade-end_zn8u6_404"},_o=a.forwardRef((e,t)=>{const{value:n,children:r,icon:o,href:s,disabled:i,attributes:c}=e,{onChange:m,panelId:u,buttonId:_,name:d,size:h,value:g,selection:p,elActiveRef:f,elPrevActiveRef:x,elScrollableRef:w}=uo(n),C=a.useRef(null),y=g===n,z=y&&p.status==="idle",E=F(ve.item,z&&ve["--item-active"],i&&ve["--item-disabled"]),S=!!d,N={role:"tab",tabIndex:y?0:-1,"aria-selected":y},k=a.useCallback(()=>{x.current=f.current,f.current=C.current},[f,x]),M=()=>{var K,Y;if(s&&!m)return;const T=w.current,$=(K=C.current)==null?void 0:K.parentElement,D=(Y=f.current)==null?void 0:Y.parentElement;if(m&&m({value:n,name:d}),!T||!$||!D||T.scrollWidth===T.clientWidth||!w.current)return;const A=48,q=C.current&&ba(C.current,le=>le.hasAttribute("data-rs-tabs-item"));if(!q)return;const V=w.current,L=q.offsetLeft-V.scrollLeft,B=V.scrollLeft+V.clientWidth-(q.offsetLeft+q.clientWidth);(L<A||B<A)&&w.current.scrollTo({left:q.offsetLeft+q.clientWidth/2-V.clientWidth/2,behavior:"smooth"})};return je(()=>{y&&k()},[y,k]),l.jsx("div",j(v({},c),{className:E,ref:C,role:"presentation",children:l.jsxs(Oe,{ref:t,href:s,insetFocus:!0,disabled:i,onClick:d?void 0:M,className:ve.button,as:d?"label":void 0,attributes:j(v({},!S&&N),{"aria-controls":u,id:_}),children:[d&&l.jsx(Qn,{type:"radio",name:d,value:n,checked:z,onChange:M,className:ve.radio}),l.jsxs("span",{className:ve.buttonContent,children:[o&&l.jsx(ze,{svg:o,className:ve.icon,size:4}),r&&l.jsx(fe,{variant:h==="large"?"body-2":"body-3",weight:"medium",children:r})]})]})}))});_o.displayName="Tabs.Item";const Zi=(e,t)=>e===t||!e?null:e.classList.contains(ve.listItem)?e:Zi(e.parentElement,t),Qi=e=>{const{children:t,className:n,attributes:r}=e,{value:o,setDefaultValue:s,itemWidth:i,variant:c,name:m,direction:u,size:_,selection:d,setSelection:h,elActiveRef:g,elPrevActiveRef:p,elScrollableRef:f}=uo(),[x]=xt(),w=Ri(f,{disabled:i==="equal"}),C=F(ve.root,_&&ve[`--size-${_}`],u&&ve[`--direction-${u}`],i&&ve[`--item-width-${i}`],c&&ve[`--variant-${c}`],w&&ve["--scrollable"],(w==="start"||w==="both")&&ve["--fade-start"],(w==="end"||w==="both")&&ve["--fade-end"],n),y=F(ve.selector,d.status==="idle"&&ve["--selector-hidden"],d.status==="animated"&&ve["--selector-animated"]),z=()=>{f.current.scrollBy({left:Math.ceil(f.current.clientWidth/2)*(x?-1:1),behavior:"smooth"})},E=()=>{f.current.scrollBy({left:Math.ceil(f.current.clientWidth/2)*(x?1:-1),behavior:"smooth"})},S=()=>{h(M=>j(v({},M),{status:"idle"}))},N=a.useCallback(M=>{if(!f.current)return null;const T=Zi(M,f.current);return T?{scaleX:T.clientWidth,scaleY:T.clientHeight,top:T.offsetTop,left:T.offsetLeft}:null},[f]),{ref:k}=nt({"ArrowLeft, ArrowUp":()=>{ts(f.current)},"ArrowRight, ArrowDown":()=>{es(f.current)},Home:()=>{ns(f.current)},End:()=>{rs(f.current)}},[],{preventDefault:!0,disabled:!!m});return je(()=>{if(o)return;const M=a.Children.toArray(t)[0];if(!a.isValidElement(M)||!M||M.type!==_o)return;const T=M.props;s(T.value)},[o]),je(()=>{if(!p.current||p.current===g.current)return;const M=N(p.current);M&&h(j(v({},M),{status:"prepared"}))},[o,N]),je(()=>{if(d.status!=="prepared"||!g.current)return;const M=N(g.current);M&&h(j(v({},M),{status:"animated"}))},[d]),l.jsxs("div",j(v({},r),{className:C,children:[l.jsx("div",{className:ve.inner,ref:f,children:l.jsxs("div",{className:ve.list,role:"tablist",ref:k,children:[a.Children.map(t,(M,T)=>{if(!a.isValidElement(M))return null;const $=M.props;return l.jsx("div",{className:ve.listItem,"data-rs-tabs-item":!0,children:M},$.value||M.key||T)}),l.jsx("div",{onTransitionEnd:S,className:y,style:{"--rs-tab-selection-x":d.left,"--rs-tab-selection-y":d.top,"--rs-tab-selection-scale-x":d.scaleX,"--rs-tab-selection-scale-y":d.scaleY}})]})}),l.jsx(Oe,{onClick:E,touchHitbox:!0,attributes:{"aria-hidden":!0,tabIndex:-1},className:[ve.control,ve["control--prev"],(w==="start"||w==="both")&&ve["control--active"]],children:l.jsx(ze,{svg:Xn,size:5})}),l.jsx(Oe,{onClick:z,touchHitbox:!0,attributes:{"aria-hidden":!0,tabIndex:-1},className:[ve.control,ve["control--next"],(w==="end"||w==="both")&&ve["control--active"]],children:l.jsx(ze,{svg:Qt,size:5})})]}))};Qi.displayName="Tabs.List";const el=e=>{const{value:t,children:n,className:r,attributes:o}=e,{value:s,panelId:i,buttonId:c}=uo(t),[m,u]=a.useState(!0),_=a.useRef(null),d=t===s,h=F(ve.panel,!d&&ve["--panel-hidden"],r);return a.useEffect(()=>{const g=_.current;if(!g)return;const p=()=>{u(!Fn(g).length)};p();const f=new MutationObserver(p);return f.observe(g,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["tabindex","disabled","href"]}),()=>f.disconnect()},[]),l.jsx("div",j(v({},o),{ref:_,className:h,tabIndex:m?0:void 0,role:"tabpanel",id:i,"aria-labelledby":c,children:d&&n}))};el.displayName="Tabs.Panel";const Sn=e=>{const{value:t}=e;return t!==void 0?l.jsx(mo,v({},e)):l.jsx(Ji,v({},e))};Sn.Item=_o,Sn.List=Qi,Sn.Panel=el,Sn.displayName="Tabs";const Rt={root:"_root_1urne_1",input:"_input_1urne_17","--size-medium":"_--size-medium_1urne_1","--size-large":"_--size-large_1urne_1","--size-xlarge":"_--size-xlarge_1urne_1","--variant-faded":"_--variant-faded_1urne_87","--variant-headless":"_--variant-headless_1urne_98","--status-error":"_--status-error_1urne_105","--resize-none":"_--resize-none_1urne_124","--resize-auto":"_--resize-auto_1urne_125","--size-medium--m":"_--size-medium--m_1urne_1","--size-large--m":"_--size-large--m_1urne_1","--size-xlarge--m":"_--size-xlarge--m_1urne_1","--size-medium--l":"_--size-medium--l_1urne_1","--size-large--l":"_--size-large--l_1urne_1","--size-xlarge--l":"_--size-xlarge--l_1urne_1","--size-medium--xl":"_--size-medium--xl_1urne_1","--size-large--xl":"_--size-large--xl_1urne_1","--size-xlarge--xl":"_--size-xlarge--xl_1urne_1"},fo=e=>{var N,k;const{onChange:t,onFocus:n,onBlur:r,name:o,value:s,defaultValue:i,placeholder:c,size:m="medium",variant:u="outline",resize:_,className:d,attributes:h}=e,[g,p]=a.useState(s||i||""),f=mt(),x=et(e.id),w=((N=f==null?void 0:f.attributes)==null?void 0:N.id)||((k=e.inputAttributes)==null?void 0:k.id)||x,C=(f==null?void 0:f.disabled)||e.disabled,y=(f==null?void 0:f.hasError)||e.hasError,z=v(v({},e.inputAttributes),f==null?void 0:f.attributes),E=F(Rt.root,m&&me(Rt,"--size",m),y&&Rt["--status-error"],C&&Rt["--disabled"],u&&Rt[`--variant-${u}`],_!==void 0&&Rt[`--resize-${_}`],d),S=M=>{const T=M.target.value;t==null||t({name:o,value:T,event:M}),_==="auto"&&typeof s!="string"&&p(T)};return a.useEffect(()=>{typeof s!="string"||_!=="auto"||p(s)},[s,_]),l.jsx("div",j(v({},h),{"data-rs-aligner-target":!0,className:E,"data-rs-textarea-value":g,children:l.jsx("textarea",j(v({rows:3},z),{className:Rt.input,disabled:C,name:o,placeholder:c,value:s,defaultValue:i,onChange:S,onFocus:n||(z==null?void 0:z.onFocus),onBlur:r||(z==null?void 0:z.onBlur),id:w}))}))};fo.Aligner=bn,fo.displayName="TextArea";const ho={item:"_item_gwbgg_1","item--full-width":"_item--full-width_gwbgg_1",marker:"_marker_gwbgg_36"},ir=e=>{const{children:t,markerSlot:n,className:r,attributes:o}=e,s=n!==null,i=F(ho.item,!s&&ho["item--full-width"],r);return l.jsxs(G,{as:"li",direction:"row",align:"stretch",gap:3,attributes:o,className:i,children:[s&&l.jsx("span",{className:ho.marker,children:n}),l.jsx(G.Item,{grow:!0,children:t})]})},go=e=>{const{children:t,className:n,attributes:r}=e,o=F(n);return l.jsx("ul",j(v({},r),{className:o,children:a.Children.map(t,(s,i)=>a.isValidElement(s)&&s.type===ir?s:l.jsx(ir,{children:s},i))}))};go.Item=ir,go.displayName="Timeline",ir.displayName="Timeline.Item";const tl={short:4e3,long:8e3},Tn=["top-start","top","top-end","bottom-start","bottom","bottom-end"],nl={queues:Tn.reduce((e,t)=>v({[t]:[]},e),{}),id:"",show:()=>{},hide:()=>{},remove:()=>{},add:()=>""},lr=a.createContext(nl),rl=()=>{const{add:e,hide:t,id:n}=a.useContext(lr);return a.useMemo(()=>({show:e,hide:t,id:n}),[e,t,n])},dt={container:"_container_13298_1","container--visible":"_container--visible_13298_1",wrapper:"_wrapper_13298_12","container--index-0":"_container--index-0_13298_1","container--index-1":"_container--index-1_13298_1","container--index-2":"_container--index-2_13298_112","container--index-overflow":"_container--index-overflow_13298_116",region:"_region_13298_65","region--nested":"_region--nested_13298_1","region--position-top":"_region--position-top_13298_1","region--position-top-start":"_region--position-top-start_13298_1","region--position-top-end":"_region--position-top-end_13298_1","region--position-bottom":"_region--position-bottom_13298_1","region--position-bottom-start":"_region--position-bottom-start_13298_1","region--position-bottom-end":"_region--position-bottom-end_13298_1"},ol=e=>{const{size:t="small",text:n,children:r,color:o="inverted",icon:s,title:i,actionsSlot:c,startSlot:m,collapsed:u,className:_,attributes:d}=e;let h=o==="inverted"||o==="neutral"?"elevation-overlay":o;o==="neutral"&&(h=u?"neutral":"elevation-overlay");const g=o==="neutral"?"neutral-faded":"transparent",p=t==="small"?"span":"div",f=t==="large";let x=[];c&&(x=Array.isArray(c)?c:[c]);const w=(i||n)&&l.jsxs(a.Fragment,{children:[i&&l.jsxs(fe,{variant:"body-3",weight:"bold",as:p,children:[i," "]}),l.jsx(fe,{variant:"body-3",as:p,children:n})]}),C=l.jsxs(G,{backgroundColor:h,borderColor:g,padding:4,borderRadius:"medium",animated:!0,direction:"row",gap:3,align:f?"start":"center",className:[dt.toast,_],attributes:d,children:[s&&l.jsx(ze,{size:5,svg:s,className:dt.icon}),m&&!s&&l.jsx(G.Item,{children:m}),l.jsx(G.Item,{grow:!0,children:l.jsxs(G,{direction:f?"column":"row",align:f?"start":"center",gap:3,children:[l.jsx(G.Item,{grow:!0,children:w&&r||t!=="small"?l.jsxs(G,{gap:.5,children:[w,r&&l.jsx(G,{gap:3,children:r})]}):w||r}),x.length&&l.jsx(G,{direction:"row",align:"center",gap:2,children:x.map((y,z)=>{const E=t==="large"?z===0:z===x.length-1,N={variant:E?"solid":"ghost",size:"small",color:E?o==="neutral"||o==="inverted"?"neutral":"media":"inherit",elevated:o!=="neutral"};return y.type===qe?a.createElement(qe,j(v(v({},N),y.props),{key:z})):y})})]})})]});return o==="inverted"?l.jsx(Zt,{colorMode:"inverted",children:C}):C};ol.displayName="Toast";const sl=e=>{const{toastProps:t,id:n,status:r,inspected:o,index:s}=e,{timeout:i="short"}=t,{show:c,hide:m,remove:u}=a.useContext(lr),[_,d]=a.useState(),h=a.useRef(null),g=a.useRef(!1),p=a.useRef(null),f=r==="entered",x=F(dt.container,f&&dt["container--visible"],s===0&&dt[`container--index-${s}`],!o&&(s===1||s===2)&&dt[`container--index-${s}`],!o&&s>=3&&dt["container--index-overflow"]),w=a.useCallback(()=>{h.current&&clearTimeout(h.current)},[]),C=a.useCallback(()=>{w();const z=typeof i=="string"?tl[i]:i;i!==0&&(h.current=setTimeout(()=>{m(n)},z!=null?z:tl.short))},[m,n,i,w]),y=z=>{z.propertyName==="height"&&(f||u(n))};return a.useEffect(()=>{f&&(o?w():C())},[o,C,w,f]),a.useEffect(()=>{p.current&&d(p.current.clientHeight),c(n),C()},[c,n,C]),a.useEffect(()=>{if(!p.current)return;const z=new Xt;f?z.trap(p.current,{includeTrigger:!0,mode:"content-menu"}):Vn()&&z.release()},[f]),a.useEffect(()=>{if(!f||s>0)return;const z=()=>{g.current=!0,tt(()=>{g.current=!1}),p.current&&d(p.current.clientHeight)};return window.addEventListener("resize",z),()=>window.removeEventListener("resize",z)},[f,s]),l.jsx("li",{className:x,style:{height:r==="entered"?`calc(${_}px + var(--rs-unit-x2) + 2px)`:0,transitionDuration:g.current?"0s":void 0},onTransitionEnd:y,onFocus:w,onBlur:C,children:l.jsx("span",{className:dt.wrapper,children:l.jsx(ol,j(v({},t),{collapsed:s>0&&!o,attributes:j(v({},t.attributes),{ref:p})}))})})};sl.displayName="ToastContainer";const il=e=>{const{position:t,nested:n}=e,{queues:r,options:o}=a.useContext(lr),[s,i]=a.useState(!1),c=a.useRef(!1),m=a.useRef(null),u=r[t],{width:_,expanded:d}=(o==null?void 0:o[t])||{},h=F(dt.region,dt[`region--position-${t}`],n&&dt["region--nested"]),g=u.filter(y=>y.status==="entered").length;let p=0;const f=()=>{c.current=!0},x=y=>{let z=y.target,E=!1;for(;z&&z!==m.current&&!E;)E=z.matches(Zo),z=z.parentElement;E||i(S=>!S),c.current=!1},w=()=>{c.current||i(!0)},C=()=>{c.current||i(!1)};return a.useEffect(()=>{u.length===0&&i(!1)},[u.length]),u.length?l.jsx("ul",{role:"region","aria-live":"polite",className:h,ref:m,onTouchStart:f,onClick:x,onMouseEnter:w,onMouseLeave:C,style:{width:_},children:u.map((y,z)=>{const E=g-z+p-1;return y.status!=="entered"&&(p+=1),l.jsx(sl,j(v({},y),{index:E,inspected:s||!!d}),y.id)})}):null};il.displayName="ToastRegion";let Vc=0;const Bc=()=>`__rs-toast-${Vc++}`,Oc=(e,t)=>{let n;switch(t.type){case"add":{const r=t.payload.toastProps||{},{position:o="bottom-end"}=r,s=$e(r,["position"]);return j(v({},e),{[o]:[...e[o],{id:t.payload.id,toastProps:s,status:"entering"}]})}case"show":{const{id:o}=t.payload;return n=v({},e),Tn.forEach(s=>{n[s]=n[s].map(i=>i.status!=="entering"?i:i.id===o?j(v({},i),{status:"entered"}):i)}),n}case"hide":{const{id:o}=t.payload;return n=v({},e),Tn.forEach(s=>{n[s]=n[s].map(i=>i.id===o?j(v({},i),{status:"exiting"}):i)}),n}case"remove":{const{id:o}=t.payload;return n=v({},e),Tn.forEach(s=>{n[s]=n[s].filter(i=>i.id!==o)}),n}}},po=e=>{const{children:t,options:n}=e,r=rl(),o=a.useId(),[s,i]=a.useReducer(Oc,nl.queues),c=a.useCallback(h=>{const g=Bc();return i({type:"add",payload:{toastProps:h,id:g}}),g},[]),m=a.useCallback(h=>{i({type:"show",payload:{id:h}})},[]),u=a.useCallback(h=>{i({type:"hide",payload:{id:h}})},[]),_=a.useCallback(h=>{i({type:"remove",payload:{id:h}})},[]),d=a.useMemo(()=>({queues:s,id:o,add:c,show:m,hide:u,remove:_,inspecting:!1,options:n}),[s,m,u,c,_,o,n]);return l.jsxs(lr.Provider,{value:d,children:[t,Tn.map(h=>l.jsx(il,{position:h,nested:!!r.id},h))]})};po.displayName="ToastProiver";const ll=a.createContext(null),Hc=()=>a.useContext(ll),Wc=e=>{const o=e,{focusable:t,onFocus:n}=o,r=$e(o,["focusable","onFocus"]);return l.jsx(ar,j(v({},r),{attributes:j(v({},r.attributes),{tabIndex:t?0:-1,onFocus:n})}))},vo=e=>{const d=e,{onChange:t,value:n,selectionMode:r="single",children:o}=d,s=$e(d,["onChange","value","selectionMode","children"]),i=a.useRef(0);let c=0;const m=a.Children.map(o,h=>{if(!a.isValidElement(h)||h.type!==ar||!h.props)return h;const g=c;c+=1;const p=i.current===g;return l.jsx(Wc,j(v({},h.props),{focusable:p,onFocus:()=>{i.current=g}}))}),u=h=>{const{event:g,value:p,checked:f}=h;if(!p)return;let x=r==="single"?[p]:[...n];r==="multiple"&&(f?x.push(p):x=x.filter(w=>w!==p)),t&&t({value:x,event:g})},{ref:_}=nt({"ArrowLeft, ArrowUp":()=>{ts(_.current)},"ArrowRight, ArrowDown":()=>{es(_.current)},Home:()=>{ns(_.current)},End:()=>{rs(_.current)}},[],{preventDefault:!0});return l.jsx(ll.Provider,{value:{onChange:u,value:n},children:l.jsx(qe.Group,j(v({},s),{attributes:v({ref:_},s==null?void 0:s.attributes),children:m}))})};vo.displayName="ToggleButtonGroupControlled";const al=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||[]),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(vo,j(v({},e),{value:r,defaultValue:void 0,onChange:s}))};al.displayName="ToggleButtonGroupUncontrolled";const cl=e=>{const{value:t}=e;return t!==void 0?l.jsx(vo,v({},e)):l.jsx(al,v({},e))};cl.displayName="ToggleButtonGroup";const bo=e=>{var _,d;const u=e,{variant:t="outline",value:n,onChange:r,onClick:o}=u,s=$e(u,["variant","value","onChange","onClick"]),i=Hc(),c=(d=n?(_=i==null?void 0:i.value)==null?void 0:_.includes(n):void 0)!=null?d:e.checked,m=h=>{var p;const g={checked:!c,value:n!=null?n:"",event:h};o==null||o(h),i?(p=i==null?void 0:i.onChange)==null||p.call(i,g):r==null||r(g)};return l.jsx(qe,j(v({},s),{variant:t,onClick:m,highlighted:c,attributes:j(v({},s.attributes),{"aria-pressed":c})}))};bo.displayName="ToggleButtonControlled";const dl=e=>{const i=e,{defaultChecked:t,onChange:n}=i,r=$e(i,["defaultChecked","onChange"]),o=qt(t),s=c=>{n==null||n(c),o.toggle(c.checked)};return l.jsx(bo,j(v({},r),{onChange:s,checked:o.active}))};dl.displayName="ToggleButtonUncontrolled";const ar=e=>{const{checked:t}=e;return t!==void 0?l.jsx(bo,v({},e)):l.jsx(dl,v({},e))};ar.displayName="ToggleButton";const Rc={root:"_root_1ca7d_1"},ul=e=>{const i=e,{text:t,children:n,position:r="bottom",color:o="inverted"}=i,s=$e(i,["text","children","position","color"]);return t?l.jsxs(_t,j(v({},s),{position:r,triggerType:"hover",groupTimeouts:!0,children:[l.jsx(_t.Trigger,{children:n}),l.jsx(_t.Content,{children:l.jsx(Zt,{colorMode:o,children:l.jsx(fe,{variant:"caption-1",className:Rc.root,children:t})})})]})):n({})};ul.displayName="Tooltip";const ml=a.createContext({disabledRef:null,disable:()=>{},enable:()=>{},activate:()=>{},deactivate:()=>{}}),Uc=e=>{const t=a.useRef(!1),n=a.useCallback(()=>{t.current=!0},[]),r=a.useCallback(()=>{t.current=!1},[]),o=a.useCallback(()=>{t.current||xa()},[]),s=a.useCallback(()=>{t.current||ya()},[]),i=a.useCallback(u=>{u.metaKey||u.altKey||u.ctrlKey||u.key!==Ca&&o()},[o]),c=a.useCallback(()=>{s()},[s]);a.useEffect(()=>(window.addEventListener("keydown",i),window.addEventListener("mousedown",c),()=>{window.removeEventListener("keydown",i),window.removeEventListener("mousedown",c)}),[c,i]);const m=a.useMemo(()=>({disabledRef:t,disable:n,enable:r,activate:o,deactivate:s}),[n,r,o,s]);return l.jsx(ml.Provider,{value:m,children:e.children})},Yc={root:"_root_1cpr1_1"},Gc=e=>{const{children:t,defaultRTL:n,defaultViewport:r="s",toastOptions:o}=e,s=La(n);return l.jsx(Uc,{children:l.jsx(Cr.Provider,{value:{rtl:s,defaultViewport:r},children:l.jsx(Da,{children:l.jsx(po,{options:o,children:t})})})})},_l=e=>{const{theme:t,defaultTheme:n="reshaped",colorMode:r,defaultColorMode:o,scoped:s,className:i}=e,c=F(Yc.root,i),m=a.useRef(null),u=Er();return l.jsx(zs,{defaultMode:o||u.mode||"light",mode:r,scopeRef:u&&s?m:void 0,children:l.jsx(Cs,{name:t,defaultName:n,className:c,scoped:s,scopeRef:u&&s?m:void 0,children:l.jsx(Gc,j(v({},e),{children:e.children}))})})};_l.displayName="Reshaped";const xo=a.createContext({active:!1,onToggle:()=>{},triggerId:"",contentId:""}),yo=e=>{const{children:t,onToggle:n,active:r,iconPosition:o,iconSize:s,gap:i,className:c,attributes:m}=e,u=F(c),_=et(),d=Ae(n),h=a.useMemo(()=>({triggerId:`${_}-trigger`,contentId:`${_}-content`,active:r,onToggle:d.current,iconPosition:o,iconSize:s,gap:i}),[r,o,s,_,d,i]);return l.jsx("div",j(v({},m),{className:u,children:l.jsx(xo.Provider,{value:h,children:t})}))};yo.displayName="AccordionControlled";const fl=e=>{const c=e,{defaultActive:t,onToggle:n}=c,r=$e(c,["defaultActive","onToggle"]),[o,s]=a.useState(t||!1),i=m=>{s(m),n==null||n(m)};return l.jsx(yo,j(v({},r),{onToggle:i,active:o}))};fl.displayName="AccordionUncontrolled";const hl={icon:"_icon_loavs_1","icon--active":"_icon--active_loavs_5"},gl=e=>{const{children:t}=e,{active:n,onToggle:r,triggerId:o,contentId:s,iconPosition:i="end",iconSize:c}=a.useContext(xo),m=F(hl.icon,n&&hl["icon--active"]),u=()=>{r==null||r(!n)},_={"aria-expanded":n,"aria-controls":s,id:o};return typeof t=="function"?l.jsx(l.Fragment,{children:t(j(v({},_),{onClick:u}),{active:n})}):l.jsx(Oe,{onClick:u,fullWidth:!0,attributes:_,children:l.jsxs(G,{gap:2,direction:i==="start"?"row-reverse":"row",align:"center",children:[l.jsx(G.Item,{grow:!0,children:t}),l.jsx(ze,{size:c||4,svg:vi,className:m})]})})};gl.displayName="Accordion.Trigger";const pl=e=>{const{children:t}=e,{active:n,triggerId:r,contentId:o,gap:s}=a.useContext(xo);return l.jsx(io,{active:n,attributes:{"aria-labelledby":r,id:o},children:s?l.jsx(G,{paddingTop:s,children:t}):t})};pl.displayName="Accordion.Content";const cr=e=>{const{active:t}=e;return t!==void 0?l.jsx(yo,v({},e)):l.jsx(fl,v({},e))};cr.Trigger=gl,cr.Content=pl,cr.displayName="Accordion";const Kc={root:"_root_1yz7x_1"},vl=e=>{const{children:t,padding:n=4,width:r,align:o,justify:s,height:i,maxHeight:c,className:m,attributes:u}=e,_=F(Kc.root,m);return l.jsx(G,{attributes:u,className:_,paddingInline:n,align:o,justify:s,height:i,maxHeight:c,width:r,maxWidth:"100%",children:t})};vl.displayName="Container";const bl={root:"_root_3bv1t_1",item:"_item_3bv1t_67"},xl=e=>{const{area:t,colStart:n,colEnd:r,colSpan:o,rowStart:s,rowEnd:i,rowSpan:c,children:m,className:u,as:_="div",attributes:d}=e,h=F(bl.item,u),g=_e(o,x=>x&&`span ${x}`),p=_e(c,x=>x&&`span ${x}`),f=v(v(v(v(v(v(v(v({},d==null?void 0:d.style),U("--rs-grid-area",t)),U("--rs-grid-col-end",g)),U("--rs-grid-col-end",r)),U("--rs-grid-col-start",n)),U("--rs-grid-row-end",p)),U("--rs-grid-row-end",i)),U("--rs-grid-row-start",s));return l.jsx(_,j(v({},d),{className:h,style:f,children:m}))},wo=e=>{const{areas:t,columns:n,rows:r,gap:o,columnGap:s,rowGap:i,align:c,justify:m,autoColumns:u,autoRows:_,autoFlow:d,children:h,className:g,width:p,height:f,maxWidth:x,as:w="div",attributes:C}=e,y=at({align:c,justify:m,width:p,height:f,maxWidth:x}),z=_e(r,M=>typeof M=="number"?`repeat(${M}, 1fr)`:M),E=_e(n,M=>typeof M=="number"?`repeat(${M}, 1fr)`:M),S=_e(t,M=>M?`"${M==null?void 0:M.join('" "')}"
|
31
|
-
`:void 0),N=F(bl.root,y.classNames,g),k=v(v(v(v(v(v(v(v(v(v(v({},C==null?void 0:C.style),U("--rs-grid-gap",o)),U("--rs-grid-column-gap",s)),U("--rs-grid-row-gap",i)),U("--rs-grid-rows",z)),U("--rs-grid-columns",E)),U("--rs-grid-areas",S)),U("--rs-grid-auto-flow",d)),U("--rs-grid-auto-columns",u)),U("--rs-grid-auto-rows",_)),y.variables);return l.jsx(w,j(v({},C),{className:N,style:k,children:h}))};wo.Item=xl,wo.displayName="Grid",xl.displayName="Grid.Item";const dr={root:"_root_qqeu9_1",fallback:"_fallback_qqeu9_6","--display-mode-cover":"_--display-mode-cover_qqeu9_15","--display-mode-contain":"_--display-mode-contain_qqeu9_19"},yl=e=>{const{src:t,alt:n,width:r,maxWidth:o,height:s,aspectRatio:i,onLoad:c,onError:m,fallback:u,displayMode:_="cover",borderRadius:d,className:h,attributes:g,imageAttributes:p,renderImage:f}=e,[x,w]=a.useState("loading"),C=at({radius:d,width:r,height:s,maxWidth:o,aspectRatio:i}),y=F(dr.root,C.classNames,_&&dr[`--display-mode-${_}`],h),z=F(dr.image,y),E=F(dr.fallback,y),S=(x==="error"||!t)&&!!u,N=v(v({},g==null?void 0:g.style),C.variables),k=$=>{w("success"),c==null||c($)},M=$=>{w("error"),m==null||m($)};if(a.useEffect(()=>{w("loading")},[t]),S){if(typeof u=="string"){const $=j(v({},g),{src:u!=null?u:"",alt:n!=null?n:"",role:n?void 0:"presentation",className:E,style:N});return f?f($):l.jsx("img",v({},$))}return l.jsx("div",j(v({},g),{className:E,style:N,children:u}))}const T=j(v(v({},g),p),{src:t!=null?t:"",alt:n!=null?n:"",role:n?void 0:"presentation",onLoad:k,onError:M,className:z,style:N});return f?f(T):l.jsx("img",v({},T))};yl.displayName="Image";const Xc=(e,t)=>{const{disabled:n,containerRef:r,orientation:o="all"}=t||{},s=Ae(e),i=qt(),c=a.useRef(null),m=a.useRef(null),u=r||m,_=a.useRef({x:0,y:0}),d=o==="vertical"||o==="all",h=o==="horizontal"||o==="all",g=(p,f)=>{var E;const x=c.current;if(!x)return;const C=((E=u.current)!=null?E:document.body).getBoundingClientRect(),y=x==null?void 0:x.getBoundingClientRect(),z={x:0,y:0,triggerX:0,triggerY:0};if(d){const S=Math.round(y.y)-C.y+f;z.y=Math.max(0,Math.min(S,C.height-y.height)),z.triggerY=y.y-C.y}if(h){const S=Math.round(y.x)-C.x+p;z.x=Math.max(0,Math.min(S,C.width-y.width)),z.triggerX=y.x-C.x}e(z)};return nt({[Lt]:()=>h&&g(-20,0),[Pt]:()=>h&&g(20,0),[It]:()=>d&&g(0,-20),[Dt]:()=>d&&g(0,20)},[],{ref:c,preventDefault:!0,disabled:n}),a.useEffect(()=>{const p=c.current;if(!p||!i.active)return;const f=w=>{var T,$;const C=w instanceof MouseEvent?w:w.changedTouches[0],z=((T=u.current)!=null?T:document.body).getBoundingClientRect(),E=p.getBoundingClientRect(),S=C.clientX-z.x,N=C.clientY-z.y,k=S-_.current.x,M=N-_.current.y;($=s.current)==null||$.call(s,{x:h?Math.max(0,Math.min(k,z.width-E.width)):0,y:d?Math.max(0,Math.min(M,z.height-E.height)):0,triggerX:E.x-z.x,triggerY:E.y-z.y})},x=()=>{_.current={x:0,y:0},i.deactivate(),Pn(),Hr()};return document.addEventListener("touchmove",f,{passive:!0}),document.addEventListener("touchend",x,{passive:!0}),document.addEventListener("mousemove",f,{passive:!0}),document.addEventListener("mouseup",x,{passive:!0}),()=>{document.removeEventListener("touchmove",f),document.removeEventListener("touchend",x),document.removeEventListener("mousemove",f),document.removeEventListener("mouseup",x)}},[i,h,d,u,s]),a.useEffect(()=>{const p=c.current;if(!p||n)return;const f=x=>{const w=x instanceof MouseEvent?x:x.changedTouches[0],C=p.getBoundingClientRect();_.current={x:w.clientX-C.x,y:w.clientY-C.y},i.activate(),Dn(),Or()};return p.addEventListener("touchstart",f,{passive:!0}),p.addEventListener("mousedown",f,{passive:!0}),()=>{p.removeEventListener("touchstart",f),p.removeEventListener("mousedown",f)}},[i,n]),{ref:c,containerRef:u,active:i.active}},nn={root:"_root_17pp4_1",item:"_item_17pp4_5",handle:"_handle_17pp4_16","--variant-bordered":"_--variant-bordered_17pp4_34","handle--dragging":"_handle--dragging_17pp4_60","--variant-borderless":"_--variant-borderless_17pp4_46","--direction-row":"_--direction-row_17pp4_69","--direction-column":"_--direction-column_17pp4_73"},wl=a.createContext({}),Jc=e=>{const{children:t}=e,{containerRef:n,onDrag:r,index:o,direction:s}=a.useContext(wl),{ref:i,active:c}=Xc(u=>{r(j(v({},u),{index:o}))},{containerRef:n,orientation:s==="row"?"horizontal":"vertical"}),m=F(nn.handle,c&&nn["handle--dragging"]);return t?l.jsx(G.Item,{children:t({ref:i},{direction:s,status:c?"dragging":"idle"})}):l.jsx(G.Item,{className:m,attributes:{role:"button",tabIndex:0,"aria-hidden":!0,ref:u=>{i.current=u}}})},Zc=a.forwardRef((e,t)=>{const{children:n,defaultSize:r,minSize:o,maxSize:s}=e,i=a.useRef(null);return l.jsx(G.Item,{grow:!0,className:nn.item,attributes:{ref:c=>{typeof t=="function"&&t(c),i.current=c},style:{"--rs-resizable-default-size":r,"--rs-resizable-min-size":o,"--rs-resizable-max-size":s}},children:n})}),rn=e=>{const{children:t,variant:n="borderless",height:r,direction:o="row",gap:s=2,className:i,attributes:c}=e,m=F(nn.root,nn[`--direction-${o}`],n&&nn[`--variant-${n}`],i),u=a.useRef(null),_=a.useRef([]),d=o==="row";let h=0,g=0;_.current=[];const p=w=>{const{item:C,grow:y,itemsSize:z,itemsCount:E}=w,{minSize:S,maxSize:N}=C.props,k=y/E/100*z,M=S&&Number(S.replace("px","")),T=N&&Number(N==null?void 0:N.replace("px",""));return!!(M&&M>k||T&&T<k)},f=w=>{const{index:C,x:y,y:z,triggerX:E,triggerY:S}=w,N=_.current[C],k=_.current[C+1];if(!N.el||!k.el)return;const M=_.current.length;let T=M*100,$=0;_.current.forEach((te,H)=>{te.el&&($+=d?te.el.clientWidth:te.el.clientHeight,!(H===C||H===C+1)&&(T-=Number(te.el.style.flexGrow||100)))},0);const D=d?N.el.clientWidth:N.el.clientHeight,A=d?N.el.offsetLeft:N.el.offsetTop,q=d?k.el.clientWidth:k.el.clientHeight,V=(d?E:S)-D-A,L=(d?y:z)-V,B=D+q,K=Math.min(1,Math.max(0,(L-A)/B)),Y=Math.floor(K*T),le=Math.floor(T-Y);p({item:N,itemsSize:$,grow:Y,itemsCount:M})||p({item:k,itemsSize:$,grow:le,itemsCount:M})||(N.el.style.flexGrow=Y.toString(),k.el.style.flexGrow=le.toString())};a.useEffect(()=>{const w=[];let C=0;_.current.forEach(y=>{y.el&&(C+=d?y.el.clientWidth:y.el.clientHeight)}),_.current.forEach((y,z)=>{if(!y.el)return;const E=(d?y.el.clientWidth:y.el.clientHeight)/C;w[z]=_.current.length*E*100}),_.current.forEach((y,z)=>{!y.el||!w[z]||(y.el.style.flexGrow=w[z].toString(),y.el.setAttribute("data-rs-resizable-item-mounted",""))})},[d]);const x=a.Children.map(t,w=>{const C=a.isValidElement(w);if(C&&w.props&&w.type!==rn.Item)return l.jsx(wl.Provider,{value:{containerRef:u,index:h++,onDrag:f,direction:o},children:w});if(C&&w.props&&w.type===rn.Item){const y=h;return l.jsx(Zc,j(v({},w.props),{index:g++,ref:z=>{_.current[y]={el:z,props:w.props}}}))}return null});return l.jsx(G,{attributes:j(v({},c),{ref:u}),className:m,height:r,direction:o,align:"stretch",gap:s,children:x})};rn.Item=()=>null,rn.Handle=Jc,rn.displayName="Resizable";const zt={root:"_root_1wq95_1",scrollable:"_scrollable_1wq95_9",content:"_content_1wq95_30",scrollbar:"_scrollbar_1wq95_37",thumb:"_thumb_1wq95_43","--scrollbar-y":"_--scrollbar-y_1wq95_59","--scrollbar-x":"_--scrollbar-x_1wq95_71","--display-visible":"_--display-visible_1wq95_91","--display-hover":"_--display-hover_1wq95_96","--scrollbar-dragging":"_--scrollbar-dragging_1wq95_100"},Cl=e=>{const{ratio:t,position:n,vertical:r,onThumbMove:o}=e,s=Ae(o),[i,c]=a.useState(!1),m=a.useRef(0),u=a.useRef(null),_=F(zt.scrollbar,r?zt["--scrollbar-y"]:zt["--scrollbar-x"],i&&zt["--scrollbar-dragging"]),d=f=>{const x=u.current,w=m.current;if(m.current=0,w||!x||f.currentTarget!==x)return;const C=x.getBoundingClientRect(),y=r?f.pageY-C.top:f.pageX-C.left,z=r?x.clientHeight:x.clientWidth;o({value:y/z-t/2,type:"absolute"})},h=a.useCallback(f=>{var y;m.current||(m.current=r?f.pageY:f.pageX);const x=u.current;if(!x||!i)return;const w=r?f.movementY:f.movementX,C=r?x.scrollHeight:x.scrollWidth;(y=s.current)==null||y.call(s,{value:w/C,type:"relative"})},[r,i,s]),g=a.useCallback(()=>{c(!1),Pn()},[]),p=()=>{c(!0),Dn()};return a.useEffect(()=>{if(i)return document.addEventListener("mousemove",h),document.addEventListener("mouseup",g),()=>{document.removeEventListener("mousemove",h),document.removeEventListener("mouseup",g)}},[h,g,i]),l.jsx("div",{className:_,style:{"--rs-scroll-area-ratio":t,"--rs-scroll-area-position":n},ref:u,onClick:d,onMouseDown:p,"aria-hidden":"true",children:l.jsx("div",{className:zt.thumb})})},zl=a.forwardRef((e,t)=>{const{children:n,height:r,maxHeight:o,scrollbarDisplay:s="hover",onScroll:i,className:c,attributes:m}=e,[u,_]=a.useState({x:1,y:1}),[d,h]=a.useState({x:0,y:0}),g=a.useRef(null),p=a.useRef(null),f=at({height:r,maxHeight:o}),x=F(zt.root,s&&zt[`--display-${s}`],c),w=F(zt.content,f.classNames),C=a.useCallback(()=>{const S=g.current;S&&_({x:S.clientWidth/S.scrollWidth,y:S.clientHeight/S.scrollHeight})},[]),y=S=>{const{scrollLeft:N,scrollTop:k,clientWidth:M,clientHeight:T,scrollWidth:$,scrollHeight:D}=S.currentTarget;h({x:N/$,y:k/D}),i==null||i({x:$===M?0:N/($-M),y:D===T?0:k/(D-T)})},z=S=>{const N=g.current;if(!N)return;const k=N.scrollHeight*S.value;S.type==="absolute"?N.scrollTop=k:N.scrollTop+=k},E=S=>{const N=g.current;if(!N)return;const k=N.clientWidth*S.value;S.type==="absolute"?N.scrollLeft=k:N.scrollLeft+=k};return a.useImperativeHandle(t,()=>g.current),je(()=>{C()},[C]),je(()=>{const S=p.current;if(!S)return;const N=new ResizeObserver(C);return N.observe(S),()=>N.disconnect()},[C]),l.jsxs("div",j(v({},m),{ref:p,className:x,children:[l.jsx("div",{className:zt.scrollable,ref:g,onScroll:y,children:l.jsx("div",{className:w,style:v({},f.variables),children:n})}),u.y<1&&s!=="hidden"&&l.jsx(Cl,{vertical:!0,onThumbMove:z,ratio:u.y,position:d.y}),u.x<1&&s!=="hidden"&&l.jsx(Cl,{onThumbMove:E,ratio:u.x,position:d.x})]}))});zl.displayName="ScrollArea";const Qc=()=>{const e=a.useContext(ml);return a.useMemo(()=>({enable:e.enable,disable:e.disable,activate:e.activate,deactivate:e.deactivate}),[e])},ed=e=>{const{w:t="auto",h:n=50,minW:r=n,children:o}=e;return l.jsx("div",{style:{width:t,height:n,minWidth:r,padding:"var(--rs-unit-x2)",background:"rgba(var(--rs-color-rgb-background-neutral), 0.32)",boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",borderRadius:"var(--rs-radius-small)"},children:o})};I.Accordion=cr,I.ActionBar=Bo,I.Actionable=Oe,I.Alert=Oo,I.Autocomplete=Ir,I.Avatar=Vs,I.Badge=Dr,I.Breadcrumbs=Lr,I.Button=qe,I.Calendar=ei,I.Card=ti,I.Carousel=ni,I.Checkbox=li,I.CheckboxGroup=si,I.Container=vl,I.ContextMenu=Bt,I.Dismissible=Tr,I.Divider=gn,I.DropdownMenu=Ie,I.FileUpload=Gr,I.Flyout=_t,I.FormControl=vn,I.Grid=wo,I.Hidden=Mt,I.HiddenVisually=Kn,I.Hotkey=mi,I.Icon=ze,I.Image=yl,I.Link=Pr,I.Loader=Sr,I.MenuItem=Un,I.Modal=nr,I.NumberField=xi,I.Overlay=Xr,I.Pagination=Ci,I.PinField=ki,I.Placeholder=ed,I.Popover=yt,I.Progress=Ei,I.ProgressIndicator=Si,I.Radio=Ii,I.RadioGroup=Mi,I.Reshaped=_l,I.Resizable=rn,I.Scrim=Di,I.ScrollArea=zl,I.Select=Pi,I.Skeleton=Li,I.Slider=Oi,I.Stepper=ao,I.Switch=Wi,I.Table=Wt,I.Tabs=Sn,I.Text=fe,I.TextArea=fo,I.TextField=xn,I.Theme=Zt,I.Timeline=go,I.ToastProvider=po,I.ToggleButton=ar,I.ToggleButtonGroup=cl,I.Tooltip=ul,I.TrapFocus=Xt,I.View=G,I.classNames=F,I.responsivePropDependency=_e,I.useFormControl=mt,I.useHandlerRef=Ae,I.useHotkeys=nt,I.useIsomorphicLayoutEffect=je,I.useKeyboardMode=Qc,I.useOnClickOutside=ds,I.useRTL=xt,I.useResponsiveClientValue=_i,I.useScrollLock=Yr,I.useTheme=ys,I.useToast=rl,I.useToggle=qt,Object.defineProperty(I,Symbol.toStringTag,{value:"Module"})}));
|
30
|
+
<%s key={someKey} {...props} />`,Io,Gt,pd,Gt),Al[Gt+Io]=!0}}return y===r?md(Be):ud(Be),Be}}function _d(y,A,W){return Fl(y,A,W,!0)}function fd(y,A,W){return Fl(y,A,W,!1)}var hd=fd,gd=_d;hn.Fragment=r,hn.jsx=hd,hn.jsxs=gd})()),hn}var Ao;function Rl(){return Ao||(Ao=1,process.env.NODE_ENV==="production"?He.exports=ql():He.exports=Wl()),He.exports}var l=Rl();const F=(...e)=>e.reduce((t,n)=>{if(Array.isArray(n)){const r=F(...n);return r?`${t} ${r}`:t}return n?`${t} ${n}`:t},"").trim(),Fo=(e,t,n)=>{const{base:r,excludeValueFromClassName:o}=n||{},s=typeof e=="string"?e:e(t);return t===!0&&r||o?s:t===!0&&!r?`${s}-true`:t===!1&&!r?`${s}-false`:t!==void 0?`${s}-${t}`:null},_e=(e,t,n,r)=>{if(typeof n!="object"){const o=Fo(t,n,{base:!0,excludeValueFromClassName:r==null?void 0:r.excludeValueFromClassName});return o?[e[o]]:[]}return Object.keys(n).reduce((o,s)=>{const i=s==="s",c=Fo(t,n[s],{base:i,excludeValueFromClassName:r==null?void 0:r.excludeValueFromClassName}),u=i?"":`--${s}`;return[...o,e[`${c}${u}`]]},[])},G=(e,t)=>t===void 0?{}:typeof t!="object"?{[`${e}-s`]:t}:Object.keys(t).reduce((n,r)=>{const o=t[r];return o===void 0||o===!1?n:N(g({},n),{[`${e}-${r}`]:o})},{}),Ul=e=>e===null?!1:typeof e=="object"&&e!==null&&"s"in e,de=(e,t)=>Ul(e)?Object.keys(e).reduce((r,o)=>{const s=e[o];return s==null?r:N(g({},r),{[o]:t(s,o)})},{}):t(e,"s"),Yl=e=>e?{variables:G("--rs-align",e)}:{},Gl=e=>e?{variables:G("--rs-ratio",e)}:{},Vo={root:"_root_23jyt_1","--bleed":"_--bleed_23jyt_8","--bleed-true--m":"_--bleed-true--m_23jyt_1","--bleed-false--m":"_--bleed-false--m_23jyt_1","--bleed-true--l":"_--bleed-true--l_23jyt_1","--bleed-false--l":"_--bleed-false--l_23jyt_1","--bleed-true--xl":"_--bleed-true--xl_23jyt_1","--bleed-false--xl":"_--bleed-false--xl_23jyt_1"},Kl=e=>{if(e===void 0)return{};const t=_e(Vo,"--bleed",de(e,r=>typeof r=="number"&&r>0)),n=G("--rs-bleed",e);return{classNames:[Vo.root,t],variables:n}},Xl={"--border-neutral":"_--border-neutral_xj2hx_1","--border-neutral-faded":"_--border-neutral-faded_xj2hx_1","--border-positive":"_--border-positive_xj2hx_1","--border-positive-faded":"_--border-positive-faded_xj2hx_1","--border-warning":"_--border-warning_xj2hx_1","--border-warning-faded":"_--border-warning-faded_xj2hx_1","--border-critical":"_--border-critical_xj2hx_1","--border-critical-faded":"_--border-critical-faded_xj2hx_1","--border-primary":"_--border-primary_xj2hx_1","--border-primary-faded":"_--border-primary-faded_xj2hx_1","--border-disabled":"_--border-disabled_xj2hx_1","--border-brand":"_--border-brand_xj2hx_1","--border-transparent":"_--border-transparent_xj2hx_1","--border-neutral--m":"_--border-neutral--m_xj2hx_1","--border-neutral-faded--m":"_--border-neutral-faded--m_xj2hx_1","--border-positive--m":"_--border-positive--m_xj2hx_1","--border-positive-faded--m":"_--border-positive-faded--m_xj2hx_1","--border-warning--m":"_--border-warning--m_xj2hx_1","--border-warning-faded--m":"_--border-warning-faded--m_xj2hx_1","--border-critical--m":"_--border-critical--m_xj2hx_1","--border-critical-faded--m":"_--border-critical-faded--m_xj2hx_1","--border-primary--m":"_--border-primary--m_xj2hx_1","--border-primary-faded--m":"_--border-primary-faded--m_xj2hx_1","--border-disabled--m":"_--border-disabled--m_xj2hx_1","--border-brand--m":"_--border-brand--m_xj2hx_1","--border-transparent--m":"_--border-transparent--m_xj2hx_1","--border-neutral--l":"_--border-neutral--l_xj2hx_1","--border-neutral-faded--l":"_--border-neutral-faded--l_xj2hx_1","--border-positive--l":"_--border-positive--l_xj2hx_1","--border-positive-faded--l":"_--border-positive-faded--l_xj2hx_1","--border-warning--l":"_--border-warning--l_xj2hx_1","--border-warning-faded--l":"_--border-warning-faded--l_xj2hx_1","--border-critical--l":"_--border-critical--l_xj2hx_1","--border-critical-faded--l":"_--border-critical-faded--l_xj2hx_1","--border-primary--l":"_--border-primary--l_xj2hx_1","--border-primary-faded--l":"_--border-primary-faded--l_xj2hx_1","--border-disabled--l":"_--border-disabled--l_xj2hx_1","--border-brand--l":"_--border-brand--l_xj2hx_1","--border-transparent--l":"_--border-transparent--l_xj2hx_1","--border-neutral--xl":"_--border-neutral--xl_xj2hx_1","--border-neutral-faded--xl":"_--border-neutral-faded--xl_xj2hx_1","--border-positive--xl":"_--border-positive--xl_xj2hx_1","--border-positive-faded--xl":"_--border-positive-faded--xl_xj2hx_1","--border-warning--xl":"_--border-warning--xl_xj2hx_1","--border-warning-faded--xl":"_--border-warning-faded--xl_xj2hx_1","--border-critical--xl":"_--border-critical--xl_xj2hx_1","--border-critical-faded--xl":"_--border-critical-faded--xl_xj2hx_1","--border-primary--xl":"_--border-primary--xl_xj2hx_1","--border-primary-faded--xl":"_--border-primary-faded--xl_xj2hx_1","--border-disabled--xl":"_--border-disabled--xl_xj2hx_1","--border-brand--xl":"_--border-brand--xl_xj2hx_1","--border-transparent--xl":"_--border-transparent--xl_xj2hx_1"},Jl=e=>e?{variables:G("--rs-border-w",de(e,t=>t?"1px":"0px"))}:{},Zl=e=>e?{variables:G("--rs-border-w-top",de(e,t=>t?"1px":"0px"))}:{},Ql=e=>e?{variables:G("--rs-border-w-bottom",de(e,t=>t?"1px":"0px"))}:{},ea=e=>e?{variables:G("--rs-border-w-start",de(e,t=>t?"1px":"0px"))}:{},ta=e=>e?{variables:G("--rs-border-w-end",de(e,t=>t?"1px":"0px"))}:{},na=e=>e?{variables:G("--rs-border-w-block",de(e,t=>t?"1px":"0px"))}:{},ra=e=>e?{variables:G("--rs-border-w-inline",de(e,t=>t?"1px":"0px"))}:{},oa=e=>e?{classNames:_e(Xl,"--border",e)}:{},Bo={root:"_root_14o7b_5","--type-literal":"_--type-literal_14o7b_14","--type-unit":"_--type-unit_14o7b_18","--type-literal--m":"_--type-literal--m_14o7b_1","--type-unit--m":"_--type-unit--m_14o7b_1","--type-literal--l":"_--type-literal--l_14o7b_1","--type-unit--l":"_--type-unit--l_14o7b_1","--type-literal--xl":"_--type-literal--xl_14o7b_1","--type-unit--xl":"_--type-unit--xl_14o7b_1"},sa=e=>{if(!e)return{};const t=G("--rs-h",e),n=_e(Bo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Bo.root,n],variables:t}},ia=e=>e===void 0?{}:{variables:G("--rs-inset",e)},la=e=>e===void 0?{}:{variables:G("--rs-inset-top",e)},aa=e=>e===void 0?{}:{variables:G("--rs-inset-bottom",e)},ca=e=>e===void 0?{}:{variables:G("--rs-inset-start",e)},da=e=>e===void 0?{}:{variables:G("--rs-inset-end",e)},ua=e=>e===void 0?{}:{variables:G("--rs-inset-inline",e)},ma=e=>e===void 0?{}:{variables:G("--rs-inset-block",e)},_a=e=>e?{variables:G("--rs-justify",e)}:{},Oo={root:"_root_1rdxk_1","--type-literal":"_--type-literal_1rdxk_1","--type-unit":"_--type-unit_1rdxk_1","--type-literal--m":"_--type-literal--m_1rdxk_1","--type-unit--m":"_--type-unit--m_1rdxk_1","--type-literal--l":"_--type-literal--l_1rdxk_1","--type-unit--l":"_--type-unit--l_1rdxk_1","--type-literal--xl":"_--type-literal--xl_1rdxk_1","--type-unit--xl":"_--type-unit--xl_1rdxk_1"},fa=e=>{if(!e)return{};const t=G("--rs-max-h",e),n=_e(Oo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Oo.root,n],variables:t}},Ho={root:"_root_qeyze_1","--type-literal":"_--type-literal_qeyze_1","--type-unit":"_--type-unit_qeyze_1","--type-literal--m":"_--type-literal--m_qeyze_1","--type-unit--m":"_--type-unit--m_qeyze_1","--type-literal--l":"_--type-literal--l_qeyze_1","--type-unit--l":"_--type-unit--l_qeyze_1","--type-literal--xl":"_--type-literal--xl_qeyze_1","--type-unit--xl":"_--type-unit--xl_qeyze_1"},ha=e=>{if(!e)return{};const t=G("--rs-max-w",e),n=_e(Ho,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Ho.root,n],variables:t}},qo={root:"_root_zookh_1","--type-literal":"_--type-literal_zookh_1","--type-unit":"_--type-unit_zookh_1","--type-literal--m":"_--type-literal--m_zookh_1","--type-unit--m":"_--type-unit--m_zookh_1","--type-literal--l":"_--type-literal--l_zookh_1","--type-unit--l":"_--type-unit--l_zookh_1","--type-literal--xl":"_--type-literal--xl_zookh_1","--type-unit--xl":"_--type-unit--xl_zookh_1"},ga=e=>{if(!e)return{};const t=G("--rs-min-h",e),n=_e(qo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[qo.root,n],variables:t}},Wo={root:"_root_1nz80_1","--type-literal":"_--type-literal_1nz80_1","--type-unit":"_--type-unit_1nz80_1","--type-literal--m":"_--type-literal--m_1nz80_1","--type-unit--m":"_--type-unit--m_1nz80_1","--type-literal--l":"_--type-literal--l_1nz80_1","--type-unit--l":"_--type-unit--l_1nz80_1","--type-literal--xl":"_--type-literal--xl_1nz80_1","--type-unit--xl":"_--type-unit--xl_1nz80_1"},pa=e=>{if(!e)return{};const t=G("--rs-min-w",e),n=_e(Wo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Wo.root,n],variables:t}},ba=e=>e?{variables:G("--rs-position",e)}:{},Ro={root:"_root_w529z_1","--radius-none":"_--radius-none_w529z_1","--radius-small":"_--radius-small_w529z_1","--radius-medium":"_--radius-medium_w529z_1","--radius-large":"_--radius-large_w529z_1","--radius-circular":"_--radius-circular_w529z_1","--radius-none--m":"_--radius-none--m_w529z_1","--radius-small--m":"_--radius-small--m_w529z_1","--radius-medium--m":"_--radius-medium--m_w529z_1","--radius-large--m":"_--radius-large--m_w529z_1","--radius-circular--m":"_--radius-circular--m_w529z_1","--radius-none--l":"_--radius-none--l_w529z_1","--radius-small--l":"_--radius-small--l_w529z_1","--radius-medium--l":"_--radius-medium--l_w529z_1","--radius-large--l":"_--radius-large--l_w529z_1","--radius-circular--l":"_--radius-circular--l_w529z_1","--radius-none--xl":"_--radius-none--xl_w529z_1","--radius-small--xl":"_--radius-small--xl_w529z_1","--radius-medium--xl":"_--radius-medium--xl_w529z_1","--radius-large--xl":"_--radius-large--xl_w529z_1","--radius-circular--xl":"_--radius-circular--xl_w529z_1"},va=e=>e?{classNames:[Ro.root,..._e(Ro,"--radius",e)]}:{},xa=e=>e?{variables:G("--rs-text-align",e)}:{},Uo={root:"_root_1kn8l_1","--type-literal":"_--type-literal_1kn8l_1","--type-unit":"_--type-unit_1kn8l_1","--type-literal--m":"_--type-literal--m_1kn8l_1","--type-unit--m":"_--type-unit--m_1kn8l_1","--type-literal--l":"_--type-literal--l_1kn8l_1","--type-unit--l":"_--type-unit--l_1kn8l_1","--type-literal--xl":"_--type-literal--xl_1kn8l_1","--type-unit--xl":"_--type-unit--xl_1kn8l_1"},ya={align:Yl,aspectRatio:Gl,bleed:Kl,border:Jl,borderTop:Zl,borderBottom:Ql,borderStart:ea,borderEnd:ta,borderInline:ra,borderBlock:na,borderColor:oa,height:sa,padding:e=>e?{variables:G("--rs-p",e)}:{},paddingTop:e=>e===void 0?{}:{variables:G("--rs-p-top",e)},paddingBottom:e=>e===void 0?{}:{variables:G("--rs-p-bottom",e)},paddingStart:e=>e===void 0?{}:{variables:G("--rs-p-start",e)},paddingEnd:e=>e===void 0?{}:{variables:G("--rs-p-end",e)},paddingInline:e=>e===void 0?{}:{variables:G("--rs-p-inline",e)},paddingBlock:e=>e===void 0?{}:{variables:G("--rs-p-block",e)},inset:ia,insetTop:la,insetBottom:aa,insetStart:ca,insetEnd:da,insetInline:ua,insetBlock:ma,justify:_a,maxHeight:fa,maxWidth:ha,minHeight:ga,minWidth:pa,position:ba,radius:va,textAlign:xa,width:e=>{if(!e)return{};const t=G("--rs-w",e),n=_e(Uo,r=>typeof r=="number"?"--type-unit":"--type-literal",e,{excludeValueFromClassName:!0});return{classNames:[Uo.root,n],variables:t}}},ct=e=>{const t={variables:{},classNames:[]};return Object.entries(e).forEach(([r,o])=>{const s=ya[r],i=s(o);i.variables&&(t.variables=g(g({},t.variables),i.variables)),i.classNames&&t.classNames.push(i.classNames)}),t},bt={root:"_root_1l1au_2","--clamp":"_--clamp_1l1au_12","--break-all":"_--break-all_1l1au_19","--wrap-balance":"_--wrap-balance_1l1au_23","--variant-title-1":"_--variant-title-1_1l1au_1","--variant-title-2":"_--variant-title-2_1l1au_1","--variant-title-3":"_--variant-title-3_1l1au_1","--variant-title-4":"_--variant-title-4_1l1au_1","--variant-title-5":"_--variant-title-5_1l1au_1","--variant-title-6":"_--variant-title-6_1l1au_1","--variant-featured-1":"_--variant-featured-1_1l1au_1","--variant-featured-2":"_--variant-featured-2_1l1au_1","--variant-featured-3":"_--variant-featured-3_1l1au_1","--variant-body-1":"_--variant-body-1_1l1au_1","--variant-body-2":"_--variant-body-2_1l1au_1","--variant-body-3":"_--variant-body-3_1l1au_1","--variant-caption-1":"_--variant-caption-1_1l1au_1","--variant-caption-2":"_--variant-caption-2_1l1au_1","--weight-regular":"_--weight-regular_1l1au_1","--weight-medium":"_--weight-medium_1l1au_1","--weight-bold":"_--weight-bold_1l1au_1","--color-neutral":"_--color-neutral_1l1au_1","--color-neutral-faded":"_--color-neutral-faded_1l1au_1","--color-primary":"_--color-primary_1l1au_1","--color-warning":"_--color-warning_1l1au_1","--color-positive":"_--color-positive_1l1au_1","--color-critical":"_--color-critical_1l1au_1","--color-disabled":"_--color-disabled_1l1au_1","--decoration-line-through":"_--decoration-line-through_1l1au_161","--monospace":"_--monospace_1l1au_165","--variant-title-1--m":"_--variant-title-1--m_1l1au_1","--variant-title-2--m":"_--variant-title-2--m_1l1au_1","--variant-title-3--m":"_--variant-title-3--m_1l1au_1","--variant-title-4--m":"_--variant-title-4--m_1l1au_1","--variant-title-5--m":"_--variant-title-5--m_1l1au_1","--variant-title-6--m":"_--variant-title-6--m_1l1au_1","--variant-featured-1--m":"_--variant-featured-1--m_1l1au_1","--variant-featured-2--m":"_--variant-featured-2--m_1l1au_1","--variant-featured-3--m":"_--variant-featured-3--m_1l1au_1","--variant-body-1--m":"_--variant-body-1--m_1l1au_1","--variant-body-2--m":"_--variant-body-2--m_1l1au_1","--variant-body-3--m":"_--variant-body-3--m_1l1au_1","--variant-caption-1--m":"_--variant-caption-1--m_1l1au_1","--variant-caption-2--m":"_--variant-caption-2--m_1l1au_1","--weight-regular--m":"_--weight-regular--m_1l1au_1","--weight-medium--m":"_--weight-medium--m_1l1au_1","--weight-bold--m":"_--weight-bold--m_1l1au_1","--variant-title-1--l":"_--variant-title-1--l_1l1au_1","--variant-title-2--l":"_--variant-title-2--l_1l1au_1","--variant-title-3--l":"_--variant-title-3--l_1l1au_1","--variant-title-4--l":"_--variant-title-4--l_1l1au_1","--variant-title-5--l":"_--variant-title-5--l_1l1au_1","--variant-title-6--l":"_--variant-title-6--l_1l1au_1","--variant-featured-1--l":"_--variant-featured-1--l_1l1au_1","--variant-featured-2--l":"_--variant-featured-2--l_1l1au_1","--variant-featured-3--l":"_--variant-featured-3--l_1l1au_1","--variant-body-1--l":"_--variant-body-1--l_1l1au_1","--variant-body-2--l":"_--variant-body-2--l_1l1au_1","--variant-body-3--l":"_--variant-body-3--l_1l1au_1","--variant-caption-1--l":"_--variant-caption-1--l_1l1au_1","--variant-caption-2--l":"_--variant-caption-2--l_1l1au_1","--weight-regular--l":"_--weight-regular--l_1l1au_1","--weight-medium--l":"_--weight-medium--l_1l1au_1","--weight-bold--l":"_--weight-bold--l_1l1au_1","--variant-title-1--xl":"_--variant-title-1--xl_1l1au_1","--variant-title-2--xl":"_--variant-title-2--xl_1l1au_1","--variant-title-3--xl":"_--variant-title-3--xl_1l1au_1","--variant-title-4--xl":"_--variant-title-4--xl_1l1au_1","--variant-title-5--xl":"_--variant-title-5--xl_1l1au_1","--variant-title-6--xl":"_--variant-title-6--xl_1l1au_1","--variant-featured-1--xl":"_--variant-featured-1--xl_1l1au_1","--variant-featured-2--xl":"_--variant-featured-2--xl_1l1au_1","--variant-featured-3--xl":"_--variant-featured-3--xl_1l1au_1","--variant-body-1--xl":"_--variant-body-1--xl_1l1au_1","--variant-body-2--xl":"_--variant-body-2--xl_1l1au_1","--variant-body-3--xl":"_--variant-body-3--xl_1l1au_1","--variant-caption-1--xl":"_--variant-caption-1--xl_1l1au_1","--variant-caption-2--xl":"_--variant-caption-2--xl_1l1au_1","--weight-regular--xl":"_--weight-regular--xl_1l1au_1","--weight-medium--xl":"_--weight-medium--xl_1l1au_1","--weight-bold--xl":"_--weight-bold--xl_1l1au_1"},wa={"title-1":"h1","title-2":"h2","title-3":"h3","title-4":"h4","title-5":"h5","title-6":"h6"},ue=e=>{const{variant:t,color:n,weight:r,align:o,decoration:s,maxLines:i,wrap:c,monospace:u,children:m,className:_,attributes:d}=e,f=typeof t=="string"?t:(t==null?void 0:t.xl)||(t==null?void 0:t.l)||(t==null?void 0:t.m)||(t==null?void 0:t.s),h=ct({textAlign:o}),v=e.as||f&&wa[f]||"div",p=F(bt.root,n&&bt[`--color-${n}`],..._e(bt,"--variant",t),..._e(bt,"--weight",r),s&&bt[`--decoration-${s}`],i!==void 0&&bt["--clamp"],i===1&&bt["--break-all"],c&&bt[`--wrap-${c}`],u&&bt["--monospace"],_,h.classNames),b=N(g(g({},d==null?void 0:d.style),h.variables),{"--rs-text-lines":i});return l.jsx(v,N(g({},d),{className:p,style:b,children:m}))};ue.displayName="Text";const gn={root:"_root_1tql4_1","--blank":"_--blank_1tql4_22","--vertical":"_--vertical_1tql4_28",label:"_label_1tql4_54","--content-position-center":"_--content-position-center_1tql4_78","--content-position-start":"_--content-position-start_1tql4_85","--vertical-true--m":"_--vertical-true--m_1tql4_1","--vertical-false--m":"_--vertical-false--m_1tql4_1","--vertical-true--l":"_--vertical-true--l_1tql4_1","--vertical-false--l":"_--vertical-false--l_1tql4_1","--vertical-true--xl":"_--vertical-true--xl_1tql4_1","--vertical-false--xl":"_--vertical-false--xl_1tql4_1"},pn=e=>{const{vertical:t,blank:n,children:r,contentPosition:o="center",className:s,attributes:i}=e,c=F(gn.root,s,n&&gn["--blank"],r?gn[`--content-position-${o}`]:void 0,..._e(gn,"--vertical",t));let u;return(typeof t=="boolean"||t===void 0)&&(u=t?"vertical":"horizontal"),l.jsx("div",N(g({},i),{role:"separator","aria-orientation":u,className:c,children:r&&l.jsx(ue,{color:"neutral-faded",variant:"caption-1",className:gn.label,children:r})}))};pn.displayName="Divider";const gr={root:"_root_11ilc_1","--hidden":"_--hidden_11ilc_5","--visibility":"_--visibility_11ilc_9","--hidden-true--m":"_--hidden-true--m_11ilc_1","--hidden-false--m":"_--hidden-false--m_11ilc_1","--hidden-true--l":"_--hidden-true--l_11ilc_1","--hidden-false--l":"_--hidden-false--l_11ilc_1","--hidden-true--xl":"_--hidden-true--xl_11ilc_1","--hidden-false--xl":"_--hidden-false--xl_11ilc_1"},Mt=e=>{const{as:t="div",children:n,visibility:r,hide:o}=e,s=F(gr.root,..._e(gr,"--hidden",o),r&&gr["--visibility"]);return l.jsx(t,{className:s,children:n})};Mt.displayName="Hidden";const Fe={root:"_root_9u073_1",item:"_item_9u073_11","--animated":"_--animated_9u073_19","--bg-neutral":"_--bg-neutral_9u073_1","--bg-positive":"_--bg-positive_9u073_1","--bg-warning":"_--bg-warning_9u073_1","--bg-critical":"_--bg-critical_9u073_1","--bg-primary":"_--bg-primary_9u073_1","--bg-neutral-faded":"_--bg-neutral-faded_9u073_1","--bg-positive-faded":"_--bg-positive-faded_9u073_1","--bg-warning-faded":"_--bg-warning-faded_9u073_1","--bg-critical-faded":"_--bg-critical-faded_9u073_1","--bg-primary-faded":"_--bg-primary-faded_9u073_1","--bg-page":"_--bg-page_9u073_1","--bg-page-faded":"_--bg-page-faded_9u073_1","--bg-disabled":"_--bg-disabled_9u073_1","--bg-disabled-faded":"_--bg-disabled-faded_9u073_1","--bg-elevation-base":"_--bg-elevation-base_9u073_1","--bg-elevation-raised":"_--bg-elevation-raised_9u073_1","--bg-elevation-overlay":"_--bg-elevation-overlay_9u073_1","--bg-brand":"_--bg-brand_9u073_39","--bg-white":"_--bg-white_9u073_44","--bg-black":"_--bg-black_9u073_49","--shadow-raised":"_--shadow-raised_9u073_54","--shadow-overlay":"_--shadow-overlay_9u073_58","--overflow-hidden":"_--overflow-hidden_9u073_62","--overflow-auto":"_--overflow-auto_9u073_66","--divided":"_--divided_9u073_70","--flex":"_--flex_9u073_74","--direction-column":"_--direction-column_9u073_1","item--gap-before":"_item--gap-before_9u073_86","item--gap-auto":"_item--gap-auto_9u073_90","--direction-column-reverse":"_--direction-column-reverse_9u073_1","--direction-row":"_--direction-row_9u073_1","--direction-row-reverse":"_--direction-row-reverse_9u073_1","--nowrap":"_--nowrap_9u073_145","--wrap":"_--wrap_9u073_153","--nowrap-false--m":"_--nowrap-false--m_9u073_1","--wrap-true--m":"_--wrap-true--m_9u073_1","--nowrap-true--m":"_--nowrap-true--m_9u073_1","--wrap-false--m":"_--wrap-false--m_9u073_1","--nowrap-false--l":"_--nowrap-false--l_9u073_1","--wrap-true--l":"_--wrap-true--l_9u073_1","--nowrap-true--l":"_--nowrap-true--l_9u073_1","--wrap-false--l":"_--wrap-false--l_9u073_1","--nowrap-false--xl":"_--nowrap-false--xl_9u073_1","--wrap-true--xl":"_--wrap-true--xl_9u073_1","--nowrap-true--xl":"_--nowrap-true--xl_9u073_1","--wrap-false--xl":"_--wrap-false--xl_9u073_1",divider:"_divider_9u073_171","item--grow":"_item--grow_9u073_175","item--shrink":"_item--shrink_9u073_193","item--columns":"_item--columns_9u073_197","item--columns-1":"_item--columns-1_9u073_1","item--columns-2":"_item--columns-2_9u073_1","item--columns-3":"_item--columns-3_9u073_1","item--columns-4":"_item--columns-4_9u073_1","item--columns-5":"_item--columns-5_9u073_1","item--columns-6":"_item--columns-6_9u073_1","item--columns-7":"_item--columns-7_9u073_1","item--columns-8":"_item--columns-8_9u073_1","item--columns-9":"_item--columns-9_9u073_1","item--columns-10":"_item--columns-10_9u073_1","item--columns-11":"_item--columns-11_9u073_1","item--columns-12":"_item--columns-12_9u073_1","item--columns-auto":"_item--columns-auto_9u073_218","item--columns-1--m":"_item--columns-1--m_9u073_1","item--columns-auto--m":"_item--columns-auto--m_9u073_1","item--columns-2--m":"_item--columns-2--m_9u073_1","item--columns-3--m":"_item--columns-3--m_9u073_1","item--columns-4--m":"_item--columns-4--m_9u073_1","item--columns-5--m":"_item--columns-5--m_9u073_1","item--columns-6--m":"_item--columns-6--m_9u073_1","item--columns-7--m":"_item--columns-7--m_9u073_1","item--columns-8--m":"_item--columns-8--m_9u073_1","item--columns-9--m":"_item--columns-9--m_9u073_1","item--columns-10--m":"_item--columns-10--m_9u073_1","item--columns-11--m":"_item--columns-11--m_9u073_1","item--columns-12--m":"_item--columns-12--m_9u073_1","item--columns-1--l":"_item--columns-1--l_9u073_1","item--columns-auto--l":"_item--columns-auto--l_9u073_1","item--columns-2--l":"_item--columns-2--l_9u073_1","item--columns-3--l":"_item--columns-3--l_9u073_1","item--columns-4--l":"_item--columns-4--l_9u073_1","item--columns-5--l":"_item--columns-5--l_9u073_1","item--columns-6--l":"_item--columns-6--l_9u073_1","item--columns-7--l":"_item--columns-7--l_9u073_1","item--columns-8--l":"_item--columns-8--l_9u073_1","item--columns-9--l":"_item--columns-9--l_9u073_1","item--columns-10--l":"_item--columns-10--l_9u073_1","item--columns-11--l":"_item--columns-11--l_9u073_1","item--columns-12--l":"_item--columns-12--l_9u073_1","item--columns-1--xl":"_item--columns-1--xl_9u073_1","item--columns-auto--xl":"_item--columns-auto--xl_9u073_1","item--columns-2--xl":"_item--columns-2--xl_9u073_1","item--columns-3--xl":"_item--columns-3--xl_9u073_1","item--columns-4--xl":"_item--columns-4--xl_9u073_1","item--columns-5--xl":"_item--columns-5--xl_9u073_1","item--columns-6--xl":"_item--columns-6--xl_9u073_1","item--columns-7--xl":"_item--columns-7--xl_9u073_1","item--columns-8--xl":"_item--columns-8--xl_9u073_1","item--columns-9--xl":"_item--columns-9--xl_9u073_1","item--columns-10--xl":"_item--columns-10--xl_9u073_1","item--columns-11--xl":"_item--columns-11--xl_9u073_1","item--columns-12--xl":"_item--columns-12--xl_9u073_1","--direction-column--m":"_--direction-column--m_9u073_1","--direction-column-reverse--m":"_--direction-column-reverse--m_9u073_1","--direction-row--m":"_--direction-row--m_9u073_1","--direction-row-reverse--m":"_--direction-row-reverse--m_9u073_1","item--grow-true--m":"_item--grow-true--m_9u073_1","item--grow-false--m":"_item--grow-false--m_9u073_1","--direction-column--l":"_--direction-column--l_9u073_1","--direction-column-reverse--l":"_--direction-column-reverse--l_9u073_1","--direction-row--l":"_--direction-row--l_9u073_1","--direction-row-reverse--l":"_--direction-row-reverse--l_9u073_1","item--grow-true--l":"_item--grow-true--l_9u073_1","item--grow-false--l":"_item--grow-false--l_9u073_1","--direction-column--xl":"_--direction-column--xl_9u073_1","--direction-column-reverse--xl":"_--direction-column-reverse--xl_9u073_1","--direction-row--xl":"_--direction-row--xl_9u073_1","--direction-row-reverse--xl":"_--direction-row-reverse--xl_9u073_1","item--grow-true--xl":"_item--grow-true--xl_9u073_1","item--grow-false--xl":"_item--grow-false--xl_9u073_1"},pr=e=>{const{columns:t,grow:n,shrink:r,gapBefore:o,as:s="div",order:i,children:c,className:u,attributes:m}=e,_=F(Fe.item,u,o==="auto"&&Fe["item--gap-auto"],o!==void 0&&Fe["item--gap-before"],t&&Fe["item--columns"],r&&Fe["item--shrink"],..._e(Fe,"item--grow",n),..._e(Fe,"item--columns",t)),d=g(g({},G("--rs-view-item-order",i)),G("--rs-view-item-gap-before",o));return l.jsx(s,N(g({},m),{style:g(g({},m==null?void 0:m.style),d),className:_,children:c}))},Y=e=>{var je;const{align:t,justify:n,wrap:r,gap:o,height:s,width:i,aspectRatio:c,maxHeight:u,maxWidth:m,minHeight:_,minWidth:d,padding:f,paddingInline:h,paddingBlock:v,paddingBottom:p,paddingEnd:b,paddingStart:x,paddingTop:C,bleed:w,animated:j,backgroundColor:z,borderColor:E,borderTop:k,borderBottom:S,borderStart:I,borderEnd:T,borderInline:$,borderBlock:P,borderRadius:D,shadow:B,textAlign:H,overflow:L,position:V,inset:U,insetTop:q,insetBottom:ie,insetStart:ee,insetEnd:K,zIndex:te,grow:J,shrink:ce,as:X="div",children:ne,divided:pe,className:O,attributes:R}=e,se=(je=e.border)!=null?je:E?!k&&!S&&!I&&!T&&!$&&!P:void 0;let fe=!!t||!!n||!!o||!!e.direction;const $e=e.direction||(fe?"column":void 0),De=ct({align:t,inset:U,insetTop:q,insetBottom:ie,insetStart:ee,insetEnd:K,bleed:w,width:i,height:s,maxWidth:m,maxHeight:u,minWidth:d,minHeight:_,position:V,aspectRatio:c,textAlign:H,justify:n,padding:f,paddingInline:h,paddingBlock:v,paddingBottom:p,paddingEnd:b,paddingStart:x,paddingTop:C,borderColor:E,border:se,borderTop:k,borderBottom:S,borderStart:I,borderEnd:T,borderInline:$,borderBlock:P,radius:D});let re=0,Z;const le=({className:ve,key:ye})=>{const Pe=F(Fe.divider,ve);let ke=!1;return typeof $e=="string"&&$e.startsWith("row")?ke=!0:$e&&(ke=Object.keys($e).reduce((ot,Ye)=>{const Nt=$e[Ye];return Nt?N(g({},ot),{[Ye]:Nt.startsWith("row")}):ot},{})),l.jsx("div",{className:Pe,children:l.jsx(pn,{vertical:ke,blank:!0})},`${ye}-divider`)},he=({className:ve,child:ye,index:Pe})=>{var cn,dn;const ke=a.isValidElement(ye),Ue=ke&&ye.type===pr,ot=ke&&ye.type===Y,Ye=ye.key,Nt=!!Pe&&pe&&le({className:ve,key:Ye});let $t;return Ue?$t=a.cloneElement(ye,{className:F(ve,ye.props.className)}):!ve&&(a.isValidElement(ye)||a.Children.count(ne===1)||typeof ye=="string")?$t=ye:$t=l.jsx("div",{className:ve,children:ye},Ye),(Ue||ot)&&((cn=ye.props)!=null&&cn.grow)&&(Z=ye.props.grow,fe=!0),Ue&&((dn=ye.props)==null?void 0:dn.gap)==="auto"&&(Z=!0),l.jsxs(a.Fragment,{children:[Nt,$t]},Ye?`${Ye}-fragment`:void 0)},be=a.Children.map(ne,(ve,ye)=>{if(!ve)return null;const Pe=re;if(re+=1,a.isValidElement(ve)&&ve.type===Mt){const ke=ve.props,{children:Ue}=ke,ot=Ee(ke,["children"]),Ye=ve.key||ye;return a.createElement(Mt,N(g({},ot),{key:Ye}),he({child:Ue,index:Pe}))}return ve.type===a.Fragment&&a.Children.count(ve.props.children)>1?ve.props.children.map(Ue=>Ue?(re+=1,he({child:Ue,index:re})):null):he({child:ve,index:Pe})}),Le=F(Fe.root,O,De.classNames,z&&Fe[`--bg-${z}`],B&&Fe[`--shadow-${B}`],L&&Fe[`--overflow-${L}`],j&&Fe["--animated"],pe&&Fe["--divided"],(fe||Z)&&Fe["--flex"],..._e(Fe,"--direction",$e),..._e(Fe,"--nowrap",Z||r===!1),..._e(Fe,"--wrap",r),..._e(Fe,"item--grow",J),ce&&Fe["item--shrink"]),Re=g(g(g(g({},R==null?void 0:R.style),G("--rs-view-gap",o)),De.variables),te?{"--rs-view-z":te}:{});return l.jsx(X,N(g({},R),{className:Le,style:Re,children:be}))};Y.Item=pr,Y.displayName="View",pr.displayName="View.Item";const Fn={root:"_root_kbofm_1","--position-top":"_--position-top_kbofm_1","--position-top-start":"_--position-top-start_kbofm_1","--position-top-end":"_--position-top-end_kbofm_1","--position-bottom":"_--position-bottom_kbofm_101","--position-bottom-start":"_--position-bottom-start_kbofm_1","--position-bottom-end":"_--position-bottom-end_kbofm_1","--elevated":"_--elevated_kbofm_66","--active":"_--active_kbofm_80"},Ca=["top","bottom"],Yo=e=>{const{position:t="bottom",positionType:n,offset:r,padding:o,paddingBlock:s=3,paddingInline:i=4,children:c,elevated:u,active:m=!0,className:_,attributes:d}=e,f=n!=null?n:r?"absolute":Ca.includes(t)?"relative":"absolute",h=r!=null?r:f==="relative"?void 0:4,v=h&&G("--rs-action-bar-offset",h),p=F(Fn.root,(u||!!v)&&Fn["--elevated"],t&&Fn[`--position-${t}`],m&&Fn["--active"],_);return l.jsx(Y,{className:p,attributes:N(g({},d),{style:g(g({},d==null?void 0:d.style),v)}),position:f,paddingBlock:o||s,paddingInline:o||i,children:c})};Yo.displayName="ActionBar";const br={root:"_root_lf5ct_1","--auto":"_--auto_lf5ct_9","--color-neutral":"_--color-neutral_lf5ct_1","--color-neutral-faded":"_--color-neutral-faded_lf5ct_1","--color-primary":"_--color-primary_lf5ct_1","--color-positive":"_--color-positive_lf5ct_1","--color-warning":"_--color-warning_lf5ct_1","--color-critical":"_--color-critical_lf5ct_1","--color-disabled":"_--color-disabled_lf5ct_1"},Ne=e=>{const{svg:t,className:n,color:r,size:o="1em",autoWidth:s,attributes:i}=e,c=ct({height:o}),u=F(br.root,n,c.classNames,r&&br[`--color-${r}`],s&&br["--auto"]),m=a.isValidElement(t)||t===null?t:l.jsx(t,{}),_=g(g({},i==null?void 0:i.style),c.variables);return l.jsx("span",N(g({},i),{"aria-hidden":"true",className:u,style:_,children:m&&a.cloneElement(m,{focusable:!1})}))};Ne.displayName="Icon";const ja={icon:"_icon_1elkf_1"},Go=e=>{const{title:t,children:n,icon:r,actionsSlot:o,color:s="neutral",inline:i,bleed:c,className:u,attributes:m}=e,_=s==="neutral",d=()=>i?l.jsxs(l.Fragment,{children:[t&&l.jsx(ue,{variant:"body-3",weight:"medium",as:"span",children:t}),t&&n&&" ",n&&l.jsx(ue,{variant:"body-3",as:"span",children:n})]}):l.jsxs(Y,{gap:1,grow:!0,children:[t&&l.jsx(ue,{variant:"body-3",weight:"medium",children:t}),n&&l.jsx(ue,{variant:"body-3",children:n})]}),f=h=>o?l.jsxs(Y,{gap:i?4:2,direction:i?"row":"column",children:[i?l.jsx(Y.Item,{grow:!0,children:h}):h,o&&l.jsx(ue,{variant:"body-3",weight:"medium",children:l.jsx(Y,{direction:"row",gap:3,children:o})})]}):h;return l.jsx(Y,{direction:"row",gap:3,padding:4,bleed:c,borderRadius:"medium",borderColor:`${s}-faded`,backgroundColor:`${s}-faded`,className:u,attributes:N(g({},m),{role:s==="critical"?"alert":"status"}),children:r?l.jsxs(l.Fragment,{children:[l.jsx("div",{className:ja.icon,children:l.jsx(Ne,{svg:r,size:5,color:_?"primary":s})}),l.jsx(Y.Item,{grow:!0,children:f(d())})]}):f(d())})};Go.displayName="Alert";const et=e=>{const t=a.useId();return e||t},Ko=a.createContext({attributes:{}}),ka=Ko.Provider,bn=()=>a.useContext(Ko),mt=()=>{const{attributes:e,required:t,hasError:n,disabled:r}=bn();return{attributes:e,required:t,hasError:n,disabled:r}},vr=(e,t)=>`${e}-${t||"caption"}`,Xo={label:"_label_1v514_5",caption:"_caption_1v514_14"},Jo=e=>{const{children:t}=e,{attributes:n,required:r,group:o,disabled:s,size:i}=bn(),c=`${n.id}-label`,u=o?"legend":"label";return l.jsxs(ue,{variant:i==="large"?"body-2":"body-3",weight:"medium",className:Xo.label,color:s?"disabled":void 0,"aria-disabled":s,children:[l.jsx(u,{id:c,htmlFor:o?void 0:n.id,children:t}),r&&l.jsx(ue,{color:s?"disabled":"critical",as:"span",children:"*"})]})};Jo.displayName="FormControl.Label";const Zo=e=>{const{children:t,variant:n,disabled:r}=e,{attributes:o,size:s,helperRef:i,errorRef:c}=bn(),u=vr(o.id,n),m=n==="error"?"critical":"neutral-faded",_=n==="error"?c:i;return l.jsx(ue,{as:"span",variant:s==="large"?"body-3":"caption-1",color:r&&!n?"disabled":m,attributes:{id:u,role:"alert","aria-disabled":r,ref:_},className:Xo.caption,children:t})},Qo=e=>{const{children:t}=e,{disabled:n}=bn();return l.jsx(Zo,{disabled:n,children:t})};Qo.displayName="FormControl.Helper";const es=e=>{const{children:t}=e,{hasError:n}=bn();return n?l.jsx(Zo,{variant:"error",children:t}):null};es.displayName="FormControl.Error";const vn=e=>{const{children:t,id:n,required:r,hasError:o,group:s,disabled:i,size:c}=e,u=et(n),m=s?"fieldset":"div",[_,d]=a.useState(!1),[f,h]=a.useState(!1),v=[_&&vr(u),f&&vr(u,"error")].filter(Boolean).join(" "),p={id:u,"aria-describedby":v},b=()=>{h(!0)},x=()=>{d(!0)};return l.jsx(m,{children:l.jsx(ka,{value:{required:r,hasError:o,errorRef:b,helperRef:x,attributes:p,group:s,disabled:i,size:c},children:t})})};vn.Label=Jo,vn.Helper=Qo,vn.Error=es,vn.displayName="FormControl";const ts={root:"_root_5kfqj_1","--side-all":"_--side-all_5kfqj_6","--side-start":"_--side-start_5kfqj_10","--side-inline":"_--side-inline_5kfqj_11","--side-end":"_--side-end_5kfqj_15","--side-top":"_--side-top_5kfqj_20","--side-block":"_--side-block_5kfqj_21","--side-bottom":"_--side-bottom_5kfqj_25"},xn=e=>{const{side:t="all",children:n,className:r,attributes:o}=e,s=typeof t=="string"?[t]:t,i=F(ts.root,s.map(c=>ts[`--side-${c}`]),r);return l.jsx("div",N(g({},o),{className:i,children:n}))};xn.displayName="Aligner";const Ge={root:"_root_65jeo_1",icon:"_icon_65jeo_21","--focused":"_--focused_65jeo_22","--multiline":"_--multiline_65jeo_26",input:"_input_65jeo_29","--rounded":"_--rounded_65jeo_34",affix:"_affix_65jeo_37",inner:"_inner_65jeo_48",slot:"_slot_65jeo_87","icon--position-end":"_icon--position-end_65jeo_100","affix--position-end":"_affix--position-end_65jeo_101","slot--position-end":"_slot--position-end_65jeo_102","affix--position-start":"_affix--position-start_65jeo_114","--disabled":"_--disabled_65jeo_139","--size-small":"_--size-small_65jeo_1","--size-medium":"_--size-medium_65jeo_1","--size-large":"_--size-large_65jeo_1","--size-xlarge":"_--size-xlarge_65jeo_1","--variant-faded":"_--variant-faded_65jeo_197","--variant-headless":"_--variant-headless_65jeo_203","--status-error":"_--status-error_65jeo_210","--size-small--m":"_--size-small--m_65jeo_1","--size-medium--m":"_--size-medium--m_65jeo_1","--size-large--m":"_--size-large--m_65jeo_1","--size-xlarge--m":"_--size-xlarge--m_65jeo_1","--size-small--l":"_--size-small--l_65jeo_1","--size-medium--l":"_--size-medium--l_65jeo_1","--size-large--l":"_--size-large--l_65jeo_1","--size-xlarge--l":"_--size-xlarge--l_65jeo_1","--size-small--xl":"_--size-small--xl_65jeo_1","--size-medium--xl":"_--size-medium--xl_65jeo_1","--size-large--xl":"_--size-large--xl_65jeo_1","--size-xlarge--xl":"_--size-xlarge--xl_65jeo_1"},ns=e=>{const{slot:t,icon:n,size:r,affix:o,position:s,id:i}=e;if(!n&&!t&&!o)return null;const c=a.isValidElement(t)&&t.type===a.Fragment?t.props.children:t,u=t&&a.Children.map(c,f=>l.jsx("div",{className:F(Ge.slot,Ge[`slot--position-${s}`]),children:f},"slot")),m=n&&l.jsx("label",{className:F(Ge.icon,Ge[`icon--position-${s}`]),htmlFor:i,children:l.jsx(Ne,{size:de(r,f=>f==="large"?5:f==="xlarge"?6:4),svg:n,autoWidth:!0})},"icon"),_=o&&l.jsx("span",{className:F(Ge.affix,Ge[`affix--position-${s}`]),children:o},"affix");return(s==="start"?[m,u,_]:[m,_,u]).filter(Boolean)},yn=e=>{var D;const{onChange:t,onFocus:n,onBlur:r,name:o,value:s,defaultValue:i,placeholder:c,icon:u,endIcon:m,startSlot:_,endSlot:d,prefix:f,suffix:h,size:v="medium",variant:p="outline",focused:b,multiline:x,rounded:C,className:w,attributes:j}=e,z=mt(),E=et(e.id),k=(z==null?void 0:z.attributes.id)||((D=e.inputAttributes)==null?void 0:D.id)||E,S=(z==null?void 0:z.disabled)||e.disabled,I=(z==null?void 0:z.hasError)||e.hasError,T=g(g({},e.inputAttributes),z==null?void 0:z.attributes),$=F(Ge.root,w,v&&_e(Ge,"--size",v),I&&Ge["--status-error"],S&&Ge["--disabled"],b&&Ge["--focused"],x&&Ge["--multiline"],C&&Ge["--rounded"],p&&Ge[`--variant-${p}`]),P=B=>{t&&t({name:o,value:B.target.value,event:B})};return l.jsxs("div",N(g({},j),{"data-rs-aligner-target":!0,className:$,children:[l.jsx(ns,{position:"start",icon:u,slot:_,size:v,affix:f,id:E}),l.jsxs("div",{className:Ge.inner,children:[l.jsx("input",N(g({type:"text",autoComplete:"off"},T),{className:F(Ge.input,T.className),disabled:S,name:o,placeholder:c,value:s,defaultValue:i,onChange:P,onFocus:n||(T==null?void 0:T.onFocus),onBlur:r||(T==null?void 0:T.onBlur),id:k})),l.jsx(ns,{position:"end",icon:m,slot:d,size:v,affix:h,id:E})]})]}))};yn.Aligner=xn,yn.displayName="TextField";const Na=e=>"width"in e&&e.width!==void 0?e:N(g({},e),{width:0,height:0,left:e.x,right:e.x,top:e.y,bottom:e.y,toJSON:()=>{}}),Xt=e=>{const t=e==null?void 0:e.getRootNode();return t instanceof ShadowRoot?t:null},Vn=()=>{document.body.style.userSelect="none"},Bn=()=>{document.body.style.userSelect=""},za=(e,t)=>{let n=e.parentElement;for(;n;){if(t(n))return n;n=n.parentElement}return null},xr=e=>{const{el:t,iteration:n=0}=e,r=t&&window.getComputedStyle(t),o=r==null?void 0:r.position,s=o==="fixed"||o==="sticky";if(n===0){const i=Xt(t);if(i!=null&&i.firstElementChild)return i.firstElementChild}return t===document.body||!t?document.body:s?t:xr({el:t.parentElement,iteration:n+1})},yr=e=>{const{el:t,iteration:n=0}=e,r=t&&window.getComputedStyle(t),o=r==null?void 0:r.overflowY,s=(o==null?void 0:o.includes("scroll"))||(o==null?void 0:o.includes("auto"));return!t.parentElement||s&&t.scrollHeight>t.clientHeight?t:yr({el:t.parentElement,iteration:n+1})},rs=(e,t)=>{Object.getOwnPropertyDescriptor(window.HTMLInputElement.prototype,"value").set.call(e,t),e.dispatchEvent(new Event("change",{bubbles:!0}))},On="data-rs-focus",os='a,button,input:not([type="hidden"]),textarea,select,details,[tabindex],[contenteditable]',wn=e=>{const t=e?Xt(e):null,n=t!=null?t:document;return n.querySelector(`[${On}]`)||n.activeElement},Hn=(e,t)=>{var o;const n=Xt(e);(o=(n!=null?n:document).querySelector(`[${On}]`))==null||o.removeAttribute(On),t!=null&&t.pseudoFocus?e.setAttribute(On,"true"):e.focus()},qn=(e,t)=>{const r=Array.from(e.querySelectorAll(os)).filter(o=>{if(o.hasAttribute("disabled")||o.clientHeight===0||!(t!=null&&t.includeNegativeTabIndex)&&o.getAttribute("tabindex")==="-1")return!1;if(o.type==="radio"){let s;if(o.form){const i=o.form.elements.namedItem(o.name);if(!i)return!1;"length"in i?s=Array.from(i).filter(u=>"type"in u&&u.type==="radio"):s=[i]}else s=Array.from(e.querySelectorAll(`[type="radio"][name="${o.name}"]`));if(s!=null&&s.length){const i=Array.from(s).find(c=>c.checked);if(i&&o!==i||!i&&o!==s[0])return!1}}return!0});return t!=null&&t.additionalElement&&r.length&&r.unshift(t.additionalElement),r},ss=e=>{const{root:t,target:n,options:r}=e,o=qn(t,{additionalElement:r==null?void 0:r.additionalElement,includeNegativeTabIndex:r==null?void 0:r.includeNegativeTabIndex}),s=o.length-1,i=wn(t),c=o.indexOf(i),u={next:c+1,prev:c-1,first:0,last:s};let m=u[n];const _=m>s||m<0;return _&&(r!=null&&r.circular?m=n==="prev"?u.last:u.first:m=n==="prev"?u.first:u.last),{overflow:_,el:o[m]}},Wn=(e,t,n)=>{const r=ss({root:e,target:t,options:n});Hn(r.el)},is=e=>Wn(e,"next",{includeNegativeTabIndex:!0}),ls=e=>Wn(e,"prev",{includeNegativeTabIndex:!0}),as=e=>Wn(e,"first",{includeNegativeTabIndex:!0}),cs=e=>Wn(e,"last",{includeNegativeTabIndex:!0}),wr="data-rs-keyboard",Ea=()=>{document.documentElement.setAttribute(wr,"true")},Sa=()=>{document.documentElement.removeAttribute(wr)},Rn=()=>document.documentElement.hasAttribute(wr);class Ta{constructor(){Me(this,"chain",{});Me(this,"tailId",null);Me(this,"idCounter",0)}generateId(){return this.idCounter+=1,this.idCounter}getAll(){return this.chain}get(t){return this.chain[t]}isLast(t){return this.tailId!==null&&t===this.tailId}isEmpty(){return typeof this.tailId!="number"}add(t){const n=this.tailId,r=n&&this.get(n),o=this.generateId();return this.chain[o]={previousId:n,data:t},r&&(r.nextId=o),this.tailId=o,o}remove(t){var u,m;const n=this.chain[t];if(!n)return;const r=n.previousId,o=r&&this.get(r),s=n.nextId,i=s&&this.get(s);o&&(o.nextId=(u=n.nextId)!=null?u:null),i&&(i.previousId=(m=n.previousId)!=null?m:null),s||(this.tailId=r!=null?r:null);const c=this.get(t).data;return delete this.chain[t],c}removePreviousTill(t,n){const r=this.get(t),o=this.remove(t);return!r||!r.previousId||n(r)?o:this.removePreviousTill(r.previousId,n)}}const $a="Escape",Ma=" ",ds="Enter",Ia="Tab",It="ArrowUp",Dt="ArrowDown",Pt="ArrowRight",Lt="ArrowLeft",Da="Backspace";class Pa{constructor(t){Me(this,"root");Me(this,"hiddenElements",[]);Me(this,"hideSiblingsFromScreenReader",t=>{let n=t.parentNode&&t.parentNode.firstChild;for(;n;){const r=n!==t,o=n.nodeType===1&&!n.hasAttribute("aria-hidden");r&&o&&(n.setAttribute("aria-hidden","true"),this.hiddenElements.push(n)),n=n.nextSibling}});Me(this,"release",()=>{this.hiddenElements.forEach(t=>{t.removeAttribute("aria-hidden")}),this.hiddenElements=[]});Me(this,"trap",()=>{let t=this.root;for(this.release();t!==document.body&&t.parentElement;)this.hideSiblingsFromScreenReader(t),t=t.parentElement});this.root=t}}const rt=class rt{constructor(){pt(this,Ut);pt(this,Ie,null);pt(this,kt,null);pt(this,sn,{});Me(this,"trapped");pt(this,ln,null);pt(this,an,null);pt(this,Pn,t=>{if(t.defaultPrevented||rt.chain.tailId!==oe(this,Ut)||!oe(this,Ie))return;const{mode:n,onRelease:r,pseudoFocus:o,includeTrigger:s}=oe(this,sn);let i="tabs";(n==="action-menu"||n==="selection-menu"||n==="action-bar")&&(i="arrows");const c=t.key,u=c===Ia,m=u&&t.shiftKey,_=u&&!t.shiftKey,d=[Lt,Pt,It,Dt].includes(c),f=i==="arrows"&&c===(n==="action-bar"?Lt:It),h=i==="arrows"&&c===(n==="action-bar"?Pt:Dt),v=m&&i==="tabs"||f,p=_&&i==="tabs"||h,b=wn(oe(this,Ie))===oe(this,kt),x=ss({root:oe(this,Ie),target:v?"prev":"next",options:{additionalElement:s?oe(this,kt):void 0,circular:n!=="action-menu"&&n!=="action-bar"}});if(u&&i==="arrows"||n==="content-menu"&&u&&x.overflow){m&&!b&&t.preventDefault(),this.release(),r==null||r();return}if(!v&&!p){d&&(n==="action-bar"||n==="action-menu")&&t.preventDefault();return}t.preventDefault(),x.el&&Hn(x.el,{pseudoFocus:o})});pt(this,fr,()=>{const t=Xt(oe(this,Ie));(t!=null?t:document).addEventListener("keydown",oe(this,Pn))});pt(this,Ln,()=>{const t=Xt(oe(this,Ie));(t!=null?t:document).removeEventListener("keydown",oe(this,Pn))});Me(this,"trap",(t,n={})=>{const{mode:r="dialog",includeTrigger:o,initialFocusEl:s}=n;Kt(this,Ie,t),Kt(this,ln,new Pa(t));const i=wn(oe(this,Ie)),c=qn(oe(this,Ie),{additionalElement:o?i:void 0}),u=r==="selection-menu";if(Kt(this,sn,N(g({},n),{pseudoFocus:u})),Kt(this,kt,i),Kt(this,an,new MutationObserver(()=>{if(!oe(this,Ie))return;const d=wn(oe(this,Ie));if(oe(this,Ie).contains(d))return;const f=qn(oe(this,Ie),{additionalElement:o?i:void 0});f.length&&Hn(f[0],{pseudoFocus:u})})),oe(this,Ln).call(this),oe(this,an).observe(oe(this,Ie),{childList:!0,subtree:!0}),!c.length&&!s)return;oe(this,fr).call(this),r==="dialog"&&oe(this,ln).trap();const m=rt.chain.tailId&&rt.chain.get(rt.chain.tailId),_=wn(oe(this,Ie));(!m||oe(this,Ie)!==oe(m.data,Ie))&&(Kt(this,Ut,rt.chain.add(this)),oe(this,Ie).contains(_)||Hn(s||c[0],{pseudoFocus:u})),this.trapped=!0});Me(this,"release",(t={})=>{var o,s;const{withoutFocusReturn:n}=t;if(!this.trapped||!oe(this,Ut)||!oe(this,Ie))return;this.trapped=!1,oe(this,kt)&&!n&&oe(this,kt).focus({preventScroll:!Rn()}),rt.chain.removePreviousTill(oe(this,Ut),i=>document.body.contains(oe(i.data,kt))),(o=oe(this,an))==null||o.disconnect(),oe(this,Ln).call(this),(s=oe(this,ln))==null||s.release();const r=rt.chain.tailId&&rt.chain.get(rt.chain.tailId);r&&oe(r.data,Ie)&&new rt().trap(oe(r.data,Ie),oe(r.data,sn))})}};Ut=new WeakMap,Ie=new WeakMap,kt=new WeakMap,sn=new WeakMap,ln=new WeakMap,an=new WeakMap,Pn=new WeakMap,fr=new WeakMap,Ln=new WeakMap,Me(rt,"chain",new Ta);let Jt=rt,At={},vt=null;const La=e=>{At[e]&&(e===vt&&(vt=At[e].parentId),delete At[e],vt===null&&(At={}))},Aa=(e,t,n)=>{At[e]={parentId:vt,triggerRef:n,contentRef:t},vt=e},us=e=>{const{active:t,contentRef:n,triggerRef:r,hasTrigger:o=!0}=e,s=et();return a.useEffect(()=>{if(t)return Aa(s,n,r),()=>La(s)},[t,s,n,r]),a.useCallback(()=>{var d;if(!t)return!0;const i=vt?At[vt]:void 0,c=(d=i==null?void 0:i.triggerRef)==null?void 0:d.current,u=i!=null&&i.parentId?At[i.parentId]:void 0,m=u==null?void 0:u.contentRef.current,_=m&&c&&m.contains(c);return o&&!_?!0:!vt||vt===s},[s,t,o])},Se=typeof window!="undefined"?a.useLayoutEffect:a.useEffect,Cn="+",st=new Map;let jn=[];const ms=e=>e===" "?e:e.replace(/\s/g,"").toLowerCase(),Un=e=>ms(e).split(Cn).sort().join(Cn),_s=e=>{if(e.key)return e.altKey&&/^[Key|Digit|Numpad]/.test(e.code)?e.code.toLowerCase().replace(/key|digit|numpad/,""):e.key.toLowerCase()},fs=(e,t)=>{Object.keys(e).forEach(n=>{n.split(",").forEach(r=>{const o=e[n];o&&t(Un(r),o)})})};class Fa{constructor(){Me(this,"hotkeyMap",{});Me(this,"getSize",()=>Object.keys(this.hotkeyMap).length);Me(this,"bindHotkeys",(t,n,r)=>{fs(t,(o,s)=>{s&&(this.hotkeyMap[o]||(this.hotkeyMap[o]=new Set),this.hotkeyMap[o].add({callback:s,ref:n,options:r}))})});Me(this,"unbindHotkeys",t=>{fs(t,(n,r)=>{var o,s;r&&((o=this.hotkeyMap[n])==null||o.forEach(i=>{i.callback===r&&this.hotkeyMap[n].delete(i)}),(s=this.hotkeyMap[n])!=null&&s.size||delete this.hotkeyMap[n])})});Me(this,"handleKeyDown",(t,n)=>{if(!t.size)return;const r=[...t.keys()],o=Un(r.join(Cn)),s=o.split(Cn),i=this.hotkeyMap[o],c=Un(o.replace("control","mod")),u=Un(o.replace("meta","mod")),m=s.includes("control")&&this.hotkeyMap[c],_=s.includes("meta")&&this.hotkeyMap[u];[i,m,_].forEach(d=>{d&&d!=null&&d.size&&d.forEach(f=>{const h=n.composedPath()[0];if(f.ref.current&&!(h===f.ref.current||f.ref.current.contains(h)))return;const v=t.get(o);f.options.preventDefault&&(v==null||v.preventDefault(),n.preventDefault()),f.callback(n)})})})}}const Cr=new Fa,hs=a.createContext({}),Va=e=>{const{children:t}=e,[n,r]=a.useState(0),[o,s]=a.useState(0),i=a.useCallback(h=>{if(h.repeat||o===0)return;const v=_s(h);v&&(st.set(v,h),r(st.size),h.metaKey&&jn.push(...st.keys()),st.has("Meta")&&jn.push(v))},[o]),c=a.useCallback(h=>{if(o===0)return;const v=_s(h);v&&(st.delete(v),(v==="meta"||v==="control")&&st.delete("mod"),v==="meta"&&(jn.forEach(p=>{st.has(p)&&st.delete(p)}),jn=[]),r(st.size))},[o]),u=h=>!ms(h).split(Cn).some(p=>!st.has(p)),m=a.useCallback(h=>{h.key&&(i(h),Cr.handleKeyDown(st,h))},[i]),_=a.useCallback(h=>{h.key&&c(h)},[c]),d=a.useCallback(()=>{st.clear(),jn=[]},[]),f=a.useCallback((h,v,p={})=>(s(b=>b+1),Cr.bindHotkeys(h,v,p),()=>{s(b=>b-1),Cr.unbindHotkeys(h)}),[]);return a.useEffect(()=>(window.addEventListener("keydown",m),window.addEventListener("keyup",_),window.addEventListener("blur",d),()=>{window.removeEventListener("keydown",m),window.removeEventListener("keyup",_),window.removeEventListener("blur",d)}),[m,_,d]),l.jsx(hs.Provider,{value:{addHotkeys:f,isPressed:u},children:t})},Ba=()=>a.useContext(hs),tt=(e,t=[],n)=>{const{addHotkeys:r,isPressed:o}=Ba(),s=a.useRef(null),i=(n==null?void 0:n.ref)||s;return a.useEffect(()=>{if(n!=null&&n.disabled)return;const c=r(e,i,{preventDefault:n==null?void 0:n.preventDefault});return()=>c==null?void 0:c()},[r,Object.keys(e).join(","),n==null?void 0:n.disabled,n==null?void 0:n.preventDefault,...t]),{ref:i,checkHotkeyState:o}},Ve=e=>{const t=a.useRef(e);return Se(()=>{t.current=e},[e]),t},gs=(e,t,n)=>{const{disabled:r}=n||{},o=Ve(t),s=a.useRef(!1);a.useEffect(()=>{const i=c=>{s.current=!1;const u=c.composedPath()[0];e.forEach(m=>{m.current&&(m.current===u||m.current.contains(u))&&(s.current=!0)})};return document.addEventListener("mousedown",i,{passive:!0}),document.addEventListener("touchstart",i,{passive:!0}),()=>{document.removeEventListener("mousedown",i),document.removeEventListener("touchstart",i)}},[...e]),a.useEffect(()=>{if(!o.current||r)return;const i=c=>{var u;c.button!==2&&(s.current||(u=o.current)==null||u.call(o,c))};return document.addEventListener("click",i,{passive:!0}),()=>document.removeEventListener("click",i)},[o,r,...e])},jr=a.createContext({rtl:[!1,()=>{}],defaultViewport:"s"}),Oa=e=>{const t=a.useState(e||!1),[n,r]=t;return Se(()=>{const o=new MutationObserver(s=>{s.forEach(i=>{if(i.attributeName!=="dir")return;const c=i.target.dir==="rtl";n!==c&&r(c)})});return o.observe(document.documentElement,{attributes:!0}),()=>o.disconnect()},[n]),Se(()=>{document.documentElement.setAttribute("dir",n?"rtl":"ltr")},[n]),t},xt=()=>a.useContext(jr).rtl,it=e=>{requestAnimationFrame(()=>{requestAnimationFrame(()=>e())})},kr="data-rs-no-transition",Ha=()=>{document.documentElement.setAttribute(kr,"true")},qa=()=>{document.documentElement.removeAttribute(kr)},Wa=()=>!document.documentElement.hasAttribute(kr),Ra=e=>e.includes("start")?e.replace("start","end"):e.includes("end")?e.replace("end","start"):e,ps=(e,t)=>Math.floor(e/2-t/2),zt=8,Ua=e=>{var te,J;const{triggerBounds:t,flyoutBounds:n,containerBounds:r,position:o,rtl:s,width:i,contentGap:c=0,contentShift:u=0,passedContainer:m,fallbackAdjustLayout:_,fallbackMinWidth:d,fallbackMinHeight:f}=e,h=i==="full"||i==="100%";let v=0,p=0,b=null,x=null,C,w,j=o;s&&(j=Ra(j)),(h||w==="trigger")&&(j=j.includes("top")?"top":"bottom");const z=!!j.match(/^(start|end)/),E=n.width+(z?c:0),k=n.height+(z?0:c),S=t.width,I=t.height,T=m==null?void 0:m.scrollLeft,$=m==null?void 0:m.scrollTop,P=T!=null?T:window.scrollX,D=$!=null?$:window.scrollY,B=(te=m==null?void 0:m.clientHeight)!=null?te:window.innerHeight,H=(J=m==null?void 0:m.clientWidth)!=null?J:window.innerWidth,L=m?r.bottom:window.innerHeight-D,V=t.left-r.left+(T||0),U=r.right-t.right-(T||0),q=t.top-r.top+($||0),ie=L-t.bottom-($||0);switch(j){case"start":case"start-top":case"start-bottom":v=V-E,x=U+S;break;case"end":case"end-top":case"end-bottom":v=V+S;break;case"bottom":case"top":v=V+ps(S,E)+u;break;case"top-start":case"bottom-start":v=V+u;break;case"top-end":case"bottom-end":v=V+S-E+u,x=U-u;break}switch(j){case"top":case"top-start":case"top-end":p=q-k,b=ie+I;break;case"bottom":case"bottom-start":case"bottom-end":p=q+I;break;case"start":case"end":p=q+ps(I,k)+u;break;case"start-top":case"end-top":p=q+u;break;case"start-bottom":case"end-bottom":p=q+I-k+u,b=ie-u;break}if(_){const ce=()=>({top:-p+D+zt,bottom:p+k+zt-D-B,left:-v+P+zt,right:v+E+zt-P-H}),X=ce();z?X.top>0?(p=zt+D,b!==null&&(b=b-X.top)):X.bottom>0&&(p=p-X.bottom):X.left>0?(v=zt+P,x!==null&&(x=x-X.left)):X.right>0&&(v=v-X.right);const ne=ce();ne.top>0?(C=Math.max(f?parseInt(f):0,k-ne.top),p=p+(k-C)):ne.bottom>0&&(C=Math.max(f?parseInt(f):0,k-ne.bottom),b!==null&&(b=b+(k-C))),ne.left>0?(w=Math.max(d?parseInt(d):0,E-ne.left),v=v+(E-w)):ne.right>0&&(w=Math.max(d?parseInt(d):0,E-ne.right),x!==null&&(x=x+(E-w)))}h?(v=zt,w=window.innerWidth-zt*2):i==="trigger"&&(w=t.width);const ee=x!==null?-x:v,K=b!==null?-b:p;return{position:j,styles:{left:x===null?0:void 0,right:x===null?void 0:0,top:b===null?0:void 0,bottom:b===null?void 0:0,transform:`translate(${ee}px, ${K}px)`,height:C,width:w!=null?w:i},boundaries:{left:v,top:p,height:C!=null?C:Math.ceil(k),width:w!=null?w:Math.ceil(E)}}},bs={top:["top-start","top-end","top"],bottom:["bottom-start","bottom-end","bottom"],start:["start-top","start-bottom","start"],end:["end-top","end-bottom","end"]},Ya={top:["bottom","start","end"],bottom:["top","end","start"],start:["end","top","bottom"],end:["start","bottom","top"]},Ga=(e,t)=>{const n=new Set([e]),r=e.split("-"),[o]=r,s=bs[o],i=s.indexOf(e),c=[i];return s.forEach((u,m)=>{m!==i&&c.push(m)}),[o,...Ya[o]].forEach(u=>{const m=bs[u];c.forEach(_=>{const d=m[_];(t==null?void 0:t.indexOf(d))!==-1&&n.add(d)})}),Array.from(n)},Ka=e=>{const{flyoutBounds:t,visualContainerBounds:n,renderContainerBounds:r}=e;return!(r.left+t.left<n.left||r.top+t.top<n.top||r.left+t.left+t.width>n.right||r.top+t.top+t.height>n.bottom)},Xa=800,vs=100,Ja=150,xs={left:0,top:0,width:"auto",height:"auto",zIndex:"var(--rs-z-index-absolute)"},Yn={left:0,top:0,position:"absolute",visibility:"hidden",animation:"none",transition:"none",zIndex:"var(--rs-z-index-absolute)"},Za=e=>{var L;const{triggerEl:t,flyoutEl:n,triggerBounds:r,contentShift:o=0,contentGap:s=0,position:i,fallbackPositions:c,fallbackAdjustLayout:u,fallbackMinWidth:m,fallbackMinHeight:_,width:d,container:f,lastUsedPosition:h,onPositionChoose:v,rtl:p}=e,b=n.cloneNode(!0),x=getComputedStyle(n).getPropertyValue("--rs-unit-x1"),C=x?parseInt(x):4,w=r||(t==null?void 0:t.getBoundingClientRect());if(!w)return;const j=Na(w);b.style.cssText="",Object.keys(Yn).forEach(V=>{const U=Yn[V];U&&(b.style[V]=U.toString())}),d==="trigger"?b.style.width=`${j.width}px`:d&&d!=="full"&&(b.style.width=d),(t&&Xt(t)||document.body).appendChild(b);const E=b.getBoundingClientRect(),k={width:E.width,height:E.height},S=!f&&t?xr({el:t}):void 0,T=(f||S||document.body).getBoundingClientRect(),$=(f||document.body).getBoundingClientRect(),P=V=>Ua({triggerBounds:j,flyoutBounds:k,containerBounds:T,position:V,contentGap:s*C,contentShift:o*C,rtl:p,width:d,passedContainer:f||(S!==document.body?S:void 0),fallbackAdjustLayout:u,fallbackMinWidth:m,fallbackMinHeight:_}),D=V=>Ka({flyoutBounds:V.boundaries,visualContainerBounds:$,renderContainerBounds:T});let B=null;return Ga(i,c).some(V=>{const U=P(V),q=D(U);return q&&(B=U),q}),B||(B=P(h)),v(B.position),(L=b.parentNode)==null||L.removeChild(b),B},Qa=(e,t)=>{switch(t.type){case"render":return e.status!=="idle"?e:N(g({},e),{status:"rendered",styles:g({pointerEvents:"none"},Yn)});case"position":return!t.payload.sync&&e.status!=="rendered"||t.payload.sync&&e.status!=="visible"?e:N(g({},e),{status:t.payload.sync?"visible":"positioned",position:t.payload.position,styles:g(g({},xs),t.payload.styles)});case"show":return e.status!=="positioned"?e:N(g({},e),{status:"visible"});case"hide":return e.status!=="visible"?e:N(g({},e),{status:"hidden"});case"remove":return e.status!=="hidden"&&e.status!=="visible"?e:N(g({},e),{status:"idle",styles:Yn});default:throw new Error("[Reshaped] Invalid flyout reducer type")}},ec=e=>{const I=e,{triggerElRef:t,flyoutElRef:n,triggerBounds:r,contentGap:o,contentShift:s}=I,i=Ee(I,["triggerElRef","flyoutElRef","triggerBounds","contentGap","contentShift"]),{position:c="bottom",fallbackPositions:u,fallbackAdjustLayout:m,fallbackMinWidth:_,fallbackMinHeight:d,width:f,container:h}=i,v=a.useRef(c),p=a.useMemo(()=>u,[u==null?void 0:u.join(" ")]),[b]=xt(),[x,C]=a.useReducer(Qa,{position:c,styles:xs,status:"idle"}),w=a.useCallback(()=>{C({type:"render"})},[]),j=a.useCallback(()=>{C({type:"show"})},[]),z=a.useCallback(()=>{C({type:"hide"})},[]),E=a.useCallback(()=>{C({type:"remove"})},[]),k=a.useCallback(T=>{v.current=T},[]),S=a.useCallback(T=>{if(!n.current)return;const $=(T==null?void 0:T.fallback)!==!1,P=Za({triggerEl:t.current,flyoutEl:n.current,triggerBounds:r,width:f,position:$?c:v.current,fallbackPositions:$?p:[],fallbackAdjustLayout:m,fallbackMinWidth:_,fallbackMinHeight:d,lastUsedPosition:v.current,onPositionChoose:k,rtl:b,container:h,contentGap:o,contentShift:s});P&&C({type:"position",payload:N(g({},P),{sync:T==null?void 0:T.sync})})},[h,c,p,m,b,n,t,r,f,o,s,k,_,d]);return a.useEffect(()=>{x.status==="rendered"&&S()},[x.status,S]),a.useMemo(()=>({position:x.position,styles:x.styles,status:x.status,updatePosition:S,render:w,hide:z,remove:E,show:j}),[w,S,z,E,j,x.position,x.styles,x.status])};class tc{constructor(){Me(this,"status","cold");Me(this,"timer");Me(this,"warm",()=>{if(clearTimeout(this.timer),this.status==="cooling"){this.status="warm";return}this.status="warming",this.timer=setTimeout(()=>{this.status="warm",this.timer=void 0},vs)});Me(this,"cool",()=>{if(clearTimeout(this.timer),this.status==="warming"){this.status="cold";return}this.status="cooling",this.timer=setTimeout(()=>{this.status="cold",this.timer=void 0},500)})}}const Ft=new tc,ys=a.createContext({}),ws=a.createContext(null),Cs=a.createContext(null),Zt=()=>a.useContext(ys),nc=()=>a.useContext(ws),rc=()=>a.useContext(Cs),oc=ys.Provider,sc=ws.Provider,ic=Cs.Provider,Nr=e=>{var un;const{triggerType:t="click",groupTimeouts:n,onOpen:r,onClose:o,children:s,disabled:i,forcePosition:c,fallbackAdjustLayout:u,fallbackMinWidth:m,fallbackMinHeight:_,trapFocusMode:d="dialog",width:f,disableHideAnimation:h,disableContentHover:v,disableCloseOnOutsideClick:p,autoFocus:b=!0,originCoordinates:x,contentGap:C=2,contentShift:w,contentClassName:j,contentAttributes:z,position:E,active:k,id:S,instanceRef:I,containerRef:T,initialFocusRef:$}=e,P=e.fallbackPositions===!1||c?[]:e.fallbackPositions,D=Ve(r),B=Ve(o),H=i===!0?!1:k,L=Zt(),{elRef:V}=nc()||{},{elRef:U}=rc()||{},q=L.trapFocusMode==="action-menu"||L.trapFocusMode==="content-menu",[ie]=xt(),ee=a.useRef(null),K=!!(V!=null&&V.current)&&((un=U==null?void 0:U.current)==null?void 0:un.contains(V.current)),J=(!U||K)&&V||ee,ce=a.useRef(null),X=a.useRef(null),ne=et(S),pe=a.useRef(null),O=a.useRef(null),R=a.useRef(!1),se=a.useRef(!1),fe=a.useRef(!1),$e=a.useRef(!0),De=a.useRef(!1),re=ec({triggerElRef:J,flyoutElRef:X,triggerBounds:x!=null?x:ce.current,width:f,position:E,defaultActive:H,container:T==null?void 0:T.current,fallbackPositions:P,fallbackAdjustLayout:u,fallbackMinWidth:m,fallbackMinHeight:_,contentGap:C,contentShift:w}),{status:Z,updatePosition:le,render:he,hide:be,remove:Le,show:Re}=re,je=Z!=="idle",ve=us({active:je&&t!=="hover",contentRef:X,triggerRef:J}),ye=a.useCallback(()=>{pe.current&&clearTimeout(pe.current)},[pe]),Pe=a.useCallback(()=>{var ge;R.current||je&&t!=="hover"||(ge=D.current)==null||ge.call(D)},[D,je,t]),ke=a.useCallback(ge=>{var mn,An;!(t==="click"&&!ve())&&(je||i)&&((mn=B.current)==null||mn.call(B,{reason:ge.reason}),ge!=null&&ge.closeParents&&((An=L==null?void 0:L.handleClose)==null||An.call(L,{})))},[je,ve,t,B,i,L]),Ue=a.useCallback(ge=>{var Yt;!Rn()||(Yt=X.current)!=null&&Yt.contains(ge.relatedTarget)||fe.current||ke({})},[ke]),ot=a.useCallback(()=>{t==="hover"&&!Rn()||Pe()},[Pe,t]),Ye=a.useCallback(()=>{t==="hover"&&(De.current=!0)},[t]),Nt=a.useCallback(()=>{ye(),De.current?(Pe(),De.current=!1):(n&&Ft.warm(),pe.current=setTimeout(()=>{Pe()},n&&Ft.status==="warming"?Xa:vs))},[ye,pe,Pe,n]),$t=a.useCallback(()=>{Ft.cool(),ye(),pe.current=setTimeout(()=>ke({}),Ja)},[ye,pe,ke]),cn=a.useCallback(()=>{je?ke({}):Pe()},[je,Pe,ke]),dn=a.useCallback(()=>{var Ze;const ge=(Ze=J.current)==null?void 0:Ze.getBoundingClientRect();ge&&(ce.current=ge)},[J]),So=()=>{fe.current=!0,De.current=!0},To=()=>{fe.current=!1},$o=a.useCallback(ge=>{H&&(X.current!==ge.currentTarget||ge.propertyName!=="transform"||(se.current=!0,ce.current=null))},[H]),Mo=a.useCallback(ge=>{X.current!==ge.currentTarget||ge.propertyName!=="transform"||Z==="hidden"&&(se.current=!1,Le())},[Le,Z]);return Se(()=>{if(H){he();return}i&&Ft.cool(),Wa()&&!h&&se.current&&(Ft.status==="cooling"||!n)?be():Le()},[H,he,be,Le,h,i,n]),a.useEffect(()=>{Z==="positioned"&&it(()=>Re())},[Z,Re]),Se(()=>{var Ze;if(Z!=="visible"||!X.current||(Ze=O.current)!=null&&Ze.trapped||d===!1)return;const ge=b?$==null?void 0:$.current:X.current.querySelector("[role][tabindex='-1']");O.current=new Jt,O.current.trap(X.current,{mode:d,initialFocusEl:ge,includeTrigger:t==="hover"&&d!=="dialog"&&!q,onRelease:()=>{ke({})}})},[Z,t,d,b]),a.useEffect(()=>{var ge;!h&&Z!=="hidden"||h&&je||(ge=O.current)!=null&&ge.trapped&&(t==="hover"&&(R.current=!0,setTimeout(()=>{R.current=!1},100)),O.current.release({withoutFocusReturn:!$e.current}),$e.current=!0)},[Z,je,t,h]),a.useEffect(()=>()=>{var ge;return(ge=O.current)==null?void 0:ge.release()},[]),a.useEffect(()=>{if(!je)return;const ge=new ResizeObserver(()=>le({sync:!0}));return ge.observe(document.body),J.current&&ge.observe(J.current),()=>ge.disconnect()},[le,J,je]),a.useEffect(()=>{le({sync:!0})},[ie,le]),a.useImperativeHandle(I,()=>({open:Pe,close:()=>ke({}),updatePosition:()=>le({sync:!0})}),[Pe,ke,le]),tt({Escape:()=>ke({reason:"escape-key"})},[ke]),gs([X,J],()=>{$e.current=!1,ke({reason:"outside-click"})},{disabled:!je||p}),l.jsx(oc,{value:{id:ne,flyout:re,width:f,triggerElRef:J,flyoutElRef:X,handleClose:ke,handleOpen:Pe,handleFocus:ot,handleBlur:Ue,handleMouseEnter:Nt,handleMouseLeave:$t,handleTouchStart:Ye,handleTransitionStart:$o,handleTransitionEnd:Mo,handleMouseDown:dn,handleClick:cn,handleContentMouseDown:So,handleContentMouseUp:To,triggerType:t,trapFocusMode:d,contentClassName:j,contentAttributes:z,contentGap:C,containerRef:T,disableContentHover:v,autoFocus:b,isSubmenu:q},children:s})};Nr.displayName="FlyoutControlled";const js=e=>{const{defaultActive:t,onClose:n,onOpen:r}=e,[o,s]=a.useState(t||!1),i=u=>{s(!1),n==null||n(u)},c=()=>{s(!0),r==null||r()};return l.jsx(Nr,N(g({},e),{defaultActive:void 0,active:o,onClose:i,onOpen:c}))};js.displayName="FlyoutUncontrolled";const ks=e=>{const{children:t}=e,{id:n,triggerElRef:r,triggerType:o,flyout:s,handleFocus:i,handleBlur:c,handleMouseEnter:u,handleMouseLeave:m,handleMouseDown:_,handleTouchStart:d,handleClick:f,trapFocusMode:h,isSubmenu:v}=Zt(),p=s.status!=="idle",b={ref:r};return(o==="click"||h==="action-menu")&&(b.onClick=f,b.onMouseDown=_),o==="hover"&&(b.onMouseEnter=u,b.onMouseLeave=m,b.onTouchStart=d),(o==="hover"&&!v||o==="focus")&&(b.onFocus=i,b.onBlur=c,b["aria-describedby"]=p?n:void 0),(o==="click"||o==="focus"||h==="action-menu")&&(h==="dialog"?b["aria-haspopup"]="dialog":h==="selection-menu"?(b["aria-haspopup"]="listbox",b["aria-autocomplete"]="list"):b["aria-haspopup"]="menu",b["aria-expanded"]=p,b["aria-controls"]=p?n:void 0),l.jsx(sc,{value:{elRef:r},children:t(b)})};ks.displayName="Flyout.Trigger";const zr=(e,t)=>e>t?[]:Array.from({length:t-e+1},(n,r)=>e+r),Er=e=>{let t=null,n=null;return function(...r){n=r,t===null&&(t=requestAnimationFrame(()=>{t=null,e(...n)}))}},Ns=a.createContext({}),Sr=a.createContext({}),Gn=e=>e?e.hasAttribute("data-rs-root")||e===document.documentElement||!e.parentElement?e:Gn(e.parentElement):document.documentElement,Tr=()=>a.useContext(Sr),zs=()=>{const{colorMode:e,theme:t,setTheme:n,rootTheme:r,setRootTheme:o}=a.useContext(Ns),{mode:s,setMode:i,invertMode:c}=a.useContext(Sr);return a.useMemo(()=>({theme:t,setTheme:n,rootTheme:r,setRootTheme:o,colorMode:e||s,setColorMode:i,invertColorMode:c}),[e,s,i,c,t,n,o,r])},lc={root:"_root_2nj23_1"},Es=e=>typeof e=="string"?e:` ${e.join(" ")} `,Qt=e=>l.jsx(Ss,g({},e)),Ss=e=>{const{name:t,defaultName:n,colorMode:r,scoped:o,scopeRef:s,children:i,className:c}=e,[u,m]=a.useState(!1),[_,d]=a.useState(n),f=Tr(),h=zs(),v=!h.theme,p=t||_||h.theme,b=v||o?p:h.rootTheme,x=v||o?f.mode:h.colorMode,w=r==="inverted"?x==="light"?"dark":"light":r||x,j=F(lc.root,c),z=a.useCallback(S=>{v?d(S):h.setRootTheme(S)},[v,h]),E=a.useCallback(S=>{d(S)},[]);Se(()=>{m(!0)},[]),Se(()=>{if(!document||!v)return;const S=Gn(s==null?void 0:s.current),I=S.getAttribute("data-rs-color-mode"),T=Es(p);return T&&S.setAttribute("data-rs-theme",T),I||S.setAttribute("data-rs-color-mode",w),()=>{S.removeAttribute("data-rs-theme"),I||S.removeAttribute("data-rs-color-mode")}},[p,w,v,s]);const k=a.useMemo(()=>({theme:p,rootTheme:b,colorMode:w,setTheme:E,setRootTheme:z}),[p,w,E,z,b]);return l.jsx(Ns.Provider,{value:k,children:l.jsx("div",{className:j,ref:s,"data-rs-root":o?!0:void 0,"data-rs-theme":v?void 0:Es(p),"data-rs-color-mode":v||!r&&!u?void 0:w,children:i})})};Qt.displayName="Theme";const Ts=e=>{const{defaultMode:t,mode:n,scopeRef:r,children:o}=e,[s,i]=a.useState(t),c=Tr(),u=a.useCallback(_=>{Gn(r==null?void 0:r.current).setAttribute("data-rs-color-mode",_),c.mode&&!r&&c.setMode(_),i(_)},[r,c]);Se(()=>{Ha(),it(()=>{qa()})},[s,n]),Se(()=>{const _=Gn(r==null?void 0:r.current).getAttribute("data-rs-color-mode");_&&u(_)},[u,r]);const m=a.useMemo(()=>({mode:n||s,setMode:u,invertMode:()=>{u(s==="light"?"dark":"light")}}),[s,n,u]);return l.jsx(Sr.Provider,{value:m,children:o})};Ts.displayName="GlobalColorMode";const ac={root:"_root_hqrz2_1"},Vt=e=>{const[t,n]=a.useState(e||!1),r=a.useCallback(()=>{n(!0)},[]),o=a.useCallback(()=>{n(!1)},[]),s=a.useCallback(i=>{n(typeof i=="boolean"?i:c=>!c)},[]);return a.useMemo(()=>({active:t,activate:r,deactivate:o,toggle:s}),[r,o,s,t])},$s=a.createContext({}),cc=()=>a.useContext($s),kn=e=>{var d;const{children:t,targetRef:n}=e,r=Vt(),o=a.useRef(null),s=(d=o.current)==null?void 0:d.getRootNode(),c=s instanceof ShadowRoot?s:document.body,u=cc(),m=n||u.scopeRef,_=(m==null?void 0:m.current)||c;return Se(()=>(r.activate(),()=>r.deactivate()),[]),[Ce.createPortal(l.jsx(Qt,{children:t}),_),!r.active&&l.jsx("div",{ref:o,className:ac.root},"root")]};function Ms(e){const{children:t}=e,n=a.useRef(null);return l.jsx($s.Provider,{value:{scopeRef:n},children:t(n)})}kn.Scope=Ms,kn.displayName="Portal",Ms.displayName="PortalScope";const Et={content:"_content_efj10_1","--hover":"_--hover_efj10_12","--hover-disabled":"_--hover-disabled_efj10_16",inner:"_inner_efj10_17","--width-trigger":"_--width-trigger_efj10_42","--position-top":"_--position-top_efj10_46","--position-top-end":"_--position-top-end_efj10_47","--position-top-start":"_--position-top-start_efj10_48","--position-bottom":"_--position-bottom_efj10_54","--position-bottom-end":"_--position-bottom-end_efj10_55","--position-bottom-start":"_--position-bottom-start_efj10_56","--position-start":"_--position-start_efj10_72","--position-start-top":"_--position-start-top_efj10_73","--position-start-bottom":"_--position-start-bottom_efj10_74","--position-end":"_--position-end_efj10_80","--position-end-top":"_--position-end-top_efj10_81","--position-end-bottom":"_--position-end-bottom_efj10_82","--visible":"_--visible_efj10_98","--animated":"_--animated_efj10_103"},Is=e=>{const{children:t,className:n,attributes:r}=e,{flyout:o,id:s,flyoutElRef:i,triggerElRef:c,handleClose:u,handleTransitionEnd:m,handleTransitionStart:_,triggerType:d,handleMouseEnter:f,handleMouseLeave:h,handleContentMouseDown:v,handleContentMouseUp:p,contentClassName:b,contentAttributes:x,contentGap:C,trapFocusMode:w,disableContentHover:j,autoFocus:z,width:E,containerRef:k,isSubmenu:S}=Zt(),{styles:I,status:T,position:$}=o,[P,D]=a.useState(!1),B=a.useMemo(()=>!P||!c?null:xr({el:c.current}),[P,c]),H=a.useMemo(()=>{if(P&&c!=null&&c.current)return yr({el:c.current})},[P,c]),L=k||{current:B};if(Se(()=>{D(!0)},[]),a.useEffect(()=>{const ee=i.current;if(ee)return ee.addEventListener("transitionstart",_),()=>ee.removeEventListener("transitionstart",_)},[_,i,T]),a.useEffect(()=>{if(T!=="visible"||!H)return;const ee=c==null?void 0:c.current,K=H,te=Er(()=>{const J=ee==null?void 0:ee.getBoundingClientRect(),ce=K.getBoundingClientRect();J&&(J.top<ce.top||J.left<ce.left||J.right>ce.right||J.bottom>ce.bottom)?u({}):o.updatePosition({sync:!0,fallback:!1})});return H.addEventListener("scroll",te,{passive:!0}),()=>H.removeEventListener("scroll",te)},[H,o,T,u,c]),T==="idle"||!P)return null;const V=F(Et.content,d==="hover"&&Et["--hover"],T==="visible"&&Et["--visible"],(Ft.status==="cooling"||!Ft.timer||S||d!=="hover")&&Et["--animated"],$&&Et[`--position-${$}`],E==="trigger"&&Et["--width-trigger"],d==="hover"&&j&&Et["--hover-disabled"]),U=F(Et.inner,n,b);let q=r==null?void 0:r.role;d==="hover"?q="tooltip":w==="dialog"?q="dialog":w==="selection-menu"?q="listbox":w==="action-menu"?q="menu":w==="action-bar"&&(q="menubar");const ie=l.jsx(ic,{value:{elRef:i},children:l.jsx("div",{className:V,style:N(g({},I),{"--rs-flyout-gap":C}),ref:i,onTransitionEnd:m,onMouseEnter:d==="hover"?f:void 0,onMouseLeave:d==="hover"?h:void 0,onMouseDown:v,onTouchStart:v,onMouseUp:p,onTouchEnd:p,children:l.jsx("div",N(g({role:q},r),{id:s,tabIndex:z?void 0:-1,"aria-modal":q==="dialog"?!0:void 0,style:g(g({},r==null?void 0:r.style),x==null?void 0:x.style),className:U,children:t}))})});return l.jsx(kn,{targetRef:L,children:ie})};Is.displayName="Flyout.Content";const _t=e=>{const{active:t}=e;return typeof t=="boolean"?l.jsx(Nr,g({},e)):l.jsx(js,g({},e))};_t.Trigger=ks,_t.Content=Is,_t.displayName="Flyout";const Kn={root:"_root_1f1sc_15","rs-reshaped-loader":"_rs-reshaped-loader_1f1sc_1",inner:"_inner_1f1sc_44","--color-inherit":"_--color-inherit_1f1sc_63","--color-primary":"_--color-primary_1f1sc_67","--color-positive":"_--color-positive_1f1sc_71","--color-critical":"_--color-critical_1f1sc_75","--size-small":"_--size-small_1f1sc_1","--size-medium":"_--size-medium_1f1sc_1","--size-large":"_--size-large_1f1sc_1","--size-small--m":"_--size-small--m_1f1sc_1","--size-medium--m":"_--size-medium--m_1f1sc_1","--size-large--m":"_--size-large--m_1f1sc_1","--size-small--l":"_--size-small--l_1f1sc_1","--size-medium--l":"_--size-medium--l_1f1sc_1","--size-large--l":"_--size-large--l_1f1sc_1","--size-small--xl":"_--size-small--xl_1f1sc_1","--size-medium--xl":"_--size-medium--xl_1f1sc_1","--size-large--xl":"_--size-large--xl_1f1sc_1"},$r=e=>{const{size:t="small",color:n="primary",className:r,attributes:o}=e,s=e.ariaLabel||(o==null?void 0:o["aria-label"]),i=F(Kn.root,r,_e(Kn,"--size",t),n&&Kn[`--color-${n}`]);return l.jsx("span",N(g({},o),{role:"progressbar","aria-live":s?"assertive":void 0,"aria-label":s,className:i,children:l.jsx("span",{className:Kn.inner})}))};$r.displayName="Loader";const Bt={root:"_root_5umpz_2",touch:"_touch_5umpz_21","--inset":"_--inset_5umpz_44","--disabled-focus-ring":"_--disabled-focus-ring_5umpz_48","--radius-inherit":"_--radius-inherit_5umpz_52","--disabled":"_--disabled_5umpz_48","--full-width":"_--full-width_5umpz_82"},qe=a.forwardRef((e,t)=>{const{children:n,render:r,href:o,onClick:s,type:i,disabled:c,insetFocus:u,disableFocusRing:m,borderRadius:_,as:d,stopPropagation:f,fullWidth:h,touchHitbox:v,className:p,attributes:b}=e,x=F(Bt.root,p,c&&Bt["--disabled"],_&&Bt[`--radius-${_}`],u&&Bt["--inset"],m&&Bt["--disabled-focus-ring"],h&&Bt["--full-width"]),C=g({},b),w=s||(b==null?void 0:b.onClick),j=(b==null?void 0:b.onFocus)||(b==null?void 0:b.onBlur),z=!!(o||b!=null&&b.href),E=!!(w||j||i||b!=null&&b.ref),k=!z&&E&&(!d||d==="button");let S;if(z)S="a",C.href=c?void 0:o||(b==null?void 0:b.href);else if(k)S="button",C.type=i||(b==null?void 0:b.type)||"button",C.disabled=c||(b==null?void 0:b.disabled);else if(E){const B=!(d==="label")||w||j;S=d||"span",C.role=B?"button":void 0,C.tabIndex=B?0:void 0}else S=d||"span";const I=D=>{var B;c||(f&&D.stopPropagation(),s==null||s(D),(B=b==null?void 0:b.onClick)==null||B.call(b,D))},T=D=>{const B=D.key===Ma,H=D.key===ds;!B&&!H||C.role==="button"&&(f&&D.stopPropagation(),D.preventDefault(),I(D))},$=l.jsxs(l.Fragment,{children:[v&&(z||E)&&!c&&l.jsx("span",{className:Bt.touch}),n]}),P=N(g({ref:t},C),{className:x,onClick:I,onKeyDown:T,"aria-disabled":c?!0:void 0,children:$});return r?r(P):l.jsx(S,g({},P))});qe.displayName="Actionable";const We={root:"_root_13916_1","--loading":"_--loading_13916_55","--highlighted":"_--highlighted_13916_55","--disabled":"_--disabled_13916_55",text:"_text_13916_68",icon:"_icon_13916_74","--icon-position-end":"_--icon-position-end_13916_83",loader:"_loader_13916_95","--icon-only":"_--icon-only_13916_103","--rounded":"_--rounded_13916_122","--size-small":"_--size-small_13916_1","--size-medium":"_--size-medium_13916_1","--size-large":"_--size-large_13916_1","--size-xlarge":"_--size-xlarge_13916_1","--full-width":"_--full-width_13916_168","--variant-solid":"_--variant-solid_13916_180","--color-neutral":"_--color-neutral_13916_181","--color-primary":"_--color-primary_13916_290","--color-critical":"_--color-critical_13916_291","--color-positive":"_--color-positive_13916_292","--color-media":"_--color-media_13916_195","--variant-faded":"_--variant-faded_13916_202","--color-inherit":"_--color-inherit_13916_218","--variant-outline":"_--variant-outline_13916_226","--variant-ghost":"_--variant-ghost_13916_262","--elevated":"_--elevated_13916_282",group:"_group_13916_343","--color-black":"_--color-black_13916_376","--color-white":"_--color-white_13916_388",aligner:"_aligner_13916_404","--size-small--m":"_--size-small--m_13916_1","--size-medium--m":"_--size-medium--m_13916_1","--size-large--m":"_--size-large--m_13916_1","--size-xlarge--m":"_--size-xlarge--m_13916_1","--full-width-true--m":"_--full-width-true--m_13916_1","--full-width-false--m":"_--full-width-false--m_13916_1","--size-small--l":"_--size-small--l_13916_1","--size-medium--l":"_--size-medium--l_13916_1","--size-large--l":"_--size-large--l_13916_1","--size-xlarge--l":"_--size-xlarge--l_13916_1","--full-width-true--l":"_--full-width-true--l_13916_1","--full-width-false--l":"_--full-width-false--l_13916_1","--size-small--xl":"_--size-small--xl_13916_1","--size-medium--xl":"_--size-medium--xl_13916_1","--size-large--xl":"_--size-large--xl_13916_1","--size-xlarge--xl":"_--size-xlarge--xl_13916_1","--full-width-true--xl":"_--full-width-true--xl_13916_1","--full-width-false--xl":"_--full-width-false--xl_13916_1"},Ds=e=>{const{children:t,className:n,attributes:r}=e,o=F(We.group,n);return l.jsx("div",N(g({},r),{className:o,role:"group",children:t}))};Ds.displayName="Button.Group";const Ps=e=>l.jsx(xn,N(g({},e),{side:e.side||e.position,className:[We.aligner,e.className]}));Ps.displayName="Button.Aligner";const Oe=a.forwardRef((e,t)=>{const{variant:n="solid",color:r="neutral",elevated:o,highlighted:s,fullWidth:i,loading:c,loadingAriaLabel:u,disabled:m,type:_,href:d,size:f="medium",children:h,rounded:v,onClick:p,icon:b,endIcon:x,stopPropagation:C,as:w,render:j,className:z,attributes:E}=e,k=(b||x)&&!h,S=F(We.root,z,r&&We[`--color-${r}`],n&&We[`--variant-${n}`],_e(We,"--size",f),_e(We,"--full-width",i),o&&n!=="ghost"&&We["--elevated"],v&&We["--rounded"],m&&We["--disabled"],c&&We["--loading"],s&&We["--highlighted"],k&&We["--icon-only"]),I=T=>{if(!(T==="start"&&b||T==="end"&&x))return null;const B=F(We.icon,T==="end"&&We["--icon-position-end"]),H=de(f,L=>L==="large"?5:L==="xlarge"?6:4);return l.jsx(Ne,{className:B,svg:T==="start"?b:x,size:H,autoWidth:!0})};return l.jsxs(qe,{disabled:m||c,className:S,attributes:N(g({},E),{"data-rs-aligner-target":!0}),type:_,onClick:p,href:d,ref:t,as:w,stopPropagation:C,render:j,children:[c&&l.jsx("div",{className:We.loader,children:l.jsx($r,{color:"inherit",attributes:{"aria-label":u}})}),I("start"),h&&l.jsx("span",{className:We.text,children:h}),I("end")]})});Oe.Group=Ds,Oe.Aligner=Ps,Oe.displayName="Button";const Ls=()=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",strokeWidth:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",children:[l.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),l.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]}),Nn={root:"_root_1q0pg_1",close:"_close_1q0pg_9","--variant-media":"_--variant-media_1q0pg_16","--hide-close":"_--hide-close_1q0pg_17","--align-center":"_--align-center_1q0pg_26"},Mr=e=>{const{children:t,align:n,onClose:r,hideCloseButton:o,variant:s,closeAriaLabel:i,className:c,attributes:u}=e,m=F(Nn.root,c,s&&Nn[`--variant-${s}`],n&&Nn[`--align-${n}`],o&&Nn["--hide-close"]),_=s==="media"?"div":Oe.Aligner;return l.jsxs("div",N(g({},u),{className:m,children:[t,!o&&l.jsx(_,{className:Nn.close,children:l.jsx(Oe,N(g({size:"small"},s==="media"?{color:"media",variant:"faded"}:{variant:"ghost"}),{onClick:()=>r==null?void 0:r(),attributes:{"aria-label":r?i:void 0},icon:Ls}))})]}))};Mr.displayName="Dismissible";const zn={content:"_content_1nskf_1","content--variant-elevated":"_content--variant-elevated_1nskf_5","content--elevation-raised":"_content--elevation-raised_1nskf_15","content--radius-small":"_content--radius-small_1nskf_21","content--has-width":"_content--has-width_1nskf_25"},yt=e=>{var h,v;const f=e,{width:t,variant:n="elevated",triggerType:r="click",position:o="bottom",elevation:s,borderRadius:i}=f,c=Ee(f,["width","variant","triggerType","position","elevation","borderRadius"]),u=(h=e.padding)!=null?h:n==="headless"?0:4,m=(v=e.trapFocusMode)!=null?v:r==="hover"?"content-menu":void 0,_=ct({padding:u}),d=F(zn.content,!!t&&zn["content--has-width"],n&&zn[`content--variant-${n}`],s&&zn[`content--elevation-${s}`],i&&zn[`content--radius-${i}`],_.classNames);return l.jsx(_t,N(g({},c),{position:o,trapFocusMode:m,triggerType:r,width:t,contentClassName:d,contentAttributes:{style:g({},_.variables)}}))},As=e=>{const{handleClose:t}=Zt();return l.jsx(Mr,N(g({},e),{onClose:()=>t({})}))};yt.Dismissible=As,yt.Trigger=_t.Trigger,yt.Content=_t.Content,yt.displayName="Popover",As.displayName="Popover.Dismissible";const ft={root:"_root_44o4b_1",icon:"_icon_44o4b_22",content:"_content_44o4b_27","--rounded-corners":"_--rounded-corners_44o4b_32","--size-small":"_--size-small_44o4b_1","--size-medium":"_--size-medium_44o4b_1","--size-large":"_--size-large_44o4b_1","--color-neutral":"_--color-neutral_44o4b_74","--selected":"_--selected_44o4b_77","--highlighted":"_--highlighted_44o4b_79","--color-critical":"_--color-critical_44o4b_90","--color-primary":"_--color-primary_44o4b_106","--disabled":"_--disabled_44o4b_133",aligner:"_aligner_44o4b_154","--rounded-corners-true--m":"_--rounded-corners-true--m_44o4b_1","--rounded-corners-false--m":"_--rounded-corners-false--m_44o4b_1","--size-small--m":"_--size-small--m_44o4b_1","--size-medium--m":"_--size-medium--m_44o4b_1","--size-large--m":"_--size-large--m_44o4b_1","--rounded-corners-true--l":"_--rounded-corners-true--l_44o4b_1","--rounded-corners-false--l":"_--rounded-corners-false--l_44o4b_1","--size-small--l":"_--size-small--l_44o4b_1","--size-medium--l":"_--size-medium--l_44o4b_1","--size-large--l":"_--size-large--l_44o4b_1","--rounded-corners-true--xl":"_--rounded-corners-true--xl_44o4b_1","--rounded-corners-false--xl":"_--rounded-corners-false--xl_44o4b_1","--size-small--xl":"_--size-small--xl_44o4b_1","--size-medium--xl":"_--size-medium--xl_44o4b_1","--size-large--xl":"_--size-large--xl_44o4b_1"},Fs=e=>l.jsx(xn,N(g({},e),{side:e.side||"inline",className:[ft.aligner,e.className]}));Fs.displayName="MenuItem.Aligner";const Xn=a.forwardRef((e,t)=>{const{icon:n,startSlot:r,endSlot:o,children:s,color:i="primary",selected:c,highlighted:u,disabled:m,onClick:_,href:d,size:f="medium",roundedCorners:h,stopPropagation:v,as:p,render:b,className:x,attributes:C}=e,w=F(ft.root,x,_e(ft,"--size",f),_e(ft,"--rounded-corners",h),i&&ft[`--color-${i}`],c&&ft["--selected"],m&&ft["--disabled"],u&&ft["--highlighted"]),j=de(f,E=>E==="large"?3:2),z=de(f,E=>E==="large"?5:4);return l.jsx(qe,{disabled:m,className:w,attributes:N(g({},C),{"data-rs-aligner-target":!0}),onClick:_,href:d,ref:t,as:p,stopPropagation:v,render:b,children:l.jsxs(Y,{direction:"row",gap:j,align:"center",children:[n&&l.jsx(Ne,{svg:n,className:ft.icon,size:z}),!n&&r,s&&l.jsx(Y.Item,{grow:!0,className:ft.content,children:s}),o]})})});Xn.Aligner=Fs,Xn.displayName="MenuItem";const en=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"9 18 15 12 9 6"})}),Jn={menu:"_menu_f04ws_1",section:"_section_f04ws_5",item:"_item_f04ws_11",arrow:"_arrow_f04ws_19"},Ir=a.createContext(null),Vs=a.createContext(!1),Te=e=>{const c=e,{children:t,position:n="bottom-start",triggerType:r="click",trapFocusMode:o="action-menu",borderRadius:s="small"}=c,i=Ee(c,["children","position","triggerType","trapFocusMode","borderRadius"]);return l.jsx(yt,N(g({},i),{position:n,padding:0,trapFocusMode:o,triggerType:r,borderRadius:s,disableHideAnimation:!0,children:t}))},Bs=e=>{const{children:t,attributes:n,className:r}=e,{flyout:o}=Zt(),s=a.useContext(Ir),[i]=xt(),{ref:c}=tt({[i?Pt:Lt]:()=>{var _;(_=s==null?void 0:s.current)==null||_.close()}},[s==null?void 0:s.current],{disabled:o.status==="idle",ref:n==null?void 0:n.ref}),u=F(Jn.menu,r),m=_=>{var d;_.stopPropagation(),(d=n==null?void 0:n.onClick)==null||d.call(n,_)};return l.jsx(yt.Content,{className:u,attributes:N(g({},n),{ref:c,onClick:m}),children:t})},Os=e=>{const{children:t}=e;return l.jsx("div",{className:Jn.section,role:"group",children:t})},Dr=e=>{const{onClick:t}=e,{handleClose:n}=Zt(),r=a.useContext(Vs),o=s=>{n&&!r&&n({closeParents:!0,reason:"item-selection"}),t&&t(s)};return l.jsx(Xn,N(g({},e),{roundedCorners:!0,className:[Jn.item,e.className],attributes:g({role:"menuitem"},e.attributes),onClick:o}))},Hs=e=>{const i=e,{children:t,position:n="end-top",contentGap:r=.5}=i,o=Ee(i,["children","position","contentGap"]),s=a.useRef(null);return l.jsx(Ir.Provider,{value:s,children:l.jsx(Te,N(g({},o),{triggerType:"hover",position:n,contentGap:r,instanceRef:s,children:t}))})},dc=e=>{const c=e,{children:t,attributes:n}=c,r=Ee(c,["children","attributes"]),o=a.useContext(Ir),[s]=xt(),{ref:i}=tt({[s?Lt:Pt]:()=>{var u;(u=o==null?void 0:o.current)==null||u.open()}},[],{ref:n==null?void 0:n.ref,preventDefault:!0});return l.jsx(Dr,N(g({},r),{attributes:N(g({},n),{ref:i}),endSlot:l.jsx(Ne,{autoWidth:!0,svg:en,className:Jn.arrow}),children:t}))},qs=e=>{const r=e,{attributes:t}=r,n=Ee(r,["attributes"]);return l.jsx(Vs.Provider,{value:!0,children:l.jsx(Te.Trigger,{children:o=>l.jsx(dc,N(g({},n),{attributes:g(g({},t),o)}))})})};Te.Dismissible=yt.Dismissible,Te.Trigger=yt.Trigger,Te.Content=Bs,Te.Section=Os,Te.Item=Dr,Te.SubMenu=Hs,Te.SubTrigger=qs,Te.displayName="DropdownMenu",Bs.displayName="DropdownMenu.Content",Os.displayName="DropdownMenu.Section",Dr.displayName="DropdownMenu.Item",Hs.displayName="DropdownMenu.SubMenu",qs.displayName="DropdownMenu.SubTrigger";const uc={"item--disabled":"_item--disabled_1vi4i_1"},Ws=a.createContext({}),Pr=e=>{var pe;const ne=e,{children:t,onChange:n,onInput:r,onItemSelect:o,name:s,containerRef:i,instanceRef:c,onBackspace:u,onEnter:m,active:_,onOpen:d,onClose:f,fallbackAdjustLayout:h,fallbackMinWidth:v,fallbackMinHeight:p}=ne,b=Ee(ne,["children","onChange","onInput","onItemSelect","name","containerRef","instanceRef","onBackspace","onEnter","active","onOpen","onClose","fallbackAdjustLayout","fallbackMinWidth","fallbackMinHeight"]),[x,C]=a.useState(),w=Ve(u),j=a.useRef(null),z=a.useRef(null),E=(pe=b.inputAttributes)==null?void 0:pe.ref,k=E&&typeof E!="string"&&"current"in E?E:z,[S,I]=a.useState(!1),T=!!a.Children.toArray(t).filter(Boolean).length,$=a.useRef(!1),P=Ve(d),D=Ve(f),B=Ve(n),H=Ve(o),L=Ve(m),V=T&&(_!=null?_:S),U=a.useCallback(()=>{$.current=!0,setTimeout(()=>{$.current=!1},100)},[]),q=a.useCallback(()=>{var O;$.current||(I(!0),(O=P.current)==null||O.call(P))},[P]),ie=O=>{var R;I(!1),(R=D.current)==null||R.call(D,O)},ee=a.useCallback(O=>{var R,se;(R=B.current)==null||R.call(B,{value:O.value,name:s}),(se=H.current)==null||se.call(H,O),U()},[U,B,H,s]),K=O=>{n==null||n(O),q()},te=O=>{var R,se;r==null||r({value:O.currentTarget.value,name:s,event:O}),(se=(R=b.inputAttributes)==null?void 0:R.onInput)==null||se.call(R,O)},J=()=>{var O;U(),(O=k.current)==null||O.focus()},ce=a.useCallback(()=>{const O=j.current;return O?Array.from(O.querySelectorAll("[role=option]:not([disabled])")):[]},[]);tt({[ds]:()=>{var se;const R=ce().find(fe=>fe.id===x);R==null||R.click(),(se=L.current)==null||se.call(L)},[Da]:()=>{var O;(O=w.current)==null||O.call(w)}},[ce,L,w,x],{ref:k}),tt({[It]:()=>{const O=ce();if(O.length){const R=O.findIndex(fe=>fe.id===x),se=O.at(R-1)||O.at(-1);C(se.id)}},[Dt]:()=>{q();const O=ce();if(O.length){const R=O.findIndex(fe=>fe.id===x),se=O.at(R+1)||O.at(0);C(se.id)}}},[q,ce,x],{ref:k,preventDefault:!0}),Se(()=>{V&&requestAnimationFrame(()=>{var se;const R=(se=ce()[0])==null?void 0:se.id;R&&C(R)})},[V]);const X=a.useMemo(()=>({onItemClick:ee,highlightedId:x,setHighlightedId:C}),[x,ee]);return l.jsx(Ws.Provider,{value:X,children:l.jsxs(Te,{position:"bottom",width:"trigger",triggerType:"focus",trapFocusMode:!1,active:V,onClose:ie,onOpen:q,containerRef:i,fallbackAdjustLayout:h,fallbackMinWidth:v,fallbackMinHeight:p,disableHideAnimation:!0,instanceRef:c,children:[l.jsx(Te.Trigger,{children:se=>{var fe=se,{ref:O}=fe,R=Ee(fe,["ref"]);return l.jsx(yn,N(g({},b),{name:s,onChange:K,focused:V,attributes:N(g({},b.attributes),{ref:O,onClick:R.onFocus}),inputAttributes:N(g(g({},b.inputAttributes),R),{onFocus:$e=>{var De,re,Z;(De=R.onFocus)==null||De.call(R),(re=b.onFocus)==null||re.call(b,$e),$.current||(Z=k.current)==null||Z.select()},onInput:te,onClick:R.onFocus,ref:k,role:"combobox","aria-activedescendant":x,"aria-haspopup":"listbox","aria-autocomplete":"list"})}))}}),l.jsx(Te.Content,{attributes:{onClick:J,role:"listbox",ref:j},children:t})]})})},Rs=e=>{const d=e,{value:t,data:n,onClick:r,disabled:o}=d,s=Ee(d,["value","data","onClick","disabled"]),{onItemClick:i,highlightedId:c}=a.useContext(Ws),u=et(),m=c===u,_=f=>{r==null||r(f),i({value:t,data:n})};return l.jsx(Te.Item,N(g({},s),{className:[o&&uc["item--disabled"],s.className],highlighted:m,disabled:o,attributes:N(g({},s.attributes),{role:"option",id:u,tabIndex:m?0:-1}),onClick:_}))};Pr.Item=Rs,Pr.displayName="Autocomplete",Rs.displayName="Autocomplete.Item";const Zn={root:"_root_1trva_1",img:"_img_1trva_13","--variant-faded":"_--variant-faded_1trva_20","--color-neutral":"_--color-neutral_1trva_21","--color-critical":"_--color-critical_1trva_25","--color-positive":"_--color-positive_1trva_29","--color-warning":"_--color-warning_1trva_33","--color-primary":"_--color-primary_1trva_37"},Us=e=>{const{color:t="neutral",variant:n,src:r,size:o=12,squared:s,initials:i,icon:c,className:u,renderImage:m,imageAttributes:_,attributes:d}=e,f=e.alt||(_==null?void 0:_.alt),h=s?de(o,x=>x>=24?"large":x>=12?"medium":"small"):"circular",v=ct({height:o}),p=F(Zn.root,u,v==null?void 0:v.classNames,t&&Zn[`--color-${t}`],n&&Zn[`--variant-${n}`]),b=()=>{if(r){const x=N(g({},_),{role:f?void 0:"presentation",src:r!=null?r:"",alt:f!=null?f:"",className:Zn.img});return m?m(x):l.jsx("img",g({},x))}return c?l.jsx(Ne,{svg:c,size:de(o,x=>Math.ceil(x*.4))}):i};return l.jsx(Y,{borderRadius:h,attributes:N(g({},d),{style:g({},v==null?void 0:v.variables)}),backgroundColor:n==="faded"?`${t}-${n}`:t,className:p,children:b()})};Us.displayName="Avatar";const nt={root:"_root_y62xy_1",icon:"_icon_y62xy_32",dismiss:"_dismiss_y62xy_38","--actionable":"_--actionable_y62xy_45","--variant-faded":"_--variant-faded_y62xy_1","--variant-outline":"_--variant-outline_y62xy_1","--color-positive":"_--color-positive_y62xy_64","--color-critical":"_--color-critical_y62xy_83","--color-warning":"_--color-warning_y62xy_102","--color-primary":"_--color-primary_y62xy_121","--size-small":"_--size-small_y62xy_1","--size-medium":"_--size-medium_y62xy_1","--size-large":"_--size-large_y62xy_1","--rounded":"_--rounded_y62xy_166","--hidden":"_--hidden_y62xy_170",container:"_container_y62xy_177","--container-overlap":"_--container-overlap_y62xy_203","--container-position-top-end":"_--container-position-top-end_y62xy_207","--container-position-bottom-end":"_--container-position-bottom-end_y62xy_219"},Ys=e=>{const{children:t,position:n="top-end",overlap:r,className:o,attributes:s}=e,i=F(nt.container,o,r&&nt["--container-overlap"],n&&nt[`--container-position-${n}`]);return l.jsx("div",N(g({},s),{className:i,children:t}))};Ys.displayName="Badge.Container";const Lr=a.forwardRef((e,t)=>{const{children:n,color:r,rounded:o,size:s="medium",icon:i,endIcon:c,variant:u,hidden:m,href:_,onClick:d,onDismiss:f,dismissAriaLabel:h,className:v,attributes:p}=e,b=!!(d||_),x=s==="small"?3:4,C=F(nt.root,v,o&&nt["--rounded"],m&&nt["--hidden"],s&&nt[`--size-${s}`],r&&nt[`--color-${r}`],u&&nt[`--variant-${u}`],b&&nt["--actionable"]),w=j=>{j.stopPropagation(),f==null||f()};return l.jsxs(qe,{onClick:d,href:_,className:C,attributes:p,ref:t,touchHitbox:!0,children:[i&&l.jsx(Ne,{svg:i,autoWidth:!0,size:x,className:nt.icon}),n&&l.jsx(ue,{variant:s==="large"?"body-3":"caption-1",weight:"medium",attributes:{"aria-hidden":m?"true":void 0},children:n}),c&&l.jsx(Ne,{svg:c,autoWidth:!0,size:x,className:nt.icon}),f&&l.jsx(qe,{onClick:w,className:nt.dismiss,as:"span",attributes:{"aria-label":h},touchHitbox:!0,children:l.jsx(Ne,{svg:Ls,size:x})})]})});Lr.Container=Ys,Lr.displayName="Badge";const Gs=()=>l.jsxs("svg",{viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[l.jsx("path",{d:"M8 9C8.55228 9 9 8.55228 9 8C9 7.44772 8.55228 7 8 7C7.44772 7 7 7.44772 7 8C7 8.55228 7.44772 9 8 9Z",fill:"currentColor"}),l.jsx("path",{d:"M12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8C11 8.55228 11.4477 9 12 9Z",fill:"currentColor"}),l.jsx("path",{d:"M4 9C4.55228 9 5 8.55228 5 8C5 7.44772 4.55228 7 4 7C3.44772 7 3 7.44772 3 8C3 8.55228 3.44772 9 4 9Z",fill:"currentColor"})]}),En={root:"_root_x1qvh_1","--color-primary":"_--color-primary_x1qvh_6","--color-critical":"_--color-critical_x1qvh_10","--color-positive":"_--color-positive_x1qvh_14","--color-warning":"_--color-warning_x1qvh_18","--color-inherit":"_--color-inherit_x1qvh_22","--variant-plain":"_--variant-plain_x1qvh_27","--disabled":"_--disabled_x1qvh_32","--variant-underline":"_--variant-underline_x1qvh_39","--with-icon":"_--with-icon_x1qvh_57"},Ar=a.forwardRef((e,t)=>{const{icon:n,disabled:r,href:o,color:s="primary",variant:i="underline",className:c,children:u,attributes:m,type:_,onClick:d,stopPropagation:f,render:h}=e,v=F(En.root,c,r&&En["--disabled"],i&&En[`--variant-${i}`],s&&En[`--color-${s}`],n&&En["--with-icon"]);return l.jsxs(qe,{href:o,disabled:r,className:v,attributes:m,type:_,onClick:d,ref:t,stopPropagation:f,render:h,children:[n&&l.jsx(Ne,{svg:n}),u]})});Ar.displayName="Link";const Ks=e=>{const{children:t,onClick:n,href:r,icon:o,disabled:s}=e;return!r&&!n&&!s?l.jsx(ue,{variant:"body-3",weight:"medium",color:"neutral",children:t}):l.jsx(Ar,{onClick:n,href:r,icon:o,disabled:s,variant:"plain",color:"inherit",children:t})};Ks.displayName="Breadcrumbs.Item";const Fr=e=>{const{children:t,separator:n,color:r,defaultVisibleItems:o,expandAriaLabel:s,disableExpand:i,ariaLabel:c,className:u,attributes:m}=e,_=o&&o>=2?o:null,[d,f]=a.useState(!1),h=F(u),v=a.Children.count(t);let p=0;const b=()=>{f(!0)};return l.jsx("nav",N(g({},m),{"aria-label":c||(m==null?void 0:m["aria-label"]),className:h,children:l.jsx(Y,{as:"ol",direction:"row",gap:2,align:"center",children:a.Children.map(t,(x,C)=>{if(!x)return null;const w=v-(_||0),j=p===0,z=p>w,E=!_||j||z||d,k=p===w;p+=1;let S=null;return E?S=x:k&&(S=i?l.jsx(Ne,{svg:Gs,size:4}):l.jsx(Oe.Aligner,{children:l.jsx(Oe,{variant:"ghost",size:"small",icon:Gs,onClick:b,attributes:{"aria-label":s}})})),S===null?null:l.jsxs(Y,{as:"li",gap:2,direction:"row",align:"center",children:[C>0&&(E||k)&&l.jsx(ue,{color:"neutral-faded",children:n||l.jsx(Ne,{svg:en,size:3})}),l.jsx(ue,{variant:"body-3",color:r==="primary"?"primary":"neutral-faded",children:S})]},C)})})}))};Fr.Item=Ks,Fr.displayName="Breadcrumbs";const Xs=7,Js=1,wt=e=>{const{date:t}=e;return[t.getFullYear(),(t.getMonth()+1).toString().padStart(2,"0"),t.getDate().toString().padStart(2,"0")].join("-")},Vr=e=>{const{date:t,firstWeekDay:n=Js}=e,r=t.getDay();return r<n?Xs-r-n:r-n},mc=e=>{const{firstWeekDay:t=Js,renderWeekDay:n}=e,r=new Date(2021,1,t),o=[];for(let s=t;s<t+Xs;s++){const i=n?n({weekDay:s,date:r}):r.toLocaleDateString("en-US",{weekday:"short"});o.push(i.slice(0,2)),r.setDate(r.getDate()+1)}return o},_c=e=>{const{renderMonthLabel:t}=e;return new Array(12).fill(null).map((n,r)=>{const o=new Date(0,r);return t?t({month:r,date:o}):o.toLocaleString("default",{month:"short"})})},fc=e=>{const{date:t,firstWeekDay:n}=e,r=t.getMonth(),o=t.getFullYear(),s=[],i=new Date(o,r,1),c=Vr({date:i,firstWeekDay:n});for(c!==0&&s.push(new Array(c).fill(null));r===i.getMonth();)(Vr({date:i,firstWeekDay:n})===0||!s.length)&&s.push([]),s[s.length-1].push(new Date(i)),i.setDate(i.getDate()+1);const u=Vr({date:i,firstWeekDay:n});return u!==0&&s[s.length-1].push(...new Array(7-u).fill(null)),s},Zs=e=>(e==null?void 0:e.querySelectorAll("[data-rs-date]"))||[],Br=(e,t)=>{const n=new Date(e);return n.setMonth(t),n},hc=e=>Br(e,e.getMonth()-1),Qs=e=>Br(e,e.getMonth()+1),ei=(e,t)=>{const n=new Date(e);return n.setFullYear(t),n},gc=e=>ei(e,e.getFullYear()-1),pc=e=>ei(e,e.getFullYear()+1),bc=e=>{const{date:t,min:n,max:r}=e,o=t.getMonth(),s=t.getFullYear(),i=new Date(s,o,0),c=Qs(t);return c.setDate(0),{isFirstMonth:n&&n>i,isLastMonth:r&&r<c}},vc=e=>{const{date:t,startValue:n,lastFocusedDate:r}=e,o=new Date,s=t.getMonth(),i=n==null?void 0:n.getMonth(),c=o.getMonth(),u=r==null?void 0:r.getMonth(),m=wt({date:t}),_=wt({date:o}),d=n&&wt({date:n}),f=r&&wt({date:r});return r&&s===u?m===f:n&&s===i?m===d:s===c?m===_:!0},xc=e=>{const{rootRef:t,changeToNextMonth:n,changeToPreviousMonth:r,monthDate:o,verticalDelta:s,min:i,max:c}=e,u=a.useRef(0),m=a.useCallback(_=>{const{delta:d,onMonthChange:f}=_,h=document.activeElement;if(!h)return;const v=Zs(t.current),p=Array.from(v),x=p.findIndex(I=>I===h)+d,C=p[x],w=h.getAttribute("data-rs-date");if(!w)return;const[j,z,E]=w==null?void 0:w.split("-").map(Number);let k;if(E?k=new Date(j,z-1,E+d):d>0?k=new Date(j,z-1+d,1):k=new Date(j,z-1+d+1,0),!(i&&k<i||c&&k>c)){if(C){C.focus();return}u.current=x<0?x:x-(p.length-1),f()}},[t,i,c]);a.useEffect(()=>{const _=u.current;if(_===0)return;const d=Zs(t.current),f=_<0?d.length+_:_-1,h=d[f];h&&h.focus(),u.current=0},[o,t]),tt({[Lt]:()=>m({delta:-1,onMonthChange:r}),[Pt]:()=>m({delta:1,onMonthChange:n}),[It]:()=>m({delta:-s,onMonthChange:r}),[Dt]:()=>m({delta:s,onMonthChange:n})},[n,r,m,s],{ref:t,preventDefault:!0})},Xe={selection:"_selection_1qf7s_6",weekday:"_weekday_1qf7s_11",control:"_control_1qf7s_17",cell:"_cell_1qf7s_21","cell-button":"_cell-button_1qf7s_26","--active":"_--active_1qf7s_31","--selection-range":"_--selection-range_1qf7s_59","--selection-start":"_--selection-start_1qf7s_65","--selection-end":"_--selection-end_1qf7s_75"},ti=e=>{const{date:t,isoDate:n,startValue:r,endValue:o,disabled:s,focusable:i,onChange:c,range:u,hoveredDate:m,onDateHover:_,onDateHoverEnd:d,onDateFocus:f,renderAriaLabel:h,selectedDates:v}=e;if(!t)return l.jsx("td",{className:Xe.cell,"aria-hidden":"true"});const p=r&&wt({date:r}),b=o&&wt({date:o}),x=!!n&&!!p&&n===p,C=!!n&&!!b&&n===b,w=r&&t>r,j=o&&t<o,z=m&&!o&&m>t,E=!!(v!=null&&v.find(D=>wt({date:D})===n));let k;switch(!0){case(w&&z):case(w&&j):k="range";break;case(x&&(!u||C)):case E:k="standalone";break;case x:k="start";break;case C:k="end";break}const S=F([Xe.cell,k&&Xe["--active"],k&&Xe[`--selection-${k}`]]),I=()=>{if(!u){c==null||c({value:t});return}const D=r&&o,B=!r&&!o,H=r&&t<r,L=D||B||H,V=L?t:r,U=L?null:t;c==null||c({value:{start:V,end:U}})},T=()=>{_(t)},$=()=>{d(t)},P=()=>{T(),f(t)};return l.jsx("td",{className:S,role:s?"presentation":"gridcell",children:l.jsx(qe,{fullWidth:!0,insetFocus:!0,className:Xe["cell-button"],disabled:s,onClick:I,attributes:{role:"checkbox",tabIndex:i?0:-1,"aria-hidden":s,"aria-label":h?h({date:t}):t.toLocaleDateString("en-us",{month:"long",day:"numeric",weekday:"long"}),"aria-checked":!!k,"data-rs-date":wt({date:t}),onMouseEnter:T,onMouseLeave:$,onFocus:P,onBlur:$},children:t.getDate()})})};ti.displayName="CalendarDate";const ni=e=>{const{date:t,value:n,onChange:r,min:o,max:s,range:i,firstWeekDay:c,selectedDates:u,hoveredDate:m,onDateHover:_,onDateHoverEnd:d,renderWeekDay:f,renderDateAriaLabel:h}=e;let v=!1;const[p,b]=a.useState(),x=t.getMonth(),C=fc({date:t,firstWeekDay:c}),w=mc({firstWeekDay:c,renderWeekDay:f});return l.jsxs("table",{className:Xe.selection,role:"grid",children:[l.jsx("thead",{"aria-hidden":"true",children:l.jsx("tr",{children:w.map(j=>l.jsx("th",{className:Xe.weekday,scope:"col",children:j},j))})}),l.jsx("tbody",{children:C.map(j=>{var E;const z=[x,(E=j[0])==null?void 0:E.getDate()].filter(Boolean).join("-");return l.jsx("tr",{className:Xe.row,children:j.map((k,S)=>{const I=!!k&&(o&&k<o||s&&k>s),T=n&&"start"in n?n.start:n,$=n&&"end"in n?n.end:n,P=k&&wt({date:k}),D=I?!1:!v&&!!k&&vc({date:k,lastFocusedDate:p,startValue:T});return D&&(v=!0),l.jsx(ti,{date:k,isoDate:P,disabled:I,range:i,focusable:D,startValue:T,endValue:$,onChange:r,hoveredDate:m,onDateHover:_,onDateHoverEnd:d,onDateFocus:b,renderAriaLabel:h,selectedDates:u},S)})},z)})})]})};ni.displayName="CalendarMonth";const Or=3,ri=e=>{const{renderMonthLabel:t,renderMonthAriaLabel:n,monthDate:r,min:o,max:s,onMonthClick:i}=e,c=a.useRef(null),u=_c({renderMonthLabel:t}),m=[];for(let _=0;_<u.length;_+=Or){const d=u.slice(_,_+Or);m.push(d)}return a.useEffect(()=>{var d;const _=(d=c.current)==null?void 0:d.querySelector('[tabIndex="0"]');it(()=>{_==null||_.focus()})},[]),l.jsx("table",{ref:c,role:"grid",className:Xe.selection,children:l.jsx("tbody",{children:m.map((_,d)=>l.jsx("tr",{className:Xe.row,children:_.map((f,h)=>{const v=d*Or+h,p=new Date(r.getFullYear(),v),b=o&&o.getFullYear()>=p.getFullYear()&&o.getMonth()>p.getMonth(),C=s&&s.getFullYear()<=p.getFullYear()&&s.getMonth()<p.getMonth()||b;return l.jsx("td",{role:C?"presentation":"gridcell",className:Xe.cell,children:l.jsx(qe,{fullWidth:!0,insetFocus:!0,className:Xe["cell-button"],disabled:C,onClick:()=>i(v),attributes:{tabIndex:v===r.getMonth()?0:-1,"aria-hidden":C,"aria-label":n?n({month:v}):f,"data-rs-date":`${r.getFullYear()}-${(v+1).toString().padStart(2,"0")}`},children:f})},f)})},d))})})};ri.displayName="CalendarYear";const yc={root:"_root_p9kz2_1"},Qn=e=>{const{children:t}=e;return l.jsx("div",{className:yc.root,children:t})};Qn.displayName="HiddenVisually";const er=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"15 18 9 12 15 6"})}),oi=e=>{const{selectionMode:t,onMonthTitleClick:n,monthTitleRef:r,monthDate:o,renderSelectedMonthLabel:s,isFirstMonth:i,isLastMonth:c,onNextClick:u,onPreviousClick:m,monthSelectionAriaLabel:_="Select a month",previousMonthAriaLabel:d="Previous month",previousYearAriaLabel:f="Previous year",nextMonthAriaLabel:h="Next month",nextYearAriaLabel:v="Next year"}=e,p=a.useRef(null),b=a.useRef(null);return a.useEffect(()=>{if(!i||document.activeElement!==p.current)return;const x=b.current||r.current;it(()=>{x==null||x.focus()})},[i,r]),a.useEffect(()=>{if(!c||document.activeElement!==b.current)return;const x=p.current||r.current;it(()=>{x==null||x.focus()})},[c,r]),l.jsxs(Y,{direction:"row",gap:2,align:"center",children:[l.jsx(Mt,{visibility:!0,hide:i,children:l.jsx("div",{className:Xe.control,children:l.jsx(Oe,{variant:"ghost",icon:er,onClick:m,attributes:{ref:p,"aria-label":t==="date"?d:f}})})}),l.jsxs(Y.Item,{grow:!0,children:[t==="date"&&l.jsxs(Oe,{fullWidth:!0,variant:"ghost",onClick:n,attributes:{ref:r},children:[s?s({date:o}):o.toLocaleDateString("en-US",{month:"long",year:"numeric"}),l.jsx(Qn,{children:_})]}),t==="month"&&l.jsx(ue,{align:"center",weight:"medium",children:o.toLocaleDateString("en-US",{year:"numeric"})})]}),l.jsx(Mt,{visibility:!0,hide:c,children:l.jsx("div",{className:Xe.control,children:l.jsx(Oe,{variant:"ghost",icon:en,onClick:u,attributes:{ref:b,"aria-label":t==="date"?h:v}})})})]})};oi.displayName="CalendarControls";const tr=e=>{const{value:t,onChange:n,defaultMonth:r,min:o,max:s,range:i,firstWeekDay:c,selectedDates:u,renderMonthLabel:m,renderSelectedMonthLabel:_,renderWeekDay:d,previousMonthAriaLabel:f,previousYearAriaLabel:h,nextMonthAriaLabel:v,nextYearAriaLabel:p,monthSelectionAriaLabel:b,renderMonthAriaLabel:x,renderDateAriaLabel:C}=e,[w,j]=a.useState("date"),[z,E]=a.useState(r||new Date),[k,S]=a.useState(null),I=a.useRef(null),T=a.useRef(w),$=bc({date:z,min:o,max:s}),P=a.useRef(null),D=()=>{if(w==="month"){E(q=>gc(q));return}E(q=>hc(q))},B=()=>{if(w==="month"){E(q=>pc(q));return}E(q=>Qs(q))},H=()=>{j("month")},L=q=>{E(ie=>Br(ie,q)),j("date")},V=q=>{S(q)},U=q=>{k&&+k==+q&&S(null)};return a.useEffect(()=>{w==="date"&&w!==T.current&&it(()=>{var q;(q=I.current)==null||q.focus()}),T.current=w},[w]),xc({monthDate:z,rootRef:P,changeToNextMonth:B,changeToPreviousMonth:D,verticalDelta:w==="date"?7:3,min:o,max:s}),l.jsxs(Y,{gap:2,children:[l.jsx(oi,{renderSelectedMonthLabel:_,monthDate:z,selectionMode:w,isFirstMonth:$.isFirstMonth,isLastMonth:$.isLastMonth,monthTitleRef:I,onMonthTitleClick:H,onNextClick:B,onPreviousClick:D,previousMonthAriaLabel:f,previousYearAriaLabel:h,nextMonthAriaLabel:v,nextYearAriaLabel:p,monthSelectionAriaLabel:b}),l.jsxs(Y.Item,{attributes:{ref:P},children:[w==="date"&&l.jsx(ni,{date:z,value:t,onChange:n,min:o,max:s,range:i,firstWeekDay:c,hoveredDate:k,selectedDates:u,onDateHover:V,onDateHoverEnd:U,renderWeekDay:d,renderDateAriaLabel:C}),w==="month"&&l.jsx(ri,{monthDate:z,onMonthClick:L,renderMonthLabel:m,renderMonthAriaLabel:x,min:o,max:s})]})]})};tr.displayName="CalendarControlled";const si=e=>{const c=e,{onChange:t,defaultValue:n,range:r}=c,o=Ee(c,["onChange","defaultValue","range"]),[s,i]=a.useState(n||null);return r?l.jsx(tr,N(g({range:!0},o),{value:s,onChange:u=>{i(u.value),t==null||t(u)}})):l.jsx(tr,N(g({},o),{value:s,onChange:u=>{i(u.value),t==null||t(u)}}))};si.displayName="CalendarUncontrolled";const ii=e=>e.value!==void 0?l.jsx(tr,g({},e)):l.jsx(si,g({},e));ii.displayName="Calendar";const nr={root:"_root_nqitg_1","--selected":"_--selected_nqitg_16","--elevated":"_--elevated_nqitg_22","--actionable":"_--actionable_nqitg_28"},li=a.forwardRef((e,t)=>{const{padding:n=4}=e,{selected:r,elevated:o,bleed:s,height:i,onClick:c,href:u,children:m,className:_,attributes:d,as:f="div"}=e,h=!!u||!!c,v=ct({radius:"medium",bleed:s,height:i,padding:n}),p=F(nr.root,v.classNames,h&&nr["--actionable"],o&&nr["--elevated"],r&&nr["--selected"],_),b=g(g({},d==null?void 0:d.style),v.variables);return h?l.jsx(qe,{className:p,attributes:N(g({},d),{style:b}),href:u,as:f,onClick:c,ref:t,children:m}):l.jsx(f,N(g({},d),{onClick:c,href:u,ref:t,className:p,style:b,children:m}))});li.displayName="Card";const Ct={root:"_root_k04za_1",control:"_control_k04za_9","--control-prev":"_--control-prev_k04za_21","--control-next":"_--control-next_k04za_25","--control-visible":"_--control-visible_k04za_29",scroll:"_scroll_k04za_34",item:"_item_k04za_61","--control-rendered":"_--control-rendered_k04za_73","--bleed":"_--bleed_k04za_79","--bleed-true--m":"_--bleed-true--m_k04za_1","--bleed-false--m":"_--bleed-false--m_k04za_1","--bleed-true--l":"_--bleed-true--l_k04za_1","--bleed-false--l":"_--bleed-false--l_k04za_1","--bleed-true--xl":"_--bleed-true--xl_k04za_1","--bleed-false--xl":"_--bleed-false--xl_k04za_1"},Hr=a.forwardRef((e,t)=>{const{type:n,scrollElRef:r,oppositeControlElRef:o,scrollPosition:s,onClick:i,isRTL:c,mounted:u}=e,[m,_]=a.useState(!1),[d,f]=a.useState(!1),h=n==="forward",v=n===(c?"back":"forward"),p=F(Ct.control,v?Ct["--control-next"]:Ct["--control-prev"],m&&Ct["--control-visible"],d&&Ct["--control-rendered"]);return Se(()=>{var E;const b=r.current;if(!b||!u)return;let x;const C=Math.abs(s),w=C<=0,j=C+b.clientWidth>=b.scrollWidth-1;return(h?j:w)?(_(!1),x=setTimeout(()=>f(!1),1500),(E=o.current)==null||E.focus()):(f(!0),_(!0)),()=>{x&&clearTimeout(x)}},[s,r,u,h]),l.jsx("div",{className:p,children:l.jsx(Oe,{size:"small",onClick:i,icon:v?en:er,rounded:!0,variant:"outline",elevated:!0,attributes:{"aria-disabled":!m,"aria-hidden":!0},ref:t})})});Hr.displayName="CarouselControl";const ai=e=>{const{children:t,gap:n=3,visibleItems:r,bleed:o,navigationDisplay:s,onChange:i,onScroll:c,instanceRef:u,className:m,attributes:_}=e,d=a.useRef(0),f=a.useRef([]),[h,v]=a.useState(!1),[p,b]=a.useState(0),[x]=xt(),C=a.useRef(null),w=a.useRef(null),j=a.useRef(null),z={};typeof o=="object"&&Object.entries(o).forEach(([L,V])=>{z[L]=typeof V=="number"&&V>0});const E=F(Ct.root,m,..._e(Ct,"--bleed",typeof o=="number"?!0:z)),k=(L,V)=>{f.current[V]=L},S=Er(L=>{const V=L.target,U=T();b(V.scrollLeft),c==null||c(L),d.current!==U&&(i==null||i({index:U})),d.current=U}),I=()=>{const V=getComputedStyle(C.current).gap.split(" ")[0];return Number(V.replace("px",""))},T=()=>{let L=0,V=0;const U=C.current;if(!U)return L;const q=x?-U.scrollLeft:U.scrollLeft,ie=I();return f.current.some((ee,K)=>ee?V+ee.clientWidth/2>=q?(L=K,!0):(V+=(ee==null?void 0:ee.clientWidth)+ie,!1):!1),L},$=L=>{const V=C.current,U=f.current[L];U&&V.scrollTo({left:x?U.offsetLeft-(V.clientWidth-U.clientWidth):U.offsetLeft,top:0,behavior:"smooth"})},P=()=>{const L=C.current;L.scrollBy({left:L.clientWidth+I(),top:0,behavior:"smooth"})},D=()=>{const L=C.current;L.scrollBy({left:-L.clientWidth-I(),top:0,behavior:"smooth"})},B=x?P:D,H=x?D:P;return a.useImperativeHandle(u,()=>({navigateBack:B,navigateForward:H,navigateTo:$})),Se(()=>{v(!0)},[]),l.jsxs("section",N(g({},_),{className:E,style:g(g(g({},G("--rs-carousel-items",r)),G("--rs-carousel-bleed",o)),_==null?void 0:_.style),children:[s!=="hidden"&&l.jsxs(l.Fragment,{children:[l.jsx(Hr,{isRTL:x,type:"back",ref:w,oppositeControlElRef:j,scrollElRef:C,scrollPosition:p,onClick:B,mounted:h}),l.jsx(Hr,{isRTL:x,type:"forward",ref:j,oppositeControlElRef:w,scrollElRef:C,scrollPosition:p,onClick:H,mounted:h})]}),l.jsx(Y,{as:"ul",direction:"row",wrap:!1,gap:n,className:Ct.scroll,attributes:{ref:C,onScroll:S},children:a.Children.map(t,(L,V)=>l.jsx(Y.Item,{className:Ct.item,as:"li",attributes:{ref:U=>k(U,V)},children:L}))})]}))};ai.displayName="Carousel";const wc={root:"_root_1feer_1"},rr=e=>{const{name:t,value:n,type:r,onChange:o,onFocus:s,onBlur:i,checked:c,defaultChecked:u,disabled:m,className:_,attributes:d}=e,f=F(wc.root,_);return l.jsx("input",N(g({},d),{className:f,type:r,name:t,value:n,checked:c,defaultChecked:u,disabled:m,onChange:o,onFocus:s||(d==null?void 0:d.onFocus),onBlur:i||(d==null?void 0:d.onBlur)}))};rr.displayName="HiddenInput";const ci=a.createContext(null),Cc=()=>a.useContext(ci),qr=e=>{const{onChange:t,name:n,disabled:r,value:o,children:s,hasError:i}=e,c=u=>{const{event:m,value:_,checked:d}=u;if(!_)return;let f=[...o];d?f.push(_):f=f.filter(h=>h!==_),t&&t({name:n,value:f,event:m})};return l.jsx(ci.Provider,{value:{onChange:c,disabled:r,value:o,name:n,hasError:i},children:s})};qr.displayName="CheckboxGroupControlled";const di=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||[]),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(qr,N(g({},e),{value:r,defaultValue:void 0,onChange:s}))};di.displayName="CheckboxGroupUncontrolled";const ui=e=>{const{value:t}=e;return t!==void 0?l.jsx(qr,g({},e)):l.jsx(di,g({},e))};ui.displayName="CheckboxGroup";const Wr=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"20 6 9 17 4 12"})}),St={root:"_root_ykdxc_12",decorator:"_decorator_ykdxc_23",field:"_field_ykdxc_28","--size-small":"_--size-small_ykdxc_1","--size-medium":"_--size-medium_ykdxc_1","--size-large":"_--size-large_ykdxc_1",icon:"_icon_ykdxc_75",input:"_input_ykdxc_85","--error":"_--error_ykdxc_92","--disabled":"_--disabled_ykdxc_114","--size-small--m":"_--size-small--m_ykdxc_1","--size-medium--m":"_--size-medium--m_ykdxc_1","--size-large--m":"_--size-large--m_ykdxc_1","--size-small--l":"_--size-small--l_ykdxc_1","--size-medium--l":"_--size-medium--l_ykdxc_1","--size-large--l":"_--size-large--l_ykdxc_1","--size-small--xl":"_--size-small--xl_ykdxc_1","--size-medium--xl":"_--size-medium--xl_ykdxc_1","--size-large--xl":"_--size-large--xl_ykdxc_1"},mi=e=>{var z;const{children:t,value:n,onChange:r,onFocus:o,onBlur:s,indeterminate:i,size:c="medium",className:u,attributes:m,inputAttributes:_}=e,d=Cc(),f=mt(),h=(f==null?void 0:f.hasError)||e.hasError||(d==null?void 0:d.hasError),v=(f==null?void 0:f.disabled)||e.disabled||(d==null?void 0:d.disabled),p=d?(z=d.value)==null?void 0:z.includes(n):e.checked,b=d?void 0:e.defaultChecked,x=d?d.name:e.name,C=a.useRef(null),w=F(St.root,u,c&&h&&St["--error"],v&&St["--disabled"],c&&_e(St,"--size",c)),j=E=>{if(!x)return;const{checked:k}=E.target,S={name:x,value:n,checked:k,event:E};r&&r(S),d!=null&&d.onChange&&d.onChange(S)};return Se(()=>{C.current.indeterminate=i||!1},[i,p]),l.jsxs("label",N(g({},m),{className:w,children:[l.jsxs("span",{className:St.field,children:[l.jsx(rr,{className:St.input,type:"checkbox",checked:p,defaultChecked:b,name:x,disabled:v,value:n,onChange:j,onFocus:o,onBlur:s,attributes:N(g({},_),{ref:C})}),l.jsx("div",{className:St.decorator,children:l.jsx(Ne,{svg:Wr,className:St.icon,size:de(c,E=>E==="large"?5:E==="small"?3:4)})})]}),t&&l.jsx(ue,{as:"span",variant:de(c,E=>E==="large"?"body-2":E==="small"?"caption-1":"body-3"),children:t})]}))};mi.displayName="Checkbox";const or=e=>e.preventDefault(),Rr=()=>{window.addEventListener("wheel",or),window.addEventListener("touchmove",or)},Ur=()=>{window.removeEventListener("wheel",or),window.removeEventListener("touchmove",or)},Yr=e=>{var n;const t=((n=window.navigator.userAgentData)==null?void 0:n.platform)||window.navigator.platform;return typeof window!="undefined"?e.test(t):!1},jc=()=>Yr(/^iPhone/i),kc=()=>Yr(/^Mac/i),Nc=()=>Yr(/^iPad/i)||kc()&&navigator.maxTouchPoints>1,zc=()=>jc()||Nc();class _i{constructor(){Me(this,"cache",new Map);Me(this,"set",(t,n)=>{const r={},o=this.cache.get(t);Object.keys(n).forEach(s=>{r[s]=t.style.getPropertyValue(s)}),this.cache.set(t,g(g({},r),o)),Object.assign(t.style,n)});Me(this,"reset",()=>{for(const[t,n]of this.cache.entries())Object.assign(t.style,n);this.cache.clear()})}}const Gr=new _i,Ec=()=>{const e=window.visualViewport,t=(e==null?void 0:e.offsetLeft)||0,n=(e==null?void 0:e.offsetTop)||0,{scrollX:r,scrollY:o}=window;return Gr.set(document.body,{position:"fixed",top:`${-(o-Math.floor(n))}px`,left:`${-(r-Math.floor(t))}px`,right:"0",overflow:"hidden"}),()=>{console.log("reset safari scroll",Gr),Gr.reset(),window.scrollTo({top:o,left:r,behavior:"instant"})}},Sc=(()=>{let e;return()=>{if(e)return e;const t=document.createElement("div");return t.style.position="absolute",t.style.top="-9999px",t.style.width="50px",t.style.height="50px",t.style.overflow="scroll",document.body.appendChild(t),e=t.getBoundingClientRect().width-t.clientWidth,document.body.removeChild(t),e}})(),Kr=new _i,Tc=e=>{const{container:t}=e,n=t.getBoundingClientRect(),r=n.left+n.right<window.innerWidth;if(Kr.set(t,{overflow:"hidden"}),r){const o=Sc();Kr.set(t,{paddingRight:`${o}px`})}return()=>Kr.reset()};let Sn=0;const $c=e=>{var s;const t=zc();let n=()=>{},r=document.body;e.originEl&&(r=yr({el:e.originEl})),e.containerEl&&(r=e.containerEl);const o=r===document.body;if(o&&(Sn+=1),console.log("bodyLockedCount",{bodyLockedCount:Sn,lockedBodyScroll:o,isIOSLock:t}),!(o&&Sn>1))return t&&o?n=Ec():n=Tc({container:r}),(s=e.cb)==null||s.call(e),i=>{o&&(Sn-=1),console.log("bodyLockedCount remove",Sn,o),n(),i==null||i()}},Xr=e=>{const{containerRef:t,originRef:n}=e||{},[r,o]=a.useState(!1),s=a.useRef(null),i=a.useCallback(()=>{s.current=$c({containerEl:t==null?void 0:t.current,originEl:n==null?void 0:n.current,cb:()=>o(!0)})},[t,n]),c=a.useCallback(()=>{var u;(u=s.current)==null||u.call(s,()=>o(!1)),s.current=null},[]);return a.useMemo(()=>({scrollLocked:r,lockScroll:i,unlockScroll:c}),[r,i,c])},Mc={root:"_root_th78q_1"},Ot=e=>{const d=e,{position:t="end-top",onOpen:n,onClose:r}=d,o=Ee(d,["position","onOpen","onClose"]),[s,i]=a.useState(),c=a.useRef(null),{lockScroll:u,unlockScroll:m}=Xr({originRef:c}),_=Ve(n);return a.useEffect(()=>{const f=c.current;if(!f)return;const h=v=>{var p;v.preventDefault(),i({x:v.clientX,y:v.clientY}),u(),(p=_.current)==null||p.call(_)};return f.addEventListener("contextmenu",h),()=>f.removeEventListener("contextmenu",h)},[u,_]),a.useEffect(()=>()=>m(),[m]),l.jsx("div",{className:Mc.root,ref:c,children:l.jsx(Te,N(g({},o),{position:t,originCoordinates:s,active:!!s,onClose:f=>{i(void 0),m(),r==null||r(f)}}))})};Ot.Content=Te.Content,Ot.Item=Te.Item,Ot.Section=Te.Section,Ot.SubMenu=Te.SubMenu,Ot.SubTrigger=Te.SubTrigger,Ot.displayName="ContextMenu";const Tt={root:"_root_1jgwk_1","--inline":"_--inline_1jgwk_11",triggerLayer:"_triggerLayer_1jgwk_15","--variant-outline":"_--variant-outline_1jgwk_29","--highlighted":"_--highlighted_1jgwk_34",trigger:"_trigger_1jgwk_15"},fi=e=>{const{children:t}=e;return l.jsx("span",{className:Tt.trigger,children:t})},Jr=e=>{const{name:t,children:n,height:r,variant:o="outline",inline:s,className:i,attributes:c,inputAttributes:u,onChange:m}=e,_=Vt(),d=F(Tt.root,o&&Tt[`--variant-${o}`],s&&Tt["--inline"],_.active&&Tt["--highlighted"],i),f=w=>{var j;w.preventDefault(),(j=c==null?void 0:c.onDragOver)==null||j.call(c,w)},h=w=>{var j;_.activate(),(j=c==null?void 0:c.onDragEnter)==null||j.call(c,w)},v=w=>{var j;w.currentTarget.contains(w.relatedTarget)||(_.deactivate(),(j=c==null?void 0:c.onDragLeave)==null||j.call(c,w))},p=w=>{var j;w.preventDefault(),_.deactivate(),m==null||m({name:t,value:Array.from(w.dataTransfer.files),event:w}),(j=c==null?void 0:c.onDrop)==null||j.call(c,w)},b=w=>{var z;const j=w.target.files;j&&(m==null||m({name:t,event:w,value:Array.from(j)}),(z=u==null?void 0:u.onChange)==null||z.call(u,w))},x=l.jsx(Qn,{children:l.jsx("input",N(g({},u),{type:"file",className:Tt.field,name:t,onChange:b}))}),C=typeof n=="function"?n({highlighted:_.active}):n;return l.jsx(Y,{className:d,height:r,attributes:N(g({},c),{onDragOver:f,onDragEnter:h,onDragLeave:v,onDrop:p}),children:o==="outline"&&!s?l.jsxs(Y,{as:"label",className:Tt.triggerLayer,padding:6,borderRadius:"medium",gap:2,align:"center",justify:"center",textAlign:"center",animated:!0,height:"100%",children:[x,l.jsx(Y.Item,{children:C})]}):l.jsxs("label",{className:Tt.triggerLayer,children:[x,C]})})};Jr.Trigger=fi,Jr.displayName="FileUpload",fi.displayName="FileUpload.Trigger";const hi={root:"_root_bzk9x_1","--active":"_--active_bzk9x_14"},gi=e=>{const{children:t,active:n,className:r,attributes:o}=e,s=F(hi.root,n&&hi["--active"],r);return l.jsx(ue,{as:"kbd",variant:"caption-1",weight:"medium",color:"neutral-faded",className:s,attributes:o,children:t})};gi.displayName="Hotkey";const Zr={m:660,l:900,xl:1280},pi=e=>{var o,s,i,c,u,m;const{defaultViewport:t}=a.useContext(jr),[n,r]=a.useState(t);return Se(()=>{const _=document.querySelector("[data-rs-theme]"),d=_&&window.getComputedStyle(_),f={m:d&&Number(d.getPropertyValue("--rs-viewport-m-min"))||Zr.m,l:d&&Number(d.getPropertyValue("--rs-viewport-l-min"))||Zr.l,xl:d&&Number(d.getPropertyValue("--rs-viewport-xl-min"))||Zr.xl},h={s:`(max-width: ${f.m-1}px)`,m:`(min-width: ${f.m}px) and (max-width: ${f.l-1}px)`,l:`(min-width: ${f.l}px) and (max-width: ${f.xl-1}px)`,xl:`(min-width: ${f.xl}px)`},p=Object.keys(h).map(b=>{const x=window.matchMedia(h[b]);return{mq:x,handler:()=>x.matches&&r(b)}});return p.forEach(({handler:b,mq:x})=>{b(),x.addEventListener("change",b)}),()=>{p.forEach(({handler:b,mq:x})=>{x.removeEventListener("change",b)})}},[]),typeof e!="object"||e===null||!("s"in e)?e:n==="xl"?(i=(s=(o=e.xl)!=null?o:e.l)!=null?s:e.m)!=null?i:e.s:n==="l"?(u=(c=e.l)!=null?c:e.m)!=null?u:e.s:n==="m"&&(m=e.m)!=null?m:e.s},ht={root:"_root_1irm5_1",wrapper:"_wrapper_1irm5_26",inner:"_inner_1irm5_32",content:"_content_1irm5_38","--visible":"_--visible_1irm5_44","--click-through":"_--click-through_1irm5_49","--blurred":"_--blurred_1irm5_54","--contained":"_--contained_1irm5_72","--animated":"_--animated_1irm5_76","--overflow-auto":"_--overflow-auto_1irm5_85"},Qr=e=>{const{active:t,children:n,transparent:r,blurred:o,overflow:s,onClose:i,onOpen:c,onAfterClose:u,onAfterOpen:m,disableCloseOnClick:_,containerRef:d,className:f,attributes:h}=e,v=Ve(i),p=Ve(c),b=r===!0,x=b?0:(1-(r||0))*.7,[C,w]=a.useState(!1),[j,z]=a.useState(!1),[E,k]=a.useState([0,0]),S=a.useRef(null),{lockScroll:I,unlockScroll:T}=Xr({containerRef:d}),$=a.useRef(null),P=a.useRef(!1),{active:D,activate:B,deactivate:H}=Vt(t||!1),{active:L,activate:V,deactivate:U}=Vt(t||!1),q=us({active:t,contentRef:S,hasTrigger:!1}),ie=F(ht.root,L&&ht["--visible"],b&&ht["--click-through"],o&&ht["--blurred"],j&&ht["--animated"],d&&ht["--contained"],s==="auto"&&ht["--overflow-auto"],f),ee=X=>{if(!S.current)return;const ne=S.current.firstChild;if(ne)return ne.contains(X)},K=a.useCallback(X=>{var ne;!L||!q()||($.current&&(d!=null&&d.current)&&(d.current.style.overflow=$.current,d.current.style.removeProperty("isolation"),$.current=null),(ne=v.current)==null||ne.call(v,{reason:X.reason}))},[L,q,v,d]),te=X=>{P.current=!ee(X.target)},J=X=>{const ne=!ee(X.target);!(P.current&&ne&&!b)||_||K({reason:"overlay-click"})},ce=X=>{if(!(X.propertyName!=="opacity"||X.target!==X.currentTarget)){if(z(!1),L){m==null||m();return}T(),H(),u==null||u()}};return tt({Escape:()=>K({reason:"escape-key"})},[K]),a.useEffect(()=>{z(!0),t&&!D&&B(),!t&&D&&U()},[t,B,U,D]),a.useEffect(()=>{D&&(b||I(),it(()=>{V()}))},[D,V,I,b]),a.useEffect(()=>{var pe;if(!D||!S.current)return;const X=new Jt,ne=d==null?void 0:d.current;return ne&&($.current=ne.style.overflow,ne.style.overflow="hidden",ne.style.isolation="isolate",k([ne.scrollLeft,ne.scrollTop])),X.trap(S.current,{initialFocusEl:S.current.querySelector("[role=dialog][tabindex='-1']")}),(pe=p.current)==null||pe.call(p),()=>X.release()},[D,p,d]),a.useEffect(()=>()=>T(),[T]),Se(()=>{w(!0)},[]),!D||!C?null:l.jsx(kn,{targetRef:d,children:l.jsx(kn.Scope,{children:X=>l.jsx("div",N(g({},h),{ref:X,style:{"--rs-overlay-opacity":x,"--rs-overlay-offset-x":d?`${E[0]}px`:void 0,"--rs-overlay-offset-y":d?`${E[1]}px`:void 0},role:"button",tabIndex:-1,className:ie,onMouseDown:te,onMouseUp:J,onTransitionEnd:ce,children:l.jsx("div",{className:ht.wrapper,children:l.jsx("div",{className:ht.inner,children:l.jsx("div",{className:ht.content,ref:S,children:typeof n=="function"?n({active:L}):n})})})}))})})};Qr.displayName="Overlay";const tn={root:"_root_4l2b6_1","--contained":"_--contained_4l2b6_16","--position-center":"_--position-center_4l2b6_1","--active":"_--active_4l2b6_41","--position-bottom":"_--position-bottom_4l2b6_1","--position-start":"_--position-start_4l2b6_1","--position-end":"_--position-end_4l2b6_1","--position-full-screen":"_--position-full-screen_4l2b6_1","--dragging":"_--dragging_4l2b6_154","--overflow-visible":"_--overflow-visible_4l2b6_158","--position-center--m":"_--position-center--m_4l2b6_1","--position-bottom--m":"_--position-bottom--m_4l2b6_1","--position-start--m":"_--position-start--m_4l2b6_1","--position-end--m":"_--position-end--m_4l2b6_1","--position-full-screen--m":"_--position-full-screen--m_4l2b6_1","--position-center--l":"_--position-center--l_4l2b6_1","--position-bottom--l":"_--position-bottom--l_4l2b6_1","--position-start--l":"_--position-start--l_4l2b6_1","--position-end--l":"_--position-end--l_4l2b6_1","--position-full-screen--l":"_--position-full-screen--l_4l2b6_1","--position-center--xl":"_--position-center--xl_4l2b6_1","--position-bottom--xl":"_--position-bottom--xl_4l2b6_1","--position-start--xl":"_--position-start--xl_4l2b6_1","--position-end--xl":"_--position-end--xl_4l2b6_1","--position-full-screen--xl":"_--position-full-screen--xl_4l2b6_1"},eo=32,Ic=100,Dc=32,bi=a.createContext({id:"",titleMounted:!1,setTitleMounted:()=>{},subtitleMounted:!1,setSubtitleMounted:()=>{}}),vi=()=>a.useContext(bi),xi=e=>{const{children:t}=e,{id:n,setTitleMounted:r}=vi();return a.useEffect(()=>(r(!0),()=>r(!1)),[r]),l.jsx(ue,{variant:"featured-3",weight:"bold",attributes:{id:`${n}-title`},children:t})},yi=e=>{const{children:t}=e,{id:n,setSubtitleMounted:r}=vi();return a.useEffect(()=>(r(!0),()=>r(!1)),[r]),l.jsx(ue,{variant:"body-3",color:"neutral-faded",attributes:{id:`${n}-subtitle`},children:t})},sr=e=>{const{children:t,onClose:n,onOpen:r,onAfterClose:o,onAfterOpen:s,active:i,size:c,padding:u=4,position:m="center",overflow:_,transparentOverlay:d,blurredOverlay:f,ariaLabel:h,autoFocus:v=!0,disableSwipeGesture:p,disableCloseOnOutsideClick:b,containerRef:x,overlayClassName:C,className:w,attributes:j}=e,z=Ve(n),E=et(),k=pi(m),[S,I]=a.useState(!1),[T,$]=a.useState(!1),[P,D]=a.useState(!1),B=a.useRef(null),H=(j==null?void 0:j.ref)||B,L=a.useRef({x:0,y:0}),V=a.useRef(0),U=a.useRef(0),q=a.useRef(0),[ie,ee]=a.useState(0),[K,te]=a.useState(0),J=ct({padding:u}),ce=a.useMemo(()=>({titleMounted:S,setTitleMounted:I,subtitleMounted:T,setSubtitleMounted:$,id:E}),[E,T,S]),X=()=>{L.current={x:0,y:0},V.current=0,q.current=0,ee(0)},ne=O=>{var fe;if(p||(fe=window.getSelection())!=null&&fe.toString())return;let R=O.target;const se=H.current;for(;R&&(R===se||se!=null&&se.contains(R));){if(R.scrollTop!==0||R.scrollLeft!==0||R.matches("input,textarea"))return;R=R?R.parentElement:null}k==="start"&&O.targetTouches[0].clientX<Dc||(Vn(),Rr(),D(!0))},pe=O=>{i||O.propertyName==="transform"&&O.currentTarget===O.target&&X()};return a.useEffect(()=>{if(!P)return;const O=()=>{var fe;Bn(),Ur(),D(!1);const se=k==="start"?q.current<0:q.current>0;Math.abs(U.current)>eo&&se?(fe=z.current)==null||fe.call(z,{reason:"drag"}):X()},R=se=>{var he,be;if(!P||k==="center"||((he=H.current)==null?void 0:he.scrollTop)!==0||((be=H.current)==null?void 0:be.scrollLeft)!==0)return;const fe=se.targetTouches[0],$e={x:fe.clientX,y:fe.clientY},De=k==="bottom"?"y":"x",re=k==="bottom"?"x":"y";L.current[De]||(L.current=$e,V.current=$e[De]);const Z=Math.abs($e[De]-L.current[De]),le=Math.abs($e[re]-L.current[re]);if(m!=="bottom"&&(Z<le||le>Ic)){V.current=$e[De];return}q.current=$e[De]-V.current,V.current=$e[De],ee(Le=>k==="start"?Math.min(0,Le+q.current):Math.max(0,Le+q.current))};return document.addEventListener("touchmove",R,{passive:!0}),document.addEventListener("touchend",O,{passive:!0}),()=>{document.removeEventListener("touchmove",R),document.removeEventListener("touchend",O)}},[P,k,z,m,H]),a.useEffect(()=>{const O=H.current;if(!O||!k)return;const se=["start","end"].includes(k)?O.clientWidth:O.clientHeight,fe=Math.abs(ie)/se;te(fe/2),U.current=ie},[ie,k,H]),l.jsx(Qr,{onClose:n,onOpen:r,onAfterClose:o,onAfterOpen:s,disableCloseOnClick:b,active:i,transparent:d||K,blurred:f,overflow:de(m,O=>O==="center"?"auto":"hidden"),className:C,containerRef:x,attributes:{onTouchStart:ne},children:({active:O})=>{const R=F(tn.root,w,O&&tn["--active"],P&&tn["--dragging"],_&&tn[`--overflow-${_}`],x&&tn["--contained"],_e(tn,"--position",m),J.classNames);return l.jsx(bi.Provider,{value:ce,children:l.jsx("div",N(g({},j),{style:N(g(g({},J.variables),G("--rs-modal-size",c)),{"--rs-modal-drag":Math.abs(ie)<eo?"0px":`${ie+eo*(k==="start"?1:-1)}px`}),"aria-labelledby":S?`${E}-title`:void 0,"aria-describedby":T?`${E}-subtitle`:void 0,"aria-label":h||(j==null?void 0:j["aria-label"]),className:R,"aria-modal":"true",role:"dialog",tabIndex:v?void 0:-1,ref:H,onTransitionEnd:pe,children:t}))})}})};sr.Title=xi,sr.Subtitle=yi,sr.displayName="Modal",xi.displayName="Modal.Title",yi.displayName="Modal.Subtitle";const Pc=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"18 15 12 9 6 15"})}),wi=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",stroke:"currentColor",fill:"none",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("polyline",{points:"6 9 12 15 18 9"})}),Lc=()=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:[l.jsx("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),l.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),Ac=()=>l.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",children:l.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})}),dt={field:"_field_meivp_1","controls-wrapper":"_controls-wrapper_meivp_5",controls:"_controls_meivp_5","controls--size-small":"_controls--size-small_meivp_1",control:"_control_meivp_5","controls--size-medium":"_controls--size-medium_meivp_1","controls--size-large":"_controls--size-large_meivp_1","controls--size-xlarge":"_controls--size-xlarge_meivp_1","icon--touch":"_icon--touch_meivp_107","--outline":"_--outline_meivp_111","icon--mouse":"_icon--mouse_meivp_139","controls--size-small--m":"_controls--size-small--m_meivp_1","controls--size-medium--m":"_controls--size-medium--m_meivp_1","controls--size-large--m":"_controls--size-large--m_meivp_1","controls--size-xlarge--m":"_controls--size-xlarge--m_meivp_1","controls--size-small--l":"_controls--size-small--l_meivp_1","controls--size-medium--l":"_controls--size-medium--l_meivp_1","controls--size-large--l":"_controls--size-large--l_meivp_1","controls--size-xlarge--l":"_controls--size-xlarge--l_meivp_1","controls--size-small--xl":"_controls--size-small--xl_meivp_1","controls--size-medium--xl":"_controls--size-medium--xl_meivp_1","controls--size-large--xl":"_controls--size-large--xl_meivp_1","controls--size-xlarge--xl":"_controls--size-xlarge--xl_meivp_1"},to=e=>{var ee;const ie=e,{increaseAriaLabel:t,decreaseAriaLabel:n,min:r,max:o,step:s=1,name:i,value:c,onChange:u,size:m="medium"}=ie,_=Ee(ie,["increaseAriaLabel","decreaseAriaLabel","min","max","step","name","value","onChange","size"]),d=mt(),f=et(_.id),h=(d==null?void 0:d.attributes.id)||((ee=e.inputAttributes)==null?void 0:ee.id)||f,v=(d==null?void 0:d.disabled)||e.disabled,p=(d==null?void 0:d.hasError)||e.hasError,b=v||(c&&o?c>=o:!1),x=v||(c&&r?c<=r:!1),C=a.useRef(null),w=a.useRef(null),[j,z]=a.useState((c==null?void 0:c.toString())||""),E=a.useRef(c),k=Ve(u),S=a.useRef(null),I=a.useRef(null),T=a.useCallback(K=>{var O,R;const te=s*K,J=E.current;let ce=J===null?te:J+te;o!==void 0&&ce>o&&(ce=o),r!==void 0&&ce<r&&(ce=r);const X=((O=s.toString().split(".")[1])==null?void 0:O.length)||0,ne=((R=J==null?void 0:J.toString().split(".")[1])==null?void 0:R.length)||0,pe=Math.max(X,ne);return Number(ce.toFixed(pe))},[s,r,o]),$=a.useCallback((K,te)=>{var J;(J=k.current)==null||J.call(k,{value:K,name:i}),te!=null&&te.programmatic||(E.current=K)},[i,k]),P=a.useCallback(()=>{const K=T(1);$(K,{programmatic:!0})},[T,$]),D=a.useCallback(()=>{const K=T(-1);$(K,{programmatic:!0})},[T,$]),B=K=>{if(!K.value.match(/^(-?)[0-9]*(\.?)[0-9]*$/))return;const te=parseFloat(K.value);te>Number.MAX_SAFE_INTEGER||te<Number.MIN_SAFE_INTEGER||(z(K.value),!isNaN(te)&&$(te))},H=(K,te)=>{var J;v||(te(),K.pointerType!=="touch"&&((J=C.current)==null||J.focus()),S.current=setTimeout(()=>{I.current=setInterval(()=>{te()},50)},500))},L=()=>{v||(S.current&&(clearTimeout(S.current),S.current=null),I.current&&(clearTimeout(I.current),I.current=null))};tt({[It]:P,[Dt]:D},[P,D],{preventDefault:!0,ref:w}),a.useEffect(()=>{var K;E.current=c,z((K=c==null?void 0:c.toString())!=null?K:"")},[c]);const V=de(m,K=>K==="large"||K==="xlarge"?4:3),U=de(m,K=>K==="small"?3:4),q=l.jsx("span",{className:dt["controls-wrapper"],children:l.jsxs("span",{className:dt.controls,children:[l.jsxs(qe,{className:dt.control,disabled:b,disableFocusRing:!0,as:"span",attributes:{"aria-label":t,"aria-controls":h,role:"button",tabIndex:b?void 0:-1,onPointerDown:K=>H(K,P),onPointerUp:L,onPointerLeave:L,onContextMenu:K=>K.preventDefault()},children:[l.jsx(Ne,{svg:Pc,size:V,className:dt["icon--mouse"]}),l.jsx(Ne,{svg:Lc,size:U,className:dt["icon--touch"]})]}),l.jsxs(qe,{className:dt.control,disabled:x,disableFocusRing:!0,as:"span",attributes:{"aria-label":n,"aria-controls":h,role:"button",tabIndex:x?void 0:-1,onPointerDown:K=>H(K,D),onPointerUp:L,onPointerLeave:L,onContextMenu:K=>K.preventDefault()},children:[l.jsx(Ne,{svg:wi,size:V,className:dt["icon--mouse"]}),l.jsx(Ne,{svg:Ac,size:U,className:dt["icon--touch"]})]})]})});return l.jsx(yn,N(g({},_),{className:[_.className,_e(dt,"controls--size",m),!(_.variant==="faded"||_.variant==="headless")&&dt["--outline"]],attributes:N(g({},_.attributes),{role:"group",ref:w}),inputAttributes:N(g({},_.inputAttributes),{ref:C,inputMode:"numeric",autoComplete:"off",autoCorrect:"off",spellCheck:"false",min:r,max:o,step:s,className:dt.field}),size:m,id:h,hasError:p,disabled:v,value:j,onChange:B,name:i,endSlot:q}))};to.displayName="NumberFieldControlled";const Ci=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t!=null?t:null),s=i=>{o(i.value),n&&n(i)};return l.jsx(to,N(g({},e),{value:r,defaultValue:void 0,onChange:s}))};Ci.displayName="NumberFieldUncontrolled";const ji=e=>{const{value:t}=e;return t!==void 0?l.jsx(to,g({},e)):l.jsx(Ci,g({},e))};ji.displayName="NumberField";const ki={page:"_page_j10le_1"},no=e=>{const{total:t,page:n=1,onChange:r,pageAriaLabel:o,previousAriaLabel:s,nextAriaLabel:i,className:c,attributes:u}=e,m=1,_=1,d=[],f=(_+1)*2+m*2+1,h=t>f&&n-m>_+2,v=t>f&&n+m<t-_;let p=m*2+1;h||(p+=_+1),v||(p+=_+1);const b=h?Math.min(t-p+1,Math.max(1,n-m)):1,x=v?Math.min(b+p-1,t):t;h&&d.push(...zr(1,_),null),d.push(...zr(b,x)),v&&d.push(null,...zr(t-_+1,t));const C=w=>{const j=Math.min(t,Math.max(1,w));r==null||r({page:j})};return l.jsxs(Y,{direction:"row",align:"center",gap:1,className:c,attributes:u,children:[l.jsx(Oe,{variant:"ghost",size:"small",icon:er,onClick:()=>C(n-1),disabled:n===1,attributes:{"aria-label":s}}),d.map((w,j)=>w===null?l.jsx(Y,{width:7,align:"center",children:"..."},`dots-${j}`):l.jsx(Oe,{size:"small",variant:w===n?"solid":"ghost",color:w===n?"primary":"neutral",onClick:()=>C(w),attributes:{"aria-label":o==null?void 0:o({page:w}),"aria-current":w===n},className:ki.page,children:w},j)),l.jsx(Oe,{variant:"ghost",size:"small",className:ki.page,icon:en,onClick:()=>C(n+1),disabled:n===t,attributes:{"aria-label":i}})]})};no.displayName="PaginationControlled";const Ni=e=>{const c=e,{defaultPage:t=1,onChange:n}=c,r=Ee(c,["defaultPage","onChange"]),[o,s]=a.useState(t||1),i=u=>{s(u.page),n==null||n(u)};return l.jsx(no,N(g({},r),{onChange:i,page:o}))};Ni.displayName="PaginationUncontrolled";const zi=e=>{const{page:t}=e;return t!==void 0?l.jsx(no,g({},e)):l.jsx(Ni,g({},e))};zi.displayName="Pagination";const Ei="\\d",Si="[a-zA-Z]",Fc=`(${Ei}|${Si})`,ir={root:"_root_eojch_1",input:"_input_eojch_6",item:"_item_eojch_23","item--focused":"_item--focused_eojch_28"},Vc={small:7,medium:9,large:12,xlarge:14},Bc={numeric:Ei,alphabetic:Si,alphanumeric:Fc},ro=e=>{const{valueLength:t=4,value:n,onChange:r,name:o,pattern:s="numeric",size:i="medium",variant:c="outline",className:u,attributes:m,inputAttributes:_}=e,d=Bc[s],f=de(i,$=>Vc[$]),h=de(i,$=>$==="medium"?"body-3":"body-2"),v=de(i,$=>$==="xlarge"?"medium":"small"),[p,b]=a.useState(null),x=mt(),C=a.useRef(n.length===t?"edit":"type"),w=a.useRef(null),j=[],z=a.useCallback($=>{var L;const P=w.current;if(!P||P.selectionStart===null)return;const D=C.current,B=(L=$!=null?$:P.selectionStart)!=null?L:0,H=Math.min(D==="type"?P.value.length:P.value.length-1,Math.max(0,B));C.current==="type"?(P.selectionStart=H,P.selectionEnd=H):(P.selectionStart=H,P.selectionEnd=H+1),b(Math.min(P.selectionStart,t-1))},[t]);tt({[`${Lt},${It}`]:()=>{it(()=>{const $=w.current;if(!$||$.selectionStart===null)return;const P=C.current,D=n.length?"edit":"type";C.current=D,z(P==="type"&&D==="edit"?$.selectionStart:$.selectionStart-1)})},[`${Pt},${Dt}`]:()=>{it(()=>{const $=w.current;if(!$||$.selectionStart===null)return;const P=$.selectionStart===n.length&&$.selectionStart!==t?"type":"edit";C.current=P,z($.selectionStart)})}},[n,z,t],{ref:w});const E=()=>{z(n.length)},k=()=>{b(null)},S=$=>{if(p===null||!w.current)return;const P=$.clipboardData.getData("text"),D=n.slice(0,p)+n.slice(p+P.length);w.current.value=D,w.current.selectionEnd=p},I=$=>{const P=$.target,D=P.value,B=new RegExp(`^${d}+$`);if(D&&!D.match(B)||P.selectionStart===null)return;const H=D.length===t||D.length>P.selectionStart?"edit":"type";C.current=H,r==null||r({event:$,name:o,value:D}),it(()=>{z()})},T=($,P)=>{w.current&&($.preventDefault(),w.current.focus(),C.current=P>=n.length?"type":"edit",z(P))};for(let $=0;$<t;$++)j.push(l.jsx(Y,{height:f,width:f,borderRadius:v,borderColor:c==="faded"?"transparent":"neutral",backgroundColor:c==="faded"?"neutral-faded":"elevation-base",align:"center",justify:"center",className:[ir.item,p===$&&ir["item--focused"]],attributes:{onMouseDown:P=>{T(P,$)},onTouchStart:P=>{T(P,$)}},children:n[$]&&l.jsx(ue,{variant:h,children:n[$]})},$));return l.jsxs(Y,{gap:2,direction:"row",className:[ir.root,u],attributes:m,children:[j,l.jsx("input",N(g(g({},_),x.attributes),{type:"text",className:ir.input,onFocus:E,onBlur:k,onPaste:S,onInput:I,value:n,name:o,maxLength:t,ref:w,autoComplete:(_==null?void 0:_.autoComplete)||"one-time-code",inputMode:s==="numeric"?"numeric":void 0,pattern:`${d}{${t}}`}))]})};ro.displayName="PinFieldControlled";const Ti=e=>{const c=e,{defaultValue:t,onChange:n}=c,r=Ee(c,["defaultValue","onChange"]),[o,s]=a.useState(t||""),i=u=>{s(u.value),n==null||n(u)};return l.jsx(ro,N(g({},r),{value:o,onChange:i}))};Ti.displayName="PinFieldUncontrolled";const $i=e=>{const{value:t}=e;return t!==void 0?l.jsx(ro,g({},e)):l.jsx(Ti,g({},e))};$i.displayName="PinField";const Tn={root:"_root_1n3rz_1",value:"_value_1n3rz_9","--duration":"_--duration_1n3rz_23","--size-small":"_--size-small_1n3rz_27","--size-medium":"_--size-medium_1n3rz_31","--color-primary":"_--color-primary_1n3rz_35","--color-critical":"_--color-critical_1n3rz_39","--color-warning":"_--color-warning_1n3rz_43","--color-positive":"_--color-positive_1n3rz_47","--color-media":"_--color-media_1n3rz_51"},Mi=e=>{const{value:t=0,min:n=0,max:r=100,color:o="primary",size:s="medium",duration:i,ariaLabel:c,className:u,attributes:m}=e,_=F(Tn.root,u,o&&Tn[`--color-${o}`],s&&Tn[`--size-${s}`],!!i&&Tn["--duration"]),d=r-n,f=t-n,p=`${Math.max(n,Math.min(r,f))/d*100-100}%`;return l.jsx("div",N(g({role:"progressbar"},m),{className:_,"aria-label":c||(m==null?void 0:m["aria-label"]),"aria-valuemax":r,"aria-valuemin":n,"aria-valuenow":t,children:l.jsx("div",{className:Tn.value,style:{"--rs-progress-value":p,"--rs-progress-duration":i?`${i}ms`:void 0}})}))};Mi.displayName="Progress";const nn={root:"_root_1r02e_1",container:"_container_1r02e_17",item:"_item_1r02e_26","item--active":"_item--active_1r02e_40","item--variant-secondary":"_item--variant-secondary_1r02e_45","--color-media":"_--color-media_1r02e_50"},oo=7,so=Math.floor(oo/2),Ii=e=>{const{total:t,activeIndex:n=0,color:r="primary",ariaLabel:o,className:s,attributes:i}=e,c=F(nn.root,s,r&&nn[`--color-${r}`]),u=o?{"aria-label":o,role:"progressbar","aria-valuenow":n,"aria-valuemin":0,"aria-valuemax":t-1}:{},m=t>oo?Math.min(t-oo,Math.max(0,n-so)):0;return l.jsx("div",N(g({},i),{className:c,children:l.jsx("div",N(g({},u),{className:nn.container,style:{"--rs-progress-indicator-mod":m},children:Array.from({length:t}).map((_,d)=>{const f=F(nn.item,d===n&&nn["item--active"],(d<n-(so-1)||d>n+(so-1))&&nn["item--variant-secondary"]);return l.jsx("div",{className:f},d)})}))}))};Ii.displayName="ProgressIndicator";const Di=a.createContext(null),Oc=()=>a.useContext(Di),io=e=>{const{onChange:t,name:n,disabled:r,value:o,children:s,hasError:i}=e,c=({event:u,value:m})=>{m&&t&&t({name:n,value:m,event:u})};return l.jsx(Di.Provider,{value:{onChange:c,disabled:r,value:o,name:n,hasError:i},children:s})};io.displayName="RadioGroupControlled";const Pi=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||null),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(io,N(g({},e),{value:r,defaultValue:void 0,onChange:s}))};Pi.displayName="RadioGroupUncontrolled";const Li=e=>{const{value:t}=e;return t!==void 0?l.jsx(io,g({},e)):l.jsx(Pi,g({},e))};Li.displayName="RadioGroup";const Ht={root:"_root_2agld_12",decorator:"_decorator_2agld_22",field:"_field_2agld_28","--size-small":"_--size-small_2agld_1","--size-medium":"_--size-medium_2agld_1","--size-large":"_--size-large_2agld_1",input:"_input_2agld_74","--error":"_--error_2agld_81","--disabled":"_--disabled_2agld_101","--size-small--m":"_--size-small--m_2agld_1","--size-medium--m":"_--size-medium--m_2agld_1","--size-large--m":"_--size-large--m_2agld_1","--size-small--l":"_--size-small--l_2agld_1","--size-medium--l":"_--size-medium--l_2agld_1","--size-large--l":"_--size-large--l_2agld_1","--size-small--xl":"_--size-small--xl_2agld_1","--size-medium--xl":"_--size-medium--xl_2agld_1","--size-large--xl":"_--size-large--xl_2agld_1"},Ai=e=>{const{children:t,value:n,onChange:r,onFocus:o,onBlur:s,size:i="medium",className:c,attributes:u,inputAttributes:m}=e,_=mt(),d=Oc(),f=(_==null?void 0:_.hasError)||e.hasError||(d==null?void 0:d.hasError),h=(_==null?void 0:_.disabled)||e.disabled||(d==null?void 0:d.disabled),v=d?d.value===n:e.checked,p=d?void 0:e.defaultChecked,b=d?d.name:e.name,x=F(Ht.root,c,f&&Ht["--error"],h&&Ht["--disabled"],i&&_e(Ht,"--size",i)),C=w=>{if(!b)return;const{checked:j}=w.target,z={name:b,value:n,checked:j,event:w};r&&r(z),d!=null&&d.onChange&&d.onChange(z)};return l.jsxs("label",N(g({},u),{className:x,children:[l.jsxs("span",{className:Ht.field,children:[l.jsx(rr,{className:Ht.input,type:"radio",checked:v,defaultChecked:p,name:b,disabled:h,value:n,onChange:C,onFocus:o,onBlur:s,attributes:m}),l.jsx("div",{className:Ht.decorator})]}),t&&l.jsx(ue,{as:"span",variant:de(i,w=>w==="large"?"body-2":w==="small"?"caption-1":"body-3"),children:t})]}))};Ai.displayName="Radio";const $n={root:"_root_f2om1_1",scrim:"_scrim_f2om1_2",content:"_content_f2om1_31","--position-cover":"_--position-cover_f2om1_37","--position-top":"_--position-top_f2om1_56","--position-bottom":"_--position-bottom_f2om1_57","--position-start":"_--position-start_f2om1_61","--position-end":"_--position-end_f2om1_62","--with-background":"_--with-background_f2om1_100"},Fi=e=>{const{children:t,backgroundSlot:n,position:r="cover",attributes:o,className:s,scrimClassName:i}=e,c=F($n.root,!!n&&$n["--with-background"],r&&$n[`--position-${r}`],s),u=F($n.scrim,i);return l.jsxs("div",N(g({},o),{className:c,children:[n,l.jsx("div",{className:u,children:l.jsx("div",{className:$n.content,children:t})})]}))};Fi.displayName="Scrim";const lt={root:"_root_nw6qs_1",input:"_input_nw6qs_25","input--placeholder":"_input--placeholder_nw6qs_52",slot:"_slot_nw6qs_57",arrow:"_arrow_nw6qs_72","--size-small":"_--size-small_nw6qs_1","--size-medium":"_--size-medium_nw6qs_1","--size-large":"_--size-large_nw6qs_1","--size-xlarge":"_--size-xlarge_nw6qs_1","--variant-faded":"_--variant-faded_nw6qs_137","--variant-headless":"_--variant-headless_nw6qs_149","--status-error":"_--status-error_nw6qs_157","--disabled":"_--disabled_nw6qs_173","--size-small--m":"_--size-small--m_nw6qs_1","--size-medium--m":"_--size-medium--m_nw6qs_1","--size-large--m":"_--size-large--m_nw6qs_1","--size-xlarge--m":"_--size-xlarge--m_nw6qs_1","--size-small--l":"_--size-small--l_nw6qs_1","--size-medium--l":"_--size-medium--l_nw6qs_1","--size-large--l":"_--size-large--l_nw6qs_1","--size-xlarge--l":"_--size-xlarge--l_nw6qs_1","--size-small--xl":"_--size-small--xl_nw6qs_1","--size-medium--xl":"_--size-medium--xl_nw6qs_1","--size-large--xl":"_--size-large--xl_nw6qs_1","--size-xlarge--xl":"_--size-xlarge--xl_nw6qs_1"},Vi=e=>{const{startSlot:t,icon:n,size:r}=e;return!t&&!n?null:n?l.jsx("div",{className:lt.slot,children:l.jsx(Ne,{size:de(r,o=>o==="large"?5:o==="xlarge"?6:4),svg:n})}):l.jsx("div",{className:lt.slot,children:t})},Hc=()=>l.jsxs("svg",{viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",children:[l.jsx("path",{d:"M7 16L12 21L17 16",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),l.jsx("path",{d:"M17 8L12 3L7 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})]}),Bi=e=>{const{disabled:t,size:n}=e;return l.jsx("div",{className:lt.arrow,children:l.jsx(Ne,{svg:Hc,color:t?"disabled":"neutral-faded",size:de(n,r=>r==="large"||r==="xlarge"?5:4)})})},qc=e=>{const{startSlot:t,icon:n,size:r,inputAttributes:o,onFocus:s,onBlur:i,disabled:c,name:u,value:m,defaultValue:_,onChange:d,onClick:f,placeholder:h,id:v,children:p}=e,[b,x]=a.useState(m===void 0?!_:!m),C=F(lt.input,h&&b&<["input--placeholder"]),w=j=>{const z=j.target.value;m===void 0&&x(!z),d&&d({name:u,value:z,event:j})};return a.useEffect(()=>{m!==void 0&&x(!m)},[m]),l.jsxs(l.Fragment,{children:[l.jsx(Vi,{startSlot:t,icon:n,size:r}),l.jsxs("select",N(g({},o),{onFocus:s||(o==null?void 0:o.onFocus),onBlur:i||(o==null?void 0:o.onBlur),onClick:f||(o==null?void 0:o.onClick),className:C,disabled:c,name:u,value:m,defaultValue:_,onChange:w,id:v,children:[h&&l.jsx("option",{value:"",children:h}),p]})),l.jsx(Bi,{disabled:c,size:r})]})},Oi=e=>{var f,h;const t=mt(),n=et(e.id),r=N(g({},e),{id:((f=t==null?void 0:t.attributes)==null?void 0:f.id)||((h=e.inputAttributes)==null?void 0:h.id)||n,disabled:(t==null?void 0:t.disabled)||e.disabled,hasError:(t==null?void 0:t.hasError)||e.hasError,inputAttributes:g(g({},e.inputAttributes),t==null?void 0:t.attributes)}),{children:o,className:s,size:i="medium",variant:c="outline",hasError:u,disabled:m,attributes:_}=r,d=F(lt.root,s,i&&_e(lt,"--size",i),u&<["--status-error"],m&<["--disabled"],c&<[`--variant-${c}`]);return l.jsx("div",N(g({},_),{className:d,children:o(r)}))},Hi=e=>{const{children:t,disabled:n,onClick:r,onFocus:o,onBlur:s,inputAttributes:i,startSlot:c,icon:u,size:m,placeholder:_,value:d,name:f,id:h}=e;return l.jsxs(l.Fragment,{children:[l.jsxs(qe,{className:lt.input,disabled:n,disableFocusRing:!0,onClick:r,attributes:g({onFocus:o||(i==null?void 0:i.onFocus),onBlur:s||(i==null?void 0:i.onBlur)},i),children:[l.jsx(Vi,{startSlot:c,icon:u,size:m}),t?l.jsx(ue,{maxLines:1,children:t}):null,_&&!t?l.jsx(ue,{color:"disabled",children:_}):null,l.jsx(Bi,{disabled:n,size:m})]}),l.jsx("input",{type:"hidden",value:typeof d=="string"?d:JSON.stringify(d),name:f,id:h})]})},lo=e=>{const r=e,{value:t}=r,n=Ee(r,["value"]);return l.jsx(Te.Item,N(g({},n),{className:[n.className,lt.option],color:"neutral",attributes:N(g({},n.attributes),{value:t,role:"option"})}))};lo.displayName="Select.Option";const ao=e=>{const{label:t,children:n}=e;return l.jsxs(Y,{attributes:{role:"group"},gap:1,children:[l.jsx(Y,{paddingInline:3,paddingTop:3,children:l.jsx(ue,{variant:"caption-1",color:"neutral-faded",children:t})}),l.jsx(Y.Item,{children:n})]})};ao.displayName="Select.OptionGroup";const co=e=>{const{children:t,value:n,name:r,placeholder:o,size:s,multiple:i,width:c="trigger",position:u,fallbackPositions:m}=e,_=a.useRef(null),d=a.useRef(""),f=a.useRef(null),h=a.useRef(null),v=[],p=[],b=i?n.length>0:n,x=j=>a.Children.map(j,(z,E)=>{if(!a.isValidElement(z))return null;if(z.type===lo){const k=z,S=k.props,T=(i?n.includes(S.value):S.value===n)||!o&&!n&&E===0;return T&&p.push(S),v.push({value:S.value,text:typeof S.children=="string"?S.children:S.value}),a.cloneElement(k,{key:S.value,onClick:$=>{var P,D,B;if((P=S.onClick)==null||P.call(S,$),i){const H=T?n.filter(L=>L!==S.value):[...n,S.value];(D=e.onChange)==null||D.call(e,{value:H,name:r})}else(B=e.onChange)==null||B.call(e,{value:S.value,name:r})},startSlot:(S==null?void 0:S.startSlot)||b&&l.jsx(Ne,{svg:T?Wr:null}),attributes:N(g({},k.props.attributes),{ref:T?_:void 0})})}if(z.type===ao){const k=z,S=k.props;return a.cloneElement(k,{key:S.label,children:x(S.children)})}return null}),C=x(t),w=j=>{const z=j.key;if(z.length!==1||!z.match(/[\w\s]/))return;f.current&&clearTimeout(f.current),d.current+=z.toLowerCase();const E=v.find(k=>k.text.toLowerCase().startsWith(d.current));if(E&&h.current){const k=h.current.querySelector(`[value="${E.value}"]`);k==null||k.focus()}f.current=setTimeout(()=>{d.current=""},1e3)};return l.jsx(Oi,N(g({},e),{children:j=>l.jsxs(Te,{width:c,disableHideAnimation:!0,position:u!=null?u:"bottom",fallbackPositions:m!=null?m:u?void 0:["bottom","top"],fallbackAdjustLayout:!0,fallbackMinHeight:"150px",borderRadius:de(s,z=>z==="large"||z==="xlarge"?"medium":"small"),initialFocusRef:_,children:[l.jsx(Te.Trigger,{children:z=>{const E=N(g({},j),{inputAttributes:g(g({},j.inputAttributes),z)});return l.jsx(Hi,N(g({},E),{value:n,children:p==null?void 0:p.map(k=>k.children).join(", ")}))}}),l.jsx(Te.Content,{attributes:{ref:h,onKeyDown:w,role:void 0},children:C})]})}))};co.displayName="SelectCustomControlled";const qi=e=>{const c=e,{defaultValue:t,onChange:n,multiple:r}=c,o=Ee(c,["defaultValue","onChange","multiple"]),[s,i]=a.useState(t||(r?[]:""));return l.jsx(co,N(g({},o),{multiple:r,value:s,onChange:u=>{i(u.value),n==null||n(u)}}))};qi.displayName="SelectCustomUncontrolled";const Wi=e=>{const{value:t}=e;return t!==void 0?l.jsx(co,g({},e)):l.jsx(qi,g({},e))};Wi.displayName="SelectCustom";const Mn=e=>{const{children:t}=e;return l.jsx(Oi,N(g({},e),{children:n=>{const{options:r}=n,o=a.Children.toArray(t).some(i=>a.isValidElement(i)&&i.type==="option");return!(r||o)?l.jsx(Hi,N(g({},n),{children:t})):l.jsxs(qc,N(g({},n),{children:[r==null?void 0:r.map(i=>l.jsx("option",{value:i.value,disabled:i.disabled,children:i.label},i.value)),t]}))}}))};Mn.displayName="Select",Mn.Custom=Wi,Mn.Option=lo,Mn.OptionGroup=ao;const Wc={root:"_root_xavah_1"},Ri=e=>{const{borderRadius:t="small",width:n,height:r,className:o,attributes:s}=e,i=F(Wc.root,o);return l.jsx(Y,{backgroundColor:"disabled",width:n,height:r,borderRadius:t,className:i,attributes:s})};Ri.displayName="Skeleton";const Ui=e=>{const t=e.toString().split(".")[1];return(t==null?void 0:t.length)||0},uo=(e,t)=>{const n=t%1!==0,r=Math.round(e/t)*t;if(n){const o=Ui(t);return Number(r.toFixed(o))}return r},Yi=({event:e,vertical:t})=>t?e instanceof MouseEvent?e.clientY:e.changedTouches[0].clientY:e instanceof MouseEvent?e.clientX:e.changedTouches[0].clientX,gt={root:"_root_7bdnx_1",thumb:"_thumb_7bdnx_13","thumb--active":"_thumb--active_7bdnx_13",input:"_input_7bdnx_13",bar:"_bar_7bdnx_18",selection:"_selection_7bdnx_34",tooltip:"_tooltip_7bdnx_39",thumbs:"_thumbs_7bdnx_61","--orientation-horizontal":"_--orientation-horizontal_7bdnx_1","--orientation-vertical":"_--orientation-vertical_7bdnx_1","--disabled":"_--disabled_7bdnx_220"},mo=a.forwardRef((e,t)=>{const{name:n,value:r,disabled:o,active:s,position:i,max:c,min:u,step:m,onChange:_,onDragStart:d,renderValue:f,tooltipRef:h,inputRef:v,orientation:p}=e,b=a.useId(),x=F(gt.thumb,s&>["thumb--active"]),C=Ui(m),w=f?f({value:r}):r.toFixed(C),j=z=>{_(+z.target.value,{native:!0})};return l.jsxs(l.Fragment,{children:[l.jsx("input",{className:gt.input,type:"range",name:n,value:r,onChange:j,disabled:o,max:c,min:u,step:m,"aria-labelledby":b,"aria-orientation":p,ref:v}),l.jsx("div",{ref:t,className:x,onMouseDown:d,onTouchStart:d,style:{"--ts-slider-thumb-position":`${i}%`},id:b,"aria-hidden":"true",children:f!==!1&&l.jsx(Qt,{colorMode:"inverted",children:l.jsx(ue,{variant:"caption-1",weight:"medium",className:gt.tooltip,attributes:{ref:h},children:w})})})]})});mo.displayName="SliderThumb";const Gi=16,lr=e=>{var fe,$e,De;const{name:t,range:n,max:r,min:o,step:s=1,onChange:i,onChangeCommit:c,renderValue:u,className:m,attributes:_,orientation:d="horizontal"}=e,f=Ve(i),h=Ve(c),v=d==="vertical",p=n&&e.minValue!==void 0?uo(e.minValue,s):void 0,b=uo(n?e.maxValue:e.value,s),x=(fe=e.minName)!=null?fe:e.name,C=($e=e.maxName)!=null?$e:e.name,w=a.useRef(null),j=a.useRef(null),z=a.useRef(null),E=a.useRef(null),k=a.useRef(null),S=a.useRef(null),I=a.useRef(null),[T,$]=a.useState(null),[P]=xt(),D=mt(),B=et(),H=((De=D==null?void 0:D.attributes)==null?void 0:De.id)||B,L=`${H}-min`,V=`${H}-max`,U=(D==null?void 0:D.disabled)||e.disabled,q=F(gt.root,U&>["--disabled"],d&>[`--orientation-${d}`],m),ie=a.useCallback(re=>{const Z=w.current;if(!Z)return;const le=v?Z.clientHeight:Z.clientWidth,be=Z.getBoundingClientRect()[v?"top":"left"]+Gi/2,Le=re-be,Re=le-Gi;let je=Le/Re;(P||v)&&(je=1-je);let ve=(r-o)*je+o;return ve=Math.max(o,Math.min(r,ve)),uo(ve,s)},[r,o,P,s,v]),ee=re=>(re-o)/(r-o)*100,K=a.useCallback(re=>{var Ue,ot,Ye;if(v)return;const Z=re===L?E:k,le=re===L?j:z;let he=0;const be=(Ue=w.current)==null?void 0:Ue.getBoundingClientRect(),Le=(ot=Z.current)==null?void 0:ot.getBoundingClientRect(),Re=(Ye=le.current)==null?void 0:Ye.getBoundingClientRect(),je=be==null?void 0:be.left,ve=je&&je+(be==null?void 0:be.width),ye=Re&&Le&&Re.left-Le.width/2,Pe=Re&&Le&&Re.left+Le.width/2;ye&&je&&ye<je&&(he=Le.width/2-8),Pe&&ve&&Pe>ve&&(he=-(Le.width/2-8));const ke=Z.current;ke&&ke.style.setProperty("--rs-slider-tooltip-offset",`${he||0}px`)},[L,v]),te=a.useCallback((re,Z={})=>{var he,be;if(!n)return;const le={minValue:re,maxValue:b,name:t,minName:x,maxName:C};Z.commit&&((he=h.current)==null||he.call(h,le)),Z.native&&((be=f.current)==null||be.call(f,le)),rs(S.current,re.toString())},[b,t,x,C,n,h,f]),J=a.useCallback((re,Z={})=>{var he,be;const le=n?{minValue:p,maxValue:re,name:t,minName:x,maxName:C}:{value:re,name:t};Z.commit&&((he=h.current)==null||he.call(h,le)),Z.native&&((be=f.current)==null||be.call(f,le)),rs(I.current,re.toString())},[p,t,x,C,n,f,h]),ce=({nativeEvent:re})=>{if(U)return;let Z,le;const he=Yi({event:re,vertical:v}),be=ie(he);[{ref:j,id:L},{ref:z,id:V}].forEach(Re=>{if(!Re.ref.current)return;const ve=Re.ref.current.getBoundingClientRect(),ye=Math.abs((v?ve.top:ve.left)-he);(Z===void 0||ye<=Z)&&(Z=ye,le=Re.id)}),!(!le||be===void 0)&&(le===L&&te(be),le===V&&J(be),Vn(),Rr(),$(le))},X=re=>{U||(re.stopPropagation(),$(L))},ne=re=>{U||(re.stopPropagation(),$(V))},pe=a.useCallback(()=>{T===L&&p!==void 0&&te(p,{commit:!0}),T===V&&J(b,{commit:!0}),Bn(),Ur(),$(null)},[p,b,te,J,T,L,V]),O=a.useCallback(re=>{if(!T)return;const Z=Yi({event:re,vertical:v}),le=ie(Z);if(le===void 0)return;let he=T;T===L&&le>b&&(he=V),T===V&&p&&le<p&&(he=L),he===L&&te(le),he===V&&J(le),T!==he&&$(he)},[T,p,b,ie,J,te,V,L,v]);a.useEffect(()=>{K(L),K(V)},[L,V,p,b,K]),a.useEffect(()=>(window.addEventListener("mouseup",pe),window.addEventListener("touchend",pe),window.addEventListener("mousemove",O),window.addEventListener("touchmove",O),()=>{window.removeEventListener("mouseup",pe),window.removeEventListener("touchend",pe),window.removeEventListener("mousemove",O),window.removeEventListener("touchmove",O)}),[pe,O]);const R=p&&ee(p),se=ee(b);return l.jsxs("div",N(g({},_),{className:q,onMouseDown:ce,onTouchStart:ce,children:[l.jsx("div",{className:gt.bar,ref:w,children:l.jsx("div",{className:gt.selection,style:{"--rs-slider-selection-start":`${R||0}%`,"--rs-slider-selection-size":`${se-(R||0)}%`}})}),l.jsxs("div",{className:gt.thumbs,children:[p!==void 0&&R!==void 0&&l.jsx(mo,{id:L,active:L===T,name:x,disabled:U,onChange:te,value:p,onDragStart:X,position:R,max:r,min:o,ref:j,tooltipRef:E,inputRef:S,renderValue:u,step:s,orientation:d}),l.jsx(mo,{id:V,active:V===T,name:C,disabled:U,onChange:J,value:b,onDragStart:ne,position:se,max:r,min:o,ref:z,tooltipRef:k,inputRef:I,renderValue:u,step:s,orientation:d})]})]}))};lr.displayName="SliderControlled";const Ki=(e,t,n)=>Math.min(Math.max(e,t),n),Xi=e=>{const{min:t,max:n,onChange:r,range:o}=e,s="defaultMinValue"in e&&e.defaultMinValue!==void 0&&e.defaultMinValue||"defaultValue"in e&&e.defaultValue!==void 0&&e.defaultValue||t,i="defaultMaxValue"in e&&e.defaultMaxValue!==void 0&&e.defaultMaxValue||"defaultValue"in e&&e.defaultValue!==void 0&&e.defaultValue||(o?n:t),[c,u]=a.useState(Ki(s,t,n)),[m,_]=a.useState(Ki(i,t,n)),d=h=>{o||(_(h.value),r==null||r(h))},f=h=>{o&&(u(h.minValue),_(h.maxValue),r==null||r(h))};return o?l.jsx(lr,N(g({},e),{min:t,max:n,minValue:c,maxValue:m,defaultMinValue:void 0,defaultMaxValue:void 0,onChange:f})):l.jsx(lr,N(g({},e),{min:t,max:n,value:m,defaultValue:void 0,onChange:d}))};Xi.displayName="SliderUncontrolled";const Ji=e=>{const o=e,{min:t=0,max:n=100}=o,r=Ee(o,["min","max"]);return"value"in e&&e.value!==void 0||"minValue"in e&&"maxValue"in e&&e.minValue!==void 0&&e.maxValue!==void 0?l.jsx(lr,N(g({},r),{min:t,max:n})):l.jsx(Xi,N(g({},r),{min:t,max:n}))};Ji.displayName="Slider";const Zi={root:"_root_1as3o_1","--animated":"_--animated_1as3o_6"},_o=e=>{const{children:t,active:n,attributes:r}=e,o=a.useRef(null),s=a.useRef(!1),[i,c]=a.useState(n?"auto":null),u=F(Zi.root,s.current&&i!=="auto"&&Zi["--animated"]),m=_=>{_.propertyName==="height"&&c(n?"auto":null)};return a.useEffect(()=>{it(()=>{s.current=!0})},[]),Se(()=>{const _=o.current;!_||!s.current||(n?(_.style.height="auto",requestAnimationFrame(()=>{const d=_.clientHeight;_.style.height="0",requestAnimationFrame(()=>{c(d)})})):(_.style.height=`${_.clientHeight}px`,requestAnimationFrame(()=>{c(0)})))},[n]),l.jsx("div",N(g({},r),{className:u,ref:o,style:i!==null?{height:i,overflow:i==="auto"?"visible":void 0}:void 0,onTransitionEnd:m,role:"region",hidden:!n&&i===null,children:t}))};_o.displayName="Expandable";const Rc={verticalDivider:"_verticalDivider_oa23g_1"},Uc=e=>{const{title:t,subtitle:n,children:r,direction:o,className:s,attributes:i,labelDisplay:c,step:u,completed:m,active:_,last:d}=e,f=c&&de(c,v=>v==="hidden"),h=l.jsx(Y,{gap:3,grow:!0,children:l.jsxs(Y.Item,{children:[l.jsx(ue,{variant:"body-3",weight:"medium",children:t}),l.jsx(ue,{variant:"caption-1",color:"neutral-faded",children:n})]})});return l.jsxs(Y,{attributes:i,className:s,children:[l.jsxs(Y,{direction:"row",gap:2,align:"center",position:"static",children:[l.jsxs(Y.Item,{children:[l.jsx(Y,{align:"center",justify:"center",backgroundColor:_||m?"primary":"neutral-faded",borderColor:_||m?void 0:"neutral-faded",borderRadius:"circular",as:"span",width:8,height:8,zIndex:5,children:l.jsx(ue,{variant:"body-3",weight:_?"bold":"medium",children:m?l.jsx(Ne,{svg:Wr,size:4}):u})}),o==="column"&&!d&&l.jsx(pn,{vertical:!0,className:Rc.verticalDivider})]}),c?l.jsx(Mt,{hide:f,children:h}):h]}),o==="column"&&r&&l.jsx(_o,{active:_,children:l.jsx(Y,{paddingStart:10,paddingTop:2,children:r})})]})},fo=e=>null,ho=e=>{const{children:t,direction:n="row",activeId:r,labelDisplay:o,gap:s=3,className:i,attributes:c}=e,u=n==="column",m=a.Children.count(t);return l.jsx(Y,{attributes:c,direction:n,align:u?"stretch":"center",className:i,gap:s,wrap:!1,children:a.Children.map(t,(_,d)=>{if(!a.isValidElement(_)||_.type!==fo)return null;const f=_.props,h=f.id||`${d}`;return l.jsxs(a.Fragment,{children:[l.jsx(Uc,N(g({},f),{id:h,active:(r==null?void 0:r.toString())===h,step:d+1,last:d===m-1,direction:n,labelDisplay:o})),!u&&d<m-1&&l.jsx(Y,{grow:!0,children:l.jsx(pn,{})})]},d)})})};ho.Item=fo,ho.displayName="Stepper",fo.displayName="Stepper.Item";const qt={root:"_root_icbs0_1","--reversed":"_--reversed_icbs0_9",input:"_input_icbs0_14",area:"_area_icbs0_26",thumb:"_thumb_icbs0_30",hitbox:"_hitbox_icbs0_76","--size-small":"_--size-small_icbs0_1","--size-medium":"_--size-medium_icbs0_1","--size-large":"_--size-large_icbs0_1","--size-small--m":"_--size-small--m_icbs0_1","--size-medium--m":"_--size-medium--m_icbs0_1","--size-large--m":"_--size-large--m_icbs0_1","--size-small--l":"_--size-small--l_icbs0_1","--size-medium--l":"_--size-medium--l_icbs0_1","--size-large--l":"_--size-large--l_icbs0_1","--size-small--xl":"_--size-small--xl_icbs0_1","--size-medium--xl":"_--size-medium--xl_icbs0_1","--size-large--xl":"_--size-large--xl_icbs0_1"},Qi=e=>{var C;const{children:t,name:n,checked:r,size:o="medium",reversed:s,defaultChecked:i,onChange:c,onFocus:u,onBlur:m,className:_,attributes:d}=e,f=F(qt.root,o&&_e(qt,"--size",o),s&&qt["--reversed"],_),h=mt(),v=et((h==null?void 0:h.attributes.id)||e.id||((C=e.inputAttributes)==null?void 0:C.id)),p=g(g({},e.inputAttributes),h==null?void 0:h.attributes),b=(h==null?void 0:h.disabled)||e.disabled,x=w=>{c&&c({name:n,event:w,checked:w.target.checked})};return l.jsxs("label",N(g({},d),{className:f,children:[l.jsx("input",N(g({type:"checkbox"},p),{className:qt.input,name:n,checked:r,defaultChecked:i,disabled:b,onChange:x,onFocus:u||(p==null?void 0:p.onFocus),onBlur:m||(p==null?void 0:p.onBlur),id:v})),l.jsxs("span",{className:qt.area,"aria-hidden":"true",children:[l.jsx("span",{className:qt.hitbox}),l.jsx("span",{className:qt.thumb})]}),t&&l.jsx(ue,{variant:de(o,w=>w==="large"?"body-2":w==="medium"?"body-3":"caption-1"),weight:"medium",color:b?"disabled":void 0,children:t})]}))};Qi.displayName="Switch";const Je={root:"_root_xlh1v_13",table:"_table_xlh1v_26",row:"_row_xlh1v_32",cell:"_cell_xlh1v_46",head:"_head_xlh1v_61",body:"_body_xlh1v_61","cell--align-start":"_cell--align-start_xlh1v_1","cell--align-center":"_cell--align-center_xlh1v_1","cell--align-end":"_cell--align-end_xlh1v_1","cell--valign-start":"_cell--valign-start_xlh1v_1","cell--valign-center":"_cell--valign-center_xlh1v_1","cell--valign-end":"_cell--valign-end_xlh1v_1","cell--width-auto":"_cell--width-auto_xlh1v_77","--row-highlighted":"_--row-highlighted_xlh1v_81","--border-outer":"_--border-outer_xlh1v_85","--border-column":"_--border-column_xlh1v_90","--fade-start":"_--fade-start_xlh1v_100","--fade-end":"_--fade-end_xlh1v_101"},el=(e,t={})=>{const{disabled:n}=t,[r]=xt(),[o,s]=a.useState(null),i=a.useCallback(()=>{const c=e.current;if(!c)return;c.clientWidth<c.scrollWidth||s(null);const m=c.scrollLeft*(r?-1:1),_=m>1,d=m+c.clientWidth<c.scrollWidth-1;if(d&&_)return s("both");if(_)return s("start");if(d)return s("end")},[r,e]);return Se(()=>{const c=e.current;if(!c||n)return;const u=Er(i);return requestAnimationFrame(()=>i()),window.addEventListener("resize",u),c.addEventListener("scroll",u),()=>{window.removeEventListener("resize",u),c.removeEventListener("scroll",u)}},[r,n]),o},tl=e=>{const{minWidth:t,rowSpan:n,colSpan:r,align:o,verticalAlign:s,tagName:i,padding:c,paddingInline:u,paddingBlock:m,children:_,className:d,attributes:f}=e,h=e.width==="auto"?"0px":e.width,v=ct({width:h,minWidth:t}),p=F(Je.cell,v.classNames,(h===0||h==="0px")&&Je["cell--width-auto"],o&&Je[`cell--align-${o}`],s&&Je[`cell--valign-${s}`],d),b=g(g(g({},v.variables),G("--rs-table-p-vertical",m!=null?m:c)),G("--rs-table-p-horizontal",u!=null?u:c));return l.jsx(i,N(g({},f),{className:p,rowSpan:n,colSpan:r,style:b,children:_}))},nl=e=>l.jsx(tl,N(g({},e),{tagName:"td"})),rl=e=>l.jsx(tl,N(g({},e),{tagName:"th"})),ol=e=>{const{highlighted:t,children:n,className:r,attributes:o}=e,s=e.onClick||(o==null?void 0:o.onClick),i=F(Je.row,t&&Je["--row-highlighted"],r);return l.jsx("tr",N(g({},o),{className:i,onClick:s,tabIndex:s?0:void 0,children:n}))},ar=e=>{const{children:t,attributes:n,className:r}=e;return l.jsx("tbody",N(g({},n),{className:F(Je.body,r),children:t}))},go=e=>{const{children:t,attributes:n,className:r}=e;return l.jsx("thead",N(g({},n),{className:F(Je.head,r),children:t}))},Wt=e=>{const{children:t,border:n,columnBorder:r,className:o,attributes:s}=e,i=a.useRef(null),c=el(i),u=F(Je.root,o,n&&Je["--border-outer"],r&&Je["--border-column"],(c==="start"||c==="both")&&Je["--fade-start"],(c==="end"||c==="both")&&Je["--fade-end"]),[m]=a.Children.toArray(t),_=a.isValidElement(m),d=_&&m.type===ar,f=_&&m.type===go;return l.jsx("div",N(g({},s),{className:u,ref:i,children:l.jsx("table",{className:Je.table,children:d||f?t:l.jsx(ar,{children:t})})}))};Wt.Cell=nl,Wt.Heading=rl,Wt.Row=ol,Wt.Body=ar,Wt.Head=go,Wt.displayName="Table",nl.displayName="TableCell",rl.displayName="TableHeading",ol.displayName="TableRow",ar.displayName="TableBody",go.displayName="TableHead";const sl=a.createContext({}),Yc=sl.Provider,po=e=>{const r=a.useContext(sl),{id:t}=r,n=Ee(r,["id"]);return N(g({},n),{panelId:e!==void 0?`${t}-tabs-panel-${e}`:void 0,buttonId:e!==void 0?`${t}-tabs-button-${e}`:void 0})},bo=e=>{const{children:t,value:n,onChange:r,onSilentChange:o,itemWidth:s,variant:i,name:c,direction:u="row",size:m="medium"}=e,_=et(),d=a.useRef(null),f=a.useRef(d.current),h=a.useRef(null),[v,p]=a.useState({scaleX:0,scaleY:0,left:0,top:0,status:"idle"}),b=x=>{x!==void 0&&o&&o({value:x,name:c})};return l.jsx(Yc,{value:{value:n,name:c,size:m,direction:u,itemWidth:s,variant:i,onChange:r,id:_,setDefaultValue:b,elActiveRef:d,elPrevActiveRef:f,elScrollableRef:h,selection:v,setSelection:p},children:t})};bo.displayName="TabsControlled";const il=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t),s=({value:c})=>{o(c),n&&n({value:c})},i=({value:c})=>{o(c)};return l.jsx(bo,N(g({},e),{onChange:s,onSilentChange:i,value:r,defaultValue:void 0}))};il.displayName="TabsUncontrolled";const xe={root:"_root_9xi7k_25",list:"_list_9xi7k_37",inner:"_inner_9xi7k_44",listItem:"_listItem_9xi7k_51",button:"_button_9xi7k_56",buttonContent:"_buttonContent_9xi7k_72",icon:"_icon_9xi7k_80",radio:"_radio_9xi7k_85",item:"_item_9xi7k_93","--item-disabled":"_--item-disabled_9xi7k_97","--item-active":"_--item-active_9xi7k_97",selector:"_selector_9xi7k_112","--selector-hidden":"_--selector-hidden_9xi7k_130","--selector-animated":"_--selector-animated_9xi7k_134",control:"_control_9xi7k_140","control--active":"_control--active_9xi7k_151","control--next":"_control--next_9xi7k_161","control--prev":"_control--prev_9xi7k_165",panel:"_panel_9xi7k_169","--panel-hidden":"_--panel-hidden_9xi7k_177","--scrollable":"_--scrollable_9xi7k_181","--direction-row":"_--direction-row_9xi7k_206","--direction-column":"_--direction-column_9xi7k_249","--variant-borderless":"_--variant-borderless_9xi7k_295","--variant-pills":"_--variant-pills_9xi7k_296","--variant-pills-elevated":"_--variant-pills-elevated_9xi7k_297","--size-medium":"_--size-medium_9xi7k_374","--size-large":"_--size-large_9xi7k_379","--item-width-equal":"_--item-width-equal_9xi7k_384","--fade-start":"_--fade-start_9xi7k_403","--fade-end":"_--fade-end_9xi7k_404"},vo=a.forwardRef((e,t)=>{const{value:n,children:r,icon:o,href:s,disabled:i,attributes:c}=e,{onChange:u,panelId:m,buttonId:_,name:d,size:f,value:h,selection:v,elActiveRef:p,elPrevActiveRef:b,elScrollableRef:x}=po(n),C=a.useRef(null),w=h===n,j=w&&v.status==="idle",z=F(xe.item,j&&xe["--item-active"],i&&xe["--item-disabled"]),E=!!d,k={role:"tab",tabIndex:w?0:-1,"aria-selected":w},S=a.useCallback(()=>{b.current=p.current,p.current=C.current},[p,b]),I=()=>{var U,q;if(s&&!u)return;const T=x.current,$=(U=C.current)==null?void 0:U.parentElement,P=(q=p.current)==null?void 0:q.parentElement;if(u&&u({value:n,name:d}),!T||!$||!P||T.scrollWidth===T.clientWidth||!x.current)return;const D=48,B=C.current&&za(C.current,ie=>ie.hasAttribute("data-rs-tabs-item"));if(!B)return;const H=x.current,L=B.offsetLeft-H.scrollLeft,V=H.scrollLeft+H.clientWidth-(B.offsetLeft+B.clientWidth);(L<D||V<D)&&x.current.scrollTo({left:B.offsetLeft+B.clientWidth/2-H.clientWidth/2,behavior:"smooth"})};return Se(()=>{w&&S()},[w,S]),l.jsx("div",N(g({},c),{className:z,ref:C,role:"presentation",children:l.jsxs(qe,{ref:t,href:s,insetFocus:!0,disabled:i,onClick:d?void 0:I,className:xe.button,as:d?"label":void 0,attributes:N(g({},!E&&k),{"aria-controls":m,id:_}),children:[d&&l.jsx(rr,{type:"radio",name:d,value:n,checked:j,onChange:I,className:xe.radio}),l.jsxs("span",{className:xe.buttonContent,children:[o&&l.jsx(Ne,{svg:o,className:xe.icon,size:4}),r&&l.jsx(ue,{variant:f==="large"?"body-2":"body-3",weight:"medium",children:r})]})]})}))});vo.displayName="Tabs.Item";const ll=(e,t)=>e===t||!e?null:e.classList.contains(xe.listItem)?e:ll(e.parentElement,t),al=e=>{const{children:t,className:n,attributes:r}=e,{value:o,setDefaultValue:s,itemWidth:i,variant:c,name:u,direction:m,size:_,selection:d,setSelection:f,elActiveRef:h,elPrevActiveRef:v,elScrollableRef:p}=po(),[b]=xt(),x=el(p,{disabled:i==="equal"}),C=F(xe.root,_&&xe[`--size-${_}`],m&&xe[`--direction-${m}`],i&&xe[`--item-width-${i}`],c&&xe[`--variant-${c}`],x&&xe["--scrollable"],(x==="start"||x==="both")&&xe["--fade-start"],(x==="end"||x==="both")&&xe["--fade-end"],n),w=F(xe.selector,d.status==="idle"&&xe["--selector-hidden"],d.status==="animated"&&xe["--selector-animated"]),j=()=>{p.current.scrollBy({left:Math.ceil(p.current.clientWidth/2)*(b?-1:1),behavior:"smooth"})},z=()=>{p.current.scrollBy({left:Math.ceil(p.current.clientWidth/2)*(b?1:-1),behavior:"smooth"})},E=()=>{f(I=>N(g({},I),{status:"idle"}))},k=a.useCallback(I=>{if(!p.current)return null;const T=ll(I,p.current);return T?{scaleX:T.clientWidth,scaleY:T.clientHeight,top:T.offsetTop,left:T.offsetLeft}:null},[p]),{ref:S}=tt({"ArrowLeft, ArrowUp":()=>{ls(p.current)},"ArrowRight, ArrowDown":()=>{is(p.current)},Home:()=>{as(p.current)},End:()=>{cs(p.current)}},[],{preventDefault:!0,disabled:!!u});return Se(()=>{if(o)return;const I=a.Children.toArray(t)[0];if(!a.isValidElement(I)||!I||I.type!==vo)return;const T=I.props;s(T.value)},[o]),Se(()=>{if(!v.current||v.current===h.current)return;const I=k(v.current);I&&f(N(g({},I),{status:"prepared"}))},[o,k]),Se(()=>{if(d.status!=="prepared"||!h.current)return;const I=k(h.current);I&&f(N(g({},I),{status:"animated"}))},[d]),l.jsxs("div",N(g({},r),{className:C,children:[l.jsx("div",{className:xe.inner,ref:p,children:l.jsxs("div",{className:xe.list,role:"tablist",ref:S,children:[a.Children.map(t,(I,T)=>{if(!a.isValidElement(I))return null;const $=I.props;return l.jsx("div",{className:xe.listItem,"data-rs-tabs-item":!0,children:I},$.value||I.key||T)}),l.jsx("div",{onTransitionEnd:E,className:w,style:{"--rs-tab-selection-x":d.left,"--rs-tab-selection-y":d.top,"--rs-tab-selection-scale-x":d.scaleX,"--rs-tab-selection-scale-y":d.scaleY}})]})}),l.jsx(qe,{onClick:z,touchHitbox:!0,attributes:{"aria-hidden":!0,tabIndex:-1},className:[xe.control,xe["control--prev"],(x==="start"||x==="both")&&xe["control--active"]],children:l.jsx(Ne,{svg:er,size:5})}),l.jsx(qe,{onClick:j,touchHitbox:!0,attributes:{"aria-hidden":!0,tabIndex:-1},className:[xe.control,xe["control--next"],(x==="end"||x==="both")&&xe["control--active"]],children:l.jsx(Ne,{svg:en,size:5})})]}))};al.displayName="Tabs.List";const cl=e=>{const{value:t,children:n,className:r,attributes:o}=e,{value:s,panelId:i,buttonId:c}=po(t),[u,m]=a.useState(!0),_=a.useRef(null),d=t===s,f=F(xe.panel,!d&&xe["--panel-hidden"],r);return a.useEffect(()=>{const h=_.current;if(!h)return;const v=()=>{m(!qn(h).length)};v();const p=new MutationObserver(v);return p.observe(h,{childList:!0,subtree:!0,attributes:!0,attributeFilter:["tabindex","disabled","href"]}),()=>p.disconnect()},[]),l.jsx("div",N(g({},o),{ref:_,className:f,tabIndex:u?0:void 0,role:"tabpanel",id:i,"aria-labelledby":c,children:d&&n}))};cl.displayName="Tabs.Panel";const In=e=>{const{value:t}=e;return t!==void 0?l.jsx(bo,g({},e)):l.jsx(il,g({},e))};In.Item=vo,In.List=al,In.Panel=cl,In.displayName="Tabs";const Rt={root:"_root_jz0ss_1",input:"_input_jz0ss_20","--size-medium":"_--size-medium_jz0ss_1","--size-large":"_--size-large_jz0ss_1","--size-xlarge":"_--size-xlarge_jz0ss_1","--variant-faded":"_--variant-faded_jz0ss_87","--variant-headless":"_--variant-headless_jz0ss_95","--status-error":"_--status-error_jz0ss_103","--resize-none":"_--resize-none_jz0ss_114","--resize-auto":"_--resize-auto_jz0ss_115","--size-medium--m":"_--size-medium--m_jz0ss_1","--size-large--m":"_--size-large--m_jz0ss_1","--size-xlarge--m":"_--size-xlarge--m_jz0ss_1","--size-medium--l":"_--size-medium--l_jz0ss_1","--size-large--l":"_--size-large--l_jz0ss_1","--size-xlarge--l":"_--size-xlarge--l_jz0ss_1","--size-medium--xl":"_--size-medium--xl_jz0ss_1","--size-large--xl":"_--size-large--xl_jz0ss_1","--size-xlarge--xl":"_--size-xlarge--xl_jz0ss_1"},xo=e=>{var k,S;const{onChange:t,onFocus:n,onBlur:r,name:o,value:s,defaultValue:i,placeholder:c,size:u="medium",variant:m="outline",resize:_,className:d,attributes:f}=e,[h,v]=a.useState(s||i||""),p=mt(),b=et(e.id),x=((k=p==null?void 0:p.attributes)==null?void 0:k.id)||((S=e.inputAttributes)==null?void 0:S.id)||b,C=(p==null?void 0:p.disabled)||e.disabled,w=(p==null?void 0:p.hasError)||e.hasError,j=g(g({},e.inputAttributes),p==null?void 0:p.attributes),z=F(Rt.root,u&&_e(Rt,"--size",u),w&&Rt["--status-error"],C&&Rt["--disabled"],m&&Rt[`--variant-${m}`],_!==void 0&&Rt[`--resize-${_}`],d),E=I=>{const T=I.target.value;t==null||t({name:o,value:T,event:I}),_==="auto"&&typeof s!="string"&&v(T)};return a.useEffect(()=>{typeof s!="string"||_!=="auto"||v(s)},[s,_]),l.jsx("div",N(g({},f),{"data-rs-aligner-target":!0,className:z,"data-rs-textarea-value":h,children:l.jsx("textarea",N(g({rows:3},j),{className:Rt.input,disabled:C,name:o,placeholder:c,value:s,defaultValue:i,onChange:E,onFocus:n||(j==null?void 0:j.onFocus),onBlur:r||(j==null?void 0:j.onBlur),id:x}))}))};xo.Aligner=xn,xo.displayName="TextArea";const yo={item:"_item_gwbgg_1","item--full-width":"_item--full-width_gwbgg_1",marker:"_marker_gwbgg_36"},cr=e=>{const{children:t,markerSlot:n,className:r,attributes:o}=e,s=n!==null,i=F(yo.item,!s&&yo["item--full-width"],r);return l.jsxs(Y,{as:"li",direction:"row",align:"stretch",gap:3,attributes:o,className:i,children:[s&&l.jsx("span",{className:yo.marker,children:n}),l.jsx(Y.Item,{grow:!0,children:t})]})},wo=e=>{const{children:t,className:n,attributes:r}=e,o=F(n);return l.jsx("ul",N(g({},r),{className:o,children:a.Children.map(t,(s,i)=>a.isValidElement(s)&&s.type===cr?s:l.jsx(cr,{children:s},i))}))};wo.Item=cr,wo.displayName="Timeline",cr.displayName="Timeline.Item";const dl={short:4e3,long:8e3},Dn=["top-start","top","top-end","bottom-start","bottom","bottom-end"],ul={queues:Dn.reduce((e,t)=>g({[t]:[]},e),{}),id:"",show:()=>{},hide:()=>{},remove:()=>{},add:()=>""},dr=a.createContext(ul),ml=()=>{const{add:e,hide:t,id:n}=a.useContext(dr);return a.useMemo(()=>({show:e,hide:t,id:n}),[e,t,n])},ut={container:"_container_13298_1","container--visible":"_container--visible_13298_1",wrapper:"_wrapper_13298_12","container--index-0":"_container--index-0_13298_1","container--index-1":"_container--index-1_13298_1","container--index-2":"_container--index-2_13298_112","container--index-overflow":"_container--index-overflow_13298_116",region:"_region_13298_65","region--nested":"_region--nested_13298_1","region--position-top":"_region--position-top_13298_1","region--position-top-start":"_region--position-top-start_13298_1","region--position-top-end":"_region--position-top-end_13298_1","region--position-bottom":"_region--position-bottom_13298_1","region--position-bottom-start":"_region--position-bottom-start_13298_1","region--position-bottom-end":"_region--position-bottom-end_13298_1"},_l=e=>{const{size:t="small",text:n,children:r,color:o="inverted",icon:s,title:i,actionsSlot:c,startSlot:u,collapsed:m,className:_,attributes:d}=e;let f=o==="inverted"||o==="neutral"?"elevation-overlay":o;o==="neutral"&&(f=m?"neutral":"elevation-overlay");const h=o==="neutral"?"neutral-faded":"transparent",v=t==="small"?"span":"div",p=t==="large";let b=[];c&&(b=Array.isArray(c)?c:[c]);const x=(i||n)&&l.jsxs(a.Fragment,{children:[i&&l.jsxs(ue,{variant:"body-3",weight:"bold",as:v,children:[i," "]}),l.jsx(ue,{variant:"body-3",as:v,children:n})]}),C=l.jsxs(Y,{backgroundColor:f,borderColor:h,padding:4,borderRadius:"medium",animated:!0,direction:"row",gap:3,align:p?"start":"center",className:[ut.toast,_],attributes:d,children:[s&&l.jsx(Ne,{size:5,svg:s,className:ut.icon}),u&&!s&&l.jsx(Y.Item,{children:u}),l.jsx(Y.Item,{grow:!0,children:l.jsxs(Y,{direction:p?"column":"row",align:p?"start":"center",gap:3,children:[l.jsx(Y.Item,{grow:!0,children:x&&r||t!=="small"?l.jsxs(Y,{gap:.5,children:[x,r&&l.jsx(Y,{gap:3,children:r})]}):x||r}),b.length&&l.jsx(Y,{direction:"row",align:"center",gap:2,children:b.map((w,j)=>{const z=t==="large"?j===0:j===b.length-1,k={variant:z?"solid":"ghost",size:"small",color:z?o==="neutral"||o==="inverted"?"neutral":"media":"inherit",elevated:o!=="neutral"};return w.type===Oe?a.createElement(Oe,N(g(g({},k),w.props),{key:j})):w})})]})})]});return o==="inverted"?l.jsx(Qt,{colorMode:"inverted",children:C}):C};_l.displayName="Toast";const fl=e=>{const{toastProps:t,id:n,status:r,inspected:o,index:s}=e,{timeout:i="short"}=t,{show:c,hide:u,remove:m}=a.useContext(dr),[_,d]=a.useState(),f=a.useRef(null),h=a.useRef(!1),v=a.useRef(null),p=r==="entered",b=F(ut.container,p&&ut["container--visible"],s===0&&ut[`container--index-${s}`],!o&&(s===1||s===2)&&ut[`container--index-${s}`],!o&&s>=3&&ut["container--index-overflow"]),x=a.useCallback(()=>{f.current&&clearTimeout(f.current)},[]),C=a.useCallback(()=>{x();const j=typeof i=="string"?dl[i]:i;i!==0&&(f.current=setTimeout(()=>{u(n)},j!=null?j:dl.short))},[u,n,i,x]),w=j=>{j.propertyName==="height"&&(p||m(n))};return a.useEffect(()=>{p&&(o?x():C())},[o,C,x,p]),a.useEffect(()=>{v.current&&d(v.current.clientHeight),c(n),C()},[c,n,C]),a.useEffect(()=>{if(!v.current)return;const j=new Jt;p?j.trap(v.current,{includeTrigger:!0,mode:"content-menu"}):Rn()&&j.release()},[p]),a.useEffect(()=>{if(!p||s>0)return;const j=()=>{h.current=!0,it(()=>{h.current=!1}),v.current&&d(v.current.clientHeight)};return window.addEventListener("resize",j),()=>window.removeEventListener("resize",j)},[p,s]),l.jsx("li",{className:b,style:{height:r==="entered"?`calc(${_}px + var(--rs-unit-x2) + 2px)`:0,transitionDuration:h.current?"0s":void 0},onTransitionEnd:w,onFocus:x,onBlur:C,children:l.jsx("span",{className:ut.wrapper,children:l.jsx(_l,N(g({},t),{collapsed:s>0&&!o,attributes:N(g({},t.attributes),{ref:v})}))})})};fl.displayName="ToastContainer";const hl=e=>{const{position:t,nested:n}=e,{queues:r,options:o}=a.useContext(dr),[s,i]=a.useState(!1),c=a.useRef(!1),u=a.useRef(null),m=r[t],{width:_,expanded:d}=(o==null?void 0:o[t])||{},f=F(ut.region,ut[`region--position-${t}`],n&&ut["region--nested"]),h=m.filter(w=>w.status==="entered").length;let v=0;const p=()=>{c.current=!0},b=w=>{let j=w.target,z=!1;for(;j&&j!==u.current&&!z;)z=j.matches(os),j=j.parentElement;z||i(E=>!E),c.current=!1},x=()=>{c.current||i(!0)},C=()=>{c.current||i(!1)};return a.useEffect(()=>{m.length===0&&i(!1)},[m.length]),m.length?l.jsx("ul",{role:"region","aria-live":"polite",className:f,ref:u,onTouchStart:p,onClick:b,onMouseEnter:x,onMouseLeave:C,style:{width:_},children:m.map((w,j)=>{const z=h-j+v-1;return w.status!=="entered"&&(v+=1),l.jsx(fl,N(g({},w),{index:z,inspected:s||!!d}),w.id)})}):null};hl.displayName="ToastRegion";let Gc=0;const Kc=()=>`__rs-toast-${Gc++}`,Xc=(e,t)=>{let n;switch(t.type){case"add":{const r=t.payload.toastProps||{},{position:o="bottom-end"}=r,s=Ee(r,["position"]);return N(g({},e),{[o]:[...e[o],{id:t.payload.id,toastProps:s,status:"entering"}]})}case"show":{const{id:o}=t.payload;return n=g({},e),Dn.forEach(s=>{n[s]=n[s].map(i=>i.status!=="entering"?i:i.id===o?N(g({},i),{status:"entered"}):i)}),n}case"hide":{const{id:o}=t.payload;return n=g({},e),Dn.forEach(s=>{n[s]=n[s].map(i=>i.id===o?N(g({},i),{status:"exiting"}):i)}),n}case"remove":{const{id:o}=t.payload;return n=g({},e),Dn.forEach(s=>{n[s]=n[s].filter(i=>i.id!==o)}),n}}},Co=e=>{const{children:t,options:n}=e,r=ml(),o=a.useId(),[s,i]=a.useReducer(Xc,ul.queues),c=a.useCallback(f=>{const h=Kc();return i({type:"add",payload:{toastProps:f,id:h}}),h},[]),u=a.useCallback(f=>{i({type:"show",payload:{id:f}})},[]),m=a.useCallback(f=>{i({type:"hide",payload:{id:f}})},[]),_=a.useCallback(f=>{i({type:"remove",payload:{id:f}})},[]),d=a.useMemo(()=>({queues:s,id:o,add:c,show:u,hide:m,remove:_,inspecting:!1,options:n}),[s,u,m,c,_,o,n]);return l.jsxs(dr.Provider,{value:d,children:[t,Dn.map(f=>l.jsx(hl,{position:f,nested:!!r.id},f))]})};Co.displayName="ToastProiver";const gl=a.createContext(null),Jc=()=>a.useContext(gl),Zc=e=>{const o=e,{focusable:t,onFocus:n}=o,r=Ee(o,["focusable","onFocus"]);return l.jsx(ur,N(g({},r),{attributes:N(g({},r.attributes),{tabIndex:t?0:-1,onFocus:n})}))},jo=e=>{const d=e,{onChange:t,value:n,selectionMode:r="single",children:o}=d,s=Ee(d,["onChange","value","selectionMode","children"]),i=a.useRef(0);let c=0;const u=a.Children.map(o,f=>{if(!a.isValidElement(f)||f.type!==ur||!f.props)return f;const h=c;c+=1;const v=i.current===h;return l.jsx(Zc,N(g({},f.props),{focusable:v,onFocus:()=>{i.current=h}}))}),m=f=>{const{event:h,value:v,checked:p}=f;if(!v)return;let b=r==="single"?[v]:[...n];r==="multiple"&&(p?b.push(v):b=b.filter(x=>x!==v)),t&&t({value:b,event:h})},{ref:_}=tt({"ArrowLeft, ArrowUp":()=>{ls(_.current)},"ArrowRight, ArrowDown":()=>{is(_.current)},Home:()=>{as(_.current)},End:()=>{cs(_.current)}},[],{preventDefault:!0});return l.jsx(gl.Provider,{value:{onChange:m,value:n},children:l.jsx(Oe.Group,N(g({},s),{attributes:g({ref:_},s==null?void 0:s.attributes),children:u}))})};jo.displayName="ToggleButtonGroupControlled";const pl=e=>{const{defaultValue:t,onChange:n}=e,[r,o]=a.useState(t||[]),s=i=>{i.value&&(o(i.value),n&&n(i))};return l.jsx(jo,N(g({},e),{value:r,defaultValue:void 0,onChange:s}))};pl.displayName="ToggleButtonGroupUncontrolled";const bl=e=>{const{value:t}=e;return t!==void 0?l.jsx(jo,g({},e)):l.jsx(pl,g({},e))};bl.displayName="ToggleButtonGroup";const ko=e=>{var _,d;const m=e,{variant:t="outline",value:n,onChange:r,onClick:o}=m,s=Ee(m,["variant","value","onChange","onClick"]),i=Jc(),c=(d=n?(_=i==null?void 0:i.value)==null?void 0:_.includes(n):void 0)!=null?d:e.checked,u=f=>{var v;const h={checked:!c,value:n!=null?n:"",event:f};o==null||o(f),i?(v=i==null?void 0:i.onChange)==null||v.call(i,h):r==null||r(h)};return l.jsx(Oe,N(g({},s),{variant:t,onClick:u,highlighted:c,attributes:N(g({},s.attributes),{"aria-pressed":c})}))};ko.displayName="ToggleButtonControlled";const vl=e=>{const i=e,{defaultChecked:t,onChange:n}=i,r=Ee(i,["defaultChecked","onChange"]),o=Vt(t),s=c=>{n==null||n(c),o.toggle(c.checked)};return l.jsx(ko,N(g({},r),{onChange:s,checked:o.active}))};vl.displayName="ToggleButtonUncontrolled";const ur=e=>{const{checked:t}=e;return t!==void 0?l.jsx(ko,g({},e)):l.jsx(vl,g({},e))};ur.displayName="ToggleButton";const Qc={root:"_root_1ca7d_1"},xl=e=>{const i=e,{text:t,children:n,position:r="bottom",color:o="inverted"}=i,s=Ee(i,["text","children","position","color"]);return t?l.jsxs(_t,N(g({},s),{position:r,triggerType:"hover",groupTimeouts:!0,children:[l.jsx(_t.Trigger,{children:n}),l.jsx(_t.Content,{children:l.jsx(Qt,{colorMode:o,children:l.jsx(ue,{variant:"caption-1",className:Qc.root,children:t})})})]})):n({ref:null})};xl.displayName="Tooltip";const yl=a.createContext({disabledRef:null,disable:()=>{},enable:()=>{},activate:()=>{},deactivate:()=>{}}),ed=e=>{const t=a.useRef(!1),n=a.useCallback(()=>{t.current=!0},[]),r=a.useCallback(()=>{t.current=!1},[]),o=a.useCallback(()=>{t.current||Ea()},[]),s=a.useCallback(()=>{t.current||Sa()},[]),i=a.useCallback(m=>{m.metaKey||m.altKey||m.ctrlKey||m.key!==$a&&o()},[o]),c=a.useCallback(()=>{s()},[s]);a.useEffect(()=>(window.addEventListener("keydown",i),window.addEventListener("mousedown",c),()=>{window.removeEventListener("keydown",i),window.removeEventListener("mousedown",c)}),[c,i]);const u=a.useMemo(()=>({disabledRef:t,disable:n,enable:r,activate:o,deactivate:s}),[n,r,o,s]);return l.jsx(yl.Provider,{value:u,children:e.children})},td={root:"_root_1cpr1_1"},nd=e=>{const{children:t,defaultRTL:n,defaultViewport:r="s",toastOptions:o}=e,s=Oa(n);return l.jsx(ed,{children:l.jsx(jr.Provider,{value:{rtl:s,defaultViewport:r},children:l.jsx(Va,{children:l.jsx(Co,{options:o,children:t})})})})},wl=e=>{const{theme:t,defaultTheme:n="reshaped",colorMode:r,defaultColorMode:o,scoped:s,className:i}=e,c=F(td.root,i),u=a.useRef(null),m=Tr();return l.jsx(Ts,{defaultMode:o||m.mode||"light",mode:r,scopeRef:m&&s?u:void 0,children:l.jsx(Ss,{name:t,defaultName:n,className:c,scoped:s,scopeRef:m&&s?u:void 0,children:l.jsx(nd,N(g({},e),{children:e.children}))})})};wl.displayName="Reshaped";const No=a.createContext({active:!1,onToggle:()=>{},triggerId:"",contentId:""}),zo=e=>{const{children:t,onToggle:n,active:r,iconPosition:o,iconSize:s,gap:i,className:c,attributes:u}=e,m=F(c),_=et(),d=Ve(n),f=a.useMemo(()=>({triggerId:`${_}-trigger`,contentId:`${_}-content`,active:r,onToggle:d.current,iconPosition:o,iconSize:s,gap:i}),[r,o,s,_,d,i]);return l.jsx("div",N(g({},u),{className:m,children:l.jsx(No.Provider,{value:f,children:t})}))};zo.displayName="AccordionControlled";const Cl=e=>{const c=e,{defaultActive:t,onToggle:n}=c,r=Ee(c,["defaultActive","onToggle"]),[o,s]=a.useState(t||!1),i=u=>{s(u),n==null||n(u)};return l.jsx(zo,N(g({},r),{onToggle:i,active:o}))};Cl.displayName="AccordionUncontrolled";const jl={icon:"_icon_loavs_1","icon--active":"_icon--active_loavs_5"},kl=e=>{const{children:t}=e,{active:n,onToggle:r,triggerId:o,contentId:s,iconPosition:i="end",iconSize:c}=a.useContext(No),u=F(jl.icon,n&&jl["icon--active"]),m=()=>{r==null||r(!n)},_={"aria-expanded":n,"aria-controls":s,id:o};return typeof t=="function"?l.jsx(l.Fragment,{children:t(N(g({},_),{onClick:m}),{active:n})}):l.jsx(qe,{onClick:m,fullWidth:!0,attributes:_,children:l.jsxs(Y,{gap:2,direction:i==="start"?"row-reverse":"row",align:"center",children:[l.jsx(Y.Item,{grow:!0,children:t}),l.jsx(Ne,{size:c||4,svg:wi,className:u})]})})};kl.displayName="Accordion.Trigger";const Nl=e=>{const{children:t}=e,{active:n,triggerId:r,contentId:o,gap:s}=a.useContext(No);return l.jsx(_o,{active:n,attributes:{"aria-labelledby":r,id:o},children:s?l.jsx(Y,{paddingTop:s,children:t}):t})};Nl.displayName="Accordion.Content";const mr=e=>{const{active:t}=e;return t!==void 0?l.jsx(zo,g({},e)):l.jsx(Cl,g({},e))};mr.Trigger=kl,mr.Content=Nl,mr.displayName="Accordion";const rd={root:"_root_1yz7x_1"},zl=e=>{const{children:t,padding:n=4,width:r,align:o,justify:s,height:i,maxHeight:c,className:u,attributes:m}=e,_=F(rd.root,u);return l.jsx(Y,{attributes:m,className:_,paddingInline:n,align:o,justify:s,height:i,maxHeight:c,width:r,maxWidth:"100%",children:t})};zl.displayName="Container";const El={root:"_root_3bv1t_1",item:"_item_3bv1t_67"},Sl=e=>{const{area:t,colStart:n,colEnd:r,colSpan:o,rowStart:s,rowEnd:i,rowSpan:c,children:u,className:m,as:_="div",attributes:d}=e,f=F(El.item,m),h=de(o,b=>b&&`span ${b}`),v=de(c,b=>b&&`span ${b}`),p=g(g(g(g(g(g(g(g({},d==null?void 0:d.style),G("--rs-grid-area",t)),G("--rs-grid-col-end",h)),G("--rs-grid-col-end",r)),G("--rs-grid-col-start",n)),G("--rs-grid-row-end",v)),G("--rs-grid-row-end",i)),G("--rs-grid-row-start",s));return l.jsx(_,N(g({},d),{className:f,style:p,children:u}))},Eo=e=>{const{areas:t,columns:n,rows:r,gap:o,columnGap:s,rowGap:i,align:c,justify:u,autoColumns:m,autoRows:_,autoFlow:d,children:f,className:h,width:v,height:p,maxWidth:b,as:x="div",attributes:C}=e,w=ct({align:c,justify:u,width:v,height:p,maxWidth:b}),j=de(r,I=>typeof I=="number"?`repeat(${I}, 1fr)`:I),z=de(n,I=>typeof I=="number"?`repeat(${I}, 1fr)`:I),E=de(t,I=>I?`"${I==null?void 0:I.join('" "')}"
|
31
|
+
`:void 0),k=F(El.root,w.classNames,h),S=g(g(g(g(g(g(g(g(g(g(g({},C==null?void 0:C.style),G("--rs-grid-gap",o)),G("--rs-grid-column-gap",s)),G("--rs-grid-row-gap",i)),G("--rs-grid-rows",j)),G("--rs-grid-columns",z)),G("--rs-grid-areas",E)),G("--rs-grid-auto-flow",d)),G("--rs-grid-auto-columns",m)),G("--rs-grid-auto-rows",_)),w.variables);return l.jsx(x,N(g({},C),{className:k,style:S,children:f}))};Eo.Item=Sl,Eo.displayName="Grid",Sl.displayName="Grid.Item";const _r={root:"_root_qqeu9_1",fallback:"_fallback_qqeu9_6","--display-mode-cover":"_--display-mode-cover_qqeu9_15","--display-mode-contain":"_--display-mode-contain_qqeu9_19"},Tl=e=>{const{src:t,alt:n,width:r,maxWidth:o,height:s,aspectRatio:i,onLoad:c,onError:u,fallback:m,displayMode:_="cover",borderRadius:d,className:f,attributes:h,imageAttributes:v,renderImage:p}=e,[b,x]=a.useState("loading"),C=ct({radius:d,width:r,height:s,maxWidth:o,aspectRatio:i}),w=F(_r.root,C.classNames,_&&_r[`--display-mode-${_}`],f),j=F(_r.image,w),z=F(_r.fallback,w),E=(b==="error"||!t)&&!!m,k=g(g({},h==null?void 0:h.style),C.variables),S=$=>{x("success"),c==null||c($)},I=$=>{x("error"),u==null||u($)};if(a.useEffect(()=>{x("loading")},[t]),E){if(typeof m=="string"){const $=N(g({},h),{src:m!=null?m:"",alt:n!=null?n:"",role:n?void 0:"presentation",className:z,style:k});return p?p($):l.jsx("img",g({},$))}return l.jsx("div",N(g({},h),{className:z,style:k,children:m}))}const T=N(g(g({},h),v),{src:t!=null?t:"",alt:n!=null?n:"",role:n?void 0:"presentation",onLoad:S,onError:I,className:j,style:k});return p?p(T):l.jsx("img",g({},T))};Tl.displayName="Image";const od=(e,t)=>{const{disabled:n,containerRef:r,orientation:o="all"}=t||{},s=Ve(e),i=Vt(),c=a.useRef(null),u=a.useRef(null),m=r||u,_=a.useRef({x:0,y:0}),d=o==="vertical"||o==="all",f=o==="horizontal"||o==="all",h=(v,p)=>{var z;const b=c.current;if(!b)return;const C=((z=m.current)!=null?z:document.body).getBoundingClientRect(),w=b==null?void 0:b.getBoundingClientRect(),j={x:0,y:0,triggerX:0,triggerY:0};if(d){const E=Math.round(w.y)-C.y+p;j.y=Math.max(0,Math.min(E,C.height-w.height)),j.triggerY=w.y-C.y}if(f){const E=Math.round(w.x)-C.x+v;j.x=Math.max(0,Math.min(E,C.width-w.width)),j.triggerX=w.x-C.x}e(j)};return tt({[Lt]:()=>f&&h(-20,0),[Pt]:()=>f&&h(20,0),[It]:()=>d&&h(0,-20),[Dt]:()=>d&&h(0,20)},[],{ref:c,preventDefault:!0,disabled:n}),a.useEffect(()=>{const v=c.current;if(!v||!i.active)return;const p=x=>{var T,$;const C=x instanceof MouseEvent?x:x.changedTouches[0],j=((T=m.current)!=null?T:document.body).getBoundingClientRect(),z=v.getBoundingClientRect(),E=C.clientX-j.x,k=C.clientY-j.y,S=E-_.current.x,I=k-_.current.y;($=s.current)==null||$.call(s,{x:f?Math.max(0,Math.min(S,j.width-z.width)):0,y:d?Math.max(0,Math.min(I,j.height-z.height)):0,triggerX:z.x-j.x,triggerY:z.y-j.y})},b=()=>{_.current={x:0,y:0},i.deactivate(),Bn(),Ur()};return document.addEventListener("touchmove",p,{passive:!0}),document.addEventListener("touchend",b,{passive:!0}),document.addEventListener("mousemove",p,{passive:!0}),document.addEventListener("mouseup",b,{passive:!0}),()=>{document.removeEventListener("touchmove",p),document.removeEventListener("touchend",b),document.removeEventListener("mousemove",p),document.removeEventListener("mouseup",b)}},[i,f,d,m,s]),a.useEffect(()=>{const v=c.current;if(!v||n)return;const p=b=>{const x=b instanceof MouseEvent?b:b.changedTouches[0],C=v.getBoundingClientRect();_.current={x:x.clientX-C.x,y:x.clientY-C.y},i.activate(),Vn(),Rr()};return v.addEventListener("touchstart",p,{passive:!0}),v.addEventListener("mousedown",p,{passive:!0}),()=>{v.removeEventListener("touchstart",p),v.removeEventListener("mousedown",p)}},[i,n]),{ref:c,containerRef:m,active:i.active}},rn={root:"_root_17pp4_1",item:"_item_17pp4_5",handle:"_handle_17pp4_16","--variant-bordered":"_--variant-bordered_17pp4_34","handle--dragging":"_handle--dragging_17pp4_60","--variant-borderless":"_--variant-borderless_17pp4_46","--direction-row":"_--direction-row_17pp4_69","--direction-column":"_--direction-column_17pp4_73"},$l=a.createContext({}),sd=e=>{const{children:t}=e,{containerRef:n,onDrag:r,index:o,direction:s}=a.useContext($l),{ref:i,active:c}=od(m=>{r(N(g({},m),{index:o}))},{containerRef:n,orientation:s==="row"?"horizontal":"vertical"}),u=F(rn.handle,c&&rn["handle--dragging"]);return t?l.jsx(Y.Item,{children:t({ref:i},{direction:s,status:c?"dragging":"idle"})}):l.jsx(Y.Item,{className:u,attributes:{role:"button",tabIndex:0,"aria-hidden":!0,ref:m=>{i.current=m}}})},id=a.forwardRef((e,t)=>{const{children:n,defaultSize:r,minSize:o,maxSize:s}=e,i=a.useRef(null);return l.jsx(Y.Item,{grow:!0,className:rn.item,attributes:{ref:c=>{typeof t=="function"&&t(c),i.current=c},style:{"--rs-resizable-default-size":r,"--rs-resizable-min-size":o,"--rs-resizable-max-size":s}},children:n})}),on=e=>{const{children:t,variant:n="borderless",height:r,direction:o="row",gap:s=2,className:i,attributes:c}=e,u=F(rn.root,rn[`--direction-${o}`],n&&rn[`--variant-${n}`],i),m=a.useRef(null),_=a.useRef([]),d=o==="row";let f=0,h=0;_.current=[];const v=x=>{const{item:C,grow:w,itemsSize:j,itemsCount:z}=x,{minSize:E,maxSize:k}=C.props,S=w/z/100*j,I=E&&Number(E.replace("px","")),T=k&&Number(k==null?void 0:k.replace("px",""));return!!(I&&I>S||T&&T<S)},p=x=>{const{index:C,x:w,y:j,triggerX:z,triggerY:E}=x,k=_.current[C],S=_.current[C+1];if(!k.el||!S.el)return;const I=_.current.length;let T=I*100,$=0;_.current.forEach((ee,K)=>{ee.el&&($+=d?ee.el.clientWidth:ee.el.clientHeight,!(K===C||K===C+1)&&(T-=Number(ee.el.style.flexGrow||100)))},0);const P=d?k.el.clientWidth:k.el.clientHeight,D=d?k.el.offsetLeft:k.el.offsetTop,B=d?S.el.clientWidth:S.el.clientHeight,H=(d?z:E)-P-D,L=(d?w:j)-H,V=P+B,U=Math.min(1,Math.max(0,(L-D)/V)),q=Math.floor(U*T),ie=Math.floor(T-q);v({item:k,itemsSize:$,grow:q,itemsCount:I})||v({item:S,itemsSize:$,grow:ie,itemsCount:I})||(k.el.style.flexGrow=q.toString(),S.el.style.flexGrow=ie.toString())};a.useEffect(()=>{const x=[];let C=0;_.current.forEach(w=>{w.el&&(C+=d?w.el.clientWidth:w.el.clientHeight)}),_.current.forEach((w,j)=>{if(!w.el)return;const z=(d?w.el.clientWidth:w.el.clientHeight)/C;x[j]=_.current.length*z*100}),_.current.forEach((w,j)=>{!w.el||!x[j]||(w.el.style.flexGrow=x[j].toString(),w.el.setAttribute("data-rs-resizable-item-mounted",""))})},[d]);const b=a.Children.map(t,x=>{const C=a.isValidElement(x);if(C&&x.props&&x.type!==on.Item)return l.jsx($l.Provider,{value:{containerRef:m,index:f++,onDrag:p,direction:o},children:x});if(C&&x.props&&x.type===on.Item){const w=f;return l.jsx(id,N(g({},x.props),{index:h++,ref:j=>{_.current[w]={el:j,props:x.props}}}))}return null});return l.jsx(Y,{attributes:N(g({},c),{ref:m}),className:u,height:r,direction:o,align:"stretch",gap:s,children:b})};on.Item=()=>null,on.Handle=sd,on.displayName="Resizable";const jt={root:"_root_xnsfu_1",scrollable:"_scrollable_xnsfu_9",content:"_content_xnsfu_30",scrollbar:"_scrollbar_xnsfu_37",thumb:"_thumb_xnsfu_43","--scrollbar-y":"_--scrollbar-y_xnsfu_59","--scrollbar-x":"_--scrollbar-x_xnsfu_71","--display-visible":"_--display-visible_xnsfu_91","--display-hover":"_--display-hover_xnsfu_96","--scrollbar-dragging":"_--scrollbar-dragging_xnsfu_100"},Ml=e=>{const{ratio:t,position:n,vertical:r,onThumbMove:o}=e,s=Ve(o),[i,c]=a.useState(!1),u=a.useRef(0),m=a.useRef(null),_=F(jt.scrollbar,r?jt["--scrollbar-y"]:jt["--scrollbar-x"],i&&jt["--scrollbar-dragging"]),d=p=>{const b=m.current,x=u.current;if(u.current=0,x||!b||p.currentTarget!==b)return;const C=b.getBoundingClientRect(),w=r?p.pageY-C.top:p.pageX-C.left,j=r?b.clientHeight:b.clientWidth;o({value:w/j-t/2,type:"absolute"})},f=a.useCallback(p=>{var w;u.current||(u.current=r?p.pageY:p.pageX);const b=m.current;if(!b||!i)return;const x=r?p.movementY:p.movementX,C=r?b.scrollHeight:b.scrollWidth;(w=s.current)==null||w.call(s,{value:x/C,type:"relative"})},[r,i,s]),h=a.useCallback(()=>{c(!1),Bn()},[]),v=()=>{c(!0),Vn()};return a.useEffect(()=>{if(i)return document.addEventListener("mousemove",f),document.addEventListener("mouseup",h),()=>{document.removeEventListener("mousemove",f),document.removeEventListener("mouseup",h)}},[f,h,i]),l.jsx("div",{className:_,style:{"--rs-scroll-area-ratio":t,"--rs-scroll-area-position":n},ref:m,onClick:d,onMouseDown:v,"aria-hidden":"true",children:l.jsx("div",{className:jt.thumb})})},Il=a.forwardRef((e,t)=>{const{children:n,height:r,maxHeight:o,scrollbarDisplay:s="hover",onScroll:i,className:c,attributes:u}=e,[m,_]=a.useState({x:1,y:1}),[d,f]=a.useState({x:0,y:0}),h=a.useRef(null),v=a.useRef(null),p=ct({height:r,maxHeight:o}),b=F(jt.root,s&&jt[`--display-${s}`],c),x=F(jt.content,p.classNames),C=a.useCallback(()=>{const E=h.current;E&&_({x:E.clientWidth/E.scrollWidth,y:E.clientHeight/E.scrollHeight})},[]),w=E=>{const{scrollLeft:k,scrollTop:S,clientWidth:I,clientHeight:T,scrollWidth:$,scrollHeight:P}=E.currentTarget;f({x:k/$,y:S/P}),i==null||i({x:$===I?0:k/($-I),y:P===T?0:S/(P-T)})},j=E=>{const k=h.current;if(!k)return;const S=k.scrollHeight*E.value;E.type==="absolute"?k.scrollTop=S:k.scrollTop+=S},z=E=>{const k=h.current;if(!k)return;const S=k.clientWidth*E.value;E.type==="absolute"?k.scrollLeft=S:k.scrollLeft+=S};return a.useImperativeHandle(t,()=>h.current),Se(()=>{C()},[C]),Se(()=>{const E=v.current;if(!E)return;const k=new ResizeObserver(C);return k.observe(E),()=>k.disconnect()},[C]),l.jsxs("div",N(g({},u),{ref:v,className:b,children:[l.jsx("div",{className:jt.scrollable,ref:h,onScroll:w,children:l.jsx("div",{className:x,style:g({},p.variables),children:n})}),m.y<1&&s!=="hidden"&&l.jsx(Ml,{vertical:!0,onThumbMove:j,ratio:m.y,position:d.y}),m.x<1&&s!=="hidden"&&l.jsx(Ml,{onThumbMove:z,ratio:m.x,position:d.x})]}))});Il.displayName="ScrollArea";const ld=()=>{const e=a.useContext(yl);return a.useMemo(()=>({enable:e.enable,disable:e.disable,activate:e.activate,deactivate:e.deactivate}),[e])},ad=e=>{const{w:t="auto",h:n=50,minW:r=n,children:o}=e;return l.jsx("div",{style:{width:t,height:n,minWidth:r,padding:"var(--rs-unit-x2)",background:"rgba(var(--rs-color-rgb-background-neutral), 0.32)",boxSizing:"border-box",display:"flex",alignItems:"center",justifyContent:"center",borderRadius:"var(--rs-radius-small)"},children:o})};M.Accordion=mr,M.ActionBar=Yo,M.Actionable=qe,M.Alert=Go,M.Autocomplete=Pr,M.Avatar=Us,M.Badge=Lr,M.Breadcrumbs=Fr,M.Button=Oe,M.Calendar=ii,M.Card=li,M.Carousel=ai,M.Checkbox=mi,M.CheckboxGroup=ui,M.Container=zl,M.ContextMenu=Ot,M.Dismissible=Mr,M.Divider=pn,M.DropdownMenu=Te,M.FileUpload=Jr,M.Flyout=_t,M.FormControl=vn,M.Grid=Eo,M.Hidden=Mt,M.HiddenVisually=Qn,M.Hotkey=gi,M.Icon=Ne,M.Image=Tl,M.Link=Ar,M.Loader=$r,M.MenuItem=Xn,M.Modal=sr,M.NumberField=ji,M.Overlay=Qr,M.Pagination=zi,M.PinField=$i,M.Placeholder=ad,M.Popover=yt,M.Progress=Mi,M.ProgressIndicator=Ii,M.Radio=Ai,M.RadioGroup=Li,M.Reshaped=wl,M.Resizable=on,M.Scrim=Fi,M.ScrollArea=Il,M.Select=Mn,M.Skeleton=Ri,M.Slider=Ji,M.Stepper=ho,M.Switch=Qi,M.Table=Wt,M.Tabs=In,M.Text=ue,M.TextArea=xo,M.TextField=yn,M.Theme=Qt,M.Timeline=wo,M.ToastProvider=Co,M.ToggleButton=ur,M.ToggleButtonGroup=bl,M.Tooltip=xl,M.TrapFocus=Jt,M.View=Y,M.classNames=F,M.responsivePropDependency=de,M.useFormControl=mt,M.useHandlerRef=Ve,M.useHotkeys=tt,M.useIsomorphicLayoutEffect=Se,M.useKeyboardMode=ld,M.useOnClickOutside=gs,M.useRTL=xt,M.useResponsiveClientValue=pi,M.useScrollLock=Xr,M.useTheme=zs,M.useToast=ml,M.useToggle=Vt,Object.defineProperty(M,Symbol.toStringTag,{value:"Module"})}));
|