@luscii-healthtech/web-ui 35.0.0 → 35.1.0
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/index.development.js +49 -248
- package/dist/index.development.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/web-ui-tailwind.css +0 -49
- package/dist/web-ui.esm.js +1 -1
- package/dist/web-ui.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/components/Button/Button.d.ts +0 -11
- package/dist/components/Button/Button.types.d.ts +0 -32
- package/dist/components/Button/ButtonIcon.d.ts +0 -7
|
@@ -14,7 +14,6 @@ var ReactTooltip = require('react-tooltip');
|
|
|
14
14
|
var ReactModal = require('react-modal');
|
|
15
15
|
var Glider = require('react-glider');
|
|
16
16
|
require('glider-js/glider.min.css');
|
|
17
|
-
var router = require('@reach/router');
|
|
18
17
|
var ReactDatePicker = require('react-datepicker');
|
|
19
18
|
require('react-datepicker/dist/react-datepicker.min.css');
|
|
20
19
|
var enGB = require('date-fns/locale/en-GB');
|
|
@@ -285,7 +284,7 @@ const SvgChartBarsIcon = (props) => React__namespace.default.createElement(
|
|
|
285
284
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
286
285
|
React__namespace.default.createElement("path", { fill: "currentColor", d: "M4 19h4.337v-8H4v8Zm5.836 0h4.328V5H9.835v14Zm5.827 0H20v-6h-4.337v6ZM2.5 18.692v-7.384c0-.497.177-.923.531-1.277A1.74 1.74 0 0 1 4.308 9.5h4.029V5.308c0-.497.177-.923.53-1.277a1.74 1.74 0 0 1 1.277-.531h3.712c.497 0 .922.177 1.276.531.354.354.531.78.531 1.277V11.5h4.03c.496 0 .922.177 1.276.531.354.354.531.78.531 1.277v5.384c0 .497-.177.923-.531 1.277a1.74 1.74 0 0 1-1.277.531H4.308a1.74 1.74 0 0 1-1.277-.531 1.74 1.74 0 0 1-.531-1.277Z" })
|
|
287
286
|
);
|
|
288
|
-
var
|
|
287
|
+
var ChartBarsIcon = IconWrapper(SvgChartBarsIcon);
|
|
289
288
|
|
|
290
289
|
const SvgChartLineAndBarsIcon = (props) => React__namespace.default.createElement(
|
|
291
290
|
"svg",
|
|
@@ -673,7 +672,7 @@ const SvgPencilIcon = (props) => React__namespace.default.createElement(
|
|
|
673
672
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
674
673
|
React__namespace.default.createElement("path", { fill: "currentColor", d: "M5 19h1.261L16.498 8.763l-1.261-1.261L5 17.738V19Zm-.596 1.5a.875.875 0 0 1-.644-.26.875.875 0 0 1-.26-.644v-1.733a1.8 1.8 0 0 1 .527-1.275L16.69 3.931a1.7 1.7 0 0 1 .501-.319 1.5 1.5 0 0 1 .575-.112c.2 0 .395.036.583.107.188.07.354.184.499.34l1.221 1.236c.155.145.266.311.332.5.066.188.099.377.099.565 0 .201-.034.393-.103.576-.069.183-.178.35-.328.501L7.411 19.973a1.801 1.801 0 0 1-1.274.527H4.403ZM15.856 8.144l-.62-.642 1.262 1.261-.642-.62Z" })
|
|
675
674
|
);
|
|
676
|
-
var
|
|
675
|
+
var PencilIcon = IconWrapper(SvgPencilIcon);
|
|
677
676
|
|
|
678
677
|
const SvgPhoneIcon = (props) => React__namespace.default.createElement(
|
|
679
678
|
"svg",
|
|
@@ -701,14 +700,14 @@ const SvgPlusIcon = (props) => React__namespace.default.createElement(
|
|
|
701
700
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
702
701
|
React__namespace.default.createElement("path", { fill: "currentColor", d: "M11.25 12.75h-5a.726.726 0 0 1-.534-.216A.726.726 0 0 1 5.5 12c0-.213.072-.391.216-.535a.726.726 0 0 1 .534-.215h5v-5c0-.213.072-.39.216-.534A.726.726 0 0 1 12 5.5c.213 0 .391.072.535.216a.726.726 0 0 1 .215.534v5h5c.212 0 .39.072.534.216A.726.726 0 0 1 18.5 12a.726.726 0 0 1-.216.535.726.726 0 0 1-.534.215h-5v5c0 .212-.072.39-.216.534A.726.726 0 0 1 12 18.5a.725.725 0 0 1-.535-.216.726.726 0 0 1-.215-.534v-5Z" })
|
|
703
702
|
);
|
|
704
|
-
var
|
|
703
|
+
var PlusIcon = IconWrapper(SvgPlusIcon);
|
|
705
704
|
|
|
706
705
|
const SvgPrinterIcon = (props) => React__namespace.default.createElement(
|
|
707
706
|
"svg",
|
|
708
707
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
709
708
|
React__namespace.default.createElement("path", { fill: "currentColor", d: "M8.308 20.5a1.74 1.74 0 0 1-1.277-.531 1.74 1.74 0 0 1-.53-1.277V16.5H4.595a1.74 1.74 0 0 1-1.276-.531 1.74 1.74 0 0 1-.531-1.277v-3.884c0-.709.242-1.302.726-1.782.483-.479 1.075-.718 1.774-.718h13.423c.708 0 1.302.24 1.78.718.48.48.72 1.073.72 1.782v3.884c0 .497-.177.923-.532 1.277a1.74 1.74 0 0 1-1.276.531H17.5v2.192c0 .497-.177.923-.531 1.277a1.74 1.74 0 0 1-1.277.531H8.308ZM4.596 15H6.5c.013-.486.194-.902.545-1.249a1.73 1.73 0 0 1 1.263-.52h7.384c.492 0 .913.173 1.263.52.35.347.532.763.545 1.249h1.904a.3.3 0 0 0 .221-.087.3.3 0 0 0 .087-.22v-3.885a.968.968 0 0 0-.288-.713.968.968 0 0 0-.712-.287H5.289a.968.968 0 0 0-.713.287.967.967 0 0 0-.287.713v3.884a.3.3 0 0 0 .086.221.3.3 0 0 0 .221.087ZM16 8.308V5.615a.3.3 0 0 0-.086-.22.3.3 0 0 0-.222-.087H8.308a.3.3 0 0 0-.221.086.3.3 0 0 0-.087.221v2.693H6.5V5.615c0-.497.177-.922.531-1.276a1.74 1.74 0 0 1 1.277-.531h7.384c.497 0 .923.177 1.277.53.354.355.531.78.531 1.277v2.693H16Zm1.808 4c.283 0 .52-.096.712-.288a.968.968 0 0 0 .288-.712.967.967 0 0 0-.288-.713.967.967 0 0 0-.712-.287.968.968 0 0 0-.713.287.968.968 0 0 0-.287.713c0 .283.096.52.287.712.192.192.43.288.713.288ZM16 18.692V15.04a.3.3 0 0 0-.086-.222.3.3 0 0 0-.222-.086H8.308a.3.3 0 0 0-.221.086.3.3 0 0 0-.087.222v3.653a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087h7.385a.3.3 0 0 0 .222-.087.3.3 0 0 0 .086-.22ZM4.596 9.808H4.29h15.423H4.596Z" })
|
|
710
709
|
);
|
|
711
|
-
var
|
|
710
|
+
var PrinterIcon = IconWrapper(SvgPrinterIcon);
|
|
712
711
|
|
|
713
712
|
const SvgRedAlertIcon = (props) => React__namespace.default.createElement(
|
|
714
713
|
"svg",
|
|
@@ -795,7 +794,7 @@ const SvgTrashBinIcon = (props) => React__namespace.default.createElement(
|
|
|
795
794
|
Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none", viewBox: "0 0 24 24" }, props),
|
|
796
795
|
React__namespace.default.createElement("path", { fill: "currentColor", d: "M7.308 20.5c-.499 0-.925-.177-1.278-.53a1.742 1.742 0 0 1-.53-1.278V6h-.25a.726.726 0 0 1-.535-.215.726.726 0 0 1-.215-.535.73.73 0 0 1 .215-.535.726.726 0 0 1 .535-.215H9c0-.245.086-.453.259-.626a.853.853 0 0 1 .626-.259h4.23a.85.85 0 0 1 .626.26A.852.852 0 0 1 15 4.5h3.75a.73.73 0 0 1 .535.215.726.726 0 0 1 .215.535.726.726 0 0 1-.215.535.726.726 0 0 1-.535.215h-.25v12.692c0 .499-.177.925-.53 1.278-.353.353-.779.53-1.278.53H7.308ZM17 6H7v12.692a.3.3 0 0 0 .087.221.3.3 0 0 0 .22.087h9.385a.3.3 0 0 0 .221-.087.3.3 0 0 0 .087-.22V6ZM9.404 17h1.5V8h-1.5v9Zm3.692 0h1.5V8h-1.5v9Z" })
|
|
797
796
|
);
|
|
798
|
-
var
|
|
797
|
+
var TrashBinIcon = IconWrapper(SvgTrashBinIcon);
|
|
799
798
|
|
|
800
799
|
const SvgTreeIcon = (props) => React__namespace.default.createElement(
|
|
801
800
|
"svg",
|
|
@@ -814,7 +813,7 @@ var UnassignedIcon = IconWrapper(SvgUnassignedIcon);
|
|
|
814
813
|
var Icons = /*#__PURE__*/Object.freeze({
|
|
815
814
|
__proto__: null,
|
|
816
815
|
AbsentIcon: AbsentIcon,
|
|
817
|
-
AddIcon:
|
|
816
|
+
AddIcon: PlusIcon,
|
|
818
817
|
AlarmClockIcon: AlarmClockIcon,
|
|
819
818
|
AlertsIcon: BellIcon,
|
|
820
819
|
AmberAlertIcon: AmberAlertIcon,
|
|
@@ -826,8 +825,8 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
826
825
|
CalendarDayIcon: CalendarDayIcon,
|
|
827
826
|
CalendarMonthIcon: CalendarMonthIcon,
|
|
828
827
|
CalendarRepeatIcon: CalendarRepeatIcon,
|
|
829
|
-
ChartBarsIcon:
|
|
830
|
-
ChartIcon:
|
|
828
|
+
ChartBarsIcon: ChartBarsIcon,
|
|
829
|
+
ChartIcon: ChartBarsIcon,
|
|
831
830
|
ChartLineAndBarsIcon: ChartLineAndBarsIcon,
|
|
832
831
|
ChartLineColoredIcon: ChartLineColoredIcon,
|
|
833
832
|
ChatBoxIcon: ChatBubbleIcon,
|
|
@@ -845,13 +844,13 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
845
844
|
CrossInCircleIcon: CrossInCircleIcon,
|
|
846
845
|
CrossInFilledCircleIcon: CrossInFilledCircleIcon,
|
|
847
846
|
DatabaseIcon: DatabaseIcon,
|
|
848
|
-
DeleteIcon:
|
|
847
|
+
DeleteIcon: TrashBinIcon,
|
|
849
848
|
DownArrowIcon: ChevronDownIcon,
|
|
850
849
|
DownloadIcon: DownloadIcon,
|
|
851
850
|
DragIcon: DragIndicatorIcon,
|
|
852
851
|
DragIndicatorIcon: DragIndicatorIcon,
|
|
853
852
|
EarthIcon: EarthIcon,
|
|
854
|
-
EditIcon:
|
|
853
|
+
EditIcon: PencilIcon,
|
|
855
854
|
EmailIcon: EmailIcon,
|
|
856
855
|
EmptyIcon: EmptyIcon,
|
|
857
856
|
ExclamationMarkIcon: ExclamationMarkIcon,
|
|
@@ -896,13 +895,13 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
896
895
|
PageViewIcon: PageViewIcon,
|
|
897
896
|
PaperclipIcon: PaperclipIcon,
|
|
898
897
|
PatientIcon: PatientIcon,
|
|
899
|
-
PencilIcon:
|
|
898
|
+
PencilIcon: PencilIcon,
|
|
900
899
|
PhoneIcon: PhoneIcon,
|
|
901
900
|
PieChartIcon: PieChartIcon,
|
|
902
901
|
PinIcon: PinIcon,
|
|
903
|
-
PlusIcon:
|
|
904
|
-
PrintIcon:
|
|
905
|
-
PrinterIcon:
|
|
902
|
+
PlusIcon: PlusIcon,
|
|
903
|
+
PrintIcon: PrinterIcon,
|
|
904
|
+
PrinterIcon: PrinterIcon,
|
|
906
905
|
RedAlertIcon: RedAlertIcon,
|
|
907
906
|
RightArrowIcon: RightArrowIcon,
|
|
908
907
|
RobotIcon: RobotIcon,
|
|
@@ -918,7 +917,7 @@ var Icons = /*#__PURE__*/Object.freeze({
|
|
|
918
917
|
StatusColoredIcon: StatusColoredIcon,
|
|
919
918
|
StopwatchIcon: StopwatchIcon,
|
|
920
919
|
TadaIcon: TadaIcon,
|
|
921
|
-
TrashBinIcon:
|
|
920
|
+
TrashBinIcon: TrashBinIcon,
|
|
922
921
|
TreeIcon: TreeIcon,
|
|
923
922
|
UnassignedIcon: UnassignedIcon,
|
|
924
923
|
WarningIcon: ExclamationMarkIcon
|
|
@@ -1468,7 +1467,7 @@ const Stack = (props) => {
|
|
|
1468
1467
|
return React__namespace.default.createElement(Box, Object.assign({ className: classNames__default.default(stackClasses, className) }, attributes), children);
|
|
1469
1468
|
};
|
|
1470
1469
|
|
|
1471
|
-
var img$
|
|
1470
|
+
var img$9 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3e%3cpath d='M18 16V2C18 0.9 17.1 0 16 0H2C0.9 0 0 0.9 0 2V16C0 17.1 0.9 18 2 18H16C17.1 18 18 17.1 18 16ZM5.9 10.98L8 13.51L11.1 9.52C11.3 9.26 11.7 9.26 11.9 9.53L15.41 14.21C15.66 14.54 15.42 15.01 15.01 15.01H3.02C2.6 15.01 2.37 14.53 2.63 14.2L5.12 11C5.31 10.74 5.69 10.73 5.9 10.98Z' fill='%23D1D5DB'/%3e%3c/svg%3e";
|
|
1472
1471
|
|
|
1473
1472
|
const Image$1 = (_a) => {
|
|
1474
1473
|
var { src, className, children = null, onClick, showIconOnFailure = true, wrapperClassName } = _a, otherProps = __rest(_a, ["src", "className", "children", "onClick", "showIconOnFailure", "wrapperClassName"]);
|
|
@@ -1484,7 +1483,7 @@ const Image$1 = (_a) => {
|
|
|
1484
1483
|
return React__namespace.default.createElement(reactLazyLoadImageComponent.LazyLoadImage, Object.assign({ className: classNames__default.default(className), effect: "blur", useIntersectionObserver: true, placeholder: React__namespace.default.createElement(
|
|
1485
1484
|
"div",
|
|
1486
1485
|
{ className: "ui-flex ui-h-full ui-w-full ui-flex-row ui-items-center ui-justify-center ui-rounded" },
|
|
1487
|
-
React__namespace.default.createElement("img", { src: img$
|
|
1486
|
+
React__namespace.default.createElement("img", { src: img$9, alt: "image-icon" })
|
|
1488
1487
|
), src, onClick, onError: () => setIsError(true), wrapperClassName }, otherProps));
|
|
1489
1488
|
};
|
|
1490
1489
|
var Image$2 = reactLazyLoadImageComponent.trackWindowScroll(Image$1);
|
|
@@ -2001,16 +2000,16 @@ const isSubstring = (string, searchTerm, caseSensitive = false) => {
|
|
|
2001
2000
|
return (stringToSearch === null || stringToSearch === void 0 ? void 0 : stringToSearch.indexOf(searchTermWithCase)) > -1;
|
|
2002
2001
|
};
|
|
2003
2002
|
|
|
2004
|
-
var img$
|
|
2003
|
+
var img$8 = "data:image/svg+xml,%3csvg width='144' height='144' viewBox='0 0 144 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%23BBE3D7'/%3e%3cpath d='M100 28H44C41.7909 28 40 29.7909 40 32V112C40 114.209 41.7909 116 44 116H100C102.209 116 104 114.209 104 112V32C104 29.7909 102.209 28 100 28Z' fill='%23FBFEFF'/%3e%3cellipse cx='58' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cellipse cx='58' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cellipse cx='58' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cellipse cx='86' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cellipse cx='86' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cellipse cx='86' cy='98' rx='4' ry='3' fill='%23FFD3E5'/%3e%3cpath d='M71.9007 101.202C70.0421 101.202 68.5352 99.6148 68.5352 97.6578V96H75.2663V97.6578C75.2663 99.6148 73.7594 101.202 71.9007 101.202Z' fill='%23454545'/%3e%3cpath d='M60.0918 96.0458C59.8056 95.6233 59.3882 95.5719 59.2189 95.5719C59.0496 95.5719 58.6252 95.6181 58.3461 96.0458C57.9584 96.6394 57.1663 96.8045 56.5764 96.4145C55.9865 96.025 55.8224 95.2273 56.2101 94.6338C56.8775 93.6111 58.0023 93 59.2189 93C60.4355 93 61.5603 93.6111 62.2284 94.6338C62.6154 95.2273 62.4513 96.025 61.8614 96.4145C61.645 96.5575 60.6888 96.9281 60.0918 96.0458Z' fill='%23454545'/%3e%3cpath d='M85.6543 96.0458C85.3681 95.6233 84.9513 95.5719 84.7814 95.5719C84.6121 95.5719 84.1883 95.6181 83.9092 96.0458C83.5215 96.6394 82.7288 96.8045 82.1389 96.4145C81.549 96.025 81.3849 95.2273 81.7726 94.6338C82.4406 93.6111 83.5655 93 84.7821 93C85.998 93 87.1228 93.6111 87.7909 94.6338C88.1786 95.2273 88.0144 96.025 87.4246 96.4145C87.2081 96.5575 86.2519 96.9281 85.6543 96.0458Z' fill='%23454545'/%3e%3crect x='88.8281' y='45.8281' width='8' height='4' rx='2' transform='rotate(45 88.8281 45.8281)' fill='%23BBE3D7'/%3e%3crect x='100.143' y='45.8281' width='12' height='4' rx='2' transform='rotate(135 100.143 45.8281)' fill='%23BBE3D7'/%3e%3crect x='46' y='46' width='34' height='8' rx='4' fill='%23C0E9FA'/%3e%3crect x='88.8281' y='65.8281' width='8' height='4' rx='2' transform='rotate(45 88.8281 65.8281)' fill='%23BBE3D7'/%3e%3crect x='100.143' y='65.8281' width='12' height='4' rx='2' transform='rotate(135 100.143 65.8281)' fill='%23BBE3D7'/%3e%3crect x='46' y='66' width='34' height='8' rx='4' fill='%23C0E9FA'/%3e%3c/svg%3e";
|
|
2005
2004
|
|
|
2006
|
-
var img$g = "data:image/svg+xml,%3csvg width='144' height='144' viewBox='0 0 144 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_1866_119823)'%3e%3cmask id='mask0_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='144' height='144'%3e%3cpath d='M0 0V144H144V0H0H0Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_1866_119823)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72 144C32.235 144 0 111.765 0 72C0 32.235 32.235 0 72 0C111.765 0 144 32.235 144 72C144 111.765 111.765 144 72 144Z' fill='%236ABFA5'/%3e%3c/g%3e%3cmask id='mask1_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='54' y='36' width='35' height='35'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask1_1866_119823)'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='%23F2F2F2'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71 39L71.3085 39.0035C78.8971 39.1745 85 45.6404 85 53.5915V68L57 67.8442V53.5915C57 45.533 63.2673 39 71 39ZM71 43.6584L70.7334 43.6623C65.6846 43.8094 61.6345 48.1211 61.6345 53.4187V64.1342L80.3646 64.238V53.4187C80.3646 48.0282 76.1712 43.6584 71 43.6584Z' fill='%23DEDEDE'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M90.5966 107.98H53.4036C50.1986 107.98 47.5996 105.381 47.5996 102.176V68.7708C47.5996 65.5658 50.1986 62.9668 53.4036 62.9668H90.5966C93.8026 62.9668 96.4006 65.5658 96.4006 68.7708V102.176C96.4006 105.381 93.8026 107.98 90.5966 107.98Z' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9277 75.3438C69.1662 75.3438 66.9277 77.5836 66.9277 80.3467C66.9277 82.3006 68.0499 83.9884 69.6804 84.8115L69.6813 95.3438H74.1751L74.1761 84.8115C75.8065 83.9884 76.9277 82.3006 76.9277 80.3467C76.9277 77.5836 74.6893 75.3438 71.9277 75.3438Z' fill='%236670A5'/%3e%3cpath d='M61 62H53V63H61V62Z' fill='white'/%3e%3cpath d='M89 62H81V63H89V62Z' fill='white'/%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%236ABFA5'/%3e%3cpath d='M76.975 32.7732C79.9117 37.5004 83.0276 42.9368 86.1287 48.7329C87.8031 51.8633 90.8123 54.0548 94.2988 54.6825C100.469 55.7938 106.31 56.9717 111.465 58.1712C115.702 59.1572 117.426 64.2717 114.653 67.6338C111.028 72.0263 106.95 76.7279 102.457 81.5292C100.104 84.0461 98.9851 87.4836 99.4054 90.909C100.173 97.1657 100.778 103.076 101.239 108.507C101.61 112.876 97.2381 116.105 93.1944 114.44C87.6662 112.163 82.6966 109.553 77.0542 106.776C73.8839 105.217 70.1732 105.197 66.9841 106.72C61.3559 109.408 56.0667 111.994 50.9051 114.19C46.8445 115.918 42.404 112.698 42.7799 108.29C43.2385 102.918 43.8374 97.0822 44.5947 90.909C45.015 87.4829 43.8971 84.0454 41.5426 81.5286C37.051 76.7273 32.9716 72.0256 29.3475 67.6331C26.5747 64.271 28.2981 59.1565 32.5352 58.1705C37.6902 56.9711 43.5319 55.7931 49.7019 54.6819C53.1878 54.0542 56.1969 51.8626 57.872 48.7322C60.9725 42.9362 64.0884 37.4997 67.0257 32.7725C69.3225 29.0757 74.6775 29.0757 76.975 32.7732Z' fill='%23EDFFF9'/%3e%3cpath opacity='0.5' d='M60.6635 77.2045C60.6635 74.8627 58.2874 72.9648 55.3561 72.9648C52.4249 72.9648 50.0488 74.8627 50.0488 77.2045C50.0488 79.5455 52.4249 81.4441 55.3561 81.4441C58.2874 81.4441 60.6635 79.5455 60.6635 77.2045Z' fill='%23FF83B4'/%3e%3cpath opacity='0.5' d='M93.9499 77.2045C93.9499 74.8627 91.5739 72.9648 88.6426 72.9648C85.712 72.9648 83.3359 74.8627 83.3359 77.2045C83.3359 79.5455 85.712 81.4441 88.6426 81.4441C91.5739 81.4441 93.9499 79.5455 93.9499 77.2045Z' fill='%23FF83B4'/%3e%3cpath d='M71.9988 76.516C70.2801 76.516 68.5613 75.9577 67.1272 74.8417C66.5478 74.3911 66.4424 73.554 66.8923 72.9727C67.3414 72.3915 68.176 72.2858 68.7554 72.7363C70.6648 74.2227 73.3329 74.2227 75.243 72.7363C75.8224 72.2858 76.6562 72.3915 77.1061 72.9727C77.5552 73.554 77.4498 74.3911 76.8704 74.8417C75.4363 75.9577 73.7176 76.516 71.9988 76.516Z' fill='%23454545'/%3e%3cpath d='M58.6251 73.96C58.3276 73.5222 57.8939 73.469 57.718 73.469C57.5421 73.469 57.101 73.5168 56.811 73.96C56.4081 74.5749 55.585 74.746 54.972 74.3419C54.3591 73.9384 54.1885 73.1121 54.5914 72.4972C55.2849 71.4378 56.4538 70.8047 57.718 70.8047C58.9822 70.8047 60.1511 71.4378 60.8453 72.4972C61.2475 73.1121 61.077 73.9384 60.464 74.3419C60.2391 74.49 59.2454 74.8739 58.6251 73.96Z' fill='%23454545'/%3e%3cpath d='M87.1876 73.96C86.8901 73.5222 86.4571 73.469 86.2805 73.469C86.1046 73.469 85.6642 73.5168 85.3741 73.96C84.9713 74.5749 84.1475 74.746 83.5345 74.3419C82.9216 73.9384 82.751 73.1121 83.1539 72.4972C83.8481 71.4378 85.017 70.8047 86.2812 70.8047C87.5447 70.8047 88.7136 71.4378 89.4078 72.4972C89.8107 73.1121 89.6401 73.9384 89.0272 74.3419C88.8022 74.49 87.8086 74.8739 87.1876 73.96Z' fill='%23454545'/%3e%3cg clip-path='url(%23clip1_1866_119823)'%3e%3cmask id='mask2_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='144' height='144'%3e%3cpath d='M0 0V144H144V0H0H0Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask2_1866_119823)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72 144C32.235 144 0 111.765 0 72C0 32.235 32.235 0 72 0C111.765 0 144 32.235 144 72C144 111.765 111.765 144 72 144Z' fill='%23BBE3D7'/%3e%3c/g%3e%3cmask id='mask3_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='54' y='36' width='35' height='35'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask3_1866_119823)'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='%23F2F2F2'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71 39L71.3085 39.0035C78.8971 39.1745 85 45.6404 85 53.5915V68L57 67.8442V53.5915C57 45.533 63.2673 39 71 39ZM71 43.6584L70.7334 43.6623C65.6846 43.8094 61.6345 48.1211 61.6345 53.4187V64.1342L80.3646 64.238V53.4187C80.3646 48.0282 76.1712 43.6584 71 43.6584Z' fill='%23DEDEDE'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M90.5966 107.98H53.4036C50.1986 107.98 47.5996 105.381 47.5996 102.176V68.7708C47.5996 65.5658 50.1986 62.9668 53.4036 62.9668H90.5966C93.8026 62.9668 96.4006 65.5658 96.4006 68.7708V102.176C96.4006 105.381 93.8026 107.98 90.5966 107.98Z' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9277 75.3438C69.1662 75.3438 66.9277 77.5836 66.9277 80.3467C66.9277 82.3006 68.0499 83.9884 69.6804 84.8115L69.6813 95.3438H74.1751L74.1761 84.8115C75.8065 83.9884 76.9277 82.3006 76.9277 80.3467C76.9277 77.5836 74.6893 75.3438 71.9277 75.3438Z' fill='%236670A5'/%3e%3cpath d='M61 62H53V63H61V62Z' fill='white'/%3e%3cpath d='M89 62H81V63H89V62Z' fill='white'/%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%23BBE3D7'/%3e%3cpath d='M76.975 32.7732C79.9117 37.5004 83.0276 42.9368 86.1287 48.7329C87.8031 51.8633 90.8123 54.0548 94.2988 54.6825C100.469 55.7938 106.31 56.9717 111.465 58.1712C115.702 59.1572 117.426 64.2717 114.653 67.6338C111.028 72.0263 106.95 76.7279 102.457 81.5292C100.104 84.0461 98.9851 87.4836 99.4054 90.909C100.173 97.1657 100.778 103.076 101.239 108.507C101.61 112.876 97.2381 116.105 93.1944 114.44C87.6662 112.163 82.6966 109.553 77.0542 106.776C73.8839 105.217 70.1732 105.197 66.9841 106.72C61.3559 109.408 56.0667 111.994 50.9051 114.19C46.8445 115.918 42.404 112.698 42.7799 108.29C43.2385 102.918 43.8374 97.0822 44.5947 90.909C45.015 87.4829 43.8971 84.0454 41.5426 81.5286C37.051 76.7273 32.9716 72.0256 29.3475 67.6331C26.5747 64.271 28.2981 59.1565 32.5352 58.1705C37.6902 56.9711 43.5319 55.7931 49.7019 54.6819C53.1878 54.0542 56.1969 51.8626 57.872 48.7322C60.9725 42.9362 64.0884 37.4997 67.0257 32.7725C69.3225 29.0757 74.6775 29.0757 76.975 32.7732Z' fill='%23EDFFF9'/%3e%3cpath opacity='0.5' d='M60.6635 77.2045C60.6635 74.8627 58.2874 72.9648 55.3561 72.9648C52.4249 72.9648 50.0488 74.8627 50.0488 77.2045C50.0488 79.5455 52.4249 81.4441 55.3561 81.4441C58.2874 81.4441 60.6635 79.5455 60.6635 77.2045Z' fill='%23FF83B4'/%3e%3cpath opacity='0.5' d='M93.9499 77.2045C93.9499 74.8627 91.5739 72.9648 88.6426 72.9648C85.712 72.9648 83.3359 74.8627 83.3359 77.2045C83.3359 79.5455 85.712 81.4441 88.6426 81.4441C91.5739 81.4441 93.9499 79.5455 93.9499 77.2045Z' fill='%23FF83B4'/%3e%3cpath d='M71.9988 76.516C70.2801 76.516 68.5613 75.9577 67.1272 74.8417C66.5478 74.3911 66.4424 73.554 66.8923 72.9727C67.3414 72.3915 68.176 72.2858 68.7554 72.7363C70.6648 74.2227 73.3329 74.2227 75.243 72.7363C75.8224 72.2858 76.6562 72.3915 77.1061 72.9727C77.5552 73.554 77.4498 74.3911 76.8704 74.8417C75.4363 75.9577 73.7176 76.516 71.9988 76.516Z' fill='%23454545'/%3e%3cpath d='M58.6251 73.96C58.3276 73.5222 57.8939 73.469 57.718 73.469C57.5421 73.469 57.101 73.5168 56.811 73.96C56.4081 74.5749 55.585 74.746 54.972 74.3419C54.3591 73.9384 54.1885 73.1121 54.5914 72.4972C55.2849 71.4378 56.4538 70.8047 57.718 70.8047C58.9822 70.8047 60.1511 71.4378 60.8453 72.4972C61.2475 73.1121 61.077 73.9384 60.464 74.3419C60.2391 74.49 59.2454 74.8739 58.6251 73.96Z' fill='%23454545'/%3e%3cpath d='M87.1876 73.96C86.8901 73.5222 86.4571 73.469 86.2805 73.469C86.1046 73.469 85.6642 73.5168 85.3741 73.96C84.9713 74.5749 84.1475 74.746 83.5345 74.3419C82.9216 73.9384 82.751 73.1121 83.1539 72.4972C83.8481 71.4378 85.017 70.8047 86.2812 70.8047C87.5447 70.8047 88.7136 71.4378 89.4078 72.4972C89.8107 73.1121 89.6401 73.9384 89.0272 74.3419C88.8022 74.49 87.8086 74.8739 87.1876 73.96Z' fill='%23454545'/%3e%3ccircle cx='72' cy='72' r='72' fill='%23BBE3D7'/%3e%3cpath d='M57.8627 78L65 85.1367C65 85.1367 58.3298 97.4142 46.3849 109.359C42.1198 113.625 35.8091 114.23 32.2895 110.71C28.7706 107.19 29.3753 100.88 33.6404 96.6145C45.5853 84.6696 57.8627 78 57.8627 78Z' fill='%236670A5'/%3e%3cpath d='M49 83.6111C50.3607 85.6362 51.9273 87.5447 53.691 89.3083C55.4553 91.072 57.3631 92.6393 59.3882 94C63.0565 88.8161 65 85.239 65 85.239L57.7604 78C57.7604 78 54.1839 79.9435 49 83.6111Z' fill='%237A86C6'/%3e%3cpath d='M113 62.5C113 80.4489 98.4489 95 80.5 95C62.5511 95 48 80.4489 48 62.5C48 44.5504 62.5511 30 80.5 30C98.4489 30 113 44.5504 113 62.5Z' fill='%236670A5'/%3e%3cpath d='M104 62.5003C104 75.4788 93.4787 86 80.5 86C67.5213 86 57 75.4788 57 62.5003C57 49.5218 67.5213 39 80.5 39C93.4787 39 104 49.5218 104 62.5003Z' fill='%23CCECF9'/%3e%3cpath d='M66.5 64C65.6716 64 65 63.3273 65 62.4976V59.5024C65 58.6727 65.6716 58 66.5 58C67.3284 58 68 58.6727 68 59.5024V62.4974C68.0002 63.3272 67.3284 64 66.5 64Z' fill='%232D2D2D'/%3e%3cpath d='M94.5 64C93.6716 64 93 63.3273 93 62.4976V59.5024C93 58.6727 93.6716 58 94.5 58C95.3284 58 96 58.6727 96 59.5024V62.4974C96.0002 63.3272 95.3284 64 94.5 64Z' fill='%232D2D2D'/%3e%3cpath d='M80.5002 69C78.5064 69 76.6346 68.1213 75.3655 66.5887C74.828 65.9395 74.8906 64.9532 75.5057 64.3859C76.1208 63.8187 77.0552 63.8846 77.5928 64.5338C78.3 65.3879 79.3596 65.8776 80.5001 65.8776C81.6403 65.8776 82.6999 65.3879 83.4071 64.5338C83.9447 63.8846 84.8791 63.8183 85.4943 64.3859C86.1094 64.9532 86.1722 65.9395 85.6344 66.5887C84.3657 68.1213 82.4941 69 80.5002 69Z' fill='%232D2D2D'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_1866_119823'%3e%3crect width='144' height='144' fill='white'/%3e%3c/clipPath%3e%3cclipPath id='clip1_1866_119823'%3e%3crect width='144' height='144' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
2005
|
+
var img$7 = "data:image/svg+xml,%3csvg width='144' height='144' viewBox='0 0 144 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_1866_119823)'%3e%3cmask id='mask0_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='144' height='144'%3e%3cpath d='M0 0V144H144V0H0H0Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask0_1866_119823)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72 144C32.235 144 0 111.765 0 72C0 32.235 32.235 0 72 0C111.765 0 144 32.235 144 72C144 111.765 111.765 144 72 144Z' fill='%236ABFA5'/%3e%3c/g%3e%3cmask id='mask1_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='54' y='36' width='35' height='35'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask1_1866_119823)'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='%23F2F2F2'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71 39L71.3085 39.0035C78.8971 39.1745 85 45.6404 85 53.5915V68L57 67.8442V53.5915C57 45.533 63.2673 39 71 39ZM71 43.6584L70.7334 43.6623C65.6846 43.8094 61.6345 48.1211 61.6345 53.4187V64.1342L80.3646 64.238V53.4187C80.3646 48.0282 76.1712 43.6584 71 43.6584Z' fill='%23DEDEDE'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M90.5966 107.98H53.4036C50.1986 107.98 47.5996 105.381 47.5996 102.176V68.7708C47.5996 65.5658 50.1986 62.9668 53.4036 62.9668H90.5966C93.8026 62.9668 96.4006 65.5658 96.4006 68.7708V102.176C96.4006 105.381 93.8026 107.98 90.5966 107.98Z' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9277 75.3438C69.1662 75.3438 66.9277 77.5836 66.9277 80.3467C66.9277 82.3006 68.0499 83.9884 69.6804 84.8115L69.6813 95.3438H74.1751L74.1761 84.8115C75.8065 83.9884 76.9277 82.3006 76.9277 80.3467C76.9277 77.5836 74.6893 75.3438 71.9277 75.3438Z' fill='%236670A5'/%3e%3cpath d='M61 62H53V63H61V62Z' fill='white'/%3e%3cpath d='M89 62H81V63H89V62Z' fill='white'/%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%236ABFA5'/%3e%3cpath d='M76.975 32.7732C79.9117 37.5004 83.0276 42.9368 86.1287 48.7329C87.8031 51.8633 90.8123 54.0548 94.2988 54.6825C100.469 55.7938 106.31 56.9717 111.465 58.1712C115.702 59.1572 117.426 64.2717 114.653 67.6338C111.028 72.0263 106.95 76.7279 102.457 81.5292C100.104 84.0461 98.9851 87.4836 99.4054 90.909C100.173 97.1657 100.778 103.076 101.239 108.507C101.61 112.876 97.2381 116.105 93.1944 114.44C87.6662 112.163 82.6966 109.553 77.0542 106.776C73.8839 105.217 70.1732 105.197 66.9841 106.72C61.3559 109.408 56.0667 111.994 50.9051 114.19C46.8445 115.918 42.404 112.698 42.7799 108.29C43.2385 102.918 43.8374 97.0822 44.5947 90.909C45.015 87.4829 43.8971 84.0454 41.5426 81.5286C37.051 76.7273 32.9716 72.0256 29.3475 67.6331C26.5747 64.271 28.2981 59.1565 32.5352 58.1705C37.6902 56.9711 43.5319 55.7931 49.7019 54.6819C53.1878 54.0542 56.1969 51.8626 57.872 48.7322C60.9725 42.9362 64.0884 37.4997 67.0257 32.7725C69.3225 29.0757 74.6775 29.0757 76.975 32.7732Z' fill='%23EDFFF9'/%3e%3cpath opacity='0.5' d='M60.6635 77.2045C60.6635 74.8627 58.2874 72.9648 55.3561 72.9648C52.4249 72.9648 50.0488 74.8627 50.0488 77.2045C50.0488 79.5455 52.4249 81.4441 55.3561 81.4441C58.2874 81.4441 60.6635 79.5455 60.6635 77.2045Z' fill='%23FF83B4'/%3e%3cpath opacity='0.5' d='M93.9499 77.2045C93.9499 74.8627 91.5739 72.9648 88.6426 72.9648C85.712 72.9648 83.3359 74.8627 83.3359 77.2045C83.3359 79.5455 85.712 81.4441 88.6426 81.4441C91.5739 81.4441 93.9499 79.5455 93.9499 77.2045Z' fill='%23FF83B4'/%3e%3cpath d='M71.9988 76.516C70.2801 76.516 68.5613 75.9577 67.1272 74.8417C66.5478 74.3911 66.4424 73.554 66.8923 72.9727C67.3414 72.3915 68.176 72.2858 68.7554 72.7363C70.6648 74.2227 73.3329 74.2227 75.243 72.7363C75.8224 72.2858 76.6562 72.3915 77.1061 72.9727C77.5552 73.554 77.4498 74.3911 76.8704 74.8417C75.4363 75.9577 73.7176 76.516 71.9988 76.516Z' fill='%23454545'/%3e%3cpath d='M58.6251 73.96C58.3276 73.5222 57.8939 73.469 57.718 73.469C57.5421 73.469 57.101 73.5168 56.811 73.96C56.4081 74.5749 55.585 74.746 54.972 74.3419C54.3591 73.9384 54.1885 73.1121 54.5914 72.4972C55.2849 71.4378 56.4538 70.8047 57.718 70.8047C58.9822 70.8047 60.1511 71.4378 60.8453 72.4972C61.2475 73.1121 61.077 73.9384 60.464 74.3419C60.2391 74.49 59.2454 74.8739 58.6251 73.96Z' fill='%23454545'/%3e%3cpath d='M87.1876 73.96C86.8901 73.5222 86.4571 73.469 86.2805 73.469C86.1046 73.469 85.6642 73.5168 85.3741 73.96C84.9713 74.5749 84.1475 74.746 83.5345 74.3419C82.9216 73.9384 82.751 73.1121 83.1539 72.4972C83.8481 71.4378 85.017 70.8047 86.2812 70.8047C87.5447 70.8047 88.7136 71.4378 89.4078 72.4972C89.8107 73.1121 89.6401 73.9384 89.0272 74.3419C88.8022 74.49 87.8086 74.8739 87.1876 73.96Z' fill='%23454545'/%3e%3cg clip-path='url(%23clip1_1866_119823)'%3e%3cmask id='mask2_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='144' height='144'%3e%3cpath d='M0 0V144H144V0H0H0Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask2_1866_119823)'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M72 144C32.235 144 0 111.765 0 72C0 32.235 32.235 0 72 0C111.765 0 144 32.235 144 72C144 111.765 111.765 144 72 144Z' fill='%23BBE3D7'/%3e%3c/g%3e%3cmask id='mask3_1866_119823' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='54' y='36' width='35' height='35'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='white'/%3e%3c/mask%3e%3cg mask='url(%23mask3_1866_119823)'%3e%3cpath d='M71.14 36L71.4657 36.003C80.7804 36.1767 88.28 43.7828 88.28 53.14V70.065L54 69.882V53.14C54 43.674 61.673 36 71.14 36ZM71.14 41.472L70.8441 41.4757C64.6488 41.6327 59.674 46.7039 59.674 52.937V65.524L82.605 65.646V52.937C82.605 46.605 77.471 41.472 71.14 41.472Z' fill='%23F2F2F2'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71 39L71.3085 39.0035C78.8971 39.1745 85 45.6404 85 53.5915V68L57 67.8442V53.5915C57 45.533 63.2673 39 71 39ZM71 43.6584L70.7334 43.6623C65.6846 43.8094 61.6345 48.1211 61.6345 53.4187V64.1342L80.3646 64.238V53.4187C80.3646 48.0282 76.1712 43.6584 71 43.6584Z' fill='%23DEDEDE'/%3e%3c/g%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M90.5966 107.98H53.4036C50.1986 107.98 47.5996 105.381 47.5996 102.176V68.7708C47.5996 65.5658 50.1986 62.9668 53.4036 62.9668H90.5966C93.8026 62.9668 96.4006 65.5658 96.4006 68.7708V102.176C96.4006 105.381 93.8026 107.98 90.5966 107.98Z' fill='white'/%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M71.9277 75.3438C69.1662 75.3438 66.9277 77.5836 66.9277 80.3467C66.9277 82.3006 68.0499 83.9884 69.6804 84.8115L69.6813 95.3438H74.1751L74.1761 84.8115C75.8065 83.9884 76.9277 82.3006 76.9277 80.3467C76.9277 77.5836 74.6893 75.3438 71.9277 75.3438Z' fill='%236670A5'/%3e%3cpath d='M61 62H53V63H61V62Z' fill='white'/%3e%3cpath d='M89 62H81V63H89V62Z' fill='white'/%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%23BBE3D7'/%3e%3cpath d='M76.975 32.7732C79.9117 37.5004 83.0276 42.9368 86.1287 48.7329C87.8031 51.8633 90.8123 54.0548 94.2988 54.6825C100.469 55.7938 106.31 56.9717 111.465 58.1712C115.702 59.1572 117.426 64.2717 114.653 67.6338C111.028 72.0263 106.95 76.7279 102.457 81.5292C100.104 84.0461 98.9851 87.4836 99.4054 90.909C100.173 97.1657 100.778 103.076 101.239 108.507C101.61 112.876 97.2381 116.105 93.1944 114.44C87.6662 112.163 82.6966 109.553 77.0542 106.776C73.8839 105.217 70.1732 105.197 66.9841 106.72C61.3559 109.408 56.0667 111.994 50.9051 114.19C46.8445 115.918 42.404 112.698 42.7799 108.29C43.2385 102.918 43.8374 97.0822 44.5947 90.909C45.015 87.4829 43.8971 84.0454 41.5426 81.5286C37.051 76.7273 32.9716 72.0256 29.3475 67.6331C26.5747 64.271 28.2981 59.1565 32.5352 58.1705C37.6902 56.9711 43.5319 55.7931 49.7019 54.6819C53.1878 54.0542 56.1969 51.8626 57.872 48.7322C60.9725 42.9362 64.0884 37.4997 67.0257 32.7725C69.3225 29.0757 74.6775 29.0757 76.975 32.7732Z' fill='%23EDFFF9'/%3e%3cpath opacity='0.5' d='M60.6635 77.2045C60.6635 74.8627 58.2874 72.9648 55.3561 72.9648C52.4249 72.9648 50.0488 74.8627 50.0488 77.2045C50.0488 79.5455 52.4249 81.4441 55.3561 81.4441C58.2874 81.4441 60.6635 79.5455 60.6635 77.2045Z' fill='%23FF83B4'/%3e%3cpath opacity='0.5' d='M93.9499 77.2045C93.9499 74.8627 91.5739 72.9648 88.6426 72.9648C85.712 72.9648 83.3359 74.8627 83.3359 77.2045C83.3359 79.5455 85.712 81.4441 88.6426 81.4441C91.5739 81.4441 93.9499 79.5455 93.9499 77.2045Z' fill='%23FF83B4'/%3e%3cpath d='M71.9988 76.516C70.2801 76.516 68.5613 75.9577 67.1272 74.8417C66.5478 74.3911 66.4424 73.554 66.8923 72.9727C67.3414 72.3915 68.176 72.2858 68.7554 72.7363C70.6648 74.2227 73.3329 74.2227 75.243 72.7363C75.8224 72.2858 76.6562 72.3915 77.1061 72.9727C77.5552 73.554 77.4498 74.3911 76.8704 74.8417C75.4363 75.9577 73.7176 76.516 71.9988 76.516Z' fill='%23454545'/%3e%3cpath d='M58.6251 73.96C58.3276 73.5222 57.8939 73.469 57.718 73.469C57.5421 73.469 57.101 73.5168 56.811 73.96C56.4081 74.5749 55.585 74.746 54.972 74.3419C54.3591 73.9384 54.1885 73.1121 54.5914 72.4972C55.2849 71.4378 56.4538 70.8047 57.718 70.8047C58.9822 70.8047 60.1511 71.4378 60.8453 72.4972C61.2475 73.1121 61.077 73.9384 60.464 74.3419C60.2391 74.49 59.2454 74.8739 58.6251 73.96Z' fill='%23454545'/%3e%3cpath d='M87.1876 73.96C86.8901 73.5222 86.4571 73.469 86.2805 73.469C86.1046 73.469 85.6642 73.5168 85.3741 73.96C84.9713 74.5749 84.1475 74.746 83.5345 74.3419C82.9216 73.9384 82.751 73.1121 83.1539 72.4972C83.8481 71.4378 85.017 70.8047 86.2812 70.8047C87.5447 70.8047 88.7136 71.4378 89.4078 72.4972C89.8107 73.1121 89.6401 73.9384 89.0272 74.3419C88.8022 74.49 87.8086 74.8739 87.1876 73.96Z' fill='%23454545'/%3e%3ccircle cx='72' cy='72' r='72' fill='%23BBE3D7'/%3e%3cpath d='M57.8627 78L65 85.1367C65 85.1367 58.3298 97.4142 46.3849 109.359C42.1198 113.625 35.8091 114.23 32.2895 110.71C28.7706 107.19 29.3753 100.88 33.6404 96.6145C45.5853 84.6696 57.8627 78 57.8627 78Z' fill='%236670A5'/%3e%3cpath d='M49 83.6111C50.3607 85.6362 51.9273 87.5447 53.691 89.3083C55.4553 91.072 57.3631 92.6393 59.3882 94C63.0565 88.8161 65 85.239 65 85.239L57.7604 78C57.7604 78 54.1839 79.9435 49 83.6111Z' fill='%237A86C6'/%3e%3cpath d='M113 62.5C113 80.4489 98.4489 95 80.5 95C62.5511 95 48 80.4489 48 62.5C48 44.5504 62.5511 30 80.5 30C98.4489 30 113 44.5504 113 62.5Z' fill='%236670A5'/%3e%3cpath d='M104 62.5003C104 75.4788 93.4787 86 80.5 86C67.5213 86 57 75.4788 57 62.5003C57 49.5218 67.5213 39 80.5 39C93.4787 39 104 49.5218 104 62.5003Z' fill='%23CCECF9'/%3e%3cpath d='M66.5 64C65.6716 64 65 63.3273 65 62.4976V59.5024C65 58.6727 65.6716 58 66.5 58C67.3284 58 68 58.6727 68 59.5024V62.4974C68.0002 63.3272 67.3284 64 66.5 64Z' fill='%232D2D2D'/%3e%3cpath d='M94.5 64C93.6716 64 93 63.3273 93 62.4976V59.5024C93 58.6727 93.6716 58 94.5 58C95.3284 58 96 58.6727 96 59.5024V62.4974C96.0002 63.3272 95.3284 64 94.5 64Z' fill='%232D2D2D'/%3e%3cpath d='M80.5002 69C78.5064 69 76.6346 68.1213 75.3655 66.5887C74.828 65.9395 74.8906 64.9532 75.5057 64.3859C76.1208 63.8187 77.0552 63.8846 77.5928 64.5338C78.3 65.3879 79.3596 65.8776 80.5001 65.8776C81.6403 65.8776 82.6999 65.3879 83.4071 64.5338C83.9447 63.8846 84.8791 63.8183 85.4943 64.3859C86.1094 64.9532 86.1722 65.9395 85.6344 66.5887C84.3657 68.1213 82.4941 69 80.5002 69Z' fill='%232D2D2D'/%3e%3c/g%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_1866_119823'%3e%3crect width='144' height='144' fill='white'/%3e%3c/clipPath%3e%3cclipPath id='clip1_1866_119823'%3e%3crect width='144' height='144' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e";
|
|
2007
2006
|
|
|
2008
|
-
var img$
|
|
2007
|
+
var img$6 = "data:image/svg+xml,%3csvg width='144' height='144' viewBox='0 0 144 144' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M72 144C111.765 144 144 111.765 144 72C144 32.2355 111.765 0 72 0C32.2355 0 0 32.2355 0 72C0 111.765 32.2355 144 72 144Z' fill='%236ABFA5'/%3e%3cpath d='M76.975 32.7732C79.9117 37.5004 83.0276 42.9368 86.1287 48.7329C87.8031 51.8633 90.8123 54.0548 94.2988 54.6825C100.469 55.7938 106.31 56.9717 111.465 58.1712C115.702 59.1572 117.426 64.2717 114.653 67.6338C111.028 72.0263 106.95 76.7279 102.457 81.5292C100.104 84.0461 98.9851 87.4836 99.4054 90.909C100.173 97.1657 100.778 103.076 101.239 108.507C101.61 112.876 97.2381 116.105 93.1944 114.44C87.6662 112.163 82.6966 109.553 77.0542 106.776C73.8839 105.217 70.1732 105.197 66.9841 106.72C61.3559 109.408 56.0667 111.994 50.9051 114.19C46.8445 115.918 42.404 112.698 42.7799 108.29C43.2385 102.918 43.8374 97.0822 44.5947 90.909C45.015 87.4829 43.8971 84.0454 41.5426 81.5286C37.051 76.7273 32.9716 72.0256 29.3475 67.6331C26.5747 64.271 28.2981 59.1565 32.5352 58.1705C37.6902 56.9711 43.5319 55.7931 49.7019 54.6819C53.1878 54.0542 56.1969 51.8626 57.872 48.7322C60.9725 42.9362 64.0884 37.4997 67.0257 32.7725C69.3225 29.0757 74.6775 29.0757 76.975 32.7732Z' fill='%23EDFFF9'/%3e%3cpath opacity='0.5' d='M60.6643 77.204C60.6643 74.8623 58.2883 72.9644 55.357 72.9644C52.4257 72.9644 50.0497 74.8623 50.0497 77.204C50.0497 79.545 52.4257 81.4436 55.357 81.4436C58.2883 81.4436 60.6643 79.545 60.6643 77.204Z' fill='%23FF83B4'/%3e%3cpath opacity='0.5' d='M93.9503 77.204C93.9503 74.8623 91.5743 72.9644 88.643 72.9644C85.7124 72.9644 83.3364 74.8623 83.3364 77.204C83.3364 79.545 85.7124 81.4436 88.643 81.4436C91.5743 81.4436 93.9503 79.545 93.9503 77.204Z' fill='%23FF83B4'/%3e%3cpath d='M72 76.516C70.2813 76.516 68.5625 75.9577 67.1285 74.8417C66.5491 74.3911 66.4437 73.554 66.8935 72.9727C67.3426 72.3915 68.1772 72.2858 68.7566 72.7363C70.666 74.2227 73.3341 74.2227 75.2442 72.7363C75.8236 72.2858 76.6575 72.3915 77.1073 72.9727C77.5564 73.554 77.451 74.3911 76.8716 74.8417C75.4375 75.9577 73.7188 76.516 72 76.516Z' fill='%23454545'/%3e%3cpath d='M58.626 73.96C58.3286 73.5222 57.8949 73.469 57.719 73.469C57.5431 73.469 57.102 73.5168 56.8119 73.96C56.4091 74.5749 55.586 74.746 54.973 74.3419C54.36 73.9384 54.1895 73.1121 54.5923 72.4972C55.2859 71.4378 56.4548 70.8047 57.719 70.8047C58.9832 70.8047 60.1521 71.4378 60.8463 72.4972C61.2485 73.1121 61.0779 73.9384 60.465 74.3419C60.24 74.49 59.2464 74.8739 58.626 73.96Z' fill='%23454545'/%3e%3cpath d='M87.1882 73.96C86.8907 73.5222 86.4577 73.469 86.2811 73.469C86.1052 73.469 85.6648 73.5168 85.3747 73.96C84.9719 74.5749 84.1481 74.746 83.5351 74.3419C82.9222 73.9384 82.7516 73.1121 83.1545 72.4972C83.8487 71.4378 85.0176 70.8047 86.2818 70.8047C87.5453 70.8047 88.7142 71.4378 89.4084 72.4972C89.8113 73.1121 89.6407 73.9384 89.0278 74.3419C88.8028 74.49 87.8092 74.8739 87.1882 73.96Z' fill='%23454545'/%3e%3c/svg%3e";
|
|
2009
2008
|
|
|
2010
2009
|
const imageSrc = {
|
|
2011
|
-
"no-open-alerts": img$
|
|
2012
|
-
"search-not-found": img$
|
|
2013
|
-
"no-notes-found": img$
|
|
2010
|
+
"no-open-alerts": img$8,
|
|
2011
|
+
"search-not-found": img$7,
|
|
2012
|
+
"no-notes-found": img$6
|
|
2014
2013
|
};
|
|
2015
2014
|
const EmptyListMessage = ({ text, imageName, dataTestId = "empty-list-message", className }) => {
|
|
2016
2015
|
return React__namespace.default.createElement(
|
|
@@ -2021,25 +2020,25 @@ const EmptyListMessage = ({ text, imageName, dataTestId = "empty-list-message",
|
|
|
2021
2020
|
);
|
|
2022
2021
|
};
|
|
2023
2022
|
|
|
2024
|
-
var img$
|
|
2023
|
+
var img$5 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='68' height='20' viewBox='0 0 68 20'%3e %3cg fill='none' fill-rule='nonzero'%3e %3ccircle cx='10' cy='10' r='10' fill='%23F09'%3e %3canimate attributeName='opacity' dur='2s' values='1%3b0.6%3b1' repeatCount='indefinite' begin='0.1'/%3e %3canimate attributeName='r' dur='2s' repeatCount='indefinite' values='10%3b8%3b10' begin='0.1'/%3e %3c/circle%3e %3ccircle cx='34' cy='10' r='10' fill='%236ABFA5'%3e %3canimate attributeName='opacity' dur='2s' values='1%3b0.6%3b1' repeatCount='indefinite' begin='0.6'/%3e %3canimate attributeName='r' dur='2s' repeatCount='indefinite' values='10%3b8%3b10' begin='0.6'/%3e %3c/circle%3e %3ccircle cx='58' cy='10' r='10' fill='%236670A5'%3e %3canimate attributeName='opacity' dur='2s' values='1%3b0.6%3b1' repeatCount='indefinite' begin='1.1'/%3e %3canimate attributeName='r' dur='2s' repeatCount='indefinite' values='10%3b8%3b10' begin='1.1'/%3e %3c/circle%3e %3c/g%3e%3c/svg%3e";
|
|
2025
2024
|
|
|
2026
|
-
var img$
|
|
2025
|
+
var img$4 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto%3b background: none%3b display: block%3b shape-rendering: auto%3b' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3e%3ccircle cx='50' cy='50' fill='none' stroke='%23009fe3' stroke-width='16' r='36' stroke-dasharray='169.64600329384882 58.548667764616276'%3e %3canimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1.1111111111111112s' values='0 50 50%3b360 50 50' keyTimes='0%3b1'%3e%3c/animateTransform%3e%3c/circle%3e%3c/svg%3e";
|
|
2027
2026
|
|
|
2028
|
-
var img$
|
|
2027
|
+
var img$3 = "data:image/svg+xml,%3c%3fxml version='1.0' encoding='utf-8'%3f%3e%3csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto%3b background: none%3b display: block%3b shape-rendering: auto%3b' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3e%3ccircle cx='50' cy='50' fill='none' stroke='%23cbd5e1' stroke-width='16' r='36' stroke-dasharray='169.64600329384882 58.548667764616276'%3e %3canimateTransform attributeName='transform' type='rotate' repeatCount='indefinite' dur='1.1111111111111112s' values='0 50 50%3b360 50 50' keyTimes='0%3b1'%3e%3c/animateTransform%3e%3c/circle%3e%3c!-- %5bldio%5d generated by https://loading.io/ --%3e%3c/svg%3e";
|
|
2029
2028
|
|
|
2030
2029
|
var css_248z$d = "/**\n * --- DEPRECATED ---\n * DON'T USE ANYTHING FROM THIS FILE IN FUTURE CHANGES. WE SHOULD BE\n * USING TAILWIND CLASSES DIRECTLY IN OUR COMPONENTS.\n */\n.cweb-loading {\n display: flex;\n justify-content: center;\n align-items: center;\n}\n.cweb-loading .cweb-loading-text {\n margin-bottom: 24px;\n}\n.cweb-loading.as-modal {\n position: fixed;\n left: 0;\n right: 0;\n top: 0;\n bottom: 0;\n z-index: 9999;\n background-color: rgba(255, 255, 255, 0.6);\n}\n.cweb-loading.as-modal .cweb-loading-panel {\n position: relative;\n width: 320px;\n min-height: 120px;\n border-radius: 4px;\n padding: 16px;\n box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.36);\n background-color: #ffffff;\n display: flex;\n flex-direction: column;\n justify-content: flex-start;\n align-items: center;\n}\n.cweb-loading.as-modal .cweb-loading-panel:before {\n position: absolute;\n content: \"\";\n top: 0;\n left: 0;\n right: 0;\n z-index: 1;\n height: 3px;\n background-color: #6abfa5;\n border-top-left-radius: 4px;\n border-top-right-radius: 4px;\n}";
|
|
2031
2030
|
styleInject(css_248z$d);
|
|
2032
2031
|
|
|
2033
2032
|
function LoadingIndicator(_a) {
|
|
2034
2033
|
var { asModal = false, asSpinner = false, className = "", spinnerColor = "blue", dataTestId = "loading-indicator" } = _a, restProps = __rest(_a, ["asModal", "asSpinner", "className", "spinnerColor", "dataTestId"]);
|
|
2035
|
-
const spinnerToRender = spinnerColor === "blue" ? img$
|
|
2034
|
+
const spinnerToRender = spinnerColor === "blue" ? img$4 : img$3;
|
|
2036
2035
|
const containerClassName = classNames__default.default("cweb-loading", className, {
|
|
2037
2036
|
"as-modal": asModal
|
|
2038
2037
|
});
|
|
2039
2038
|
return React__namespace.default.createElement(
|
|
2040
2039
|
"div",
|
|
2041
2040
|
Object.assign({}, restProps, { className: containerClassName, "data-test-id": dataTestId, role: "progressbar" }),
|
|
2042
|
-
React__namespace.default.createElement("img", { src: asSpinner ? spinnerToRender : img$
|
|
2041
|
+
React__namespace.default.createElement("img", { src: asSpinner ? spinnerToRender : img$5, "data-chromatic": "ignore", className: classNames__default.default("ui-fill-current ui-stroke-current ui-text-gray-600", {
|
|
2043
2042
|
"ui-h-4 ui-w-4": asSpinner,
|
|
2044
2043
|
"ui-h-12 ui-w-12": !asSpinner
|
|
2045
2044
|
}) })
|
|
@@ -2493,222 +2492,22 @@ const Badge = (props) => {
|
|
|
2493
2492
|
);
|
|
2494
2493
|
};
|
|
2495
2494
|
|
|
2496
|
-
var img$b = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M7.05037 5.63664C6.65984 5.24612 6.02668 5.24612 5.63615 5.63664C5.24563 6.02717 5.24563 6.66033 5.63616 7.05086L10.5862 12.0009L5.63618 16.9509C5.24566 17.3415 5.24566 17.9746 5.63618 18.3652C6.02671 18.7557 6.65987 18.7557 7.0504 18.3652L12.0004 13.4151L16.9499 18.3646C17.3404 18.7551 17.9736 18.7551 18.3641 18.3646C18.7546 17.974 18.7546 17.3409 18.3641 16.9504L13.4146 12.0009L18.3641 7.05145C18.7546 6.66093 18.7546 6.02776 18.3641 5.63724C17.9736 5.24671 17.3404 5.24671 16.9499 5.63724L12.0004 10.5867L7.05037 5.63664Z' fill='%23EDF2F7'/%3e%3c/svg%3e";
|
|
2497
|
-
|
|
2498
|
-
var img$a = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3 6C3 5.44772 3.44772 5 4 5H20C20.5523 5 21 5.44772 21 6C21 6.55228 20.5523 7 20 7H4C3.44772 7 3 6.55228 3 6Z' fill='%23EDF2F7'/%3e%3cpath d='M3 12C3 11.4477 3.44772 11 4 11H20C20.5523 11 21 11.4477 21 12C21 12.5523 20.5523 13 20 13H4C3.44772 13 3 12.5523 3 12Z' fill='%23EDF2F7'/%3e%3cpath d='M4 17C3.44772 17 3 17.4477 3 18C3 18.5523 3.44772 19 4 19H20C20.5523 19 21 18.5523 21 18C21 17.4477 20.5523 17 20 17H4Z' fill='%23EDF2F7'/%3e%3c/svg%3e";
|
|
2499
|
-
|
|
2500
|
-
var img$9 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.31008 6.70978C8.92008 7.09978 8.92008 7.72978 9.31008 8.11978L13.1901 11.9998L9.31008 15.8798C8.92008 16.2698 8.92008 16.8998 9.31008 17.2898C9.70008 17.6798 10.3301 17.6798 10.7201 17.2898L15.3101 12.6998C15.7001 12.3098 15.7001 11.6798 15.3101 11.2898L10.7201 6.69978C10.3401 6.31978 9.70008 6.31978 9.31008 6.70978Z' fill='%230074DD'/%3e%3c/svg%3e";
|
|
2501
|
-
|
|
2502
|
-
var img$8 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.31008 6.70978C8.92008 7.09978 8.92008 7.72978 9.31008 8.11978L13.1901 11.9998L9.31008 15.8798C8.92008 16.2698 8.92008 16.8998 9.31008 17.2898C9.70008 17.6798 10.3301 17.6798 10.7201 17.2898L15.3101 12.6998C15.7001 12.3098 15.7001 11.6798 15.3101 11.2898L10.7201 6.69978C10.3401 6.31978 9.70008 6.31978 9.31008 6.70978Z' fill='%23EDF2F7'/%3e%3c/svg%3e";
|
|
2503
|
-
|
|
2504
|
-
var img$7 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.6899 17.2902C14.0799 16.9002 14.0799 16.2702 13.6899 15.8802L9.80992 12.0002L13.6899 8.12022C14.0799 7.73022 14.0799 7.10022 13.6899 6.71022C13.2999 6.32022 12.6699 6.32022 12.2799 6.71022L7.68992 11.3002C7.29992 11.6902 7.29992 12.3202 7.68992 12.7102L12.2799 17.3002C12.6599 17.6802 13.2999 17.6802 13.6899 17.2902Z' fill='%230074DD'/%3e%3c/svg%3e";
|
|
2505
|
-
|
|
2506
|
-
var img$6 = "data:image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M13.6899 17.2902C14.0799 16.9002 14.0799 16.2702 13.6899 15.8802L9.80992 12.0002L13.6899 8.12022C14.0799 7.73022 14.0799 7.10022 13.6899 6.71022C13.2999 6.32022 12.6699 6.32022 12.2799 6.71022L7.68992 11.3002C7.29992 11.6902 7.29992 12.3202 7.68992 12.7102L12.2799 17.3002C12.6599 17.6802 13.2999 17.6802 13.6899 17.2902Z' fill='%23EDF2F7'/%3e%3c/svg%3e";
|
|
2507
|
-
|
|
2508
|
-
var img$5 = "data:image/svg+xml,%3csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.5006 11.0006H11.7106L11.4306 10.7306C12.6306 9.33063 13.2506 7.42063 12.9106 5.39063C12.4406 2.61063 10.1206 0.390626 7.32063 0.0506256C3.09063 -0.469374 -0.469374 3.09063 0.0506256 7.32063C0.390626 10.1206 2.61063 12.4406 5.39063 12.9106C7.42063 13.2506 9.33063 12.6306 10.7306 11.4306L11.0006 11.7106V12.5006L15.2506 16.7506C15.6606 17.1606 16.3306 17.1606 16.7406 16.7506C17.1506 16.3406 17.1506 15.6706 16.7406 15.2606L12.5006 11.0006ZM6.50063 11.0006C4.01063 11.0006 2.00063 8.99063 2.00063 6.50063C2.00063 4.01063 4.01063 2.00063 6.50063 2.00063C8.99063 2.00063 11.0006 4.01063 11.0006 6.50063C11.0006 8.99063 8.99063 11.0006 6.50063 11.0006Z' fill='%230074DD'/%3e%3c/svg%3e";
|
|
2509
|
-
|
|
2510
|
-
var img$4 = "data:image/svg+xml,%3csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M2.05086 0.636643C1.66033 0.246119 1.02717 0.246119 0.636643 0.636643C0.246119 1.02717 0.246119 1.66033 0.636643 2.05086L5.5867 7.00092L0.636672 11.9509C0.246148 12.3415 0.246148 12.9746 0.636672 13.3652C1.0272 13.7557 1.66036 13.7557 2.05089 13.3652L7.00091 8.41513L11.9503 13.3646C12.3409 13.7551 12.974 13.7551 13.3646 13.3646C13.7551 12.974 13.7551 12.3409 13.3646 11.9504L8.41513 7.00092L13.3646 2.05145C13.7551 1.66093 13.7551 1.02776 13.3646 0.637237C12.9741 0.246712 12.3409 0.246713 11.9504 0.637237L7.00092 5.5867L2.05086 0.636643Z' fill='%230074DD'/%3e%3c/svg%3e";
|
|
2511
|
-
|
|
2512
|
-
var img$3 = "data:image/svg+xml,%3csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M8.58663 1.04906C8.93899 0.258571 10.061 0.258571 10.4134 1.04906L12.1659 4.9807C12.3112 5.30673 12.6193 5.53057 12.9743 5.56804L17.2551 6.01985C18.1158 6.11069 18.4625 7.17779 17.8196 7.75718L14.6219 10.6389C14.3568 10.8778 14.2391 11.24 14.3131 11.5892L15.2063 15.8001C15.3858 16.6467 14.4781 17.3062 13.7284 16.8738L9.99962 14.7232C9.69041 14.5448 9.30959 14.5448 9.00038 14.7232L5.27159 16.8738C4.52189 17.3062 3.61416 16.6467 3.79373 15.8001L4.68686 11.5892C4.76093 11.24 4.64325 10.8778 4.37808 10.6389L1.18043 7.75718C0.537518 7.17779 0.88424 6.11069 1.74492 6.01985L6.0257 5.56804C6.38068 5.53057 6.68877 5.30673 6.8341 4.9807L8.58663 1.04906Z' fill='%23009FE3'/%3e%3c/svg%3e";
|
|
2513
|
-
|
|
2514
|
-
var img$2 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e %3cg transform='translate(1.5%2c 0.5)'%3e %3cpath fill='none' fill-rule='evenodd' stroke='%230074DD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12.643 3.357L6.03 9.97l-2.674 2.674L0 9.286'/%3e %3c/g%3e%3c/svg%3e";
|
|
2515
|
-
|
|
2516
|
-
const iconSrc = {
|
|
2517
|
-
// These need to be converted to svg files instead of components and added in
|
|
2518
|
-
// "add": AddIcon,
|
|
2519
|
-
// "delete": DeleteIcon,
|
|
2520
|
-
// "edit": EditIcon,
|
|
2521
|
-
close: img$b,
|
|
2522
|
-
hamburger: img$a,
|
|
2523
|
-
"chevron-right-blue": img$9,
|
|
2524
|
-
"chevron-left-blue": img$7,
|
|
2525
|
-
"chevron-right-grey": img$8,
|
|
2526
|
-
"chevron-left-grey": img$6,
|
|
2527
|
-
search: img$5,
|
|
2528
|
-
star: img$3,
|
|
2529
|
-
check: img$2,
|
|
2530
|
-
"search-cancel": img$4
|
|
2531
|
-
};
|
|
2532
|
-
const ButtonIcon = (props) => {
|
|
2533
|
-
return React__namespace.createElement("img", { src: iconSrc[props.name], className: props.className });
|
|
2534
|
-
};
|
|
2535
|
-
|
|
2536
|
-
const BUTTON_ROLES = {
|
|
2537
|
-
PRIMARY: "primary",
|
|
2538
|
-
SECONDARY: "secondary",
|
|
2539
|
-
SECONDARY_DARK: "secondaryDark",
|
|
2540
|
-
TERTIARY: "tertiary",
|
|
2541
|
-
QUATERNARY: "quaternary",
|
|
2542
|
-
NEGATIVE: "negative",
|
|
2543
|
-
TEXT: "text",
|
|
2544
|
-
LINK: "link",
|
|
2545
|
-
ICON: "icon"
|
|
2546
|
-
};
|
|
2547
|
-
|
|
2548
|
-
function Button(props) {
|
|
2549
|
-
const { text = "", role: propsRole = BUTTON_ROLES.PRIMARY, type = "button", title = "", link = "", isPending = false, isDisabled = false, onClick, className = "", iconName = "", hasIcon: hasIconProps = false, dynamicIcon } = props, otherAttributes = __rest(props, ["text", "role", "type", "title", "link", "isPending", "isDisabled", "onClick", "className", "iconName", "hasIcon", "dynamicIcon"]);
|
|
2550
|
-
const generatedId = React__namespace.default.useId();
|
|
2551
|
-
const buttonTooltipId = otherAttributes.id ? `button-tooltip-id-${otherAttributes.id}` : `button-tooltip-id-${generatedId}`;
|
|
2552
|
-
const hasAddIcon = className.includes("add-button");
|
|
2553
|
-
const hasEditIcon = className.includes("edit-button");
|
|
2554
|
-
const hasDeleteIcon = className.includes("delete-button");
|
|
2555
|
-
const hasPrevIcon = className.includes("prev-button");
|
|
2556
|
-
const hasNextIcon = className.includes("next-button");
|
|
2557
|
-
const hasChartIcon = className.includes("chart-button");
|
|
2558
|
-
const hasPrintIcon = className.includes("print-button");
|
|
2559
|
-
const hasIcon = hasIconProps || iconName || hasAddIcon || hasEditIcon || hasDeleteIcon || hasPrevIcon || hasNextIcon || hasChartIcon || hasPrintIcon || dynamicIcon;
|
|
2560
|
-
const isIconOnly = hasIcon && !text;
|
|
2561
|
-
const [role, setRole] = React.useState(propsRole);
|
|
2562
|
-
React.useEffect(() => {
|
|
2563
|
-
if ((hasAddIcon || hasEditIcon) && !text) {
|
|
2564
|
-
setRole(BUTTON_ROLES.SECONDARY);
|
|
2565
|
-
} else if (propsRole === BUTTON_ROLES.TEXT || propsRole === BUTTON_ROLES.LINK) {
|
|
2566
|
-
setRole(BUTTON_ROLES.TERTIARY);
|
|
2567
|
-
} else if (hasDeleteIcon) {
|
|
2568
|
-
setRole(BUTTON_ROLES.NEGATIVE);
|
|
2569
|
-
}
|
|
2570
|
-
}, []);
|
|
2571
|
-
const isButtonDisabled = role !== BUTTON_ROLES.LINK && isDisabled || isPending;
|
|
2572
|
-
const isNonPrimaryNonNegative = role === BUTTON_ROLES.SECONDARY || role === BUTTON_ROLES.TERTIARY || role === BUTTON_ROLES.QUATERNARY;
|
|
2573
|
-
function handleClick(event) {
|
|
2574
|
-
if (link) {
|
|
2575
|
-
router.navigate(link);
|
|
2576
|
-
return;
|
|
2577
|
-
}
|
|
2578
|
-
if (isButtonDisabled || !onClick) {
|
|
2579
|
-
event.preventDefault();
|
|
2580
|
-
return;
|
|
2581
|
-
}
|
|
2582
|
-
onClick(event);
|
|
2583
|
-
}
|
|
2584
|
-
const buttonRolesStyling = {
|
|
2585
|
-
primary: [
|
|
2586
|
-
"ui-bg-primary",
|
|
2587
|
-
"hover:ui-bg-primary-dark",
|
|
2588
|
-
"ui-text-white",
|
|
2589
|
-
"focus:ui-outline-primary",
|
|
2590
|
-
"ui-border",
|
|
2591
|
-
"ui-border-solid",
|
|
2592
|
-
"ui-border-primary-transparent"
|
|
2593
|
-
],
|
|
2594
|
-
secondary: ["ui-bg-slate-200"],
|
|
2595
|
-
secondaryDark: ["ui-bg-slate-700", "hover:ui-bg-slate-600"],
|
|
2596
|
-
tertiary: ["ui-bg-transparent", "ui-shadow-none", "hover:ui-bg-slate-100"],
|
|
2597
|
-
quaternary: [
|
|
2598
|
-
"ui-bg-white",
|
|
2599
|
-
"ui-shadow-none",
|
|
2600
|
-
"ui-border",
|
|
2601
|
-
"ui-border-solid",
|
|
2602
|
-
"ui-border-quaternary",
|
|
2603
|
-
"hover:ui-border-slate-200"
|
|
2604
|
-
],
|
|
2605
|
-
negative: [
|
|
2606
|
-
"ui-bg-negative",
|
|
2607
|
-
"ui-text-negative-dark",
|
|
2608
|
-
"hover:ui-text-negative-darker",
|
|
2609
|
-
"hover:ui-border-negative-border",
|
|
2610
|
-
"focus:ui-outline-negative",
|
|
2611
|
-
"ui-border",
|
|
2612
|
-
"ui-border-transparent"
|
|
2613
|
-
],
|
|
2614
|
-
link: [],
|
|
2615
|
-
text: [],
|
|
2616
|
-
icon: []
|
|
2617
|
-
};
|
|
2618
|
-
const containerClassName = classNames__default.default(
|
|
2619
|
-
// default button classes
|
|
2620
|
-
[
|
|
2621
|
-
"ui-h-11",
|
|
2622
|
-
"focus:ui-outline-none",
|
|
2623
|
-
"ui-shadow-sm",
|
|
2624
|
-
"ui-transition-outline ui-transition-colors ui-duration-300 ui-ease-in-out",
|
|
2625
|
-
"ui-cursor-pointer",
|
|
2626
|
-
"ui-rounded-full",
|
|
2627
|
-
"ui-leading-none"
|
|
2628
|
-
],
|
|
2629
|
-
className,
|
|
2630
|
-
{
|
|
2631
|
-
"ui-w-11": isIconOnly,
|
|
2632
|
-
"ui-opacity-50 ui-pointer-events-none": isButtonDisabled,
|
|
2633
|
-
"hover:ui-text-primary-dark ui-text-primary": isNonPrimaryNonNegative,
|
|
2634
|
-
"ui-border ui-border-transparent": isNonPrimaryNonNegative,
|
|
2635
|
-
"hover:ui-border-slate-200 focus:ui-outline-primary": isNonPrimaryNonNegative,
|
|
2636
|
-
"ui-text-secondary-dark ui-opacity-75": isButtonDisabled && isNonPrimaryNonNegative
|
|
2637
|
-
},
|
|
2638
|
-
buttonRolesStyling[role]
|
|
2639
|
-
);
|
|
2640
|
-
const spinnerClassNames = classNames__default.default({
|
|
2641
|
-
"ui-hidden": !isPending,
|
|
2642
|
-
"ui-text-white": role === BUTTON_ROLES.PRIMARY,
|
|
2643
|
-
"ui-text-dark-gray": isNonPrimaryNonNegative,
|
|
2644
|
-
"ui-text-negative-dark": role === BUTTON_ROLES.TERTIARY
|
|
2645
|
-
});
|
|
2646
|
-
const buttonTextClasses = classNames__default.default(["ui-text-sm", "ui-font-medium"], {
|
|
2647
|
-
"ui-invisible": isPending,
|
|
2648
|
-
"ui-hidden": !text,
|
|
2649
|
-
"ui-ml-3": hasIcon
|
|
2650
|
-
});
|
|
2651
|
-
const tooltipAttrs = title ? {
|
|
2652
|
-
"data-tip": true,
|
|
2653
|
-
"data-for": buttonTooltipId
|
|
2654
|
-
} : {};
|
|
2655
|
-
const buttonComponent = React__namespace.default.createElement(
|
|
2656
|
-
"button",
|
|
2657
|
-
Object.assign({}, otherAttributes, { "aria-disabled": isButtonDisabled, disabled: isButtonDisabled, className: containerClassName, onClick: handleClick, type, title, "data-role": role }),
|
|
2658
|
-
React__namespace.default.createElement(
|
|
2659
|
-
"span",
|
|
2660
|
-
Object.assign({}, tooltipAttrs, { className: classNames__default.default(
|
|
2661
|
-
"ui-relative ui-flex ui-h-full ui-w-full ui-flex-row ui-items-center ui-justify-center",
|
|
2662
|
-
// ensuring the buttons are 44px high including content
|
|
2663
|
-
{
|
|
2664
|
-
"ui-px-2 ui-py-2": isIconOnly,
|
|
2665
|
-
"ui-px-4 ui-py-3": !isIconOnly
|
|
2666
|
-
}
|
|
2667
|
-
) }),
|
|
2668
|
-
hasAddIcon && React__namespace.default.createElement(AddIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2669
|
-
hasEditIcon && React__namespace.default.createElement(EditIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2670
|
-
hasDeleteIcon && React__namespace.default.createElement(DeleteIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2671
|
-
hasPrevIcon && React__namespace.default.createElement(LeftArrowIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2672
|
-
hasNextIcon && React__namespace.default.createElement(RightArrowIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2673
|
-
hasChartIcon && React__namespace.default.createElement(ChartIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2674
|
-
hasPrintIcon && React__namespace.default.createElement(PrintIcon, { className: "ui-h-5 ui-w-5" }),
|
|
2675
|
-
iconName && React__namespace.default.createElement(ButtonIcon, { name: iconName }),
|
|
2676
|
-
dynamicIcon && React__namespace.default.createElement(dynamicIcon, { className: "ui-w-5 ui-h-5" }),
|
|
2677
|
-
React__namespace.default.createElement(
|
|
2678
|
-
"span",
|
|
2679
|
-
{ className: "ui-absolute ui-left-1/2 ui-top-1/2 ui--translate-x-1/2 ui--translate-y-1/2 ui-transform ui-opacity-100" },
|
|
2680
|
-
React__namespace.default.createElement(Spinner, { className: spinnerClassNames })
|
|
2681
|
-
),
|
|
2682
|
-
React__namespace.default.createElement("span", { className: buttonTextClasses }, text)
|
|
2683
|
-
)
|
|
2684
|
-
);
|
|
2685
|
-
if (title) {
|
|
2686
|
-
return React__namespace.default.createElement(
|
|
2687
|
-
React__namespace.default.Fragment,
|
|
2688
|
-
null,
|
|
2689
|
-
React__namespace.default.createElement(ReactTooltip__default.default, { effect: "solid", id: buttonTooltipId }, title),
|
|
2690
|
-
buttonComponent
|
|
2691
|
-
);
|
|
2692
|
-
}
|
|
2693
|
-
return buttonComponent;
|
|
2694
|
-
}
|
|
2695
|
-
|
|
2696
2495
|
var css_248z$c = ".entity-preview-dots.glider-dots {\n padding-top: 1rem;\n}\n.entity-preview-dots.glider-dots .glider-dot {\n margin: 0.25rem;\n height: 0.5rem;\n width: 0.5rem;\n --tw-bg-opacity: 1;\n background-color: rgb(239 246 255 / var(--tw-bg-opacity));\n}\n.entity-preview-dots.glider-dots .glider-dot:focus {\n outline-color: #1e40af;\n}\n.entity-preview-dots.glider-dots .glider-dot.active, .entity-preview-dots.glider-dots .glider-dot:focus {\n --tw-bg-opacity: 1;\n background-color: rgb(30 64 175 / var(--tw-bg-opacity));\n}\n\n.glider-slide {\n visibility: hidden;\n}\n\n.glider-slide.visible,\n.glider-slide.active {\n visibility: visible;\n}";
|
|
2697
2496
|
styleInject(css_248z$c);
|
|
2698
2497
|
|
|
2699
2498
|
const GliderContainer = (props) => React__namespace.default.createElement(
|
|
2700
2499
|
"div",
|
|
2701
|
-
{ className: "glider-contain ui-relative ui-h-full ui-px-17 ui-pb-6
|
|
2500
|
+
{ className: "glider-contain ui-relative ui-h-full ui-px-17 ui-pb-6" },
|
|
2702
2501
|
props.children,
|
|
2703
2502
|
React__namespace.default.createElement(
|
|
2704
2503
|
"div",
|
|
2705
2504
|
{ className: "entity-preview-left ui-absolute ui-left-0 ui-top-1/2" },
|
|
2706
|
-
React__namespace.default.createElement(
|
|
2505
|
+
React__namespace.default.createElement(SecondaryButton, { "aria-label": "previous slide", leadingIcon: React__namespace.default.createElement(LeftArrowIcon, null) })
|
|
2707
2506
|
),
|
|
2708
2507
|
React__namespace.default.createElement(
|
|
2709
2508
|
"div",
|
|
2710
2509
|
{ className: "entity-preview-right ui-absolute ui-right-0 ui-top-1/2" },
|
|
2711
|
-
React__namespace.default.createElement(
|
|
2510
|
+
React__namespace.default.createElement(SecondaryButton, { "aria-label": "next slide", leadingIcon: React__namespace.default.createElement(RightArrowIcon, null) })
|
|
2712
2511
|
),
|
|
2713
2512
|
React__namespace.default.createElement("div", { className: "entity-preview-dots" })
|
|
2714
2513
|
);
|
|
@@ -3117,7 +2916,9 @@ const DatePicker = (props) => {
|
|
|
3117
2916
|
);
|
|
3118
2917
|
};
|
|
3119
2918
|
|
|
3120
|
-
var img$
|
|
2919
|
+
var img$2 = "data:image/svg+xml,%3csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 0C4.26522 5.96046e-08 4.51957 0.105357 4.70711 0.292893L7.70711 3.29289C8.09763 3.68342 8.09763 4.31658 7.70711 4.70711C7.31658 5.09763 6.68342 5.09763 6.29289 4.70711L4 2.41421L1.70711 4.70711C1.31658 5.09763 0.683417 5.09763 0.292893 4.70711C-0.0976311 4.31658 -0.097631 3.68342 0.292893 3.29289L3.29289 0.292893C3.48043 0.105357 3.73478 0 4 0ZM0.292893 9.29289C0.683417 8.90237 1.31658 8.90237 1.70711 9.29289L4 11.5858L6.29289 9.29289C6.68342 8.90237 7.31658 8.90237 7.70711 9.29289C8.09763 9.68342 8.09763 10.3166 7.70711 10.7071L4.70711 13.7071C4.31658 14.0976 3.68342 14.0976 3.29289 13.7071L0.292893 10.7071C-0.0976311 10.3166 -0.0976311 9.68342 0.292893 9.29289Z' fill='%239CA3AF'/%3e%3c/svg%3e";
|
|
2920
|
+
|
|
2921
|
+
var img$1 = "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e %3cg transform='translate(1.5%2c 0.5)'%3e %3cpath fill='none' fill-rule='evenodd' stroke='%230074DD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12.643 3.357L6.03 9.97l-2.674 2.674L0 9.286'/%3e %3c/g%3e%3c/svg%3e";
|
|
3121
2922
|
|
|
3122
2923
|
var css_248z$8 = "/**\n * --- DEPRECATED ---\n * DON'T USE ANYTHING FROM THIS FILE IN FUTURE CHANGES. WE SHOULD BE\n * USING TAILWIND CLASSES DIRECTLY IN OUR COMPONENTS.\n */\n.cweb-dropdown {\n display: flex;\n justify-content: flex-start;\n flex-direction: column;\n align-items: flex-start;\n position: relative;\n outline: none;\n border-radius: 4px;\n}\n.cweb-dropdown:focus {\n outline: 4px solid rgba(0, 159, 227, 0.3);\n}\n.cweb-dropdown > .dropdown-header {\n display: flex;\n justify-content: space-between;\n flex-direction: row;\n align-items: center;\n align-self: stretch;\n height: 44px;\n border-radius: 4px;\n transition: all 0.4s ease;\n}\n.cweb-dropdown > .dropdown-header > .dropdown-header-icon {\n opacity: 0.5;\n transition: opacity 0.3s ease-in-out;\n}\n.cweb-dropdown > .dropdown-header:hover > .dropdown-header-icon {\n opacity: 1;\n}\n.cweb-dropdown > .dropdown-list {\n box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.56);\n display: none;\n position: absolute;\n top: 100%;\n z-index: 1;\n width: 100%;\n max-height: 360px;\n overflow-y: auto;\n align-self: stretch;\n margin-top: 8px;\n padding: 0;\n background-color: #ffffff;\n list-style: none;\n border: 1px solid #d1d5db;\n border-radius: 4px;\n}\n.cweb-dropdown > .dropdown-list > .dropdown-list-item {\n cursor: pointer;\n}\n.cweb-dropdown > .dropdown-list > .dropdown-list-item-group > .dropdown-list-item {\n cursor: pointer;\n}\n.cweb-dropdown.is-open > .dropdown-list {\n display: block;\n margin-bottom: 32px;\n}\n.cweb-dropdown.is-open > .dropdown-list.wider {\n width: 200%;\n}";
|
|
3123
2924
|
styleInject(css_248z$8);
|
|
@@ -3353,7 +3154,7 @@ class Dropdown extends React.PureComponent {
|
|
|
3353
3154
|
"img",
|
|
3354
3155
|
{
|
|
3355
3156
|
className: classNames__default.default({ "ui-hidden": !isItemSelected }),
|
|
3356
|
-
src: img$
|
|
3157
|
+
src: img$1,
|
|
3357
3158
|
alt: "checked"
|
|
3358
3159
|
}
|
|
3359
3160
|
)
|
|
@@ -3468,7 +3269,7 @@ class Dropdown extends React.PureComponent {
|
|
|
3468
3269
|
"img",
|
|
3469
3270
|
{
|
|
3470
3271
|
className: "dropdown-header-icon",
|
|
3471
|
-
src: img$
|
|
3272
|
+
src: img$2,
|
|
3472
3273
|
alt: "browse icon"
|
|
3473
3274
|
}
|
|
3474
3275
|
)
|
|
@@ -4846,8 +4647,8 @@ const PageHeader = ({ navigation, breadcrumbs, dataTestId, accessories, isPollin
|
|
|
4846
4647
|
|
|
4847
4648
|
const CRUDPage = ({ submitButtonProps, cancelButtonProps, className, children, isLoading, isSubmitting, dataTestId = "page", title, header, steps, isMobileFriendly, belowHeader }) => {
|
|
4848
4649
|
const mergedClasses = classNames__default.default("cweb-crud-page", "ui-w-full ui-mb-0 ui-mx-auto ui-pb-8", className);
|
|
4849
|
-
const submitButton = submitButtonProps && React__namespace.default.createElement(PrimaryButton, Object.assign({ "data-test-id": "submit-button", key: "submit-button", role:
|
|
4850
|
-
const cancelButton = cancelButtonProps && React__namespace.default.createElement(TertiaryButton, Object.assign({ "data-test-id": "cancel-button", key: "cancel-button", role:
|
|
4650
|
+
const submitButton = submitButtonProps && React__namespace.default.createElement(PrimaryButton, Object.assign({ "data-test-id": "submit-button", key: "submit-button", role: "primary", isPending: isSubmitting }, submitButtonProps));
|
|
4651
|
+
const cancelButton = cancelButtonProps && React__namespace.default.createElement(TertiaryButton, Object.assign({ "data-test-id": "cancel-button", key: "cancel-button", role: "secondary" }, cancelButtonProps));
|
|
4851
4652
|
if (isLoading) {
|
|
4852
4653
|
return React__namespace.default.createElement(
|
|
4853
4654
|
"div",
|
|
@@ -5450,7 +5251,7 @@ const ImagePickerInner = ({
|
|
|
5450
5251
|
innerRef
|
|
5451
5252
|
}) => {
|
|
5452
5253
|
var _a;
|
|
5453
|
-
const placeholderImage = clearImageIndex !== void 0 && images[clearImageIndex] ? images[clearImageIndex] : img$
|
|
5254
|
+
const placeholderImage = clearImageIndex !== void 0 && images[clearImageIndex] ? images[clearImageIndex] : img$9;
|
|
5454
5255
|
const isTypeCompact = type === "compact";
|
|
5455
5256
|
const [search, setSearch] = React.useState("");
|
|
5456
5257
|
const [filteredCategories, setFilteredCategories] = React.useState(categories);
|
|
@@ -6737,7 +6538,7 @@ Object.defineProperty(exports, 'Toaster', {
|
|
|
6737
6538
|
exports.AbsentIcon = AbsentIcon;
|
|
6738
6539
|
exports.AccordionList = AccordionList;
|
|
6739
6540
|
exports.AccordionTemporary = Accordion;
|
|
6740
|
-
exports.AddIcon =
|
|
6541
|
+
exports.AddIcon = PlusIcon;
|
|
6741
6542
|
exports.AlarmClockIcon = AlarmClockIcon;
|
|
6742
6543
|
exports.AlertsIcon = BellIcon;
|
|
6743
6544
|
exports.AmberAlertIcon = AmberAlertIcon;
|
|
@@ -6758,8 +6559,8 @@ exports.CalendarRepeatIcon = CalendarRepeatIcon;
|
|
|
6758
6559
|
exports.Card = Card;
|
|
6759
6560
|
exports.Carousel = Carousel;
|
|
6760
6561
|
exports.CenteredHero = CenteredHero;
|
|
6761
|
-
exports.ChartBarsIcon =
|
|
6762
|
-
exports.ChartIcon =
|
|
6562
|
+
exports.ChartBarsIcon = ChartBarsIcon;
|
|
6563
|
+
exports.ChartIcon = ChartBarsIcon;
|
|
6763
6564
|
exports.ChartLineAndBarsIcon = ChartLineAndBarsIcon;
|
|
6764
6565
|
exports.ChartLineColoredIcon = ChartLineColoredIcon;
|
|
6765
6566
|
exports.ChatBoxIcon = ChatBubbleIcon;
|
|
@@ -6785,7 +6586,7 @@ exports.CrossInFilledCircleIcon = CrossInFilledCircleIcon;
|
|
|
6785
6586
|
exports.DatabaseIcon = DatabaseIcon;
|
|
6786
6587
|
exports.DatePicker = DatePicker;
|
|
6787
6588
|
exports.DatePickerV2 = DatePicker;
|
|
6788
|
-
exports.DeleteIcon =
|
|
6589
|
+
exports.DeleteIcon = TrashBinIcon;
|
|
6789
6590
|
exports.Divider = Divider;
|
|
6790
6591
|
exports.DownArrowIcon = ChevronDownIcon;
|
|
6791
6592
|
exports.DownloadIcon = DownloadIcon;
|
|
@@ -6795,7 +6596,7 @@ exports.DragIndicatorIcon = DragIndicatorIcon;
|
|
|
6795
6596
|
exports.Dropdown = Dropdown;
|
|
6796
6597
|
exports.Dropzone = Dropzone;
|
|
6797
6598
|
exports.EarthIcon = EarthIcon;
|
|
6798
|
-
exports.EditIcon =
|
|
6599
|
+
exports.EditIcon = PencilIcon;
|
|
6799
6600
|
exports.EmailIcon = EmailIcon;
|
|
6800
6601
|
exports.EmptyIcon = EmptyIcon;
|
|
6801
6602
|
exports.EmptyListMessage = EmptyListMessage;
|
|
@@ -6866,15 +6667,15 @@ exports.PageViewIcon = PageViewIcon;
|
|
|
6866
6667
|
exports.PaginationMenu = PaginationMenu;
|
|
6867
6668
|
exports.PaperclipIcon = PaperclipIcon;
|
|
6868
6669
|
exports.PatientIcon = PatientIcon;
|
|
6869
|
-
exports.PencilIcon =
|
|
6670
|
+
exports.PencilIcon = PencilIcon;
|
|
6870
6671
|
exports.PhoneIcon = PhoneIcon;
|
|
6871
6672
|
exports.PieChartIcon = PieChartIcon;
|
|
6872
6673
|
exports.PinIcon = PinIcon;
|
|
6873
|
-
exports.PlusIcon =
|
|
6674
|
+
exports.PlusIcon = PlusIcon;
|
|
6874
6675
|
exports.PreviewPhone = PreviewPhone;
|
|
6875
6676
|
exports.PrimaryButton = PrimaryButton;
|
|
6876
|
-
exports.PrintIcon =
|
|
6877
|
-
exports.PrinterIcon =
|
|
6677
|
+
exports.PrintIcon = PrinterIcon;
|
|
6678
|
+
exports.PrinterIcon = PrinterIcon;
|
|
6878
6679
|
exports.Radio = Radio;
|
|
6879
6680
|
exports.RadioGroup = RadioGroup;
|
|
6880
6681
|
exports.RadioGroupV2 = RadioGroupV2;
|
|
@@ -6925,7 +6726,7 @@ exports.Timeline = Timeline;
|
|
|
6925
6726
|
exports.TimelineCard = TimelineCard;
|
|
6926
6727
|
exports.TimelineCardLayout = TimelineCardLayout;
|
|
6927
6728
|
exports.Title = Title;
|
|
6928
|
-
exports.TrashBinIcon =
|
|
6729
|
+
exports.TrashBinIcon = TrashBinIcon;
|
|
6929
6730
|
exports.TreeIcon = TreeIcon;
|
|
6930
6731
|
exports.UList = UnorderedList;
|
|
6931
6732
|
exports.UnassignedIcon = UnassignedIcon;
|