@banyan_cloud/roots 1.0.16 → 1.0.18
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/cjs/index.js +298 -227
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +297 -228
- package/dist/esm/index.js.map +1 -1
- package/dist/index.js +297 -228
- package/package.json +1 -1
- package/styles/_colors.exports.scss +94 -0
- package/styles/_colors.scss +0 -95
- package/styles/index.js +9 -0
package/dist/cjs/index.js
CHANGED
|
@@ -1574,6 +1574,9 @@ var getDatesInAMonth = function getDatesInAMonth(_ref) {
|
|
|
1574
1574
|
days: days
|
|
1575
1575
|
};
|
|
1576
1576
|
};
|
|
1577
|
+
var getCSSVariableValue = function getCSSVariableValue(variable) {
|
|
1578
|
+
return getComputedStyle(document.documentElement).getPropertyValue(variable);
|
|
1579
|
+
};
|
|
1577
1580
|
|
|
1578
1581
|
function styleInject(css, ref) {
|
|
1579
1582
|
if ( ref === void 0 ) ref = {};
|
|
@@ -1602,9 +1605,9 @@ function styleInject(css, ref) {
|
|
|
1602
1605
|
}
|
|
1603
1606
|
}
|
|
1604
1607
|
|
|
1605
|
-
var css_248z$
|
|
1606
|
-
var styles$
|
|
1607
|
-
styleInject(css_248z$
|
|
1608
|
+
var css_248z$L = ".BaseCell-module_root__i6f-E {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem;\n gap: 0.5rem;\n flex: none;\n height: 3rem;\n background: var(--white);\n max-width: 100%;\n max-height: 100%;\n}\n.BaseCell-module_root__i6f-E > [data-elem*=component] {\n display: inline-block;\n max-height: 100%;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_sm__6lhv5 {\n width: 9.063rem;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_md__d7xeQ {\n width: 15.625rem;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_lg__z1sA6 {\n width: 21.875rem;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_auto__55g3t {\n width: auto;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_border-radius-default__3o5Qv {\n border-radius: 0.25rem;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_border-radius-round__pE3-j {\n border-radius: 50%;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_border-radius-ellipse__IhKeq {\n border-radius: 1.563rem;\n}\n.BaseCell-module_root__i6f-E.BaseCell-module_flexible__JRAXk {\n flex-grow: 1;\n flex-shrink: 1;\n min-width: 3rem;\n}";
|
|
1609
|
+
var styles$K = {"root":"BaseCell-module_root__i6f-E","sm":"BaseCell-module_sm__6lhv5","md":"BaseCell-module_md__d7xeQ","lg":"BaseCell-module_lg__z1sA6","auto":"BaseCell-module_auto__55g3t","border-radius-default":"BaseCell-module_border-radius-default__3o5Qv","border-radius-round":"BaseCell-module_border-radius-round__pE3-j","border-radius-ellipse":"BaseCell-module_border-radius-ellipse__IhKeq","flexible":"BaseCell-module_flexible__JRAXk"};
|
|
1610
|
+
styleInject(css_248z$L);
|
|
1608
1611
|
|
|
1609
1612
|
var BaseCell = /*#__PURE__*/React.forwardRef(function BaseCell(props, ref) {
|
|
1610
1613
|
var className = props.className,
|
|
@@ -1620,7 +1623,7 @@ var BaseCell = /*#__PURE__*/React.forwardRef(function BaseCell(props, ref) {
|
|
|
1620
1623
|
var Component = /*#__PURE__*/React.createElement(RootDOM, _objectSpread2({
|
|
1621
1624
|
'data-elem': 'base-cell',
|
|
1622
1625
|
ref: ref,
|
|
1623
|
-
className: classes(className, styles$
|
|
1626
|
+
className: classes(className, styles$K.root, styles$K[size], styles$K["border-radius-".concat(radius)], flexible ? styles$K.flexible : '', rounded ? styles$K.rounded : '')
|
|
1624
1627
|
}, attrs), /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
1625
1628
|
children: [component1 && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
1626
1629
|
"data-elem": "component1",
|
|
@@ -2010,15 +2013,15 @@ Server.defaultProps = {
|
|
|
2010
2013
|
className: ''
|
|
2011
2014
|
};
|
|
2012
2015
|
|
|
2013
|
-
var css_248z$
|
|
2014
|
-
var styles$
|
|
2015
|
-
styleInject(css_248z$
|
|
2016
|
+
var css_248z$K = ".Arrow-module_right__OPm55 {\n transform: rotate(0deg);\n}\n\n.Arrow-module_left__mbW5H {\n transform: rotate(180deg);\n}\n\n.Arrow-module_bottom__TNVV9 {\n transform: rotate(90deg);\n}\n\n.Arrow-module_top__1YFaI {\n transform: rotate(270deg);\n}";
|
|
2017
|
+
var styles$J = {"right":"Arrow-module_right__OPm55","left":"Arrow-module_left__mbW5H","bottom":"Arrow-module_bottom__TNVV9","top":"Arrow-module_top__1YFaI"};
|
|
2018
|
+
styleInject(css_248z$K);
|
|
2016
2019
|
|
|
2017
2020
|
var Arrow$1 = function Arrow(props) {
|
|
2018
2021
|
var className = props.className,
|
|
2019
2022
|
position = props.position;
|
|
2020
2023
|
return /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2021
|
-
className: classes(className, styles$
|
|
2024
|
+
className: classes(className, styles$J[position]),
|
|
2022
2025
|
viewBox: "0 0 25 24",
|
|
2023
2026
|
fill: "#333333",
|
|
2024
2027
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2032,15 +2035,15 @@ Arrow$1.defaultProps = {
|
|
|
2032
2035
|
position: 'right'
|
|
2033
2036
|
};
|
|
2034
2037
|
|
|
2035
|
-
var css_248z$
|
|
2036
|
-
var styles$
|
|
2037
|
-
styleInject(css_248z$
|
|
2038
|
+
var css_248z$J = ".Chevron-module_left__qo9Uh {\n transform: rotate(0deg);\n}\n\n.Chevron-module_bottom__xHi8D {\n transform: rotate(90deg);\n}\n\n.Chevron-module_right__nQXUr {\n transform: rotate(180deg);\n}\n\n.Chevron-module_top__gWkFh {\n transform: rotate(270deg);\n}";
|
|
2039
|
+
var styles$I = {"left":"Chevron-module_left__qo9Uh","bottom":"Chevron-module_bottom__xHi8D","right":"Chevron-module_right__nQXUr","top":"Chevron-module_top__gWkFh"};
|
|
2040
|
+
styleInject(css_248z$J);
|
|
2038
2041
|
|
|
2039
2042
|
var Chevron = function Chevron(props) {
|
|
2040
2043
|
var className = props.className,
|
|
2041
2044
|
position = props.position;
|
|
2042
2045
|
return /*#__PURE__*/jsxRuntime.jsx("svg", {
|
|
2043
|
-
className: classes(className, styles$
|
|
2046
|
+
className: classes(className, styles$I[position]),
|
|
2044
2047
|
viewBox: "0 0 22 22",
|
|
2045
2048
|
fill: "none",
|
|
2046
2049
|
stroke: "white",
|
|
@@ -2329,9 +2332,9 @@ Reset.defaultProps = {
|
|
|
2329
2332
|
className: ''
|
|
2330
2333
|
};
|
|
2331
2334
|
|
|
2332
|
-
var css_248z$
|
|
2333
|
-
var styles$
|
|
2334
|
-
styleInject(css_248z$
|
|
2335
|
+
var css_248z$I = ".Accordion-module_root__gEN-u {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n width: 100%;\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.5rem;\n padding: 0.5rem 1rem;\n cursor: pointer;\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell] > [data-elem=component1] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell] > [data-elem=component1] .Accordion-module_icon__xGKgk {\n transform: rotate(-90deg);\n width: 1rem;\n height: 1rem;\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell] .Accordion-module_title__NI140 {\n flex: 1 1 auto;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell]:hover {\n background: var(--background);\n}\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell]:hover .Accordion-module_icon__xGKgk,\n.Accordion-module_root__gEN-u > .Accordion-module_header__FRvo4[data-elem=base-cell]:hover .Accordion-module_title__NI140 {\n color: var(--highlight);\n fill: var(--highlight);\n}\n.Accordion-module_root__gEN-u > .Accordion-module_body__JwYl2 {\n display: none;\n padding: 0.5rem 2.5rem;\n}\n.Accordion-module_root__gEN-u.Accordion-module_open__uvqfT > .Accordion-module_header__FRvo4[data-elem=base-cell] [data-elem=component1] .Accordion-module_icon__xGKgk {\n transform: none;\n}\n.Accordion-module_root__gEN-u.Accordion-module_open__uvqfT > .Accordion-module_body__JwYl2 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}";
|
|
2336
|
+
var styles$H = {"root":"Accordion-module_root__gEN-u","header":"Accordion-module_header__FRvo4","icon":"Accordion-module_icon__xGKgk","title":"Accordion-module_title__NI140","body":"Accordion-module_body__JwYl2","open":"Accordion-module_open__uvqfT"};
|
|
2337
|
+
styleInject(css_248z$I);
|
|
2335
2338
|
|
|
2336
2339
|
var Accordion = function Accordion(props) {
|
|
2337
2340
|
var defaultOpen = props.defaultOpen,
|
|
@@ -2346,13 +2349,13 @@ var Accordion = function Accordion(props) {
|
|
|
2346
2349
|
open = _useState2[0],
|
|
2347
2350
|
setOpen = _useState2[1];
|
|
2348
2351
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
2349
|
-
className: classes(className, styles$
|
|
2352
|
+
className: classes(className, styles$H.root, open ? styles$H.open : ''),
|
|
2350
2353
|
"data-state-open": open,
|
|
2351
2354
|
children: [/*#__PURE__*/jsxRuntime.jsx(BaseCell, {
|
|
2352
2355
|
flexible: true,
|
|
2353
2356
|
size: "auto",
|
|
2354
2357
|
rootDOM: "button",
|
|
2355
|
-
className: styles$
|
|
2358
|
+
className: styles$H.header,
|
|
2356
2359
|
attrs: {
|
|
2357
2360
|
onClick: function onClick() {
|
|
2358
2361
|
setOpen(function (prevState) {
|
|
@@ -2363,18 +2366,18 @@ var Accordion = function Accordion(props) {
|
|
|
2363
2366
|
}
|
|
2364
2367
|
},
|
|
2365
2368
|
component1: iconPlacement === 'left' && /*#__PURE__*/jsxRuntime.jsx(Caret, {
|
|
2366
|
-
className: styles$
|
|
2369
|
+
className: styles$H.icon
|
|
2367
2370
|
}),
|
|
2368
2371
|
component2: /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
2369
|
-
className: styles$
|
|
2372
|
+
className: styles$H.title,
|
|
2370
2373
|
children: title
|
|
2371
2374
|
}),
|
|
2372
2375
|
component3: iconPlacement === 'right' && /*#__PURE__*/jsxRuntime.jsx(Caret, {
|
|
2373
|
-
className: styles$
|
|
2376
|
+
className: styles$H.icon
|
|
2374
2377
|
})
|
|
2375
2378
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
2376
2379
|
"data-elem": "body",
|
|
2377
|
-
className: styles$
|
|
2380
|
+
className: styles$H.body,
|
|
2378
2381
|
children: [description && /*#__PURE__*/jsxRuntime.jsx("p", {
|
|
2379
2382
|
children: description
|
|
2380
2383
|
}), children]
|
|
@@ -2398,13 +2401,13 @@ Accordion.defaultProps = {
|
|
|
2398
2401
|
className: ''
|
|
2399
2402
|
};
|
|
2400
2403
|
|
|
2401
|
-
var css_248z$
|
|
2402
|
-
var styles$
|
|
2403
|
-
styleInject(css_248z$
|
|
2404
|
+
var css_248z$H = ".Alert-module_root__l1ZpK {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n position: fixed;\n padding: 0.938rem;\n width: 500px;\n}\n.Alert-module_root__l1ZpK.Alert-module_position-bottom-center__ArOSw {\n left: 50%;\n bottom: 1rem;\n transform: translate(-50%, 0);\n}\n.Alert-module_root__l1ZpK.Alert-module_position-top-right__INiLO {\n right: 1rem;\n top: 1rem;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ .Alert-module_icons__SBpod {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding: 0.313rem 0.938rem 0rem 0rem;\n height: auto;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ .Alert-module_icons__SBpod .Alert-module_icon__iuX5T {\n width: 1.25rem;\n height: 1.25rem;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ .Alert-module_content__uYcO4 {\n padding: 0.188rem 0.938rem 0rem 0rem;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ .Alert-module_content__uYcO4 .Alert-module_title__GSeDp {\n font-size: 0.875rem;\n font-weight: 600;\n padding-right: 2px;\n}\n.Alert-module_root__l1ZpK .Alert-module_left__5k1AJ .Alert-module_content__uYcO4 .Alert-module_description__aMvRm {\n word-wrap: break-word;\n height: auto;\n font-size: 0.875rem;\n font-weight: 400;\n margin-bottom: 0.5rem;\n}\n.Alert-module_root__l1ZpK .Alert-module_actions__JDG2T {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n gap: 5px;\n}\n.Alert-module_root__l1ZpK .Alert-module_actions__JDG2T .Alert-module_button__lFoVg {\n padding: 0.313rem 1rem;\n font-weight: 400;\n}\n.Alert-module_root__l1ZpK .Alert-module_actions__JDG2T .Alert-module_close__LyN5i {\n padding-top: 0.313rem;\n}\n.Alert-module_root__l1ZpK .Alert-module_actions__JDG2T .Alert-module_close__LyN5i .Alert-module_icon__iuX5T {\n width: 1.25rem;\n height: 1.25rem;\n fill: var(--black);\n}\n.Alert-module_root__l1ZpK.Alert-module_border-default__a-ED7 {\n border-width: 0.063rem;\n}\n.Alert-module_root__l1ZpK.Alert-module_border-thick-left__5PyWS {\n border-width: 0.063rem 0.063rem 0.063rem 0.25rem;\n}\n.Alert-module_root__l1ZpK.Alert-module_border-none__-okAl {\n border-width: 0rem 0rem 0rem 0.25rem;\n}\n.Alert-module_root__l1ZpK.Alert-module_info__dW63t {\n border-style: solid;\n border-color: var(--info);\n background-color: #edf5ff;\n}\n.Alert-module_root__l1ZpK.Alert-module_info__dW63t .Alert-module_icon__iuX5T {\n fill: var(--info);\n}\n.Alert-module_root__l1ZpK.Alert-module_success__RlEA0 {\n border-style: solid;\n border-color: var(--success);\n background-color: var(--success-bg);\n}\n.Alert-module_root__l1ZpK.Alert-module_success__RlEA0 .Alert-module_icon__iuX5T {\n fill: var(--success);\n}\n.Alert-module_root__l1ZpK.Alert-module_danger__c21By {\n border-style: solid;\n border-color: var(--error);\n background-color: var(--error-bg);\n}\n.Alert-module_root__l1ZpK.Alert-module_danger__c21By .Alert-module_icon__iuX5T {\n fill: var(--error);\n}\n.Alert-module_root__l1ZpK.Alert-module_warning__aETXV {\n border-style: solid;\n border-color: var(--warning);\n background-color: var(--warning-bg);\n}\n.Alert-module_root__l1ZpK.Alert-module_warning__aETXV .Alert-module_icon__iuX5T {\n fill: var(--warning);\n}\n.Alert-module_root__l1ZpK.Alert-module_shadow__hHoKN {\n box-shadow: 0.125rem 0.5rem 1rem rgba(60, 60, 60, 0.12);\n}";
|
|
2405
|
+
var styles$G = {"root":"Alert-module_root__l1ZpK","position-bottom-center":"Alert-module_position-bottom-center__ArOSw","position-top-right":"Alert-module_position-top-right__INiLO","left":"Alert-module_left__5k1AJ","icons":"Alert-module_icons__SBpod","icon":"Alert-module_icon__iuX5T","content":"Alert-module_content__uYcO4","title":"Alert-module_title__GSeDp","description":"Alert-module_description__aMvRm","actions":"Alert-module_actions__JDG2T","button":"Alert-module_button__lFoVg","close":"Alert-module_close__LyN5i","border-default":"Alert-module_border-default__a-ED7","border-thick-left":"Alert-module_border-thick-left__5PyWS","border-none":"Alert-module_border-none__-okAl","info":"Alert-module_info__dW63t","success":"Alert-module_success__RlEA0","danger":"Alert-module_danger__c21By","warning":"Alert-module_warning__aETXV","shadow":"Alert-module_shadow__hHoKN"};
|
|
2406
|
+
styleInject(css_248z$H);
|
|
2404
2407
|
|
|
2405
|
-
var css_248z$
|
|
2406
|
-
var styles$
|
|
2407
|
-
styleInject(css_248z$
|
|
2408
|
+
var css_248z$G = ":root {\n --white: #ffffff;\n --black: #000000;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #da1e28;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n display: inline-flex;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n outline: none;\n border: none;\n background: none;\n padding: 0.5rem 0.75rem;\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell]:disabled {\n cursor: not-allowed;\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell].BaseButton-module_contained__WAsSX {\n background: var(--black);\n color: var(--white);\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell].BaseButton-module_outlined__pPg3V {\n color: var(--black);\n border: 1px solid var(--black);\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell].BaseButton-module_text__IWP1r {\n color: var(--black);\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell] [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell] [data-elem=component2] {\n min-width: 0;\n}\nbutton.BaseButton-module_root__mVugc[data-elem=base-cell] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}";
|
|
2409
|
+
var styles$F = {"white":"var(--white)","black":"var(--black)","dark-grey":"var(--dark-grey)","dark-grey-o-85":"var(--dark-grey-o-85)","grey":"var(--grey)","grey1":"var(--grey1)","grey2":"var(--grey2)","grey3":"var(--grey3)","grey4":"var(--grey4)","grey5":"var(--grey5)","grey6":"var(--grey6)","grey7":"var(--grey7)","grey8":"var(--grey8)","grey9":"var(--grey9)","grey10":"var(--grey10)","highlight":"var(--highlight)","dark-blue":"var(--dark-blue)","background":"var(--background)","banyan-blue":"var(--banyan-blue)","banyan-orange":"var(--banyan-orange)","banyan-pink":"var(--banyan-pink)","banyan-gradient":"var(--banyan-gradient)","error":"var(--error)","error-bg":"var(--error-bg)","error-outline":"var(--error-outline)","success":"var(--success)","success-bg":"var(--success-bg)","success-outline":"var(--success-outline)","warning":"var(--warning)","warning-bg":"var(--warning-bg)","warning-outline":"var(--warning-outline)","info":"var(--info)","info-bg":"var(--info-bg)","info-outline":"var(--info-outline)","root":"BaseButton-module_root__mVugc","contained":"BaseButton-module_contained__WAsSX","outlined":"BaseButton-module_outlined__pPg3V","text":"BaseButton-module_text__IWP1r"};
|
|
2410
|
+
styleInject(css_248z$G);
|
|
2408
2411
|
|
|
2409
2412
|
var BaseButton = /*#__PURE__*/React.forwardRef(function BaseButton(props, ref) {
|
|
2410
2413
|
var className = props.className,
|
|
@@ -2423,7 +2426,7 @@ var BaseButton = /*#__PURE__*/React.forwardRef(function BaseButton(props, ref) {
|
|
|
2423
2426
|
children: title
|
|
2424
2427
|
});
|
|
2425
2428
|
return /*#__PURE__*/jsxRuntime.jsx(BaseCell, {
|
|
2426
|
-
className: classes(className, styles$
|
|
2429
|
+
className: classes(className, styles$F.root, styles$F[variant]),
|
|
2427
2430
|
ref: ref,
|
|
2428
2431
|
component1: component1,
|
|
2429
2432
|
component2: Title,
|
|
@@ -2454,9 +2457,9 @@ BaseButton.defaultProps = _objectSpread2(_objectSpread2({}, BaseCell.defaultProp
|
|
|
2454
2457
|
variant: 'contained'
|
|
2455
2458
|
});
|
|
2456
2459
|
|
|
2457
|
-
var css_248z$
|
|
2458
|
-
var styles$
|
|
2459
|
-
styleInject(css_248z$
|
|
2460
|
+
var css_248z$F = ".Button-module_root__1MwuE[data-elem=base-cell] {\n cursor: pointer;\n}\n.Button-module_root__1MwuE[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_primary__QahMI.Button-module_contained__Xk4Uo {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_primary__QahMI.Button-module_outlined__2dqXl {\n background-color: transparent;\n border-color: var(--highlight);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_primary__QahMI.Button-module_outlined__2dqXl, .Button-module_root__1MwuE[data-elem=base-cell].Button-module_primary__QahMI.Button-module_text__xJTsb {\n color: var(--highlight);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_success__Gu-1v.Button-module_contained__Xk4Uo {\n background-color: var(--success);\n color: var(--white);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_success__Gu-1v.Button-module_outlined__2dqXl {\n background-color: transparent;\n border-color: var(--success);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_success__Gu-1v.Button-module_outlined__2dqXl, .Button-module_root__1MwuE[data-elem=base-cell].Button-module_success__Gu-1v.Button-module_text__xJTsb {\n color: var(--success);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_danger__CV3m8.Button-module_contained__Xk4Uo {\n background-color: var(--error);\n color: var(--white);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_danger__CV3m8.Button-module_outlined__2dqXl {\n background-color: transparent;\n border-color: var(--error);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_danger__CV3m8.Button-module_outlined__2dqXl, .Button-module_root__1MwuE[data-elem=base-cell].Button-module_danger__CV3m8.Button-module_text__xJTsb {\n color: var(--error);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_warning__IZasP.Button-module_contained__Xk4Uo {\n background-color: var(--warning);\n color: var(--white);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_warning__IZasP.Button-module_outlined__2dqXl {\n background-color: transparent;\n border-color: var(--warning);\n}\n.Button-module_root__1MwuE[data-elem=base-cell].Button-module_warning__IZasP.Button-module_outlined__2dqXl, .Button-module_root__1MwuE[data-elem=base-cell].Button-module_warning__IZasP.Button-module_text__xJTsb {\n color: var(--warning);\n}\n.Button-module_root__1MwuE[data-elem=base-cell]:disabled.Button-module_contained__Xk4Uo {\n background-color: var(--grey4);\n color: var(--grey);\n}\n.Button-module_root__1MwuE[data-elem=base-cell]:disabled.Button-module_outlined__2dqXl {\n background-color: transparent;\n border-color: var(--grey);\n}\n.Button-module_root__1MwuE[data-elem=base-cell]:disabled.Button-module_outlined__2dqXl, .Button-module_root__1MwuE[data-elem=base-cell]:disabled.Button-module_text__xJTsb {\n color: var(--grey);\n}";
|
|
2461
|
+
var styles$E = {"root":"Button-module_root__1MwuE","primary":"Button-module_primary__QahMI","contained":"Button-module_contained__Xk4Uo","outlined":"Button-module_outlined__2dqXl","text":"Button-module_text__xJTsb","success":"Button-module_success__Gu-1v","danger":"Button-module_danger__CV3m8","warning":"Button-module_warning__IZasP"};
|
|
2462
|
+
styleInject(css_248z$F);
|
|
2460
2463
|
|
|
2461
2464
|
var Button = /*#__PURE__*/React.forwardRef(function Button(props, ref) {
|
|
2462
2465
|
var className = props.className,
|
|
@@ -2483,7 +2486,7 @@ var Button = /*#__PURE__*/React.forwardRef(function Button(props, ref) {
|
|
|
2483
2486
|
disabled: disabled,
|
|
2484
2487
|
onClick: onClick,
|
|
2485
2488
|
variant: variant,
|
|
2486
|
-
className: classes(styles$
|
|
2489
|
+
className: classes(styles$E.root, styles$E["radius-".concat(radius)], styles$E[variant], styles$E[color], className)
|
|
2487
2490
|
});
|
|
2488
2491
|
});
|
|
2489
2492
|
Button.propTypes = _objectSpread2(_objectSpread2({}, BaseButton.propTypes), {}, {
|
|
@@ -2498,9 +2501,9 @@ Button.defaultProps = _objectSpread2(_objectSpread2({}, BaseButton.defaultProps)
|
|
|
2498
2501
|
radius: 'default'
|
|
2499
2502
|
});
|
|
2500
2503
|
|
|
2501
|
-
var css_248z$
|
|
2502
|
-
var styles$
|
|
2503
|
-
styleInject(css_248z$
|
|
2504
|
+
var css_248z$E = ".Chip-module_root__EDxQB[data-elem=base-cell] {\n position: relative;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell] [data-elem=component2] [data-elem=title] {\n font-weight: 500;\n font-size: 0.875rem;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_sm__jWsDU {\n height: 2rem;\n padding: 0.188rem 0.5rem;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_md__D7nex {\n height: 2.25rem;\n padding: 0.563rem 1rem;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0.Chip-module_success__gKoSz {\n background-color: var(--success-bg);\n color: var(--success);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0.Chip-module_info__oGvTs {\n background-color: var(--info-bg);\n color: var(--info);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0.Chip-module_danger__r7AL- {\n background-color: var(--error-bg);\n color: var(--error);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0.Chip-module_warning__k-uii {\n background-color: var(--warning-bg);\n color: var(--warning);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0.Chip-module_default__lJKsA {\n background-color: var(--grey5);\n color: var(--grey);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_status__HPwn0:hover {\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n {\n border-width: 1px;\n border-style: solid;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_success__gKoSz {\n background-color: var(--success-bg);\n color: var(--success);\n border-color: var(--success-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_success__gKoSz:hover {\n background-color: var(--success-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_info__oGvTs {\n background-color: var(--info-bg);\n color: var(--info);\n border-color: var(--info-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_info__oGvTs:hover {\n background-color: var(--info-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_danger__r7AL- {\n background-color: var(--error-bg);\n color: var(--error);\n border-color: var(--error-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_danger__r7AL-:hover {\n background-color: var(--error-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_warning__k-uii {\n background-color: var(--warning-bg);\n color: var(--warning);\n border-color: var(--warning-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_warning__k-uii:hover {\n background-color: var(--warning-outline);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_default__lJKsA {\n background-color: var(--grey8);\n color: var(--grey);\n border-color: var(--grey6);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell].Chip-module_input__gUY7n.Chip-module_default__lJKsA:hover {\n background-color: var(--grey6);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_status__HPwn0, .Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_input__gUY7n {\n filter: grayscale(1);\n border-color: var(--grey4);\n background-color: var(--grey5);\n color: var(--grey2);\n}\n.Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_status__HPwn0 [data-elem=component1],\n.Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_status__HPwn0 [data-elem=component3], .Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_input__gUY7n [data-elem=component1],\n.Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_input__gUY7n [data-elem=component3] {\n opacity: 0.5;\n}\n.Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_status__HPwn0:hover, .Chip-module_root__EDxQB[data-elem=base-cell]:disabled.Chip-module_input__gUY7n:hover {\n box-shadow: none;\n background-color: var(--grey5);\n}";
|
|
2505
|
+
var styles$D = {"root":"Chip-module_root__EDxQB","sm":"Chip-module_sm__jWsDU","md":"Chip-module_md__D7nex","status":"Chip-module_status__HPwn0","success":"Chip-module_success__gKoSz","info":"Chip-module_info__oGvTs","danger":"Chip-module_danger__r7AL-","warning":"Chip-module_warning__k-uii","default":"Chip-module_default__lJKsA","input":"Chip-module_input__gUY7n"};
|
|
2506
|
+
styleInject(css_248z$E);
|
|
2504
2507
|
|
|
2505
2508
|
var Chip = function Chip(props) {
|
|
2506
2509
|
var className = props.className,
|
|
@@ -2526,7 +2529,7 @@ var Chip = function Chip(props) {
|
|
|
2526
2529
|
disabled: disabled,
|
|
2527
2530
|
onClick: onClick,
|
|
2528
2531
|
variant: 'contained',
|
|
2529
|
-
className: classes(styles$
|
|
2532
|
+
className: classes(styles$D.root, styles$D["radius-".concat(radius)], styles$D[variant], styles$D[color], styles$D[size], className)
|
|
2530
2533
|
});
|
|
2531
2534
|
};
|
|
2532
2535
|
Chip.propTypes = _objectSpread2(_objectSpread2({}, BaseButton.propTypes), {}, {
|
|
@@ -5959,9 +5962,9 @@ const useTypeahead = function (_ref, _temp) {
|
|
|
5959
5962
|
};
|
|
5960
5963
|
};
|
|
5961
5964
|
|
|
5962
|
-
var css_248z$
|
|
5963
|
-
var styles$
|
|
5964
|
-
styleInject(css_248z$
|
|
5965
|
+
var css_248z$D = ".Popper-module_backdrop__Gsq-k {\n position: fixed;\n z-index: 100;\n inset: 0;\n background: rgba(0, 0, 0, 0.4);\n}\n.Popper-module_backdrop__Gsq-k.Popper-module_transparent__VqWpq {\n background: none;\n}\n.Popper-module_backdrop__Gsq-k.Popper-module_hide-backdrop__Wkkl- {\n position: static;\n}";
|
|
5966
|
+
var styles$C = {"backdrop":"Popper-module_backdrop__Gsq-k","transparent":"Popper-module_transparent__VqWpq","hide-backdrop":"Popper-module_hide-backdrop__Wkkl-"};
|
|
5967
|
+
styleInject(css_248z$D);
|
|
5965
5968
|
|
|
5966
5969
|
var Popper = function Popper(props) {
|
|
5967
5970
|
var open = props.open,
|
|
@@ -5974,7 +5977,7 @@ var Popper = function Popper(props) {
|
|
|
5974
5977
|
id: wrapperId,
|
|
5975
5978
|
children: open && /*#__PURE__*/jsxRuntime.jsx(FloatingOverlay, {
|
|
5976
5979
|
lockScroll: true,
|
|
5977
|
-
className: classes(className, styles$
|
|
5980
|
+
className: classes(className, styles$C.backdrop, transparent ? styles$C.transparent : '', backdrop ? '' : styles$C['hide-backdrop']),
|
|
5978
5981
|
children: children
|
|
5979
5982
|
})
|
|
5980
5983
|
});
|
|
@@ -6105,28 +6108,28 @@ var Alert = function Alert(props) {
|
|
|
6105
6108
|
var Icon = null;
|
|
6106
6109
|
if (AlertTypeIcon != null) {
|
|
6107
6110
|
Icon = /*#__PURE__*/jsxRuntime.jsx(AlertTypeIcon, {
|
|
6108
|
-
className: styles$
|
|
6111
|
+
className: styles$G.icon
|
|
6109
6112
|
});
|
|
6110
6113
|
} else {
|
|
6111
6114
|
switch (color) {
|
|
6112
6115
|
case 'info':
|
|
6113
6116
|
Icon = /*#__PURE__*/jsxRuntime.jsx(AlertIcon.Info, {
|
|
6114
|
-
className: styles$
|
|
6117
|
+
className: styles$G.icon
|
|
6115
6118
|
});
|
|
6116
6119
|
break;
|
|
6117
6120
|
case 'warning':
|
|
6118
6121
|
Icon = /*#__PURE__*/jsxRuntime.jsx(AlertIcon.Warning, {
|
|
6119
|
-
className: styles$
|
|
6122
|
+
className: styles$G.icon
|
|
6120
6123
|
});
|
|
6121
6124
|
break;
|
|
6122
6125
|
case 'success':
|
|
6123
6126
|
Icon = /*#__PURE__*/jsxRuntime.jsx(AlertIcon.Success, {
|
|
6124
|
-
className: styles$
|
|
6127
|
+
className: styles$G.icon
|
|
6125
6128
|
});
|
|
6126
6129
|
break;
|
|
6127
6130
|
case 'danger':
|
|
6128
6131
|
Icon = /*#__PURE__*/jsxRuntime.jsx(AlertIcon.Danger, {
|
|
6129
|
-
className: styles$
|
|
6132
|
+
className: styles$G.icon
|
|
6130
6133
|
});
|
|
6131
6134
|
break;
|
|
6132
6135
|
default:
|
|
@@ -6140,40 +6143,40 @@ var Alert = function Alert(props) {
|
|
|
6140
6143
|
});
|
|
6141
6144
|
return /*#__PURE__*/jsxRuntime.jsx(Popper, {
|
|
6142
6145
|
open: open,
|
|
6143
|
-
className: styles$
|
|
6146
|
+
className: styles$G.popper,
|
|
6144
6147
|
id: "alert-popper",
|
|
6145
6148
|
transparent: false,
|
|
6146
6149
|
children: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
6147
6150
|
ref: ref,
|
|
6148
|
-
className: classes(styles$
|
|
6151
|
+
className: classes(styles$G.root, styles$G[color], styles$G["border-".concat(border)], shadow ? styles$G.shadow : '', styles$G["position-".concat(position)]),
|
|
6149
6152
|
children: [/*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
6150
|
-
className: styles$
|
|
6153
|
+
className: styles$G.left,
|
|
6151
6154
|
children: [/*#__PURE__*/jsxRuntime.jsx("div", {
|
|
6152
|
-
className: styles$
|
|
6155
|
+
className: styles$G.icons,
|
|
6153
6156
|
children: showIcon && Icon
|
|
6154
6157
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
6155
|
-
className: styles$
|
|
6158
|
+
className: styles$G.content,
|
|
6156
6159
|
children: [/*#__PURE__*/jsxRuntime.jsx("span", {
|
|
6157
|
-
className: styles$
|
|
6160
|
+
className: styles$G.title,
|
|
6158
6161
|
children: title
|
|
6159
6162
|
}), /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
6160
|
-
className: styles$
|
|
6163
|
+
className: styles$G.description,
|
|
6161
6164
|
children: description
|
|
6162
6165
|
})]
|
|
6163
6166
|
})]
|
|
6164
6167
|
}), (action || close) && /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
6165
|
-
className: styles$
|
|
6168
|
+
className: styles$G.actions,
|
|
6166
6169
|
children: [action && /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
6167
6170
|
title: action,
|
|
6168
6171
|
size: "small",
|
|
6169
6172
|
variant: "text",
|
|
6170
6173
|
color: "primary",
|
|
6171
|
-
className: styles$
|
|
6174
|
+
className: styles$G.button
|
|
6172
6175
|
}), close && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
6173
6176
|
onClick: toggle,
|
|
6174
|
-
className: styles$
|
|
6177
|
+
className: styles$G.close,
|
|
6175
6178
|
children: /*#__PURE__*/jsxRuntime.jsx(Cross$1, {
|
|
6176
|
-
className: styles$
|
|
6179
|
+
className: styles$G.icon
|
|
6177
6180
|
})
|
|
6178
6181
|
})]
|
|
6179
6182
|
})]
|
|
@@ -11813,9 +11816,9 @@ process.env.NODE_ENV !== "production" ? Link.propTypes
|
|
|
11813
11816
|
} : void 0;
|
|
11814
11817
|
var Link$1 = Link;
|
|
11815
11818
|
|
|
11816
|
-
var css_248z$
|
|
11817
|
-
var styles$
|
|
11818
|
-
styleInject(css_248z$
|
|
11819
|
+
var css_248z$C = ".Breadcrumbs-module_container__w5vWh {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n width: auto;\n}\n.Breadcrumbs-module_container__w5vWh .Breadcrumbs-module_seperator__sU40m {\n width: 1.5rem;\n height: 1.5rem;\n stroke: var(--grey2);\n}\n.Breadcrumbs-module_container__w5vWh .Breadcrumbs-module_breadcrumb-item__YCE98 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n font-weight: 600;\n font-size: 0.875rem;\n color: var(--grey2);\n}\n.Breadcrumbs-module_container__w5vWh .Breadcrumbs-module_breadcrumb-item__YCE98.Breadcrumbs-module_active__rs4zQ {\n color: var(--black);\n}";
|
|
11820
|
+
var styles$B = {"container":"Breadcrumbs-module_container__w5vWh","seperator":"Breadcrumbs-module_seperator__sU40m","breadcrumb-item":"Breadcrumbs-module_breadcrumb-item__YCE98","active":"Breadcrumbs-module_active__rs4zQ"};
|
|
11821
|
+
styleInject(css_248z$C);
|
|
11819
11822
|
|
|
11820
11823
|
var BreadCrumbs = function BreadCrumbs(props) {
|
|
11821
11824
|
var crumbs = props.crumbs,
|
|
@@ -11823,13 +11826,13 @@ var BreadCrumbs = function BreadCrumbs(props) {
|
|
|
11823
11826
|
itemsBeforeCollapse = props.itemsBeforeCollapse,
|
|
11824
11827
|
itemsAfterCollapse = props.itemsAfterCollapse;
|
|
11825
11828
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
11826
|
-
className: classes(styles$
|
|
11829
|
+
className: classes(styles$B.container),
|
|
11827
11830
|
children: /*#__PURE__*/jsxRuntime.jsx(Breadcrumbs$1, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
11828
11831
|
maxItems: maxItems,
|
|
11829
11832
|
itemsBeforeCollapse: itemsBeforeCollapse,
|
|
11830
11833
|
itemsAfterCollapse: itemsAfterCollapse,
|
|
11831
11834
|
separator: /*#__PURE__*/jsxRuntime.jsx(BreadcrumbSeperator, {
|
|
11832
|
-
className: styles$
|
|
11835
|
+
className: styles$B.seperator
|
|
11833
11836
|
}),
|
|
11834
11837
|
"aria-label": "breadcrumb",
|
|
11835
11838
|
children: crumbs.map(function (crumb, index) {
|
|
@@ -11839,7 +11842,7 @@ var BreadCrumbs = function BreadCrumbs(props) {
|
|
|
11839
11842
|
underline: "hover",
|
|
11840
11843
|
children: /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
11841
11844
|
"data-elem": "breadcrumb-item".concat(active ? '-active' : ''),
|
|
11842
|
-
className: classes(styles$
|
|
11845
|
+
className: classes(styles$B['breadcrumb-item'], active ? styles$B.active : ''),
|
|
11843
11846
|
children: getSpacedDisplayName(crumb).replace(/-/g, ' ')
|
|
11844
11847
|
})
|
|
11845
11848
|
}, crumb);
|
|
@@ -32638,9 +32641,9 @@ var dracula = {
|
|
|
32638
32641
|
numberColor: "#bd93f9"
|
|
32639
32642
|
};
|
|
32640
32643
|
|
|
32641
|
-
var css_248z$
|
|
32642
|
-
var styles$
|
|
32643
|
-
styleInject(css_248z$
|
|
32644
|
+
var css_248z$B = ".CodeSnippet-module_root__DwI00 {\n padding: 0.5rem, 1rem;\n position: relative;\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO {\n position: absolute;\n right: 1rem;\n top: 0.5rem;\n cursor: pointer;\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO .CodeSnippet-module_icon__D6dmB {\n width: 1.5rem;\n height: 1.5rem;\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO .CodeSnippet-module_icon__D6dmB.CodeSnippet-module_dark__uqayk {\n fill: var(--white);\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO .CodeSnippet-module_icon__D6dmB.CodeSnippet-module_light__ReXsJ {\n fill: var(--black);\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO .CodeSnippet-module_notCopied__J2bl4 {\n display: none;\n}\n.CodeSnippet-module_root__DwI00 .CodeSnippet-module_copy__evfwO .CodeSnippet-module_copied__8xo5B {\n position: absolute;\n right: 1.375rem;\n top: 2.188rem;\n padding: 0.5rem;\n border-radius: 0.25rem;\n background-color: var(--highlight);\n color: var(--grey10);\n}";
|
|
32645
|
+
var styles$A = {"root":"CodeSnippet-module_root__DwI00","copy":"CodeSnippet-module_copy__evfwO","icon":"CodeSnippet-module_icon__D6dmB","dark":"CodeSnippet-module_dark__uqayk","light":"CodeSnippet-module_light__ReXsJ","notCopied":"CodeSnippet-module_notCopied__J2bl4","copied":"CodeSnippet-module_copied__8xo5B"};
|
|
32646
|
+
styleInject(css_248z$B);
|
|
32644
32647
|
|
|
32645
32648
|
var CodeSnippet = function CodeSnippet(props) {
|
|
32646
32649
|
var copy = props.copy,
|
|
@@ -32662,7 +32665,7 @@ var CodeSnippet = function CodeSnippet(props) {
|
|
|
32662
32665
|
setCopiedState(true);
|
|
32663
32666
|
};
|
|
32664
32667
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
32665
|
-
className: styles$
|
|
32668
|
+
className: styles$A.root,
|
|
32666
32669
|
children: [/*#__PURE__*/jsxRuntime.jsx(ThemedCodeBlock, {
|
|
32667
32670
|
text: code,
|
|
32668
32671
|
language: language,
|
|
@@ -32672,12 +32675,12 @@ var CodeSnippet = function CodeSnippet(props) {
|
|
|
32672
32675
|
codeBlock: true,
|
|
32673
32676
|
wrapLines: true
|
|
32674
32677
|
}), copy && /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
32675
|
-
className: styles$
|
|
32678
|
+
className: styles$A.copy,
|
|
32676
32679
|
onClick: onCopy,
|
|
32677
32680
|
children: [/*#__PURE__*/jsxRuntime.jsx(Copy, {
|
|
32678
|
-
className: classes(styles$
|
|
32681
|
+
className: classes(styles$A.icon, theme === 'dark' ? styles$A.dark : styles$A.light)
|
|
32679
32682
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
32680
|
-
className: copiedState ? styles$
|
|
32683
|
+
className: copiedState ? styles$A.copied : styles$A.notCopied,
|
|
32681
32684
|
children: copiedState ? 'Copied' : ''
|
|
32682
32685
|
})]
|
|
32683
32686
|
})]
|
|
@@ -33524,52 +33527,52 @@ function sub$1(date, duration) {
|
|
|
33524
33527
|
return finalDate;
|
|
33525
33528
|
}
|
|
33526
33529
|
|
|
33527
|
-
var css_248z$
|
|
33528
|
-
var styles$
|
|
33529
|
-
styleInject(css_248z$
|
|
33530
|
+
var css_248z$A = ".Header-module_container__89ew- {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0rem 1.5625rem;\n}\n.Header-module_container__89ew- .Header-module_title__EtL4K {\n font-weight: 400;\n font-size: 0.8rem;\n color: var(--black);\n}\n.Header-module_container__89ew- .Header-module_icon__8hwq1 {\n width: 1.5rem;\n height: 1.5rem;\n stroke: #181818;\n cursor: pointer;\n}";
|
|
33531
|
+
var styles$z = {"container":"Header-module_container__89ew-","title":"Header-module_title__EtL4K","icon":"Header-module_icon__8hwq1"};
|
|
33532
|
+
styleInject(css_248z$A);
|
|
33530
33533
|
|
|
33531
33534
|
var Header = function Header(props) {
|
|
33532
33535
|
var selectedMonth = props.selectedMonth,
|
|
33533
33536
|
onMonthChange = props.onMonthChange;
|
|
33534
33537
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33535
|
-
className: styles$
|
|
33538
|
+
className: styles$z.container,
|
|
33536
33539
|
children: [/*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33537
33540
|
onClick: function onClick() {
|
|
33538
33541
|
onMonthChange('prev');
|
|
33539
33542
|
},
|
|
33540
|
-
className: styles$
|
|
33543
|
+
className: styles$z['left-arrow'],
|
|
33541
33544
|
children: /*#__PURE__*/jsxRuntime.jsx(Chevron, {
|
|
33542
|
-
className: classes(styles$
|
|
33545
|
+
className: classes(styles$z.icon),
|
|
33543
33546
|
position: "left"
|
|
33544
33547
|
})
|
|
33545
33548
|
}), /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
33546
|
-
className: styles$
|
|
33549
|
+
className: styles$z.title,
|
|
33547
33550
|
children: "".concat(selectedMonth.month, " ").concat(selectedMonth.year)
|
|
33548
33551
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33549
33552
|
onClick: function onClick() {
|
|
33550
33553
|
onMonthChange('next');
|
|
33551
33554
|
},
|
|
33552
|
-
className: styles$
|
|
33555
|
+
className: styles$z['right-arrow'],
|
|
33553
33556
|
children: /*#__PURE__*/jsxRuntime.jsx(Chevron, {
|
|
33554
|
-
className: classes(styles$
|
|
33557
|
+
className: classes(styles$z.icon),
|
|
33555
33558
|
position: "right"
|
|
33556
33559
|
})
|
|
33557
33560
|
})]
|
|
33558
33561
|
});
|
|
33559
33562
|
};
|
|
33560
33563
|
|
|
33561
|
-
var css_248z$
|
|
33562
|
-
var styles$
|
|
33564
|
+
var css_248z$z = ".Calender-module_root__CSkOi {\n padding: 1rem 0rem;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}";
|
|
33565
|
+
var styles$y = {"root":"Calender-module_root__CSkOi"};
|
|
33566
|
+
styleInject(css_248z$z);
|
|
33567
|
+
|
|
33568
|
+
var css_248z$y = ".Body-module_root__YPaGU {\n padding: 0.5rem 0.5rem;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n}";
|
|
33569
|
+
var styles$x = {"root":"Body-module_root__YPaGU"};
|
|
33563
33570
|
styleInject(css_248z$y);
|
|
33564
33571
|
|
|
33565
|
-
var css_248z$x = "
|
|
33566
|
-
var styles$w = {"
|
|
33572
|
+
var css_248z$x = ".Dates-module_dates__Bpo6h {\n display: grid;\n grid-template-columns: repeat(7, 1fr);\n align-items: center;\n flex-wrap: wrap;\n}\n.Dates-module_dates__Bpo6h div {\n flex-basis: 14.28%;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-bottom: 0.25rem;\n cursor: pointer;\n align-self: center;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.Dates-module_dates__Bpo6h div .Dates-module_date__W-t1s {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n text-align: center;\n vertical-align: middle;\n border-radius: 1.5rem;\n height: 2.5rem;\n width: 2.5rem;\n font-weight: 400;\n font-size: 0.875rem;\n color: var(--black);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_selected__6pZPI {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_unSelected__t8E66 {\n background-color: var(--white);\n border-color: var(--highlight);\n border-width: 0.125rem;\n border-style: solid;\n color: var(--black);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_disabled__5bins {\n border-radius: 1.5rem;\n color: var(--grey2);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_diffMonth__yiuXL {\n opacity: 0.6;\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_date__W-t1s {\n background: var(--background);\n color: var(--highlight);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_selected__6pZPI {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_disabled__5bins {\n background: transparent;\n box-shadow: none;\n border-radius: 1.5rem;\n color: var(--grey2);\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme {\n background-color: var(--highlight);\n border-radius: 1.5rem 0rem 0rem 1.5rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme .Dates-module_date__W-t1s {\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme:hover .Dates-module_date__W-t1s {\n background: var(--highlight);\n color: var(--white);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G {\n background-color: var(--highlight);\n border-radius: 0rem 1.5rem 1.5rem 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G .Dates-module_date__W-t1s {\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G:hover .Dates-module_date__W-t1s {\n background: var(--highlight);\n color: var(--white);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h .Dates-module_midInRange__hZ0HP {\n background: var(--background);\n border-radius: 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_midInRange__hZ0HP .Dates-module_date__W-t1s {\n color: var(--highlight);\n}\n.Dates-module_dates__Bpo6h .Dates-module_first-hovered__3S0LO {\n background: var(--background);\n border-radius: 0rem 1.5rem 1.5rem 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_first-hovered__3S0LO .Dates-module_date__W-t1s {\n color: var(--highlight);\n}\n.Dates-module_dates__Bpo6h .Dates-module_last-hovered__zPW7P {\n background: var(--background);\n border-radius: 1.5rem 0rem 0rem 1.5rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_last-hovered__zPW7P .Dates-module_date__W-t1s {\n color: var(--highlight);\n}";
|
|
33573
|
+
var styles$w = {"dates":"Dates-module_dates__Bpo6h","date":"Dates-module_date__W-t1s","selected":"Dates-module_selected__6pZPI","unSelected":"Dates-module_unSelected__t8E66","disabled":"Dates-module_disabled__5bins","diffMonth":"Dates-module_diffMonth__yiuXL","minInRange":"Dates-module_minInRange__uTZme","maxInRange":"Dates-module_maxInRange__3Rr0G","midInRange":"Dates-module_midInRange__hZ0HP","first-hovered":"Dates-module_first-hovered__3S0LO","last-hovered":"Dates-module_last-hovered__zPW7P"};
|
|
33567
33574
|
styleInject(css_248z$x);
|
|
33568
33575
|
|
|
33569
|
-
var css_248z$w = ":root {\n --white: #ffffff;\n --black: #000000;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #da1e28;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n\n.Dates-module_dates__Bpo6h {\n display: grid;\n grid-template-columns: repeat(7, 1fr);\n align-items: center;\n flex-wrap: wrap;\n}\n.Dates-module_dates__Bpo6h div {\n flex-basis: 14.28%;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-bottom: 0.25rem;\n cursor: pointer;\n align-self: center;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.Dates-module_dates__Bpo6h div .Dates-module_date__W-t1s {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n text-align: center;\n vertical-align: middle;\n border-radius: 1.5rem;\n height: 2.5rem;\n width: 2.5rem;\n font-weight: 400;\n font-size: 0.875rem;\n color: var(--black);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_selected__6pZPI {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_unSelected__t8E66 {\n background-color: var(--white);\n border-color: var(--highlight);\n border-width: 0.125rem;\n border-style: solid;\n color: var(--black);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_disabled__5bins {\n border-radius: 1.5rem;\n color: var(--grey2);\n}\n.Dates-module_dates__Bpo6h div .Dates-module_diffMonth__yiuXL {\n opacity: 0.6;\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_date__W-t1s {\n background: var(--background);\n color: var(--highlight);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_selected__6pZPI {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h div:hover .Dates-module_disabled__5bins {\n background: transparent;\n box-shadow: none;\n border-radius: 1.5rem;\n color: var(--grey2);\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme {\n background-color: var(--highlight);\n border-radius: 1.5rem 0rem 0rem 1.5rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme .Dates-module_date__W-t1s {\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h .Dates-module_minInRange__uTZme:hover .Dates-module_date__W-t1s {\n background: var(--highlight);\n color: var(--white);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G {\n background-color: var(--highlight);\n border-radius: 0rem 1.5rem 1.5rem 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G .Dates-module_date__W-t1s {\n color: var(--white);\n}\n.Dates-module_dates__Bpo6h .Dates-module_maxInRange__3Rr0G:hover .Dates-module_date__W-t1s {\n background: var(--highlight);\n color: var(--white);\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n}\n.Dates-module_dates__Bpo6h .Dates-module_midInRange__hZ0HP {\n background: var(--background);\n border-radius: 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_midInRange__hZ0HP .Dates-module_date__W-t1s {\n color: var(--highlight);\n}\n.Dates-module_dates__Bpo6h .Dates-module_first-hovered__3S0LO {\n background: var(--background);\n border-radius: 0rem 1.5rem 1.5rem 0rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_first-hovered__3S0LO .Dates-module_date__W-t1s {\n color: var(--highlight);\n}\n.Dates-module_dates__Bpo6h .Dates-module_last-hovered__zPW7P {\n background: var(--background);\n border-radius: 1.5rem 0rem 0rem 1.5rem;\n}\n.Dates-module_dates__Bpo6h .Dates-module_last-hovered__zPW7P .Dates-module_date__W-t1s {\n color: var(--highlight);\n}";
|
|
33570
|
-
var styles$v = {"white":"var(--white)","black":"var(--black)","dark-grey":"var(--dark-grey)","dark-grey-o-85":"var(--dark-grey-o-85)","grey":"var(--grey)","grey1":"var(--grey1)","grey2":"var(--grey2)","grey3":"var(--grey3)","grey4":"var(--grey4)","grey5":"var(--grey5)","grey6":"var(--grey6)","grey7":"var(--grey7)","grey8":"var(--grey8)","grey9":"var(--grey9)","grey10":"var(--grey10)","highlight":"var(--highlight)","dark-blue":"var(--dark-blue)","background":"var(--background)","banyan-blue":"var(--banyan-blue)","banyan-orange":"var(--banyan-orange)","banyan-pink":"var(--banyan-pink)","banyan-gradient":"var(--banyan-gradient)","error":"var(--error)","error-bg":"var(--error-bg)","error-outline":"var(--error-outline)","success":"var(--success)","success-bg":"var(--success-bg)","success-outline":"var(--success-outline)","warning":"var(--warning)","warning-bg":"var(--warning-bg)","warning-outline":"var(--warning-outline)","info":"var(--info)","info-bg":"var(--info-bg)","info-outline":"var(--info-outline)","dates":"Dates-module_dates__Bpo6h","date":"Dates-module_date__W-t1s","selected":"Dates-module_selected__6pZPI","unSelected":"Dates-module_unSelected__t8E66","disabled":"Dates-module_disabled__5bins","diffMonth":"Dates-module_diffMonth__yiuXL","minInRange":"Dates-module_minInRange__uTZme","maxInRange":"Dates-module_maxInRange__3Rr0G","midInRange":"Dates-module_midInRange__hZ0HP","first-hovered":"Dates-module_first-hovered__3S0LO","last-hovered":"Dates-module_last-hovered__zPW7P"};
|
|
33571
|
-
styleInject(css_248z$w);
|
|
33572
|
-
|
|
33573
33576
|
var getDatesOfLastWeekOfLastMonth = function getDatesOfLastWeekOfLastMonth(_ref) {
|
|
33574
33577
|
var monthAsNumber = _ref.monthAsNumber,
|
|
33575
33578
|
year = _ref.year,
|
|
@@ -33770,7 +33773,7 @@ var Dates = function Dates(props) {
|
|
|
33770
33773
|
return (disableDatesAfter === null || disableDatesAfter === void 0 ? void 0 : disableDatesAfter.length) > 0 && isAfter(date, fromUnixTime(disableDatesAfter));
|
|
33771
33774
|
};
|
|
33772
33775
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33773
|
-
className: styles$
|
|
33776
|
+
className: styles$w.dates,
|
|
33774
33777
|
children: datesToDisplay.map(function (date) {
|
|
33775
33778
|
var _selectedRange$unix2;
|
|
33776
33779
|
var dateNumber = date === null || date === void 0 ? void 0 : date.getDate();
|
|
@@ -33794,8 +33797,8 @@ var Dates = function Dates(props) {
|
|
|
33794
33797
|
} else {
|
|
33795
33798
|
isMidItem = isBefore(date, fromUnixTime(lastItem)) && isAfter(date, fromUnixTime(firstItem).setHours(23, 59, 59, 59));
|
|
33796
33799
|
}
|
|
33797
|
-
var parentClassNames = classes(isMidItem ? styles$
|
|
33798
|
-
var childClassNames = classes(date ? styles$
|
|
33800
|
+
var parentClassNames = classes(isMidItem ? styles$w.midInRange : '', isFirstItem ? isHoveringBeforeSelectedDate ? styles$w.maxInRange : styles$w.minInRange : '', isLastItem ? styles$w.maxInRange : '', isLastItemHovered ? styles$w['first-hovered'] : '', isFirstItemHovered ? styles$w['last-hovered'] : '');
|
|
33801
|
+
var childClassNames = classes(date ? styles$w.date : '', selectedSingleDate ? styles$w.selected : '', isUnSelected ? styles$w.unSelected : '', notSameMonth ? styles$w.diffMonth : '', isDisabled ? styles$w.disabled : '');
|
|
33799
33802
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33800
33803
|
className: parentClassNames,
|
|
33801
33804
|
onClick: function onClick() {
|
|
@@ -33815,14 +33818,14 @@ var Dates = function Dates(props) {
|
|
|
33815
33818
|
});
|
|
33816
33819
|
};
|
|
33817
33820
|
|
|
33818
|
-
var css_248z$
|
|
33819
|
-
var styles$
|
|
33820
|
-
styleInject(css_248z$
|
|
33821
|
+
var css_248z$w = ".Days-module_days__h8GoU {\n display: grid;\n grid-template-columns: repeat(7, 1fr);\n text-align: center;\n}\n.Days-module_days__h8GoU span {\n padding: 0.75rem 0.5rem;\n font-weight: 500;\n font-size: 0.875rem;\n color: black;\n flex-basis: 14.28%;\n}";
|
|
33822
|
+
var styles$v = {"days":"Days-module_days__h8GoU"};
|
|
33823
|
+
styleInject(css_248z$w);
|
|
33821
33824
|
|
|
33822
33825
|
var Days = function Days() {
|
|
33823
33826
|
var daysInWeek = DAYS;
|
|
33824
33827
|
return /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33825
|
-
className: styles$
|
|
33828
|
+
className: styles$v.days,
|
|
33826
33829
|
children: daysInWeek.map(function (day) {
|
|
33827
33830
|
return /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
33828
33831
|
children: day
|
|
@@ -33833,14 +33836,14 @@ var Days = function Days() {
|
|
|
33833
33836
|
|
|
33834
33837
|
var Body = function Body(props) {
|
|
33835
33838
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33836
|
-
className: styles$
|
|
33839
|
+
className: styles$x.root,
|
|
33837
33840
|
children: [/*#__PURE__*/jsxRuntime.jsx(Days, {}), /*#__PURE__*/jsxRuntime.jsx(Dates, _objectSpread2({}, props))]
|
|
33838
33841
|
});
|
|
33839
33842
|
};
|
|
33840
33843
|
|
|
33841
|
-
var css_248z$
|
|
33842
|
-
var styles$
|
|
33843
|
-
styleInject(css_248z$
|
|
33844
|
+
var css_248z$v = ".Footer-module_root__6JHNf {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n margin-inline: 1rem;\n}\n.Footer-module_root__6JHNf .Footer-module_apply__Dgszx {\n margin-top: 0.5rem;\n width: 100%;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n\n.Footer-module_selected-date__ZWKA5 {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 1.125rem;\n background: var(--white);\n border: 0.0625rem solid var(--grey4);\n border-radius: 0.25rem;\n padding: 0.3rem 0rem 0.3rem 1rem;\n}\n.Footer-module_selected-date__ZWKA5 .Footer-module_date__67pQS {\n font-weight: 500;\n font-size: 0.875rem;\n line-height: 1.3125rem;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.Footer-module_selected-date__ZWKA5 .Footer-module_date__67pQS .Footer-module_cross__7bTBS {\n width: 1.5rem;\n height: 1.5rem;\n}\n.Footer-module_selected-date__ZWKA5 .Footer-module_date__67pQS .Footer-module_value__CQwDE {\n font-weight: 400;\n padding-right: 0.7rem;\n border-right: 1px var(--grey3) solid;\n}\n\n.Footer-module_date-ranges__HS-BW {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: stretch;\n margin-top: 0.5rem;\n}\n.Footer-module_date-ranges__HS-BW .Footer-module_date-range__cDU-- {\n display: flex;\n align-items: center;\n padding: 0.875rem 1rem;\n gap: 1.125rem;\n cursor: pointer;\n}\n.Footer-module_date-ranges__HS-BW .Footer-module_date-range__cDU--:hover {\n background-color: var(--background);\n}\n.Footer-module_date-ranges__HS-BW .Footer-module_date-range__cDU-- span {\n font-weight: 400;\n font-size: 0.875rem;\n line-height: 1.3125rem;\n color: var(--black);\n}\n.Footer-module_date-ranges__HS-BW .Footer-module_selected__oYOGU {\n background-color: var(--background);\n}";
|
|
33845
|
+
var styles$u = {"root":"Footer-module_root__6JHNf","apply":"Footer-module_apply__Dgszx","selected-date":"Footer-module_selected-date__ZWKA5","date":"Footer-module_date__67pQS","cross":"Footer-module_cross__7bTBS","value":"Footer-module_value__CQwDE","date-ranges":"Footer-module_date-ranges__HS-BW","date-range":"Footer-module_date-range__cDU--","selected":"Footer-module_selected__oYOGU"};
|
|
33846
|
+
styleInject(css_248z$v);
|
|
33844
33847
|
|
|
33845
33848
|
var getDateAndUnixRange = function getDateAndUnixRange(duration) {
|
|
33846
33849
|
var startingDate = sub$1(new Date(), duration);
|
|
@@ -33876,11 +33879,11 @@ var SelectedDateView = function SelectedDateView(props) {
|
|
|
33876
33879
|
action = props.action,
|
|
33877
33880
|
Icon = props.icon;
|
|
33878
33881
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33879
|
-
className: styles$
|
|
33882
|
+
className: styles$u['selected-date'],
|
|
33880
33883
|
children: [/*#__PURE__*/jsxRuntime.jsx(Calender$1, {}), /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33881
|
-
className: styles$
|
|
33884
|
+
className: styles$u.date,
|
|
33882
33885
|
children: [/*#__PURE__*/jsxRuntime.jsx("span", {
|
|
33883
|
-
className: classes(styles$
|
|
33886
|
+
className: classes(styles$u.value),
|
|
33884
33887
|
children: value
|
|
33885
33888
|
}), /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
33886
33889
|
size: "auto",
|
|
@@ -33917,13 +33920,13 @@ var Footer = function Footer(props) {
|
|
|
33917
33920
|
setSelectedRange({});
|
|
33918
33921
|
};
|
|
33919
33922
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33920
|
-
className: styles$
|
|
33923
|
+
className: styles$u.root,
|
|
33921
33924
|
children: [datesSelected && (dates === null || dates === void 0 ? void 0 : dates.length) === 2 ? /*#__PURE__*/jsxRuntime.jsx(SelectedDateView, {
|
|
33922
33925
|
range: true,
|
|
33923
33926
|
value: "".concat(selectedRange.dates[0], " - ").concat(selectedRange.dates[1]),
|
|
33924
33927
|
icon: function icon() {
|
|
33925
33928
|
return /*#__PURE__*/jsxRuntime.jsx(Cross$1, {
|
|
33926
|
-
className: styles$
|
|
33929
|
+
className: styles$u.cross
|
|
33927
33930
|
});
|
|
33928
33931
|
},
|
|
33929
33932
|
action: clearRangeSelection
|
|
@@ -33934,14 +33937,14 @@ var Footer = function Footer(props) {
|
|
|
33934
33937
|
},
|
|
33935
33938
|
action: resetDate
|
|
33936
33939
|
}), range && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
33937
|
-
className: styles$
|
|
33940
|
+
className: styles$u['date-ranges'],
|
|
33938
33941
|
children: dateRanges.map(function (_ref) {
|
|
33939
33942
|
var _selectedRange$unix;
|
|
33940
33943
|
var dateRange = _ref.dateRange,
|
|
33941
33944
|
title = _ref.title;
|
|
33942
33945
|
var selectedFixedDateRange = dateRange.unix.toString() === ((_selectedRange$unix = selectedRange.unix) === null || _selectedRange$unix === void 0 ? void 0 : _selectedRange$unix.toString());
|
|
33943
33946
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
33944
|
-
className: classes(styles$
|
|
33947
|
+
className: classes(styles$u['date-range'], selectedFixedDateRange ? styles$u.selected : ''),
|
|
33945
33948
|
onClick: function onClick() {
|
|
33946
33949
|
selectFixedDateRange(dateRange);
|
|
33947
33950
|
},
|
|
@@ -33953,7 +33956,7 @@ var Footer = function Footer(props) {
|
|
|
33953
33956
|
}), datesSelected && /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
33954
33957
|
onClick: onApply,
|
|
33955
33958
|
title: "Apply",
|
|
33956
|
-
className: styles$
|
|
33959
|
+
className: styles$u.apply
|
|
33957
33960
|
})]
|
|
33958
33961
|
});
|
|
33959
33962
|
};
|
|
@@ -34048,7 +34051,7 @@ var Calender = function Calender(props) {
|
|
|
34048
34051
|
}
|
|
34049
34052
|
};
|
|
34050
34053
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34051
|
-
className: styles$
|
|
34054
|
+
className: styles$y.root,
|
|
34052
34055
|
children: [/*#__PURE__*/jsxRuntime.jsx(Header, {
|
|
34053
34056
|
selectedMonth: selectedMonth,
|
|
34054
34057
|
onMonthChange: onMonthChange
|
|
@@ -34074,9 +34077,9 @@ var Calender = function Calender(props) {
|
|
|
34074
34077
|
});
|
|
34075
34078
|
};
|
|
34076
34079
|
|
|
34077
|
-
var css_248z$
|
|
34078
|
-
var styles$
|
|
34079
|
-
styleInject(css_248z$
|
|
34080
|
+
var css_248z$u = ".DatePicker-module_root__pWgbK {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n gap: 0.5rem;\n max-width: 100%;\n width: 25%;\n overflow: visible;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_label__TaavL {\n font-weight: 400;\n font-size: 0.75rem;\n color: var(--black);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n position: relative;\n background: transparent;\n border: 0.0625rem solid #d9d9d9;\n border-radius: 0.25rem;\n width: auto;\n border: 0.0625rem solid var(--grey5);\n padding: 0.75rem 1rem;\n cursor: pointer;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ > div {\n display: flex;\n align-items: center;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_placeholder__bJ4zY {\n font-weight: 400;\n font-size: 1rem;\n color: var(--grey1);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n margin-left: 0.9375rem;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_value__Dzh9C {\n font-weight: 400;\n font-size: 1rem;\n color: var(--black);\n margin-left: 0.9375rem;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_value__Dzh9C span {\n font-weight: 500;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_input__Xnk6R {\n display: none;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_icon__-P8w2 {\n width: 1.5rem;\n height: 1.5rem;\n stroke: #181818;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_down__QF2xc {\n transform: rotate(270deg);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_container__mDxYJ .DatePicker-module_up__1dCIH {\n transform: rotate(90deg);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_disabled__lloGH {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n position: relative;\n background: var(--grey10);\n border: 0.0625rem solid #d9d9d9;\n border-radius: 0.25rem;\n border: 0.0625rem solid var(--grey5);\n padding: 0.75rem 1rem;\n cursor: pointer;\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_disabled__lloGH .DatePicker-module_down-arrow__Bsna6 {\n transform: rotate(270deg);\n fill: var(--grey3);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_disabled__lloGH .DatePicker-module_placeholder__bJ4zY {\n font-weight: 400;\n font-size: 1rem;\n color: var(--grey3);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.DatePicker-module_root__pWgbK.DatePicker-module_open__7ff-- {\n border-color: var(--highlight);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_error__mp88e {\n border: 0.0938rem solid var(--error);\n}\n.DatePicker-module_root__pWgbK .DatePicker-module_error-text__wxtb- {\n font-weight: 400;\n font-size: 0.75rem;\n line-height: 0.9375rem;\n color: var(--error);\n}\n\n.DatePicker-module_popper__EFyrT {\n display: none;\n background: var(--white);\n border: 0.0625rem solid #d9d9d9;\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n border-radius: 0.25rem;\n overflow: auto;\n}\n.DatePicker-module_popper__EFyrT.DatePicker-module_open__7ff-- {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n position: absolute;\n}";
|
|
34081
|
+
var styles$t = {"root":"DatePicker-module_root__pWgbK","label":"DatePicker-module_label__TaavL","container":"DatePicker-module_container__mDxYJ","placeholder":"DatePicker-module_placeholder__bJ4zY","value":"DatePicker-module_value__Dzh9C","input":"DatePicker-module_input__Xnk6R","icon":"DatePicker-module_icon__-P8w2","down":"DatePicker-module_down__QF2xc","up":"DatePicker-module_up__1dCIH","disabled":"DatePicker-module_disabled__lloGH","down-arrow":"DatePicker-module_down-arrow__Bsna6","open":"DatePicker-module_open__7ff--","error":"DatePicker-module_error__mp88e","error-text":"DatePicker-module_error-text__wxtb-","popper":"DatePicker-module_popper__EFyrT"};
|
|
34082
|
+
styleInject(css_248z$u);
|
|
34080
34083
|
|
|
34081
34084
|
var isMaxRangeExceeded = function isMaxRangeExceeded(_ref) {
|
|
34082
34085
|
var maxRange = _ref.maxRange,
|
|
@@ -34214,35 +34217,35 @@ var DatePicker = function DatePicker(props) {
|
|
|
34214
34217
|
disableDatesBefore: disableDatesBefore
|
|
34215
34218
|
};
|
|
34216
34219
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34217
|
-
className: classes(styles$
|
|
34220
|
+
className: classes(styles$t.root, className),
|
|
34218
34221
|
ref: datePickerRef,
|
|
34219
34222
|
children: [label && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34220
|
-
className: styles$
|
|
34223
|
+
className: styles$t.label,
|
|
34221
34224
|
children: label
|
|
34222
34225
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", _objectSpread2(_objectSpread2({
|
|
34223
34226
|
"data-elem": "header",
|
|
34224
34227
|
ref: reference,
|
|
34225
|
-
className: classes(styles$
|
|
34228
|
+
className: classes(styles$t.container, disabled ? styles$t.disabled : '', open ? styles$t.open : '', error ? styles$t.error : '')
|
|
34226
34229
|
}, getReferenceProps()), {}, {
|
|
34227
34230
|
children: [/*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34228
34231
|
children: [/*#__PURE__*/jsxRuntime.jsx(Calender$1, {}), !displayValue && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34229
|
-
className: styles$
|
|
34232
|
+
className: styles$t.placeholder,
|
|
34230
34233
|
children: placeholder
|
|
34231
34234
|
}), displayValue && /*#__PURE__*/jsxRuntime.jsxs("span", {
|
|
34232
|
-
className: styles$
|
|
34235
|
+
className: styles$t.value,
|
|
34233
34236
|
children: ["Selected Date: ", /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34234
34237
|
children: displayValue
|
|
34235
34238
|
})]
|
|
34236
34239
|
})]
|
|
34237
34240
|
}), /*#__PURE__*/jsxRuntime.jsx("input", {
|
|
34238
|
-
className: styles$
|
|
34241
|
+
className: styles$t.input,
|
|
34239
34242
|
value: displayValue
|
|
34240
34243
|
}), /*#__PURE__*/jsxRuntime.jsx(Chevron, {
|
|
34241
|
-
className: classes(styles$
|
|
34244
|
+
className: classes(styles$t.icon),
|
|
34242
34245
|
position: open ? 'bottom' : 'top'
|
|
34243
34246
|
})]
|
|
34244
34247
|
})), error && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34245
|
-
className: styles$
|
|
34248
|
+
className: styles$t['error-text'],
|
|
34246
34249
|
children: error
|
|
34247
34250
|
}), /*#__PURE__*/jsxRuntime.jsx(Popper, {
|
|
34248
34251
|
open: open,
|
|
@@ -34261,7 +34264,7 @@ var DatePicker = function DatePicker(props) {
|
|
|
34261
34264
|
left: x !== null && x !== void 0 ? x : 0
|
|
34262
34265
|
}
|
|
34263
34266
|
})), {}, {
|
|
34264
|
-
className: classes(styles$
|
|
34267
|
+
className: classes(styles$t.popper, open ? styles$t.open : ''),
|
|
34265
34268
|
children: /*#__PURE__*/jsxRuntime.jsx(Calender, _objectSpread2({}, calenderProps))
|
|
34266
34269
|
}))
|
|
34267
34270
|
})]
|
|
@@ -34297,9 +34300,9 @@ DatePicker.defaultProps = {
|
|
|
34297
34300
|
disableDatesAfter: []
|
|
34298
34301
|
};
|
|
34299
34302
|
|
|
34300
|
-
var css_248z$
|
|
34301
|
-
var styles$
|
|
34302
|
-
styleInject(css_248z$
|
|
34303
|
+
var css_248z$t = ".HierarchyItem-module_root__xmuT5 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n flex: 1;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.25rem;\n min-height: 2rem;\n height: auto;\n padding: 0.25rem;\n cursor: pointer;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component1], .HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component3] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component1] .HierarchyItem-module_icon__8cxN-, .HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component3] .HierarchyItem-module_icon__8cxN- {\n transform: rotate(-90deg);\n width: 1rem;\n height: 1rem;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component2] {\n flex: 1 1 auto;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W > [data-elem=component2] .HierarchyItem-module_title__CiLbz {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W:hover {\n background: var(--background);\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W:hover .HierarchyItem-module_icon__8cxN-,\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W:hover .HierarchyItem-module_title__CiLbz,\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_header__f6M5W:hover .HierarchyItem-module_title__CiLbz svg {\n color: var(--highlight);\n fill: var(--highlight);\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD {\n display: none;\n flex: 1 0 auto;\n padding: 0px 0rem 0px 0.25rem;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD > [data-elem=component1] {\n flex: 0 0 1.6rem;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD > [data-elem=component1] .HierarchyItem-module_tail__6j167 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n width: 1.6rem;\n height: 100%;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD > [data-elem=component1] .HierarchyItem-module_tail__6j167::after {\n content: \"\";\n display: block;\n margin: auto;\n width: 1px;\n flex: 1;\n background: var(--grey1);\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD > [data-elem=component2] {\n flex: 1 0 auto;\n}\n.HierarchyItem-module_root__xmuT5 .HierarchyItem-module_body__Ki7zD > [data-elem=component2] .HierarchyItem-module_children__LEvjl {\n flex: 1 0 auto;\n}\n.HierarchyItem-module_root__xmuT5.HierarchyItem-module_open__z-239 > .HierarchyItem-module_header__f6M5W .HierarchyItem-module_icon__8cxN- {\n transform: none;\n}\n.HierarchyItem-module_root__xmuT5.HierarchyItem-module_open__z-239 > .HierarchyItem-module_body__Ki7zD {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: stretch;\n gap: 0.25rem;\n height: auto;\n}";
|
|
34304
|
+
var styles$s = {"root":"HierarchyItem-module_root__xmuT5","header":"HierarchyItem-module_header__f6M5W","icon":"HierarchyItem-module_icon__8cxN-","title":"HierarchyItem-module_title__CiLbz","body":"HierarchyItem-module_body__Ki7zD","tail":"HierarchyItem-module_tail__6j167","children":"HierarchyItem-module_children__LEvjl","open":"HierarchyItem-module_open__z-239"};
|
|
34305
|
+
styleInject(css_248z$t);
|
|
34303
34306
|
|
|
34304
34307
|
var HierarchyItem = function HierarchyItem(props) {
|
|
34305
34308
|
var defaultOpen = props.defaultOpen,
|
|
@@ -34312,12 +34315,12 @@ var HierarchyItem = function HierarchyItem(props) {
|
|
|
34312
34315
|
open = _useState2[0],
|
|
34313
34316
|
setOpen = _useState2[1];
|
|
34314
34317
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34315
|
-
className: classes(styles$
|
|
34318
|
+
className: classes(styles$s.root, open ? styles$s.open : ''),
|
|
34316
34319
|
children: [/*#__PURE__*/jsxRuntime.jsx(BaseCell, {
|
|
34317
34320
|
flexible: true,
|
|
34318
34321
|
size: "auto",
|
|
34319
34322
|
rootDOM: "button",
|
|
34320
|
-
className: styles$
|
|
34323
|
+
className: styles$s.header,
|
|
34321
34324
|
attrs: {
|
|
34322
34325
|
onClick: function onClick() {
|
|
34323
34326
|
setOpen(function (prevState) {
|
|
@@ -34328,23 +34331,23 @@ var HierarchyItem = function HierarchyItem(props) {
|
|
|
34328
34331
|
}
|
|
34329
34332
|
},
|
|
34330
34333
|
component1: iconPlacement === 'left' && /*#__PURE__*/jsxRuntime.jsx(Caret, {
|
|
34331
|
-
className: styles$
|
|
34334
|
+
className: styles$s.icon
|
|
34332
34335
|
}),
|
|
34333
34336
|
component2: /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34334
|
-
className: styles$
|
|
34337
|
+
className: styles$s.title,
|
|
34335
34338
|
children: title
|
|
34336
34339
|
}),
|
|
34337
34340
|
component3: iconPlacement === 'right' && /*#__PURE__*/jsxRuntime.jsx(Caret, {
|
|
34338
|
-
className: styles$
|
|
34341
|
+
className: styles$s.icon
|
|
34339
34342
|
})
|
|
34340
34343
|
}), /*#__PURE__*/jsxRuntime.jsx(BaseCell, {
|
|
34341
34344
|
size: "auto",
|
|
34342
|
-
className: styles$
|
|
34345
|
+
className: styles$s.body,
|
|
34343
34346
|
component1: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34344
|
-
className: styles$
|
|
34347
|
+
className: styles$s.tail
|
|
34345
34348
|
}),
|
|
34346
34349
|
component2: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34347
|
-
className: styles$
|
|
34350
|
+
className: styles$s.children,
|
|
34348
34351
|
children: children
|
|
34349
34352
|
})
|
|
34350
34353
|
})]
|
|
@@ -34363,9 +34366,9 @@ HierarchyItem.defaultProps = {
|
|
|
34363
34366
|
onClick: function onClick() {}
|
|
34364
34367
|
};
|
|
34365
34368
|
|
|
34366
|
-
var css_248z$
|
|
34367
|
-
var styles$
|
|
34368
|
-
styleInject(css_248z$
|
|
34369
|
+
var css_248z$s = ".HierarchyBrowser-module_root__j3ioY {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n width: 20rem;\n position: relative;\n}\n.HierarchyBrowser-module_root__j3ioY .HierarchyBrowser-module_header__b9The {\n padding: 0.5rem;\n background: var(--dark-grey);\n color: var(--white);\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.HierarchyBrowser-module_root__j3ioY .HierarchyBrowser-module_body__EUy5V {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n overflow: auto;\n}\n.HierarchyBrowser-module_root__j3ioY .HierarchyBrowser-module_item__YXgKC {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.25rem;\n}\n.HierarchyBrowser-module_root__j3ioY .HierarchyBrowser-module_item__YXgKC .HierarchyBrowser-module_item-icon__U1YXT {\n width: 1rem;\n}\n.HierarchyBrowser-module_root__j3ioY::after {\n position: absolute;\n right: 0;\n content: \"\";\n width: 1px;\n height: 100%;\n background: var(--grey4);\n}\n.HierarchyBrowser-module_root__j3ioY.HierarchyBrowser-module_resizable__WU3QL:hover::after {\n width: 3px;\n cursor: col-resize;\n}";
|
|
34370
|
+
var styles$r = {"root":"HierarchyBrowser-module_root__j3ioY","header":"HierarchyBrowser-module_header__b9The","body":"HierarchyBrowser-module_body__EUy5V","item":"HierarchyBrowser-module_item__YXgKC","item-icon":"HierarchyBrowser-module_item-icon__U1YXT","resizable":"HierarchyBrowser-module_resizable__WU3QL"};
|
|
34371
|
+
styleInject(css_248z$s);
|
|
34369
34372
|
|
|
34370
34373
|
var Title = function Title(props) {
|
|
34371
34374
|
var item = props.item;
|
|
@@ -34378,14 +34381,14 @@ var Title = function Title(props) {
|
|
|
34378
34381
|
break;
|
|
34379
34382
|
}
|
|
34380
34383
|
return /*#__PURE__*/jsxRuntime.jsxs("span", {
|
|
34381
|
-
className: styles$
|
|
34384
|
+
className: styles$r.item,
|
|
34382
34385
|
children: [Icon && /*#__PURE__*/jsxRuntime.jsx(Icon, {
|
|
34383
|
-
className: styles$
|
|
34386
|
+
className: styles$r['item-icon']
|
|
34384
34387
|
}), /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34385
|
-
className: styles$
|
|
34388
|
+
className: styles$r['item-title'],
|
|
34386
34389
|
children: item === null || item === void 0 ? void 0 : item.title
|
|
34387
34390
|
}), (item === null || item === void 0 ? void 0 : item.count) && /*#__PURE__*/jsxRuntime.jsxs("span", {
|
|
34388
|
-
className: styles$
|
|
34391
|
+
className: styles$r['item-count'],
|
|
34389
34392
|
children: ["(", item === null || item === void 0 ? void 0 : item.count, ")"]
|
|
34390
34393
|
})]
|
|
34391
34394
|
});
|
|
@@ -34435,12 +34438,12 @@ var HierarchyBrowser = function HierarchyBrowser(props) {
|
|
|
34435
34438
|
};
|
|
34436
34439
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34437
34440
|
ref: browserRef,
|
|
34438
|
-
className: classes(styles$
|
|
34441
|
+
className: classes(styles$r.root, className, resizable ? styles$r.resizable : ''),
|
|
34439
34442
|
children: [/*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34440
|
-
className: styles$
|
|
34443
|
+
className: styles$r.header,
|
|
34441
34444
|
children: "Browser"
|
|
34442
34445
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34443
|
-
className: styles$
|
|
34446
|
+
className: styles$r.body,
|
|
34444
34447
|
children: renderTree(metadata)
|
|
34445
34448
|
})]
|
|
34446
34449
|
});
|
|
@@ -34473,9 +34476,9 @@ HierarchyBrowser.defaultProps = {
|
|
|
34473
34476
|
}
|
|
34474
34477
|
};
|
|
34475
34478
|
|
|
34476
|
-
var css_248z$
|
|
34477
|
-
var styles$
|
|
34478
|
-
styleInject(css_248z$
|
|
34479
|
+
var css_248z$r = ".TextField-module_root__cxliV {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n gap: 0.5rem;\n}\n.TextField-module_root__cxliV label {\n width: 100%;\n max-width: 100%;\n font-weight: 400;\n font-size: 0.75rem;\n line-height: 1.125rem;\n letter-spacing: 0.32px;\n color: var(--grey);\n height: 100%;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 0.5rem;\n padding: 0rem 0.5rem;\n max-width: 100%;\n width: 100%;\n border-color: var(--grey4);\n border-style: solid;\n border-radius: 0.25rem;\n height: 100%;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr .TextField-module_icon__ZP1kq {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] {\n flex: 1;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB {\n -moz-appearance: textfield;\n flex: 1;\n background-color: transparent;\n border: none;\n font-weight: 400;\n font-size: 0.875rem;\n line-height: 1.125rem;\n letter-spacing: 0.16px;\n color: var(--black);\n width: 100%;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB::-webkit-outer-spin-button, .TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB::-webkit-inner-spin-button {\n -webkit-appearance: none;\n margin: 0;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB:focus {\n outline: none;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB:disabled {\n background: var(--grey9);\n color: var(--grey3);\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB.TextField-module_sm__NtUhK {\n padding: 0.5rem 0rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB.TextField-module_md__X9UkD {\n padding: 0.688rem 0rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr > [data-elem=component2] .TextField-module_input__XtpAB.TextField-module_lg__CnIeo {\n padding: 1rem 0rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_type-textarea__pzmyo {\n padding: 0;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_type-textarea__pzmyo > [data-elem=component2] .TextField-module_input__XtpAB {\n resize: vertical;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_type-textarea__pzmyo > [data-elem=component2] .TextField-module_input__XtpAB.TextField-module_md__X9UkD {\n padding: 0.313rem 0.75rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_type-textarea__pzmyo > [data-elem=component2] .TextField-module_input__XtpAB.TextField-module_lg__CnIeo {\n padding: 0.5rem 1rem;\n font-size: 1rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr:focus-within {\n border: 0.063rem solid var(--info);\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr:focus-within.TextField-module_feedback-error__Co5mv {\n border-color: var(--error);\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_border-default__lIsd3 {\n border-width: 0.063rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_border-bottom__78YVX {\n border-width: 0rem 0rem 0.063rem 0rem;\n}\n.TextField-module_root__cxliV label .TextField-module_input-wrapper__jQiRr.TextField-module_border-none__o0wUl {\n border-width: 0rem;\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n min-height: 2rem;\n width: 100%;\n gap: 1rem;\n color: var(--grey3);\n font-size: 0.75rem;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz .TextField-module_feedback__-Un1k {\n flex: 1;\n margin-right: auto;\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz .TextField-module_feedback__-Un1k.TextField-module_feedback-error__Co5mv {\n color: var(--error);\n fill: var(--error);\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz .TextField-module_feedback__-Un1k.TextField-module_feedback-success__TI4mz {\n color: var(--success);\n fill: var(--success);\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz .TextField-module_count__aVqOg {\n text-align: right;\n margin-left: auto;\n}\n.TextField-module_root__cxliV .TextField-module_bottom__T-Irz .TextField-module_count__aVqOg.TextField-module_exceeded__9eaex {\n color: var(--error);\n}";
|
|
34480
|
+
var styles$q = {"root":"TextField-module_root__cxliV","input-wrapper":"TextField-module_input-wrapper__jQiRr","icon":"TextField-module_icon__ZP1kq","input":"TextField-module_input__XtpAB","sm":"TextField-module_sm__NtUhK","md":"TextField-module_md__X9UkD","lg":"TextField-module_lg__CnIeo","type-textarea":"TextField-module_type-textarea__pzmyo","feedback-error":"TextField-module_feedback-error__Co5mv","border-default":"TextField-module_border-default__lIsd3","border-bottom":"TextField-module_border-bottom__78YVX","border-none":"TextField-module_border-none__o0wUl","bottom":"TextField-module_bottom__T-Irz","feedback":"TextField-module_feedback__-Un1k","feedback-success":"TextField-module_feedback-success__TI4mz","count":"TextField-module_count__aVqOg","exceeded":"TextField-module_exceeded__9eaex"};
|
|
34481
|
+
styleInject(css_248z$r);
|
|
34479
34482
|
|
|
34480
34483
|
var TextField = /*#__PURE__*/React.forwardRef(function TextField(props, inputRef) {
|
|
34481
34484
|
var _inputValue$length;
|
|
@@ -34528,26 +34531,26 @@ var TextField = /*#__PURE__*/React.forwardRef(function TextField(props, inputRef
|
|
|
34528
34531
|
ref: inputRef,
|
|
34529
34532
|
value: inputValue,
|
|
34530
34533
|
onChange: handleChange,
|
|
34531
|
-
className: classes(styles$
|
|
34534
|
+
className: classes(styles$q[size], styles$q.input)
|
|
34532
34535
|
}, inputProps));
|
|
34533
34536
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34534
|
-
className: classes(styles$
|
|
34537
|
+
className: classes(styles$q.root, className),
|
|
34535
34538
|
children: [/*#__PURE__*/jsxRuntime.jsxs("label", {
|
|
34536
34539
|
children: [label, /*#__PURE__*/jsxRuntime.jsx(BaseCell, {
|
|
34537
|
-
className: classes(styles$
|
|
34540
|
+
className: classes(styles$q['input-wrapper'], styles$q["border-".concat(border)], styles$q["type-".concat(type)], feedback != null ? styles$q["feedback-".concat(feedback === null || feedback === void 0 ? void 0 : feedback.type)] : ''),
|
|
34538
34541
|
component1: LeftComponent && /*#__PURE__*/jsxRuntime.jsx(LeftComponent, {}),
|
|
34539
34542
|
component2: Input,
|
|
34540
34543
|
component3: RightComponent && /*#__PURE__*/jsxRuntime.jsx(RightComponent, {})
|
|
34541
34544
|
})]
|
|
34542
34545
|
}), feedbackAndCount && /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34543
|
-
className: styles$
|
|
34546
|
+
className: styles$q.bottom,
|
|
34544
34547
|
children: [feedback != null && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34545
34548
|
"data-elem": "feedback",
|
|
34546
|
-
className: classes(styles$
|
|
34549
|
+
className: classes(styles$q.feedback, styles$q["feedback-".concat(feedback.type)]),
|
|
34547
34550
|
children: feedback.text
|
|
34548
34551
|
}), (count === null || count === void 0 ? void 0 : count.limit) != null && /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34549
34552
|
"data-elem": "count",
|
|
34550
|
-
className: classes(styles$
|
|
34553
|
+
className: classes(styles$q.count, (inputValue === null || inputValue === void 0 ? void 0 : inputValue.length) > count.limit ? styles$q.exceeded : ''),
|
|
34551
34554
|
children: [(_inputValue$length = inputValue.length) !== null && _inputValue$length !== void 0 ? _inputValue$length : 0, "/", count.limit]
|
|
34552
34555
|
})]
|
|
34553
34556
|
})]
|
|
@@ -34598,9 +34601,9 @@ TextField.defaultProps = {
|
|
|
34598
34601
|
feedbackAndCount: false
|
|
34599
34602
|
};
|
|
34600
34603
|
|
|
34601
|
-
var css_248z$
|
|
34602
|
-
var styles$
|
|
34603
|
-
styleInject(css_248z$
|
|
34604
|
+
var css_248z$q = ":root {\n --white: #ffffff;\n --black: #000000;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #da1e28;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n\n.CheckBox-module_root__Kl-MJ {\n cursor: pointer;\n gap: 10px;\n}\n.CheckBox-module_root__Kl-MJ.CheckBox-module_position-left__-J-Kn {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.CheckBox-module_root__Kl-MJ.CheckBox-module_position-right__E2z34 {\n display: flex;\n flex-direction: row-reverse;\n justify-content: flex-end;\n align-items: center;\n}\n.CheckBox-module_root__Kl-MJ input[type=checkbox] {\n opacity: 0;\n z-index: 1;\n position: absolute;\n width: 1px;\n height: 1px;\n}\n.CheckBox-module_root__Kl-MJ.CheckBox-module_disabled__GCLi9 {\n cursor: default;\n}\n.CheckBox-module_root__Kl-MJ .CheckBox-module_icon__-tYzW {\n display: inline-block;\n}\n.CheckBox-module_root__Kl-MJ .CheckBox-module_icon__-tYzW.CheckBox-module_icon-sm__uPZWz {\n width: 1rem;\n height: 1rem;\n}\n.CheckBox-module_root__Kl-MJ .CheckBox-module_icon__-tYzW.CheckBox-module_icon-md__vS4-L {\n width: 1.25rem;\n height: 1.25rem;\n}\n.CheckBox-module_root__Kl-MJ .CheckBox-module_icon__-tYzW.CheckBox-module_icon-lg__ABtTM {\n width: 1.5rem;\n height: 2rem;\n}\n.CheckBox-module_root__Kl-MJ [data-elem=label] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}";
|
|
34605
|
+
var styles$p = {"white":"var(--white)","black":"var(--black)","dark-grey":"var(--dark-grey)","dark-grey-o-85":"var(--dark-grey-o-85)","grey":"var(--grey)","grey1":"var(--grey1)","grey2":"var(--grey2)","grey3":"var(--grey3)","grey4":"var(--grey4)","grey5":"var(--grey5)","grey6":"var(--grey6)","grey7":"var(--grey7)","grey8":"var(--grey8)","grey9":"var(--grey9)","grey10":"var(--grey10)","highlight":"var(--highlight)","dark-blue":"var(--dark-blue)","background":"var(--background)","banyan-blue":"var(--banyan-blue)","banyan-orange":"var(--banyan-orange)","banyan-pink":"var(--banyan-pink)","banyan-gradient":"var(--banyan-gradient)","error":"var(--error)","error-bg":"var(--error-bg)","error-outline":"var(--error-outline)","success":"var(--success)","success-bg":"var(--success-bg)","success-outline":"var(--success-outline)","warning":"var(--warning)","warning-bg":"var(--warning-bg)","warning-outline":"var(--warning-outline)","info":"var(--info)","info-bg":"var(--info-bg)","info-outline":"var(--info-outline)","root":"CheckBox-module_root__Kl-MJ","position-left":"CheckBox-module_position-left__-J-Kn","position-right":"CheckBox-module_position-right__E2z34","disabled":"CheckBox-module_disabled__GCLi9","icon":"CheckBox-module_icon__-tYzW","icon-sm":"CheckBox-module_icon-sm__uPZWz","icon-md":"CheckBox-module_icon-md__vS4-L","icon-lg":"CheckBox-module_icon-lg__ABtTM"};
|
|
34606
|
+
styleInject(css_248z$q);
|
|
34604
34607
|
|
|
34605
34608
|
var Checkbox = function Checkbox(props) {
|
|
34606
34609
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -34631,7 +34634,7 @@ var Checkbox = function Checkbox(props) {
|
|
|
34631
34634
|
};
|
|
34632
34635
|
var isChecked = isControlled ? checked : uncontrolledChecked;
|
|
34633
34636
|
return /*#__PURE__*/jsxRuntime.jsxs("label", {
|
|
34634
|
-
className: classes(styles$
|
|
34637
|
+
className: classes(styles$p.root, styles$p["position-".concat(position)], className, disabled ? styles$p.disabled : ''),
|
|
34635
34638
|
children: [/*#__PURE__*/jsxRuntime.jsx("input", _objectSpread2(_objectSpread2({
|
|
34636
34639
|
disabled: disabled,
|
|
34637
34640
|
type: "checkbox",
|
|
@@ -34642,10 +34645,10 @@ var Checkbox = function Checkbox(props) {
|
|
|
34642
34645
|
onChange: handleChange
|
|
34643
34646
|
})), isChecked ? /*#__PURE__*/jsxRuntime.jsx(CheckboxIcon.Checked, {
|
|
34644
34647
|
"data-elem": "icon",
|
|
34645
|
-
className: classes(styles$
|
|
34648
|
+
className: classes(styles$p["icon-".concat(size)], styles$p.icon)
|
|
34646
34649
|
}) : /*#__PURE__*/jsxRuntime.jsx(CheckboxIcon.UnChecked, {
|
|
34647
34650
|
"data-elem": "icon",
|
|
34648
|
-
className: classes(styles$
|
|
34651
|
+
className: classes(styles$p["icon-".concat(size)], styles$p.icon)
|
|
34649
34652
|
}), label && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34650
34653
|
"data-elem": "label",
|
|
34651
34654
|
children: label
|
|
@@ -34671,9 +34674,9 @@ Checkbox.defaultProps = {
|
|
|
34671
34674
|
onChange: function onChange() {}
|
|
34672
34675
|
};
|
|
34673
34676
|
|
|
34674
|
-
var css_248z$
|
|
34675
|
-
var styles$
|
|
34676
|
-
styleInject(css_248z$
|
|
34677
|
+
var css_248z$p = ":root {\n --white: #ffffff;\n --black: #000000;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #da1e28;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n\n.Radio-module_root__kkJ8b {\n cursor: pointer;\n gap: 10px;\n}\n.Radio-module_root__kkJ8b.Radio-module_position-left__-1sCs {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.Radio-module_root__kkJ8b.Radio-module_position-right__J-HKs {\n display: flex;\n flex-direction: row-reverse;\n justify-content: flex-end;\n align-items: center;\n}\n.Radio-module_root__kkJ8b.Radio-module_disabled__324Eo {\n cursor: default;\n}\n.Radio-module_root__kkJ8b input[type=radio] {\n opacity: 0;\n z-index: 1;\n position: absolute;\n width: 1px;\n height: 1px;\n}\n.Radio-module_root__kkJ8b .Radio-module_icon__hNiVk {\n display: inline-block;\n}\n.Radio-module_root__kkJ8b .Radio-module_icon__hNiVk.Radio-module_icon-sm__ypLCQ {\n width: 1rem;\n height: 1rem;\n}\n.Radio-module_root__kkJ8b .Radio-module_icon__hNiVk.Radio-module_icon-md__Hxsom {\n width: 1.25rem;\n height: 1.25rem;\n}\n.Radio-module_root__kkJ8b .Radio-module_icon__hNiVk.Radio-module_icon-lg__JCq-7 {\n width: 1.5rem;\n height: 2rem;\n}\n.Radio-module_root__kkJ8b [data-elem=label] {\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}";
|
|
34678
|
+
var styles$o = {"white":"var(--white)","black":"var(--black)","dark-grey":"var(--dark-grey)","dark-grey-o-85":"var(--dark-grey-o-85)","grey":"var(--grey)","grey1":"var(--grey1)","grey2":"var(--grey2)","grey3":"var(--grey3)","grey4":"var(--grey4)","grey5":"var(--grey5)","grey6":"var(--grey6)","grey7":"var(--grey7)","grey8":"var(--grey8)","grey9":"var(--grey9)","grey10":"var(--grey10)","highlight":"var(--highlight)","dark-blue":"var(--dark-blue)","background":"var(--background)","banyan-blue":"var(--banyan-blue)","banyan-orange":"var(--banyan-orange)","banyan-pink":"var(--banyan-pink)","banyan-gradient":"var(--banyan-gradient)","error":"var(--error)","error-bg":"var(--error-bg)","error-outline":"var(--error-outline)","success":"var(--success)","success-bg":"var(--success-bg)","success-outline":"var(--success-outline)","warning":"var(--warning)","warning-bg":"var(--warning-bg)","warning-outline":"var(--warning-outline)","info":"var(--info)","info-bg":"var(--info-bg)","info-outline":"var(--info-outline)","root":"Radio-module_root__kkJ8b","position-left":"Radio-module_position-left__-1sCs","position-right":"Radio-module_position-right__J-HKs","disabled":"Radio-module_disabled__324Eo","icon":"Radio-module_icon__hNiVk","icon-sm":"Radio-module_icon-sm__ypLCQ","icon-md":"Radio-module_icon-md__Hxsom","icon-lg":"Radio-module_icon-lg__JCq-7"};
|
|
34679
|
+
styleInject(css_248z$p);
|
|
34677
34680
|
|
|
34678
34681
|
var Radio = function Radio(props) {
|
|
34679
34682
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -34704,7 +34707,7 @@ var Radio = function Radio(props) {
|
|
|
34704
34707
|
};
|
|
34705
34708
|
var isChecked = isControlled ? checked : uncontrolledChecked;
|
|
34706
34709
|
return /*#__PURE__*/jsxRuntime.jsxs("label", {
|
|
34707
|
-
className: classes(styles$
|
|
34710
|
+
className: classes(styles$o.root, styles$o["position-".concat(position)], className, disabled ? styles$o.disabled : ''),
|
|
34708
34711
|
children: [/*#__PURE__*/jsxRuntime.jsx("input", {
|
|
34709
34712
|
disabled: disabled,
|
|
34710
34713
|
type: "radio",
|
|
@@ -34712,10 +34715,10 @@ var Radio = function Radio(props) {
|
|
|
34712
34715
|
onChange: handleChange
|
|
34713
34716
|
}), isChecked ? /*#__PURE__*/jsxRuntime.jsx(RadioIcon.Checked, {
|
|
34714
34717
|
"data-elem": "icon",
|
|
34715
|
-
className: classes(styles$
|
|
34718
|
+
className: classes(styles$o["icon-".concat(size)], styles$o.icon)
|
|
34716
34719
|
}) : /*#__PURE__*/jsxRuntime.jsx(RadioIcon.UnChecked, {
|
|
34717
34720
|
"data-elem": "icon",
|
|
34718
|
-
className: classes(styles$
|
|
34721
|
+
className: classes(styles$o["icon-".concat(size)], styles$o.icon)
|
|
34719
34722
|
}), label && /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34720
34723
|
"data-elem": "label",
|
|
34721
34724
|
children: label
|
|
@@ -34741,9 +34744,9 @@ Radio.defaultProps = {
|
|
|
34741
34744
|
onChange: function onChange() {}
|
|
34742
34745
|
};
|
|
34743
34746
|
|
|
34744
|
-
var css_248z$
|
|
34745
|
-
var styles$
|
|
34746
|
-
styleInject(css_248z$
|
|
34747
|
+
var css_248z$o = ".Dropdown-module_root__mkOMI {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0.5rem;\n position: relative;\n width: -webkit-fit-content;\n width: -moz-fit-content;\n width: fit-content;\n max-width: 100%;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_label__YkFsR {\n font-size: 0.75rem;\n color: var(--grey);\n width: auto;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n max-width: 100%;\n position: relative;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_input__LYIeG {\n position: absolute;\n opacity: 0;\n width: 1px;\n height: 1px;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_input__LYIeG:focus + .Dropdown-module_select__Thb6Y {\n border-color: var(--highlight);\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_input__LYIeG:focus + .Dropdown-module_select__Thb6Y.Dropdown-module_feedback-error__FD-hZ {\n border-color: var(--error);\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_select__Thb6Y {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 25rem;\n max-width: 100%;\n gap: 0.5rem;\n background: var(--white);\n outline: none;\n border: 1px solid var(--grey5);\n border-radius: 0.25rem;\n padding: 0.75rem 0.75rem 0.75rem 1rem;\n cursor: pointer;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_select__Thb6Y .Dropdown-module_placeholder__B2kmJ {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n color: var(--black);\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_select__Thb6Y .Dropdown-module_icon__YsokN {\n width: 1.5rem;\n height: 1.5rem;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_header__EOpC- .Dropdown-module_select__Thb6Y.Dropdown-module_feedback-error__FD-hZ {\n border-color: var(--error);\n}\n.Dropdown-module_root__mkOMI.Dropdown-module_open__dEH0H .Dropdown-module_header__EOpC- {\n border-color: var(--highlight);\n}\n.Dropdown-module_root__mkOMI.Dropdown-module_disabled__eLZhs .Dropdown-module_select__Thb6Y {\n background: var(--grey10);\n cursor: not-allowed;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: flex-start;\n min-height: 2rem;\n width: 100%;\n gap: 1rem;\n color: var(--grey3);\n font-size: 0.75rem;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc .Dropdown-module_feedback__0VQS6 {\n flex: 1;\n margin-right: auto;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc .Dropdown-module_feedback__0VQS6.Dropdown-module_feedback-error__FD-hZ {\n color: var(--error);\n fill: var(--error);\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc .Dropdown-module_feedback__0VQS6.Dropdown-module_feedback-success__3QnZd {\n color: var(--success);\n fill: var(--success);\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc .Dropdown-module_count__tIbln {\n text-align: right;\n margin-left: auto;\n}\n.Dropdown-module_root__mkOMI .Dropdown-module_bottom__InVTc .Dropdown-module_count__tIbln.Dropdown-module_exceeded__n1R-W {\n color: var(--error);\n}\n\n.Dropdown-module_body__BDZmr {\n display: none;\n position: absolute;\n top: calc(100% + 0.5rem);\n z-index: 999;\n background: var(--white);\n width: auto;\n border: 0.063rem solid var(--grey5);\n box-shadow: 0rem 0.5rem 1.25rem rgba(24, 24, 24, 0.08);\n border-radius: 0.25rem;\n padding: 1rem;\n overflow-y: auto;\n min-height: 4rem;\n outline: none;\n}\n.Dropdown-module_body__BDZmr.Dropdown-module_open__dEH0H {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}";
|
|
34748
|
+
var styles$n = {"root":"Dropdown-module_root__mkOMI","label":"Dropdown-module_label__YkFsR","header":"Dropdown-module_header__EOpC-","input":"Dropdown-module_input__LYIeG","select":"Dropdown-module_select__Thb6Y","feedback-error":"Dropdown-module_feedback-error__FD-hZ","placeholder":"Dropdown-module_placeholder__B2kmJ","icon":"Dropdown-module_icon__YsokN","open":"Dropdown-module_open__dEH0H","disabled":"Dropdown-module_disabled__eLZhs","bottom":"Dropdown-module_bottom__InVTc","feedback":"Dropdown-module_feedback__0VQS6","feedback-success":"Dropdown-module_feedback-success__3QnZd","count":"Dropdown-module_count__tIbln","exceeded":"Dropdown-module_exceeded__n1R-W","body":"Dropdown-module_body__BDZmr"};
|
|
34749
|
+
styleInject(css_248z$o);
|
|
34747
34750
|
|
|
34748
34751
|
var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef) {
|
|
34749
34752
|
var _selectedOptions$map, _ref2, _selectedOptions$;
|
|
@@ -34949,16 +34952,16 @@ var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef)
|
|
|
34949
34952
|
})));
|
|
34950
34953
|
});
|
|
34951
34954
|
return /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34952
|
-
className: classes(className, styles$
|
|
34955
|
+
className: classes(className, styles$n.root, open ? styles$n.open : '', disabled ? styles$n.disabled : ''),
|
|
34953
34956
|
children: [label && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
34954
34957
|
"data-elem": "label",
|
|
34955
|
-
className: styles$
|
|
34958
|
+
className: styles$n.label,
|
|
34956
34959
|
children: /*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34957
34960
|
children: label
|
|
34958
34961
|
})
|
|
34959
34962
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", _objectSpread2(_objectSpread2({
|
|
34960
34963
|
"data-elem": "header",
|
|
34961
|
-
className: styles$
|
|
34964
|
+
className: styles$n.header,
|
|
34962
34965
|
ref: reference
|
|
34963
34966
|
}, getReferenceProps()), {}, {
|
|
34964
34967
|
children: [/*#__PURE__*/jsxRuntime.jsx("input", {
|
|
@@ -34967,7 +34970,7 @@ var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef)
|
|
|
34967
34970
|
ref: inputRef,
|
|
34968
34971
|
disabled: disabled,
|
|
34969
34972
|
tabIndex: 0,
|
|
34970
|
-
className: styles$
|
|
34973
|
+
className: styles$n.input,
|
|
34971
34974
|
onKeyDown: function onKeyDown(event) {
|
|
34972
34975
|
var validKey = [' ', 'Spacebar', 'Enter'].includes(event.key);
|
|
34973
34976
|
if (validKey) {
|
|
@@ -34981,14 +34984,14 @@ var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef)
|
|
|
34981
34984
|
}), /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
34982
34985
|
"data-elem": "select",
|
|
34983
34986
|
role: "button",
|
|
34984
|
-
className: classes(styles$
|
|
34987
|
+
className: classes(styles$n.select, feedback != null ? styles$n["feedback-".concat(feedback === null || feedback === void 0 ? void 0 : feedback.type)] : ''),
|
|
34985
34988
|
children: [/*#__PURE__*/jsxRuntime.jsx("span", {
|
|
34986
34989
|
"data-elem": "placeholder",
|
|
34987
|
-
className: styles$
|
|
34990
|
+
className: styles$n.placeholder,
|
|
34988
34991
|
children: (_ref2 = (selectedOptions === null || selectedOptions === void 0 ? void 0 : selectedOptions.length) > 1 ? "".concat(selectedOptions.length, " options selected") : selectedOptions === null || selectedOptions === void 0 ? void 0 : (_selectedOptions$ = selectedOptions[0]) === null || _selectedOptions$ === void 0 ? void 0 : _selectedOptions$.title) !== null && _ref2 !== void 0 ? _ref2 : placeholder
|
|
34989
34992
|
}), /*#__PURE__*/jsxRuntime.jsx(Caret, {
|
|
34990
34993
|
"data-elem": "icon",
|
|
34991
|
-
className: classes(styles$
|
|
34994
|
+
className: classes(styles$n.icon, styles$n['drop-icon'])
|
|
34992
34995
|
})]
|
|
34993
34996
|
})]
|
|
34994
34997
|
})), /*#__PURE__*/jsxRuntime.jsx(Popper, {
|
|
@@ -35012,16 +35015,16 @@ var Dropdown = /*#__PURE__*/React.forwardRef(function Dropdown(props, inputRef)
|
|
|
35012
35015
|
left: x !== null && x !== void 0 ? x : 0
|
|
35013
35016
|
},
|
|
35014
35017
|
onClick: onClick,
|
|
35015
|
-
className: classes(styles$
|
|
35018
|
+
className: classes(styles$n.body, popperClassName, open ? styles$n.open : '')
|
|
35016
35019
|
})), {}, {
|
|
35017
35020
|
children: items
|
|
35018
35021
|
}))
|
|
35019
35022
|
})
|
|
35020
35023
|
}), feedback != null && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35021
|
-
className: styles$
|
|
35024
|
+
className: styles$n.bottom,
|
|
35022
35025
|
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35023
35026
|
"data-elem": "feedback",
|
|
35024
|
-
className: classes(styles$
|
|
35027
|
+
className: classes(styles$n.feedback, styles$n["feedback-".concat(feedback.type)]),
|
|
35025
35028
|
children: feedback.text
|
|
35026
35029
|
})
|
|
35027
35030
|
})]
|
|
@@ -35059,9 +35062,9 @@ Dropdown.defaultProps = {
|
|
|
35059
35062
|
feedback: null
|
|
35060
35063
|
};
|
|
35061
35064
|
|
|
35062
|
-
var css_248z$
|
|
35063
|
-
var styles$
|
|
35064
|
-
styleInject(css_248z$
|
|
35065
|
+
var css_248z$n = ":root {\n --white: #ffffff;\n --black: #000000;\n --dark-grey: #333333;\n --dark-grey-o-85: rgba(51, 51, 51, 0.85);\n --grey: #737373;\n --grey1: #888888;\n --grey2: #a6a6a6;\n --grey3: #bbbbbb;\n --grey4: #c4c4c4;\n --grey5: #dddddd;\n --grey6: #e8e8e8;\n --grey7: #eeeeee;\n --grey8: #f2f2f2;\n --grey9: #eff0f0;\n --grey10: #f7f7f7;\n --highlight: #0f62fe;\n --dark-blue: #001833;\n --background: #d0e2ff;\n --banyan-blue: #00037c;\n --banyan-orange: #ff892a;\n --banyan-pink: #ff1597;\n --banyan-gradient: linear-gradient(\n \t84.71deg,\n \tvar(--banyan-pink) 0.48%,\n \tvar(--banyan-orange) 99.57%\n );\n --error: #da1e28;\n --error-bg: #fff1f1;\n --error-outline: rgba(218, 30, 40, 0.08);\n --success: #24a148;\n --success-bg: #defbe6;\n --success-outline: rgba(36, 161, 72, 0.08);\n --warning: #f1c21b;\n --warning-bg: #fff8e1;\n --warning-outline: rgba(203, 160, 6, 0.08);\n --info: #0043ce;\n --info-bg: #edf5ff;\n --info-outline: #2864db98;\n}\n\n.DropdownItem-module_root__su9HU {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.75rem;\n width: 100%;\n padding: 0.75rem 1rem;\n border-radius: 0.25rem;\n cursor: pointer;\n color: var(--grey);\n outline: none;\n}\n.DropdownItem-module_root__su9HU:hover, .DropdownItem-module_root__su9HU:focus {\n background: var(--grey6);\n}\n.DropdownItem-module_root__su9HU.DropdownItem-module_selected__Iwplc {\n background: var(--info-bg);\n}";
|
|
35066
|
+
var styles$m = {"white":"var(--white)","black":"var(--black)","dark-grey":"var(--dark-grey)","dark-grey-o-85":"var(--dark-grey-o-85)","grey":"var(--grey)","grey1":"var(--grey1)","grey2":"var(--grey2)","grey3":"var(--grey3)","grey4":"var(--grey4)","grey5":"var(--grey5)","grey6":"var(--grey6)","grey7":"var(--grey7)","grey8":"var(--grey8)","grey9":"var(--grey9)","grey10":"var(--grey10)","highlight":"var(--highlight)","dark-blue":"var(--dark-blue)","background":"var(--background)","banyan-blue":"var(--banyan-blue)","banyan-orange":"var(--banyan-orange)","banyan-pink":"var(--banyan-pink)","banyan-gradient":"var(--banyan-gradient)","error":"var(--error)","error-bg":"var(--error-bg)","error-outline":"var(--error-outline)","success":"var(--success)","success-bg":"var(--success-bg)","success-outline":"var(--success-outline)","warning":"var(--warning)","warning-bg":"var(--warning-bg)","warning-outline":"var(--warning-outline)","info":"var(--info)","info-bg":"var(--info-bg)","info-outline":"var(--info-outline)","root":"DropdownItem-module_root__su9HU","selected":"DropdownItem-module_selected__Iwplc"};
|
|
35067
|
+
styleInject(css_248z$n);
|
|
35065
35068
|
|
|
35066
35069
|
var DropdownItem = /*#__PURE__*/React.forwardRef(function DropdownItem(props, ref) {
|
|
35067
35070
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -35088,7 +35091,7 @@ var DropdownItem = /*#__PURE__*/React.forwardRef(function DropdownItem(props, re
|
|
|
35088
35091
|
}
|
|
35089
35092
|
return /*#__PURE__*/jsxRuntime.jsxs("div", _objectSpread2(_objectSpread2({
|
|
35090
35093
|
ref: ref,
|
|
35091
|
-
className: classes(className, styles$
|
|
35094
|
+
className: classes(className, styles$m.root, selected ? styles$m.selected : ''),
|
|
35092
35095
|
"data-elem": "dropdown-item",
|
|
35093
35096
|
"data-variant": variant,
|
|
35094
35097
|
"data-value": value,
|
|
@@ -35121,9 +35124,9 @@ DropdownItem.defaultProps = {
|
|
|
35121
35124
|
selected: false
|
|
35122
35125
|
};
|
|
35123
35126
|
|
|
35124
|
-
var css_248z$
|
|
35125
|
-
var styles$
|
|
35126
|
-
styleInject(css_248z$
|
|
35127
|
+
var css_248z$m = ".BaseModal-module_root__LxSI- {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n top: 50%;\n left: 50%;\n right: auto;\n bottom: auto;\n transform: translate(-50%, -50%);\n max-height: 100%;\n width: 50%;\n position: fixed;\n background: #ffffff;\n box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.13);\n border-radius: 5px;\n outline: none;\n}\n.BaseModal-module_root__LxSI- .BaseModal-module_body__lpl93 {\n overflow-y: scroll;\n padding: 0 15px;\n}\n.BaseModal-module_root__LxSI- .BaseModal-module_header__NnvhY,\n.BaseModal-module_root__LxSI- .BaseModal-module_footer__y6uXQ {\n padding: 15px;\n}\n.BaseModal-module_root__LxSI- .BaseModal-module_footer__y6uXQ {\n margin-top: auto;\n}\n.BaseModal-module_root__LxSI- .BaseModal-module_closeModal__93jQs {\n position: absolute;\n right: 20px;\n top: 20px;\n}\n.BaseModal-module_root__LxSI- .BaseModal-module_closeModal__93jQs .BaseModal-module_closeIcon__-Q4wM {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--black);\n}";
|
|
35128
|
+
var styles$l = {"root":"BaseModal-module_root__LxSI-","body":"BaseModal-module_body__lpl93","header":"BaseModal-module_header__NnvhY","footer":"BaseModal-module_footer__y6uXQ","closeModal":"BaseModal-module_closeModal__93jQs","closeIcon":"BaseModal-module_closeIcon__-Q4wM"};
|
|
35129
|
+
styleInject(css_248z$m);
|
|
35127
35130
|
|
|
35128
35131
|
var BaseModal = function BaseModal(props) {
|
|
35129
35132
|
var className = props.className,
|
|
@@ -35142,28 +35145,28 @@ var BaseModal = function BaseModal(props) {
|
|
|
35142
35145
|
transparent: false,
|
|
35143
35146
|
id: "base-modal-popper",
|
|
35144
35147
|
children: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
35145
|
-
className: classes(styles$
|
|
35148
|
+
className: classes(styles$l.root, className),
|
|
35146
35149
|
ref: ref,
|
|
35147
35150
|
children: [renderHeader && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35148
35151
|
"data-elem": "header",
|
|
35149
|
-
className: styles$
|
|
35152
|
+
className: styles$l.header,
|
|
35150
35153
|
children: renderHeader
|
|
35151
35154
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35152
35155
|
"data-elem": "body",
|
|
35153
|
-
className: styles$
|
|
35156
|
+
className: styles$l.body,
|
|
35154
35157
|
children: children
|
|
35155
35158
|
}), renderFooter && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35156
35159
|
"data-elem": "footer",
|
|
35157
|
-
className: styles$
|
|
35160
|
+
className: styles$l.footer,
|
|
35158
35161
|
children: renderFooter
|
|
35159
35162
|
}), /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35160
35163
|
"data-elem": "close",
|
|
35161
|
-
className: styles$
|
|
35164
|
+
className: styles$l.closeModal,
|
|
35162
35165
|
onClick: function onClick() {
|
|
35163
35166
|
toggle(false);
|
|
35164
35167
|
},
|
|
35165
35168
|
children: /*#__PURE__*/jsxRuntime.jsx(Cross$1, {
|
|
35166
|
-
className: styles$
|
|
35169
|
+
className: styles$l.closeIcon
|
|
35167
35170
|
})
|
|
35168
35171
|
})]
|
|
35169
35172
|
})
|
|
@@ -35184,8 +35187,74 @@ BaseModal.defaultProps = {
|
|
|
35184
35187
|
toggle: function toggle() {}
|
|
35185
35188
|
};
|
|
35186
35189
|
|
|
35187
|
-
var css_248z$
|
|
35188
|
-
var styles$
|
|
35190
|
+
var css_248z$l = ".Dialog-module_root__XL0EB {\n padding: 0.25rem 0px;\n max-height: 14rem;\n background: #ffffff;\n border-radius: 0.25rem;\n}\n.Dialog-module_root__XL0EB.Dialog-module_sm__iuBli {\n width: 21.25rem;\n}\n.Dialog-module_root__XL0EB.Dialog-module_md__9ewo4 {\n width: 35rem;\n}\n.Dialog-module_root__XL0EB .Dialog-module_header__xktXB {\n font-weight: 600;\n font-size: 0.875rem;\n color: var(--black);\n}\n.Dialog-module_root__XL0EB .Dialog-module_footer__fUVH4 {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 1rem;\n}\n.Dialog-module_root__XL0EB .Dialog-module_footer__fUVH4 .Dialog-module_cancel__Ri-39[data-elem=base-cell] {\n display: flex;\n color: var(--grey1);\n border-radius: 0.25rem;\n border: 1px solid var(--grey4);\n}\n.Dialog-module_root__XL0EB .Dialog-module_description__T4OU5 {\n padding: 0.5rem 0px;\n font-size: 0.75rem;\n}";
|
|
35191
|
+
var styles$k = {"root":"Dialog-module_root__XL0EB","sm":"Dialog-module_sm__iuBli","md":"Dialog-module_md__9ewo4","header":"Dialog-module_header__xktXB","footer":"Dialog-module_footer__fUVH4","cancel":"Dialog-module_cancel__Ri-39","description":"Dialog-module_description__T4OU5"};
|
|
35192
|
+
styleInject(css_248z$l);
|
|
35193
|
+
|
|
35194
|
+
/* eslint-disable object-curly-newline */
|
|
35195
|
+
var DialogBox = function DialogBox(props) {
|
|
35196
|
+
var open = props.open,
|
|
35197
|
+
heading = props.heading,
|
|
35198
|
+
description = props.description,
|
|
35199
|
+
action = props.action,
|
|
35200
|
+
variant = props.variant,
|
|
35201
|
+
onCancel = props.onCancel,
|
|
35202
|
+
onAction = props.onAction,
|
|
35203
|
+
size = props.size,
|
|
35204
|
+
className = props.className;
|
|
35205
|
+
return /*#__PURE__*/jsxRuntime.jsx(BaseModal, {
|
|
35206
|
+
open: open,
|
|
35207
|
+
toggle: onCancel,
|
|
35208
|
+
className: classes(className, styles$k.root, styles$k[size]),
|
|
35209
|
+
renderHeader: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35210
|
+
className: styles$k.header,
|
|
35211
|
+
children: /*#__PURE__*/jsxRuntime.jsx("p", {
|
|
35212
|
+
children: heading
|
|
35213
|
+
})
|
|
35214
|
+
}),
|
|
35215
|
+
renderFooter: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
35216
|
+
className: styles$k.footer,
|
|
35217
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
35218
|
+
color: "default",
|
|
35219
|
+
variant: "outlined",
|
|
35220
|
+
className: styles$k.cancel,
|
|
35221
|
+
onClick: onCancel,
|
|
35222
|
+
title: "Cancel"
|
|
35223
|
+
}), /*#__PURE__*/jsxRuntime.jsx(Button, {
|
|
35224
|
+
onClick: onAction,
|
|
35225
|
+
title: action,
|
|
35226
|
+
color: variant
|
|
35227
|
+
})]
|
|
35228
|
+
}),
|
|
35229
|
+
children: /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
35230
|
+
className: styles$k.description,
|
|
35231
|
+
children: description
|
|
35232
|
+
})
|
|
35233
|
+
});
|
|
35234
|
+
};
|
|
35235
|
+
DialogBox.propTypes = {
|
|
35236
|
+
className: propTypes$1.exports.string,
|
|
35237
|
+
heading: propTypes$1.exports.string,
|
|
35238
|
+
action: propTypes$1.exports.string,
|
|
35239
|
+
description: propTypes$1.exports.string,
|
|
35240
|
+
onCancel: propTypes$1.exports.func,
|
|
35241
|
+
onAction: propTypes$1.exports.func,
|
|
35242
|
+
variant: propTypes$1.exports.oneOf(['primary', 'success', 'danger', 'warning']),
|
|
35243
|
+
size: propTypes$1.exports.oneOf(['sm', 'md'])
|
|
35244
|
+
};
|
|
35245
|
+
DialogBox.defaultProps = {
|
|
35246
|
+
className: '',
|
|
35247
|
+
heading: 'selected row',
|
|
35248
|
+
action: '',
|
|
35249
|
+
description: 'description selected page',
|
|
35250
|
+
variant: 'danger',
|
|
35251
|
+
onCancel: function onCancel() {},
|
|
35252
|
+
onAction: function onAction() {},
|
|
35253
|
+
size: 'sm'
|
|
35254
|
+
};
|
|
35255
|
+
|
|
35256
|
+
var css_248z$k = ".PageHeader-module_root__RW2kD {\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: flex-start;\n width: 100%;\n background-color: transparent;\n gap: 4px;\n}\n.PageHeader-module_root__RW2kD.PageHeader-module_theme-dark__X5zgh {\n color: var(--white);\n}\n.PageHeader-module_root__RW2kD.PageHeader-module_theme-dark__X5zgh .PageHeader-module_breadcrumb__v0tnM [data-elem=breadcrumb-item-active] {\n color: var(--white);\n}\n.PageHeader-module_root__RW2kD.PageHeader-module_theme-light__Tercn {\n color: var(--dark-grey);\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_description__G3-qZ {\n color: var(--grey);\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_contents__w0Y7e {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n width: 100%;\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_contents__w0Y7e .PageHeader-module_left__fqL7M,\n.PageHeader-module_root__RW2kD .PageHeader-module_contents__w0Y7e .PageHeader-module_right__KgzBp {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 10px;\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_contents__w0Y7e .PageHeader-module_left__fqL7M .PageHeader-module_title__sDcrr {\n font-size: 2.25rem;\n font-weight: 600;\n line-height: 3.375rem;\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_contents__w0Y7e .PageHeader-module_left__fqL7M .PageHeader-module_chip__pr-6S {\n font-weight: 500;\n background: var(--highlight);\n color: var(--white);\n}\n.PageHeader-module_root__RW2kD .PageHeader-module_description__G3-qZ {\n font-size: 1rem;\n font-weight: 400;\n line-height: 1.5rem;\n}\n\n.PageHeader-module_download__RCFoC,\n.PageHeader-module_calender__ecLCu {\n width: 1.5rem;\n height: 1.5rem;\n}";
|
|
35257
|
+
var styles$j = {"root":"PageHeader-module_root__RW2kD","theme-dark":"PageHeader-module_theme-dark__X5zgh","breadcrumb":"PageHeader-module_breadcrumb__v0tnM","theme-light":"PageHeader-module_theme-light__Tercn","description":"PageHeader-module_description__G3-qZ","contents":"PageHeader-module_contents__w0Y7e","left":"PageHeader-module_left__fqL7M","right":"PageHeader-module_right__KgzBp","title":"PageHeader-module_title__sDcrr","chip":"PageHeader-module_chip__pr-6S","download":"PageHeader-module_download__RCFoC","calender":"PageHeader-module_calender__ecLCu"};
|
|
35189
35258
|
styleInject(css_248z$k);
|
|
35190
35259
|
|
|
35191
35260
|
var PageHeader = function PageHeader(props) {
|
|
@@ -35328,8 +35397,8 @@ function getPagination(curr, total, limit) {
|
|
|
35328
35397
|
return pages;
|
|
35329
35398
|
}
|
|
35330
35399
|
|
|
35331
|
-
var css_248z$j = "
|
|
35332
|
-
var styles$i = {"
|
|
35400
|
+
var css_248z$j = ".Pagination-module_root__ieicG {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: stretch;\n -ms-overflow-style: none;\n scrollbar-width: none;\n padding: 0.625rem 2.125rem;\n background: var(--dark-grey);\n margin-top: auto;\n width: 100%;\n height: 3.5rem;\n overflow: auto;\n transition-property: background-color, color, bottom, width;\n transition-duration: 0.33s;\n transition-timing-function: ease-out;\n}\n.Pagination-module_root__ieicG::-webkit-scrollbar {\n display: none;\n}\n.Pagination-module_root__ieicG.Pagination-module_floating__gP2b8 {\n background: var(--dark-grey-o-85);\n position: absolute;\n border-radius: 6.25rem;\n width: 82%;\n bottom: 3rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv,\n.Pagination-module_root__ieicG .Pagination-module_pagination__aQxKw,\n.Pagination-module_root__ieicG .Pagination-module_jump-to-page__-6AxX,\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv {\n display: none;\n gap: 0.75rem;\n background-color: var(--grey);\n padding: 0;\n border-radius: 0.3125rem;\n}\n@media (min-width: 992px) {\n .Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n }\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv > [data-elem*=component] {\n overflow: hidden;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv > [data-elem=component2] {\n display: flex;\n flex: 1 0 auto;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv .Pagination-module_text__ND-Go {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n height: 100%;\n display: block;\n padding: 0.5rem;\n font-size: 0.875rem;\n font-weight: 500;\n color: var(--white);\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv .Pagination-module_dropdown__607D- > [data-elem=header] > [data-elem=select] {\n height: 2.375rem;\n width: auto;\n min-width: -webkit-fit-content;\n min-width: -moz-fit-content;\n min-width: fit-content;\n padding: 0.625rem;\n background-color: var(--grey);\n border: none;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv .Pagination-module_dropdown__607D- > [data-elem=header] > [data-elem=select] > [data-elem=placeholder] {\n color: var(--white);\n font-size: 0.875rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_row-switcher__nZkYv .Pagination-module_dropdown__607D- > [data-elem=header] > [data-elem=select] > svg {\n fill: var(--white);\n width: 0.813rem;\n height: 0.813rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 1.25rem;\n flex: 1 1 100%;\n}\n@media (min-width: 992px) {\n .Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c {\n flex: 1 1 60%;\n }\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_button__Rzuor.Pagination-module_disable__hNaU1 {\n pointer-events: none;\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_button__Rzuor [data-elem=title] {\n color: var(--white);\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_button__Rzuor .Pagination-module_icon__PBYkw {\n width: 1.5rem;\n height: 1.5rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n gap: 0.625rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx .Pagination-module_number__-5138 {\n cursor: pointer;\n border-radius: 50%;\n background-color: #e0e0e0;\n color: var(--black);\n width: 2.313rem;\n line-height: 2.313rem;\n text-align: center;\n font-size: 1rem;\n border: 1px solid transparent;\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx .Pagination-module_number__-5138:not([data-active=true]) {\n display: none;\n}\n@media (min-width: 768px) {\n .Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx .Pagination-module_number__-5138:not([data-active=true]) {\n display: block;\n }\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx .Pagination-module_number__-5138:hover {\n border: 1px solid var(--highlight);\n color: var(--highlight);\n background: var(--background);\n}\n.Pagination-module_root__ieicG .Pagination-module_page-numbers__2Ms7c > .Pagination-module_pageSelect__O-ABx .Pagination-module_number__-5138.Pagination-module_active__dNUtF {\n background-color: var(--highlight);\n color: var(--white);\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT {\n display: none;\n padding: 0;\n flex: 0 1 20%;\n background: transparent;\n}\n@media (min-width: 992px) {\n .Pagination-module_root__ieicG .Pagination-module_form__zFQlT {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n }\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT > [data-elem*=component] {\n width: 100%;\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT > [data-elem*=component] > * {\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX {\n width: 100%;\n background: transparent;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: stretch;\n gap: 0.75rem;\n padding: 0;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX > [data-elem*=component] {\n overflow: hidden;\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_button__Rzuor {\n background-color: var(--grey);\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_button__Rzuor [data-elem=left] {\n overflow: hidden;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_button__Rzuor [data-elem=left] [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_button__Rzuor .Pagination-module_icon__PBYkw {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n flex-shrink: 0;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_inputbox__lr2C- {\n width: 5rem;\n max-width: 100%;\n height: 100%;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_inputbox__lr2C- [data-elem=base-cell] {\n border-radius: 0.313rem;\n background-color: var(--grey);\n color: var(--white);\n border-color: var(--grey);\n width: 4.875rem;\n}\n.Pagination-module_root__ieicG .Pagination-module_form__zFQlT .Pagination-module_jump-to-page__-6AxX .Pagination-module_inputbox__lr2C- [data-elem=base-cell] [data-elem=input] {\n text-align: center;\n color: var(--white);\n background-color: var(--grey);\n border: none;\n width: 100%;\n}\n\n.Pagination-module_pagination-test__-HOe8 {\n height: 80%;\n width: 100%;\n overflow: scroll;\n background-color: powderblue;\n display: flex;\n flex-direction: column;\n}\n\n.Pagination-module_dropdown-popper__-6mRt {\n -ms-overflow-style: none;\n scrollbar-width: none;\n padding: 0.25rem;\n}\n.Pagination-module_dropdown-popper__-6mRt::-webkit-scrollbar {\n display: none;\n}";
|
|
35401
|
+
var styles$i = {"root":"Pagination-module_root__ieicG","floating":"Pagination-module_floating__gP2b8","row-switcher":"Pagination-module_row-switcher__nZkYv","pagination":"Pagination-module_pagination__aQxKw","jump-to-page":"Pagination-module_jump-to-page__-6AxX","form":"Pagination-module_form__zFQlT","text":"Pagination-module_text__ND-Go","dropdown":"Pagination-module_dropdown__607D-","page-numbers":"Pagination-module_page-numbers__2Ms7c","button":"Pagination-module_button__Rzuor","disable":"Pagination-module_disable__hNaU1","icon":"Pagination-module_icon__PBYkw","pageSelect":"Pagination-module_pageSelect__O-ABx","number":"Pagination-module_number__-5138","active":"Pagination-module_active__dNUtF","inputbox":"Pagination-module_inputbox__lr2C-","pagination-test":"Pagination-module_pagination-test__-HOe8","dropdown-popper":"Pagination-module_dropdown-popper__-6mRt"};
|
|
35333
35402
|
styleInject(css_248z$j);
|
|
35334
35403
|
|
|
35335
35404
|
var dropdownOptions = ['10', '25', '50', '100', '200', '250'];
|
|
@@ -35562,11 +35631,11 @@ Pagination.defaultProps = {
|
|
|
35562
35631
|
onChange: function onChange() {}
|
|
35563
35632
|
};
|
|
35564
35633
|
|
|
35565
|
-
var css_248z$i = "
|
|
35566
|
-
var styles$h = {"
|
|
35634
|
+
var css_248z$i = ".Stepper-module_root__cvNJm {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 1rem;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n position: relative;\n z-index: 1;\n gap: 0.5rem;\n flex: 1;\n cursor: default;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s:last-child {\n flex: 0 1 auto;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s:last-child .Stepper-module_title__V9fw3::after {\n display: none;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n position: relative;\n width: 1.5rem;\n height: 1.5rem;\n background: var(--white);\n border: 0.063rem solid var(--grey2);\n border-radius: 2rem;\n font-size: 1rem;\n color: var(--grey2);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz .Stepper-module_icon__HwVpw {\n width: 0.75rem;\n height: 0.75rem;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz .Stepper-module_icon__HwVpw.Stepper-module_error-icon__TnLh- {\n fill: var(--error);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz .Stepper-module_icon__HwVpw.Stepper-module_completion-icon__Ahge- {\n fill: var(--highlight);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz .Stepper-module_progress__hBk0m {\n position: absolute;\n z-index: -1;\n inset: -0.3rem;\n border-radius: 2rem;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_left__BSaSz .Stepper-module_progress__hBk0m::after {\n position: absolute;\n content: \"\";\n inset: 0.15rem;\n background: white;\n border-radius: 2rem;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_right__eFhp- {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: flex-start;\n flex: 1;\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3 {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: flex-start;\n gap: 0.75rem;\n width: 100%;\n font-size: 1rem;\n color: var(--grey2);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3::after {\n content: \"\";\n flex: 1;\n min-width: 1.5rem;\n border-bottom: 0.063rem solid;\n margin-top: 0.75rem;\n border-bottom-color: var(--grey2);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s .Stepper-module_right__eFhp- .Stepper-module_description__DOJeD {\n font-size: 0.75rem;\n color: var(--grey2);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_active__38cZS .Stepper-module_left__BSaSz {\n background: var(--highlight);\n color: var(--white);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_active__38cZS .Stepper-module_left__BSaSz, .Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_completed__2KWB- .Stepper-module_left__BSaSz {\n border-color: var(--highlight);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_active__38cZS .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3, .Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_completed__2KWB- .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3 {\n color: var(--black);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_active__38cZS .Stepper-module_right__eFhp- .Stepper-module_description__DOJeD, .Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_completed__2KWB- .Stepper-module_right__eFhp- .Stepper-module_description__DOJeD {\n color: var(--grey);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_completed__2KWB- .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3::after {\n border-bottom-color: var(--highlight);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_error__-Ti-0 .Stepper-module_left__BSaSz {\n background: var(--white);\n border-color: var(--error);\n color: var(--error);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_error__-Ti-0 .Stepper-module_right__eFhp- .Stepper-module_title__V9fw3 {\n color: var(--error);\n}\n.Stepper-module_root__cvNJm .Stepper-module_step__M5Y-s.Stepper-module_error__-Ti-0 .Stepper-module_right__eFhp- .Stepper-module_description__DOJeD {\n color: rgba(var(--error), 0.6);\n}";
|
|
35635
|
+
var styles$h = {"root":"Stepper-module_root__cvNJm","step":"Stepper-module_step__M5Y-s","title":"Stepper-module_title__V9fw3","left":"Stepper-module_left__BSaSz","icon":"Stepper-module_icon__HwVpw","error-icon":"Stepper-module_error-icon__TnLh-","completion-icon":"Stepper-module_completion-icon__Ahge-","progress":"Stepper-module_progress__hBk0m","right":"Stepper-module_right__eFhp-","description":"Stepper-module_description__DOJeD","active":"Stepper-module_active__38cZS","completed":"Stepper-module_completed__2KWB-","error":"Stepper-module_error__-Ti-0"};
|
|
35567
35636
|
styleInject(css_248z$i);
|
|
35568
35637
|
|
|
35569
|
-
var css_248z$h = "
|
|
35638
|
+
var css_248z$h = "";
|
|
35570
35639
|
styleInject(css_248z$h);
|
|
35571
35640
|
|
|
35572
35641
|
var Step = function Step(props) {
|
|
@@ -35674,8 +35743,8 @@ var TableColumn = /*#__PURE__*/_createClass$1(function TableColumn(_ref) {
|
|
|
35674
35743
|
this.sticky = sticky;
|
|
35675
35744
|
});
|
|
35676
35745
|
|
|
35677
|
-
var css_248z$g = "
|
|
35678
|
-
var styles$g = {"
|
|
35746
|
+
var css_248z$g = ".TableCell-module_root__0-5fC[data-elem=base-cell] {\n background: var(--white);\n border-bottom: 1px solid var(--grey4);\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell] > [data-elem*=component] {\n overflow: hidden;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell] > [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n flex: 1;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell] > [data-elem*=component] .TableCell-module_cell-text__MqZRq {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n display: inline-block;\n width: 100%;\n font-size: 0.875rem;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell].TableCell-module_header-cell__cDXlM {\n background: var(--grey7);\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell].TableCell-module_header-cell__cDXlM .TableCell-module_cell-text__MqZRq {\n font-weight: 600;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell].TableCell-module_body-cell__Z2M7H .TableCell-module_cell-text__MqZRq.TableCell-module_multi-line__8cWJW {\n white-space: normal;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: 2;\n font-size: 0.75rem;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell].TableCell-module_sticky-left__clzyD {\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n position: -webkit-sticky;\n position: sticky;\n left: 0;\n}\n.TableCell-module_root__0-5fC[data-elem=base-cell].TableCell-module_sticky-right__U9Kgq {\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n position: -webkit-sticky;\n position: sticky;\n right: 0;\n}";
|
|
35747
|
+
var styles$g = {"root":"TableCell-module_root__0-5fC","cell-text":"TableCell-module_cell-text__MqZRq","header-cell":"TableCell-module_header-cell__cDXlM","body-cell":"TableCell-module_body-cell__Z2M7H","multi-line":"TableCell-module_multi-line__8cWJW","sticky-left":"TableCell-module_sticky-left__clzyD","sticky-right":"TableCell-module_sticky-right__U9Kgq"};
|
|
35679
35748
|
styleInject(css_248z$g);
|
|
35680
35749
|
|
|
35681
35750
|
var TableCell = /*#__PURE__*/React.forwardRef(function TableCell(props, ref) {
|
|
@@ -35736,8 +35805,8 @@ TableCell.defaultProps = _objectSpread2(_objectSpread2({}, BaseCell.defaultProps
|
|
|
35736
35805
|
cellTitle: null
|
|
35737
35806
|
});
|
|
35738
35807
|
|
|
35739
|
-
var css_248z$f = "
|
|
35740
|
-
var styles$f = {"
|
|
35808
|
+
var css_248z$f = ".TableRow-module_root__tyJjH {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.TableRow-module_root__tyJjH.TableRow-module_header-row__p3gQZ {\n background: var(--grey6);\n}\n.TableRow-module_root__tyJjH.TableRow-module_body-row__BzIwB {\n background: var(--white);\n}\n.TableRow-module_root__tyJjH.TableRow-module_body-row__BzIwB:hover > [data-elem=base-cell] {\n background: var(--info-bg);\n}\n.TableRow-module_root__tyJjH.TableRow-module_body-row__BzIwB.TableRow-module_selected__GJlEC > [data-elem=base-cell] {\n background: var(--background);\n}\n.TableRow-module_root__tyJjH > [data-elem=base-cell]:first-child {\n padding-left: 1rem;\n}\n.TableRow-module_root__tyJjH > [data-elem=base-cell]:last-child {\n padding-right: 1rem;\n}";
|
|
35809
|
+
var styles$f = {"root":"TableRow-module_root__tyJjH","header-row":"TableRow-module_header-row__p3gQZ","body-row":"TableRow-module_body-row__BzIwB","selected":"TableRow-module_selected__GJlEC"};
|
|
35741
35810
|
styleInject(css_248z$f);
|
|
35742
35811
|
|
|
35743
35812
|
var TableRow = function TableRow(props) {
|
|
@@ -35818,8 +35887,8 @@ TableRow.defaultProps = {
|
|
|
35818
35887
|
selected: false
|
|
35819
35888
|
};
|
|
35820
35889
|
|
|
35821
|
-
var css_248z$e = "
|
|
35822
|
-
var styles$e = {"
|
|
35890
|
+
var css_248z$e = ".TableBody-module_root__uXmOm {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}";
|
|
35891
|
+
var styles$e = {"root":"TableBody-module_root__uXmOm"};
|
|
35823
35892
|
styleInject(css_248z$e);
|
|
35824
35893
|
|
|
35825
35894
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35884,8 +35953,8 @@ TableBody.defaultProps = {
|
|
|
35884
35953
|
}
|
|
35885
35954
|
};
|
|
35886
35955
|
|
|
35887
|
-
var css_248z$d = "
|
|
35888
|
-
var styles$d = {"
|
|
35956
|
+
var css_248z$d = ".TableHeader-module_root__tJ-19 {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n}";
|
|
35957
|
+
var styles$d = {"root":"TableHeader-module_root__tJ-19"};
|
|
35889
35958
|
styleInject(css_248z$d);
|
|
35890
35959
|
|
|
35891
35960
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35925,8 +35994,8 @@ TableHeader.defaultProps = {
|
|
|
35925
35994
|
}
|
|
35926
35995
|
};
|
|
35927
35996
|
|
|
35928
|
-
var css_248z$c = "
|
|
35929
|
-
var styles$c = {"
|
|
35997
|
+
var css_248z$c = ".BaseTable-module_root__buLTn {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n background: var(--white);\n overflow: auto;\n}";
|
|
35998
|
+
var styles$c = {"root":"BaseTable-module_root__buLTn"};
|
|
35930
35999
|
styleInject(css_248z$c);
|
|
35931
36000
|
|
|
35932
36001
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35992,8 +36061,8 @@ BaseTable.defaultProps = {
|
|
|
35992
36061
|
}
|
|
35993
36062
|
};
|
|
35994
36063
|
|
|
35995
|
-
var css_248z$b = "
|
|
35996
|
-
var styles$b = {"
|
|
36064
|
+
var css_248z$b = ".TableChips-module_root__bKfBs[data-elem=base-cell] {\n padding: 0.5rem 1.5rem;\n width: 100%;\n background: var(--grey8);\n border-radius: 0.25rem 0.25rem 0 0;\n}\n.TableChips-module_root__bKfBs[data-elem=base-cell] > [data-elem=component1] .TableChips-module_back__aapO6 {\n height: 2rem;\n width: 2rem;\n}\n.TableChips-module_root__bKfBs[data-elem=base-cell] > [data-elem=component1] .TableChips-module_back__aapO6 [data-elem=component1] .TableChips-module_icon__wAaBh {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--white);\n}\n.TableChips-module_root__bKfBs[data-elem=base-cell] > [data-elem=component2] {\n -ms-overflow-style: none;\n scrollbar-width: none;\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n gap: 0.5rem;\n overflow-x: auto;\n flex: 1;\n}\n.TableChips-module_root__bKfBs[data-elem=base-cell] > [data-elem=component2]::-webkit-scrollbar {\n display: none;\n}\n.TableChips-module_root__bKfBs[data-elem=base-cell] > [data-elem=component2] .TableChips-module_chip__8v81L .TableChips-module_chip-icon__5CxH8 {\n width: 1rem;\n height: 1rem;\n}";
|
|
36065
|
+
var styles$b = {"root":"TableChips-module_root__bKfBs","back":"TableChips-module_back__aapO6","icon":"TableChips-module_icon__wAaBh","chip":"TableChips-module_chip__8v81L","chip-icon":"TableChips-module_chip-icon__5CxH8"};
|
|
35997
36066
|
styleInject(css_248z$b);
|
|
35998
36067
|
|
|
35999
36068
|
var TableChips = function TableChips(props) {
|
|
@@ -36083,8 +36152,8 @@ var TableChip = /*#__PURE__*/_createClass$1(function TableChip(_ref) {
|
|
|
36083
36152
|
this.disabled = disabled;
|
|
36084
36153
|
});
|
|
36085
36154
|
|
|
36086
|
-
var css_248z$a = "
|
|
36087
|
-
var styles$a = {"
|
|
36155
|
+
var css_248z$a = ".Popover-module_root__F8vwF {\n box-shadow: -2px -2px 4px rgba(166, 166, 166, 0.25), 2px 2px 4px rgba(166, 166, 166, 0.24);\n background-color: var(--white);\n padding: 1rem;\n border-radius: 0.25rem;\n}";
|
|
36156
|
+
var styles$a = {"root":"Popover-module_root__F8vwF"};
|
|
36088
36157
|
styleInject(css_248z$a);
|
|
36089
36158
|
|
|
36090
36159
|
var Popover = function Popover(props) {
|
|
@@ -36161,8 +36230,8 @@ Popover.defaultProps = {
|
|
|
36161
36230
|
onClose: function onClose() {}
|
|
36162
36231
|
};
|
|
36163
36232
|
|
|
36164
|
-
var css_248z$9 = "
|
|
36165
|
-
var styles$9 = {"
|
|
36233
|
+
var css_248z$9 = ".Columns-module_popover__mIzP7 {\n height: 100%;\n}\n\n.Columns-module_root__h8zNT {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n gap: 1rem;\n position: relative;\n height: 100%;\n max-width: 100%;\n}\n.Columns-module_root__h8zNT .Columns-module_header__o6vXc {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n gap: 1.5rem;\n width: 100%;\n padding: 0;\n height: auto;\n}\n.Columns-module_root__h8zNT .Columns-module_header__o6vXc > [data-elem=component1] {\n font-weight: 500;\n}\n.Columns-module_root__h8zNT .Columns-module_header__o6vXc > [data-elem=component2] .Columns-module_search__ReBBj {\n width: 100%;\n}\n.Columns-module_root__h8zNT .Columns-module_close__1QpLP {\n position: absolute;\n top: -1rem;\n right: -1rem;\n}\n.Columns-module_root__h8zNT .Columns-module_close__1QpLP .Columns-module_icon__X2w-M {\n width: 1rem;\n height: 1rem;\n}\n.Columns-module_root__h8zNT .Columns-module_body__SN45m {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n gap: 0.5rem;\n overflow-y: auto;\n flex: 1 1 auto;\n}\n.Columns-module_root__h8zNT .Columns-module_body__SN45m .Columns-module_item__tklQj {\n height: 3rem;\n}\n.Columns-module_root__h8zNT .Columns-module_body__SN45m .Columns-module_item__tklQj > [data-elem=title] {\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n.Columns-module_root__h8zNT .Columns-module_footer__i21sD .Columns-module_expand__InU6q .Columns-module_icon__X2w-M {\n width: 1.5rem;\n height: 1.5rem;\n transform: rotate(180deg);\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_header__o6vXc {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n padding-right: 2rem;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_header__o6vXc > [data-elem=component2] {\n flex: 1;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_close__1QpLP {\n top: -0.25rem;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_body__SN45m {\n display: grid;\n grid-template-columns: 1fr 1fr;\n flex: 0 1 auto;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_body__SN45m .Columns-module_item__tklQj {\n overflow: hidden;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_footer__i21sD {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n margin-top: auto;\n}\n.Columns-module_root__h8zNT.Columns-module_expanded__tky-i .Columns-module_footer__i21sD .Columns-module_expand__InU6q .Columns-module_icon__X2w-M {\n transform: rotate(0deg);\n}";
|
|
36234
|
+
var styles$9 = {"popover":"Columns-module_popover__mIzP7","root":"Columns-module_root__h8zNT","header":"Columns-module_header__o6vXc","search":"Columns-module_search__ReBBj","close":"Columns-module_close__1QpLP","icon":"Columns-module_icon__X2w-M","body":"Columns-module_body__SN45m","item":"Columns-module_item__tklQj","footer":"Columns-module_footer__i21sD","expand":"Columns-module_expand__InU6q","expanded":"Columns-module_expanded__tky-i"};
|
|
36166
36235
|
styleInject(css_248z$9);
|
|
36167
36236
|
|
|
36168
36237
|
var Columns = function Columns(props) {
|
|
@@ -36261,8 +36330,8 @@ var Columns = function Columns(props) {
|
|
|
36261
36330
|
});
|
|
36262
36331
|
};
|
|
36263
36332
|
|
|
36264
|
-
var css_248z$8 = "
|
|
36265
|
-
var styles$8 = {"
|
|
36333
|
+
var css_248z$8 = ".TableFilters-module_root__MLaDb[data-elem=base-cell] {\n -ms-overflow-style: none;\n scrollbar-width: none;\n overflow-x: auto;\n padding: 0.5rem;\n gap: 1.25rem;\n width: 100%;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell]::-webkit-scrollbar {\n display: none;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_icon__-IqJX {\n width: 1.5rem;\n height: 1.5rem;\n flex-shrink: 0;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_icon-button__UkfXm {\n padding: 0rem;\n height: 100%;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem*=component] {\n height: 100%;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_left__DwOSZ,\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_center__eQVxw,\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_right__sRGhc {\n height: 100%;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component1] .TableFilters-module_left__DwOSZ {\n gap: 1rem;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component1] .TableFilters-module_left__DwOSZ [data-elem=left] {\n gap: 1rem;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component1] .TableFilters-module_left__DwOSZ .TableFilters-module_filter-value__TbEOe {\n color: var(--white);\n background: var(--highlight);\n padding: 0.125rem 0.5rem;\n border-radius: 50%;\n font-size: 0.813rem;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component2] {\n flex: 1;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component2] .TableFilters-module_center__eQVxw {\n width: 100%;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component2] .TableFilters-module_center__eQVxw [data-elem=base-cell] {\n background: var(--grey7);\n border-color: var(--grey3);\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] > [data-elem=component2] .TableFilters-module_center__eQVxw .TableFilters-module_icon__-IqJX {\n width: 1.25rem;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_right__sRGhc {\n width: auto;\n padding: 0;\n gap: 2.5rem;\n}\n.TableFilters-module_root__MLaDb[data-elem=base-cell] .TableFilters-module_right__sRGhc > [data-elem*=component] {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}";
|
|
36334
|
+
var styles$8 = {"root":"TableFilters-module_root__MLaDb","icon":"TableFilters-module_icon__-IqJX","icon-button":"TableFilters-module_icon-button__UkfXm","left":"TableFilters-module_left__DwOSZ","center":"TableFilters-module_center__eQVxw","right":"TableFilters-module_right__sRGhc","filter-value":"TableFilters-module_filter-value__TbEOe"};
|
|
36266
36335
|
styleInject(css_248z$8);
|
|
36267
36336
|
|
|
36268
36337
|
var TableFilters = function TableFilters(props) {
|
|
@@ -36395,8 +36464,8 @@ TableFilters.defaultProps = {
|
|
|
36395
36464
|
}
|
|
36396
36465
|
};
|
|
36397
36466
|
|
|
36398
|
-
var css_248z$7 = "
|
|
36399
|
-
var styles$7 = {"
|
|
36467
|
+
var css_248z$7 = ".Table-module_root__dLWEm {\n position: relative;\n border-style: solid;\n border-color: var(--grey4);\n border-width: 1px 1px 0px 1px;\n border-radius: 0.25rem;\n width: 100%;\n max-width: 100%;\n height: 100%;\n overflow: hidden;\n}\n.Table-module_root__dLWEm .Table-module_table__Oh-P6 {\n height: calc(100% - 6rem);\n padding-bottom: 3.5rem;\n}\n.Table-module_root__dLWEm .Table-module_pagination__DBIS0 {\n position: absolute;\n bottom: 0;\n left: 50%;\n transform: translateX(-50%);\n}\n.Table-module_root__dLWEm .Table-module_pagination__DBIS0.Table-module_floating__x8-m7 {\n bottom: 1rem;\n}\n.Table-module_root__dLWEm .Table-module_chips__BY-oI,\n.Table-module_root__dLWEm .Table-module_filters__RUDdW,\n.Table-module_root__dLWEm .Table-module_table__Oh-P6 > [data-elem=table-header] {\n position: -webkit-sticky;\n position: sticky;\n z-index: 1;\n top: 0;\n}";
|
|
36468
|
+
var styles$7 = {"root":"Table-module_root__dLWEm","table":"Table-module_table__Oh-P6","pagination":"Table-module_pagination__DBIS0","floating":"Table-module_floating__x8-m7","chips":"Table-module_chips__BY-oI","filters":"Table-module_filters__RUDdW"};
|
|
36400
36469
|
styleInject(css_248z$7);
|
|
36401
36470
|
|
|
36402
36471
|
var INTERSECTION = 1;
|
|
@@ -36554,8 +36623,8 @@ Table.defaultProps = {
|
|
|
36554
36623
|
paginationData: null
|
|
36555
36624
|
};
|
|
36556
36625
|
|
|
36557
|
-
var css_248z$6 = "
|
|
36558
|
-
var styles$6 = {"
|
|
36626
|
+
var css_248z$6 = ".Tabs-module_root__nulvq {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n\n.Tabs-module_tab-view__rxH8t, .Tabs-module_tab-view-selected__zs7od {\n cursor: pointer;\n margin-right: 0.25rem;\n padding: 0.5rem 0rem 0.5rem 0.5rem;\n text-align: left;\n font-size: 1rem;\n font-weight: 500;\n color: var(--dark-grey);\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M-, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_left__K9fac, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_left__K9fac {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--dark-grey);\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE {\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_saperator__tHmCM, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_saperator__tHmCM {\n border-right: 0.031rem solid var(--grey3);\n border-radius: 0.625rem;\n height: 1.438rem;\n margin: 0rem 0rem 0rem 1rem;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb {\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.Tabs-module_tab-view__rxH8t .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv, .Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--dark-grey);\n}\n.Tabs-module_tab-view__rxH8t:hover, .Tabs-module_tab-view-selected__zs7od:hover {\n background-color: var(--background);\n border-radius: 0.25rem;\n color: var(--highlight);\n}\n.Tabs-module_tab-view__rxH8t:hover .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv, .Tabs-module_tab-view-selected__zs7od:hover .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--highlight);\n}\n.Tabs-module_tab-view__rxH8t:hover .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_saperator__tHmCM, .Tabs-module_tab-view-selected__zs7od:hover .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_saperator__tHmCM {\n border-right: 0.031rem solid var(--highlight);\n border-radius: 0.625rem;\n height: 1.438rem;\n margin: 0rem 0rem 0rem 1rem;\n}\n.Tabs-module_tab-view__rxH8t:hover .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv, .Tabs-module_tab-view-selected__zs7od:hover .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--highlight);\n}\n\n.Tabs-module_tab-view-selected__zs7od {\n color: var(--highlight);\n border-bottom: 0.125rem solid var(--highlight);\n}\n.Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_left__K9fac .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--highlight);\n}\n.Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_saperator__tHmCM {\n border-right: 0.031rem solid var(--highlight);\n border-radius: 0.625rem;\n height: 1.438rem;\n margin: 0rem 0rem 0rem 1rem;\n}\n.Tabs-module_tab-view-selected__zs7od .Tabs-module_content__2C7M- .Tabs-module_right__BSiOE .Tabs-module_icon-container__ux2qb .Tabs-module_icon__lqSvv {\n width: 1.5rem;\n height: 1.5rem;\n fill: var(--highlight);\n}";
|
|
36627
|
+
var styles$6 = {"root":"Tabs-module_root__nulvq","tab-view":"Tabs-module_tab-view__rxH8t","tab-view-selected":"Tabs-module_tab-view-selected__zs7od","content":"Tabs-module_content__2C7M-","left":"Tabs-module_left__K9fac","icon-container":"Tabs-module_icon-container__ux2qb","icon":"Tabs-module_icon__lqSvv","right":"Tabs-module_right__BSiOE","saperator":"Tabs-module_saperator__tHmCM"};
|
|
36559
36628
|
styleInject(css_248z$6);
|
|
36560
36629
|
|
|
36561
36630
|
var Tabs = function Tabs(props) {
|
|
@@ -36647,8 +36716,8 @@ Tabs.defaultProps = {
|
|
|
36647
36716
|
setSelectedTab: 'None'
|
|
36648
36717
|
};
|
|
36649
36718
|
|
|
36650
|
-
var css_248z$5 = "
|
|
36651
|
-
var styles$5 = {"
|
|
36719
|
+
var css_248z$5 = ".Tooltip-module_root__9-btv {\n display: inline-block;\n position: relative;\n}\n.Tooltip-module_tooltip__va-Bl {\n text-align: center;\n position: fixed;\n border-radius: 0.25rem;\n min-width: auto;\n max-width: 12rem;\n padding: 0.375rem;\n font-size: 0.875rem;\n font-family: sans-serif;\n line-height: 1;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_light__SGd28 {\n color: var(--black);\n background: var(--grey7);\n border-color: var(--black);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_dark__mj1PC {\n color: var(--white);\n background: var(--black);\n border-color: var(--white);\n}\n.Tooltip-module_tooltip__va-Bl::before {\n content: \"\";\n border: solid transparent;\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n border-width: 0.375rem;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_top__mqs5K::before {\n top: 100%;\n left: 50%;\n transform: translate(-50%, 0%);\n border-top-style: solid;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_top__mqs5K.Tooltip-module_light__SGd28::before {\n border-top-color: var(--grey7);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_top__mqs5K.Tooltip-module_dark__mj1PC::before {\n border-top-color: var(--black);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_bottom__8Ne5W::before {\n top: 0%;\n left: 50%;\n transform: translate(-50%, -100%);\n border-bottom-style: solid;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_bottom__8Ne5W.Tooltip-module_light__SGd28::before {\n border-bottom-color: var(--grey7);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_bottom__8Ne5W.Tooltip-module_dark__mj1PC::before {\n border-bottom-color: var(--black);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_left__hT5y-::before {\n top: 50%;\n left: 100%;\n transform: translate(0%, -50%);\n border-left-style: solid;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_left__hT5y-.Tooltip-module_light__SGd28::before {\n border-left-color: var(--grey7);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_left__hT5y-.Tooltip-module_dark__mj1PC::before {\n border-left-color: var(--black);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_right__Glh2U::before {\n top: 50%;\n left: 0%;\n transform: translate(-100%, -50%);\n border-right-style: solid;\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_right__Glh2U.Tooltip-module_light__SGd28::before {\n border-right-color: var(--grey7);\n}\n.Tooltip-module_tooltip__va-Bl.Tooltip-module_right__Glh2U.Tooltip-module_dark__mj1PC::before {\n border-right-color: var(--black);\n}";
|
|
36720
|
+
var styles$5 = {"root":"Tooltip-module_root__9-btv","tooltip":"Tooltip-module_tooltip__va-Bl","light":"Tooltip-module_light__SGd28","dark":"Tooltip-module_dark__mj1PC","top":"Tooltip-module_top__mqs5K","bottom":"Tooltip-module_bottom__8Ne5W","left":"Tooltip-module_left__hT5y-","right":"Tooltip-module_right__Glh2U"};
|
|
36652
36721
|
styleInject(css_248z$5);
|
|
36653
36722
|
|
|
36654
36723
|
var getPositionStyles = function getPositionStyles(_ref) {
|
|
@@ -36743,8 +36812,8 @@ Tooltip.defaultProps = {
|
|
|
36743
36812
|
position: 'top'
|
|
36744
36813
|
};
|
|
36745
36814
|
|
|
36746
|
-
var css_248z$4 = "
|
|
36747
|
-
var styles$4 = {"
|
|
36815
|
+
var css_248z$4 = ".BaseSidePanel-module_root__4rB6U {\n max-height: 100%;\n height: 100%;\n display: flex;\n width: 30%;\n flex-direction: column;\n top: 0;\n background: #ffffff;\n box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);\n overflow-x: hidden;\n transition: 0.5s;\n}\n.BaseSidePanel-module_root__4rB6U.BaseSidePanel-module_close__jxONj {\n width: 0rem;\n}\n.BaseSidePanel-module_root__4rB6U .BaseSidePanel-module_body__saAQq {\n flex: 1;\n overflow-y: auto;\n}";
|
|
36816
|
+
var styles$4 = {"root":"BaseSidePanel-module_root__4rB6U","close":"BaseSidePanel-module_close__jxONj","body":"BaseSidePanel-module_body__saAQq"};
|
|
36748
36817
|
styleInject(css_248z$4);
|
|
36749
36818
|
|
|
36750
36819
|
var BaseSidePanel = function BaseSidePanel(props) {
|
|
@@ -82773,8 +82842,8 @@ function install(registers) {
|
|
|
82773
82842
|
registers.registerPainter('canvas', CanvasPainter$1);
|
|
82774
82843
|
}
|
|
82775
82844
|
|
|
82776
|
-
var css_248z$3 = "
|
|
82777
|
-
var styles$3 = {"
|
|
82845
|
+
var css_248z$3 = ".BaseVerticalBarChart-module_root__9vU7p {\n width: \"100%\";\n}";
|
|
82846
|
+
var styles$3 = {"root":"BaseVerticalBarChart-module_root__9vU7p"};
|
|
82778
82847
|
styleInject(css_248z$3);
|
|
82779
82848
|
|
|
82780
82849
|
use([install$2, install$3, install$4, install$1, install$7, install]);
|
|
@@ -82939,8 +83008,8 @@ BaseVerticalBarChart.defaultProps = {
|
|
|
82939
83008
|
className: ''
|
|
82940
83009
|
};
|
|
82941
83010
|
|
|
82942
|
-
var css_248z$2 = "
|
|
82943
|
-
var styles$2 = {"
|
|
83011
|
+
var css_248z$2 = ".BaseHorizontalBarChart-module_root__02nf- {\n width: \"100%\";\n}";
|
|
83012
|
+
var styles$2 = {"root":"BaseHorizontalBarChart-module_root__02nf-"};
|
|
82944
83013
|
styleInject(css_248z$2);
|
|
82945
83014
|
|
|
82946
83015
|
use([install$2, install$3, install$4, install$1, install$7, install]);
|
|
@@ -83089,8 +83158,8 @@ BaseHorizontalBarChart.defaultProps = {
|
|
|
83089
83158
|
className: ''
|
|
83090
83159
|
};
|
|
83091
83160
|
|
|
83092
|
-
var css_248z$1 = "
|
|
83093
|
-
var styles$1 = {"
|
|
83161
|
+
var css_248z$1 = ".BaseWidget-module_root__xM7eQ {\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: stretch;\n height: 100%;\n width: 100%;\n padding: 0.25rem;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n padding: 0.25rem;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-title__Gkxg2 {\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: center;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-title__Gkxg2.BaseWidget-module_no-options__dmj00 {\n flex: 1;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-title__Gkxg2 .BaseWidget-module_title__fNHzs {\n white-space: nowrap;\n color: var(--white);\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-title__Gkxg2 .BaseWidget-module_value__Zrdy2 {\n white-space: nowrap;\n color: var(--white);\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli {\n display: flex;\n flex-direction: row;\n justify-content: flex-end;\n align-items: center;\n gap: 0.5rem;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli .BaseWidget-module_dropdown-header__O2dIS [data-elem=select] {\n background-color: transparent;\n width: 100%;\n color: var(--white);\n padding: 0.07rem 0.5rem;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli .BaseWidget-module_dropdown-header__O2dIS [data-elem=select] [data-elem=placeholder] {\n font-size: 0.875rem;\n color: var(--white);\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli .BaseWidget-module_dropdown-header__O2dIS [data-elem=select] > svg {\n fill: var(--white);\n width: 0.875rem;\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli .BaseWidget-module_expand-button__-Xnmk {\n height: 1.75rem;\n color: var(--white);\n border-color: var(--white);\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_header__7iGXa .BaseWidget-module_header-options__FNRli .BaseWidget-module_expand-button__-Xnmk .BaseWidget-module_expand-icon__8tquP {\n height: 1.25rem;\n width: 1.25rem;\n fill: var(--white);\n}\n.BaseWidget-module_root__xM7eQ .BaseWidget-module_children__SFpV2 {\n flex: 1 1;\n}\n\n.BaseWidget-module_dropdown-popper__aIjOF {\n padding: 0rem;\n background: var(--grey1);\n}\n.BaseWidget-module_dropdown-popper__aIjOF .BaseWidget-module_dropdown-item__jp1Zy {\n height: 2.25rem;\n color: var(--white);\n background: var(--grey);\n}\n.BaseWidget-module_dropdown-popper__aIjOF .BaseWidget-module_dropdown-item__jp1Zy:hover, .BaseWidget-module_dropdown-popper__aIjOF .BaseWidget-module_dropdown-item__jp1Zy:focus {\n color: var(--dark-grey);\n background: var(--grey2);\n}\n.BaseWidget-module_dropdown-popper__aIjOF .BaseWidget-module_dropdown-item__jp1Zy:hover label > svg, .BaseWidget-module_dropdown-popper__aIjOF .BaseWidget-module_dropdown-item__jp1Zy:focus label > svg {\n border: 1px solid var(--dark-grey);\n border-radius: 0.25rem;\n}";
|
|
83162
|
+
var styles$1 = {"root":"BaseWidget-module_root__xM7eQ","header":"BaseWidget-module_header__7iGXa","header-title":"BaseWidget-module_header-title__Gkxg2","no-options":"BaseWidget-module_no-options__dmj00","title":"BaseWidget-module_title__fNHzs","value":"BaseWidget-module_value__Zrdy2","header-options":"BaseWidget-module_header-options__FNRli","dropdown-header":"BaseWidget-module_dropdown-header__O2dIS","expand-button":"BaseWidget-module_expand-button__-Xnmk","expand-icon":"BaseWidget-module_expand-icon__8tquP","children":"BaseWidget-module_children__SFpV2","dropdown-popper":"BaseWidget-module_dropdown-popper__aIjOF","dropdown-item":"BaseWidget-module_dropdown-item__jp1Zy"};
|
|
83094
83163
|
styleInject(css_248z$1);
|
|
83095
83164
|
|
|
83096
83165
|
var generateOptions = function generateOptions(optionData) {
|
|
@@ -83187,8 +83256,8 @@ BaseWidget.defaultProps = {
|
|
|
83187
83256
|
className: ''
|
|
83188
83257
|
};
|
|
83189
83258
|
|
|
83190
|
-
var css_248z = "
|
|
83191
|
-
var styles = {"
|
|
83259
|
+
var css_248z = ".DisplayPicture-module_root__-OCp7.DisplayPicture-module_sm__WgrGZ img {\n height: 1.5rem;\n width: 1.5rem;\n border-radius: 100%;\n}\n.DisplayPicture-module_root__-OCp7.DisplayPicture-module_sm__WgrGZ div {\n height: 1.5rem;\n width: 1.5rem;\n border-radius: 100%;\n background-color: var(--highlight);\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.DisplayPicture-module_root__-OCp7.DisplayPicture-module_sm__WgrGZ div span {\n font-size: 1rem;\n font-weight: 600;\n color: var(--white);\n}\n.DisplayPicture-module_root__-OCp7.DisplayPicture-module_md__uE0B2 img {\n height: 5.3125rem;\n width: 5.3125rem;\n border-radius: 100%;\n}\n.DisplayPicture-module_root__-OCp7.DisplayPicture-module_md__uE0B2 div {\n height: 5.3125rem;\n width: 5.3125rem;\n border-radius: 100%;\n background-color: var(--highlight);\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n}\n.DisplayPicture-module_root__-OCp7.DisplayPicture-module_md__uE0B2 div span {\n font-size: 2rem;\n font-weight: 600;\n color: var(--white);\n}";
|
|
83260
|
+
var styles = {"root":"DisplayPicture-module_root__-OCp7","sm":"DisplayPicture-module_sm__WgrGZ","md":"DisplayPicture-module_md__uE0B2"};
|
|
83192
83261
|
styleInject(css_248z);
|
|
83193
83262
|
|
|
83194
83263
|
var DisplayPicture = function DisplayPicture(props) {
|
|
@@ -84282,6 +84351,7 @@ exports.CrossIcon = Cross$1;
|
|
|
84282
84351
|
exports.DAYS = DAYS;
|
|
84283
84352
|
exports.DatePicker = DatePicker;
|
|
84284
84353
|
exports.DeleteIcon = Delete;
|
|
84354
|
+
exports.DialogBox = DialogBox;
|
|
84285
84355
|
exports.DisplayPicture = DisplayPicture;
|
|
84286
84356
|
exports.DownloadIcon = Download;
|
|
84287
84357
|
exports.Dropdown = Dropdown;
|
|
@@ -84324,6 +84394,7 @@ exports.cloneDeep = cloneDeep;
|
|
|
84324
84394
|
exports.defaultProps = defaultProps$1;
|
|
84325
84395
|
exports.doubleDigitted = doubleDigitted;
|
|
84326
84396
|
exports.get = get$1;
|
|
84397
|
+
exports.getCSSVariableValue = getCSSVariableValue;
|
|
84327
84398
|
exports.getCurrentSearchParams = getCurrentSearchParams;
|
|
84328
84399
|
exports.getDateFromEpoch = getDateFromEpoch;
|
|
84329
84400
|
exports.getDatesInAMonth = getDatesInAMonth;
|