@openfin/ui-library 0.31.3-alpha.20251125193850.ffd6b0f → 0.31.3-alpha.20251126214648.6242b42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/controls/FindInPageModal/find-in-page-modal.d.ts +21 -0
- package/dist/components/controls/FindInPageModal/index.d.ts +1 -0
- package/dist/components/system/ThemeProvider/lib/colors.d.ts +1 -0
- package/dist/components/system/ThemeProvider/lib/constants.d.ts +7 -7
- package/dist/index.d.ts +1 -0
- package/dist/index.js +83 -4
- package/dist/styles/_core/tokens.css +1 -1
- package/dist/styles/_modules/core-ui/browser/control-bar.css +1 -1
- package/dist/styles/_modules/core-ui/browser/control-bar.css.map +1 -1
- package/dist/styles/_modules/core-ui/browser/icon-button.css +1 -0
- package/dist/styles/_modules/core-ui/browser/icon-button.css.map +1 -0
- package/dist/styles/_modules/core-ui/browser/index.css +1 -1
- package/dist/styles/_modules/core-ui/browser/index.css.map +1 -1
- package/dist/styles/_modules/core-ui/browser/page-button.css +1 -0
- package/dist/styles/_modules/core-ui/browser/page-button.css.map +1 -0
- package/dist/styles/_modules/core-ui/browser/tablist.css +1 -0
- package/dist/styles/_modules/core-ui/browser/tablist.css.map +1 -0
- package/dist/styles/_modules/core-ui/browser/toolbar.css +1 -0
- package/dist/styles/_modules/core-ui/browser/toolbar.css.map +1 -0
- package/dist/styles/_modules/core-ui/global.css +1 -1
- package/dist/styles/_modules/core-ui/global.css.map +1 -1
- package/dist/styles/_modules/core-ui/home/index.css +1 -1
- package/dist/styles/_modules/core-ui/home/index.css.map +1 -1
- package/dist/styles/_modules/core-ui/home/platform-selector.css +1 -1
- package/dist/styles/_modules/core-ui/home/platform-selector.css.map +1 -1
- package/dist/styles/_modules/core-ui/index.css +1 -1
- package/dist/styles/_modules/core-ui/index.css.map +1 -1
- package/dist/styles/_modules/core-ui/temp-tokens.css +1 -1
- package/dist/theme.js +1 -1
- package/dist/types/core-ui-css-selectors.d.ts +20 -2
- package/dist/types/core-ui-css-selectors.js +20 -2
- package/dist/types/core-ui-css-selectors.ts +20 -2
- package/dist/types/enterprise-css-selectors.d.ts +1 -1
- package/dist/types/enterprise-css-selectors.js +1 -1
- package/dist/types/enterprise-css-selectors.ts +1 -1
- package/dist/types/shared-css-selectors.d.ts +1 -1
- package/dist/types/shared-css-selectors.js +1 -1
- package/dist/types/shared-css-selectors.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type FindInPageModalLabels = {
|
|
3
|
+
ariaLabelSearchField?: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
titleClose?: string;
|
|
6
|
+
titleNextResult?: string;
|
|
7
|
+
titlePreviousResult?: string;
|
|
8
|
+
};
|
|
9
|
+
export type FindInPageModalProps = {
|
|
10
|
+
labels?: FindInPageModalLabels;
|
|
11
|
+
currentResultIndex?: number | null;
|
|
12
|
+
totalResults?: number | null;
|
|
13
|
+
value?: string | null;
|
|
14
|
+
shouldFocusInput?: boolean;
|
|
15
|
+
onResetFocusInput?: () => void;
|
|
16
|
+
onClose: () => void;
|
|
17
|
+
onFindTextChanged: (value: string) => void;
|
|
18
|
+
onNextResult: () => void;
|
|
19
|
+
onPreviousResult: () => void;
|
|
20
|
+
};
|
|
21
|
+
export declare const FindInPageModal: React.FC<FindInPageModalProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './find-in-page-modal';
|
|
@@ -2,3 +2,4 @@ import { ColorInputWithoutInstance as Color } from 'tinycolor2';
|
|
|
2
2
|
export declare const lightenColor: (color: Color, amount?: number) => string;
|
|
3
3
|
export declare const darkenColor: (color: Color, amount?: number) => string;
|
|
4
4
|
export declare const getMostReadable: (baseColor: Color, colors: Color[]) => string;
|
|
5
|
+
export declare const toRgbaColor: (color: Color, amount?: number) => string;
|
|
@@ -38,13 +38,13 @@ export declare const Color: {
|
|
|
38
38
|
readonly functional8: "#C93400";
|
|
39
39
|
readonly functional9: "#FF5E60";
|
|
40
40
|
readonly functional10: "#F48F00";
|
|
41
|
-
readonly purple: "
|
|
42
|
-
readonly lightblue: "
|
|
43
|
-
readonly aqua: "
|
|
44
|
-
readonly yellow: "
|
|
45
|
-
readonly salmon: "
|
|
46
|
-
readonly pink: "
|
|
47
|
-
readonly lightpink: "
|
|
41
|
+
readonly purple: "var(--color-primitives-indigo-500)";
|
|
42
|
+
readonly lightblue: "var(--color-primitives-blue-500)";
|
|
43
|
+
readonly aqua: "var(--color-primitives-teal-500)";
|
|
44
|
+
readonly yellow: "var(--color-primitives-yellow-500)";
|
|
45
|
+
readonly salmon: "var(--color-primitives-orange-500)";
|
|
46
|
+
readonly pink: "var(--color-primitives-pink-500)";
|
|
47
|
+
readonly lightpink: "var(--color-primitives-pink-500)";
|
|
48
48
|
readonly white00: "rgba(255,255,255,0.0)";
|
|
49
49
|
readonly white10: "rgba(255,255,255,0.1)";
|
|
50
50
|
readonly white20: "rgba(255,255,255,0.2)";
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ export * from './components/controls/CollapsibleCard';
|
|
|
3
3
|
export * from './components/controls/Menus/CustomContextMenu';
|
|
4
4
|
export * from './components/controls/Menus/ContentMenu';
|
|
5
5
|
export * from './components/controls/ExpandableButton';
|
|
6
|
+
export * from './components/controls/FindInPageModal';
|
|
6
7
|
export * from './components/controls/Toggle';
|
|
7
8
|
export * from './components/elements/Badge';
|
|
8
9
|
export * from './components/elements/Calendar';
|
package/dist/index.js
CHANGED
|
@@ -242,7 +242,86 @@ var e={6557:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});var r=n(6758),o=n.n(r),a=n(9
|
|
|
242
242
|
opacity: unset;
|
|
243
243
|
}
|
|
244
244
|
}
|
|
245
|
-
`},7106:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(92),t),o(n(1423),t)},
|
|
245
|
+
`},7106:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(92),t),o(n(1423),t)},469:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),a=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return o(t,e),t},i=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.FindInPageModal=void 0;const l=n(1085),s=a(n(2015)),c=i(n(2770)),u=n(2394),d=n(7371),p=n(5347),f=n(5570),h={ariaLabelSearchField:"Search field",placeholder:"Find in page...",titleClose:"Close",titleNextResult:"Next result",titlePreviousResult:"Previous result"};t.FindInPageModal=({labels:e,currentResultIndex:t,totalResults:n,value:r,shouldFocusInput:o=!1,onResetFocusInput:a,onNextResult:i,onPreviousResult:c,onClose:d,onFindTextChanged:p})=>{const[f,C]=s.useState(""),_=s.useRef(null),O=(null!=n?n:0)>1,w=null!=t&&null!=n,j=null!=r?r:f,k=Object.assign(Object.assign({},h),e);return s.useEffect(()=>{o&&_.current&&(_.current.select(),null==a||a())},[o,a]),s.useEffect(()=>{const e=e=>{switch(e.key){case"Escape":e.preventDefault(),d();break;case"Enter":document.activeElement===_.current&&(e.preventDefault(),O&&(e.shiftKey?c():i()))}};return document.addEventListener("keydown",e),()=>document.removeEventListener("keydown",e)},[d,i,c,O]),(0,l.jsxs)(b,{children:[(0,l.jsxs)(v,{children:[(0,l.jsx)(x,{ref:_,placeholder:k.placeholder,value:j,onChange:e=>{const t=e.target.value;void 0===r&&C(t),p(t)},type:"search",role:"searchbox","aria-controls":"find-controls","aria-label":k.ariaLabelSearchField}),w&&(0,l.jsxs)(y,{"aria-live":"polite","aria-atomic":"true",children:[t,"/",n]})]}),(0,l.jsxs)(g,{id:"find-controls",children:[(0,l.jsx)(m,{disabled:!O,title:k.titlePreviousResult,onClick:()=>c(),children:(0,l.jsx)(u.Icon,{icon:"ArrowUpIcon"})}),(0,l.jsx)(m,{disabled:!O,title:k.titleNextResult,onClick:()=>i(),children:(0,l.jsx)(u.Icon,{icon:"ArrowDownIcon"})}),(0,l.jsx)(m,{title:k.titleClose,onClick:()=>d(),children:(0,l.jsx)(u.Icon,{icon:"Cross1Icon",size:"small",containerSize:"base"})})]})]})};const b=(0,c.default)(p.Box)`
|
|
246
|
+
display: flex;
|
|
247
|
+
flex-direction: row;
|
|
248
|
+
justify-content: flex-end;
|
|
249
|
+
width: 360px;
|
|
250
|
+
height: 100%;
|
|
251
|
+
background-color: ${({theme:e})=>e.palette.background1};
|
|
252
|
+
border: ${({theme:e})=>`1px solid ${e.palette.background4}`};
|
|
253
|
+
`,g=(0,c.default)(p.Box)`
|
|
254
|
+
display: flex;
|
|
255
|
+
flex-direction: row;
|
|
256
|
+
align-items: center;
|
|
257
|
+
justify-content: flex-start;
|
|
258
|
+
padding: ${({theme:e})=>e.px.base};
|
|
259
|
+
border-left: ${({theme:e})=>`1px solid ${e.palette.background4}`};
|
|
260
|
+
`,m=c.default.button`
|
|
261
|
+
display: flex;
|
|
262
|
+
align-items: center;
|
|
263
|
+
justify-content: center;
|
|
264
|
+
background-color: transparent;
|
|
265
|
+
color: ${({theme:e})=>e.palette.textDefault};
|
|
266
|
+
border: none;
|
|
267
|
+
padding: ${({theme:e})=>e.px.xsmall};
|
|
268
|
+
border-radius: ${({theme:e})=>e.radius.small};
|
|
269
|
+
|
|
270
|
+
&:disabled {
|
|
271
|
+
cursor: not-allowed;
|
|
272
|
+
|
|
273
|
+
svg path {
|
|
274
|
+
color: ${({theme:e})=>e.palette.textInactive};
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
&:not(:disabled) {
|
|
279
|
+
&:hover {
|
|
280
|
+
background-color: ${({theme:e})=>(0,f.toRgbaColor)(e.palette.brandSecondaryFocused,.12)};
|
|
281
|
+
|
|
282
|
+
&:active {
|
|
283
|
+
background-color: ${({theme:e})=>(0,f.toRgbaColor)(e.palette.brandSecondaryFocused,.18)};
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
&:focus-visible {
|
|
288
|
+
outline: 2px solid ${({theme:e})=>e.palette.inputFocused};
|
|
289
|
+
outline-offset: -1px;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
`,v=(0,c.default)(p.Box)`
|
|
293
|
+
width: 100%;
|
|
294
|
+
padding-right: ${({theme:e})=>e.px.base};
|
|
295
|
+
padding-left: ${({theme:e})=>e.px.base};
|
|
296
|
+
padding-top: ${({theme:e})=>e.px.large};
|
|
297
|
+
padding-bottom: ${({theme:e})=>e.px.large};
|
|
298
|
+
align-items: center;
|
|
299
|
+
justify-content: flex-end;
|
|
300
|
+
|
|
301
|
+
& > div:first-child {
|
|
302
|
+
flex-grow: 1;
|
|
303
|
+
margin-right: ${({theme:e})=>e.px.small};
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
input::placeholder {
|
|
307
|
+
color: ${({theme:e})=>e.palette.inputPlaceholder};
|
|
308
|
+
}
|
|
309
|
+
`,x=(0,c.default)(d.TextInput)`
|
|
310
|
+
width: 100%;
|
|
311
|
+
border: none;
|
|
312
|
+
padding: 1px;
|
|
313
|
+
border-radius: ${({theme:e})=>e.radius.none};
|
|
314
|
+
background-color: transparent;
|
|
315
|
+
box-shadow: none;
|
|
316
|
+
|
|
317
|
+
&::-webkit-search-cancel-button {
|
|
318
|
+
-webkit-appearance: none;
|
|
319
|
+
appearance: none;
|
|
320
|
+
display: none;
|
|
321
|
+
}
|
|
322
|
+
`,y=c.default.div`
|
|
323
|
+
line-height: 1.3;
|
|
324
|
+
`},57:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(469),t)},7643:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ContentMenu=t.findPathToItemWithId=void 0;const o=n(1085),a=n(2015),i=r(n(2770)),l=n(5347),s=n(4404),c=r(n(5756)),u=n(4598);t.findPathToItemWithId=(e,n,r)=>{if(e.id===r)return n;if(e.children)for(let o=0;o<e.children.length;++o){const a=e.children[o];n.push(a.id);const i=(0,t.findPathToItemWithId)(a,n,r);if(i)return i;n.pop()}},t.ContentMenu=({structure:e,handleClickItem:n,handleBookmarkItem:r,targetId:i,disableBookmarking:l,selectedScheme:p})=>{const[f,h]=(0,a.useState)([]),[b,g]=(0,a.useState)(),m=(0,a.useRef)(null),[v,x]=(0,a.useState)({}),y=(0,a.useCallback)(()=>{m.current&&m.current.scrollTo({left:m.current.scrollWidth,behavior:"smooth"})},[]),C=(0,a.useCallback)((e,t)=>{x(e&&t?{label:e,element:t}:{})},[]);(0,a.useEffect)(()=>{if(i){const n=(0,t.findPathToItemWithId)({id:"",children:e},[],i);if(n)return h(n),void g(`content-menu-item-${i}`)}g(void 0)},[i]),(0,a.useEffect)(()=>{y()},[f]);const[_,O]=(0,a.useState)(null);return(0,a.useEffect)(()=>{var t,n;O(null!==(n=null===(t=null==e?void 0:e[0])||void 0===t?void 0:t.id)&&void 0!==n?n:null)},e),(0,o.jsxs)(o.Fragment,{children:[(0,o.jsx)(c.default,{label:v.label,element:v.element}),(0,o.jsx)(d,{ref:m,role:"tree",onScroll:()=>C(),children:(0,o.jsx)(u.ContentMenuContext.Provider,{value:{focusedContentItemId:_,setFocusedContentItemId:e=>O(e)},children:(0,o.jsx)(s.ContentMenuColumn,{entries:e,depth:0,path:f,targetItemId:b,setCurrentlySelectedPath:h,handleClickItem:n,handleBookmarkItem:r,parentEntry:null,toggleTooltip:C,disableBookmarking:l,selectedScheme:p})})})]})};const d=(0,i.default)(l.Box)`
|
|
246
325
|
height: 100%;
|
|
247
326
|
width: 100%;
|
|
248
327
|
|
|
@@ -396,7 +475,7 @@ var e={6557:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});var r=n(6758),o=n.n(r),a=n(9
|
|
|
396
475
|
border-top-color: ${({theme:e})=>e.palette.background1};
|
|
397
476
|
`}
|
|
398
477
|
}
|
|
399
|
-
`},6473:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(7643),t)},9399:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CustomContextMenu=t.CONTEXT_MENU_ANIMATION_DURATION=t.PRIOR_CONTEXT_MENU_CLASS=t.BASE_CONTEXT_MENU=t.ACTIVE_CONTEXT_MENU_CLASS=t.CONTEXT_MENU_FRAME_ID=void 0;const o=n(1085),a=n(2015),i=r(n(2770)),l=n(1525),s=n(6644),c=n(6502),u=n(4848),d=n(9993),p=n(6559),f=n(4045);t.CONTEXT_MENU_FRAME_ID="context_menu_frame",t.ACTIVE_CONTEXT_MENU_CLASS="active_context_menu",t.BASE_CONTEXT_MENU="base_context_menu",t.PRIOR_CONTEXT_MENU_CLASS="previous_context_menu",t.CONTEXT_MENU_ANIMATION_DURATION=200,t.CustomContextMenu=({menuTemplate:e,onClick:n,icon:r,onMenuResize:i,onContextMenuReady:l,isWindows:g=!0})=>{var m;const v=(0,a.useRef)(null),[x,y]=(0,a.useState)(!1),[C,_]=(0,a.useState)({width:160,height:160}),[O,w]=(0,a.useState)(0),[j,k]=(0,a.useState)([]),[P,S]=(0,a.useState)(),[M,$]=(0,a.useState)([]),[I,D]=(0,a.useState)(e.map(e=>e.label||"")),[B,E]=(0,a.useState)(-1);(0,a.useEffect)(()=>{D(e.map(e=>e.label||"")),E(I.findIndex(e=>e===P))},[e]);const{width:T,height:F}=(0,p.useResizeContextMenu)(P),{handleNavigateToSubmenu:L,handleNavigateBackToParent:H,handleNavigateToBase:
|
|
478
|
+
`},6473:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(7643),t)},9399:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CustomContextMenu=t.CONTEXT_MENU_ANIMATION_DURATION=t.PRIOR_CONTEXT_MENU_CLASS=t.BASE_CONTEXT_MENU=t.ACTIVE_CONTEXT_MENU_CLASS=t.CONTEXT_MENU_FRAME_ID=void 0;const o=n(1085),a=n(2015),i=r(n(2770)),l=n(1525),s=n(6644),c=n(6502),u=n(4848),d=n(9993),p=n(6559),f=n(4045);t.CONTEXT_MENU_FRAME_ID="context_menu_frame",t.ACTIVE_CONTEXT_MENU_CLASS="active_context_menu",t.BASE_CONTEXT_MENU="base_context_menu",t.PRIOR_CONTEXT_MENU_CLASS="previous_context_menu",t.CONTEXT_MENU_ANIMATION_DURATION=200,t.CustomContextMenu=({menuTemplate:e,onClick:n,icon:r,onMenuResize:i,onContextMenuReady:l,isWindows:g=!0})=>{var m;const v=(0,a.useRef)(null),[x,y]=(0,a.useState)(!1),[C,_]=(0,a.useState)({width:160,height:160}),[O,w]=(0,a.useState)(0),[j,k]=(0,a.useState)([]),[P,S]=(0,a.useState)(),[M,$]=(0,a.useState)([]),[I,D]=(0,a.useState)(e.map(e=>e.label||"")),[B,E]=(0,a.useState)(-1);(0,a.useEffect)(()=>{D(e.map(e=>e.label||"")),E(I.findIndex(e=>e===P))},[e]);const{width:T,height:F}=(0,p.useResizeContextMenu)(P),{handleNavigateToSubmenu:L,handleNavigateBackToParent:H,handleNavigateToBase:R}=(0,d.useContextMenuNavigation)(O,w,M,$,P,S,_,E,j,i);return(0,a.useEffect)(()=>{k((0,f.getMenuNavigationOrder)(e)),S(t.BASE_CONTEXT_MENU),$([]),_({width:T,height:F})},[e]),(0,u.useContextMenuKeyboardNavigation)(null===(m=j.find(e=>e.parentLabel===P))||void 0===m?void 0:m.menuTemplate,M,P,B,E,n,L,H,R),(0,a.useEffect)(()=>{v.current&&(x||(l&&l(),y(!0)))},[v.current]),(0,o.jsx)(h,{id:t.CONTEXT_MENU_FRAME_ID,transitionSpeed:O,isWindows:g,children:j.map(({parentLabel:e,menuTemplate:a})=>(0,o.jsx)("div",{ref:e===P?v:void 0,children:(0,o.jsxs)(b,{className:(0,f.getClassName)(e,P,M),activeMenuWidth:C.width,transitionSpeed:O,id:e,children:[e!==t.BASE_CONTEXT_MENU?(0,o.jsx)(s.CustomContextMenuItem,{type:"submenuHeader",label:e,onBack:()=>H(e,"click"),onClose:R,showShouldHomeButton:M.slice(2).includes(e)||M.length>=2&&P===e,selected:-1===B},`${e}-submenu-header`):r&&(0,o.jsx)(c.RootMenuHeader,{icon:r}),a.map((t,r)=>(0,o.jsx)(s.CustomContextMenuItem,Object.assign({onClick:e=>{t.hasSubMenu?L(t.label||""):n(e),E(-2)}},t,{selected:B===r}),`${e}-${t.label}-${r}`))]})},e))})};const h=i.default.div`
|
|
400
479
|
position: relative;
|
|
401
480
|
min-width: fit-content;
|
|
402
481
|
min-height: fit-content;
|
|
@@ -1320,7 +1399,7 @@ var e={6557:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});var r=n(6758),o=n.n(r),a=n(9
|
|
|
1320
1399
|
--openfin-ui-globalTransition: ${({theme:e})=>e.transition.none};
|
|
1321
1400
|
}
|
|
1322
1401
|
}
|
|
1323
|
-
`,t.GlobalFonts=r.createGlobalStyle`${({fonts:e})=>(0,o.createFontFaceCss)(e)}`},4730:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(6931),t)},6573:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3437:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(3453),t),o(n(9375),t)},9037:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.getMostReadable=t.darkenColor=t.lightenColor=void 0;const o=r(n(5888)),a=(e,t,n)=>{if(n&&(n<0||n>100))throw new Error(`${n} must be a number between 0 and 100`);return(0,o.default)(e)[t](n).toString()};t.lightenColor=(e,t)=>a(e,"lighten",t),t.darkenColor=(e,t)=>a(e,"darken",t),t.getMostReadable=(e,t)=>o.default.mostReadable(e,t).toHexString()},5820:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.IconSize=t.Transition=t.LineHeight=t.FontWeight=t.FontSize=t.FontFamily=t.Shadow=t.Radius=t.UnitPx=t.Unit=t.SizeName=t.Size=t.Color=void 0,t.Color={white:"#FFFFFF",lightGray1:"#FAFBFE",lightGray2:"#F3F5F8",lightGray3:"#ECEEF1",lightGray4:"#DDDFE4",lightGray5:"#C9CBD2",neutralGray:"#7D808A",neutralGray80:"rgba(125,128,138,0.8)",silverGray:"#C0C1C2",darkGray1:"#53565F",darkGray2:"#383A40",darkGray3:"#2F3136",darkGray4:"#24262B",darkGray5:"#1E1F23",darkGray6:"#111214",openFinDarkest:"#3D39CD",openFinDarker:"#4642E0",openFin:"#504CFF",openFinLight:"#5254FB",openFinLighter:"#5C5EFE",openFinLightest:"#6864FF",functional1:"#207735",functional2:"#46C8F1",functional3:"#0A76D3",functional4:"#6CADE5",functional5:"#0A76D3",functional6:"#882BFE",functional7:"#F31818",functional8:"#C93400",functional9:"#FF5E60",functional10:"#F48F00",purple:"
|
|
1402
|
+
`,t.GlobalFonts=r.createGlobalStyle`${({fonts:e})=>(0,o.createFontFaceCss)(e)}`},4730:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(6931),t)},6573:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0})},3437:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(3453),t),o(n(9375),t)},9037:function(e,t,n){var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.toRgbaColor=t.getMostReadable=t.darkenColor=t.lightenColor=void 0;const o=r(n(5888)),a=(e,t,n)=>{if(n&&(n<0||n>100))throw new Error(`${n} must be a number between 0 and 100`);return(0,o.default)(e)[t](n).toString()};t.lightenColor=(e,t)=>a(e,"lighten",t),t.darkenColor=(e,t)=>a(e,"darken",t),t.getMostReadable=(e,t)=>o.default.mostReadable(e,t).toHexString(),t.toRgbaColor=(e,t=1)=>(0,o.default)(e).setAlpha(t).toRgbString()},5820:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.IconSize=t.Transition=t.LineHeight=t.FontWeight=t.FontSize=t.FontFamily=t.Shadow=t.Radius=t.UnitPx=t.Unit=t.SizeName=t.Size=t.Color=void 0,t.Color={white:"#FFFFFF",lightGray1:"#FAFBFE",lightGray2:"#F3F5F8",lightGray3:"#ECEEF1",lightGray4:"#DDDFE4",lightGray5:"#C9CBD2",neutralGray:"#7D808A",neutralGray80:"rgba(125,128,138,0.8)",silverGray:"#C0C1C2",darkGray1:"#53565F",darkGray2:"#383A40",darkGray3:"#2F3136",darkGray4:"#24262B",darkGray5:"#1E1F23",darkGray6:"#111214",openFinDarkest:"#3D39CD",openFinDarker:"#4642E0",openFin:"#504CFF",openFinLight:"#5254FB",openFinLighter:"#5C5EFE",openFinLightest:"#6864FF",functional1:"#207735",functional2:"#46C8F1",functional3:"#0A76D3",functional4:"#6CADE5",functional5:"#0A76D3",functional6:"#882BFE",functional7:"#F31818",functional8:"#C93400",functional9:"#FF5E60",functional10:"#F48F00",purple:"var(--color-primitives-indigo-500)",lightblue:"var(--color-primitives-blue-500)",aqua:"var(--color-primitives-teal-500)",yellow:"var(--color-primitives-yellow-500)",salmon:"var(--color-primitives-orange-500)",pink:"var(--color-primitives-pink-500)",lightpink:"var(--color-primitives-pink-500)",white00:"rgba(255,255,255,0.0)",white10:"rgba(255,255,255,0.1)",white20:"rgba(255,255,255,0.2)",white30:"rgba(255,255,255,0.3)",white40:"rgba(255,255,255,0.4)",white50:"rgba(255,255,255,0.5)",white60:"rgba(255,255,255,0.6)",white70:"rgba(255,255,255,0.7)",white80:"rgba(255,255,255,0.8)",white90:"rgba(255,255,255,0.9)",black00:"rgba(0,0,0,0.0)",black10:"rgba(0,0,0,0.1)",black20:"rgba(0,0,0,0.2)",black30:"rgba(0,0,0,0.3)",black40:"rgba(0,0,0,0.4)",black50:"rgba(0,0,0,0.5)",black60:"rgba(0,0,0,0.6)",black70:"rgba(0,0,0,0.7)",black80:"rgba(0,0,0,0.8)",black90:"rgba(0,0,0,0.9)",transparent:"transparent",openFinActive:"#4642FF",openFinHover:"#6965FF",lightGray4Active:"#D7DADF",lightGray4Hover:"#EBECEF",darkGray2Active:"#33353B",darkGray2Hover:"#44464E"},t.Size={xsmall:"xsmall",small:"small",base:"base",large:"large",xlarge:"xlarge",xxlarge:"xxlarge",xxxlarge:"xxxlarge",xxxxlarge:"xxxxlarge"},t.SizeName={[t.Size.xsmall]:"Extra Small",[t.Size.small]:"Small",[t.Size.base]:"Base",[t.Size.large]:"Large",[t.Size.xlarge]:"Extra Large",[t.Size.xxlarge]:"2X Large",[t.Size.xxxlarge]:"3X Large",[t.Size.xxxxlarge]:"4X Large"},t.Unit={[t.Size.xsmall]:4,[t.Size.small]:8,[t.Size.base]:12,[t.Size.large]:16,[t.Size.xlarge]:20,[t.Size.xxlarge]:24,[t.Size.xxxlarge]:32,[t.Size.xxxxlarge]:48},t.UnitPx={[t.Size.xsmall]:"4px",[t.Size.small]:"8px",[t.Size.base]:"12px",[t.Size.large]:"16px",[t.Size.xlarge]:"20px",[t.Size.xxlarge]:"24px",[t.Size.xxxlarge]:"32px",[t.Size.xxxxlarge]:"48px"},t.Radius={[t.Size.xsmall]:"2px",[t.Size.small]:"4px",[t.Size.base]:"8px",[t.Size.large]:"24px",pill:"100vh",round:"50%",none:"0"},t.Shadow={[t.Size.base]:"0 4px 4px rgba(0, 0, 0, 0.25)"},t.FontFamily=["Inter","system-ui","BlinkMacSystemFont","Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue","sans-serif"].join(","),t.FontSize={[t.Size.xsmall]:"8px",[t.Size.small]:"10px",[t.Size.base]:"12px",[t.Size.large]:"14px",[t.Size.xlarge]:"16px",[t.Size.xxlarge]:"18px",[t.Size.xxxlarge]:"20px",[t.Size.xxxxlarge]:"40px"},t.FontWeight={normal:400,bold:600},t.LineHeight={ui:1,heading:1.2,text:1.5},t.Transition={base:"200ms cubic-bezier(0.16, 1, 0.3, 1)",none:"0ms"},t.IconSize={[t.Size.xsmall]:t.UnitPx.small,[t.Size.small]:t.UnitPx.base,[t.Size.base]:"15px",[t.Size.large]:t.UnitPx.xlarge,[t.Size.xlarge]:t.UnitPx.xxlarge,[t.Size.xxlarge]:t.UnitPx.xxxlarge,[t.Size.xxxlarge]:t.UnitPx.xxxxlarge}},5254:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.createFontFaceCss=function(e){return r.css`
|
|
1324
1403
|
${e.regular&&r.css`
|
|
1325
1404
|
@font-face {
|
|
1326
1405
|
font-family: 'Inter';
|
|
@@ -1483,4 +1562,4 @@ var e={6557:(e,t,n)=>{n.r(t),n.d(t,{default:()=>l});var r=n(6758),o=n.n(r),a=n(9
|
|
|
1483
1562
|
font-size: ${({theme:e,size:t="base"})=>e.fontSize[t]};
|
|
1484
1563
|
font-weight: ${({theme:e,weight:t="normal"})=>e.fontWeight[t]};
|
|
1485
1564
|
line-height: ${({theme:e})=>e.lineHeight.text};
|
|
1486
|
-
`,t.Text.displayName="Text"},2069:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useColorScheme=t.ColorScheme=void 0;const r=n(2015);t.ColorScheme={dark:"dark",light:"light",system:"system"};const o=(e,n)=>n===t.ColorScheme.system?e.matches?t.ColorScheme.dark:t.ColorScheme.light:n;t.useColorScheme=({colorScheme:e,fallbackScheme:n=t.ColorScheme.light})=>{const[a,i]=(0,r.useState)(e&&e!==t.ColorScheme.system?e:n),l=t=>{i(o(t,e||n))};return(0,r.useEffect)(()=>{if("undefined"!=typeof window){const t=window.matchMedia("(prefers-color-scheme: dark)");return i(o(t,e||n)),t.addEventListener("change",l),()=>t.removeEventListener("change",l)}},[e,a]),a}},5991:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useDropdownKeyboardNavigation=void 0;const r=n(2015);t.useDropdownKeyboardNavigation=(e,t,n,o,a)=>{const[i,l]=(0,r.useState)(0),[s,c]=(0,r.useState)("");let u;if((0,r.useEffect)(()=>{if(t&&!n){const n=e.flat().findIndex(e=>e.value===t.value);n>=0&&l(n)}},[e,t,n]),(0,r.useEffect)(()=>{n||c("")},[n]),(0,r.useEffect)(()=>{if(s){const t=e.flat().findIndex(e=>e.title.toLowerCase().startsWith(s.toLowerCase()));t>=0&&l(t)}},[e,s]),e[0].length>0&&e.flat().length>i){const[t,n]=[Math.floor(i/e[0].length),i%e[0].length];u=e[t][n]}return(0,r.useEffect)(()=>{const e=setTimeout(()=>{c("")},500);return()=>clearTimeout(e)},[s]),{focusedOption:u,handleKeyDown:t=>{switch(t.code){case"ArrowUp":t.preventDefault(),i>0&&l(i-1);break;case"ArrowDown":t.preventDefault(),i<e.flat().length-1&&l(i+1);break;case"Enter":case"Space":t.preventDefault(),n?((null==u?void 0:u.overrideOnClick)?u.overrideOnClick():a(null!=u?u:e[0][0]),o()):o();break;case"Escape":t.preventDefault(),o(!1);break;default:/^[a-z0-9]$/i.test(t.key)&&c(e=>e+t.key)}}}}},7681:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useLayoutMediaQuery=t.useMediaQuery=void 0;const r=n(2015);t.useMediaQuery=e=>{const[t,n]=(0,r.useState)(!1);return(0,r.useEffect)(()=>{const r=window.matchMedia(e);if(r){r.matches!==t&&n(r.matches);const e=()=>n(r.matches),o=()=>r.removeEventListener("change",e);return r.addEventListener("change",e),o}},[t,e]),t},t.useLayoutMediaQuery=e=>{const[t,n]=(0,r.useState)(!1);return(0,r.useLayoutEffect)(()=>{const r=window.matchMedia(e);if(r){r.matches!==t&&n(r.matches);const e=()=>n(r.matches),o=()=>r.removeEventListener("change",e);return r.addEventListener("change",e),o}},[t,e]),t}},9372:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.usePrevious=void 0;const r=n(2015);t.usePrevious=e=>{const t=(0,r.useRef)();return(0,r.useEffect)(()=>{t.current=e},[e]),t.current}},1900:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useTheme=void 0;const r=n(2015),o=n(7825),a=n(3979),i=n(2069),l={[i.ColorScheme.dark]:a.OpenFinDarkTheme,[i.ColorScheme.light]:a.OpenFinLightTheme};t.useTheme=({themes:e,scheme:t})=>{const n=(0,i.useColorScheme)({colorScheme:t});return(0,r.useMemo)(()=>{try{return((e,t)=>{const n=null==t?void 0:t[e];let r=Object.assign({},l[e]);return n&&(r=(0,o.merge)(r,n)),r})(n,e)}catch(e){return console.error(e),{}}},[e,n])}},2869:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(2870),t),o(n(1028),t),o(n(8904),t),o(n(6473),t),o(n(7106),t),o(n(9194),t),o(n(3038),t),o(n(2911),t),o(n(2861),t),o(n(2394),t),o(n(5355),t),o(n(6836),t),o(n(3417),t),o(n(4124),t),o(n(7371),t),o(n(4629),t),o(n(3543),t),o(n(6834),t),o(n(1607),t),o(n(812),t),o(n(1490),t),o(n(2908),t),o(n(5347),t),o(n(8981),t),o(n(5570),t),o(n(2397),t),o(n(6299),t),o(n(3968),t),o(n(2069),t),o(n(7681),t),o(n(9372),t),o(n(5991),t),o(n(4692),t),o(n(4962),t),o(n(4924),t),o(n(6999),t)},4962:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.generateColorFromString=function(e="",t=70,n=50){let r=0;for(let t=0;t<e.length;t++)r=e.charCodeAt(t)+((r<<5)-r),r&=r;return`hsl(${r%360}, ${t}%, ${n}%)`}},4692:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.whenFin=function(e,t){const n="undefined"!=typeof fin?e:t;return"function"==typeof n?n():n}},9802:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-Italic.woff2"},9294:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-Regular.woff2"},3325:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-SemiBold.woff2"},2773:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-SemiBoldItalic.woff2"},824:e=>{e.exports=require("@radix-ui/react-icons")},5322:e=>{e.exports=require("framer-motion")},7825:e=>{e.exports=require("lodash")},2015:e=>{e.exports=require("react")},9500:e=>{e.exports=require("react-calendar")},2770:e=>{e.exports=require("styled-components")},5888:function(e){e.exports=function(){function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}var t=/^\s+/,n=/\s+$/;function r(o,a){if(a=a||{},(o=o||"")instanceof r)return o;if(!(this instanceof r))return new r(o,a);var i=function(r){var o={r:0,g:0,b:0},a=1,i=null,l=null,s=null,c=!1,u=!1;return"string"==typeof r&&(r=function(e){e=e.replace(t,"").replace(n,"").toLowerCase();var r,o=!1;if(y[e])e=y[e],o=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(r=B.rgb.exec(e))?{r:r[1],g:r[2],b:r[3]}:(r=B.rgba.exec(e))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=B.hsl.exec(e))?{h:r[1],s:r[2],l:r[3]}:(r=B.hsla.exec(e))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=B.hsv.exec(e))?{h:r[1],s:r[2],v:r[3]}:(r=B.hsva.exec(e))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=B.hex8.exec(e))?{r:j(r[1]),g:j(r[2]),b:j(r[3]),a:M(r[4]),format:o?"name":"hex8"}:(r=B.hex6.exec(e))?{r:j(r[1]),g:j(r[2]),b:j(r[3]),format:o?"name":"hex"}:(r=B.hex4.exec(e))?{r:j(r[1]+""+r[1]),g:j(r[2]+""+r[2]),b:j(r[3]+""+r[3]),a:M(r[4]+""+r[4]),format:o?"name":"hex8"}:!!(r=B.hex3.exec(e))&&{r:j(r[1]+""+r[1]),g:j(r[2]+""+r[2]),b:j(r[3]+""+r[3]),format:o?"name":"hex"}}(r)),"object"==e(r)&&(E(r.r)&&E(r.g)&&E(r.b)?(d=r.r,p=r.g,f=r.b,o={r:255*O(d,255),g:255*O(p,255),b:255*O(f,255)},c=!0,u="%"===String(r.r).substr(-1)?"prgb":"rgb"):E(r.h)&&E(r.s)&&E(r.v)?(i=P(r.s),l=P(r.v),o=function(e,t,n){e=6*O(e,360),t=O(t,100),n=O(n,100);var r=Math.floor(e),o=e-r,a=n*(1-t),i=n*(1-o*t),l=n*(1-(1-o)*t),s=r%6;return{r:255*[n,i,a,a,l,n][s],g:255*[l,n,n,i,a,a][s],b:255*[a,a,l,n,n,i][s]}}(r.h,i,l),c=!0,u="hsv"):E(r.h)&&E(r.s)&&E(r.l)&&(i=P(r.s),s=P(r.l),o=function(e,t,n){var r,o,a;function i(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=O(e,360),t=O(t,100),n=O(n,100),0===t)r=o=a=n;else{var l=n<.5?n*(1+t):n+t-n*t,s=2*n-l;r=i(s,l,e+1/3),o=i(s,l,e),a=i(s,l,e-1/3)}return{r:255*r,g:255*o,b:255*a}}(r.h,i,s),c=!0,u="hsl"),r.hasOwnProperty("a")&&(a=r.a)),a=_(a),{ok:c,format:r.format||u,r:Math.min(255,Math.max(o.r,0)),g:Math.min(255,Math.max(o.g,0)),b:Math.min(255,Math.max(o.b,0)),a};var d,p,f}(o);this._originalInput=o,this._r=i.r,this._g=i.g,this._b=i.b,this._a=i.a,this._roundA=Math.round(100*this._a)/100,this._format=a.format||i.format,this._gradientType=a.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=i.ok}function o(e,t,n){e=O(e,255),t=O(t,255),n=O(n,255);var r,o,a=Math.max(e,t,n),i=Math.min(e,t,n),l=(a+i)/2;if(a==i)r=o=0;else{var s=a-i;switch(o=l>.5?s/(2-a-i):s/(a+i),a){case e:r=(t-n)/s+(t<n?6:0);break;case t:r=(n-e)/s+2;break;case n:r=(e-t)/s+4}r/=6}return{h:r,s:o,l}}function a(e,t,n){e=O(e,255),t=O(t,255),n=O(n,255);var r,o,a=Math.max(e,t,n),i=Math.min(e,t,n),l=a,s=a-i;if(o=0===a?0:s/a,a==i)r=0;else{switch(a){case e:r=(t-n)/s+(t<n?6:0);break;case t:r=(n-e)/s+2;break;case n:r=(e-t)/s+4}r/=6}return{h:r,s:o,v:l}}function i(e,t,n,r){var o=[k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16))];return r&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)?o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0):o.join("")}function l(e,t,n,r){return[k(S(r)),k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16))].join("")}function s(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.s-=t/100,n.s=w(n.s),r(n)}function c(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.s+=t/100,n.s=w(n.s),r(n)}function u(e){return r(e).desaturate(100)}function d(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.l+=t/100,n.l=w(n.l),r(n)}function p(e,t){t=0===t?0:t||10;var n=r(e).toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-t/100*255))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-t/100*255))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-t/100*255))),r(n)}function f(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.l-=t/100,n.l=w(n.l),r(n)}function h(e,t){var n=r(e).toHsl(),o=(n.h+t)%360;return n.h=o<0?360+o:o,r(n)}function b(e){var t=r(e).toHsl();return t.h=(t.h+180)%360,r(t)}function g(e,t){if(isNaN(t)||t<=0)throw new Error("Argument to polyad must be a positive number");for(var n=r(e).toHsl(),o=[r(e)],a=360/t,i=1;i<t;i++)o.push(r({h:(n.h+i*a)%360,s:n.s,l:n.l}));return o}function m(e){var t=r(e).toHsl(),n=t.h;return[r(e),r({h:(n+72)%360,s:t.s,l:t.l}),r({h:(n+216)%360,s:t.s,l:t.l})]}function v(e,t,n){t=t||6,n=n||30;var o=r(e).toHsl(),a=360/n,i=[r(e)];for(o.h=(o.h-(a*t>>1)+720)%360;--t;)o.h=(o.h+a)%360,i.push(r(o));return i}function x(e,t){t=t||6;for(var n=r(e).toHsv(),o=n.h,a=n.s,i=n.v,l=[],s=1/t;t--;)l.push(r({h:o,s:a,v:i})),i=(i+s)%1;return l}r.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=_(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=a(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=a(this._r,this._g,this._b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=o(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=o(this._r,this._g,this._b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return i(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,o){var a=[k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16)),k(S(r))];return o&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(100*O(this._r,255))+"%",g:Math.round(100*O(this._g,255))+"%",b:Math.round(100*O(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+Math.round(100*O(this._r,255))+"%, "+Math.round(100*O(this._g,255))+"%, "+Math.round(100*O(this._b,255))+"%)":"rgba("+Math.round(100*O(this._r,255))+"%, "+Math.round(100*O(this._g,255))+"%, "+Math.round(100*O(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(C[i(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+l(this._r,this._g,this._b,this._a),n=t,o=this._gradientType?"GradientType = 1, ":"";if(e){var a=r(e);n="#"+l(a._r,a._g,a._b,a._a)}return"progid:DXImageTransform.Microsoft.gradient("+o+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return r(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(d,arguments)},brighten:function(){return this._applyModification(p,arguments)},darken:function(){return this._applyModification(f,arguments)},desaturate:function(){return this._applyModification(s,arguments)},saturate:function(){return this._applyModification(c,arguments)},greyscale:function(){return this._applyModification(u,arguments)},spin:function(){return this._applyModification(h,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(v,arguments)},complement:function(){return this._applyCombination(b,arguments)},monochromatic:function(){return this._applyCombination(x,arguments)},splitcomplement:function(){return this._applyCombination(m,arguments)},triad:function(){return this._applyCombination(g,[3])},tetrad:function(){return this._applyCombination(g,[4])}},r.fromRatio=function(t,n){if("object"==e(t)){var o={};for(var a in t)t.hasOwnProperty(a)&&(o[a]="a"===a?t[a]:P(t[a]));t=o}return r(t,n)},r.equals=function(e,t){return!(!e||!t)&&r(e).toRgbString()==r(t).toRgbString()},r.random=function(){return r.fromRatio({r:Math.random(),g:Math.random(),b:Math.random()})},r.mix=function(e,t,n){n=0===n?0:n||50;var o=r(e).toRgb(),a=r(t).toRgb(),i=n/100;return r({r:(a.r-o.r)*i+o.r,g:(a.g-o.g)*i+o.g,b:(a.b-o.b)*i+o.b,a:(a.a-o.a)*i+o.a})},r.readability=function(e,t){var n=r(e),o=r(t);return(Math.max(n.getLuminance(),o.getLuminance())+.05)/(Math.min(n.getLuminance(),o.getLuminance())+.05)},r.isReadable=function(e,t,n){var o,a,i,l,s,c=r.readability(e,t);switch(a=!1,(i=n,"AA"!==(l=((i=i||{level:"AA",size:"small"}).level||"AA").toUpperCase())&&"AAA"!==l&&(l="AA"),"small"!==(s=(i.size||"small").toLowerCase())&&"large"!==s&&(s="small"),o={level:l,size:s}).level+o.size){case"AAsmall":case"AAAlarge":a=c>=4.5;break;case"AAlarge":a=c>=3;break;case"AAAsmall":a=c>=7}return a},r.mostReadable=function(e,t,n){var o,a,i,l,s=null,c=0;a=(n=n||{}).includeFallbackColors,i=n.level,l=n.size;for(var u=0;u<t.length;u++)(o=r.readability(e,t[u]))>c&&(c=o,s=r(t[u]));return r.isReadable(e,s,{level:i,size:l})||!a?s:(n.includeFallbackColors=!1,r.mostReadable(e,["#fff","#000"],n))};var y=r.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},C=r.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(y);function _(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function O(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"==typeof e&&-1!=e.indexOf("%")}(e);return e=Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),Math.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function w(e){return Math.min(1,Math.max(0,e))}function j(e){return parseInt(e,16)}function k(e){return 1==e.length?"0"+e:""+e}function P(e){return e<=1&&(e=100*e+"%"),e}function S(e){return Math.round(255*parseFloat(e)).toString(16)}function M(e){return j(e)/255}var $,I,D,B=(I="[\\s|\\(]+("+($="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+$+")[,|\\s]+("+$+")\\s*\\)?",D="[\\s|\\(]+("+$+")[,|\\s]+("+$+")[,|\\s]+("+$+")[,|\\s]+("+$+")\\s*\\)?",{CSS_UNIT:new RegExp($),rgb:new RegExp("rgb"+I),rgba:new RegExp("rgba"+D),hsl:new RegExp("hsl"+I),hsla:new RegExp("hsla"+D),hsv:new RegExp("hsv"+I),hsva:new RegExp("hsva"+D),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function E(e){return!!B.CSS_UNIT.exec(e)}return r}()}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r=n(2869),o=exports;for(var a in r)o[a]=r[a];r.__esModule&&Object.defineProperty(o,"__esModule",{value:!0});
|
|
1565
|
+
`,t.Text.displayName="Text"},2069:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useColorScheme=t.ColorScheme=void 0;const r=n(2015);t.ColorScheme={dark:"dark",light:"light",system:"system"};const o=(e,n)=>n===t.ColorScheme.system?e.matches?t.ColorScheme.dark:t.ColorScheme.light:n;t.useColorScheme=({colorScheme:e,fallbackScheme:n=t.ColorScheme.light})=>{const[a,i]=(0,r.useState)(e&&e!==t.ColorScheme.system?e:n),l=t=>{i(o(t,e||n))};return(0,r.useEffect)(()=>{if("undefined"!=typeof window){const t=window.matchMedia("(prefers-color-scheme: dark)");return i(o(t,e||n)),t.addEventListener("change",l),()=>t.removeEventListener("change",l)}},[e,a]),a}},5991:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useDropdownKeyboardNavigation=void 0;const r=n(2015);t.useDropdownKeyboardNavigation=(e,t,n,o,a)=>{const[i,l]=(0,r.useState)(0),[s,c]=(0,r.useState)("");let u;if((0,r.useEffect)(()=>{if(t&&!n){const n=e.flat().findIndex(e=>e.value===t.value);n>=0&&l(n)}},[e,t,n]),(0,r.useEffect)(()=>{n||c("")},[n]),(0,r.useEffect)(()=>{if(s){const t=e.flat().findIndex(e=>e.title.toLowerCase().startsWith(s.toLowerCase()));t>=0&&l(t)}},[e,s]),e[0].length>0&&e.flat().length>i){const[t,n]=[Math.floor(i/e[0].length),i%e[0].length];u=e[t][n]}return(0,r.useEffect)(()=>{const e=setTimeout(()=>{c("")},500);return()=>clearTimeout(e)},[s]),{focusedOption:u,handleKeyDown:t=>{switch(t.code){case"ArrowUp":t.preventDefault(),i>0&&l(i-1);break;case"ArrowDown":t.preventDefault(),i<e.flat().length-1&&l(i+1);break;case"Enter":case"Space":t.preventDefault(),n?((null==u?void 0:u.overrideOnClick)?u.overrideOnClick():a(null!=u?u:e[0][0]),o()):o();break;case"Escape":t.preventDefault(),o(!1);break;default:/^[a-z0-9]$/i.test(t.key)&&c(e=>e+t.key)}}}}},7681:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useLayoutMediaQuery=t.useMediaQuery=void 0;const r=n(2015);t.useMediaQuery=e=>{const[t,n]=(0,r.useState)(!1);return(0,r.useEffect)(()=>{const r=window.matchMedia(e);if(r){r.matches!==t&&n(r.matches);const e=()=>n(r.matches),o=()=>r.removeEventListener("change",e);return r.addEventListener("change",e),o}},[t,e]),t},t.useLayoutMediaQuery=e=>{const[t,n]=(0,r.useState)(!1);return(0,r.useLayoutEffect)(()=>{const r=window.matchMedia(e);if(r){r.matches!==t&&n(r.matches);const e=()=>n(r.matches),o=()=>r.removeEventListener("change",e);return r.addEventListener("change",e),o}},[t,e]),t}},9372:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.usePrevious=void 0;const r=n(2015);t.usePrevious=e=>{const t=(0,r.useRef)();return(0,r.useEffect)(()=>{t.current=e},[e]),t.current}},1900:(e,t,n)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.useTheme=void 0;const r=n(2015),o=n(7825),a=n(3979),i=n(2069),l={[i.ColorScheme.dark]:a.OpenFinDarkTheme,[i.ColorScheme.light]:a.OpenFinLightTheme};t.useTheme=({themes:e,scheme:t})=>{const n=(0,i.useColorScheme)({colorScheme:t});return(0,r.useMemo)(()=>{try{return((e,t)=>{const n=null==t?void 0:t[e];let r=Object.assign({},l[e]);return n&&(r=(0,o.merge)(r,n)),r})(n,e)}catch(e){return console.error(e),{}}},[e,n])}},2869:function(e,t,n){var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var o=Object.getOwnPropertyDescriptor(t,n);o&&!("get"in o?!t.__esModule:o.writable||o.configurable)||(o={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,o)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),o=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),o(n(2870),t),o(n(1028),t),o(n(8904),t),o(n(6473),t),o(n(7106),t),o(n(57),t),o(n(9194),t),o(n(3038),t),o(n(2911),t),o(n(2861),t),o(n(2394),t),o(n(5355),t),o(n(6836),t),o(n(3417),t),o(n(4124),t),o(n(7371),t),o(n(4629),t),o(n(3543),t),o(n(6834),t),o(n(1607),t),o(n(812),t),o(n(1490),t),o(n(2908),t),o(n(5347),t),o(n(8981),t),o(n(5570),t),o(n(2397),t),o(n(6299),t),o(n(3968),t),o(n(2069),t),o(n(7681),t),o(n(9372),t),o(n(5991),t),o(n(4692),t),o(n(4962),t),o(n(4924),t),o(n(6999),t)},4962:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.generateColorFromString=function(e="",t=70,n=50){let r=0;for(let t=0;t<e.length;t++)r=e.charCodeAt(t)+((r<<5)-r),r&=r;return`hsl(${r%360}, ${t}%, ${n}%)`}},4692:(e,t)=>{Object.defineProperty(t,"__esModule",{value:!0}),t.whenFin=function(e,t){const n="undefined"!=typeof fin?e:t;return"function"==typeof n?n():n}},9802:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-Italic.woff2"},9294:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-Regular.woff2"},3325:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-SemiBold.woff2"},2773:e=>{e.exports="https://cdn.openfin.co/ui-library/fonts/Inter-SemiBoldItalic.woff2"},824:e=>{e.exports=require("@radix-ui/react-icons")},5322:e=>{e.exports=require("framer-motion")},7825:e=>{e.exports=require("lodash")},2015:e=>{e.exports=require("react")},9500:e=>{e.exports=require("react-calendar")},2770:e=>{e.exports=require("styled-components")},5888:function(e){e.exports=function(){function e(t){return e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e(t)}var t=/^\s+/,n=/\s+$/;function r(o,a){if(a=a||{},(o=o||"")instanceof r)return o;if(!(this instanceof r))return new r(o,a);var i=function(r){var o={r:0,g:0,b:0},a=1,i=null,l=null,s=null,c=!1,u=!1;return"string"==typeof r&&(r=function(e){e=e.replace(t,"").replace(n,"").toLowerCase();var r,o=!1;if(y[e])e=y[e],o=!0;else if("transparent"==e)return{r:0,g:0,b:0,a:0,format:"name"};return(r=B.rgb.exec(e))?{r:r[1],g:r[2],b:r[3]}:(r=B.rgba.exec(e))?{r:r[1],g:r[2],b:r[3],a:r[4]}:(r=B.hsl.exec(e))?{h:r[1],s:r[2],l:r[3]}:(r=B.hsla.exec(e))?{h:r[1],s:r[2],l:r[3],a:r[4]}:(r=B.hsv.exec(e))?{h:r[1],s:r[2],v:r[3]}:(r=B.hsva.exec(e))?{h:r[1],s:r[2],v:r[3],a:r[4]}:(r=B.hex8.exec(e))?{r:j(r[1]),g:j(r[2]),b:j(r[3]),a:M(r[4]),format:o?"name":"hex8"}:(r=B.hex6.exec(e))?{r:j(r[1]),g:j(r[2]),b:j(r[3]),format:o?"name":"hex"}:(r=B.hex4.exec(e))?{r:j(r[1]+""+r[1]),g:j(r[2]+""+r[2]),b:j(r[3]+""+r[3]),a:M(r[4]+""+r[4]),format:o?"name":"hex8"}:!!(r=B.hex3.exec(e))&&{r:j(r[1]+""+r[1]),g:j(r[2]+""+r[2]),b:j(r[3]+""+r[3]),format:o?"name":"hex"}}(r)),"object"==e(r)&&(E(r.r)&&E(r.g)&&E(r.b)?(d=r.r,p=r.g,f=r.b,o={r:255*O(d,255),g:255*O(p,255),b:255*O(f,255)},c=!0,u="%"===String(r.r).substr(-1)?"prgb":"rgb"):E(r.h)&&E(r.s)&&E(r.v)?(i=P(r.s),l=P(r.v),o=function(e,t,n){e=6*O(e,360),t=O(t,100),n=O(n,100);var r=Math.floor(e),o=e-r,a=n*(1-t),i=n*(1-o*t),l=n*(1-(1-o)*t),s=r%6;return{r:255*[n,i,a,a,l,n][s],g:255*[l,n,n,i,a,a][s],b:255*[a,a,l,n,n,i][s]}}(r.h,i,l),c=!0,u="hsv"):E(r.h)&&E(r.s)&&E(r.l)&&(i=P(r.s),s=P(r.l),o=function(e,t,n){var r,o,a;function i(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+6*(t-e)*n:n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}if(e=O(e,360),t=O(t,100),n=O(n,100),0===t)r=o=a=n;else{var l=n<.5?n*(1+t):n+t-n*t,s=2*n-l;r=i(s,l,e+1/3),o=i(s,l,e),a=i(s,l,e-1/3)}return{r:255*r,g:255*o,b:255*a}}(r.h,i,s),c=!0,u="hsl"),r.hasOwnProperty("a")&&(a=r.a)),a=_(a),{ok:c,format:r.format||u,r:Math.min(255,Math.max(o.r,0)),g:Math.min(255,Math.max(o.g,0)),b:Math.min(255,Math.max(o.b,0)),a};var d,p,f}(o);this._originalInput=o,this._r=i.r,this._g=i.g,this._b=i.b,this._a=i.a,this._roundA=Math.round(100*this._a)/100,this._format=a.format||i.format,this._gradientType=a.gradientType,this._r<1&&(this._r=Math.round(this._r)),this._g<1&&(this._g=Math.round(this._g)),this._b<1&&(this._b=Math.round(this._b)),this._ok=i.ok}function o(e,t,n){e=O(e,255),t=O(t,255),n=O(n,255);var r,o,a=Math.max(e,t,n),i=Math.min(e,t,n),l=(a+i)/2;if(a==i)r=o=0;else{var s=a-i;switch(o=l>.5?s/(2-a-i):s/(a+i),a){case e:r=(t-n)/s+(t<n?6:0);break;case t:r=(n-e)/s+2;break;case n:r=(e-t)/s+4}r/=6}return{h:r,s:o,l}}function a(e,t,n){e=O(e,255),t=O(t,255),n=O(n,255);var r,o,a=Math.max(e,t,n),i=Math.min(e,t,n),l=a,s=a-i;if(o=0===a?0:s/a,a==i)r=0;else{switch(a){case e:r=(t-n)/s+(t<n?6:0);break;case t:r=(n-e)/s+2;break;case n:r=(e-t)/s+4}r/=6}return{h:r,s:o,v:l}}function i(e,t,n,r){var o=[k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16))];return r&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)?o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0):o.join("")}function l(e,t,n,r){return[k(S(r)),k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16))].join("")}function s(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.s-=t/100,n.s=w(n.s),r(n)}function c(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.s+=t/100,n.s=w(n.s),r(n)}function u(e){return r(e).desaturate(100)}function d(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.l+=t/100,n.l=w(n.l),r(n)}function p(e,t){t=0===t?0:t||10;var n=r(e).toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-t/100*255))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-t/100*255))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-t/100*255))),r(n)}function f(e,t){t=0===t?0:t||10;var n=r(e).toHsl();return n.l-=t/100,n.l=w(n.l),r(n)}function h(e,t){var n=r(e).toHsl(),o=(n.h+t)%360;return n.h=o<0?360+o:o,r(n)}function b(e){var t=r(e).toHsl();return t.h=(t.h+180)%360,r(t)}function g(e,t){if(isNaN(t)||t<=0)throw new Error("Argument to polyad must be a positive number");for(var n=r(e).toHsl(),o=[r(e)],a=360/t,i=1;i<t;i++)o.push(r({h:(n.h+i*a)%360,s:n.s,l:n.l}));return o}function m(e){var t=r(e).toHsl(),n=t.h;return[r(e),r({h:(n+72)%360,s:t.s,l:t.l}),r({h:(n+216)%360,s:t.s,l:t.l})]}function v(e,t,n){t=t||6,n=n||30;var o=r(e).toHsl(),a=360/n,i=[r(e)];for(o.h=(o.h-(a*t>>1)+720)%360;--t;)o.h=(o.h+a)%360,i.push(r(o));return i}function x(e,t){t=t||6;for(var n=r(e).toHsv(),o=n.h,a=n.s,i=n.v,l=[],s=1/t;t--;)l.push(r({h:o,s:a,v:i})),i=(i+s)%1;return l}r.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},getLuminance:function(){var e,t,n,r=this.toRgb();return e=r.r/255,t=r.g/255,n=r.b/255,.2126*(e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4))+.7152*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))},setAlpha:function(e){return this._a=_(e),this._roundA=Math.round(100*this._a)/100,this},toHsv:function(){var e=a(this._r,this._g,this._b);return{h:360*e.h,s:e.s,v:e.v,a:this._a}},toHsvString:function(){var e=a(this._r,this._g,this._b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.v);return 1==this._a?"hsv("+t+", "+n+"%, "+r+"%)":"hsva("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHsl:function(){var e=o(this._r,this._g,this._b);return{h:360*e.h,s:e.s,l:e.l,a:this._a}},toHslString:function(){var e=o(this._r,this._g,this._b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.l);return 1==this._a?"hsl("+t+", "+n+"%, "+r+"%)":"hsla("+t+", "+n+"%, "+r+"%, "+this._roundA+")"},toHex:function(e){return i(this._r,this._g,this._b,e)},toHexString:function(e){return"#"+this.toHex(e)},toHex8:function(e){return function(e,t,n,r,o){var a=[k(Math.round(e).toString(16)),k(Math.round(t).toString(16)),k(Math.round(n).toString(16)),k(S(r))];return o&&a[0].charAt(0)==a[0].charAt(1)&&a[1].charAt(0)==a[1].charAt(1)&&a[2].charAt(0)==a[2].charAt(1)&&a[3].charAt(0)==a[3].charAt(1)?a[0].charAt(0)+a[1].charAt(0)+a[2].charAt(0)+a[3].charAt(0):a.join("")}(this._r,this._g,this._b,this._a,e)},toHex8String:function(e){return"#"+this.toHex8(e)},toRgb:function(){return{r:Math.round(this._r),g:Math.round(this._g),b:Math.round(this._b),a:this._a}},toRgbString:function(){return 1==this._a?"rgb("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+")":"rgba("+Math.round(this._r)+", "+Math.round(this._g)+", "+Math.round(this._b)+", "+this._roundA+")"},toPercentageRgb:function(){return{r:Math.round(100*O(this._r,255))+"%",g:Math.round(100*O(this._g,255))+"%",b:Math.round(100*O(this._b,255))+"%",a:this._a}},toPercentageRgbString:function(){return 1==this._a?"rgb("+Math.round(100*O(this._r,255))+"%, "+Math.round(100*O(this._g,255))+"%, "+Math.round(100*O(this._b,255))+"%)":"rgba("+Math.round(100*O(this._r,255))+"%, "+Math.round(100*O(this._g,255))+"%, "+Math.round(100*O(this._b,255))+"%, "+this._roundA+")"},toName:function(){return 0===this._a?"transparent":!(this._a<1)&&(C[i(this._r,this._g,this._b,!0)]||!1)},toFilter:function(e){var t="#"+l(this._r,this._g,this._b,this._a),n=t,o=this._gradientType?"GradientType = 1, ":"";if(e){var a=r(e);n="#"+l(a._r,a._g,a._b,a._a)}return"progid:DXImageTransform.Microsoft.gradient("+o+"startColorstr="+t+",endColorstr="+n+")"},toString:function(e){var t=!!e;e=e||this._format;var n=!1,r=this._a<1&&this._a>=0;return t||!r||"hex"!==e&&"hex6"!==e&&"hex3"!==e&&"hex4"!==e&&"hex8"!==e&&"name"!==e?("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),"hex"!==e&&"hex6"!==e||(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString()):"name"===e&&0===this._a?this.toName():this.toRgbString()},clone:function(){return r(this.toString())},_applyModification:function(e,t){var n=e.apply(null,[this].concat([].slice.call(t)));return this._r=n._r,this._g=n._g,this._b=n._b,this.setAlpha(n._a),this},lighten:function(){return this._applyModification(d,arguments)},brighten:function(){return this._applyModification(p,arguments)},darken:function(){return this._applyModification(f,arguments)},desaturate:function(){return this._applyModification(s,arguments)},saturate:function(){return this._applyModification(c,arguments)},greyscale:function(){return this._applyModification(u,arguments)},spin:function(){return this._applyModification(h,arguments)},_applyCombination:function(e,t){return e.apply(null,[this].concat([].slice.call(t)))},analogous:function(){return this._applyCombination(v,arguments)},complement:function(){return this._applyCombination(b,arguments)},monochromatic:function(){return this._applyCombination(x,arguments)},splitcomplement:function(){return this._applyCombination(m,arguments)},triad:function(){return this._applyCombination(g,[3])},tetrad:function(){return this._applyCombination(g,[4])}},r.fromRatio=function(t,n){if("object"==e(t)){var o={};for(var a in t)t.hasOwnProperty(a)&&(o[a]="a"===a?t[a]:P(t[a]));t=o}return r(t,n)},r.equals=function(e,t){return!(!e||!t)&&r(e).toRgbString()==r(t).toRgbString()},r.random=function(){return r.fromRatio({r:Math.random(),g:Math.random(),b:Math.random()})},r.mix=function(e,t,n){n=0===n?0:n||50;var o=r(e).toRgb(),a=r(t).toRgb(),i=n/100;return r({r:(a.r-o.r)*i+o.r,g:(a.g-o.g)*i+o.g,b:(a.b-o.b)*i+o.b,a:(a.a-o.a)*i+o.a})},r.readability=function(e,t){var n=r(e),o=r(t);return(Math.max(n.getLuminance(),o.getLuminance())+.05)/(Math.min(n.getLuminance(),o.getLuminance())+.05)},r.isReadable=function(e,t,n){var o,a,i,l,s,c=r.readability(e,t);switch(a=!1,(i=n,"AA"!==(l=((i=i||{level:"AA",size:"small"}).level||"AA").toUpperCase())&&"AAA"!==l&&(l="AA"),"small"!==(s=(i.size||"small").toLowerCase())&&"large"!==s&&(s="small"),o={level:l,size:s}).level+o.size){case"AAsmall":case"AAAlarge":a=c>=4.5;break;case"AAlarge":a=c>=3;break;case"AAAsmall":a=c>=7}return a},r.mostReadable=function(e,t,n){var o,a,i,l,s=null,c=0;a=(n=n||{}).includeFallbackColors,i=n.level,l=n.size;for(var u=0;u<t.length;u++)(o=r.readability(e,t[u]))>c&&(c=o,s=r(t[u]));return r.isReadable(e,s,{level:i,size:l})||!a?s:(n.includeFallbackColors=!1,r.mostReadable(e,["#fff","#000"],n))};var y=r.names={aliceblue:"f0f8ff",antiquewhite:"faebd7",aqua:"0ff",aquamarine:"7fffd4",azure:"f0ffff",beige:"f5f5dc",bisque:"ffe4c4",black:"000",blanchedalmond:"ffebcd",blue:"00f",blueviolet:"8a2be2",brown:"a52a2a",burlywood:"deb887",burntsienna:"ea7e5d",cadetblue:"5f9ea0",chartreuse:"7fff00",chocolate:"d2691e",coral:"ff7f50",cornflowerblue:"6495ed",cornsilk:"fff8dc",crimson:"dc143c",cyan:"0ff",darkblue:"00008b",darkcyan:"008b8b",darkgoldenrod:"b8860b",darkgray:"a9a9a9",darkgreen:"006400",darkgrey:"a9a9a9",darkkhaki:"bdb76b",darkmagenta:"8b008b",darkolivegreen:"556b2f",darkorange:"ff8c00",darkorchid:"9932cc",darkred:"8b0000",darksalmon:"e9967a",darkseagreen:"8fbc8f",darkslateblue:"483d8b",darkslategray:"2f4f4f",darkslategrey:"2f4f4f",darkturquoise:"00ced1",darkviolet:"9400d3",deeppink:"ff1493",deepskyblue:"00bfff",dimgray:"696969",dimgrey:"696969",dodgerblue:"1e90ff",firebrick:"b22222",floralwhite:"fffaf0",forestgreen:"228b22",fuchsia:"f0f",gainsboro:"dcdcdc",ghostwhite:"f8f8ff",gold:"ffd700",goldenrod:"daa520",gray:"808080",green:"008000",greenyellow:"adff2f",grey:"808080",honeydew:"f0fff0",hotpink:"ff69b4",indianred:"cd5c5c",indigo:"4b0082",ivory:"fffff0",khaki:"f0e68c",lavender:"e6e6fa",lavenderblush:"fff0f5",lawngreen:"7cfc00",lemonchiffon:"fffacd",lightblue:"add8e6",lightcoral:"f08080",lightcyan:"e0ffff",lightgoldenrodyellow:"fafad2",lightgray:"d3d3d3",lightgreen:"90ee90",lightgrey:"d3d3d3",lightpink:"ffb6c1",lightsalmon:"ffa07a",lightseagreen:"20b2aa",lightskyblue:"87cefa",lightslategray:"789",lightslategrey:"789",lightsteelblue:"b0c4de",lightyellow:"ffffe0",lime:"0f0",limegreen:"32cd32",linen:"faf0e6",magenta:"f0f",maroon:"800000",mediumaquamarine:"66cdaa",mediumblue:"0000cd",mediumorchid:"ba55d3",mediumpurple:"9370db",mediumseagreen:"3cb371",mediumslateblue:"7b68ee",mediumspringgreen:"00fa9a",mediumturquoise:"48d1cc",mediumvioletred:"c71585",midnightblue:"191970",mintcream:"f5fffa",mistyrose:"ffe4e1",moccasin:"ffe4b5",navajowhite:"ffdead",navy:"000080",oldlace:"fdf5e6",olive:"808000",olivedrab:"6b8e23",orange:"ffa500",orangered:"ff4500",orchid:"da70d6",palegoldenrod:"eee8aa",palegreen:"98fb98",paleturquoise:"afeeee",palevioletred:"db7093",papayawhip:"ffefd5",peachpuff:"ffdab9",peru:"cd853f",pink:"ffc0cb",plum:"dda0dd",powderblue:"b0e0e6",purple:"800080",rebeccapurple:"663399",red:"f00",rosybrown:"bc8f8f",royalblue:"4169e1",saddlebrown:"8b4513",salmon:"fa8072",sandybrown:"f4a460",seagreen:"2e8b57",seashell:"fff5ee",sienna:"a0522d",silver:"c0c0c0",skyblue:"87ceeb",slateblue:"6a5acd",slategray:"708090",slategrey:"708090",snow:"fffafa",springgreen:"00ff7f",steelblue:"4682b4",tan:"d2b48c",teal:"008080",thistle:"d8bfd8",tomato:"ff6347",turquoise:"40e0d0",violet:"ee82ee",wheat:"f5deb3",white:"fff",whitesmoke:"f5f5f5",yellow:"ff0",yellowgreen:"9acd32"},C=r.hexNames=function(e){var t={};for(var n in e)e.hasOwnProperty(n)&&(t[e[n]]=n);return t}(y);function _(e){return e=parseFloat(e),(isNaN(e)||e<0||e>1)&&(e=1),e}function O(e,t){(function(e){return"string"==typeof e&&-1!=e.indexOf(".")&&1===parseFloat(e)})(e)&&(e="100%");var n=function(e){return"string"==typeof e&&-1!=e.indexOf("%")}(e);return e=Math.min(t,Math.max(0,parseFloat(e))),n&&(e=parseInt(e*t,10)/100),Math.abs(e-t)<1e-6?1:e%t/parseFloat(t)}function w(e){return Math.min(1,Math.max(0,e))}function j(e){return parseInt(e,16)}function k(e){return 1==e.length?"0"+e:""+e}function P(e){return e<=1&&(e=100*e+"%"),e}function S(e){return Math.round(255*parseFloat(e)).toString(16)}function M(e){return j(e)/255}var $,I,D,B=(I="[\\s|\\(]+("+($="(?:[-\\+]?\\d*\\.\\d+%?)|(?:[-\\+]?\\d+%?)")+")[,|\\s]+("+$+")[,|\\s]+("+$+")\\s*\\)?",D="[\\s|\\(]+("+$+")[,|\\s]+("+$+")[,|\\s]+("+$+")[,|\\s]+("+$+")\\s*\\)?",{CSS_UNIT:new RegExp($),rgb:new RegExp("rgb"+I),rgba:new RegExp("rgba"+D),hsl:new RegExp("hsl"+I),hsla:new RegExp("hsla"+D),hsv:new RegExp("hsv"+I),hsva:new RegExp("hsva"+D),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function E(e){return!!B.CSS_UNIT.exec(e)}return r}()}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={id:r,exports:{}};return e[r].call(a.exports,a,a.exports,n),a.exports}n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r=n(2869),o=exports;for(var a in r)o[a]=r[a];r.__esModule&&Object.defineProperty(o,"__esModule",{value:!0});
|