@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/esm/index.js
CHANGED
|
@@ -1554,6 +1554,9 @@ var getDatesInAMonth = function getDatesInAMonth(_ref) {
|
|
|
1554
1554
|
days: days
|
|
1555
1555
|
};
|
|
1556
1556
|
};
|
|
1557
|
+
var getCSSVariableValue = function getCSSVariableValue(variable) {
|
|
1558
|
+
return getComputedStyle(document.documentElement).getPropertyValue(variable);
|
|
1559
|
+
};
|
|
1557
1560
|
|
|
1558
1561
|
function styleInject(css, ref) {
|
|
1559
1562
|
if ( ref === void 0 ) ref = {};
|
|
@@ -1582,9 +1585,9 @@ function styleInject(css, ref) {
|
|
|
1582
1585
|
}
|
|
1583
1586
|
}
|
|
1584
1587
|
|
|
1585
|
-
var css_248z$
|
|
1586
|
-
var styles$
|
|
1587
|
-
styleInject(css_248z$
|
|
1588
|
+
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}";
|
|
1589
|
+
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"};
|
|
1590
|
+
styleInject(css_248z$L);
|
|
1588
1591
|
|
|
1589
1592
|
var BaseCell = /*#__PURE__*/forwardRef(function BaseCell(props, ref) {
|
|
1590
1593
|
var className = props.className,
|
|
@@ -1600,7 +1603,7 @@ var BaseCell = /*#__PURE__*/forwardRef(function BaseCell(props, ref) {
|
|
|
1600
1603
|
var Component = /*#__PURE__*/createElement$1(RootDOM, _objectSpread2({
|
|
1601
1604
|
'data-elem': 'base-cell',
|
|
1602
1605
|
ref: ref,
|
|
1603
|
-
className: classes(className, styles$
|
|
1606
|
+
className: classes(className, styles$K.root, styles$K[size], styles$K["border-radius-".concat(radius)], flexible ? styles$K.flexible : '', rounded ? styles$K.rounded : '')
|
|
1604
1607
|
}, attrs), /*#__PURE__*/jsxs(Fragment, {
|
|
1605
1608
|
children: [component1 && /*#__PURE__*/jsx$1("span", {
|
|
1606
1609
|
"data-elem": "component1",
|
|
@@ -1990,15 +1993,15 @@ Server.defaultProps = {
|
|
|
1990
1993
|
className: ''
|
|
1991
1994
|
};
|
|
1992
1995
|
|
|
1993
|
-
var css_248z$
|
|
1994
|
-
var styles$
|
|
1995
|
-
styleInject(css_248z$
|
|
1996
|
+
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}";
|
|
1997
|
+
var styles$J = {"right":"Arrow-module_right__OPm55","left":"Arrow-module_left__mbW5H","bottom":"Arrow-module_bottom__TNVV9","top":"Arrow-module_top__1YFaI"};
|
|
1998
|
+
styleInject(css_248z$K);
|
|
1996
1999
|
|
|
1997
2000
|
var Arrow$1 = function Arrow(props) {
|
|
1998
2001
|
var className = props.className,
|
|
1999
2002
|
position = props.position;
|
|
2000
2003
|
return /*#__PURE__*/jsx$1("svg", {
|
|
2001
|
-
className: classes(className, styles$
|
|
2004
|
+
className: classes(className, styles$J[position]),
|
|
2002
2005
|
viewBox: "0 0 25 24",
|
|
2003
2006
|
fill: "#333333",
|
|
2004
2007
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -2012,15 +2015,15 @@ Arrow$1.defaultProps = {
|
|
|
2012
2015
|
position: 'right'
|
|
2013
2016
|
};
|
|
2014
2017
|
|
|
2015
|
-
var css_248z$
|
|
2016
|
-
var styles$
|
|
2017
|
-
styleInject(css_248z$
|
|
2018
|
+
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}";
|
|
2019
|
+
var styles$I = {"left":"Chevron-module_left__qo9Uh","bottom":"Chevron-module_bottom__xHi8D","right":"Chevron-module_right__nQXUr","top":"Chevron-module_top__gWkFh"};
|
|
2020
|
+
styleInject(css_248z$J);
|
|
2018
2021
|
|
|
2019
2022
|
var Chevron = function Chevron(props) {
|
|
2020
2023
|
var className = props.className,
|
|
2021
2024
|
position = props.position;
|
|
2022
2025
|
return /*#__PURE__*/jsx$1("svg", {
|
|
2023
|
-
className: classes(className, styles$
|
|
2026
|
+
className: classes(className, styles$I[position]),
|
|
2024
2027
|
viewBox: "0 0 22 22",
|
|
2025
2028
|
fill: "none",
|
|
2026
2029
|
stroke: "white",
|
|
@@ -2309,9 +2312,9 @@ Reset.defaultProps = {
|
|
|
2309
2312
|
className: ''
|
|
2310
2313
|
};
|
|
2311
2314
|
|
|
2312
|
-
var css_248z$
|
|
2313
|
-
var styles$
|
|
2314
|
-
styleInject(css_248z$
|
|
2315
|
+
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}";
|
|
2316
|
+
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"};
|
|
2317
|
+
styleInject(css_248z$I);
|
|
2315
2318
|
|
|
2316
2319
|
var Accordion = function Accordion(props) {
|
|
2317
2320
|
var defaultOpen = props.defaultOpen,
|
|
@@ -2326,13 +2329,13 @@ var Accordion = function Accordion(props) {
|
|
|
2326
2329
|
open = _useState2[0],
|
|
2327
2330
|
setOpen = _useState2[1];
|
|
2328
2331
|
return /*#__PURE__*/jsxs("div", {
|
|
2329
|
-
className: classes(className, styles$
|
|
2332
|
+
className: classes(className, styles$H.root, open ? styles$H.open : ''),
|
|
2330
2333
|
"data-state-open": open,
|
|
2331
2334
|
children: [/*#__PURE__*/jsx$1(BaseCell, {
|
|
2332
2335
|
flexible: true,
|
|
2333
2336
|
size: "auto",
|
|
2334
2337
|
rootDOM: "button",
|
|
2335
|
-
className: styles$
|
|
2338
|
+
className: styles$H.header,
|
|
2336
2339
|
attrs: {
|
|
2337
2340
|
onClick: function onClick() {
|
|
2338
2341
|
setOpen(function (prevState) {
|
|
@@ -2343,18 +2346,18 @@ var Accordion = function Accordion(props) {
|
|
|
2343
2346
|
}
|
|
2344
2347
|
},
|
|
2345
2348
|
component1: iconPlacement === 'left' && /*#__PURE__*/jsx$1(Caret, {
|
|
2346
|
-
className: styles$
|
|
2349
|
+
className: styles$H.icon
|
|
2347
2350
|
}),
|
|
2348
2351
|
component2: /*#__PURE__*/jsx$1("span", {
|
|
2349
|
-
className: styles$
|
|
2352
|
+
className: styles$H.title,
|
|
2350
2353
|
children: title
|
|
2351
2354
|
}),
|
|
2352
2355
|
component3: iconPlacement === 'right' && /*#__PURE__*/jsx$1(Caret, {
|
|
2353
|
-
className: styles$
|
|
2356
|
+
className: styles$H.icon
|
|
2354
2357
|
})
|
|
2355
2358
|
}), /*#__PURE__*/jsxs("div", {
|
|
2356
2359
|
"data-elem": "body",
|
|
2357
|
-
className: styles$
|
|
2360
|
+
className: styles$H.body,
|
|
2358
2361
|
children: [description && /*#__PURE__*/jsx$1("p", {
|
|
2359
2362
|
children: description
|
|
2360
2363
|
}), children]
|
|
@@ -2378,13 +2381,13 @@ Accordion.defaultProps = {
|
|
|
2378
2381
|
className: ''
|
|
2379
2382
|
};
|
|
2380
2383
|
|
|
2381
|
-
var css_248z$
|
|
2382
|
-
var styles$
|
|
2383
|
-
styleInject(css_248z$
|
|
2384
|
+
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}";
|
|
2385
|
+
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"};
|
|
2386
|
+
styleInject(css_248z$H);
|
|
2384
2387
|
|
|
2385
|
-
var css_248z$
|
|
2386
|
-
var styles$
|
|
2387
|
-
styleInject(css_248z$
|
|
2388
|
+
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}";
|
|
2389
|
+
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"};
|
|
2390
|
+
styleInject(css_248z$G);
|
|
2388
2391
|
|
|
2389
2392
|
var BaseButton = /*#__PURE__*/forwardRef(function BaseButton(props, ref) {
|
|
2390
2393
|
var className = props.className,
|
|
@@ -2403,7 +2406,7 @@ var BaseButton = /*#__PURE__*/forwardRef(function BaseButton(props, ref) {
|
|
|
2403
2406
|
children: title
|
|
2404
2407
|
});
|
|
2405
2408
|
return /*#__PURE__*/jsx$1(BaseCell, {
|
|
2406
|
-
className: classes(className, styles$
|
|
2409
|
+
className: classes(className, styles$F.root, styles$F[variant]),
|
|
2407
2410
|
ref: ref,
|
|
2408
2411
|
component1: component1,
|
|
2409
2412
|
component2: Title,
|
|
@@ -2434,9 +2437,9 @@ BaseButton.defaultProps = _objectSpread2(_objectSpread2({}, BaseCell.defaultProp
|
|
|
2434
2437
|
variant: 'contained'
|
|
2435
2438
|
});
|
|
2436
2439
|
|
|
2437
|
-
var css_248z$
|
|
2438
|
-
var styles$
|
|
2439
|
-
styleInject(css_248z$
|
|
2440
|
+
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}";
|
|
2441
|
+
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"};
|
|
2442
|
+
styleInject(css_248z$F);
|
|
2440
2443
|
|
|
2441
2444
|
var Button = /*#__PURE__*/forwardRef(function Button(props, ref) {
|
|
2442
2445
|
var className = props.className,
|
|
@@ -2463,7 +2466,7 @@ var Button = /*#__PURE__*/forwardRef(function Button(props, ref) {
|
|
|
2463
2466
|
disabled: disabled,
|
|
2464
2467
|
onClick: onClick,
|
|
2465
2468
|
variant: variant,
|
|
2466
|
-
className: classes(styles$
|
|
2469
|
+
className: classes(styles$E.root, styles$E["radius-".concat(radius)], styles$E[variant], styles$E[color], className)
|
|
2467
2470
|
});
|
|
2468
2471
|
});
|
|
2469
2472
|
Button.propTypes = _objectSpread2(_objectSpread2({}, BaseButton.propTypes), {}, {
|
|
@@ -2478,9 +2481,9 @@ Button.defaultProps = _objectSpread2(_objectSpread2({}, BaseButton.defaultProps)
|
|
|
2478
2481
|
radius: 'default'
|
|
2479
2482
|
});
|
|
2480
2483
|
|
|
2481
|
-
var css_248z$
|
|
2482
|
-
var styles$
|
|
2483
|
-
styleInject(css_248z$
|
|
2484
|
+
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}";
|
|
2485
|
+
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"};
|
|
2486
|
+
styleInject(css_248z$E);
|
|
2484
2487
|
|
|
2485
2488
|
var Chip = function Chip(props) {
|
|
2486
2489
|
var className = props.className,
|
|
@@ -2506,7 +2509,7 @@ var Chip = function Chip(props) {
|
|
|
2506
2509
|
disabled: disabled,
|
|
2507
2510
|
onClick: onClick,
|
|
2508
2511
|
variant: 'contained',
|
|
2509
|
-
className: classes(styles$
|
|
2512
|
+
className: classes(styles$D.root, styles$D["radius-".concat(radius)], styles$D[variant], styles$D[color], styles$D[size], className)
|
|
2510
2513
|
});
|
|
2511
2514
|
};
|
|
2512
2515
|
Chip.propTypes = _objectSpread2(_objectSpread2({}, BaseButton.propTypes), {}, {
|
|
@@ -5939,9 +5942,9 @@ const useTypeahead = function (_ref, _temp) {
|
|
|
5939
5942
|
};
|
|
5940
5943
|
};
|
|
5941
5944
|
|
|
5942
|
-
var css_248z$
|
|
5943
|
-
var styles$
|
|
5944
|
-
styleInject(css_248z$
|
|
5945
|
+
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}";
|
|
5946
|
+
var styles$C = {"backdrop":"Popper-module_backdrop__Gsq-k","transparent":"Popper-module_transparent__VqWpq","hide-backdrop":"Popper-module_hide-backdrop__Wkkl-"};
|
|
5947
|
+
styleInject(css_248z$D);
|
|
5945
5948
|
|
|
5946
5949
|
var Popper = function Popper(props) {
|
|
5947
5950
|
var open = props.open,
|
|
@@ -5954,7 +5957,7 @@ var Popper = function Popper(props) {
|
|
|
5954
5957
|
id: wrapperId,
|
|
5955
5958
|
children: open && /*#__PURE__*/jsx$1(FloatingOverlay, {
|
|
5956
5959
|
lockScroll: true,
|
|
5957
|
-
className: classes(className, styles$
|
|
5960
|
+
className: classes(className, styles$C.backdrop, transparent ? styles$C.transparent : '', backdrop ? '' : styles$C['hide-backdrop']),
|
|
5958
5961
|
children: children
|
|
5959
5962
|
})
|
|
5960
5963
|
});
|
|
@@ -6085,28 +6088,28 @@ var Alert = function Alert(props) {
|
|
|
6085
6088
|
var Icon = null;
|
|
6086
6089
|
if (AlertTypeIcon != null) {
|
|
6087
6090
|
Icon = /*#__PURE__*/jsx$1(AlertTypeIcon, {
|
|
6088
|
-
className: styles$
|
|
6091
|
+
className: styles$G.icon
|
|
6089
6092
|
});
|
|
6090
6093
|
} else {
|
|
6091
6094
|
switch (color) {
|
|
6092
6095
|
case 'info':
|
|
6093
6096
|
Icon = /*#__PURE__*/jsx$1(AlertIcon.Info, {
|
|
6094
|
-
className: styles$
|
|
6097
|
+
className: styles$G.icon
|
|
6095
6098
|
});
|
|
6096
6099
|
break;
|
|
6097
6100
|
case 'warning':
|
|
6098
6101
|
Icon = /*#__PURE__*/jsx$1(AlertIcon.Warning, {
|
|
6099
|
-
className: styles$
|
|
6102
|
+
className: styles$G.icon
|
|
6100
6103
|
});
|
|
6101
6104
|
break;
|
|
6102
6105
|
case 'success':
|
|
6103
6106
|
Icon = /*#__PURE__*/jsx$1(AlertIcon.Success, {
|
|
6104
|
-
className: styles$
|
|
6107
|
+
className: styles$G.icon
|
|
6105
6108
|
});
|
|
6106
6109
|
break;
|
|
6107
6110
|
case 'danger':
|
|
6108
6111
|
Icon = /*#__PURE__*/jsx$1(AlertIcon.Danger, {
|
|
6109
|
-
className: styles$
|
|
6112
|
+
className: styles$G.icon
|
|
6110
6113
|
});
|
|
6111
6114
|
break;
|
|
6112
6115
|
default:
|
|
@@ -6120,40 +6123,40 @@ var Alert = function Alert(props) {
|
|
|
6120
6123
|
});
|
|
6121
6124
|
return /*#__PURE__*/jsx$1(Popper, {
|
|
6122
6125
|
open: open,
|
|
6123
|
-
className: styles$
|
|
6126
|
+
className: styles$G.popper,
|
|
6124
6127
|
id: "alert-popper",
|
|
6125
6128
|
transparent: false,
|
|
6126
6129
|
children: /*#__PURE__*/jsxs("div", {
|
|
6127
6130
|
ref: ref,
|
|
6128
|
-
className: classes(styles$
|
|
6131
|
+
className: classes(styles$G.root, styles$G[color], styles$G["border-".concat(border)], shadow ? styles$G.shadow : '', styles$G["position-".concat(position)]),
|
|
6129
6132
|
children: [/*#__PURE__*/jsxs("div", {
|
|
6130
|
-
className: styles$
|
|
6133
|
+
className: styles$G.left,
|
|
6131
6134
|
children: [/*#__PURE__*/jsx$1("div", {
|
|
6132
|
-
className: styles$
|
|
6135
|
+
className: styles$G.icons,
|
|
6133
6136
|
children: showIcon && Icon
|
|
6134
6137
|
}), /*#__PURE__*/jsxs("div", {
|
|
6135
|
-
className: styles$
|
|
6138
|
+
className: styles$G.content,
|
|
6136
6139
|
children: [/*#__PURE__*/jsx$1("span", {
|
|
6137
|
-
className: styles$
|
|
6140
|
+
className: styles$G.title,
|
|
6138
6141
|
children: title
|
|
6139
6142
|
}), /*#__PURE__*/jsx$1("span", {
|
|
6140
|
-
className: styles$
|
|
6143
|
+
className: styles$G.description,
|
|
6141
6144
|
children: description
|
|
6142
6145
|
})]
|
|
6143
6146
|
})]
|
|
6144
6147
|
}), (action || close) && /*#__PURE__*/jsxs("div", {
|
|
6145
|
-
className: styles$
|
|
6148
|
+
className: styles$G.actions,
|
|
6146
6149
|
children: [action && /*#__PURE__*/jsx$1(Button, {
|
|
6147
6150
|
title: action,
|
|
6148
6151
|
size: "small",
|
|
6149
6152
|
variant: "text",
|
|
6150
6153
|
color: "primary",
|
|
6151
|
-
className: styles$
|
|
6154
|
+
className: styles$G.button
|
|
6152
6155
|
}), close && /*#__PURE__*/jsx$1("span", {
|
|
6153
6156
|
onClick: toggle,
|
|
6154
|
-
className: styles$
|
|
6157
|
+
className: styles$G.close,
|
|
6155
6158
|
children: /*#__PURE__*/jsx$1(Cross$1, {
|
|
6156
|
-
className: styles$
|
|
6159
|
+
className: styles$G.icon
|
|
6157
6160
|
})
|
|
6158
6161
|
})]
|
|
6159
6162
|
})]
|
|
@@ -11793,9 +11796,9 @@ process.env.NODE_ENV !== "production" ? Link.propTypes
|
|
|
11793
11796
|
} : void 0;
|
|
11794
11797
|
var Link$1 = Link;
|
|
11795
11798
|
|
|
11796
|
-
var css_248z$
|
|
11797
|
-
var styles$
|
|
11798
|
-
styleInject(css_248z$
|
|
11799
|
+
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}";
|
|
11800
|
+
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"};
|
|
11801
|
+
styleInject(css_248z$C);
|
|
11799
11802
|
|
|
11800
11803
|
var BreadCrumbs = function BreadCrumbs(props) {
|
|
11801
11804
|
var crumbs = props.crumbs,
|
|
@@ -11803,13 +11806,13 @@ var BreadCrumbs = function BreadCrumbs(props) {
|
|
|
11803
11806
|
itemsBeforeCollapse = props.itemsBeforeCollapse,
|
|
11804
11807
|
itemsAfterCollapse = props.itemsAfterCollapse;
|
|
11805
11808
|
return /*#__PURE__*/jsx$1("div", {
|
|
11806
|
-
className: classes(styles$
|
|
11809
|
+
className: classes(styles$B.container),
|
|
11807
11810
|
children: /*#__PURE__*/jsx$1(Breadcrumbs$1, _objectSpread2(_objectSpread2({}, props), {}, {
|
|
11808
11811
|
maxItems: maxItems,
|
|
11809
11812
|
itemsBeforeCollapse: itemsBeforeCollapse,
|
|
11810
11813
|
itemsAfterCollapse: itemsAfterCollapse,
|
|
11811
11814
|
separator: /*#__PURE__*/jsx$1(BreadcrumbSeperator, {
|
|
11812
|
-
className: styles$
|
|
11815
|
+
className: styles$B.seperator
|
|
11813
11816
|
}),
|
|
11814
11817
|
"aria-label": "breadcrumb",
|
|
11815
11818
|
children: crumbs.map(function (crumb, index) {
|
|
@@ -11819,7 +11822,7 @@ var BreadCrumbs = function BreadCrumbs(props) {
|
|
|
11819
11822
|
underline: "hover",
|
|
11820
11823
|
children: /*#__PURE__*/jsx$1("span", {
|
|
11821
11824
|
"data-elem": "breadcrumb-item".concat(active ? '-active' : ''),
|
|
11822
|
-
className: classes(styles$
|
|
11825
|
+
className: classes(styles$B['breadcrumb-item'], active ? styles$B.active : ''),
|
|
11823
11826
|
children: getSpacedDisplayName(crumb).replace(/-/g, ' ')
|
|
11824
11827
|
})
|
|
11825
11828
|
}, crumb);
|
|
@@ -32618,9 +32621,9 @@ var dracula = {
|
|
|
32618
32621
|
numberColor: "#bd93f9"
|
|
32619
32622
|
};
|
|
32620
32623
|
|
|
32621
|
-
var css_248z$
|
|
32622
|
-
var styles$
|
|
32623
|
-
styleInject(css_248z$
|
|
32624
|
+
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}";
|
|
32625
|
+
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"};
|
|
32626
|
+
styleInject(css_248z$B);
|
|
32624
32627
|
|
|
32625
32628
|
var CodeSnippet = function CodeSnippet(props) {
|
|
32626
32629
|
var copy = props.copy,
|
|
@@ -32642,7 +32645,7 @@ var CodeSnippet = function CodeSnippet(props) {
|
|
|
32642
32645
|
setCopiedState(true);
|
|
32643
32646
|
};
|
|
32644
32647
|
return /*#__PURE__*/jsxs("div", {
|
|
32645
|
-
className: styles$
|
|
32648
|
+
className: styles$A.root,
|
|
32646
32649
|
children: [/*#__PURE__*/jsx$1(ThemedCodeBlock, {
|
|
32647
32650
|
text: code,
|
|
32648
32651
|
language: language,
|
|
@@ -32652,12 +32655,12 @@ var CodeSnippet = function CodeSnippet(props) {
|
|
|
32652
32655
|
codeBlock: true,
|
|
32653
32656
|
wrapLines: true
|
|
32654
32657
|
}), copy && /*#__PURE__*/jsxs("div", {
|
|
32655
|
-
className: styles$
|
|
32658
|
+
className: styles$A.copy,
|
|
32656
32659
|
onClick: onCopy,
|
|
32657
32660
|
children: [/*#__PURE__*/jsx$1(Copy, {
|
|
32658
|
-
className: classes(styles$
|
|
32661
|
+
className: classes(styles$A.icon, theme === 'dark' ? styles$A.dark : styles$A.light)
|
|
32659
32662
|
}), /*#__PURE__*/jsx$1("div", {
|
|
32660
|
-
className: copiedState ? styles$
|
|
32663
|
+
className: copiedState ? styles$A.copied : styles$A.notCopied,
|
|
32661
32664
|
children: copiedState ? 'Copied' : ''
|
|
32662
32665
|
})]
|
|
32663
32666
|
})]
|
|
@@ -33504,52 +33507,52 @@ function sub$1(date, duration) {
|
|
|
33504
33507
|
return finalDate;
|
|
33505
33508
|
}
|
|
33506
33509
|
|
|
33507
|
-
var css_248z$
|
|
33508
|
-
var styles$
|
|
33509
|
-
styleInject(css_248z$
|
|
33510
|
+
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}";
|
|
33511
|
+
var styles$z = {"container":"Header-module_container__89ew-","title":"Header-module_title__EtL4K","icon":"Header-module_icon__8hwq1"};
|
|
33512
|
+
styleInject(css_248z$A);
|
|
33510
33513
|
|
|
33511
33514
|
var Header = function Header(props) {
|
|
33512
33515
|
var selectedMonth = props.selectedMonth,
|
|
33513
33516
|
onMonthChange = props.onMonthChange;
|
|
33514
33517
|
return /*#__PURE__*/jsxs("div", {
|
|
33515
|
-
className: styles$
|
|
33518
|
+
className: styles$z.container,
|
|
33516
33519
|
children: [/*#__PURE__*/jsx$1("div", {
|
|
33517
33520
|
onClick: function onClick() {
|
|
33518
33521
|
onMonthChange('prev');
|
|
33519
33522
|
},
|
|
33520
|
-
className: styles$
|
|
33523
|
+
className: styles$z['left-arrow'],
|
|
33521
33524
|
children: /*#__PURE__*/jsx$1(Chevron, {
|
|
33522
|
-
className: classes(styles$
|
|
33525
|
+
className: classes(styles$z.icon),
|
|
33523
33526
|
position: "left"
|
|
33524
33527
|
})
|
|
33525
33528
|
}), /*#__PURE__*/jsx$1("span", {
|
|
33526
|
-
className: styles$
|
|
33529
|
+
className: styles$z.title,
|
|
33527
33530
|
children: "".concat(selectedMonth.month, " ").concat(selectedMonth.year)
|
|
33528
33531
|
}), /*#__PURE__*/jsx$1("div", {
|
|
33529
33532
|
onClick: function onClick() {
|
|
33530
33533
|
onMonthChange('next');
|
|
33531
33534
|
},
|
|
33532
|
-
className: styles$
|
|
33535
|
+
className: styles$z['right-arrow'],
|
|
33533
33536
|
children: /*#__PURE__*/jsx$1(Chevron, {
|
|
33534
|
-
className: classes(styles$
|
|
33537
|
+
className: classes(styles$z.icon),
|
|
33535
33538
|
position: "right"
|
|
33536
33539
|
})
|
|
33537
33540
|
})]
|
|
33538
33541
|
});
|
|
33539
33542
|
};
|
|
33540
33543
|
|
|
33541
|
-
var css_248z$
|
|
33542
|
-
var styles$
|
|
33544
|
+
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}";
|
|
33545
|
+
var styles$y = {"root":"Calender-module_root__CSkOi"};
|
|
33546
|
+
styleInject(css_248z$z);
|
|
33547
|
+
|
|
33548
|
+
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}";
|
|
33549
|
+
var styles$x = {"root":"Body-module_root__YPaGU"};
|
|
33543
33550
|
styleInject(css_248z$y);
|
|
33544
33551
|
|
|
33545
|
-
var css_248z$x = "
|
|
33546
|
-
var styles$w = {"
|
|
33552
|
+
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}";
|
|
33553
|
+
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"};
|
|
33547
33554
|
styleInject(css_248z$x);
|
|
33548
33555
|
|
|
33549
|
-
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}";
|
|
33550
|
-
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"};
|
|
33551
|
-
styleInject(css_248z$w);
|
|
33552
|
-
|
|
33553
33556
|
var getDatesOfLastWeekOfLastMonth = function getDatesOfLastWeekOfLastMonth(_ref) {
|
|
33554
33557
|
var monthAsNumber = _ref.monthAsNumber,
|
|
33555
33558
|
year = _ref.year,
|
|
@@ -33750,7 +33753,7 @@ var Dates = function Dates(props) {
|
|
|
33750
33753
|
return (disableDatesAfter === null || disableDatesAfter === void 0 ? void 0 : disableDatesAfter.length) > 0 && isAfter(date, fromUnixTime(disableDatesAfter));
|
|
33751
33754
|
};
|
|
33752
33755
|
return /*#__PURE__*/jsx$1("div", {
|
|
33753
|
-
className: styles$
|
|
33756
|
+
className: styles$w.dates,
|
|
33754
33757
|
children: datesToDisplay.map(function (date) {
|
|
33755
33758
|
var _selectedRange$unix2;
|
|
33756
33759
|
var dateNumber = date === null || date === void 0 ? void 0 : date.getDate();
|
|
@@ -33774,8 +33777,8 @@ var Dates = function Dates(props) {
|
|
|
33774
33777
|
} else {
|
|
33775
33778
|
isMidItem = isBefore(date, fromUnixTime(lastItem)) && isAfter(date, fromUnixTime(firstItem).setHours(23, 59, 59, 59));
|
|
33776
33779
|
}
|
|
33777
|
-
var parentClassNames = classes(isMidItem ? styles$
|
|
33778
|
-
var childClassNames = classes(date ? styles$
|
|
33780
|
+
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'] : '');
|
|
33781
|
+
var childClassNames = classes(date ? styles$w.date : '', selectedSingleDate ? styles$w.selected : '', isUnSelected ? styles$w.unSelected : '', notSameMonth ? styles$w.diffMonth : '', isDisabled ? styles$w.disabled : '');
|
|
33779
33782
|
return /*#__PURE__*/jsx$1("div", {
|
|
33780
33783
|
className: parentClassNames,
|
|
33781
33784
|
onClick: function onClick() {
|
|
@@ -33795,14 +33798,14 @@ var Dates = function Dates(props) {
|
|
|
33795
33798
|
});
|
|
33796
33799
|
};
|
|
33797
33800
|
|
|
33798
|
-
var css_248z$
|
|
33799
|
-
var styles$
|
|
33800
|
-
styleInject(css_248z$
|
|
33801
|
+
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}";
|
|
33802
|
+
var styles$v = {"days":"Days-module_days__h8GoU"};
|
|
33803
|
+
styleInject(css_248z$w);
|
|
33801
33804
|
|
|
33802
33805
|
var Days = function Days() {
|
|
33803
33806
|
var daysInWeek = DAYS;
|
|
33804
33807
|
return /*#__PURE__*/jsx$1("div", {
|
|
33805
|
-
className: styles$
|
|
33808
|
+
className: styles$v.days,
|
|
33806
33809
|
children: daysInWeek.map(function (day) {
|
|
33807
33810
|
return /*#__PURE__*/jsx$1("span", {
|
|
33808
33811
|
children: day
|
|
@@ -33813,14 +33816,14 @@ var Days = function Days() {
|
|
|
33813
33816
|
|
|
33814
33817
|
var Body = function Body(props) {
|
|
33815
33818
|
return /*#__PURE__*/jsxs("div", {
|
|
33816
|
-
className: styles$
|
|
33819
|
+
className: styles$x.root,
|
|
33817
33820
|
children: [/*#__PURE__*/jsx$1(Days, {}), /*#__PURE__*/jsx$1(Dates, _objectSpread2({}, props))]
|
|
33818
33821
|
});
|
|
33819
33822
|
};
|
|
33820
33823
|
|
|
33821
|
-
var css_248z$
|
|
33822
|
-
var styles$
|
|
33823
|
-
styleInject(css_248z$
|
|
33824
|
+
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}";
|
|
33825
|
+
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"};
|
|
33826
|
+
styleInject(css_248z$v);
|
|
33824
33827
|
|
|
33825
33828
|
var getDateAndUnixRange = function getDateAndUnixRange(duration) {
|
|
33826
33829
|
var startingDate = sub$1(new Date(), duration);
|
|
@@ -33856,11 +33859,11 @@ var SelectedDateView = function SelectedDateView(props) {
|
|
|
33856
33859
|
action = props.action,
|
|
33857
33860
|
Icon = props.icon;
|
|
33858
33861
|
return /*#__PURE__*/jsxs("div", {
|
|
33859
|
-
className: styles$
|
|
33862
|
+
className: styles$u['selected-date'],
|
|
33860
33863
|
children: [/*#__PURE__*/jsx$1(Calender$1, {}), /*#__PURE__*/jsxs("div", {
|
|
33861
|
-
className: styles$
|
|
33864
|
+
className: styles$u.date,
|
|
33862
33865
|
children: [/*#__PURE__*/jsx$1("span", {
|
|
33863
|
-
className: classes(styles$
|
|
33866
|
+
className: classes(styles$u.value),
|
|
33864
33867
|
children: value
|
|
33865
33868
|
}), /*#__PURE__*/jsx$1(Button, {
|
|
33866
33869
|
size: "auto",
|
|
@@ -33897,13 +33900,13 @@ var Footer = function Footer(props) {
|
|
|
33897
33900
|
setSelectedRange({});
|
|
33898
33901
|
};
|
|
33899
33902
|
return /*#__PURE__*/jsxs("div", {
|
|
33900
|
-
className: styles$
|
|
33903
|
+
className: styles$u.root,
|
|
33901
33904
|
children: [datesSelected && (dates === null || dates === void 0 ? void 0 : dates.length) === 2 ? /*#__PURE__*/jsx$1(SelectedDateView, {
|
|
33902
33905
|
range: true,
|
|
33903
33906
|
value: "".concat(selectedRange.dates[0], " - ").concat(selectedRange.dates[1]),
|
|
33904
33907
|
icon: function icon() {
|
|
33905
33908
|
return /*#__PURE__*/jsx$1(Cross$1, {
|
|
33906
|
-
className: styles$
|
|
33909
|
+
className: styles$u.cross
|
|
33907
33910
|
});
|
|
33908
33911
|
},
|
|
33909
33912
|
action: clearRangeSelection
|
|
@@ -33914,14 +33917,14 @@ var Footer = function Footer(props) {
|
|
|
33914
33917
|
},
|
|
33915
33918
|
action: resetDate
|
|
33916
33919
|
}), range && /*#__PURE__*/jsx$1("div", {
|
|
33917
|
-
className: styles$
|
|
33920
|
+
className: styles$u['date-ranges'],
|
|
33918
33921
|
children: dateRanges.map(function (_ref) {
|
|
33919
33922
|
var _selectedRange$unix;
|
|
33920
33923
|
var dateRange = _ref.dateRange,
|
|
33921
33924
|
title = _ref.title;
|
|
33922
33925
|
var selectedFixedDateRange = dateRange.unix.toString() === ((_selectedRange$unix = selectedRange.unix) === null || _selectedRange$unix === void 0 ? void 0 : _selectedRange$unix.toString());
|
|
33923
33926
|
return /*#__PURE__*/jsxs("div", {
|
|
33924
|
-
className: classes(styles$
|
|
33927
|
+
className: classes(styles$u['date-range'], selectedFixedDateRange ? styles$u.selected : ''),
|
|
33925
33928
|
onClick: function onClick() {
|
|
33926
33929
|
selectFixedDateRange(dateRange);
|
|
33927
33930
|
},
|
|
@@ -33933,7 +33936,7 @@ var Footer = function Footer(props) {
|
|
|
33933
33936
|
}), datesSelected && /*#__PURE__*/jsx$1(Button, {
|
|
33934
33937
|
onClick: onApply,
|
|
33935
33938
|
title: "Apply",
|
|
33936
|
-
className: styles$
|
|
33939
|
+
className: styles$u.apply
|
|
33937
33940
|
})]
|
|
33938
33941
|
});
|
|
33939
33942
|
};
|
|
@@ -34028,7 +34031,7 @@ var Calender = function Calender(props) {
|
|
|
34028
34031
|
}
|
|
34029
34032
|
};
|
|
34030
34033
|
return /*#__PURE__*/jsxs("div", {
|
|
34031
|
-
className: styles$
|
|
34034
|
+
className: styles$y.root,
|
|
34032
34035
|
children: [/*#__PURE__*/jsx$1(Header, {
|
|
34033
34036
|
selectedMonth: selectedMonth,
|
|
34034
34037
|
onMonthChange: onMonthChange
|
|
@@ -34054,9 +34057,9 @@ var Calender = function Calender(props) {
|
|
|
34054
34057
|
});
|
|
34055
34058
|
};
|
|
34056
34059
|
|
|
34057
|
-
var css_248z$
|
|
34058
|
-
var styles$
|
|
34059
|
-
styleInject(css_248z$
|
|
34060
|
+
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}";
|
|
34061
|
+
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"};
|
|
34062
|
+
styleInject(css_248z$u);
|
|
34060
34063
|
|
|
34061
34064
|
var isMaxRangeExceeded = function isMaxRangeExceeded(_ref) {
|
|
34062
34065
|
var maxRange = _ref.maxRange,
|
|
@@ -34194,35 +34197,35 @@ var DatePicker = function DatePicker(props) {
|
|
|
34194
34197
|
disableDatesBefore: disableDatesBefore
|
|
34195
34198
|
};
|
|
34196
34199
|
return /*#__PURE__*/jsxs("div", {
|
|
34197
|
-
className: classes(styles$
|
|
34200
|
+
className: classes(styles$t.root, className),
|
|
34198
34201
|
ref: datePickerRef,
|
|
34199
34202
|
children: [label && /*#__PURE__*/jsx$1("span", {
|
|
34200
|
-
className: styles$
|
|
34203
|
+
className: styles$t.label,
|
|
34201
34204
|
children: label
|
|
34202
34205
|
}), /*#__PURE__*/jsxs("div", _objectSpread2(_objectSpread2({
|
|
34203
34206
|
"data-elem": "header",
|
|
34204
34207
|
ref: reference,
|
|
34205
|
-
className: classes(styles$
|
|
34208
|
+
className: classes(styles$t.container, disabled ? styles$t.disabled : '', open ? styles$t.open : '', error ? styles$t.error : '')
|
|
34206
34209
|
}, getReferenceProps()), {}, {
|
|
34207
34210
|
children: [/*#__PURE__*/jsxs("div", {
|
|
34208
34211
|
children: [/*#__PURE__*/jsx$1(Calender$1, {}), !displayValue && /*#__PURE__*/jsx$1("span", {
|
|
34209
|
-
className: styles$
|
|
34212
|
+
className: styles$t.placeholder,
|
|
34210
34213
|
children: placeholder
|
|
34211
34214
|
}), displayValue && /*#__PURE__*/jsxs("span", {
|
|
34212
|
-
className: styles$
|
|
34215
|
+
className: styles$t.value,
|
|
34213
34216
|
children: ["Selected Date: ", /*#__PURE__*/jsx$1("span", {
|
|
34214
34217
|
children: displayValue
|
|
34215
34218
|
})]
|
|
34216
34219
|
})]
|
|
34217
34220
|
}), /*#__PURE__*/jsx$1("input", {
|
|
34218
|
-
className: styles$
|
|
34221
|
+
className: styles$t.input,
|
|
34219
34222
|
value: displayValue
|
|
34220
34223
|
}), /*#__PURE__*/jsx$1(Chevron, {
|
|
34221
|
-
className: classes(styles$
|
|
34224
|
+
className: classes(styles$t.icon),
|
|
34222
34225
|
position: open ? 'bottom' : 'top'
|
|
34223
34226
|
})]
|
|
34224
34227
|
})), error && /*#__PURE__*/jsx$1("div", {
|
|
34225
|
-
className: styles$
|
|
34228
|
+
className: styles$t['error-text'],
|
|
34226
34229
|
children: error
|
|
34227
34230
|
}), /*#__PURE__*/jsx$1(Popper, {
|
|
34228
34231
|
open: open,
|
|
@@ -34241,7 +34244,7 @@ var DatePicker = function DatePicker(props) {
|
|
|
34241
34244
|
left: x !== null && x !== void 0 ? x : 0
|
|
34242
34245
|
}
|
|
34243
34246
|
})), {}, {
|
|
34244
|
-
className: classes(styles$
|
|
34247
|
+
className: classes(styles$t.popper, open ? styles$t.open : ''),
|
|
34245
34248
|
children: /*#__PURE__*/jsx$1(Calender, _objectSpread2({}, calenderProps))
|
|
34246
34249
|
}))
|
|
34247
34250
|
})]
|
|
@@ -34277,9 +34280,9 @@ DatePicker.defaultProps = {
|
|
|
34277
34280
|
disableDatesAfter: []
|
|
34278
34281
|
};
|
|
34279
34282
|
|
|
34280
|
-
var css_248z$
|
|
34281
|
-
var styles$
|
|
34282
|
-
styleInject(css_248z$
|
|
34283
|
+
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}";
|
|
34284
|
+
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"};
|
|
34285
|
+
styleInject(css_248z$t);
|
|
34283
34286
|
|
|
34284
34287
|
var HierarchyItem = function HierarchyItem(props) {
|
|
34285
34288
|
var defaultOpen = props.defaultOpen,
|
|
@@ -34292,12 +34295,12 @@ var HierarchyItem = function HierarchyItem(props) {
|
|
|
34292
34295
|
open = _useState2[0],
|
|
34293
34296
|
setOpen = _useState2[1];
|
|
34294
34297
|
return /*#__PURE__*/jsxs("div", {
|
|
34295
|
-
className: classes(styles$
|
|
34298
|
+
className: classes(styles$s.root, open ? styles$s.open : ''),
|
|
34296
34299
|
children: [/*#__PURE__*/jsx$1(BaseCell, {
|
|
34297
34300
|
flexible: true,
|
|
34298
34301
|
size: "auto",
|
|
34299
34302
|
rootDOM: "button",
|
|
34300
|
-
className: styles$
|
|
34303
|
+
className: styles$s.header,
|
|
34301
34304
|
attrs: {
|
|
34302
34305
|
onClick: function onClick() {
|
|
34303
34306
|
setOpen(function (prevState) {
|
|
@@ -34308,23 +34311,23 @@ var HierarchyItem = function HierarchyItem(props) {
|
|
|
34308
34311
|
}
|
|
34309
34312
|
},
|
|
34310
34313
|
component1: iconPlacement === 'left' && /*#__PURE__*/jsx$1(Caret, {
|
|
34311
|
-
className: styles$
|
|
34314
|
+
className: styles$s.icon
|
|
34312
34315
|
}),
|
|
34313
34316
|
component2: /*#__PURE__*/jsx$1("span", {
|
|
34314
|
-
className: styles$
|
|
34317
|
+
className: styles$s.title,
|
|
34315
34318
|
children: title
|
|
34316
34319
|
}),
|
|
34317
34320
|
component3: iconPlacement === 'right' && /*#__PURE__*/jsx$1(Caret, {
|
|
34318
|
-
className: styles$
|
|
34321
|
+
className: styles$s.icon
|
|
34319
34322
|
})
|
|
34320
34323
|
}), /*#__PURE__*/jsx$1(BaseCell, {
|
|
34321
34324
|
size: "auto",
|
|
34322
|
-
className: styles$
|
|
34325
|
+
className: styles$s.body,
|
|
34323
34326
|
component1: /*#__PURE__*/jsx$1("div", {
|
|
34324
|
-
className: styles$
|
|
34327
|
+
className: styles$s.tail
|
|
34325
34328
|
}),
|
|
34326
34329
|
component2: /*#__PURE__*/jsx$1("div", {
|
|
34327
|
-
className: styles$
|
|
34330
|
+
className: styles$s.children,
|
|
34328
34331
|
children: children
|
|
34329
34332
|
})
|
|
34330
34333
|
})]
|
|
@@ -34343,9 +34346,9 @@ HierarchyItem.defaultProps = {
|
|
|
34343
34346
|
onClick: function onClick() {}
|
|
34344
34347
|
};
|
|
34345
34348
|
|
|
34346
|
-
var css_248z$
|
|
34347
|
-
var styles$
|
|
34348
|
-
styleInject(css_248z$
|
|
34349
|
+
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}";
|
|
34350
|
+
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"};
|
|
34351
|
+
styleInject(css_248z$s);
|
|
34349
34352
|
|
|
34350
34353
|
var Title = function Title(props) {
|
|
34351
34354
|
var item = props.item;
|
|
@@ -34358,14 +34361,14 @@ var Title = function Title(props) {
|
|
|
34358
34361
|
break;
|
|
34359
34362
|
}
|
|
34360
34363
|
return /*#__PURE__*/jsxs("span", {
|
|
34361
|
-
className: styles$
|
|
34364
|
+
className: styles$r.item,
|
|
34362
34365
|
children: [Icon && /*#__PURE__*/jsx$1(Icon, {
|
|
34363
|
-
className: styles$
|
|
34366
|
+
className: styles$r['item-icon']
|
|
34364
34367
|
}), /*#__PURE__*/jsx$1("span", {
|
|
34365
|
-
className: styles$
|
|
34368
|
+
className: styles$r['item-title'],
|
|
34366
34369
|
children: item === null || item === void 0 ? void 0 : item.title
|
|
34367
34370
|
}), (item === null || item === void 0 ? void 0 : item.count) && /*#__PURE__*/jsxs("span", {
|
|
34368
|
-
className: styles$
|
|
34371
|
+
className: styles$r['item-count'],
|
|
34369
34372
|
children: ["(", item === null || item === void 0 ? void 0 : item.count, ")"]
|
|
34370
34373
|
})]
|
|
34371
34374
|
});
|
|
@@ -34415,12 +34418,12 @@ var HierarchyBrowser = function HierarchyBrowser(props) {
|
|
|
34415
34418
|
};
|
|
34416
34419
|
return /*#__PURE__*/jsxs("div", {
|
|
34417
34420
|
ref: browserRef,
|
|
34418
|
-
className: classes(styles$
|
|
34421
|
+
className: classes(styles$r.root, className, resizable ? styles$r.resizable : ''),
|
|
34419
34422
|
children: [/*#__PURE__*/jsx$1("div", {
|
|
34420
|
-
className: styles$
|
|
34423
|
+
className: styles$r.header,
|
|
34421
34424
|
children: "Browser"
|
|
34422
34425
|
}), /*#__PURE__*/jsx$1("div", {
|
|
34423
|
-
className: styles$
|
|
34426
|
+
className: styles$r.body,
|
|
34424
34427
|
children: renderTree(metadata)
|
|
34425
34428
|
})]
|
|
34426
34429
|
});
|
|
@@ -34453,9 +34456,9 @@ HierarchyBrowser.defaultProps = {
|
|
|
34453
34456
|
}
|
|
34454
34457
|
};
|
|
34455
34458
|
|
|
34456
|
-
var css_248z$
|
|
34457
|
-
var styles$
|
|
34458
|
-
styleInject(css_248z$
|
|
34459
|
+
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}";
|
|
34460
|
+
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"};
|
|
34461
|
+
styleInject(css_248z$r);
|
|
34459
34462
|
|
|
34460
34463
|
var TextField = /*#__PURE__*/forwardRef(function TextField(props, inputRef) {
|
|
34461
34464
|
var _inputValue$length;
|
|
@@ -34508,26 +34511,26 @@ var TextField = /*#__PURE__*/forwardRef(function TextField(props, inputRef) {
|
|
|
34508
34511
|
ref: inputRef,
|
|
34509
34512
|
value: inputValue,
|
|
34510
34513
|
onChange: handleChange,
|
|
34511
|
-
className: classes(styles$
|
|
34514
|
+
className: classes(styles$q[size], styles$q.input)
|
|
34512
34515
|
}, inputProps));
|
|
34513
34516
|
return /*#__PURE__*/jsxs("div", {
|
|
34514
|
-
className: classes(styles$
|
|
34517
|
+
className: classes(styles$q.root, className),
|
|
34515
34518
|
children: [/*#__PURE__*/jsxs("label", {
|
|
34516
34519
|
children: [label, /*#__PURE__*/jsx$1(BaseCell, {
|
|
34517
|
-
className: classes(styles$
|
|
34520
|
+
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)] : ''),
|
|
34518
34521
|
component1: LeftComponent && /*#__PURE__*/jsx$1(LeftComponent, {}),
|
|
34519
34522
|
component2: Input,
|
|
34520
34523
|
component3: RightComponent && /*#__PURE__*/jsx$1(RightComponent, {})
|
|
34521
34524
|
})]
|
|
34522
34525
|
}), feedbackAndCount && /*#__PURE__*/jsxs("div", {
|
|
34523
|
-
className: styles$
|
|
34526
|
+
className: styles$q.bottom,
|
|
34524
34527
|
children: [feedback != null && /*#__PURE__*/jsx$1("div", {
|
|
34525
34528
|
"data-elem": "feedback",
|
|
34526
|
-
className: classes(styles$
|
|
34529
|
+
className: classes(styles$q.feedback, styles$q["feedback-".concat(feedback.type)]),
|
|
34527
34530
|
children: feedback.text
|
|
34528
34531
|
}), (count === null || count === void 0 ? void 0 : count.limit) != null && /*#__PURE__*/jsxs("div", {
|
|
34529
34532
|
"data-elem": "count",
|
|
34530
|
-
className: classes(styles$
|
|
34533
|
+
className: classes(styles$q.count, (inputValue === null || inputValue === void 0 ? void 0 : inputValue.length) > count.limit ? styles$q.exceeded : ''),
|
|
34531
34534
|
children: [(_inputValue$length = inputValue.length) !== null && _inputValue$length !== void 0 ? _inputValue$length : 0, "/", count.limit]
|
|
34532
34535
|
})]
|
|
34533
34536
|
})]
|
|
@@ -34578,9 +34581,9 @@ TextField.defaultProps = {
|
|
|
34578
34581
|
feedbackAndCount: false
|
|
34579
34582
|
};
|
|
34580
34583
|
|
|
34581
|
-
var css_248z$
|
|
34582
|
-
var styles$
|
|
34583
|
-
styleInject(css_248z$
|
|
34584
|
+
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}";
|
|
34585
|
+
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"};
|
|
34586
|
+
styleInject(css_248z$q);
|
|
34584
34587
|
|
|
34585
34588
|
var Checkbox = function Checkbox(props) {
|
|
34586
34589
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -34611,7 +34614,7 @@ var Checkbox = function Checkbox(props) {
|
|
|
34611
34614
|
};
|
|
34612
34615
|
var isChecked = isControlled ? checked : uncontrolledChecked;
|
|
34613
34616
|
return /*#__PURE__*/jsxs("label", {
|
|
34614
|
-
className: classes(styles$
|
|
34617
|
+
className: classes(styles$p.root, styles$p["position-".concat(position)], className, disabled ? styles$p.disabled : ''),
|
|
34615
34618
|
children: [/*#__PURE__*/jsx$1("input", _objectSpread2(_objectSpread2({
|
|
34616
34619
|
disabled: disabled,
|
|
34617
34620
|
type: "checkbox",
|
|
@@ -34622,10 +34625,10 @@ var Checkbox = function Checkbox(props) {
|
|
|
34622
34625
|
onChange: handleChange
|
|
34623
34626
|
})), isChecked ? /*#__PURE__*/jsx$1(CheckboxIcon.Checked, {
|
|
34624
34627
|
"data-elem": "icon",
|
|
34625
|
-
className: classes(styles$
|
|
34628
|
+
className: classes(styles$p["icon-".concat(size)], styles$p.icon)
|
|
34626
34629
|
}) : /*#__PURE__*/jsx$1(CheckboxIcon.UnChecked, {
|
|
34627
34630
|
"data-elem": "icon",
|
|
34628
|
-
className: classes(styles$
|
|
34631
|
+
className: classes(styles$p["icon-".concat(size)], styles$p.icon)
|
|
34629
34632
|
}), label && /*#__PURE__*/jsx$1("span", {
|
|
34630
34633
|
"data-elem": "label",
|
|
34631
34634
|
children: label
|
|
@@ -34651,9 +34654,9 @@ Checkbox.defaultProps = {
|
|
|
34651
34654
|
onChange: function onChange() {}
|
|
34652
34655
|
};
|
|
34653
34656
|
|
|
34654
|
-
var css_248z$
|
|
34655
|
-
var styles$
|
|
34656
|
-
styleInject(css_248z$
|
|
34657
|
+
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}";
|
|
34658
|
+
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"};
|
|
34659
|
+
styleInject(css_248z$p);
|
|
34657
34660
|
|
|
34658
34661
|
var Radio = function Radio(props) {
|
|
34659
34662
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -34684,7 +34687,7 @@ var Radio = function Radio(props) {
|
|
|
34684
34687
|
};
|
|
34685
34688
|
var isChecked = isControlled ? checked : uncontrolledChecked;
|
|
34686
34689
|
return /*#__PURE__*/jsxs("label", {
|
|
34687
|
-
className: classes(styles$
|
|
34690
|
+
className: classes(styles$o.root, styles$o["position-".concat(position)], className, disabled ? styles$o.disabled : ''),
|
|
34688
34691
|
children: [/*#__PURE__*/jsx$1("input", {
|
|
34689
34692
|
disabled: disabled,
|
|
34690
34693
|
type: "radio",
|
|
@@ -34692,10 +34695,10 @@ var Radio = function Radio(props) {
|
|
|
34692
34695
|
onChange: handleChange
|
|
34693
34696
|
}), isChecked ? /*#__PURE__*/jsx$1(RadioIcon.Checked, {
|
|
34694
34697
|
"data-elem": "icon",
|
|
34695
|
-
className: classes(styles$
|
|
34698
|
+
className: classes(styles$o["icon-".concat(size)], styles$o.icon)
|
|
34696
34699
|
}) : /*#__PURE__*/jsx$1(RadioIcon.UnChecked, {
|
|
34697
34700
|
"data-elem": "icon",
|
|
34698
|
-
className: classes(styles$
|
|
34701
|
+
className: classes(styles$o["icon-".concat(size)], styles$o.icon)
|
|
34699
34702
|
}), label && /*#__PURE__*/jsx$1("span", {
|
|
34700
34703
|
"data-elem": "label",
|
|
34701
34704
|
children: label
|
|
@@ -34721,9 +34724,9 @@ Radio.defaultProps = {
|
|
|
34721
34724
|
onChange: function onChange() {}
|
|
34722
34725
|
};
|
|
34723
34726
|
|
|
34724
|
-
var css_248z$
|
|
34725
|
-
var styles$
|
|
34726
|
-
styleInject(css_248z$
|
|
34727
|
+
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}";
|
|
34728
|
+
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"};
|
|
34729
|
+
styleInject(css_248z$o);
|
|
34727
34730
|
|
|
34728
34731
|
var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, inputRef) {
|
|
34729
34732
|
var _selectedOptions$map, _ref2, _selectedOptions$;
|
|
@@ -34929,16 +34932,16 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, inputRef) {
|
|
|
34929
34932
|
})));
|
|
34930
34933
|
});
|
|
34931
34934
|
return /*#__PURE__*/jsxs("div", {
|
|
34932
|
-
className: classes(className, styles$
|
|
34935
|
+
className: classes(className, styles$n.root, open ? styles$n.open : '', disabled ? styles$n.disabled : ''),
|
|
34933
34936
|
children: [label && /*#__PURE__*/jsx$1("div", {
|
|
34934
34937
|
"data-elem": "label",
|
|
34935
|
-
className: styles$
|
|
34938
|
+
className: styles$n.label,
|
|
34936
34939
|
children: /*#__PURE__*/jsx$1("span", {
|
|
34937
34940
|
children: label
|
|
34938
34941
|
})
|
|
34939
34942
|
}), /*#__PURE__*/jsxs("div", _objectSpread2(_objectSpread2({
|
|
34940
34943
|
"data-elem": "header",
|
|
34941
|
-
className: styles$
|
|
34944
|
+
className: styles$n.header,
|
|
34942
34945
|
ref: reference
|
|
34943
34946
|
}, getReferenceProps()), {}, {
|
|
34944
34947
|
children: [/*#__PURE__*/jsx$1("input", {
|
|
@@ -34947,7 +34950,7 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, inputRef) {
|
|
|
34947
34950
|
ref: inputRef,
|
|
34948
34951
|
disabled: disabled,
|
|
34949
34952
|
tabIndex: 0,
|
|
34950
|
-
className: styles$
|
|
34953
|
+
className: styles$n.input,
|
|
34951
34954
|
onKeyDown: function onKeyDown(event) {
|
|
34952
34955
|
var validKey = [' ', 'Spacebar', 'Enter'].includes(event.key);
|
|
34953
34956
|
if (validKey) {
|
|
@@ -34961,14 +34964,14 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, inputRef) {
|
|
|
34961
34964
|
}), /*#__PURE__*/jsxs("div", {
|
|
34962
34965
|
"data-elem": "select",
|
|
34963
34966
|
role: "button",
|
|
34964
|
-
className: classes(styles$
|
|
34967
|
+
className: classes(styles$n.select, feedback != null ? styles$n["feedback-".concat(feedback === null || feedback === void 0 ? void 0 : feedback.type)] : ''),
|
|
34965
34968
|
children: [/*#__PURE__*/jsx$1("span", {
|
|
34966
34969
|
"data-elem": "placeholder",
|
|
34967
|
-
className: styles$
|
|
34970
|
+
className: styles$n.placeholder,
|
|
34968
34971
|
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
|
|
34969
34972
|
}), /*#__PURE__*/jsx$1(Caret, {
|
|
34970
34973
|
"data-elem": "icon",
|
|
34971
|
-
className: classes(styles$
|
|
34974
|
+
className: classes(styles$n.icon, styles$n['drop-icon'])
|
|
34972
34975
|
})]
|
|
34973
34976
|
})]
|
|
34974
34977
|
})), /*#__PURE__*/jsx$1(Popper, {
|
|
@@ -34992,16 +34995,16 @@ var Dropdown = /*#__PURE__*/forwardRef(function Dropdown(props, inputRef) {
|
|
|
34992
34995
|
left: x !== null && x !== void 0 ? x : 0
|
|
34993
34996
|
},
|
|
34994
34997
|
onClick: onClick,
|
|
34995
|
-
className: classes(styles$
|
|
34998
|
+
className: classes(styles$n.body, popperClassName, open ? styles$n.open : '')
|
|
34996
34999
|
})), {}, {
|
|
34997
35000
|
children: items
|
|
34998
35001
|
}))
|
|
34999
35002
|
})
|
|
35000
35003
|
}), feedback != null && /*#__PURE__*/jsx$1("div", {
|
|
35001
|
-
className: styles$
|
|
35004
|
+
className: styles$n.bottom,
|
|
35002
35005
|
children: /*#__PURE__*/jsx$1("div", {
|
|
35003
35006
|
"data-elem": "feedback",
|
|
35004
|
-
className: classes(styles$
|
|
35007
|
+
className: classes(styles$n.feedback, styles$n["feedback-".concat(feedback.type)]),
|
|
35005
35008
|
children: feedback.text
|
|
35006
35009
|
})
|
|
35007
35010
|
})]
|
|
@@ -35039,9 +35042,9 @@ Dropdown.defaultProps = {
|
|
|
35039
35042
|
feedback: null
|
|
35040
35043
|
};
|
|
35041
35044
|
|
|
35042
|
-
var css_248z$
|
|
35043
|
-
var styles$
|
|
35044
|
-
styleInject(css_248z$
|
|
35045
|
+
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}";
|
|
35046
|
+
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"};
|
|
35047
|
+
styleInject(css_248z$n);
|
|
35045
35048
|
|
|
35046
35049
|
var DropdownItem = /*#__PURE__*/forwardRef(function DropdownItem(props, ref) {
|
|
35047
35050
|
// eslint-disable-next-line object-curly-newline
|
|
@@ -35068,7 +35071,7 @@ var DropdownItem = /*#__PURE__*/forwardRef(function DropdownItem(props, ref) {
|
|
|
35068
35071
|
}
|
|
35069
35072
|
return /*#__PURE__*/jsxs("div", _objectSpread2(_objectSpread2({
|
|
35070
35073
|
ref: ref,
|
|
35071
|
-
className: classes(className, styles$
|
|
35074
|
+
className: classes(className, styles$m.root, selected ? styles$m.selected : ''),
|
|
35072
35075
|
"data-elem": "dropdown-item",
|
|
35073
35076
|
"data-variant": variant,
|
|
35074
35077
|
"data-value": value,
|
|
@@ -35101,9 +35104,9 @@ DropdownItem.defaultProps = {
|
|
|
35101
35104
|
selected: false
|
|
35102
35105
|
};
|
|
35103
35106
|
|
|
35104
|
-
var css_248z$
|
|
35105
|
-
var styles$
|
|
35106
|
-
styleInject(css_248z$
|
|
35107
|
+
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}";
|
|
35108
|
+
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"};
|
|
35109
|
+
styleInject(css_248z$m);
|
|
35107
35110
|
|
|
35108
35111
|
var BaseModal = function BaseModal(props) {
|
|
35109
35112
|
var className = props.className,
|
|
@@ -35122,28 +35125,28 @@ var BaseModal = function BaseModal(props) {
|
|
|
35122
35125
|
transparent: false,
|
|
35123
35126
|
id: "base-modal-popper",
|
|
35124
35127
|
children: /*#__PURE__*/jsxs("div", {
|
|
35125
|
-
className: classes(styles$
|
|
35128
|
+
className: classes(styles$l.root, className),
|
|
35126
35129
|
ref: ref,
|
|
35127
35130
|
children: [renderHeader && /*#__PURE__*/jsx$1("div", {
|
|
35128
35131
|
"data-elem": "header",
|
|
35129
|
-
className: styles$
|
|
35132
|
+
className: styles$l.header,
|
|
35130
35133
|
children: renderHeader
|
|
35131
35134
|
}), /*#__PURE__*/jsx$1("div", {
|
|
35132
35135
|
"data-elem": "body",
|
|
35133
|
-
className: styles$
|
|
35136
|
+
className: styles$l.body,
|
|
35134
35137
|
children: children
|
|
35135
35138
|
}), renderFooter && /*#__PURE__*/jsx$1("div", {
|
|
35136
35139
|
"data-elem": "footer",
|
|
35137
|
-
className: styles$
|
|
35140
|
+
className: styles$l.footer,
|
|
35138
35141
|
children: renderFooter
|
|
35139
35142
|
}), /*#__PURE__*/jsx$1("div", {
|
|
35140
35143
|
"data-elem": "close",
|
|
35141
|
-
className: styles$
|
|
35144
|
+
className: styles$l.closeModal,
|
|
35142
35145
|
onClick: function onClick() {
|
|
35143
35146
|
toggle(false);
|
|
35144
35147
|
},
|
|
35145
35148
|
children: /*#__PURE__*/jsx$1(Cross$1, {
|
|
35146
|
-
className: styles$
|
|
35149
|
+
className: styles$l.closeIcon
|
|
35147
35150
|
})
|
|
35148
35151
|
})]
|
|
35149
35152
|
})
|
|
@@ -35164,8 +35167,74 @@ BaseModal.defaultProps = {
|
|
|
35164
35167
|
toggle: function toggle() {}
|
|
35165
35168
|
};
|
|
35166
35169
|
|
|
35167
|
-
var css_248z$
|
|
35168
|
-
var styles$
|
|
35170
|
+
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}";
|
|
35171
|
+
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"};
|
|
35172
|
+
styleInject(css_248z$l);
|
|
35173
|
+
|
|
35174
|
+
/* eslint-disable object-curly-newline */
|
|
35175
|
+
var DialogBox = function DialogBox(props) {
|
|
35176
|
+
var open = props.open,
|
|
35177
|
+
heading = props.heading,
|
|
35178
|
+
description = props.description,
|
|
35179
|
+
action = props.action,
|
|
35180
|
+
variant = props.variant,
|
|
35181
|
+
onCancel = props.onCancel,
|
|
35182
|
+
onAction = props.onAction,
|
|
35183
|
+
size = props.size,
|
|
35184
|
+
className = props.className;
|
|
35185
|
+
return /*#__PURE__*/jsx$1(BaseModal, {
|
|
35186
|
+
open: open,
|
|
35187
|
+
toggle: onCancel,
|
|
35188
|
+
className: classes(className, styles$k.root, styles$k[size]),
|
|
35189
|
+
renderHeader: /*#__PURE__*/jsx$1("div", {
|
|
35190
|
+
className: styles$k.header,
|
|
35191
|
+
children: /*#__PURE__*/jsx$1("p", {
|
|
35192
|
+
children: heading
|
|
35193
|
+
})
|
|
35194
|
+
}),
|
|
35195
|
+
renderFooter: /*#__PURE__*/jsxs("div", {
|
|
35196
|
+
className: styles$k.footer,
|
|
35197
|
+
children: [/*#__PURE__*/jsx$1(Button, {
|
|
35198
|
+
color: "default",
|
|
35199
|
+
variant: "outlined",
|
|
35200
|
+
className: styles$k.cancel,
|
|
35201
|
+
onClick: onCancel,
|
|
35202
|
+
title: "Cancel"
|
|
35203
|
+
}), /*#__PURE__*/jsx$1(Button, {
|
|
35204
|
+
onClick: onAction,
|
|
35205
|
+
title: action,
|
|
35206
|
+
color: variant
|
|
35207
|
+
})]
|
|
35208
|
+
}),
|
|
35209
|
+
children: /*#__PURE__*/jsx$1("div", {
|
|
35210
|
+
className: styles$k.description,
|
|
35211
|
+
children: description
|
|
35212
|
+
})
|
|
35213
|
+
});
|
|
35214
|
+
};
|
|
35215
|
+
DialogBox.propTypes = {
|
|
35216
|
+
className: propTypes$1.exports.string,
|
|
35217
|
+
heading: propTypes$1.exports.string,
|
|
35218
|
+
action: propTypes$1.exports.string,
|
|
35219
|
+
description: propTypes$1.exports.string,
|
|
35220
|
+
onCancel: propTypes$1.exports.func,
|
|
35221
|
+
onAction: propTypes$1.exports.func,
|
|
35222
|
+
variant: propTypes$1.exports.oneOf(['primary', 'success', 'danger', 'warning']),
|
|
35223
|
+
size: propTypes$1.exports.oneOf(['sm', 'md'])
|
|
35224
|
+
};
|
|
35225
|
+
DialogBox.defaultProps = {
|
|
35226
|
+
className: '',
|
|
35227
|
+
heading: 'selected row',
|
|
35228
|
+
action: '',
|
|
35229
|
+
description: 'description selected page',
|
|
35230
|
+
variant: 'danger',
|
|
35231
|
+
onCancel: function onCancel() {},
|
|
35232
|
+
onAction: function onAction() {},
|
|
35233
|
+
size: 'sm'
|
|
35234
|
+
};
|
|
35235
|
+
|
|
35236
|
+
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}";
|
|
35237
|
+
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"};
|
|
35169
35238
|
styleInject(css_248z$k);
|
|
35170
35239
|
|
|
35171
35240
|
var PageHeader = function PageHeader(props) {
|
|
@@ -35308,8 +35377,8 @@ function getPagination(curr, total, limit) {
|
|
|
35308
35377
|
return pages;
|
|
35309
35378
|
}
|
|
35310
35379
|
|
|
35311
|
-
var css_248z$j = "
|
|
35312
|
-
var styles$i = {"
|
|
35380
|
+
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}";
|
|
35381
|
+
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"};
|
|
35313
35382
|
styleInject(css_248z$j);
|
|
35314
35383
|
|
|
35315
35384
|
var dropdownOptions = ['10', '25', '50', '100', '200', '250'];
|
|
@@ -35542,11 +35611,11 @@ Pagination.defaultProps = {
|
|
|
35542
35611
|
onChange: function onChange() {}
|
|
35543
35612
|
};
|
|
35544
35613
|
|
|
35545
|
-
var css_248z$i = "
|
|
35546
|
-
var styles$h = {"
|
|
35614
|
+
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}";
|
|
35615
|
+
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"};
|
|
35547
35616
|
styleInject(css_248z$i);
|
|
35548
35617
|
|
|
35549
|
-
var css_248z$h = "
|
|
35618
|
+
var css_248z$h = "";
|
|
35550
35619
|
styleInject(css_248z$h);
|
|
35551
35620
|
|
|
35552
35621
|
var Step = function Step(props) {
|
|
@@ -35654,8 +35723,8 @@ var TableColumn = /*#__PURE__*/_createClass$1(function TableColumn(_ref) {
|
|
|
35654
35723
|
this.sticky = sticky;
|
|
35655
35724
|
});
|
|
35656
35725
|
|
|
35657
|
-
var css_248z$g = "
|
|
35658
|
-
var styles$g = {"
|
|
35726
|
+
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}";
|
|
35727
|
+
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"};
|
|
35659
35728
|
styleInject(css_248z$g);
|
|
35660
35729
|
|
|
35661
35730
|
var TableCell = /*#__PURE__*/forwardRef(function TableCell(props, ref) {
|
|
@@ -35716,8 +35785,8 @@ TableCell.defaultProps = _objectSpread2(_objectSpread2({}, BaseCell.defaultProps
|
|
|
35716
35785
|
cellTitle: null
|
|
35717
35786
|
});
|
|
35718
35787
|
|
|
35719
|
-
var css_248z$f = "
|
|
35720
|
-
var styles$f = {"
|
|
35788
|
+
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}";
|
|
35789
|
+
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"};
|
|
35721
35790
|
styleInject(css_248z$f);
|
|
35722
35791
|
|
|
35723
35792
|
var TableRow = function TableRow(props) {
|
|
@@ -35798,8 +35867,8 @@ TableRow.defaultProps = {
|
|
|
35798
35867
|
selected: false
|
|
35799
35868
|
};
|
|
35800
35869
|
|
|
35801
|
-
var css_248z$e = "
|
|
35802
|
-
var styles$e = {"
|
|
35870
|
+
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}";
|
|
35871
|
+
var styles$e = {"root":"TableBody-module_root__uXmOm"};
|
|
35803
35872
|
styleInject(css_248z$e);
|
|
35804
35873
|
|
|
35805
35874
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35864,8 +35933,8 @@ TableBody.defaultProps = {
|
|
|
35864
35933
|
}
|
|
35865
35934
|
};
|
|
35866
35935
|
|
|
35867
|
-
var css_248z$d = "
|
|
35868
|
-
var styles$d = {"
|
|
35936
|
+
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}";
|
|
35937
|
+
var styles$d = {"root":"TableHeader-module_root__tJ-19"};
|
|
35869
35938
|
styleInject(css_248z$d);
|
|
35870
35939
|
|
|
35871
35940
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35905,8 +35974,8 @@ TableHeader.defaultProps = {
|
|
|
35905
35974
|
}
|
|
35906
35975
|
};
|
|
35907
35976
|
|
|
35908
|
-
var css_248z$c = "
|
|
35909
|
-
var styles$c = {"
|
|
35977
|
+
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}";
|
|
35978
|
+
var styles$c = {"root":"BaseTable-module_root__buLTn"};
|
|
35910
35979
|
styleInject(css_248z$c);
|
|
35911
35980
|
|
|
35912
35981
|
/* eslint-disable react/forbid-prop-types */
|
|
@@ -35972,8 +36041,8 @@ BaseTable.defaultProps = {
|
|
|
35972
36041
|
}
|
|
35973
36042
|
};
|
|
35974
36043
|
|
|
35975
|
-
var css_248z$b = "
|
|
35976
|
-
var styles$b = {"
|
|
36044
|
+
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}";
|
|
36045
|
+
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"};
|
|
35977
36046
|
styleInject(css_248z$b);
|
|
35978
36047
|
|
|
35979
36048
|
var TableChips = function TableChips(props) {
|
|
@@ -36063,8 +36132,8 @@ var TableChip = /*#__PURE__*/_createClass$1(function TableChip(_ref) {
|
|
|
36063
36132
|
this.disabled = disabled;
|
|
36064
36133
|
});
|
|
36065
36134
|
|
|
36066
|
-
var css_248z$a = "
|
|
36067
|
-
var styles$a = {"
|
|
36135
|
+
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}";
|
|
36136
|
+
var styles$a = {"root":"Popover-module_root__F8vwF"};
|
|
36068
36137
|
styleInject(css_248z$a);
|
|
36069
36138
|
|
|
36070
36139
|
var Popover = function Popover(props) {
|
|
@@ -36141,8 +36210,8 @@ Popover.defaultProps = {
|
|
|
36141
36210
|
onClose: function onClose() {}
|
|
36142
36211
|
};
|
|
36143
36212
|
|
|
36144
|
-
var css_248z$9 = "
|
|
36145
|
-
var styles$9 = {"
|
|
36213
|
+
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}";
|
|
36214
|
+
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"};
|
|
36146
36215
|
styleInject(css_248z$9);
|
|
36147
36216
|
|
|
36148
36217
|
var Columns = function Columns(props) {
|
|
@@ -36241,8 +36310,8 @@ var Columns = function Columns(props) {
|
|
|
36241
36310
|
});
|
|
36242
36311
|
};
|
|
36243
36312
|
|
|
36244
|
-
var css_248z$8 = "
|
|
36245
|
-
var styles$8 = {"
|
|
36313
|
+
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}";
|
|
36314
|
+
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"};
|
|
36246
36315
|
styleInject(css_248z$8);
|
|
36247
36316
|
|
|
36248
36317
|
var TableFilters = function TableFilters(props) {
|
|
@@ -36375,8 +36444,8 @@ TableFilters.defaultProps = {
|
|
|
36375
36444
|
}
|
|
36376
36445
|
};
|
|
36377
36446
|
|
|
36378
|
-
var css_248z$7 = "
|
|
36379
|
-
var styles$7 = {"
|
|
36447
|
+
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}";
|
|
36448
|
+
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"};
|
|
36380
36449
|
styleInject(css_248z$7);
|
|
36381
36450
|
|
|
36382
36451
|
var INTERSECTION = 1;
|
|
@@ -36534,8 +36603,8 @@ Table.defaultProps = {
|
|
|
36534
36603
|
paginationData: null
|
|
36535
36604
|
};
|
|
36536
36605
|
|
|
36537
|
-
var css_248z$6 = "
|
|
36538
|
-
var styles$6 = {"
|
|
36606
|
+
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}";
|
|
36607
|
+
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"};
|
|
36539
36608
|
styleInject(css_248z$6);
|
|
36540
36609
|
|
|
36541
36610
|
var Tabs = function Tabs(props) {
|
|
@@ -36627,8 +36696,8 @@ Tabs.defaultProps = {
|
|
|
36627
36696
|
setSelectedTab: 'None'
|
|
36628
36697
|
};
|
|
36629
36698
|
|
|
36630
|
-
var css_248z$5 = "
|
|
36631
|
-
var styles$5 = {"
|
|
36699
|
+
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}";
|
|
36700
|
+
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"};
|
|
36632
36701
|
styleInject(css_248z$5);
|
|
36633
36702
|
|
|
36634
36703
|
var getPositionStyles = function getPositionStyles(_ref) {
|
|
@@ -36723,8 +36792,8 @@ Tooltip.defaultProps = {
|
|
|
36723
36792
|
position: 'top'
|
|
36724
36793
|
};
|
|
36725
36794
|
|
|
36726
|
-
var css_248z$4 = "
|
|
36727
|
-
var styles$4 = {"
|
|
36795
|
+
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}";
|
|
36796
|
+
var styles$4 = {"root":"BaseSidePanel-module_root__4rB6U","close":"BaseSidePanel-module_close__jxONj","body":"BaseSidePanel-module_body__saAQq"};
|
|
36728
36797
|
styleInject(css_248z$4);
|
|
36729
36798
|
|
|
36730
36799
|
var BaseSidePanel = function BaseSidePanel(props) {
|
|
@@ -82753,8 +82822,8 @@ function install(registers) {
|
|
|
82753
82822
|
registers.registerPainter('canvas', CanvasPainter$1);
|
|
82754
82823
|
}
|
|
82755
82824
|
|
|
82756
|
-
var css_248z$3 = "
|
|
82757
|
-
var styles$3 = {"
|
|
82825
|
+
var css_248z$3 = ".BaseVerticalBarChart-module_root__9vU7p {\n width: \"100%\";\n}";
|
|
82826
|
+
var styles$3 = {"root":"BaseVerticalBarChart-module_root__9vU7p"};
|
|
82758
82827
|
styleInject(css_248z$3);
|
|
82759
82828
|
|
|
82760
82829
|
use([install$2, install$3, install$4, install$1, install$7, install]);
|
|
@@ -82919,8 +82988,8 @@ BaseVerticalBarChart.defaultProps = {
|
|
|
82919
82988
|
className: ''
|
|
82920
82989
|
};
|
|
82921
82990
|
|
|
82922
|
-
var css_248z$2 = "
|
|
82923
|
-
var styles$2 = {"
|
|
82991
|
+
var css_248z$2 = ".BaseHorizontalBarChart-module_root__02nf- {\n width: \"100%\";\n}";
|
|
82992
|
+
var styles$2 = {"root":"BaseHorizontalBarChart-module_root__02nf-"};
|
|
82924
82993
|
styleInject(css_248z$2);
|
|
82925
82994
|
|
|
82926
82995
|
use([install$2, install$3, install$4, install$1, install$7, install]);
|
|
@@ -83069,8 +83138,8 @@ BaseHorizontalBarChart.defaultProps = {
|
|
|
83069
83138
|
className: ''
|
|
83070
83139
|
};
|
|
83071
83140
|
|
|
83072
|
-
var css_248z$1 = "
|
|
83073
|
-
var styles$1 = {"
|
|
83141
|
+
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}";
|
|
83142
|
+
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"};
|
|
83074
83143
|
styleInject(css_248z$1);
|
|
83075
83144
|
|
|
83076
83145
|
var generateOptions = function generateOptions(optionData) {
|
|
@@ -83167,8 +83236,8 @@ BaseWidget.defaultProps = {
|
|
|
83167
83236
|
className: ''
|
|
83168
83237
|
};
|
|
83169
83238
|
|
|
83170
|
-
var css_248z = "
|
|
83171
|
-
var styles = {"
|
|
83239
|
+
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}";
|
|
83240
|
+
var styles = {"root":"DisplayPicture-module_root__-OCp7","sm":"DisplayPicture-module_sm__WgrGZ","md":"DisplayPicture-module_md__uE0B2"};
|
|
83172
83241
|
styleInject(css_248z);
|
|
83173
83242
|
|
|
83174
83243
|
var DisplayPicture = function DisplayPicture(props) {
|
|
@@ -84232,5 +84301,5 @@ var yaml = /*#__PURE__*/_mergeNamespaces({
|
|
|
84232
84301
|
default: yamlExports
|
|
84233
84302
|
}, [yamlExports]);
|
|
84234
84303
|
|
|
84235
|
-
export { Accordion, Alert, AlertIcon, AngleDouble as AngleDoubleIcon, Arrow$1 as ArrowIcon, BASE_URLS, BaseButton, BaseCell, BaseHorizontalBarChart, BaseModal, BaseSidePanel, BaseTable, BaseVerticalBarChart, BaseWidget, BreadCrumbs, BreadcrumbSeperator as BreadcrumbSeperatorIcon, Button, Calender$1 as CalenderIcon, Caret as CaretIcon, Checkbox, CheckboxIcon, Chevron as ChevronIcon, Chip, CodeSnippet, Columns$1 as ColumnsIcon, Copy as CopyIcon, Cross$1 as CrossIcon, DAYS, DatePicker, Delete as DeleteIcon, DisplayPicture, Download as DownloadIcon, Dropdown, DropdownItem, Edit as EditIcon, ExpandArrowAlt as ExpandArrowAltIcon, FULL_MONTHS, Filter as FilterIcon, HalfShade as HalfShadeIcon, HierarchyBrowser, HierarchyItem, MONTHS, MagnifyingGlass as MagnifyingGlassIcon, Nut as NutIcon, PageHeader, Pagination, PaginationList, Plus as PlusIcon, Popover, Popper, Radio, RadioIcon, Refresh as RefreshIcon, Reset as ResetIcon, Server as ServerIcon, Stepper, Table, TableCell, TableChip, TableChips, TableColumn, TableFilters, Tabs, TextField, Tick as TickIcon, Tooltip, View as ViewIcon, classes, cloneDeep, defaultProps$1 as defaultProps, doubleDigitted, get$1 as get, getCurrentSearchParams, getDateFromEpoch, getDatesInAMonth, getDayInfo, getInitialsOfName, getJSDateFromEpoch, getPagination, getSpacedDisplayName, getTimeFromEpoch, inputHelper, propTypes, stringToPath, sumArrayOfObjects, uniqueArray, uniqueArrayOfObjects, useOutsideClickListener, usePagination, useResize, useRowFilter };
|
|
84304
|
+
export { Accordion, Alert, AlertIcon, AngleDouble as AngleDoubleIcon, Arrow$1 as ArrowIcon, BASE_URLS, BaseButton, BaseCell, BaseHorizontalBarChart, BaseModal, BaseSidePanel, BaseTable, BaseVerticalBarChart, BaseWidget, BreadCrumbs, BreadcrumbSeperator as BreadcrumbSeperatorIcon, Button, Calender$1 as CalenderIcon, Caret as CaretIcon, Checkbox, CheckboxIcon, Chevron as ChevronIcon, Chip, CodeSnippet, Columns$1 as ColumnsIcon, Copy as CopyIcon, Cross$1 as CrossIcon, DAYS, DatePicker, Delete as DeleteIcon, DialogBox, DisplayPicture, Download as DownloadIcon, Dropdown, DropdownItem, Edit as EditIcon, ExpandArrowAlt as ExpandArrowAltIcon, FULL_MONTHS, Filter as FilterIcon, HalfShade as HalfShadeIcon, HierarchyBrowser, HierarchyItem, MONTHS, MagnifyingGlass as MagnifyingGlassIcon, Nut as NutIcon, PageHeader, Pagination, PaginationList, Plus as PlusIcon, Popover, Popper, Radio, RadioIcon, Refresh as RefreshIcon, Reset as ResetIcon, Server as ServerIcon, Stepper, Table, TableCell, TableChip, TableChips, TableColumn, TableFilters, Tabs, TextField, Tick as TickIcon, Tooltip, View as ViewIcon, classes, cloneDeep, defaultProps$1 as defaultProps, doubleDigitted, get$1 as get, getCSSVariableValue, getCurrentSearchParams, getDateFromEpoch, getDatesInAMonth, getDayInfo, getInitialsOfName, getJSDateFromEpoch, getPagination, getSpacedDisplayName, getTimeFromEpoch, inputHelper, propTypes, stringToPath, sumArrayOfObjects, uniqueArray, uniqueArrayOfObjects, useOutsideClickListener, usePagination, useResize, useRowFilter };
|
|
84236
84305
|
//# sourceMappingURL=index.js.map
|