spotlibs-components 0.1.20 → 0.1.22
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.d.mts +12 -1
- package/dist/index.mjs +648 -424
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.mjs +17 -1
- package/dist/utils/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/utils/index.js +3 -0
- package/src/utils/navigateToCI.d.ts +18 -0
- package/src/utils/navigateToCI.js +62 -0
package/dist/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { DerivedColor, PrimitiveColor, SpacingToken } from './chunk-G2BF4U5I.mjs
|
|
|
6
6
|
export { AppHeader, AppSidebar, Backdrop, CONTENT_SPACING_TOKENS, ContentSpacing, DerivedColor, LayoutShell, PrimitiveColor, SidebarProvider, spacing_default as Spacing, SpacingToken, parseAccessMenu, useSidebar } from './chunk-G2BF4U5I.mjs';
|
|
7
7
|
import { __spreadValues, __spreadProps, __objRest } from './chunk-YOSPWY5K.mjs';
|
|
8
8
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
9
|
-
import
|
|
9
|
+
import React3, { useMemo, useState, useCallback, isValidElement, createElement, useEffect, useRef, Fragment as Fragment$1, useId } from 'react';
|
|
10
10
|
import AlertRaw from '@mui/material/Alert';
|
|
11
11
|
import AlertTitleRaw from '@mui/material/AlertTitle';
|
|
12
12
|
import BoxRaw from '@mui/material/Box';
|
|
@@ -22,7 +22,6 @@ import CollapseRaw from '@mui/material/Collapse';
|
|
|
22
22
|
import IconButtonRaw from '@mui/material/IconButton';
|
|
23
23
|
import KeyboardArrowDownIconRaw from '@mui/icons-material/KeyboardArrowDown';
|
|
24
24
|
import KeyboardArrowUpIconRaw from '@mui/icons-material/KeyboardArrowUp';
|
|
25
|
-
import { Watermark } from '@hirohe/react-watermark';
|
|
26
25
|
import SnackbarRaw from '@mui/material/Snackbar';
|
|
27
26
|
import MuiCheckboxRaw from '@mui/material/Checkbox';
|
|
28
27
|
import FormControlLabelRaw from '@mui/material/FormControlLabel';
|
|
@@ -54,7 +53,7 @@ import CloseIconRaw from '@mui/icons-material/Close';
|
|
|
54
53
|
import { id } from 'date-fns/locale';
|
|
55
54
|
import 'react-date-range/dist/styles.css';
|
|
56
55
|
import 'react-date-range/dist/theme/default.css';
|
|
57
|
-
import
|
|
56
|
+
import Select3, { components } from 'react-select';
|
|
58
57
|
import AsyncSelect from 'react-select/async';
|
|
59
58
|
import { ErrorMessage } from '@hookform/error-message';
|
|
60
59
|
import Dropzone from 'react-dropzone';
|
|
@@ -573,18 +572,18 @@ var Radius = {
|
|
|
573
572
|
radius_4: "16px",
|
|
574
573
|
radius_x: "999px"
|
|
575
574
|
};
|
|
576
|
-
var RadiusToken = (
|
|
577
|
-
var
|
|
575
|
+
var RadiusToken = (_a130) => {
|
|
576
|
+
var _b130 = _a130, {
|
|
578
577
|
radius = "radius_0",
|
|
579
578
|
children,
|
|
580
579
|
sx = {}
|
|
581
|
-
} =
|
|
580
|
+
} = _b130, rest = __objRest(_b130, [
|
|
582
581
|
"radius",
|
|
583
582
|
"children",
|
|
584
583
|
"sx"
|
|
585
584
|
]);
|
|
586
|
-
var
|
|
587
|
-
const borderRadius = (
|
|
585
|
+
var _a131;
|
|
586
|
+
const borderRadius = (_a131 = Radius[radius]) != null ? _a131 : Radius.radius_0;
|
|
588
587
|
return /* @__PURE__ */ jsx(
|
|
589
588
|
Box,
|
|
590
589
|
__spreadProps(__spreadValues({
|
|
@@ -733,12 +732,12 @@ var VariantStyles = {
|
|
|
733
732
|
fontWeight: 400
|
|
734
733
|
}
|
|
735
734
|
};
|
|
736
|
-
var BaseTypography = (
|
|
737
|
-
var
|
|
735
|
+
var BaseTypography = (_a130) => {
|
|
736
|
+
var _b130 = _a130, {
|
|
738
737
|
variant = "body1_regular.default",
|
|
739
738
|
children,
|
|
740
739
|
sx
|
|
741
|
-
} =
|
|
740
|
+
} = _b130, props = __objRest(_b130, [
|
|
742
741
|
"variant",
|
|
743
742
|
"children",
|
|
744
743
|
"sx"
|
|
@@ -806,8 +805,8 @@ var ALERT_CONFIG = {
|
|
|
806
805
|
defaultIcon: IconAlertTriangle
|
|
807
806
|
}
|
|
808
807
|
};
|
|
809
|
-
var BaseAlert = (
|
|
810
|
-
var
|
|
808
|
+
var BaseAlert = (_a130) => {
|
|
809
|
+
var _b130 = _a130, {
|
|
811
810
|
variant = "default",
|
|
812
811
|
type = "standard",
|
|
813
812
|
title,
|
|
@@ -817,7 +816,7 @@ var BaseAlert = (_a126) => {
|
|
|
817
816
|
sx = {},
|
|
818
817
|
onClose,
|
|
819
818
|
childrenSx = {}
|
|
820
|
-
} =
|
|
819
|
+
} = _b130, props = __objRest(_b130, [
|
|
821
820
|
"variant",
|
|
822
821
|
"type",
|
|
823
822
|
"title",
|
|
@@ -828,8 +827,8 @@ var BaseAlert = (_a126) => {
|
|
|
828
827
|
"onClose",
|
|
829
828
|
"childrenSx"
|
|
830
829
|
]);
|
|
831
|
-
var
|
|
832
|
-
const config = (
|
|
830
|
+
var _a131;
|
|
831
|
+
const config = (_a131 = ALERT_CONFIG[variant]) != null ? _a131 : ALERT_CONFIG.default;
|
|
833
832
|
const hasChildrenSx = Object.keys(childrenSx).length > 0;
|
|
834
833
|
const renderIcon = useMemo(() => {
|
|
835
834
|
if (!icon) return false;
|
|
@@ -894,12 +893,12 @@ var Shadow = {
|
|
|
894
893
|
surface: "#FFFFFF"
|
|
895
894
|
}
|
|
896
895
|
};
|
|
897
|
-
var ShadowToken = (
|
|
898
|
-
var
|
|
896
|
+
var ShadowToken = (_a130) => {
|
|
897
|
+
var _b130 = _a130, {
|
|
899
898
|
level = "elevation_0",
|
|
900
899
|
children,
|
|
901
900
|
sx = {}
|
|
902
|
-
} =
|
|
901
|
+
} = _b130, rest = __objRest(_b130, [
|
|
903
902
|
"level",
|
|
904
903
|
"children",
|
|
905
904
|
"sx"
|
|
@@ -991,8 +990,8 @@ function getHoverColor(primitiveKey) {
|
|
|
991
990
|
const hoverKey = `${prefix}_${nextLevel}`;
|
|
992
991
|
return PrimitiveColor[hoverKey] || PrimitiveColor[primitiveKey];
|
|
993
992
|
}
|
|
994
|
-
var BaseButton = (
|
|
995
|
-
var
|
|
993
|
+
var BaseButton = (_a130) => {
|
|
994
|
+
var _b130 = _a130, {
|
|
996
995
|
onClick = () => {
|
|
997
996
|
},
|
|
998
997
|
children = null,
|
|
@@ -1005,7 +1004,7 @@ var BaseButton = (_a126) => {
|
|
|
1005
1004
|
endIcon = null,
|
|
1006
1005
|
width = "100%",
|
|
1007
1006
|
sx = {}
|
|
1008
|
-
} =
|
|
1007
|
+
} = _b130, rest = __objRest(_b130, [
|
|
1009
1008
|
"onClick",
|
|
1010
1009
|
"children",
|
|
1011
1010
|
"variant",
|
|
@@ -1025,36 +1024,36 @@ var BaseButton = (_a126) => {
|
|
|
1025
1024
|
const customColorValue = useCustom ? PrimitiveColor[customColor] : null;
|
|
1026
1025
|
const customHoverValue = useCustom ? getHoverColor(customColor) : null;
|
|
1027
1026
|
const getBackgroundColor = () => {
|
|
1028
|
-
var
|
|
1027
|
+
var _a131;
|
|
1029
1028
|
if (disabled) return isFill ? DISABLED_BG : "transparent";
|
|
1030
1029
|
if (useCustom) return isFill ? customColorValue : "transparent";
|
|
1031
|
-
if (isFill) return ((
|
|
1030
|
+
if (isFill) return ((_a131 = FILL_COLORS[color]) == null ? void 0 : _a131.bg) || FILL_COLORS.primary.bg;
|
|
1032
1031
|
return "transparent";
|
|
1033
1032
|
};
|
|
1034
1033
|
const getTextColor = () => {
|
|
1035
|
-
var
|
|
1034
|
+
var _a131, _b131;
|
|
1036
1035
|
if (disabled) return DISABLED_TEXT;
|
|
1037
1036
|
if (isFill) return WHITE;
|
|
1038
1037
|
if (useCustom) return customColorValue;
|
|
1039
|
-
if (isOutline) return ((
|
|
1040
|
-
if (isText) return ((
|
|
1038
|
+
if (isOutline) return ((_a131 = OUTLINE_COLORS[color]) == null ? void 0 : _a131.text) || OUTLINE_COLORS.primary.text;
|
|
1039
|
+
if (isText) return ((_b131 = OUTLINE_COLORS[color]) == null ? void 0 : _b131.text) || OUTLINE_COLORS.primary.text;
|
|
1041
1040
|
return DerivedColor.color_text_default;
|
|
1042
1041
|
};
|
|
1043
1042
|
const getBorderColor = () => {
|
|
1044
|
-
var
|
|
1043
|
+
var _a131;
|
|
1045
1044
|
if (!isOutline) return "none";
|
|
1046
1045
|
if (disabled) return `1.5px solid ${DISABLED_BG}`;
|
|
1047
1046
|
if (useCustom) return `1.5px solid ${customColorValue}`;
|
|
1048
|
-
return `1.5px solid ${((
|
|
1047
|
+
return `1.5px solid ${((_a131 = OUTLINE_COLORS[color]) == null ? void 0 : _a131.border) || OUTLINE_COLORS.primary.border}`;
|
|
1049
1048
|
};
|
|
1050
1049
|
const getHoverBg = () => {
|
|
1051
|
-
var
|
|
1050
|
+
var _a131, _b131;
|
|
1052
1051
|
if (disabled) return void 0;
|
|
1053
1052
|
if (useCustom) {
|
|
1054
1053
|
return isFill ? customHoverValue : customColorValue + "1A";
|
|
1055
1054
|
}
|
|
1056
|
-
if (isFill) return ((
|
|
1057
|
-
if (isOutline) return ((
|
|
1055
|
+
if (isFill) return ((_a131 = FILL_COLORS[color]) == null ? void 0 : _a131.hover) || FILL_COLORS.primary.hover;
|
|
1056
|
+
if (isOutline) return ((_b131 = OUTLINE_COLORS[color]) == null ? void 0 : _b131.hoverBg) || OUTLINE_COLORS.primary.hoverBg;
|
|
1058
1057
|
return void 0;
|
|
1059
1058
|
};
|
|
1060
1059
|
const getRadius = () => {
|
|
@@ -1139,8 +1138,8 @@ var _a9, _b9;
|
|
|
1139
1138
|
var Skeleton = (_b9 = (_a9 = SkeletonRaw) == null ? void 0 : _a9.default) != null ? _b9 : SkeletonRaw;
|
|
1140
1139
|
var _a10, _b10;
|
|
1141
1140
|
var Box5 = (_b10 = (_a10 = BoxRaw) == null ? void 0 : _a10.default) != null ? _b10 : BoxRaw;
|
|
1142
|
-
var BaseSkeleton = (
|
|
1143
|
-
var
|
|
1141
|
+
var BaseSkeleton = (_a130) => {
|
|
1142
|
+
var _b130 = _a130, {
|
|
1144
1143
|
variant = "rectangular",
|
|
1145
1144
|
animation = "pulse",
|
|
1146
1145
|
width,
|
|
@@ -1148,7 +1147,7 @@ var BaseSkeleton = (_a126) => {
|
|
|
1148
1147
|
count = 1,
|
|
1149
1148
|
gap = SpacingToken.spacing2,
|
|
1150
1149
|
sx = {}
|
|
1151
|
-
} =
|
|
1150
|
+
} = _b130, rest = __objRest(_b130, [
|
|
1152
1151
|
"variant",
|
|
1153
1152
|
"animation",
|
|
1154
1153
|
"width",
|
|
@@ -1349,8 +1348,8 @@ var TYPE_STYLES = {
|
|
|
1349
1348
|
icon: null
|
|
1350
1349
|
}
|
|
1351
1350
|
};
|
|
1352
|
-
var BaseChip = (
|
|
1353
|
-
var
|
|
1351
|
+
var BaseChip = (_a130) => {
|
|
1352
|
+
var _b130 = _a130, {
|
|
1354
1353
|
label = "",
|
|
1355
1354
|
type = "default",
|
|
1356
1355
|
variant = "filled",
|
|
@@ -1361,7 +1360,7 @@ var BaseChip = (_a126) => {
|
|
|
1361
1360
|
fullWidth = false,
|
|
1362
1361
|
showIcon = true,
|
|
1363
1362
|
sx = {}
|
|
1364
|
-
} =
|
|
1363
|
+
} = _b130, rest = __objRest(_b130, [
|
|
1365
1364
|
"label",
|
|
1366
1365
|
"type",
|
|
1367
1366
|
"variant",
|
|
@@ -1404,6 +1403,73 @@ var BaseChip = (_a126) => {
|
|
|
1404
1403
|
}, rest)
|
|
1405
1404
|
);
|
|
1406
1405
|
};
|
|
1406
|
+
var __assign = function() {
|
|
1407
|
+
__assign = Object.assign || function __assign2(t) {
|
|
1408
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
1409
|
+
s = arguments[i];
|
|
1410
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
1411
|
+
}
|
|
1412
|
+
return t;
|
|
1413
|
+
};
|
|
1414
|
+
return __assign.apply(this, arguments);
|
|
1415
|
+
};
|
|
1416
|
+
function generateSvg(options) {
|
|
1417
|
+
var text = options.text, textColor = options.textColor, textSize = options.textSize, fontFamily = options.fontFamily, lineHeight = options.lineHeight, multiline = options.multiline, opacity = options.opacity, gutter = options.gutter, rotate = options.rotate;
|
|
1418
|
+
var rect = calcTextRenderedRect(text, textSize, lineHeight, fontFamily);
|
|
1419
|
+
var size = Math.sqrt(rect.width * rect.width + rect.height * rect.height) + gutter * 2;
|
|
1420
|
+
var center = size / 2;
|
|
1421
|
+
var textContent = text;
|
|
1422
|
+
if (multiline) {
|
|
1423
|
+
var texts = text.split("\n").map(function(textByLine, index) {
|
|
1424
|
+
return "<tspan x='50%' dy='".concat(index === 0 ? "0" : lineHeight, "'>").concat(textByLine, "</tspan>");
|
|
1425
|
+
});
|
|
1426
|
+
textContent = texts.join("");
|
|
1427
|
+
}
|
|
1428
|
+
var textEl = "<text fill='".concat(textColor, "' x='50%' y='50%' font-size='").concat(textSize, "' text-anchor='middle' font-family='").concat(fontFamily, "' transform='rotate(").concat(rotate, " ").concat(center, " ").concat(center, ")' opacity='").concat(opacity, "'>").concat(textContent, "</text>");
|
|
1429
|
+
return "<svg width='".concat(size, "' height='").concat(size / 1.5, "' xmlns='http://www.w3.org/2000/svg'>").concat(textEl, "</svg>");
|
|
1430
|
+
}
|
|
1431
|
+
function calcTextRenderedRect(text, fontSize, lineHeight, fontFamily) {
|
|
1432
|
+
var span = document.createElement("span");
|
|
1433
|
+
span.innerText = text;
|
|
1434
|
+
span.style.fontSize = fontSize + "px";
|
|
1435
|
+
span.style.fontFamily = fontFamily;
|
|
1436
|
+
span.style.visibility = "hidden";
|
|
1437
|
+
document.body.appendChild(span);
|
|
1438
|
+
var rect = span.getBoundingClientRect();
|
|
1439
|
+
document.body.removeChild(span);
|
|
1440
|
+
return rect;
|
|
1441
|
+
}
|
|
1442
|
+
var watermarkWrapperStyle = {
|
|
1443
|
+
position: "relative"
|
|
1444
|
+
};
|
|
1445
|
+
var Watermark = function(_a130) {
|
|
1446
|
+
var _b130 = _a130.show, show3 = _b130 === void 0 ? true : _b130, text = _a130.text, _c = _a130.textColor, textColor = _c === void 0 ? "#cccccc" : _c, _d = _a130.textSize, textSize = _d === void 0 ? 24 : _d, _e = _a130.fontFamily, fontFamily = _e === void 0 ? "Arial, Helvetica, sans-serif" : _e, _f = _a130.opacity, opacity = _f === void 0 ? 0.2 : _f, _g = _a130.lineHeight, lineHeight = _g === void 0 ? "1.2rem" : _g, _h = _a130.multiline, multiline = _h === void 0 ? false : _h, wrapperStyle = _a130.wrapperStyle, _j = _a130.wrapperElement, wrapperElement = _j === void 0 ? "div" : _j, _k = _a130.gutter, gutter = _k === void 0 ? 0 : _k, _l = _a130.rotate, rotate = _l === void 0 ? -45 : _l, _m = _a130.zIndex, zIndex = _m === void 0 ? 1 : _m, children = _a130.children;
|
|
1447
|
+
var _o = useState(""), backgroundImage = _o[0], setBackgroundImage = _o[1];
|
|
1448
|
+
useEffect(function() {
|
|
1449
|
+
var svg = generateSvg({ text, textColor, textSize, fontFamily, opacity, gutter, rotate, multiline, lineHeight });
|
|
1450
|
+
var convertedSvg = encodeURIComponent(svg).replace(/'/g, "%27").replace(/"/g, "%22");
|
|
1451
|
+
setBackgroundImage('url("data:image/svg+xml,'.concat(convertedSvg, '")'));
|
|
1452
|
+
}, [show3, text, textColor, textSize, opacity, gutter, rotate]);
|
|
1453
|
+
var watermarkStyle = {
|
|
1454
|
+
pointerEvents: "none",
|
|
1455
|
+
position: "absolute",
|
|
1456
|
+
top: 0,
|
|
1457
|
+
bottom: 0,
|
|
1458
|
+
left: 0,
|
|
1459
|
+
right: 0,
|
|
1460
|
+
content: "",
|
|
1461
|
+
backgroundRepeat: "repeat",
|
|
1462
|
+
zIndex,
|
|
1463
|
+
backgroundImage
|
|
1464
|
+
};
|
|
1465
|
+
var Wrapper = wrapperElement;
|
|
1466
|
+
return React3.createElement(
|
|
1467
|
+
Wrapper,
|
|
1468
|
+
{ style: __assign(__assign({}, watermarkWrapperStyle), wrapperStyle) },
|
|
1469
|
+
show3 && React3.createElement("div", { style: watermarkStyle }),
|
|
1470
|
+
children
|
|
1471
|
+
);
|
|
1472
|
+
};
|
|
1407
1473
|
var _a14, _b14;
|
|
1408
1474
|
var MuiCard = (_b14 = (_a14 = MuiCardRaw) == null ? void 0 : _a14.default) != null ? _b14 : MuiCardRaw;
|
|
1409
1475
|
var _a15, _b15;
|
|
@@ -1440,8 +1506,8 @@ var HEADER_ICON_COLORS = {
|
|
|
1440
1506
|
danger: DerivedColor.color_bg_surface,
|
|
1441
1507
|
clean: DerivedColor.color_text_subtle
|
|
1442
1508
|
};
|
|
1443
|
-
var BaseCard = (
|
|
1444
|
-
var
|
|
1509
|
+
var BaseCard = (_a130) => {
|
|
1510
|
+
var _b130 = _a130, {
|
|
1445
1511
|
variant = "default",
|
|
1446
1512
|
children = null,
|
|
1447
1513
|
color = "primary",
|
|
@@ -1460,7 +1526,7 @@ var BaseCard = (_a126) => {
|
|
|
1460
1526
|
isWatermark = false,
|
|
1461
1527
|
watermarkText = "",
|
|
1462
1528
|
sx = {}
|
|
1463
|
-
} =
|
|
1529
|
+
} = _b130, rest = __objRest(_b130, [
|
|
1464
1530
|
"variant",
|
|
1465
1531
|
"children",
|
|
1466
1532
|
"color",
|
|
@@ -1562,7 +1628,7 @@ var BaseCard = (_a126) => {
|
|
|
1562
1628
|
opacity: 0.15,
|
|
1563
1629
|
gutter: 20,
|
|
1564
1630
|
rotate: -30,
|
|
1565
|
-
wrapperStyle: { minHeight: "100px" },
|
|
1631
|
+
wrapperStyle: { minHeight: "100px", position: "relative" },
|
|
1566
1632
|
children
|
|
1567
1633
|
}
|
|
1568
1634
|
) : children
|
|
@@ -1576,7 +1642,7 @@ var BaseCard = (_a126) => {
|
|
|
1576
1642
|
borderRadius: Radius.radius_2,
|
|
1577
1643
|
backgroundColor: cardBg,
|
|
1578
1644
|
border: `1px solid ${borderColor}`,
|
|
1579
|
-
overflow: "visible",
|
|
1645
|
+
overflow: isWatermark ? "hidden" : "visible",
|
|
1580
1646
|
boxShadow: "none",
|
|
1581
1647
|
padding: SpacingToken.spacing4,
|
|
1582
1648
|
position: "relative"
|
|
@@ -1591,7 +1657,7 @@ var BaseCard = (_a126) => {
|
|
|
1591
1657
|
opacity: 0.15,
|
|
1592
1658
|
gutter: 20,
|
|
1593
1659
|
rotate: -30,
|
|
1594
|
-
wrapperStyle: { minHeight: "100px" },
|
|
1660
|
+
wrapperStyle: { minHeight: "100px", position: "relative" },
|
|
1595
1661
|
children
|
|
1596
1662
|
}
|
|
1597
1663
|
) : children
|
|
@@ -1605,7 +1671,7 @@ var BaseCard = (_a126) => {
|
|
|
1605
1671
|
sx: __spreadValues({
|
|
1606
1672
|
borderRadius: Radius.radius_2,
|
|
1607
1673
|
border: `1px solid ${borderColor}`,
|
|
1608
|
-
overflow: "visible",
|
|
1674
|
+
overflow: isWatermark ? "hidden" : "visible",
|
|
1609
1675
|
boxShadow: "none"
|
|
1610
1676
|
}, sx)
|
|
1611
1677
|
}, rest), {
|
|
@@ -1623,7 +1689,7 @@ var BaseCard = (_a126) => {
|
|
|
1623
1689
|
sx: __spreadValues({
|
|
1624
1690
|
borderRadius: Radius.radius_2,
|
|
1625
1691
|
border: `1px solid ${borderColor}`,
|
|
1626
|
-
overflow: "visible",
|
|
1692
|
+
overflow: isWatermark ? "hidden" : "visible",
|
|
1627
1693
|
boxShadow: "none"
|
|
1628
1694
|
}, sx)
|
|
1629
1695
|
}, rest), {
|
|
@@ -1689,8 +1755,8 @@ var VARIANT_CONFIG = {
|
|
|
1689
1755
|
text: PrimitiveColor.color_neutral_900
|
|
1690
1756
|
}
|
|
1691
1757
|
};
|
|
1692
|
-
var BaseSnackbar = (
|
|
1693
|
-
var
|
|
1758
|
+
var BaseSnackbar = (_a130) => {
|
|
1759
|
+
var _b130 = _a130, {
|
|
1694
1760
|
open = false,
|
|
1695
1761
|
onClose,
|
|
1696
1762
|
message,
|
|
@@ -1699,7 +1765,7 @@ var BaseSnackbar = (_a126) => {
|
|
|
1699
1765
|
position = { vertical: "top", horizontal: "center" },
|
|
1700
1766
|
icon,
|
|
1701
1767
|
sx = {}
|
|
1702
|
-
} =
|
|
1768
|
+
} = _b130, props = __objRest(_b130, [
|
|
1703
1769
|
"open",
|
|
1704
1770
|
"onClose",
|
|
1705
1771
|
"message",
|
|
@@ -1709,8 +1775,8 @@ var BaseSnackbar = (_a126) => {
|
|
|
1709
1775
|
"icon",
|
|
1710
1776
|
"sx"
|
|
1711
1777
|
]);
|
|
1712
|
-
var
|
|
1713
|
-
const config = (
|
|
1778
|
+
var _a131;
|
|
1779
|
+
const config = (_a131 = VARIANT_CONFIG[variant]) != null ? _a131 : VARIANT_CONFIG.info;
|
|
1714
1780
|
const renderIcon = useMemo(() => {
|
|
1715
1781
|
if (!icon) return false;
|
|
1716
1782
|
if (isValidElement(icon)) return icon;
|
|
@@ -1775,8 +1841,8 @@ var _a25, _b25;
|
|
|
1775
1841
|
var FormGroup = (_b25 = (_a25 = FormGroupRaw) == null ? void 0 : _a25.default) != null ? _b25 : FormGroupRaw;
|
|
1776
1842
|
var _a26, _b26;
|
|
1777
1843
|
var Box8 = (_b26 = (_a26 = BoxRaw) == null ? void 0 : _a26.default) != null ? _b26 : BoxRaw;
|
|
1778
|
-
var BaseCheckbox = (
|
|
1779
|
-
var
|
|
1844
|
+
var BaseCheckbox = (_a130) => {
|
|
1845
|
+
var _b130 = _a130, {
|
|
1780
1846
|
name = "",
|
|
1781
1847
|
control = null,
|
|
1782
1848
|
defaultValue,
|
|
@@ -1787,7 +1853,7 @@ var BaseCheckbox = (_a126) => {
|
|
|
1787
1853
|
labelPlacement = "end",
|
|
1788
1854
|
isHorizontal = false,
|
|
1789
1855
|
sx
|
|
1790
|
-
} =
|
|
1856
|
+
} = _b130, restProps = __objRest(_b130, [
|
|
1791
1857
|
"name",
|
|
1792
1858
|
"control",
|
|
1793
1859
|
"defaultValue",
|
|
@@ -1799,11 +1865,11 @@ var BaseCheckbox = (_a126) => {
|
|
|
1799
1865
|
"isHorizontal",
|
|
1800
1866
|
"sx"
|
|
1801
1867
|
]);
|
|
1802
|
-
var
|
|
1868
|
+
var _a131, _b131, _c;
|
|
1803
1869
|
const hookForm = control ? useController({ control, name, defaultValue: defaultValue != null ? defaultValue : [] }) : null;
|
|
1804
1870
|
const field = hookForm == null ? void 0 : hookForm.field;
|
|
1805
1871
|
const formState = hookForm == null ? void 0 : hookForm.formState;
|
|
1806
|
-
const hasError = !!((
|
|
1872
|
+
const hasError = !!((_a131 = formState == null ? void 0 : formState.errors) == null ? void 0 : _a131[name]);
|
|
1807
1873
|
const checkedValue = field ? field.value : restProps.checked;
|
|
1808
1874
|
const handleChange = field ? (newVal) => field.onChange(newVal) : restProps.onChange;
|
|
1809
1875
|
const isGroup = Array.isArray(options);
|
|
@@ -1817,14 +1883,14 @@ var BaseCheckbox = (_a126) => {
|
|
|
1817
1883
|
handleChange == null ? void 0 : handleChange(newChecked);
|
|
1818
1884
|
};
|
|
1819
1885
|
const handleSingleChange = (e) => {
|
|
1820
|
-
var
|
|
1886
|
+
var _a132;
|
|
1821
1887
|
if (field) {
|
|
1822
1888
|
field.onChange(e.target.checked);
|
|
1823
1889
|
} else {
|
|
1824
|
-
(
|
|
1890
|
+
(_a132 = restProps.onChange) == null ? void 0 : _a132.call(restProps, e.target.checked, e);
|
|
1825
1891
|
}
|
|
1826
1892
|
};
|
|
1827
|
-
const errorMessage = (_c = (
|
|
1893
|
+
const errorMessage = (_c = (_b131 = formState == null ? void 0 : formState.errors) == null ? void 0 : _b131[name]) == null ? void 0 : _c.message;
|
|
1828
1894
|
const iconColor = hasError ? DerivedColor.color_text_danger : DerivedColor.color_border_default;
|
|
1829
1895
|
const checkedIconColor = hasError ? DerivedColor.color_text_danger : DerivedColor.color_bg_brand_primary;
|
|
1830
1896
|
if (isGroup) {
|
|
@@ -1842,7 +1908,7 @@ var BaseCheckbox = (_a126) => {
|
|
|
1842
1908
|
}
|
|
1843
1909
|
),
|
|
1844
1910
|
/* @__PURE__ */ jsx(FormGroup, { row: isHorizontal, sx: { gap: isHorizontal ? 2 : 0 }, children: options.map((option) => {
|
|
1845
|
-
var
|
|
1911
|
+
var _a132, _b132;
|
|
1846
1912
|
return /* @__PURE__ */ jsx(
|
|
1847
1913
|
FormControlLabel,
|
|
1848
1914
|
{
|
|
@@ -1857,8 +1923,8 @@ var BaseCheckbox = (_a126) => {
|
|
|
1857
1923
|
checked: (checkedValue || []).includes(option.value),
|
|
1858
1924
|
onChange: (e) => handleGroupChange(option.value, e.target.checked),
|
|
1859
1925
|
icon: /* @__PURE__ */ jsx(IconSquare, { size: 22, color: iconColor }),
|
|
1860
|
-
checkedIcon: /* @__PURE__ */ jsx(IconSquareCheckFilled, { size: 22, color: ((
|
|
1861
|
-
disabled: (
|
|
1926
|
+
checkedIcon: /* @__PURE__ */ jsx(IconSquareCheckFilled, { size: 22, color: ((_a132 = option.disabled) != null ? _a132 : disabled) ? DerivedColor.color_bg_disabled : checkedIconColor }),
|
|
1927
|
+
disabled: (_b132 = option.disabled) != null ? _b132 : disabled,
|
|
1862
1928
|
sx: {
|
|
1863
1929
|
":hover": { backgroundColor: "#C0DBF1" }
|
|
1864
1930
|
}
|
|
@@ -1950,16 +2016,16 @@ function getVisiblePages(currentPage, totalPages, maxVisible = 3) {
|
|
|
1950
2016
|
if (totalPages <= maxVisible) {
|
|
1951
2017
|
return Array.from({ length: totalPages }, (_, i) => i);
|
|
1952
2018
|
}
|
|
1953
|
-
|
|
1954
|
-
|
|
2019
|
+
const half = Math.floor(maxVisible / 2);
|
|
2020
|
+
let start = currentPage - half;
|
|
2021
|
+
let end = currentPage + (maxVisible - 1 - half);
|
|
2022
|
+
if (start < 0) {
|
|
1955
2023
|
start = 0;
|
|
1956
|
-
|
|
1957
|
-
start = currentPage;
|
|
2024
|
+
end = maxVisible - 1;
|
|
1958
2025
|
}
|
|
1959
|
-
let end = start + maxVisible - 1;
|
|
1960
2026
|
if (end >= totalPages) {
|
|
1961
2027
|
end = totalPages - 1;
|
|
1962
|
-
start =
|
|
2028
|
+
start = totalPages - maxVisible;
|
|
1963
2029
|
}
|
|
1964
2030
|
const pages = [];
|
|
1965
2031
|
for (let i = start; i <= end; i++) {
|
|
@@ -2182,23 +2248,173 @@ var DatatablePagination = ({
|
|
|
2182
2248
|
var _a35, _b35;
|
|
2183
2249
|
var Box10 = (_b35 = (_a35 = BoxRaw) == null ? void 0 : _a35.default) != null ? _b35 : BoxRaw;
|
|
2184
2250
|
var _a36, _b36;
|
|
2185
|
-
var
|
|
2251
|
+
var Select2 = (_b36 = (_a36 = SelectRaw) == null ? void 0 : _a36.default) != null ? _b36 : SelectRaw;
|
|
2186
2252
|
var _a37, _b37;
|
|
2187
|
-
var
|
|
2253
|
+
var MenuItem2 = (_b37 = (_a37 = MenuItemRaw) == null ? void 0 : _a37.default) != null ? _b37 : MenuItemRaw;
|
|
2188
2254
|
var _a38, _b38;
|
|
2189
|
-
var
|
|
2255
|
+
var IconButton5 = (_b38 = (_a38 = IconButtonRaw) == null ? void 0 : _a38.default) != null ? _b38 : IconButtonRaw;
|
|
2256
|
+
function getVisiblePages2(currentPage, totalPages, maxVisible = 3) {
|
|
2257
|
+
if (totalPages <= maxVisible) {
|
|
2258
|
+
return Array.from({ length: totalPages }, (_, i) => i);
|
|
2259
|
+
}
|
|
2260
|
+
const half = Math.floor(maxVisible / 2);
|
|
2261
|
+
let start = currentPage - half;
|
|
2262
|
+
let end = currentPage + (maxVisible - 1 - half);
|
|
2263
|
+
if (start < 0) {
|
|
2264
|
+
start = 0;
|
|
2265
|
+
end = maxVisible - 1;
|
|
2266
|
+
}
|
|
2267
|
+
if (end >= totalPages) {
|
|
2268
|
+
end = totalPages - 1;
|
|
2269
|
+
start = totalPages - maxVisible;
|
|
2270
|
+
}
|
|
2271
|
+
const pages = [];
|
|
2272
|
+
for (let i = start; i <= end; i++) {
|
|
2273
|
+
pages.push(i);
|
|
2274
|
+
}
|
|
2275
|
+
return pages;
|
|
2276
|
+
}
|
|
2277
|
+
var NumberedPagination = ({
|
|
2278
|
+
page = 0,
|
|
2279
|
+
rowsPerPage = 10,
|
|
2280
|
+
count = 0,
|
|
2281
|
+
showTotalCount = false,
|
|
2282
|
+
onPageChange,
|
|
2283
|
+
onRowsPerPageChange,
|
|
2284
|
+
rowsPerPageOptions = [5, 10, 25],
|
|
2285
|
+
labelRowsPerPage = "Baris per halaman:"
|
|
2286
|
+
}) => {
|
|
2287
|
+
const totalPages = count > 0 ? Math.ceil(count / rowsPerPage) : 0;
|
|
2288
|
+
const startItem = page * rowsPerPage + 1;
|
|
2289
|
+
const endItem = Math.min((page + 1) * rowsPerPage, count);
|
|
2290
|
+
const visiblePages = useMemo(
|
|
2291
|
+
() => getVisiblePages2(page, totalPages),
|
|
2292
|
+
[page, totalPages]
|
|
2293
|
+
);
|
|
2294
|
+
return /* @__PURE__ */ jsxs(
|
|
2295
|
+
Box10,
|
|
2296
|
+
{
|
|
2297
|
+
sx: {
|
|
2298
|
+
display: "flex",
|
|
2299
|
+
alignItems: "center",
|
|
2300
|
+
justifyContent: "space-between",
|
|
2301
|
+
px: 2,
|
|
2302
|
+
py: 1.5,
|
|
2303
|
+
minHeight: 52
|
|
2304
|
+
},
|
|
2305
|
+
children: [
|
|
2306
|
+
/* @__PURE__ */ jsx(Box10, { sx: { display: "flex", alignItems: "center" }, children: /* @__PURE__ */ jsxs(BaseTypography, { variant: "body2_regular.subtle", component: "div", children: [
|
|
2307
|
+
"Menampilkan",
|
|
2308
|
+
" ",
|
|
2309
|
+
/* @__PURE__ */ jsxs("span", { style: { fontWeight: 700, color: DerivedColor.color_text_default }, children: [
|
|
2310
|
+
startItem,
|
|
2311
|
+
"-",
|
|
2312
|
+
endItem
|
|
2313
|
+
] }),
|
|
2314
|
+
showTotalCount && count > 0 && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
2315
|
+
" ",
|
|
2316
|
+
"dari",
|
|
2317
|
+
" ",
|
|
2318
|
+
/* @__PURE__ */ jsx("span", { style: { fontWeight: 700, color: DerivedColor.color_text_default }, children: count }),
|
|
2319
|
+
" ",
|
|
2320
|
+
"data"
|
|
2321
|
+
] })
|
|
2322
|
+
] }) }),
|
|
2323
|
+
/* @__PURE__ */ jsxs(Box10, { sx: { display: "flex", alignItems: "center", gap: 2 }, children: [
|
|
2324
|
+
/* @__PURE__ */ jsxs(Box10, { sx: { display: "flex", alignItems: "center", gap: 1 }, children: [
|
|
2325
|
+
/* @__PURE__ */ jsx(BaseTypography, { variant: "body2_regular.subtle", children: labelRowsPerPage }),
|
|
2326
|
+
/* @__PURE__ */ jsx(
|
|
2327
|
+
Select2,
|
|
2328
|
+
{
|
|
2329
|
+
value: rowsPerPage,
|
|
2330
|
+
onChange: (e) => {
|
|
2331
|
+
onRowsPerPageChange == null ? void 0 : onRowsPerPageChange(e, Number(e.target.value));
|
|
2332
|
+
},
|
|
2333
|
+
size: "small",
|
|
2334
|
+
variant: "outlined",
|
|
2335
|
+
sx: {
|
|
2336
|
+
minWidth: 60,
|
|
2337
|
+
height: 32,
|
|
2338
|
+
fontSize: 13,
|
|
2339
|
+
"& .MuiSelect-select": { py: 0.5, px: 1 }
|
|
2340
|
+
},
|
|
2341
|
+
children: rowsPerPageOptions.map((option) => /* @__PURE__ */ jsx(MenuItem2, { value: option, sx: { fontSize: 13 }, children: option }, option))
|
|
2342
|
+
}
|
|
2343
|
+
)
|
|
2344
|
+
] }),
|
|
2345
|
+
/* @__PURE__ */ jsxs(Box10, { sx: { display: "flex", alignItems: "center", gap: 0.5 }, children: [
|
|
2346
|
+
/* @__PURE__ */ jsx(
|
|
2347
|
+
IconButton5,
|
|
2348
|
+
{
|
|
2349
|
+
size: "small",
|
|
2350
|
+
disabled: page === 0,
|
|
2351
|
+
onClick: (e) => onPageChange == null ? void 0 : onPageChange(e, page - 1),
|
|
2352
|
+
sx: { color: DerivedColor.color_text_default, width: 32, height: 32 },
|
|
2353
|
+
children: /* @__PURE__ */ jsx(IconChevronLeft, { size: 18 })
|
|
2354
|
+
}
|
|
2355
|
+
),
|
|
2356
|
+
visiblePages.map((item) => /* @__PURE__ */ jsx(
|
|
2357
|
+
Box10,
|
|
2358
|
+
{
|
|
2359
|
+
onClick: (e) => onPageChange == null ? void 0 : onPageChange(e, item),
|
|
2360
|
+
sx: {
|
|
2361
|
+
width: 32,
|
|
2362
|
+
height: 32,
|
|
2363
|
+
display: "flex",
|
|
2364
|
+
alignItems: "center",
|
|
2365
|
+
justifyContent: "center",
|
|
2366
|
+
borderRadius: 1,
|
|
2367
|
+
fontSize: 13,
|
|
2368
|
+
fontWeight: item === page ? 600 : 400,
|
|
2369
|
+
cursor: "pointer",
|
|
2370
|
+
userSelect: "none",
|
|
2371
|
+
border: item === page ? `1.5px solid ${PrimitiveColor.color_blue_cakrawala_500}` : "1px solid transparent",
|
|
2372
|
+
color: item === page ? PrimitiveColor.color_blue_cakrawala_500 : DerivedColor.color_text_default,
|
|
2373
|
+
backgroundColor: "transparent",
|
|
2374
|
+
"&:hover": {
|
|
2375
|
+
backgroundColor: PrimitiveColor.color_neutral_200
|
|
2376
|
+
}
|
|
2377
|
+
},
|
|
2378
|
+
children: item + 1
|
|
2379
|
+
},
|
|
2380
|
+
item
|
|
2381
|
+
)),
|
|
2382
|
+
/* @__PURE__ */ jsx(
|
|
2383
|
+
IconButton5,
|
|
2384
|
+
{
|
|
2385
|
+
size: "small",
|
|
2386
|
+
disabled: page >= totalPages - 1,
|
|
2387
|
+
onClick: (e) => onPageChange == null ? void 0 : onPageChange(e, page + 1),
|
|
2388
|
+
sx: { color: DerivedColor.color_text_default, width: 32, height: 32 },
|
|
2389
|
+
children: /* @__PURE__ */ jsx(IconChevronRight, { size: 18 })
|
|
2390
|
+
}
|
|
2391
|
+
)
|
|
2392
|
+
] })
|
|
2393
|
+
] })
|
|
2394
|
+
]
|
|
2395
|
+
}
|
|
2396
|
+
);
|
|
2397
|
+
};
|
|
2190
2398
|
var _a39, _b39;
|
|
2191
|
-
var
|
|
2399
|
+
var Box11 = (_b39 = (_a39 = BoxRaw) == null ? void 0 : _a39.default) != null ? _b39 : BoxRaw;
|
|
2192
2400
|
var _a40, _b40;
|
|
2193
|
-
var
|
|
2401
|
+
var Checkbox = (_b40 = (_a40 = MuiCheckboxRaw) == null ? void 0 : _a40.default) != null ? _b40 : MuiCheckboxRaw;
|
|
2194
2402
|
var _a41, _b41;
|
|
2195
|
-
var
|
|
2403
|
+
var CircularProgress = (_b41 = (_a41 = CircularProgressRaw) == null ? void 0 : _a41.default) != null ? _b41 : CircularProgressRaw;
|
|
2196
2404
|
var _a42, _b42;
|
|
2197
|
-
var
|
|
2405
|
+
var Paper = (_b42 = (_a42 = PaperRaw) == null ? void 0 : _a42.default) != null ? _b42 : PaperRaw;
|
|
2198
2406
|
var _a43, _b43;
|
|
2199
|
-
var
|
|
2407
|
+
var Table = (_b43 = (_a43 = TableRaw) == null ? void 0 : _a43.default) != null ? _b43 : TableRaw;
|
|
2200
2408
|
var _a44, _b44;
|
|
2201
|
-
var
|
|
2409
|
+
var TableBody = (_b44 = (_a44 = TableBodyRaw) == null ? void 0 : _a44.default) != null ? _b44 : TableBodyRaw;
|
|
2410
|
+
var _a45, _b45;
|
|
2411
|
+
var TableCell = (_b45 = (_a45 = TableCellRaw) == null ? void 0 : _a45.default) != null ? _b45 : TableCellRaw;
|
|
2412
|
+
var _a46, _b46;
|
|
2413
|
+
var TableContainer = (_b46 = (_a46 = TableContainerRaw) == null ? void 0 : _a46.default) != null ? _b46 : TableContainerRaw;
|
|
2414
|
+
var _a47, _b47;
|
|
2415
|
+
var TableHead = (_b47 = (_a47 = TableHeadRaw) == null ? void 0 : _a47.default) != null ? _b47 : TableHeadRaw;
|
|
2416
|
+
var _a48, _b48;
|
|
2417
|
+
var TableRow = (_b48 = (_a48 = TableRowRaw) == null ? void 0 : _a48.default) != null ? _b48 : TableRowRaw;
|
|
2202
2418
|
var DEFAULT_COLUMN_WIDTH = 160;
|
|
2203
2419
|
var HEADER_ROW_HEIGHT = 48;
|
|
2204
2420
|
var SELECTION_COLUMN_WIDTH = 56;
|
|
@@ -2232,13 +2448,13 @@ var compareValue = (a, b) => {
|
|
|
2232
2448
|
});
|
|
2233
2449
|
};
|
|
2234
2450
|
var getColumnWidth = (column) => {
|
|
2235
|
-
var
|
|
2236
|
-
return Number((
|
|
2451
|
+
var _a130, _b130;
|
|
2452
|
+
return Number((_b130 = (_a130 = column.width) != null ? _a130 : column.minWidth) != null ? _b130 : DEFAULT_COLUMN_WIDTH);
|
|
2237
2453
|
};
|
|
2238
2454
|
var getStickyLeft = (widths, index) => widths.slice(0, index).reduce((sum, width) => sum + width, 0);
|
|
2239
2455
|
var getStickyRight = (widths, index) => widths.slice(index + 1).reduce((sum, width) => sum + width, 0);
|
|
2240
2456
|
var normalizeColumn = (column, index, sortingEnabled) => {
|
|
2241
|
-
var
|
|
2457
|
+
var _a130, _b130, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
2242
2458
|
if (typeof column === "string") {
|
|
2243
2459
|
return {
|
|
2244
2460
|
id: getLastPathSegment(column) || `column-${index}`,
|
|
@@ -2251,7 +2467,7 @@ var normalizeColumn = (column, index, sortingEnabled) => {
|
|
|
2251
2467
|
headerAlign: "center"
|
|
2252
2468
|
};
|
|
2253
2469
|
}
|
|
2254
|
-
const accessorKey = (_c = (
|
|
2470
|
+
const accessorKey = (_c = (_b130 = (_a130 = column.accessorKey) != null ? _a130 : column.key) != null ? _b130 : column.field) != null ? _c : column.id;
|
|
2255
2471
|
const id2 = (_e = (_d = column.id) != null ? _d : getLastPathSegment(accessorKey)) != null ? _e : `column-${index}`;
|
|
2256
2472
|
return __spreadProps(__spreadValues({
|
|
2257
2473
|
width: DEFAULT_COLUMN_WIDTH,
|
|
@@ -2271,12 +2487,12 @@ var normalizeHeaderRows = (header, columns) => {
|
|
|
2271
2487
|
}
|
|
2272
2488
|
return [
|
|
2273
2489
|
columns.map((column) => {
|
|
2274
|
-
var
|
|
2490
|
+
var _a130, _b130;
|
|
2275
2491
|
return {
|
|
2276
2492
|
id: column.id,
|
|
2277
2493
|
key: column.id,
|
|
2278
2494
|
label: column.header,
|
|
2279
|
-
align: (
|
|
2495
|
+
align: (_b130 = (_a130 = column.headerAlign) != null ? _a130 : column.align) != null ? _b130 : "center",
|
|
2280
2496
|
rowSpan: 1
|
|
2281
2497
|
};
|
|
2282
2498
|
})
|
|
@@ -2285,13 +2501,13 @@ var normalizeHeaderRows = (header, columns) => {
|
|
|
2285
2501
|
var buildHeaderLayout = (headerRows) => {
|
|
2286
2502
|
const occupied = [];
|
|
2287
2503
|
return headerRows.map((row, rowIndex) => {
|
|
2288
|
-
var
|
|
2289
|
-
(
|
|
2504
|
+
var _a130;
|
|
2505
|
+
(_a130 = occupied[rowIndex]) != null ? _a130 : occupied[rowIndex] = [];
|
|
2290
2506
|
let pointer = 0;
|
|
2291
2507
|
return row.map((cell, cellIndex) => {
|
|
2292
|
-
var
|
|
2508
|
+
var _a131, _b130, _c, _d, _e, _f, _g;
|
|
2293
2509
|
while (occupied[rowIndex][pointer]) pointer += 1;
|
|
2294
|
-
const colSpan = (
|
|
2510
|
+
const colSpan = (_b130 = (_a131 = cell.colSpan) != null ? _a131 : cell.colspan) != null ? _b130 : 1;
|
|
2295
2511
|
const rowSpan = (_d = (_c = cell.rowSpan) != null ? _c : cell.rowspan) != null ? _d : 1;
|
|
2296
2512
|
const start = pointer;
|
|
2297
2513
|
for (let r = rowIndex; r < rowIndex + rowSpan; r += 1) {
|
|
@@ -2327,8 +2543,8 @@ var renderSortIcon = (sortKey, sortState) => {
|
|
|
2327
2543
|
return sortState.direction === "asc" ? /* @__PURE__ */ jsx(IconArrowUp, { size: 16, color: activeColor }) : /* @__PURE__ */ jsx(IconArrowDown, { size: 16, color: activeColor });
|
|
2328
2544
|
};
|
|
2329
2545
|
var getSortField = (column) => {
|
|
2330
|
-
var
|
|
2331
|
-
return (_c = (
|
|
2546
|
+
var _a130, _b130, _c;
|
|
2547
|
+
return (_c = (_b130 = (_a130 = column.sortField) != null ? _a130 : column.accessorKey) != null ? _b130 : column.key) != null ? _c : column.id;
|
|
2332
2548
|
};
|
|
2333
2549
|
var BaseDatatable = ({
|
|
2334
2550
|
columns = EMPTY_ARRAY,
|
|
@@ -2349,7 +2565,7 @@ var BaseDatatable = ({
|
|
|
2349
2565
|
containerSx = EMPTY_OBJECT,
|
|
2350
2566
|
tableSx = EMPTY_OBJECT
|
|
2351
2567
|
}) => {
|
|
2352
|
-
var
|
|
2568
|
+
var _a130, _b130, _c, _d, _e;
|
|
2353
2569
|
const featureConfig = useMemo(
|
|
2354
2570
|
() => __spreadValues({
|
|
2355
2571
|
sorting: false,
|
|
@@ -2399,7 +2615,7 @@ var BaseDatatable = ({
|
|
|
2399
2615
|
const [internalSelectedIds, setInternalSelectedIds] = useState(
|
|
2400
2616
|
selectionConfig.defaultSelectedRowIds
|
|
2401
2617
|
);
|
|
2402
|
-
const [internalPage, setInternalPage] = useState((
|
|
2618
|
+
const [internalPage, setInternalPage] = useState((_a130 = paginationConfig.page) != null ? _a130 : 0);
|
|
2403
2619
|
const [internalRowsPerPage, setInternalRowsPerPage] = useState(
|
|
2404
2620
|
paginationConfig.rowsPerPage
|
|
2405
2621
|
);
|
|
@@ -2408,7 +2624,7 @@ var BaseDatatable = ({
|
|
|
2408
2624
|
const isRowSelectable = selectionConfig.isRowSelectable;
|
|
2409
2625
|
const selectionPosition = selectionConfig.position;
|
|
2410
2626
|
const selectedIds = controlledSelectedIds != null ? controlledSelectedIds : internalSelectedIds;
|
|
2411
|
-
const sortState = (
|
|
2627
|
+
const sortState = (_b130 = featureConfig.sortState) != null ? _b130 : internalSortState;
|
|
2412
2628
|
const currentPage = (_c = pagination.page) != null ? _c : internalPage;
|
|
2413
2629
|
const currentRowsPerPage = (_d = pagination.rowsPerPage) != null ? _d : internalRowsPerPage;
|
|
2414
2630
|
const isHeaderInteractive = typeof featureConfig.headerInteractive === "boolean" ? featureConfig.headerInteractive : featureConfig.sorting;
|
|
@@ -2445,8 +2661,8 @@ var BaseDatatable = ({
|
|
|
2445
2661
|
);
|
|
2446
2662
|
const resolveRowId = useCallback(
|
|
2447
2663
|
(row, rowIndex) => {
|
|
2448
|
-
var
|
|
2449
|
-
return (
|
|
2664
|
+
var _a131, _b131;
|
|
2665
|
+
return (_b131 = (_a131 = getRowId == null ? void 0 : getRowId(row, rowIndex)) != null ? _a131 : row == null ? void 0 : row.id) != null ? _b131 : rowIndex;
|
|
2450
2666
|
},
|
|
2451
2667
|
[getRowId]
|
|
2452
2668
|
);
|
|
@@ -2569,17 +2785,17 @@ var BaseDatatable = ({
|
|
|
2569
2785
|
]);
|
|
2570
2786
|
const handlePaginationPageChange = useCallback(
|
|
2571
2787
|
(event, nextPage) => {
|
|
2572
|
-
var
|
|
2788
|
+
var _a131;
|
|
2573
2789
|
if (pagination.page === void 0) {
|
|
2574
2790
|
setInternalPage(nextPage);
|
|
2575
2791
|
}
|
|
2576
|
-
(
|
|
2792
|
+
(_a131 = paginationConfig.onPageChange) == null ? void 0 : _a131.call(paginationConfig, event, nextPage);
|
|
2577
2793
|
},
|
|
2578
2794
|
[pagination.page, paginationConfig]
|
|
2579
2795
|
);
|
|
2580
2796
|
const handleRowsPerPageChange = useCallback(
|
|
2581
2797
|
(event) => {
|
|
2582
|
-
var
|
|
2798
|
+
var _a131;
|
|
2583
2799
|
const nextRowsPerPage = Number(event.target.value);
|
|
2584
2800
|
if (pagination.rowsPerPage === void 0) {
|
|
2585
2801
|
setInternalRowsPerPage(nextRowsPerPage);
|
|
@@ -2587,15 +2803,15 @@ var BaseDatatable = ({
|
|
|
2587
2803
|
if (pagination.page === void 0) {
|
|
2588
2804
|
setInternalPage(0);
|
|
2589
2805
|
}
|
|
2590
|
-
(
|
|
2806
|
+
(_a131 = paginationConfig.onRowsPerPageChange) == null ? void 0 : _a131.call(paginationConfig, event, nextRowsPerPage);
|
|
2591
2807
|
},
|
|
2592
2808
|
[pagination.page, pagination.rowsPerPage, paginationConfig]
|
|
2593
2809
|
);
|
|
2594
2810
|
const handleSort = useCallback(
|
|
2595
2811
|
(cell) => {
|
|
2596
|
-
var
|
|
2812
|
+
var _a131, _b131, _c2, _d2, _e2, _f;
|
|
2597
2813
|
if (!featureConfig.sorting) return;
|
|
2598
|
-
if (((
|
|
2814
|
+
if (((_a131 = cell.colSpan) != null ? _a131 : 1) > 1 || ((_b131 = cell.rowSpan) != null ? _b131 : 1) > 1) return;
|
|
2599
2815
|
const sortKey = (_d2 = (_c2 = cell.sortKey) != null ? _c2 : cell.key) != null ? _d2 : cell.id;
|
|
2600
2816
|
const targetColumn = normalizedColumns.find((column) => column.id === sortKey);
|
|
2601
2817
|
if (!(targetColumn == null ? void 0 : targetColumn.sortable)) return;
|
|
@@ -2642,8 +2858,8 @@ var BaseDatatable = ({
|
|
|
2642
2858
|
);
|
|
2643
2859
|
const renderBodyCell = useCallback(
|
|
2644
2860
|
(column, row, rowIndex, columnIndex, rowId, rowActive, cellOverrides = EMPTY_OBJECT) => {
|
|
2645
|
-
var
|
|
2646
|
-
const resolvedColumn = column.isSelection || column.id === selectionColumn.id ? selectionColumn : (
|
|
2861
|
+
var _a131, _b131, _c2, _d2, _e2;
|
|
2862
|
+
const resolvedColumn = column.isSelection || column.id === selectionColumn.id ? selectionColumn : (_a131 = visibleColumns.find((item) => item.id === column.id)) != null ? _a131 : column;
|
|
2647
2863
|
if (resolvedColumn.isSelection) {
|
|
2648
2864
|
const isSelectable = isRowSelectable ? isRowSelectable(row, rowIndex) : true;
|
|
2649
2865
|
return /* @__PURE__ */ jsx(
|
|
@@ -2666,7 +2882,7 @@ var BaseDatatable = ({
|
|
|
2666
2882
|
boxShadow: selectionPosition === "left" && columnIndex === stickyLeftCount - 1 ? `2px 0 6px ${COLORS.stickyShadow}` : selectionPosition === "right" && columnIndex === visibleColumns.length - stickyRightCount ? `-2px 0 6px ${COLORS.stickyShadow}` : "none"
|
|
2667
2883
|
}, cellOverrides.sx),
|
|
2668
2884
|
children: /* @__PURE__ */ jsx(
|
|
2669
|
-
|
|
2885
|
+
Box11,
|
|
2670
2886
|
{
|
|
2671
2887
|
sx: {
|
|
2672
2888
|
display: "flex",
|
|
@@ -2699,7 +2915,7 @@ var BaseDatatable = ({
|
|
|
2699
2915
|
return /* @__PURE__ */ jsx(
|
|
2700
2916
|
TableCell,
|
|
2701
2917
|
{
|
|
2702
|
-
align: (
|
|
2918
|
+
align: (_b131 = resolvedColumn.align) != null ? _b131 : "left",
|
|
2703
2919
|
rowSpan: cellOverrides.rowSpan,
|
|
2704
2920
|
colSpan: cellOverrides.colSpan,
|
|
2705
2921
|
sx: __spreadValues(__spreadValues({
|
|
@@ -2773,8 +2989,8 @@ var BaseDatatable = ({
|
|
|
2773
2989
|
}, tableSx),
|
|
2774
2990
|
children: [
|
|
2775
2991
|
/* @__PURE__ */ jsx(TableHead, { children: rowsForHeader.map((row, rowIndex) => /* @__PURE__ */ jsx(TableRow, { children: row.map((cell) => {
|
|
2776
|
-
var
|
|
2777
|
-
const sortKey = (
|
|
2992
|
+
var _a131, _b131, _c2, _d2, _e2, _f, _g, _h, _i;
|
|
2993
|
+
const sortKey = (_b131 = (_a131 = cell.sortKey) != null ? _a131 : cell.key) != null ? _b131 : cell.id;
|
|
2778
2994
|
const targetColumn = normalizedColumns.find((column) => column.id === sortKey);
|
|
2779
2995
|
const isSortable = featureConfig.sorting && ((_c2 = cell.colSpan) != null ? _c2 : 1) === 1 && ((_d2 = cell.rowSpan) != null ? _d2 : 1) === 1 && (targetColumn == null ? void 0 : targetColumn.sortable);
|
|
2780
2996
|
const shouldStickLeft = cell.sticky === "left" || cell.end < stickyLeftCount;
|
|
@@ -2815,7 +3031,7 @@ var BaseDatatable = ({
|
|
|
2815
3031
|
} : void 0
|
|
2816
3032
|
}),
|
|
2817
3033
|
children: /* @__PURE__ */ jsxs(
|
|
2818
|
-
|
|
3034
|
+
Box11,
|
|
2819
3035
|
{
|
|
2820
3036
|
sx: {
|
|
2821
3037
|
display: "flex",
|
|
@@ -2834,7 +3050,7 @@ var BaseDatatable = ({
|
|
|
2834
3050
|
);
|
|
2835
3051
|
}) }, `header-${rowIndex}`)) }),
|
|
2836
3052
|
/* @__PURE__ */ jsx(TableBody, { children: loading ? /* @__PURE__ */ jsx(TableRow, { children: /* @__PURE__ */ jsx(TableCell, { align: "center", colSpan: visibleColumns.length, children: /* @__PURE__ */ jsxs(
|
|
2837
|
-
|
|
3053
|
+
Box11,
|
|
2838
3054
|
{
|
|
2839
3055
|
sx: {
|
|
2840
3056
|
minHeight: 120,
|
|
@@ -2944,27 +3160,27 @@ BaseDatatable.propTypes = {
|
|
|
2944
3160
|
containerSx: PropTypes3.object,
|
|
2945
3161
|
tableSx: PropTypes3.object
|
|
2946
3162
|
};
|
|
2947
|
-
|
|
2948
|
-
var _a45, _b45;
|
|
2949
|
-
var TextField = (_b45 = (_a45 = TextFieldRaw) == null ? void 0 : _a45.default) != null ? _b45 : TextFieldRaw;
|
|
2950
|
-
var _a46, _b46;
|
|
2951
|
-
var Box11 = (_b46 = (_a46 = BoxRaw) == null ? void 0 : _a46.default) != null ? _b46 : BoxRaw;
|
|
2952
|
-
var _a47, _b47;
|
|
2953
|
-
var Popover = (_b47 = (_a47 = PopoverRaw) == null ? void 0 : _a47.default) != null ? _b47 : PopoverRaw;
|
|
2954
|
-
var _a48, _b48;
|
|
2955
|
-
var InputAdornment = (_b48 = (_a48 = InputAdornmentRaw) == null ? void 0 : _a48.default) != null ? _b48 : InputAdornmentRaw;
|
|
3163
|
+
React3.memo(BaseDatatable);
|
|
2956
3164
|
var _a49, _b49;
|
|
2957
|
-
var
|
|
3165
|
+
var TextField = (_b49 = (_a49 = TextFieldRaw) == null ? void 0 : _a49.default) != null ? _b49 : TextFieldRaw;
|
|
2958
3166
|
var _a50, _b50;
|
|
2959
|
-
var
|
|
3167
|
+
var Box12 = (_b50 = (_a50 = BoxRaw) == null ? void 0 : _a50.default) != null ? _b50 : BoxRaw;
|
|
2960
3168
|
var _a51, _b51;
|
|
2961
|
-
var
|
|
3169
|
+
var Popover = (_b51 = (_a51 = PopoverRaw) == null ? void 0 : _a51.default) != null ? _b51 : PopoverRaw;
|
|
2962
3170
|
var _a52, _b52;
|
|
2963
|
-
var
|
|
3171
|
+
var InputAdornment = (_b52 = (_a52 = InputAdornmentRaw) == null ? void 0 : _a52.default) != null ? _b52 : InputAdornmentRaw;
|
|
2964
3172
|
var _a53, _b53;
|
|
2965
|
-
var
|
|
2966
|
-
var
|
|
2967
|
-
|
|
3173
|
+
var IconButton6 = (_b53 = (_a53 = IconButtonRaw) == null ? void 0 : _a53.default) != null ? _b53 : IconButtonRaw;
|
|
3174
|
+
var _a54, _b54;
|
|
3175
|
+
var Typography = (_b54 = (_a54 = MuiTypographyRaw) == null ? void 0 : _a54.default) != null ? _b54 : MuiTypographyRaw;
|
|
3176
|
+
var _a55, _b55;
|
|
3177
|
+
var DatePicker = (_b55 = (_a55 = DatePicker$1) == null ? void 0 : _a55.default) != null ? _b55 : DatePicker$1;
|
|
3178
|
+
var _a56, _b56;
|
|
3179
|
+
var DateTimePicker = (_b56 = (_a56 = DateTimePicker$1) == null ? void 0 : _a56.default) != null ? _b56 : DateTimePicker$1;
|
|
3180
|
+
var _a57, _b57;
|
|
3181
|
+
var TimePicker = (_b57 = (_a57 = TimePicker$1) == null ? void 0 : _a57.default) != null ? _b57 : TimePicker$1;
|
|
3182
|
+
var BaseDatePicker = (_a130) => {
|
|
3183
|
+
var _b130 = _a130, {
|
|
2968
3184
|
type = "single",
|
|
2969
3185
|
name,
|
|
2970
3186
|
control,
|
|
@@ -2982,7 +3198,7 @@ var BaseDatePicker = (_a126) => {
|
|
|
2982
3198
|
sx = {},
|
|
2983
3199
|
onChange: onChangeCustom = () => {
|
|
2984
3200
|
}
|
|
2985
|
-
} =
|
|
3201
|
+
} = _b130, props = __objRest(_b130, [
|
|
2986
3202
|
"type",
|
|
2987
3203
|
"name",
|
|
2988
3204
|
"control",
|
|
@@ -3000,13 +3216,13 @@ var BaseDatePicker = (_a126) => {
|
|
|
3000
3216
|
"sx",
|
|
3001
3217
|
"onChange"
|
|
3002
3218
|
]);
|
|
3003
|
-
var
|
|
3219
|
+
var _a131, _b131, _c, _d, _e, _f;
|
|
3004
3220
|
const { field, formState } = useController({
|
|
3005
3221
|
name,
|
|
3006
3222
|
control,
|
|
3007
3223
|
defaultValue
|
|
3008
3224
|
});
|
|
3009
|
-
const errorMessage = (_c = (
|
|
3225
|
+
const errorMessage = (_c = (_b131 = (_a131 = formState.errors) == null ? void 0 : _a131[name]) == null ? void 0 : _b131.message) == null ? void 0 : _c.toString();
|
|
3010
3226
|
const [open, setOpen] = useState(false);
|
|
3011
3227
|
const inputRef = useRef(null);
|
|
3012
3228
|
const [rangeValue, setRangeValue] = useState(
|
|
@@ -3072,15 +3288,15 @@ var BaseDatePicker = (_a126) => {
|
|
|
3072
3288
|
}
|
|
3073
3289
|
}, [type, format]);
|
|
3074
3290
|
const LabelSection = () => {
|
|
3075
|
-
var
|
|
3291
|
+
var _a132;
|
|
3076
3292
|
if (!title && !subtitle) return null;
|
|
3077
|
-
return /* @__PURE__ */ jsxs(
|
|
3078
|
-
title && /* @__PURE__ */ jsx(Typography, { variant: "body2", sx: { fontWeight: 600, color: !!((
|
|
3293
|
+
return /* @__PURE__ */ jsxs(Box12, { sx: { display: "flex", gap: SpacingToken.spacing2, mb: "4px" }, children: [
|
|
3294
|
+
title && /* @__PURE__ */ jsx(Typography, { variant: "body2", sx: { fontWeight: 600, color: !!((_a132 = formState.errors) == null ? void 0 : _a132[name]) ? DerivedColor.color_text_danger : DerivedColor.color_text_default }, children: title }),
|
|
3079
3295
|
subtitle && /* @__PURE__ */ jsx(Typography, { variant: "body2", sx: { color: DerivedColor.color_text_subtle }, children: subtitle })
|
|
3080
3296
|
] });
|
|
3081
3297
|
};
|
|
3082
3298
|
if (type === "range") {
|
|
3083
|
-
return /* @__PURE__ */ jsxs(
|
|
3299
|
+
return /* @__PURE__ */ jsxs(Box12, { sx, children: [
|
|
3084
3300
|
/* @__PURE__ */ jsx(LabelSection, {}),
|
|
3085
3301
|
/* @__PURE__ */ jsx(
|
|
3086
3302
|
TextField,
|
|
@@ -3131,7 +3347,7 @@ var BaseDatePicker = (_a126) => {
|
|
|
3131
3347
|
endAdornment: /* @__PURE__ */ jsxs(InputAdornment, { position: "end", children: [
|
|
3132
3348
|
!!errorMessage && /* @__PURE__ */ jsx(IconAlertCircleFilled, { size: 18, color: PrimitiveColor.color_red_500 }),
|
|
3133
3349
|
/* @__PURE__ */ jsx(
|
|
3134
|
-
|
|
3350
|
+
IconButton6,
|
|
3135
3351
|
{
|
|
3136
3352
|
size: "small",
|
|
3137
3353
|
onClick: (e) => {
|
|
@@ -3177,7 +3393,7 @@ var BaseDatePicker = (_a126) => {
|
|
|
3177
3393
|
] });
|
|
3178
3394
|
}
|
|
3179
3395
|
const PickerComponent = (_e = pickerConfig.component) != null ? _e : DatePicker;
|
|
3180
|
-
return /* @__PURE__ */ jsxs(
|
|
3396
|
+
return /* @__PURE__ */ jsxs(Box12, { sx, children: [
|
|
3181
3397
|
/* @__PURE__ */ jsx(LabelSection, {}),
|
|
3182
3398
|
/* @__PURE__ */ jsx(
|
|
3183
3399
|
PickerComponent,
|
|
@@ -3185,36 +3401,26 @@ var BaseDatePicker = (_a126) => {
|
|
|
3185
3401
|
value: (_f = field.value) != null ? _f : null,
|
|
3186
3402
|
open,
|
|
3187
3403
|
onOpen: () => {
|
|
3404
|
+
if (!isDisabled && (openBy === "icon" || openBy === "both")) setOpen(true);
|
|
3188
3405
|
},
|
|
3189
3406
|
onClose: () => setOpen(false),
|
|
3190
3407
|
views: pickerConfig.views,
|
|
3191
3408
|
openTo: pickerConfig.openTo,
|
|
3192
3409
|
inputFormat: pickerConfig.inputFormat,
|
|
3410
|
+
disableMaskedInput: true,
|
|
3193
3411
|
minDate: minDate ? dayjs(minDate) : void 0,
|
|
3194
3412
|
maxDate: maxDate ? dayjs(maxDate) : void 0,
|
|
3195
3413
|
disabled: isDisabled,
|
|
3196
3414
|
disableOpenPicker: openBy === "field",
|
|
3197
3415
|
components: {
|
|
3198
|
-
OpenPickerIcon: () => /* @__PURE__ */ jsx(
|
|
3199
|
-
IconButton5,
|
|
3200
|
-
{
|
|
3201
|
-
size: "small",
|
|
3202
|
-
onClick: (e) => {
|
|
3203
|
-
e.stopPropagation();
|
|
3204
|
-
if (!isDisabled && (openBy === "icon" || openBy === "both")) setOpen(true);
|
|
3205
|
-
},
|
|
3206
|
-
disabled: isDisabled,
|
|
3207
|
-
sx: { p: 0 },
|
|
3208
|
-
children: /* @__PURE__ */ jsx(IconCalendarWeekFilled, { size: 20, color: DerivedColor.color_icon_brand_primary })
|
|
3209
|
-
}
|
|
3210
|
-
)
|
|
3416
|
+
OpenPickerIcon: () => /* @__PURE__ */ jsx(IconCalendarWeekFilled, { size: 20, color: DerivedColor.color_icon_brand_primary })
|
|
3211
3417
|
},
|
|
3212
3418
|
onChange: (newValue) => {
|
|
3213
3419
|
field.onChange(newValue);
|
|
3214
3420
|
onChangeCustom(newValue);
|
|
3215
3421
|
},
|
|
3216
3422
|
renderInput: (params) => {
|
|
3217
|
-
var
|
|
3423
|
+
var _a132;
|
|
3218
3424
|
return /* @__PURE__ */ jsx(
|
|
3219
3425
|
TextField,
|
|
3220
3426
|
__spreadProps(__spreadValues({}, params), {
|
|
@@ -3260,7 +3466,7 @@ var BaseDatePicker = (_a126) => {
|
|
|
3260
3466
|
endAdornment: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
3261
3467
|
!!errorMessage && /* @__PURE__ */ jsx(InputAdornment, { position: "end", children: /* @__PURE__ */ jsx(IconAlertCircleFilled, { size: 18, color: DerivedColor.color_icon_danger }) }),
|
|
3262
3468
|
clearable && field.value && /* @__PURE__ */ jsx(InputAdornment, { position: "end", children: /* @__PURE__ */ jsx(
|
|
3263
|
-
|
|
3469
|
+
IconButton6,
|
|
3264
3470
|
{
|
|
3265
3471
|
size: "small",
|
|
3266
3472
|
onClick: handleClear,
|
|
@@ -3268,7 +3474,7 @@ var BaseDatePicker = (_a126) => {
|
|
|
3268
3474
|
children: /* @__PURE__ */ jsx(CloseIconRaw, { fontSize: "small" })
|
|
3269
3475
|
}
|
|
3270
3476
|
) }),
|
|
3271
|
-
(
|
|
3477
|
+
(_a132 = params.InputProps) == null ? void 0 : _a132.endAdornment
|
|
3272
3478
|
] })
|
|
3273
3479
|
})
|
|
3274
3480
|
})
|
|
@@ -3278,12 +3484,12 @@ var BaseDatePicker = (_a126) => {
|
|
|
3278
3484
|
)
|
|
3279
3485
|
] });
|
|
3280
3486
|
};
|
|
3281
|
-
var
|
|
3282
|
-
var
|
|
3283
|
-
var
|
|
3284
|
-
var Chip2 = (
|
|
3285
|
-
var
|
|
3286
|
-
var Typography2 = (
|
|
3487
|
+
var _a58, _b58;
|
|
3488
|
+
var Box13 = (_b58 = (_a58 = BoxRaw) == null ? void 0 : _a58.default) != null ? _b58 : BoxRaw;
|
|
3489
|
+
var _a59, _b59;
|
|
3490
|
+
var Chip2 = (_b59 = (_a59 = ChipRaw) == null ? void 0 : _a59.default) != null ? _b59 : ChipRaw;
|
|
3491
|
+
var _a60, _b60;
|
|
3492
|
+
var Typography2 = (_b60 = (_a60 = MuiTypographyRaw) == null ? void 0 : _a60.default) != null ? _b60 : MuiTypographyRaw;
|
|
3287
3493
|
var CheckboxOption = (props) => {
|
|
3288
3494
|
const { isSelected, label, selectOption, data } = props;
|
|
3289
3495
|
const handleChange = () => {
|
|
@@ -3299,8 +3505,8 @@ var CheckboxOption = (props) => {
|
|
|
3299
3505
|
}
|
|
3300
3506
|
) }));
|
|
3301
3507
|
};
|
|
3302
|
-
var BaseDropdown = (
|
|
3303
|
-
var
|
|
3508
|
+
var BaseDropdown = (_a130) => {
|
|
3509
|
+
var _b130 = _a130, {
|
|
3304
3510
|
name = "",
|
|
3305
3511
|
control,
|
|
3306
3512
|
options = [],
|
|
@@ -3324,7 +3530,7 @@ var BaseDropdown = (_a126) => {
|
|
|
3324
3530
|
],
|
|
3325
3531
|
variant = "select",
|
|
3326
3532
|
sx = {}
|
|
3327
|
-
} =
|
|
3533
|
+
} = _b130, props = __objRest(_b130, [
|
|
3328
3534
|
"name",
|
|
3329
3535
|
"control",
|
|
3330
3536
|
"options",
|
|
@@ -3343,14 +3549,14 @@ var BaseDropdown = (_a126) => {
|
|
|
3343
3549
|
"variant",
|
|
3344
3550
|
"sx"
|
|
3345
3551
|
]);
|
|
3346
|
-
var
|
|
3552
|
+
var _a131;
|
|
3347
3553
|
const { field, formState } = useController({
|
|
3348
3554
|
name,
|
|
3349
3555
|
control,
|
|
3350
3556
|
defaultValue: defaultValue != null ? defaultValue : variant === "checkbox" || isMulti ? [] : null
|
|
3351
3557
|
});
|
|
3352
|
-
const SelectComponent = loadOptions ? AsyncSelect :
|
|
3353
|
-
const hasError = !!((
|
|
3558
|
+
const SelectComponent = loadOptions ? AsyncSelect : Select3;
|
|
3559
|
+
const hasError = !!((_a131 = formState.errors) == null ? void 0 : _a131[name]);
|
|
3354
3560
|
const selectedValues = Array.isArray(field.value) ? field.value : field.value ? [field.value] : [];
|
|
3355
3561
|
const isCheckboxMode = variant === "checkbox";
|
|
3356
3562
|
const selectAllChecked = showSelectAll && selectedValues.length === options.length && options.length > 0;
|
|
@@ -3359,9 +3565,9 @@ var BaseDropdown = (_a126) => {
|
|
|
3359
3565
|
field.onChange(checked ? options : []);
|
|
3360
3566
|
};
|
|
3361
3567
|
const handleChange = (val) => {
|
|
3362
|
-
var
|
|
3568
|
+
var _a132;
|
|
3363
3569
|
field.onChange(val);
|
|
3364
|
-
(
|
|
3570
|
+
(_a132 = props.onChange) == null ? void 0 : _a132.call(props, val);
|
|
3365
3571
|
};
|
|
3366
3572
|
const customStyles = {
|
|
3367
3573
|
control: (base, state) => __spreadValues(__spreadProps(__spreadValues({}, base), {
|
|
@@ -3391,7 +3597,7 @@ var BaseDropdown = (_a126) => {
|
|
|
3391
3597
|
})
|
|
3392
3598
|
};
|
|
3393
3599
|
return /* @__PURE__ */ jsxs(
|
|
3394
|
-
|
|
3600
|
+
Box13,
|
|
3395
3601
|
{
|
|
3396
3602
|
sx: __spreadValues({
|
|
3397
3603
|
width: "100%",
|
|
@@ -3400,8 +3606,8 @@ var BaseDropdown = (_a126) => {
|
|
|
3400
3606
|
gap: SpacingToken.spacing2
|
|
3401
3607
|
}, sx),
|
|
3402
3608
|
children: [
|
|
3403
|
-
(title || subtitle || showSelectAll) && /* @__PURE__ */ jsxs(
|
|
3404
|
-
/* @__PURE__ */ jsxs(
|
|
3609
|
+
(title || subtitle || showSelectAll) && /* @__PURE__ */ jsxs(Box13, { sx: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
|
|
3610
|
+
/* @__PURE__ */ jsxs(Box13, { sx: { display: "flex", alignItems: "center", gap: SpacingToken.spacing2 }, children: [
|
|
3405
3611
|
title && /* @__PURE__ */ jsx(Typography2, { variant: "body2", sx: { fontWeight: 600, fontSize: 14, color: hasError ? DerivedColor.color_text_danger : DerivedColor.color_text_default }, children: title }),
|
|
3406
3612
|
subtitle && /* @__PURE__ */ jsx(Typography2, { variant: "body2", sx: { fontSize: 14, color: DerivedColor.color_text_subtle }, children: subtitle })
|
|
3407
3613
|
] }),
|
|
@@ -3440,7 +3646,7 @@ var BaseDropdown = (_a126) => {
|
|
|
3440
3646
|
}
|
|
3441
3647
|
})
|
|
3442
3648
|
),
|
|
3443
|
-
showChip && isMulti && !isCheckboxMode && /* @__PURE__ */ jsx(
|
|
3649
|
+
showChip && isMulti && !isCheckboxMode && /* @__PURE__ */ jsx(Box13, { sx: { display: "flex", flexWrap: "wrap", gap: 1, mt: 1 }, children: selectedValues.map((option) => /* @__PURE__ */ jsx(
|
|
3444
3650
|
Chip2,
|
|
3445
3651
|
{
|
|
3446
3652
|
label: option.label,
|
|
@@ -3470,8 +3676,8 @@ var BaseDropdown = (_a126) => {
|
|
|
3470
3676
|
}
|
|
3471
3677
|
);
|
|
3472
3678
|
};
|
|
3473
|
-
var
|
|
3474
|
-
var
|
|
3679
|
+
var _a61, _b61;
|
|
3680
|
+
var Box14 = (_b61 = (_a61 = BoxRaw) == null ? void 0 : _a61.default) != null ? _b61 : BoxRaw;
|
|
3475
3681
|
var BaseDropzone = ({
|
|
3476
3682
|
autoUpload = false,
|
|
3477
3683
|
settings = {
|
|
@@ -3523,7 +3729,7 @@ var BaseDropzone = ({
|
|
|
3523
3729
|
processedCount++;
|
|
3524
3730
|
if (processedCount === acceptedFiles.length) {
|
|
3525
3731
|
setFiles((prevFiles) => {
|
|
3526
|
-
var
|
|
3732
|
+
var _a130;
|
|
3527
3733
|
let updated;
|
|
3528
3734
|
if (settings.maxFiles === 1) {
|
|
3529
3735
|
updated = tempFiles.slice(0, 1);
|
|
@@ -3534,7 +3740,7 @@ var BaseDropzone = ({
|
|
|
3534
3740
|
);
|
|
3535
3741
|
}
|
|
3536
3742
|
if (autoUpload) {
|
|
3537
|
-
(
|
|
3743
|
+
(_a130 = callbacks == null ? void 0 : callbacks.uploadFile) == null ? void 0 : _a130.call(callbacks, updated);
|
|
3538
3744
|
}
|
|
3539
3745
|
return updated;
|
|
3540
3746
|
});
|
|
@@ -3543,8 +3749,8 @@ var BaseDropzone = ({
|
|
|
3543
3749
|
});
|
|
3544
3750
|
};
|
|
3545
3751
|
const handleRejected = (rejections) => {
|
|
3546
|
-
var
|
|
3547
|
-
const error = (_c = (
|
|
3752
|
+
var _a130, _b130, _c;
|
|
3753
|
+
const error = (_c = (_b130 = (_a130 = rejections == null ? void 0 : rejections[0]) == null ? void 0 : _a130.errors) == null ? void 0 : _b130[0]) == null ? void 0 : _c.code;
|
|
3548
3754
|
if (error === "file-too-large") {
|
|
3549
3755
|
setErrorMessage(
|
|
3550
3756
|
"Ukuran file terlalu besar. Maksimal " + settings.maxSize + "MB."
|
|
@@ -3558,12 +3764,12 @@ var BaseDropzone = ({
|
|
|
3558
3764
|
}
|
|
3559
3765
|
};
|
|
3560
3766
|
const removeFile = (index) => {
|
|
3561
|
-
var
|
|
3767
|
+
var _a130, _b130;
|
|
3562
3768
|
const removedFile = files[index];
|
|
3563
3769
|
const updated = files.filter((_, i) => i !== index);
|
|
3564
3770
|
setFiles(updated);
|
|
3565
|
-
(
|
|
3566
|
-
(
|
|
3771
|
+
(_a130 = callbacks == null ? void 0 : callbacks.removeFile) == null ? void 0 : _a130.call(callbacks, removedFile == null ? void 0 : removedFile.originName);
|
|
3772
|
+
(_b130 = callbacks == null ? void 0 : callbacks.uploadFile) == null ? void 0 : _b130.call(callbacks, updated);
|
|
3567
3773
|
};
|
|
3568
3774
|
useEffect(() => {
|
|
3569
3775
|
if (callbacks == null ? void 0 : callbacks.customError) {
|
|
@@ -3571,19 +3777,19 @@ var BaseDropzone = ({
|
|
|
3571
3777
|
}
|
|
3572
3778
|
}, [callbacks == null ? void 0 : callbacks.customError]);
|
|
3573
3779
|
const renderFileIcon = (file) => {
|
|
3574
|
-
var
|
|
3575
|
-
if ((
|
|
3576
|
-
if ((
|
|
3780
|
+
var _a130, _b130, _c;
|
|
3781
|
+
if ((_a130 = file.type) == null ? void 0 : _a130.includes("pdf")) return /* @__PURE__ */ jsx(FilePDFHero, {});
|
|
3782
|
+
if ((_b130 = file.type) == null ? void 0 : _b130.includes("csv")) return /* @__PURE__ */ jsx(FileCSVHero, {});
|
|
3577
3783
|
if ((_c = file.type) == null ? void 0 : _c.includes("image")) return /* @__PURE__ */ jsx(FileJPGHero, {});
|
|
3578
3784
|
return /* @__PURE__ */ jsx(FileJPGHero, {});
|
|
3579
3785
|
};
|
|
3580
3786
|
const PreviewGrid = () => /* @__PURE__ */ jsx(
|
|
3581
|
-
|
|
3787
|
+
Box14,
|
|
3582
3788
|
{
|
|
3583
3789
|
sx: { width: "100%", display: "flex", gap: 2, mt: 3, flexWrap: "wrap" },
|
|
3584
|
-
children: files.map((file, index) => /* @__PURE__ */ jsxs(
|
|
3790
|
+
children: files.map((file, index) => /* @__PURE__ */ jsxs(Box14, { sx: { position: "relative", width: 75 }, children: [
|
|
3585
3791
|
/* @__PURE__ */ jsx(
|
|
3586
|
-
|
|
3792
|
+
Box14,
|
|
3587
3793
|
{
|
|
3588
3794
|
sx: {
|
|
3589
3795
|
position: "absolute",
|
|
@@ -3597,7 +3803,7 @@ var BaseDropzone = ({
|
|
|
3597
3803
|
),
|
|
3598
3804
|
renderFileIcon(file),
|
|
3599
3805
|
/* @__PURE__ */ jsx(
|
|
3600
|
-
|
|
3806
|
+
Box14,
|
|
3601
3807
|
{
|
|
3602
3808
|
sx: __spreadProps(__spreadValues({}, VariantStyles.caption_regular), {
|
|
3603
3809
|
mt: 1,
|
|
@@ -3611,8 +3817,8 @@ var BaseDropzone = ({
|
|
|
3611
3817
|
] }, index))
|
|
3612
3818
|
}
|
|
3613
3819
|
);
|
|
3614
|
-
const PreviewList = () => /* @__PURE__ */ jsx(
|
|
3615
|
-
|
|
3820
|
+
const PreviewList = () => /* @__PURE__ */ jsx(Box14, { sx: { mt: 3 }, children: files.map((file, index) => /* @__PURE__ */ jsxs(
|
|
3821
|
+
Box14,
|
|
3616
3822
|
{
|
|
3617
3823
|
sx: {
|
|
3618
3824
|
display: "flex",
|
|
@@ -3624,10 +3830,10 @@ var BaseDropzone = ({
|
|
|
3624
3830
|
mb: 2
|
|
3625
3831
|
},
|
|
3626
3832
|
children: [
|
|
3627
|
-
/* @__PURE__ */ jsxs(
|
|
3833
|
+
/* @__PURE__ */ jsxs(Box14, { sx: { display: "flex", alignItems: "center", gap: 2 }, children: [
|
|
3628
3834
|
renderFileIcon(file),
|
|
3629
3835
|
/* @__PURE__ */ jsx(
|
|
3630
|
-
|
|
3836
|
+
Box14,
|
|
3631
3837
|
{
|
|
3632
3838
|
sx: __spreadProps(__spreadValues({}, VariantStyles.body2_regular), {
|
|
3633
3839
|
maxWidth: 260,
|
|
@@ -3639,14 +3845,14 @@ var BaseDropzone = ({
|
|
|
3639
3845
|
}
|
|
3640
3846
|
)
|
|
3641
3847
|
] }),
|
|
3642
|
-
/* @__PURE__ */ jsx(
|
|
3848
|
+
/* @__PURE__ */ jsx(Box14, { sx: { cursor: "pointer" }, onClick: () => removeFile(index), children: /* @__PURE__ */ jsx(IconTrash, { size: 20, color: PrimitiveColor.color_red_500 }) })
|
|
3643
3849
|
]
|
|
3644
3850
|
},
|
|
3645
3851
|
index
|
|
3646
3852
|
)) });
|
|
3647
|
-
return /* @__PURE__ */ jsxs(
|
|
3853
|
+
return /* @__PURE__ */ jsxs(Box14, { children: [
|
|
3648
3854
|
labels.title && /* @__PURE__ */ jsx(
|
|
3649
|
-
|
|
3855
|
+
Box14,
|
|
3650
3856
|
{
|
|
3651
3857
|
sx: __spreadProps(__spreadValues({}, VariantStyles.body1_regular), {
|
|
3652
3858
|
fontSize: 14,
|
|
@@ -3659,7 +3865,7 @@ var BaseDropzone = ({
|
|
|
3659
3865
|
}
|
|
3660
3866
|
),
|
|
3661
3867
|
/* @__PURE__ */ jsx(
|
|
3662
|
-
|
|
3868
|
+
Box14,
|
|
3663
3869
|
{
|
|
3664
3870
|
sx: {
|
|
3665
3871
|
border: `2px ${files.length ? "solid" : "dashed"} ${isError ? DerivedColor.color_border_danger : files.length ? DerivedColor.color_border_brand_primary : DerivedColor.color_border_default}`,
|
|
@@ -3681,7 +3887,7 @@ var BaseDropzone = ({
|
|
|
3681
3887
|
accept: settings.allowedExtensions,
|
|
3682
3888
|
multiple: !isSingle,
|
|
3683
3889
|
children: ({ getRootProps, getInputProps }) => /* @__PURE__ */ jsxs(
|
|
3684
|
-
|
|
3890
|
+
Box14,
|
|
3685
3891
|
__spreadProps(__spreadValues({}, getRootProps()), {
|
|
3686
3892
|
sx: {
|
|
3687
3893
|
cursor: "pointer",
|
|
@@ -3695,9 +3901,9 @@ var BaseDropzone = ({
|
|
|
3695
3901
|
children: [
|
|
3696
3902
|
/* @__PURE__ */ jsx("input", __spreadValues({}, getInputProps())),
|
|
3697
3903
|
/* @__PURE__ */ jsx(IconUpload$1, { size: 32, color: DerivedColor.color_icon_brand_primary }),
|
|
3698
|
-
/* @__PURE__ */ jsx(
|
|
3904
|
+
/* @__PURE__ */ jsx(Box14, { sx: __spreadProps(__spreadValues({}, VariantStyles.header1_semibold), { mt: 1 }), children: labels.dropzoneTitle }),
|
|
3699
3905
|
/* @__PURE__ */ jsx(
|
|
3700
|
-
|
|
3906
|
+
Box14,
|
|
3701
3907
|
{
|
|
3702
3908
|
sx: __spreadProps(__spreadValues({}, VariantStyles.body1_regular), {
|
|
3703
3909
|
color: PrimitiveColor.color_neutral_600,
|
|
@@ -3716,7 +3922,7 @@ var BaseDropzone = ({
|
|
|
3716
3922
|
}
|
|
3717
3923
|
),
|
|
3718
3924
|
labels.allowedFileLabel && /* @__PURE__ */ jsx(
|
|
3719
|
-
|
|
3925
|
+
Box14,
|
|
3720
3926
|
{
|
|
3721
3927
|
sx: __spreadProps(__spreadValues({}, VariantStyles.caption_regular), {
|
|
3722
3928
|
color: PrimitiveColor.color_neutral_600,
|
|
@@ -3736,7 +3942,7 @@ var BaseDropzone = ({
|
|
|
3736
3942
|
),
|
|
3737
3943
|
files.length > 0 && (settings.previewType === "list" ? /* @__PURE__ */ jsx(PreviewList, {}) : /* @__PURE__ */ jsx(PreviewGrid, {})),
|
|
3738
3944
|
isError && /* @__PURE__ */ jsxs(
|
|
3739
|
-
|
|
3945
|
+
Box14,
|
|
3740
3946
|
{
|
|
3741
3947
|
sx: __spreadProps(__spreadValues({
|
|
3742
3948
|
display: "flex",
|
|
@@ -3755,18 +3961,18 @@ var BaseDropzone = ({
|
|
|
3755
3961
|
)
|
|
3756
3962
|
] });
|
|
3757
3963
|
};
|
|
3758
|
-
var _a58, _b58;
|
|
3759
|
-
var Radio = (_b58 = (_a58 = RadioRaw) == null ? void 0 : _a58.default) != null ? _b58 : RadioRaw;
|
|
3760
|
-
var _a59, _b59;
|
|
3761
|
-
var RadioGroup = (_b59 = (_a59 = RadioGroupRaw) == null ? void 0 : _a59.default) != null ? _b59 : RadioGroupRaw;
|
|
3762
|
-
var _a60, _b60;
|
|
3763
|
-
var FormControlLabel2 = (_b60 = (_a60 = FormControlLabelRaw) == null ? void 0 : _a60.default) != null ? _b60 : FormControlLabelRaw;
|
|
3764
|
-
var _a61, _b61;
|
|
3765
|
-
var FormControl = (_b61 = (_a61 = FormControlRaw) == null ? void 0 : _a61.default) != null ? _b61 : FormControlRaw;
|
|
3766
3964
|
var _a62, _b62;
|
|
3767
|
-
var
|
|
3768
|
-
var
|
|
3769
|
-
|
|
3965
|
+
var Radio = (_b62 = (_a62 = RadioRaw) == null ? void 0 : _a62.default) != null ? _b62 : RadioRaw;
|
|
3966
|
+
var _a63, _b63;
|
|
3967
|
+
var RadioGroup = (_b63 = (_a63 = RadioGroupRaw) == null ? void 0 : _a63.default) != null ? _b63 : RadioGroupRaw;
|
|
3968
|
+
var _a64, _b64;
|
|
3969
|
+
var FormControlLabel2 = (_b64 = (_a64 = FormControlLabelRaw) == null ? void 0 : _a64.default) != null ? _b64 : FormControlLabelRaw;
|
|
3970
|
+
var _a65, _b65;
|
|
3971
|
+
var FormControl = (_b65 = (_a65 = FormControlRaw) == null ? void 0 : _a65.default) != null ? _b65 : FormControlRaw;
|
|
3972
|
+
var _a66, _b66;
|
|
3973
|
+
var Box15 = (_b66 = (_a66 = BoxRaw) == null ? void 0 : _a66.default) != null ? _b66 : BoxRaw;
|
|
3974
|
+
var BaseRadioButton = (_a130) => {
|
|
3975
|
+
var _b130 = _a130, {
|
|
3770
3976
|
name = "",
|
|
3771
3977
|
control = null,
|
|
3772
3978
|
defaultValue,
|
|
@@ -3777,7 +3983,7 @@ var BaseRadioButton = (_a126) => {
|
|
|
3777
3983
|
isDisabled: isDisabled,
|
|
3778
3984
|
useErrorStateHelper: useErrorStateHelper = false,
|
|
3779
3985
|
sx: sx = {}
|
|
3780
|
-
} =
|
|
3986
|
+
} = _b130, restProps = __objRest(_b130, [
|
|
3781
3987
|
"name",
|
|
3782
3988
|
"control",
|
|
3783
3989
|
"defaultValue",
|
|
@@ -3795,10 +4001,10 @@ var BaseRadioButton = (_a126) => {
|
|
|
3795
4001
|
/* ================= SX ================= */
|
|
3796
4002
|
"sx"
|
|
3797
4003
|
]);
|
|
3798
|
-
var
|
|
4004
|
+
var _a131, _b131, _c, _d, _e, _f;
|
|
3799
4005
|
const { field, formState } = useController({ control, name, defaultValue });
|
|
3800
4006
|
const errorObject = useErrorStateHelper ? errorState(name, formState.errors) : null;
|
|
3801
|
-
const errorMessage = ((
|
|
4007
|
+
const errorMessage = ((_a131 = errorObject == null ? void 0 : errorObject.message) == null ? void 0 : _a131.toString()) || ((_c = (_b131 = formState.errors) == null ? void 0 : _b131[name]) == null ? void 0 : _c.message);
|
|
3802
4008
|
const radioColor = PrimitiveColor.color_blue_cakrawala_500;
|
|
3803
4009
|
const gapValue = (_d = SpacingToken) == null ? void 0 : _d.spacing0;
|
|
3804
4010
|
const isHorizontal = orientation === "horizontal";
|
|
@@ -3811,7 +4017,7 @@ var BaseRadioButton = (_a126) => {
|
|
|
3811
4017
|
py: SpacingToken.spacing0,
|
|
3812
4018
|
borderRadius: Radius.radius_2
|
|
3813
4019
|
};
|
|
3814
|
-
return /* @__PURE__ */ jsxs(
|
|
4020
|
+
return /* @__PURE__ */ jsxs(Box15, { sx, children: [
|
|
3815
4021
|
title && /* @__PURE__ */ jsx(
|
|
3816
4022
|
BaseTypography,
|
|
3817
4023
|
{
|
|
@@ -3834,9 +4040,9 @@ var BaseRadioButton = (_a126) => {
|
|
|
3834
4040
|
sx: { gap: gapValue }
|
|
3835
4041
|
}, restProps), {
|
|
3836
4042
|
children: options.length > 0 ? options.map((item, index) => {
|
|
3837
|
-
var
|
|
3838
|
-
const
|
|
3839
|
-
const optionDisabled = (_c2 = (
|
|
4043
|
+
var _b132, _c2, _d2, _e2;
|
|
4044
|
+
const _a132 = item, { isDisabled: itemDisabled, disabled: itemNativeDisabled, value, label } = _a132, itemRest = __objRest(_a132, ["isDisabled", "disabled", "value", "label"]);
|
|
4045
|
+
const optionDisabled = (_c2 = (_b132 = isDisabled != null ? isDisabled : itemDisabled) != null ? _b132 : itemNativeDisabled) != null ? _c2 : false;
|
|
3840
4046
|
return /* @__PURE__ */ jsx(
|
|
3841
4047
|
FormControlLabel2,
|
|
3842
4048
|
__spreadValues({
|
|
@@ -3875,28 +4081,28 @@ var BaseRadioButton = (_a126) => {
|
|
|
3875
4081
|
] })
|
|
3876
4082
|
] });
|
|
3877
4083
|
};
|
|
3878
|
-
var _a63, _b63;
|
|
3879
|
-
var Check = (_b63 = (_a63 = CheckRaw) == null ? void 0 : _a63.default) != null ? _b63 : CheckRaw;
|
|
3880
|
-
var _a64, _b64;
|
|
3881
|
-
var CheckIcon = (_b64 = (_a64 = CheckRaw) == null ? void 0 : _a64.default) != null ? _b64 : CheckRaw;
|
|
3882
|
-
var _a65, _b65;
|
|
3883
|
-
var StepLabel = (_b65 = (_a65 = StepLabelRaw) == null ? void 0 : _a65.default) != null ? _b65 : StepLabelRaw;
|
|
3884
|
-
var _a66, _b66;
|
|
3885
|
-
var StepConnector = (_b66 = (_a66 = StepConnectorRaw) == null ? void 0 : _a66.default) != null ? _b66 : StepConnectorRaw;
|
|
3886
4084
|
var _a67, _b67;
|
|
3887
|
-
var
|
|
4085
|
+
var Check = (_b67 = (_a67 = CheckRaw) == null ? void 0 : _a67.default) != null ? _b67 : CheckRaw;
|
|
3888
4086
|
var _a68, _b68;
|
|
3889
|
-
var
|
|
4087
|
+
var CheckIcon = (_b68 = (_a68 = CheckRaw) == null ? void 0 : _a68.default) != null ? _b68 : CheckRaw;
|
|
3890
4088
|
var _a69, _b69;
|
|
3891
|
-
var
|
|
4089
|
+
var StepLabel = (_b69 = (_a69 = StepLabelRaw) == null ? void 0 : _a69.default) != null ? _b69 : StepLabelRaw;
|
|
3892
4090
|
var _a70, _b70;
|
|
3893
|
-
var
|
|
4091
|
+
var StepConnector = (_b70 = (_a70 = StepConnectorRaw) == null ? void 0 : _a70.default) != null ? _b70 : StepConnectorRaw;
|
|
3894
4092
|
var _a71, _b71;
|
|
3895
|
-
var
|
|
4093
|
+
var Step = (_b71 = (_a71 = StepRaw) == null ? void 0 : _a71.default) != null ? _b71 : StepRaw;
|
|
3896
4094
|
var _a72, _b72;
|
|
3897
|
-
var
|
|
4095
|
+
var Stepper = (_b72 = (_a72 = StepperRaw) == null ? void 0 : _a72.default) != null ? _b72 : StepperRaw;
|
|
3898
4096
|
var _a73, _b73;
|
|
3899
|
-
var
|
|
4097
|
+
var Stack = (_b73 = (_a73 = StackRaw) == null ? void 0 : _a73.default) != null ? _b73 : StackRaw;
|
|
4098
|
+
var _a74, _b74;
|
|
4099
|
+
var Box16 = (_b74 = (_a74 = BoxRaw) == null ? void 0 : _a74.default) != null ? _b74 : BoxRaw;
|
|
4100
|
+
var _a75, _b75;
|
|
4101
|
+
var Typography3 = (_b75 = (_a75 = MuiTypographyRaw) == null ? void 0 : _a75.default) != null ? _b75 : MuiTypographyRaw;
|
|
4102
|
+
var _a76, _b76;
|
|
4103
|
+
var Button = (_b76 = (_a76 = ButtonRaw) == null ? void 0 : _a76.default) != null ? _b76 : ButtonRaw;
|
|
4104
|
+
var _a77, _b77;
|
|
4105
|
+
var Tooltip = (_b77 = (_a77 = TooltipRaw) == null ? void 0 : _a77.default) != null ? _b77 : TooltipRaw;
|
|
3900
4106
|
var CustomStepLabel = styled(StepLabel)(({ orientation }) => __spreadValues(__spreadProps(__spreadValues({}, orientation === "vertical" && {
|
|
3901
4107
|
alignItems: "flex-start",
|
|
3902
4108
|
"& .MuiStepLabel-labelContainer": {
|
|
@@ -4015,8 +4221,8 @@ var CustomProcessIcon = styled(CheckIcon)({
|
|
|
4015
4221
|
justifyContent: "center",
|
|
4016
4222
|
alignItems: "center"
|
|
4017
4223
|
});
|
|
4018
|
-
var HtmlTooltip = styled((
|
|
4019
|
-
var
|
|
4224
|
+
var HtmlTooltip = styled((_a130) => {
|
|
4225
|
+
var _b130 = _a130, { className } = _b130, props = __objRest(_b130, ["className"]);
|
|
4020
4226
|
return /* @__PURE__ */ jsx(Tooltip, __spreadProps(__spreadValues({}, props), { classes: { popper: className } }));
|
|
4021
4227
|
})(() => ({
|
|
4022
4228
|
[`& .${tooltipClasses.tooltip}`]: {
|
|
@@ -4044,7 +4250,7 @@ var BaseStepper = ({
|
|
|
4044
4250
|
connector: /* @__PURE__ */ jsx(ColorlibConnector, { orientation }),
|
|
4045
4251
|
orientation,
|
|
4046
4252
|
children: steps == null ? void 0 : steps.map((step, index) => {
|
|
4047
|
-
var
|
|
4253
|
+
var _a130;
|
|
4048
4254
|
return /* @__PURE__ */ jsx(Step, { children: /* @__PURE__ */ jsx(
|
|
4049
4255
|
StepLabel,
|
|
4050
4256
|
{
|
|
@@ -4054,9 +4260,9 @@ var BaseStepper = ({
|
|
|
4054
4260
|
{
|
|
4055
4261
|
title: /* @__PURE__ */ jsxs(Fragment$1, { children: [
|
|
4056
4262
|
/* @__PURE__ */ jsx(Typography3, { color: "inherit", children: step == null ? void 0 : step.title }),
|
|
4057
|
-
(
|
|
4058
|
-
(list == null ? void 0 : list.is_done) === 1 ? /* @__PURE__ */ jsx(
|
|
4059
|
-
/* @__PURE__ */ jsx(
|
|
4263
|
+
(_a130 = step == null ? void 0 : step.sublist) == null ? void 0 : _a130.map((list, subIndex) => /* @__PURE__ */ jsx(Box16, { sx: { display: "grid", gap: 1, mt: 0.5 }, children: /* @__PURE__ */ jsxs(Box16, { sx: { display: "flex", gap: 1, alignItems: "center" }, children: [
|
|
4264
|
+
(list == null ? void 0 : list.is_done) === 1 ? /* @__PURE__ */ jsx(Box16, { sx: { display: "flex", alignItems: "center" }, children: /* @__PURE__ */ jsx(CustomCheckIcon, {}) }) : /* @__PURE__ */ jsx(Box16, { sx: { display: "flex", alignItems: "center" }, children: /* @__PURE__ */ jsx(CustomProcessIcon, {}) }),
|
|
4265
|
+
/* @__PURE__ */ jsx(Box16, { children: list == null ? void 0 : list.sublist_title })
|
|
4060
4266
|
] }) }, subIndex))
|
|
4061
4267
|
] }),
|
|
4062
4268
|
children: /* @__PURE__ */ jsx(
|
|
@@ -4079,7 +4285,7 @@ var BaseStepper = ({
|
|
|
4079
4285
|
}
|
|
4080
4286
|
) });
|
|
4081
4287
|
}
|
|
4082
|
-
return /* @__PURE__ */ jsx(
|
|
4288
|
+
return /* @__PURE__ */ jsx(Box16, { sx: __spreadValues({ width: "100%" }, sx), children: /* @__PURE__ */ jsx(
|
|
4083
4289
|
Stepper,
|
|
4084
4290
|
{
|
|
4085
4291
|
activeStep,
|
|
@@ -4093,7 +4299,7 @@ var BaseStepper = ({
|
|
|
4093
4299
|
if (isActive) statusColor = PrimitiveColor.color_blue_cakrawala_500;
|
|
4094
4300
|
if (isCompleted) statusColor = PrimitiveColor.color_green_500;
|
|
4095
4301
|
return /* @__PURE__ */ jsx(Step, { children: /* @__PURE__ */ jsx(CustomStepLabel, { orientation, children: /* @__PURE__ */ jsxs(
|
|
4096
|
-
|
|
4302
|
+
Box16,
|
|
4097
4303
|
{
|
|
4098
4304
|
sx: {
|
|
4099
4305
|
display: "flex",
|
|
@@ -4130,16 +4336,16 @@ BaseStepper.propTypes = {
|
|
|
4130
4336
|
variant: PropTypes3.oneOf(["simple", "dashboard"]),
|
|
4131
4337
|
sx: PropTypes3.object
|
|
4132
4338
|
};
|
|
4133
|
-
var
|
|
4134
|
-
var InputAdornment2 = (
|
|
4135
|
-
var
|
|
4136
|
-
var TextField2 = (
|
|
4137
|
-
var
|
|
4138
|
-
var
|
|
4139
|
-
var
|
|
4140
|
-
var Typography4 = (
|
|
4141
|
-
var BaseTextField = (
|
|
4142
|
-
var
|
|
4339
|
+
var _a78, _b78;
|
|
4340
|
+
var InputAdornment2 = (_b78 = (_a78 = InputAdornmentRaw) == null ? void 0 : _a78.default) != null ? _b78 : InputAdornmentRaw;
|
|
4341
|
+
var _a79, _b79;
|
|
4342
|
+
var TextField2 = (_b79 = (_a79 = TextFieldRaw) == null ? void 0 : _a79.default) != null ? _b79 : TextFieldRaw;
|
|
4343
|
+
var _a80, _b80;
|
|
4344
|
+
var Box17 = (_b80 = (_a80 = BoxRaw) == null ? void 0 : _a80.default) != null ? _b80 : BoxRaw;
|
|
4345
|
+
var _a81, _b81;
|
|
4346
|
+
var Typography4 = (_b81 = (_a81 = MuiTypographyRaw) == null ? void 0 : _a81.default) != null ? _b81 : MuiTypographyRaw;
|
|
4347
|
+
var BaseTextField = (_a130) => {
|
|
4348
|
+
var _b130 = _a130, {
|
|
4143
4349
|
name = "",
|
|
4144
4350
|
control = null,
|
|
4145
4351
|
defaultValue,
|
|
@@ -4160,7 +4366,7 @@ var BaseTextField = (_a126) => {
|
|
|
4160
4366
|
InputProps: externalInputProps,
|
|
4161
4367
|
inputProps: externalInputPropsLower,
|
|
4162
4368
|
sx = {}
|
|
4163
|
-
} =
|
|
4369
|
+
} = _b130, props = __objRest(_b130, [
|
|
4164
4370
|
"name",
|
|
4165
4371
|
"control",
|
|
4166
4372
|
"defaultValue",
|
|
@@ -4182,7 +4388,7 @@ var BaseTextField = (_a126) => {
|
|
|
4182
4388
|
"inputProps",
|
|
4183
4389
|
"sx"
|
|
4184
4390
|
]);
|
|
4185
|
-
var
|
|
4391
|
+
var _a131, _b131, _c, _d, _e, _f, _g, _h, _i, _j;
|
|
4186
4392
|
const { field, formState } = useController({ control, name, defaultValue });
|
|
4187
4393
|
const inputRef = useRef(null);
|
|
4188
4394
|
const hasMask = !!textMask;
|
|
@@ -4275,12 +4481,12 @@ var BaseTextField = (_a126) => {
|
|
|
4275
4481
|
return new RegExp(`^[${allowedPattern}\\s]+$`);
|
|
4276
4482
|
};
|
|
4277
4483
|
const handleKeyDown = (e) => {
|
|
4278
|
-
var
|
|
4484
|
+
var _a132, _b132, _c2;
|
|
4279
4485
|
if (hasMask) {
|
|
4280
4486
|
const input = e.target;
|
|
4281
4487
|
const value = input.value || "";
|
|
4282
|
-
const selectionStart = (
|
|
4283
|
-
const selectionEnd = (
|
|
4488
|
+
const selectionStart = (_a132 = input.selectionStart) != null ? _a132 : value.length;
|
|
4489
|
+
const selectionEnd = (_b132 = input.selectionEnd) != null ? _b132 : value.length;
|
|
4284
4490
|
const allowedKeys2 = [
|
|
4285
4491
|
"Tab",
|
|
4286
4492
|
"Backspace",
|
|
@@ -4426,7 +4632,7 @@ var BaseTextField = (_a126) => {
|
|
|
4426
4632
|
}
|
|
4427
4633
|
};
|
|
4428
4634
|
const handlePaste = (e) => {
|
|
4429
|
-
var
|
|
4635
|
+
var _a132, _b132;
|
|
4430
4636
|
if (hasMask) {
|
|
4431
4637
|
if (isCantPaste) {
|
|
4432
4638
|
e.preventDefault();
|
|
@@ -4435,8 +4641,8 @@ var BaseTextField = (_a126) => {
|
|
|
4435
4641
|
const pastedData2 = e.clipboardData.getData("Text") || "";
|
|
4436
4642
|
const cleaned = sanitizeRaw(pastedData2);
|
|
4437
4643
|
const input = e.target;
|
|
4438
|
-
const selectionStart2 = (
|
|
4439
|
-
const selectionEnd2 = (
|
|
4644
|
+
const selectionStart2 = (_a132 = input.selectionStart) != null ? _a132 : 0;
|
|
4645
|
+
const selectionEnd2 = (_b132 = input.selectionEnd) != null ? _b132 : 0;
|
|
4440
4646
|
const currentRaw = sanitizeRaw(field.value).slice(0, maskSlots);
|
|
4441
4647
|
let rawArr = currentRaw.split("");
|
|
4442
4648
|
const xStart = (textMask.slice(0, selectionStart2).match(/x/gi) || []).length;
|
|
@@ -4509,22 +4715,22 @@ var BaseTextField = (_a126) => {
|
|
|
4509
4715
|
setDisplayValue(newDisplay);
|
|
4510
4716
|
field.onChange(raw);
|
|
4511
4717
|
requestAnimationFrame(() => {
|
|
4512
|
-
var
|
|
4718
|
+
var _a132;
|
|
4513
4719
|
try {
|
|
4514
4720
|
const caret = computeCaretFromRawLen(raw.length, textMask);
|
|
4515
|
-
(
|
|
4721
|
+
(_a132 = inputRef.current) == null ? void 0 : _a132.setSelectionRange(caret, caret);
|
|
4516
4722
|
} catch (e2) {
|
|
4517
4723
|
}
|
|
4518
4724
|
});
|
|
4519
4725
|
};
|
|
4520
|
-
return /* @__PURE__ */ jsxs(
|
|
4726
|
+
return /* @__PURE__ */ jsxs(Box17, { sx, children: [
|
|
4521
4727
|
props.title && /* @__PURE__ */ jsx(
|
|
4522
4728
|
Typography4,
|
|
4523
4729
|
{
|
|
4524
4730
|
variant: "body2",
|
|
4525
4731
|
sx: {
|
|
4526
4732
|
fontWeight: 600,
|
|
4527
|
-
color: !!((
|
|
4733
|
+
color: !!((_a131 = formState.errors) == null ? void 0 : _a131[name]) ? DerivedColor.color_text_danger : DerivedColor.color_text_default,
|
|
4528
4734
|
mb: "4px"
|
|
4529
4735
|
},
|
|
4530
4736
|
children: props.title
|
|
@@ -4536,10 +4742,10 @@ var BaseTextField = (_a126) => {
|
|
|
4536
4742
|
id: props.id || `field-${name}`,
|
|
4537
4743
|
variant: "outlined",
|
|
4538
4744
|
fullWidth: true,
|
|
4539
|
-
error: !!((
|
|
4745
|
+
error: !!((_b131 = formState.errors) == null ? void 0 : _b131[name]),
|
|
4540
4746
|
helperText: /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
4541
|
-
/* @__PURE__ */ jsx(
|
|
4542
|
-
maxLength && showCountHelper && /* @__PURE__ */ jsxs(
|
|
4747
|
+
/* @__PURE__ */ jsx(Box17, { component: "span", children: ((_d = (_c = formState.errors) == null ? void 0 : _c[name]) == null ? void 0 : _d.message) || (maxLength && showLength ? `Maksimal ${maxLength} Karakter` : "") }),
|
|
4748
|
+
maxLength && showCountHelper && /* @__PURE__ */ jsxs(Box17, { component: "span", sx: { ml: "auto" }, children: [
|
|
4543
4749
|
((_e = field.value) == null ? void 0 : _e.length) || 0,
|
|
4544
4750
|
"/",
|
|
4545
4751
|
maxLength
|
|
@@ -4608,18 +4814,18 @@ var BaseTextField = (_a126) => {
|
|
|
4608
4814
|
)
|
|
4609
4815
|
] });
|
|
4610
4816
|
};
|
|
4611
|
-
var _a78, _b78;
|
|
4612
|
-
var Box17 = (_b78 = (_a78 = BoxRaw) == null ? void 0 : _a78.default) != null ? _b78 : BoxRaw;
|
|
4613
|
-
var _a79, _b79;
|
|
4614
|
-
var Button2 = (_b79 = (_a79 = ButtonRaw) == null ? void 0 : _a79.default) != null ? _b79 : ButtonRaw;
|
|
4615
|
-
var _a80, _b80;
|
|
4616
|
-
var Input = (_b80 = (_a80 = InputRaw) == null ? void 0 : _a80.default) != null ? _b80 : InputRaw;
|
|
4617
|
-
var _a81, _b81;
|
|
4618
|
-
var TextField3 = (_b81 = (_a81 = TextFieldRaw) == null ? void 0 : _a81.default) != null ? _b81 : TextFieldRaw;
|
|
4619
4817
|
var _a82, _b82;
|
|
4620
|
-
var
|
|
4818
|
+
var Box18 = (_b82 = (_a82 = BoxRaw) == null ? void 0 : _a82.default) != null ? _b82 : BoxRaw;
|
|
4621
4819
|
var _a83, _b83;
|
|
4622
|
-
var
|
|
4820
|
+
var Button2 = (_b83 = (_a83 = ButtonRaw) == null ? void 0 : _a83.default) != null ? _b83 : ButtonRaw;
|
|
4821
|
+
var _a84, _b84;
|
|
4822
|
+
var Input = (_b84 = (_a84 = InputRaw) == null ? void 0 : _a84.default) != null ? _b84 : InputRaw;
|
|
4823
|
+
var _a85, _b85;
|
|
4824
|
+
var TextField3 = (_b85 = (_a85 = TextFieldRaw) == null ? void 0 : _a85.default) != null ? _b85 : TextFieldRaw;
|
|
4825
|
+
var _a86, _b86;
|
|
4826
|
+
var Typography5 = (_b86 = (_a86 = MuiTypographyRaw) == null ? void 0 : _a86.default) != null ? _b86 : MuiTypographyRaw;
|
|
4827
|
+
var _a87, _b87;
|
|
4828
|
+
var UploadFile = (_b87 = (_a87 = UploadFileRaw) == null ? void 0 : _a87.default) != null ? _b87 : UploadFileRaw;
|
|
4623
4829
|
var TextFieldUpload = ({
|
|
4624
4830
|
name = "upload",
|
|
4625
4831
|
control,
|
|
@@ -4645,14 +4851,14 @@ var TextFieldUpload = ({
|
|
|
4645
4851
|
const [fileSizeError, setFileSizeError] = useState(false);
|
|
4646
4852
|
const [unsupportedFile, setUnsupportedFile] = useState(false);
|
|
4647
4853
|
const handleFileChange = (event) => {
|
|
4648
|
-
var
|
|
4649
|
-
const file = (
|
|
4854
|
+
var _a130, _b130;
|
|
4855
|
+
const file = (_a130 = event.target.files) == null ? void 0 : _a130[0];
|
|
4650
4856
|
if (!file) {
|
|
4651
4857
|
field.onChange("");
|
|
4652
4858
|
uploadFile == null ? void 0 : uploadFile("", null);
|
|
4653
4859
|
return;
|
|
4654
4860
|
}
|
|
4655
|
-
const extension = (
|
|
4861
|
+
const extension = (_b130 = file.name.split(".").pop()) == null ? void 0 : _b130.toLowerCase();
|
|
4656
4862
|
const acceptedExtensions = accept ? accept.split(",").map((ext) => ext.trim().toLowerCase()) : [];
|
|
4657
4863
|
if (acceptedExtensions.length > 0 && !acceptedExtensions.includes(`.${extension}`)) {
|
|
4658
4864
|
setUnsupportedFile(true);
|
|
@@ -4676,8 +4882,8 @@ var TextFieldUpload = ({
|
|
|
4676
4882
|
isError ? PrimitiveColor.color_red_500 : isSuccess ? PrimitiveColor.color_blue_cakrawala_500 : PrimitiveColor.color_neutral_300;
|
|
4677
4883
|
const helperText = fileSizeError ? `Ukuran file melebihi ${maxSize} MB` : unsupportedFile ? "Format file tidak didukung" : `Format ${accept || "-"} ukuran maks. ${maxSize} MB`;
|
|
4678
4884
|
const handleButtonClick = () => {
|
|
4679
|
-
var
|
|
4680
|
-
(
|
|
4885
|
+
var _a130;
|
|
4886
|
+
(_a130 = inputRef.current) == null ? void 0 : _a130.click();
|
|
4681
4887
|
};
|
|
4682
4888
|
const uploadButton = /* @__PURE__ */ jsx(
|
|
4683
4889
|
Button2,
|
|
@@ -4715,7 +4921,7 @@ var TextFieldUpload = ({
|
|
|
4715
4921
|
)
|
|
4716
4922
|
}
|
|
4717
4923
|
);
|
|
4718
|
-
return /* @__PURE__ */ jsxs(
|
|
4924
|
+
return /* @__PURE__ */ jsxs(Box18, { width: "100%", children: [
|
|
4719
4925
|
title && /* @__PURE__ */ jsx(
|
|
4720
4926
|
Typography5,
|
|
4721
4927
|
{
|
|
@@ -4728,8 +4934,8 @@ var TextFieldUpload = ({
|
|
|
4728
4934
|
children: title
|
|
4729
4935
|
}
|
|
4730
4936
|
),
|
|
4731
|
-
/* @__PURE__ */ jsxs(
|
|
4732
|
-
/* @__PURE__ */ jsxs(
|
|
4937
|
+
/* @__PURE__ */ jsxs(Box18, { width: "100%", children: [
|
|
4938
|
+
/* @__PURE__ */ jsxs(Box18, { display: "flex", width: "100%", children: [
|
|
4733
4939
|
buttonPosition === "start" && uploadButton,
|
|
4734
4940
|
/* @__PURE__ */ jsx(
|
|
4735
4941
|
TextField3,
|
|
@@ -4774,7 +4980,7 @@ var TextFieldUpload = ({
|
|
|
4774
4980
|
buttonPosition === "end" && uploadButton
|
|
4775
4981
|
] }),
|
|
4776
4982
|
/* @__PURE__ */ jsxs(
|
|
4777
|
-
|
|
4983
|
+
Box18,
|
|
4778
4984
|
{
|
|
4779
4985
|
display: "flex",
|
|
4780
4986
|
alignItems: "center",
|
|
@@ -4814,13 +5020,13 @@ function Editor(props) {
|
|
|
4814
5020
|
useEffect(() => {
|
|
4815
5021
|
let cancelled = false;
|
|
4816
5022
|
async function load() {
|
|
4817
|
-
var
|
|
5023
|
+
var _a130, _b130, _c, _d, _e, _f, _g;
|
|
4818
5024
|
const alreadyLoaded = typeof window !== "undefined" && window.tinymce;
|
|
4819
5025
|
if (!alreadyLoaded) {
|
|
4820
5026
|
try {
|
|
4821
5027
|
const tinymceModule = await import('tinymce/tinymce');
|
|
4822
5028
|
if (typeof window !== "undefined" && !window.tinymce) {
|
|
4823
|
-
const core = (
|
|
5029
|
+
const core = (_a130 = tinymceModule.default) != null ? _a130 : tinymceModule;
|
|
4824
5030
|
if (core && typeof core === "object" && core.tinymce) {
|
|
4825
5031
|
window.tinymce = core.tinymce;
|
|
4826
5032
|
} else {
|
|
@@ -4871,7 +5077,7 @@ function Editor(props) {
|
|
|
4871
5077
|
import('tinymce/skins/content/default/content.min.css'),
|
|
4872
5078
|
import('tinymce/skins/ui/oxide/content.min.css')
|
|
4873
5079
|
]);
|
|
4874
|
-
const skinCss = (
|
|
5080
|
+
const skinCss = (_b130 = skinMod == null ? void 0 : skinMod.default) != null ? _b130 : "";
|
|
4875
5081
|
const contentCss = (_c = contentMod == null ? void 0 : contentMod.default) != null ? _c : "";
|
|
4876
5082
|
const oxideContentCss = (_d = oxideContentMod == null ? void 0 : oxideContentMod.default) != null ? _d : "";
|
|
4877
5083
|
const combinedCss = [skinCss, contentCss, oxideContentCss].filter(Boolean).join("\n");
|
|
@@ -4911,16 +5117,16 @@ function Editor(props) {
|
|
|
4911
5117
|
}
|
|
4912
5118
|
return /* @__PURE__ */ jsx(TinyEditor, __spreadValues({}, props));
|
|
4913
5119
|
}
|
|
4914
|
-
var
|
|
4915
|
-
var InputAdornment3 = (
|
|
4916
|
-
var
|
|
4917
|
-
var TextField4 = (
|
|
4918
|
-
var
|
|
4919
|
-
var
|
|
4920
|
-
var
|
|
4921
|
-
var Typography6 = (
|
|
4922
|
-
var BaseTextArea = (
|
|
4923
|
-
var
|
|
5120
|
+
var _a88, _b88;
|
|
5121
|
+
var InputAdornment3 = (_b88 = (_a88 = InputAdornmentRaw) == null ? void 0 : _a88.default) != null ? _b88 : InputAdornmentRaw;
|
|
5122
|
+
var _a89, _b89;
|
|
5123
|
+
var TextField4 = (_b89 = (_a89 = TextFieldRaw) == null ? void 0 : _a89.default) != null ? _b89 : TextFieldRaw;
|
|
5124
|
+
var _a90, _b90;
|
|
5125
|
+
var Box19 = (_b90 = (_a90 = BoxRaw) == null ? void 0 : _a90.default) != null ? _b90 : BoxRaw;
|
|
5126
|
+
var _a91, _b91;
|
|
5127
|
+
var Typography6 = (_b91 = (_a91 = MuiTypographyRaw) == null ? void 0 : _a91.default) != null ? _b91 : MuiTypographyRaw;
|
|
5128
|
+
var BaseTextArea = (_a130) => {
|
|
5129
|
+
var _b130 = _a130, {
|
|
4924
5130
|
name = "",
|
|
4925
5131
|
control = null,
|
|
4926
5132
|
defaultValue = "",
|
|
@@ -4934,7 +5140,7 @@ var BaseTextArea = (_a126) => {
|
|
|
4934
5140
|
init,
|
|
4935
5141
|
handleImageUpload,
|
|
4936
5142
|
sx = {}
|
|
4937
|
-
} =
|
|
5143
|
+
} = _b130, props = __objRest(_b130, [
|
|
4938
5144
|
"name",
|
|
4939
5145
|
"control",
|
|
4940
5146
|
"defaultValue",
|
|
@@ -4949,8 +5155,8 @@ var BaseTextArea = (_a126) => {
|
|
|
4949
5155
|
"handleImageUpload",
|
|
4950
5156
|
"sx"
|
|
4951
5157
|
]);
|
|
4952
|
-
var
|
|
4953
|
-
const computedMaxLength = (
|
|
5158
|
+
var _a131, _b131, _c, _d, _e, _f, _g;
|
|
5159
|
+
const computedMaxLength = (_b131 = exactLength != null ? exactLength : maxLength) != null ? _b131 : (_a131 = rules == null ? void 0 : rules.maxLength) == null ? void 0 : _a131.value;
|
|
4954
5160
|
const { field, fieldState } = useController({
|
|
4955
5161
|
control,
|
|
4956
5162
|
name,
|
|
@@ -5019,7 +5225,7 @@ var BaseTextArea = (_a126) => {
|
|
|
5019
5225
|
const editorId = (_e = props.id) != null ? _e : `textarea-${name}-${uniqueSuffix}`;
|
|
5020
5226
|
const wrapperId = `editor-wrap-${uniqueSuffix}`;
|
|
5021
5227
|
if (useRichText) {
|
|
5022
|
-
return /* @__PURE__ */ jsxs(
|
|
5228
|
+
return /* @__PURE__ */ jsxs(Box19, { id: wrapperId, sx, children: [
|
|
5023
5229
|
title && /* @__PURE__ */ jsx(
|
|
5024
5230
|
Typography6,
|
|
5025
5231
|
{
|
|
@@ -5125,7 +5331,7 @@ var BaseTextArea = (_a126) => {
|
|
|
5125
5331
|
] });
|
|
5126
5332
|
}
|
|
5127
5333
|
return /* @__PURE__ */ jsxs(
|
|
5128
|
-
|
|
5334
|
+
Box19,
|
|
5129
5335
|
{
|
|
5130
5336
|
sx: __spreadValues({
|
|
5131
5337
|
display: "flex",
|
|
@@ -5169,16 +5375,16 @@ var BaseTextArea = (_a126) => {
|
|
|
5169
5375
|
}
|
|
5170
5376
|
);
|
|
5171
5377
|
};
|
|
5172
|
-
var _a88, _b88;
|
|
5173
|
-
var Dialog = (_b88 = (_a88 = DialogRaw) == null ? void 0 : _a88.default) != null ? _b88 : DialogRaw;
|
|
5174
|
-
var _a89, _b89;
|
|
5175
|
-
var DialogContent = (_b89 = (_a89 = DialogContentRaw) == null ? void 0 : _a89.default) != null ? _b89 : DialogContentRaw;
|
|
5176
|
-
var _a90, _b90;
|
|
5177
|
-
var DialogActions = (_b90 = (_a90 = DialogActionsRaw) == null ? void 0 : _a90.default) != null ? _b90 : DialogActionsRaw;
|
|
5178
|
-
var _a91, _b91;
|
|
5179
|
-
var IconButton6 = (_b91 = (_a91 = IconButtonRaw) == null ? void 0 : _a91.default) != null ? _b91 : IconButtonRaw;
|
|
5180
5378
|
var _a92, _b92;
|
|
5181
|
-
var
|
|
5379
|
+
var Dialog = (_b92 = (_a92 = DialogRaw) == null ? void 0 : _a92.default) != null ? _b92 : DialogRaw;
|
|
5380
|
+
var _a93, _b93;
|
|
5381
|
+
var DialogContent = (_b93 = (_a93 = DialogContentRaw) == null ? void 0 : _a93.default) != null ? _b93 : DialogContentRaw;
|
|
5382
|
+
var _a94, _b94;
|
|
5383
|
+
var DialogActions = (_b94 = (_a94 = DialogActionsRaw) == null ? void 0 : _a94.default) != null ? _b94 : DialogActionsRaw;
|
|
5384
|
+
var _a95, _b95;
|
|
5385
|
+
var IconButton7 = (_b95 = (_a95 = IconButtonRaw) == null ? void 0 : _a95.default) != null ? _b95 : IconButtonRaw;
|
|
5386
|
+
var _a96, _b96;
|
|
5387
|
+
var Box20 = (_b96 = (_a96 = BoxRaw) == null ? void 0 : _a96.default) != null ? _b96 : BoxRaw;
|
|
5182
5388
|
var ICON_MAP = {
|
|
5183
5389
|
success: {
|
|
5184
5390
|
Hero: SuccessHero,
|
|
@@ -5231,13 +5437,13 @@ var ModalAlertDialog = ({
|
|
|
5231
5437
|
if (typeof icon === "string" && ICON_MAP[icon.toLowerCase()]) {
|
|
5232
5438
|
const { Hero, FallbackIcon, color } = ICON_MAP[icon.toLowerCase()];
|
|
5233
5439
|
if (Hero) {
|
|
5234
|
-
return /* @__PURE__ */ jsx(
|
|
5440
|
+
return /* @__PURE__ */ jsx(Box20, { sx: { width: 160, height: 130, display: "flex", alignItems: "center", justifyContent: "center", "& svg": { width: "100%", height: "100%" } }, children: /* @__PURE__ */ jsx(Hero, {}) });
|
|
5235
5441
|
}
|
|
5236
5442
|
return /* @__PURE__ */ jsx(FallbackIcon, { size: 64, color, stroke: 1.5 });
|
|
5237
5443
|
}
|
|
5238
5444
|
if (typeof icon === "string" && (icon.startsWith("/") || icon.startsWith("http"))) {
|
|
5239
5445
|
return /* @__PURE__ */ jsx(
|
|
5240
|
-
|
|
5446
|
+
Box20,
|
|
5241
5447
|
{
|
|
5242
5448
|
component: "img",
|
|
5243
5449
|
src: icon,
|
|
@@ -5278,7 +5484,7 @@ var ModalAlertDialog = ({
|
|
|
5278
5484
|
}
|
|
5279
5485
|
},
|
|
5280
5486
|
children: [
|
|
5281
|
-
/* @__PURE__ */ jsx(
|
|
5487
|
+
/* @__PURE__ */ jsx(Box20, { sx: { position: "absolute", right: 8, top: 8 }, children: /* @__PURE__ */ jsx(IconButton7, { onClick: onClose, sx: { color: DerivedColor.color_text_subtle }, children: /* @__PURE__ */ jsx(IconX, { size: 20 }) }) }),
|
|
5282
5488
|
/* @__PURE__ */ jsxs(
|
|
5283
5489
|
DialogContent,
|
|
5284
5490
|
{
|
|
@@ -5293,7 +5499,7 @@ var ModalAlertDialog = ({
|
|
|
5293
5499
|
gap: SpacingToken.spacing3
|
|
5294
5500
|
},
|
|
5295
5501
|
children: [
|
|
5296
|
-
/* @__PURE__ */ jsx(
|
|
5502
|
+
/* @__PURE__ */ jsx(Box20, { sx: { display: "flex", justifyContent: "center", py: 1 }, children: renderIcon() }),
|
|
5297
5503
|
resolvedTitle && /* @__PURE__ */ jsx(BaseTypography, { variant: "header1_bold.default", sx: { fontSize: "18px" }, children: resolvedTitle }),
|
|
5298
5504
|
description && /* @__PURE__ */ jsx(BaseTypography, { variant: "body2_regular.default", sx: { textAlign: "center" }, children: description })
|
|
5299
5505
|
]
|
|
@@ -5344,14 +5550,14 @@ var setModalRef = (ref) => {
|
|
|
5344
5550
|
_modalRef = ref;
|
|
5345
5551
|
};
|
|
5346
5552
|
var show = (options = {}) => {
|
|
5347
|
-
var
|
|
5348
|
-
if ((
|
|
5553
|
+
var _a130;
|
|
5554
|
+
if ((_a130 = _modalRef == null ? void 0 : _modalRef.current) == null ? void 0 : _a130.show) {
|
|
5349
5555
|
_modalRef.current.show(options);
|
|
5350
5556
|
}
|
|
5351
5557
|
};
|
|
5352
5558
|
var hide = () => {
|
|
5353
|
-
var
|
|
5354
|
-
if ((
|
|
5559
|
+
var _a130;
|
|
5560
|
+
if ((_a130 = _modalRef == null ? void 0 : _modalRef.current) == null ? void 0 : _a130.hide) {
|
|
5355
5561
|
_modalRef.current.hide();
|
|
5356
5562
|
}
|
|
5357
5563
|
};
|
|
@@ -5446,12 +5652,12 @@ var LoadingDots = () => /* @__PURE__ */ jsxs(
|
|
|
5446
5652
|
]
|
|
5447
5653
|
}
|
|
5448
5654
|
);
|
|
5449
|
-
var
|
|
5450
|
-
var Dialog2 = (
|
|
5451
|
-
var
|
|
5452
|
-
var DialogContent2 = (
|
|
5453
|
-
var
|
|
5454
|
-
(
|
|
5655
|
+
var _a97, _b97;
|
|
5656
|
+
var Dialog2 = (_b97 = (_a97 = DialogRaw) == null ? void 0 : _a97.default) != null ? _b97 : DialogRaw;
|
|
5657
|
+
var _a98, _b98;
|
|
5658
|
+
var DialogContent2 = (_b98 = (_a98 = DialogContentRaw) == null ? void 0 : _a98.default) != null ? _b98 : DialogContentRaw;
|
|
5659
|
+
var _a99, _b99;
|
|
5660
|
+
(_b99 = (_a99 = BoxRaw) == null ? void 0 : _a99.default) != null ? _b99 : BoxRaw;
|
|
5455
5661
|
var ModalLoadingDialog = ({ open = false }) => {
|
|
5456
5662
|
return /* @__PURE__ */ jsx(
|
|
5457
5663
|
Dialog2,
|
|
@@ -5498,14 +5704,14 @@ var setModalRef2 = (ref) => {
|
|
|
5498
5704
|
_modalRef2 = ref;
|
|
5499
5705
|
};
|
|
5500
5706
|
var show2 = () => {
|
|
5501
|
-
var
|
|
5502
|
-
if ((
|
|
5707
|
+
var _a130;
|
|
5708
|
+
if ((_a130 = _modalRef2 == null ? void 0 : _modalRef2.current) == null ? void 0 : _a130.show) {
|
|
5503
5709
|
_modalRef2.current.show();
|
|
5504
5710
|
}
|
|
5505
5711
|
};
|
|
5506
5712
|
var hide2 = () => {
|
|
5507
|
-
var
|
|
5508
|
-
if ((
|
|
5713
|
+
var _a130;
|
|
5714
|
+
if ((_a130 = _modalRef2 == null ? void 0 : _modalRef2.current) == null ? void 0 : _a130.hide) {
|
|
5509
5715
|
_modalRef2.current.hide();
|
|
5510
5716
|
}
|
|
5511
5717
|
};
|
|
@@ -5530,16 +5736,16 @@ var BaseModalLoadingProvider = () => {
|
|
|
5530
5736
|
return /* @__PURE__ */ jsx(ModalLoadingDialog, { open });
|
|
5531
5737
|
};
|
|
5532
5738
|
var BaseModalLoadingDialog = ModalLoadingDialog;
|
|
5533
|
-
var _a96, _b96;
|
|
5534
|
-
var Dialog3 = (_b96 = (_a96 = DialogRaw) == null ? void 0 : _a96.default) != null ? _b96 : DialogRaw;
|
|
5535
|
-
var _a97, _b97;
|
|
5536
|
-
var DialogContent3 = (_b97 = (_a97 = DialogContentRaw) == null ? void 0 : _a97.default) != null ? _b97 : DialogContentRaw;
|
|
5537
|
-
var _a98, _b98;
|
|
5538
|
-
var DialogActions2 = (_b98 = (_a98 = DialogActionsRaw) == null ? void 0 : _a98.default) != null ? _b98 : DialogActionsRaw;
|
|
5539
|
-
var _a99, _b99;
|
|
5540
|
-
var IconButton7 = (_b99 = (_a99 = IconButtonRaw) == null ? void 0 : _a99.default) != null ? _b99 : IconButtonRaw;
|
|
5541
5739
|
var _a100, _b100;
|
|
5542
|
-
var
|
|
5740
|
+
var Dialog3 = (_b100 = (_a100 = DialogRaw) == null ? void 0 : _a100.default) != null ? _b100 : DialogRaw;
|
|
5741
|
+
var _a101, _b101;
|
|
5742
|
+
var DialogContent3 = (_b101 = (_a101 = DialogContentRaw) == null ? void 0 : _a101.default) != null ? _b101 : DialogContentRaw;
|
|
5743
|
+
var _a102, _b102;
|
|
5744
|
+
var DialogActions2 = (_b102 = (_a102 = DialogActionsRaw) == null ? void 0 : _a102.default) != null ? _b102 : DialogActionsRaw;
|
|
5745
|
+
var _a103, _b103;
|
|
5746
|
+
var IconButton8 = (_b103 = (_a103 = IconButtonRaw) == null ? void 0 : _a103.default) != null ? _b103 : IconButtonRaw;
|
|
5747
|
+
var _a104, _b104;
|
|
5748
|
+
var Box22 = (_b104 = (_a104 = BoxRaw) == null ? void 0 : _a104.default) != null ? _b104 : BoxRaw;
|
|
5543
5749
|
var HEADER_COLORS2 = {
|
|
5544
5750
|
primary: DerivedColor.color_bg_brand_primary,
|
|
5545
5751
|
secondary: DerivedColor.color_bg_brand_secondary,
|
|
@@ -5547,8 +5753,8 @@ var HEADER_COLORS2 = {
|
|
|
5547
5753
|
warning: DerivedColor.color_bg_warning,
|
|
5548
5754
|
danger: DerivedColor.color_bg_danger
|
|
5549
5755
|
};
|
|
5550
|
-
var BaseModalPopup = (
|
|
5551
|
-
var
|
|
5756
|
+
var BaseModalPopup = (_a130) => {
|
|
5757
|
+
var _b130 = _a130, {
|
|
5552
5758
|
open = false,
|
|
5553
5759
|
onClose,
|
|
5554
5760
|
variant = "default",
|
|
@@ -5563,7 +5769,7 @@ var BaseModalPopup = (_a126) => {
|
|
|
5563
5769
|
isWatermark = false,
|
|
5564
5770
|
watermarkText = "",
|
|
5565
5771
|
sx = {}
|
|
5566
|
-
} =
|
|
5772
|
+
} = _b130, rest = __objRest(_b130, [
|
|
5567
5773
|
"open",
|
|
5568
5774
|
"onClose",
|
|
5569
5775
|
"variant",
|
|
@@ -5619,7 +5825,7 @@ var BaseModalPopup = (_a126) => {
|
|
|
5619
5825
|
}, rest), {
|
|
5620
5826
|
children: [
|
|
5621
5827
|
hasHeader ? /* @__PURE__ */ jsxs(
|
|
5622
|
-
|
|
5828
|
+
Box22,
|
|
5623
5829
|
{
|
|
5624
5830
|
sx: {
|
|
5625
5831
|
backgroundColor: headerBg,
|
|
@@ -5629,11 +5835,11 @@ var BaseModalPopup = (_a126) => {
|
|
|
5629
5835
|
justifyContent: "space-between"
|
|
5630
5836
|
},
|
|
5631
5837
|
children: [
|
|
5632
|
-
/* @__PURE__ */ jsxs(
|
|
5633
|
-
startIcon && /* @__PURE__ */ jsx(
|
|
5634
|
-
/* @__PURE__ */ jsxs(
|
|
5838
|
+
/* @__PURE__ */ jsxs(Box22, { sx: { display: "flex", alignItems: "center", gap: "8px" }, children: [
|
|
5839
|
+
startIcon && /* @__PURE__ */ jsx(Box22, { sx: { display: "flex", alignItems: "center", lineHeight: 0, color: headerTextColor }, children: startIcon }),
|
|
5840
|
+
/* @__PURE__ */ jsxs(Box22, { children: [
|
|
5635
5841
|
/* @__PURE__ */ jsx(
|
|
5636
|
-
|
|
5842
|
+
Box22,
|
|
5637
5843
|
{
|
|
5638
5844
|
component: "span",
|
|
5639
5845
|
sx: {
|
|
@@ -5646,7 +5852,7 @@ var BaseModalPopup = (_a126) => {
|
|
|
5646
5852
|
}
|
|
5647
5853
|
),
|
|
5648
5854
|
subtitle && /* @__PURE__ */ jsx(
|
|
5649
|
-
|
|
5855
|
+
Box22,
|
|
5650
5856
|
{
|
|
5651
5857
|
component: "span",
|
|
5652
5858
|
sx: {
|
|
@@ -5662,12 +5868,12 @@ var BaseModalPopup = (_a126) => {
|
|
|
5662
5868
|
)
|
|
5663
5869
|
] })
|
|
5664
5870
|
] }),
|
|
5665
|
-
/* @__PURE__ */ jsx(
|
|
5871
|
+
/* @__PURE__ */ jsx(IconButton8, { onClick: onClose, sx: { color: headerTextColor }, children: /* @__PURE__ */ jsx(IconX, { size: 20 }) })
|
|
5666
5872
|
]
|
|
5667
5873
|
}
|
|
5668
5874
|
) : (
|
|
5669
5875
|
/* Default variant: close button top-right only */
|
|
5670
|
-
/* @__PURE__ */ jsx(
|
|
5876
|
+
/* @__PURE__ */ jsx(Box22, { sx: { position: "absolute", right: 8, top: 8, zIndex: 1 }, children: /* @__PURE__ */ jsx(IconButton8, { onClick: onClose, sx: { color: DerivedColor.color_text_subtle }, children: /* @__PURE__ */ jsx(IconX, { size: 20 }) }) })
|
|
5671
5877
|
),
|
|
5672
5878
|
/* @__PURE__ */ jsx(
|
|
5673
5879
|
DialogContent3,
|
|
@@ -5696,42 +5902,42 @@ var BaseModalPopup = (_a126) => {
|
|
|
5696
5902
|
})
|
|
5697
5903
|
);
|
|
5698
5904
|
};
|
|
5699
|
-
var _a101, _b101;
|
|
5700
|
-
var CloseIcon2 = (_b101 = (_a101 = CloseIconRaw) == null ? void 0 : _a101.default) != null ? _b101 : CloseIconRaw;
|
|
5701
|
-
var _a102, _b102;
|
|
5702
|
-
var CheckIcon2 = (_b102 = (_a102 = CheckRaw) == null ? void 0 : _a102.default) != null ? _b102 : CheckRaw;
|
|
5703
|
-
var _a103, _b103;
|
|
5704
|
-
var FailedIcon = (_b103 = (_a103 = CloseIconRaw) == null ? void 0 : _a103.default) != null ? _b103 : CloseIconRaw;
|
|
5705
|
-
var _a104, _b104;
|
|
5706
|
-
var InfoIcon = (_b104 = (_a104 = InfoIconRaw) == null ? void 0 : _a104.default) != null ? _b104 : InfoIconRaw;
|
|
5707
5905
|
var _a105, _b105;
|
|
5708
|
-
var
|
|
5906
|
+
var CloseIcon2 = (_b105 = (_a105 = CloseIconRaw) == null ? void 0 : _a105.default) != null ? _b105 : CloseIconRaw;
|
|
5709
5907
|
var _a106, _b106;
|
|
5710
|
-
var
|
|
5908
|
+
var CheckIcon2 = (_b106 = (_a106 = CheckRaw) == null ? void 0 : _a106.default) != null ? _b106 : CheckRaw;
|
|
5711
5909
|
var _a107, _b107;
|
|
5712
|
-
var
|
|
5910
|
+
var FailedIcon = (_b107 = (_a107 = CloseIconRaw) == null ? void 0 : _a107.default) != null ? _b107 : CloseIconRaw;
|
|
5713
5911
|
var _a108, _b108;
|
|
5714
|
-
var
|
|
5912
|
+
var InfoIcon = (_b108 = (_a108 = InfoIconRaw) == null ? void 0 : _a108.default) != null ? _b108 : InfoIconRaw;
|
|
5715
5913
|
var _a109, _b109;
|
|
5716
|
-
var
|
|
5914
|
+
var Dialog4 = (_b109 = (_a109 = DialogRaw) == null ? void 0 : _a109.default) != null ? _b109 : DialogRaw;
|
|
5717
5915
|
var _a110, _b110;
|
|
5718
|
-
var
|
|
5916
|
+
var DialogTitle = (_b110 = (_a110 = DialogTitleRaw) == null ? void 0 : _a110.default) != null ? _b110 : DialogTitleRaw;
|
|
5719
5917
|
var _a111, _b111;
|
|
5720
|
-
var
|
|
5918
|
+
var DialogContent4 = (_b111 = (_a111 = DialogContentRaw) == null ? void 0 : _a111.default) != null ? _b111 : DialogContentRaw;
|
|
5721
5919
|
var _a112, _b112;
|
|
5722
|
-
var
|
|
5920
|
+
var DialogActions3 = (_b112 = (_a112 = DialogActionsRaw) == null ? void 0 : _a112.default) != null ? _b112 : DialogActionsRaw;
|
|
5723
5921
|
var _a113, _b113;
|
|
5724
|
-
var
|
|
5922
|
+
var IconButton9 = (_b113 = (_a113 = IconButtonRaw) == null ? void 0 : _a113.default) != null ? _b113 : IconButtonRaw;
|
|
5725
5923
|
var _a114, _b114;
|
|
5726
|
-
var
|
|
5924
|
+
var Typography7 = (_b114 = (_a114 = MuiTypographyRaw) == null ? void 0 : _a114.default) != null ? _b114 : MuiTypographyRaw;
|
|
5727
5925
|
var _a115, _b115;
|
|
5728
|
-
var
|
|
5926
|
+
var Box23 = (_b115 = (_a115 = BoxRaw) == null ? void 0 : _a115.default) != null ? _b115 : BoxRaw;
|
|
5729
5927
|
var _a116, _b116;
|
|
5730
|
-
var
|
|
5928
|
+
var Stepper2 = (_b116 = (_a116 = StepperRaw) == null ? void 0 : _a116.default) != null ? _b116 : StepperRaw;
|
|
5731
5929
|
var _a117, _b117;
|
|
5732
|
-
var
|
|
5733
|
-
var
|
|
5734
|
-
|
|
5930
|
+
var Step2 = (_b117 = (_a117 = StepRaw) == null ? void 0 : _a117.default) != null ? _b117 : StepRaw;
|
|
5931
|
+
var _a118, _b118;
|
|
5932
|
+
var StepLabel2 = (_b118 = (_a118 = StepLabelRaw) == null ? void 0 : _a118.default) != null ? _b118 : StepLabelRaw;
|
|
5933
|
+
var _a119, _b119;
|
|
5934
|
+
var StepContent = (_b119 = (_a119 = StepContentRaw) == null ? void 0 : _a119.default) != null ? _b119 : StepContentRaw;
|
|
5935
|
+
var _a120, _b120;
|
|
5936
|
+
var Tooltip2 = (_b120 = (_a120 = TooltipRaw) == null ? void 0 : _a120.default) != null ? _b120 : TooltipRaw;
|
|
5937
|
+
var _a121, _b121;
|
|
5938
|
+
var CircularProgress2 = (_b121 = (_a121 = CircularProgressRaw) == null ? void 0 : _a121.default) != null ? _b121 : CircularProgressRaw;
|
|
5939
|
+
var HtmlTooltip2 = styled((_a130) => {
|
|
5940
|
+
var _b130 = _a130, { className } = _b130, props = __objRest(_b130, ["className"]);
|
|
5735
5941
|
return /* @__PURE__ */ jsx(Tooltip2, __spreadProps(__spreadValues({}, props), { classes: { popper: className } }));
|
|
5736
5942
|
})(({ theme }) => ({
|
|
5737
5943
|
[`& .${tooltipClasses.tooltip}`]: {
|
|
@@ -5778,8 +5984,8 @@ var StepIconWrapper = styled("div")(({ ownerState }) => __spreadValues({
|
|
|
5778
5984
|
justifyContent: "center",
|
|
5779
5985
|
minHeight: ICON_SIZE
|
|
5780
5986
|
}, ownerState.active && { backgroundColor: "transparent" }));
|
|
5781
|
-
var BaseModalStepper = (
|
|
5782
|
-
var
|
|
5987
|
+
var BaseModalStepper = (_a130) => {
|
|
5988
|
+
var _b130 = _a130, {
|
|
5783
5989
|
open,
|
|
5784
5990
|
onClose,
|
|
5785
5991
|
title = "",
|
|
@@ -5790,7 +5996,7 @@ var BaseModalStepper = (_a126) => {
|
|
|
5790
5996
|
showFooter = true,
|
|
5791
5997
|
children,
|
|
5792
5998
|
modalWidth = "max-w-md"
|
|
5793
|
-
} =
|
|
5999
|
+
} = _b130, props = __objRest(_b130, [
|
|
5794
6000
|
"open",
|
|
5795
6001
|
"onClose",
|
|
5796
6002
|
"title",
|
|
@@ -5855,14 +6061,14 @@ var BaseModalStepper = (_a126) => {
|
|
|
5855
6061
|
icon: PropTypes3.node
|
|
5856
6062
|
};
|
|
5857
6063
|
useEffect(() => {
|
|
5858
|
-
var
|
|
6064
|
+
var _a131;
|
|
5859
6065
|
if (!open) {
|
|
5860
6066
|
setActiveStep(0);
|
|
5861
6067
|
return;
|
|
5862
6068
|
}
|
|
5863
6069
|
if (stepper.length === 0) return;
|
|
5864
6070
|
const incrementStep = () => setActiveStep((prev) => prev < stepper.length ? prev + 1 : prev);
|
|
5865
|
-
const delay = activeStep > 0 ? ((
|
|
6071
|
+
const delay = activeStep > 0 ? ((_a131 = stepper[activeStep - 1]) == null ? void 0 : _a131.responseTime) || 800 : 800;
|
|
5866
6072
|
const timer = setTimeout(incrementStep, delay);
|
|
5867
6073
|
return () => clearTimeout(timer);
|
|
5868
6074
|
}, [activeStep, stepper, open]);
|
|
@@ -5912,7 +6118,7 @@ var BaseModalStepper = (_a126) => {
|
|
|
5912
6118
|
/* @__PURE__ */ jsxs(DialogTitle, { sx: { textAlign: "center", pt: 4 }, children: [
|
|
5913
6119
|
title && /* @__PURE__ */ jsx(Typography7, { style: VariantStyles.header1_bold, children: title }),
|
|
5914
6120
|
/* @__PURE__ */ jsx(
|
|
5915
|
-
|
|
6121
|
+
IconButton9,
|
|
5916
6122
|
{
|
|
5917
6123
|
"aria-label": "close",
|
|
5918
6124
|
onClick: onClose,
|
|
@@ -5928,7 +6134,7 @@ var BaseModalStepper = (_a126) => {
|
|
|
5928
6134
|
] }),
|
|
5929
6135
|
/* @__PURE__ */ jsxs(DialogContent4, { sx: { px: 4, pb: 3 }, children: [
|
|
5930
6136
|
children ? children : /* @__PURE__ */ jsxs(
|
|
5931
|
-
|
|
6137
|
+
Box23,
|
|
5932
6138
|
{
|
|
5933
6139
|
sx: {
|
|
5934
6140
|
display: "flex",
|
|
@@ -5953,7 +6159,7 @@ var BaseModalStepper = (_a126) => {
|
|
|
5953
6159
|
]
|
|
5954
6160
|
}
|
|
5955
6161
|
),
|
|
5956
|
-
/* @__PURE__ */ jsx(
|
|
6162
|
+
/* @__PURE__ */ jsx(Box23, { sx: { width: "100%", maxWidth: 500 }, children: /* @__PURE__ */ jsx(Stepper2, { activeStep, orientation: "vertical", children: stepper.map((step) => /* @__PURE__ */ jsxs(Step2, { children: [
|
|
5957
6163
|
/* @__PURE__ */ jsx(StepLabel2, { StepIconComponent: ColorlibStepIcon2, children: step.label }),
|
|
5958
6164
|
/* @__PURE__ */ jsx(StepContent, { children: /* @__PURE__ */ jsx(Typography7, { sx: { fontSize: 14 }, children: step.description }) })
|
|
5959
6165
|
] }, step.label)) }) })
|
|
@@ -5993,25 +6199,25 @@ BaseModalStepper.propTypes = {
|
|
|
5993
6199
|
};
|
|
5994
6200
|
var Countdown = dynamic(
|
|
5995
6201
|
() => import('react-countdown').then((mod) => {
|
|
5996
|
-
var
|
|
5997
|
-
return (
|
|
6202
|
+
var _a130;
|
|
6203
|
+
return (_a130 = mod.default) != null ? _a130 : mod;
|
|
5998
6204
|
}),
|
|
5999
6205
|
{ ssr: false }
|
|
6000
6206
|
);
|
|
6001
|
-
var _a118, _b118;
|
|
6002
|
-
var CloseIcon3 = (_b118 = (_a118 = CloseIconRaw) == null ? void 0 : _a118.default) != null ? _b118 : CloseIconRaw;
|
|
6003
|
-
var _a119, _b119;
|
|
6004
|
-
var Dialog5 = (_b119 = (_a119 = DialogRaw) == null ? void 0 : _a119.default) != null ? _b119 : DialogRaw;
|
|
6005
|
-
var _a120, _b120;
|
|
6006
|
-
var DialogContent5 = (_b120 = (_a120 = DialogContentRaw) == null ? void 0 : _a120.default) != null ? _b120 : DialogContentRaw;
|
|
6007
|
-
var _a121, _b121;
|
|
6008
|
-
var DialogTitle2 = (_b121 = (_a121 = DialogTitleRaw) == null ? void 0 : _a121.default) != null ? _b121 : DialogTitleRaw;
|
|
6009
6207
|
var _a122, _b122;
|
|
6010
|
-
var
|
|
6208
|
+
var CloseIcon3 = (_b122 = (_a122 = CloseIconRaw) == null ? void 0 : _a122.default) != null ? _b122 : CloseIconRaw;
|
|
6011
6209
|
var _a123, _b123;
|
|
6012
|
-
var
|
|
6210
|
+
var Dialog5 = (_b123 = (_a123 = DialogRaw) == null ? void 0 : _a123.default) != null ? _b123 : DialogRaw;
|
|
6013
6211
|
var _a124, _b124;
|
|
6014
|
-
var
|
|
6212
|
+
var DialogContent5 = (_b124 = (_a124 = DialogContentRaw) == null ? void 0 : _a124.default) != null ? _b124 : DialogContentRaw;
|
|
6213
|
+
var _a125, _b125;
|
|
6214
|
+
var DialogTitle2 = (_b125 = (_a125 = DialogTitleRaw) == null ? void 0 : _a125.default) != null ? _b125 : DialogTitleRaw;
|
|
6215
|
+
var _a126, _b126;
|
|
6216
|
+
var IconButton10 = (_b126 = (_a126 = IconButtonRaw) == null ? void 0 : _a126.default) != null ? _b126 : IconButtonRaw;
|
|
6217
|
+
var _a127, _b127;
|
|
6218
|
+
var Box24 = (_b127 = (_a127 = BoxRaw) == null ? void 0 : _a127.default) != null ? _b127 : BoxRaw;
|
|
6219
|
+
var _a128, _b128;
|
|
6220
|
+
var Typography8 = (_b128 = (_a128 = MuiTypographyRaw) == null ? void 0 : _a128.default) != null ? _b128 : MuiTypographyRaw;
|
|
6015
6221
|
var otpInputBase = {
|
|
6016
6222
|
height: 40,
|
|
6017
6223
|
width: 30,
|
|
@@ -6042,7 +6248,7 @@ var NativeOTPInput = ({ value, onChange, numInputs, hasError }) => {
|
|
|
6042
6248
|
const digits = value.split("");
|
|
6043
6249
|
const handleChange = useCallback(
|
|
6044
6250
|
(index, e) => {
|
|
6045
|
-
var
|
|
6251
|
+
var _a130;
|
|
6046
6252
|
const val = e.target.value;
|
|
6047
6253
|
if (!/^\d*$/.test(val)) return;
|
|
6048
6254
|
const newDigits = [...digits];
|
|
@@ -6051,20 +6257,20 @@ var NativeOTPInput = ({ value, onChange, numInputs, hasError }) => {
|
|
|
6051
6257
|
const newValue = newDigits.join("");
|
|
6052
6258
|
onChange(newValue.slice(0, numInputs));
|
|
6053
6259
|
if (val && index < numInputs - 1) {
|
|
6054
|
-
(
|
|
6260
|
+
(_a130 = inputRefs.current[index + 1]) == null ? void 0 : _a130.focus();
|
|
6055
6261
|
}
|
|
6056
6262
|
},
|
|
6057
6263
|
[digits, numInputs, onChange]
|
|
6058
6264
|
);
|
|
6059
6265
|
const handleKeyDown = useCallback(
|
|
6060
6266
|
(index, e) => {
|
|
6061
|
-
var
|
|
6267
|
+
var _a130, _b130, _c;
|
|
6062
6268
|
if (e.key === "Backspace" && !digits[index] && index > 0) {
|
|
6063
|
-
(
|
|
6269
|
+
(_a130 = inputRefs.current[index - 1]) == null ? void 0 : _a130.focus();
|
|
6064
6270
|
}
|
|
6065
6271
|
if (e.key === "ArrowLeft" && index > 0) {
|
|
6066
6272
|
e.preventDefault();
|
|
6067
|
-
(
|
|
6273
|
+
(_b130 = inputRefs.current[index - 1]) == null ? void 0 : _b130.focus();
|
|
6068
6274
|
}
|
|
6069
6275
|
if (e.key === "ArrowRight" && index < numInputs - 1) {
|
|
6070
6276
|
e.preventDefault();
|
|
@@ -6075,20 +6281,20 @@ var NativeOTPInput = ({ value, onChange, numInputs, hasError }) => {
|
|
|
6075
6281
|
);
|
|
6076
6282
|
const handlePaste = useCallback(
|
|
6077
6283
|
(e) => {
|
|
6078
|
-
var
|
|
6284
|
+
var _a130;
|
|
6079
6285
|
e.preventDefault();
|
|
6080
6286
|
const pasted = e.clipboardData.getData("text").replace(/\D/g, "").slice(0, numInputs);
|
|
6081
6287
|
if (!pasted) return;
|
|
6082
6288
|
onChange(pasted);
|
|
6083
6289
|
const nextIdx = Math.min(pasted.length, numInputs - 1);
|
|
6084
|
-
(
|
|
6290
|
+
(_a130 = inputRefs.current[nextIdx]) == null ? void 0 : _a130.focus();
|
|
6085
6291
|
},
|
|
6086
6292
|
[numInputs, onChange]
|
|
6087
6293
|
);
|
|
6088
6294
|
useEffect(() => {
|
|
6089
6295
|
const timer = setTimeout(() => {
|
|
6090
|
-
var
|
|
6091
|
-
return (
|
|
6296
|
+
var _a130;
|
|
6297
|
+
return (_a130 = inputRefs.current[0]) == null ? void 0 : _a130.focus();
|
|
6092
6298
|
}, 100);
|
|
6093
6299
|
return () => clearTimeout(timer);
|
|
6094
6300
|
}, []);
|
|
@@ -6175,7 +6381,7 @@ var BaseModalOTP = ({
|
|
|
6175
6381
|
},
|
|
6176
6382
|
children: [
|
|
6177
6383
|
/* @__PURE__ */ jsx(DialogTitle2, { sx: { p: 0 }, children: /* @__PURE__ */ jsx(
|
|
6178
|
-
|
|
6384
|
+
IconButton10,
|
|
6179
6385
|
{
|
|
6180
6386
|
onClick: handleClose,
|
|
6181
6387
|
sx: {
|
|
@@ -6187,7 +6393,7 @@ var BaseModalOTP = ({
|
|
|
6187
6393
|
}
|
|
6188
6394
|
) }),
|
|
6189
6395
|
/* @__PURE__ */ jsx(DialogContent5, { sx: { p: 0 }, children: /* @__PURE__ */ jsxs(
|
|
6190
|
-
|
|
6396
|
+
Box24,
|
|
6191
6397
|
{
|
|
6192
6398
|
display: "flex",
|
|
6193
6399
|
flexDirection: "column",
|
|
@@ -6218,7 +6424,7 @@ var BaseModalOTP = ({
|
|
|
6218
6424
|
]
|
|
6219
6425
|
}
|
|
6220
6426
|
),
|
|
6221
|
-
/* @__PURE__ */ jsx(
|
|
6427
|
+
/* @__PURE__ */ jsx(Box24, { width: "100%", display: "flex", justifyContent: "center", children: /* @__PURE__ */ jsxs(
|
|
6222
6428
|
"form",
|
|
6223
6429
|
{
|
|
6224
6430
|
autoComplete: "off",
|
|
@@ -6304,8 +6510,8 @@ var BaseModalOTP = ({
|
|
|
6304
6510
|
}
|
|
6305
6511
|
);
|
|
6306
6512
|
};
|
|
6307
|
-
var
|
|
6308
|
-
var
|
|
6513
|
+
var _a129, _b129;
|
|
6514
|
+
var Box25 = (_b129 = (_a129 = BoxRaw) == null ? void 0 : _a129.default) != null ? _b129 : BoxRaw;
|
|
6309
6515
|
var FORM_TYPE = {
|
|
6310
6516
|
TEXT_FIELD: "text-field",
|
|
6311
6517
|
TEXT_AREA: "text-area",
|
|
@@ -6323,10 +6529,10 @@ var FORM_TYPE = {
|
|
|
6323
6529
|
RADIO: "radio",
|
|
6324
6530
|
CUSTOM: "custom"
|
|
6325
6531
|
};
|
|
6326
|
-
var FormContent = (
|
|
6327
|
-
var
|
|
6328
|
-
var
|
|
6329
|
-
const
|
|
6532
|
+
var FormContent = (_a130) => {
|
|
6533
|
+
var _b130 = _a130, { type } = _b130, restProps = __objRest(_b130, ["type"]);
|
|
6534
|
+
var _b131;
|
|
6535
|
+
const _a131 = restProps, { layout: _layout, labelWidth: _labelWidth, divider: _divider } = _a131, componentProps = __objRest(_a131, ["layout", "labelWidth", "divider"]);
|
|
6330
6536
|
switch (type) {
|
|
6331
6537
|
case FORM_TYPE.TEXT_FIELD:
|
|
6332
6538
|
return /* @__PURE__ */ jsx(BaseTextField, __spreadValues({}, componentProps));
|
|
@@ -6357,7 +6563,7 @@ var FormContent = (_a126) => {
|
|
|
6357
6563
|
case FORM_TYPE.RADIO:
|
|
6358
6564
|
return /* @__PURE__ */ jsx(BaseRadioButton, __spreadValues({}, componentProps));
|
|
6359
6565
|
case FORM_TYPE.CUSTOM:
|
|
6360
|
-
return (
|
|
6566
|
+
return (_b131 = componentProps.component) != null ? _b131 : null;
|
|
6361
6567
|
default:
|
|
6362
6568
|
return null;
|
|
6363
6569
|
}
|
|
@@ -6368,7 +6574,7 @@ var FormField = ({ item, index, control, resolvedLayout, resolvedLabelWidth, res
|
|
|
6368
6574
|
const fieldDivider = item.divider !== void 0 ? item.divider : resolvedDivider;
|
|
6369
6575
|
if (fieldLayout === "horizontal") {
|
|
6370
6576
|
return /* @__PURE__ */ jsxs(
|
|
6371
|
-
|
|
6577
|
+
Box25,
|
|
6372
6578
|
{
|
|
6373
6579
|
sx: __spreadValues({
|
|
6374
6580
|
display: "grid",
|
|
@@ -6379,11 +6585,11 @@ var FormField = ({ item, index, control, resolvedLayout, resolvedLabelWidth, res
|
|
|
6379
6585
|
borderBottom: `1px solid ${DerivedColor.color_border_default}`
|
|
6380
6586
|
}),
|
|
6381
6587
|
children: [
|
|
6382
|
-
/* @__PURE__ */ jsxs(
|
|
6588
|
+
/* @__PURE__ */ jsxs(Box25, { sx: { display: "flex", justifyContent: "space-between", pr: 2 }, children: [
|
|
6383
6589
|
/* @__PURE__ */ jsx(BaseTypography, { variant: "body1_regular.default", children: item.title || item.name }),
|
|
6384
6590
|
/* @__PURE__ */ jsx(BaseTypography, { variant: "body1_regular.default", children: ":" })
|
|
6385
6591
|
] }),
|
|
6386
|
-
/* @__PURE__ */ jsx(
|
|
6592
|
+
/* @__PURE__ */ jsx(Box25, { children: /* @__PURE__ */ jsx(
|
|
6387
6593
|
FormContent,
|
|
6388
6594
|
__spreadProps(__spreadValues({
|
|
6389
6595
|
control
|
|
@@ -6405,27 +6611,27 @@ var FormField = ({ item, index, control, resolvedLayout, resolvedLabelWidth, res
|
|
|
6405
6611
|
);
|
|
6406
6612
|
};
|
|
6407
6613
|
var Form = ({ children, sx = {}, methods, onSubmit }) => {
|
|
6408
|
-
return /* @__PURE__ */ jsx(
|
|
6409
|
-
var
|
|
6614
|
+
return /* @__PURE__ */ jsx(Box25, { component: "form", sx, onSubmit: methods == null ? void 0 : methods.handleSubmit(onSubmit), children: React3.Children.map(children, (child) => {
|
|
6615
|
+
var _a130;
|
|
6410
6616
|
if (!child) return null;
|
|
6411
|
-
return ((
|
|
6617
|
+
return ((_a130 = child.props) == null ? void 0 : _a130.name) ? React3.createElement(child.type, __spreadProps(__spreadValues({}, child.props), {
|
|
6412
6618
|
control: methods == null ? void 0 : methods.control,
|
|
6413
6619
|
key: child.props.name
|
|
6414
6620
|
})) : child;
|
|
6415
6621
|
}) });
|
|
6416
6622
|
};
|
|
6417
6623
|
var SubForm = ({ children, sx = {}, methods }) => {
|
|
6418
|
-
return /* @__PURE__ */ jsx(
|
|
6419
|
-
var
|
|
6624
|
+
return /* @__PURE__ */ jsx(Box25, { sx, children: React3.Children.map(children, (child) => {
|
|
6625
|
+
var _a130;
|
|
6420
6626
|
if (!child) return null;
|
|
6421
|
-
return ((
|
|
6627
|
+
return ((_a130 = child.props) == null ? void 0 : _a130.name) ? React3.createElement(child.type, __spreadProps(__spreadValues({}, child.props), {
|
|
6422
6628
|
control: methods == null ? void 0 : methods.control,
|
|
6423
6629
|
key: child.props.name
|
|
6424
6630
|
})) : child;
|
|
6425
6631
|
}) });
|
|
6426
6632
|
};
|
|
6427
|
-
var FormBuilder = (
|
|
6428
|
-
var
|
|
6633
|
+
var FormBuilder = (_a130) => {
|
|
6634
|
+
var _b130 = _a130, {
|
|
6429
6635
|
sx = {},
|
|
6430
6636
|
fields = [],
|
|
6431
6637
|
methods,
|
|
@@ -6435,7 +6641,7 @@ var FormBuilder = (_a126) => {
|
|
|
6435
6641
|
layout = "vertical",
|
|
6436
6642
|
labelWidth = "30%",
|
|
6437
6643
|
divider = false
|
|
6438
|
-
} =
|
|
6644
|
+
} = _b130, restProps = __objRest(_b130, [
|
|
6439
6645
|
"sx",
|
|
6440
6646
|
"fields",
|
|
6441
6647
|
"methods",
|
|
@@ -6448,7 +6654,7 @@ var FormBuilder = (_a126) => {
|
|
|
6448
6654
|
]);
|
|
6449
6655
|
const resolvedGap = layout === "horizontal" && gap === 16 ? 0 : gap;
|
|
6450
6656
|
const layoutSx = columns > 1 ? { display: "grid", gridTemplateColumns: `repeat(${columns}, 1fr)`, gap: `${resolvedGap}px` } : { display: "flex", flexDirection: "column", gap: `${resolvedGap}px` };
|
|
6451
|
-
return /* @__PURE__ */ jsx(Form, __spreadProps(__spreadValues({ sx, methods, onSubmit }, restProps), { children: /* @__PURE__ */ jsx(
|
|
6657
|
+
return /* @__PURE__ */ jsx(Form, __spreadProps(__spreadValues({ sx, methods, onSubmit }, restProps), { children: /* @__PURE__ */ jsx(Box25, { sx: layoutSx, children: fields.map((item, index) => /* @__PURE__ */ jsx(
|
|
6452
6658
|
FormField,
|
|
6453
6659
|
{
|
|
6454
6660
|
item,
|
|
@@ -6473,7 +6679,7 @@ var SubFormBuilder = ({
|
|
|
6473
6679
|
}) => {
|
|
6474
6680
|
const resolvedGap = layout === "horizontal" && gap === 16 ? 0 : gap;
|
|
6475
6681
|
const layoutSx = columns > 1 ? { display: "grid", gridTemplateColumns: `repeat(${columns}, 1fr)`, gap: `${resolvedGap}px` } : { display: "flex", flexDirection: "column", gap: `${resolvedGap}px` };
|
|
6476
|
-
return /* @__PURE__ */ jsx(SubForm, { sx, methods, children: /* @__PURE__ */ jsx(
|
|
6682
|
+
return /* @__PURE__ */ jsx(SubForm, { sx, methods, children: /* @__PURE__ */ jsx(Box25, { sx: layoutSx, children: fields.map((item, index) => /* @__PURE__ */ jsx(
|
|
6477
6683
|
FormField,
|
|
6478
6684
|
{
|
|
6479
6685
|
item,
|
|
@@ -6486,7 +6692,25 @@ var SubFormBuilder = ({
|
|
|
6486
6692
|
item.name || `subform-item-${index}`
|
|
6487
6693
|
)) }) });
|
|
6488
6694
|
};
|
|
6695
|
+
/*! Bundled license information:
|
|
6696
|
+
|
|
6697
|
+
@hirohe/react-watermark/build/index.esm.js:
|
|
6698
|
+
(*! *****************************************************************************
|
|
6699
|
+
Copyright (c) Microsoft Corporation.
|
|
6700
|
+
|
|
6701
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
6702
|
+
purpose with or without fee is hereby granted.
|
|
6703
|
+
|
|
6704
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
6705
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
6706
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
6707
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
6708
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
6709
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
6710
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
6711
|
+
***************************************************************************** *)
|
|
6712
|
+
*/
|
|
6489
6713
|
|
|
6490
|
-
export { BaseAlert, BaseButton, BaseCard, BaseCheckbox, BaseChip, BaseDatatable, BaseDatePicker, BaseDropdown, BaseDropzone, BaseModalAlert, BaseModalAlertDialog, BaseModalAlertProvider, BaseModalLoading, BaseModalLoadingDialog, BaseModalLoadingProvider, BaseModalOTP, BaseModalPopup, BaseModalStepper, BaseRadioButton, BaseSkeleton, BaseSnackbar, BaseStepper, BaseSwitch, BaseTextArea, BaseTextField, BaseTypography, CapsLockOn, DatatablePagination, DownloadIconLarge, FORM_TYPE, FormBuilder, IconBiometricScan, IconDocumentAdd, IconEdit, IconFile, IconGradingRounded, IconListDocument, IconMoney, IconProgress, IconReset, IconSave, IconSaveOutlined, IconSendWhite, IconSendWhiteFull, IconUpload, IconUserScan, IconVerification, MoneyIcon, Radius, radius_default as RadiusToken, ServerSidePaginationActions, Shadow, shadow_default as ShadowToken, SubFormBuilder, TextFieldUpload, UsersIcon, VariantStyles };
|
|
6714
|
+
export { BaseAlert, BaseButton, BaseCard, BaseCheckbox, BaseChip, BaseDatatable, BaseDatePicker, BaseDropdown, BaseDropzone, BaseModalAlert, BaseModalAlertDialog, BaseModalAlertProvider, BaseModalLoading, BaseModalLoadingDialog, BaseModalLoadingProvider, BaseModalOTP, BaseModalPopup, BaseModalStepper, BaseRadioButton, BaseSkeleton, BaseSnackbar, BaseStepper, BaseSwitch, BaseTextArea, BaseTextField, BaseTypography, CapsLockOn, DatatablePagination, DownloadIconLarge, FORM_TYPE, FormBuilder, IconBiometricScan, IconDocumentAdd, IconEdit, IconFile, IconGradingRounded, IconListDocument, IconMoney, IconProgress, IconReset, IconSave, IconSaveOutlined, IconSendWhite, IconSendWhiteFull, IconUpload, IconUserScan, IconVerification, MoneyIcon, NumberedPagination, Radius, radius_default as RadiusToken, ServerSidePaginationActions, Shadow, shadow_default as ShadowToken, SubFormBuilder, TextFieldUpload, UsersIcon, VariantStyles };
|
|
6491
6715
|
//# sourceMappingURL=index.mjs.map
|
|
6492
6716
|
//# sourceMappingURL=index.mjs.map
|