sag_components 2.0.0-beta197 → 2.0.0-beta199
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.esm.js +180 -197
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +180 -197
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -10579,23 +10579,24 @@ const QuarterPopupPicker = ({
|
|
|
10579
10579
|
};
|
|
10580
10580
|
|
|
10581
10581
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
10582
|
-
const QuarterPicker =
|
|
10583
|
-
|
|
10584
|
-
|
|
10585
|
-
|
|
10586
|
-
|
|
10587
|
-
|
|
10588
|
-
|
|
10589
|
-
|
|
10590
|
-
|
|
10591
|
-
|
|
10592
|
-
|
|
10593
|
-
|
|
10594
|
-
|
|
10595
|
-
|
|
10596
|
-
|
|
10597
|
-
|
|
10598
|
-
|
|
10582
|
+
const QuarterPicker = _ref => {
|
|
10583
|
+
let {
|
|
10584
|
+
availableQuarters,
|
|
10585
|
+
// ["Q1-2024"]
|
|
10586
|
+
label,
|
|
10587
|
+
onChange,
|
|
10588
|
+
borderRadius,
|
|
10589
|
+
required,
|
|
10590
|
+
width,
|
|
10591
|
+
height,
|
|
10592
|
+
placeholder,
|
|
10593
|
+
disabled,
|
|
10594
|
+
borderColor,
|
|
10595
|
+
borderColorFocus,
|
|
10596
|
+
textColor,
|
|
10597
|
+
selectedValue,
|
|
10598
|
+
startYear
|
|
10599
|
+
} = _ref;
|
|
10599
10600
|
const [isFocused, setIsFocused] = useState(false);
|
|
10600
10601
|
const [isOpen, setIsOpen] = useState(false);
|
|
10601
10602
|
const [value, setValue] = useState('');
|
|
@@ -11037,22 +11038,23 @@ const MonthPopupPicker = ({
|
|
|
11037
11038
|
};
|
|
11038
11039
|
|
|
11039
11040
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
11040
|
-
const MonthPicker =
|
|
11041
|
-
|
|
11042
|
-
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
|
|
11047
|
-
|
|
11048
|
-
|
|
11049
|
-
|
|
11050
|
-
|
|
11051
|
-
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
|
|
11041
|
+
const MonthPicker = _ref => {
|
|
11042
|
+
let {
|
|
11043
|
+
availableMonths,
|
|
11044
|
+
label,
|
|
11045
|
+
onChange,
|
|
11046
|
+
borderRadius,
|
|
11047
|
+
required,
|
|
11048
|
+
width,
|
|
11049
|
+
height,
|
|
11050
|
+
placeholder,
|
|
11051
|
+
disabled,
|
|
11052
|
+
borderColor,
|
|
11053
|
+
borderColorFocus,
|
|
11054
|
+
textColor,
|
|
11055
|
+
selectedValue,
|
|
11056
|
+
startYear
|
|
11057
|
+
} = _ref;
|
|
11056
11058
|
const [isFocused, setIsFocused] = useState(false);
|
|
11057
11059
|
const [isOpen, setIsOpen] = useState(false);
|
|
11058
11060
|
const [value, setValue] = useState('');
|
|
@@ -24163,21 +24165,22 @@ const DeleteIcon = styled.div`
|
|
|
24163
24165
|
position: absolute;
|
|
24164
24166
|
`;
|
|
24165
24167
|
|
|
24166
|
-
const QuickFilterDropdownSingle =
|
|
24167
|
-
|
|
24168
|
-
|
|
24169
|
-
|
|
24170
|
-
|
|
24171
|
-
|
|
24172
|
-
|
|
24173
|
-
|
|
24174
|
-
|
|
24175
|
-
|
|
24176
|
-
|
|
24177
|
-
|
|
24178
|
-
|
|
24179
|
-
|
|
24180
|
-
|
|
24168
|
+
const QuickFilterDropdownSingle = _ref => {
|
|
24169
|
+
let {
|
|
24170
|
+
label,
|
|
24171
|
+
hoverColor,
|
|
24172
|
+
options,
|
|
24173
|
+
selectedValue,
|
|
24174
|
+
placeHolder,
|
|
24175
|
+
onChange,
|
|
24176
|
+
disabled,
|
|
24177
|
+
width,
|
|
24178
|
+
error,
|
|
24179
|
+
errorMessage,
|
|
24180
|
+
xIconShow,
|
|
24181
|
+
labelColor,
|
|
24182
|
+
showLabelOnTop
|
|
24183
|
+
} = _ref;
|
|
24181
24184
|
const [isFocused, setIsFocused] = useState(false);
|
|
24182
24185
|
const [showOptions, setShowOptions] = useState(false);
|
|
24183
24186
|
const [inputValue, setInputValue] = useState("");
|
|
@@ -24574,23 +24577,24 @@ const IconContainer$2 = styled.div`
|
|
|
24574
24577
|
cursor: pointer;
|
|
24575
24578
|
`;
|
|
24576
24579
|
|
|
24577
|
-
const QuickFilterDropdownMultiSelection =
|
|
24578
|
-
|
|
24579
|
-
|
|
24580
|
-
|
|
24581
|
-
|
|
24582
|
-
|
|
24583
|
-
|
|
24584
|
-
|
|
24585
|
-
|
|
24586
|
-
|
|
24587
|
-
|
|
24588
|
-
|
|
24589
|
-
|
|
24590
|
-
|
|
24591
|
-
|
|
24592
|
-
|
|
24593
|
-
|
|
24580
|
+
const QuickFilterDropdownMultiSelection = _ref => {
|
|
24581
|
+
let {
|
|
24582
|
+
label,
|
|
24583
|
+
labelEmptyValue,
|
|
24584
|
+
options,
|
|
24585
|
+
selectedValue,
|
|
24586
|
+
placeHolder,
|
|
24587
|
+
onChange,
|
|
24588
|
+
required,
|
|
24589
|
+
disabled,
|
|
24590
|
+
width,
|
|
24591
|
+
error,
|
|
24592
|
+
errorMessage,
|
|
24593
|
+
labelColor,
|
|
24594
|
+
xIconShow,
|
|
24595
|
+
checkBoxColor,
|
|
24596
|
+
showLabelOnTop
|
|
24597
|
+
} = _ref;
|
|
24594
24598
|
const [isFocused, setIsFocused] = useState(false);
|
|
24595
24599
|
const [showOptions, setShowOptions] = useState(false);
|
|
24596
24600
|
const [inputValue, setInputValue] = useState('');
|
|
@@ -39944,37 +39948,6 @@ Dropdown.propTypes = {
|
|
|
39944
39948
|
|
|
39945
39949
|
// combinedShimmerHooks.js - Chrome shimmer effect integrated with your hooks
|
|
39946
39950
|
|
|
39947
|
-
// Hook that specifically watches for indexToShimmer changes (like your original)
|
|
39948
|
-
const useShimmerChromeEffect = (text, currentRowIndex, indexToShimmer) => {
|
|
39949
|
-
// Handle null/undefined text safely
|
|
39950
|
-
const safeText = text !== null && text !== undefined ? text.toString() : '';
|
|
39951
|
-
const [isShimmering, setIsShimmering] = useState(false);
|
|
39952
|
-
const [lastShimmerIndex, setLastShimmerIndex] = useState(null);
|
|
39953
|
-
|
|
39954
|
-
// Check if this row should animate
|
|
39955
|
-
const shouldAnimate = currentRowIndex === indexToShimmer;
|
|
39956
|
-
|
|
39957
|
-
// Reset animation when indexToShimmer changes and this row is targeted
|
|
39958
|
-
useEffect(() => {
|
|
39959
|
-
if (shouldAnimate && indexToShimmer !== lastShimmerIndex) {
|
|
39960
|
-
setIsShimmering(true);
|
|
39961
|
-
setLastShimmerIndex(indexToShimmer);
|
|
39962
|
-
|
|
39963
|
-
// Stop shimmering after 5 seconds
|
|
39964
|
-
const timeout = setTimeout(() => {
|
|
39965
|
-
setIsShimmering(false);
|
|
39966
|
-
}, 5000);
|
|
39967
|
-
return () => clearTimeout(timeout);
|
|
39968
|
-
} else if (!shouldAnimate) {
|
|
39969
|
-
setIsShimmering(false);
|
|
39970
|
-
}
|
|
39971
|
-
}, [indexToShimmer, shouldAnimate, lastShimmerIndex]);
|
|
39972
|
-
return {
|
|
39973
|
-
text: safeText,
|
|
39974
|
-
isShimmering: shouldAnimate && isShimmering
|
|
39975
|
-
};
|
|
39976
|
-
};
|
|
39977
|
-
|
|
39978
39951
|
// Chrome Shimmer Component
|
|
39979
39952
|
const ChromeShimmerText = ({
|
|
39980
39953
|
text,
|
|
@@ -40070,11 +40043,17 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40070
40043
|
expandedContent = {},
|
|
40071
40044
|
onExpandRow = () => {},
|
|
40072
40045
|
expandedBackgroundColor = "#E6F0F0",
|
|
40073
|
-
// New prop with default
|
|
40074
40046
|
onDropdownSelected = () => {},
|
|
40075
40047
|
onCheckboxClick = () => {},
|
|
40076
40048
|
onHeaderCheckboxClick = () => {}
|
|
40077
40049
|
}, ref) => {
|
|
40050
|
+
// MOVE ALL VALIDATION TO THE VERY TOP BEFORE ANY HOOKS
|
|
40051
|
+
if (!Array.isArray(data) || !Array.isArray(columns)) {
|
|
40052
|
+
console.warn("TableBody: Invalid data or columns prop");
|
|
40053
|
+
return null;
|
|
40054
|
+
}
|
|
40055
|
+
|
|
40056
|
+
// NOW ALL THE HOOKS CAN BE CALLED SAFELY
|
|
40078
40057
|
const [hoveredRowIndex, setHoveredRowIndex] = useState(null);
|
|
40079
40058
|
const [focusedRowIndex, setFocusedRowIndex] = useState(null);
|
|
40080
40059
|
const [isCommentModalOpen, setIsCommentModalOpen] = useState(false);
|
|
@@ -40087,11 +40066,24 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40087
40066
|
const [hasUserInteracted, setHasUserInteracted] = useState(false);
|
|
40088
40067
|
const [hasInitialValue, setHasInitialValue] = useState(false);
|
|
40089
40068
|
|
|
40090
|
-
//
|
|
40091
|
-
|
|
40092
|
-
|
|
40093
|
-
|
|
40094
|
-
|
|
40069
|
+
// Shimmer state - manage shimmer effect at the top level
|
|
40070
|
+
const [shimmerRowIndex, setShimmerRowIndex] = useState(-1);
|
|
40071
|
+
const [shimmerStartTime, setShimmerStartTime] = useState(null);
|
|
40072
|
+
|
|
40073
|
+
// Handle shimmer effect changes
|
|
40074
|
+
useEffect(() => {
|
|
40075
|
+
if (indexToShimmer >= 0 && indexToShimmer !== shimmerRowIndex) {
|
|
40076
|
+
setShimmerRowIndex(indexToShimmer);
|
|
40077
|
+
setShimmerStartTime(Date.now());
|
|
40078
|
+
|
|
40079
|
+
// Auto-stop shimmer after 5 seconds
|
|
40080
|
+
const timeout = setTimeout(() => {
|
|
40081
|
+
setShimmerRowIndex(-1);
|
|
40082
|
+
setShimmerStartTime(null);
|
|
40083
|
+
}, 5000);
|
|
40084
|
+
return () => clearTimeout(timeout);
|
|
40085
|
+
}
|
|
40086
|
+
}, [indexToShimmer, shimmerRowIndex]);
|
|
40095
40087
|
|
|
40096
40088
|
// Expose methods to parent component via ref
|
|
40097
40089
|
useImperativeHandle(ref, () => ({
|
|
@@ -40665,7 +40657,7 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40665
40657
|
};
|
|
40666
40658
|
}, []);
|
|
40667
40659
|
|
|
40668
|
-
//
|
|
40660
|
+
// HANDLE SPECIAL CASE: EMPTY DATA AFTER ALL HOOKS
|
|
40669
40661
|
if (data.length === 0) {
|
|
40670
40662
|
return /*#__PURE__*/React$1.createElement(StyledTableBody, {
|
|
40671
40663
|
ref: ref
|
|
@@ -40717,7 +40709,7 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40717
40709
|
key: `invalid-${columnIndex}`
|
|
40718
40710
|
}, "Invalid Column");
|
|
40719
40711
|
}
|
|
40720
|
-
let value, formattedValue
|
|
40712
|
+
let value, formattedValue;
|
|
40721
40713
|
try {
|
|
40722
40714
|
value = row[column.key];
|
|
40723
40715
|
formattedValue = formatValue(value, column, row, rowIndex) || "";
|
|
@@ -40726,23 +40718,11 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40726
40718
|
formattedValue = "";
|
|
40727
40719
|
}
|
|
40728
40720
|
|
|
40729
|
-
//
|
|
40730
|
-
shimmerText = formattedValue;
|
|
40731
|
-
isShimmering = false;
|
|
40732
|
-
|
|
40733
|
-
// Only use shimmer hook for text-based fields
|
|
40721
|
+
// Check if this is a text-based field for shimmer rendering
|
|
40734
40722
|
const isTextBasedField = column.fieldType?.toLowerCase() === "text" || column.fieldType?.toLowerCase() === "currency" || column.fieldType?.toLowerCase() === "number" || column.fieldType?.toLowerCase() === "percentage" || column.fieldType?.toLowerCase() === "date" || !column.fieldType;
|
|
40735
|
-
|
|
40736
|
-
|
|
40737
|
-
|
|
40738
|
-
if (shimmerResult && typeof shimmerResult === 'object') {
|
|
40739
|
-
shimmerText = shimmerResult.text || formattedValue;
|
|
40740
|
-
isShimmering = Boolean(shimmerResult.isShimmering);
|
|
40741
|
-
}
|
|
40742
|
-
} catch (e) {
|
|
40743
|
-
console.warn("Error with shimmer effect:", e);
|
|
40744
|
-
}
|
|
40745
|
-
}
|
|
40723
|
+
|
|
40724
|
+
// Determine if shimmer should be applied
|
|
40725
|
+
const shouldShimmer = isTextBasedField && rowIndex === shimmerRowIndex && shimmerStartTime !== null;
|
|
40746
40726
|
return /*#__PURE__*/React$1.createElement(TableCell, {
|
|
40747
40727
|
key: `${column.key}-${rowIndex}`,
|
|
40748
40728
|
ref: el => {
|
|
@@ -40773,10 +40753,10 @@ const TableBody = /*#__PURE__*/forwardRef(({
|
|
|
40773
40753
|
$color: column.color,
|
|
40774
40754
|
$minWidth: column.minWidth,
|
|
40775
40755
|
$maxWidth: column.maxWidth
|
|
40776
|
-
}, isTextBasedField ? typeof ChromeShimmerText === 'function' ? /*#__PURE__*/React$1.createElement(ChromeShimmerText, {
|
|
40777
|
-
text: String(
|
|
40778
|
-
isShimmering:
|
|
40779
|
-
}) : String(
|
|
40756
|
+
}, isTextBasedField && shouldShimmer ? typeof ChromeShimmerText === 'function' ? /*#__PURE__*/React$1.createElement(ChromeShimmerText, {
|
|
40757
|
+
text: String(formattedValue || ""),
|
|
40758
|
+
isShimmering: true
|
|
40759
|
+
}) : String(formattedValue || "") : formattedValue || "");
|
|
40780
40760
|
})), expandable && expandedRows[rowIndex] && /*#__PURE__*/React$1.createElement(ExpandedRow, {
|
|
40781
40761
|
$expandedBackgroundColor: expandedBackgroundColor
|
|
40782
40762
|
}, /*#__PURE__*/React$1.createElement(TableCell, {
|
|
@@ -44058,79 +44038,82 @@ const NoSearchUpcIcon = ({
|
|
|
44058
44038
|
transform: "translate(73.75 80.8828)"
|
|
44059
44039
|
}))));
|
|
44060
44040
|
|
|
44061
|
-
const NothingToTrackIcon =
|
|
44062
|
-
|
|
44063
|
-
|
|
44064
|
-
|
|
44065
|
-
|
|
44066
|
-
|
|
44067
|
-
|
|
44068
|
-
|
|
44069
|
-
|
|
44070
|
-
|
|
44071
|
-
|
|
44072
|
-
|
|
44073
|
-
|
|
44074
|
-
|
|
44075
|
-
|
|
44076
|
-
|
|
44077
|
-
|
|
44078
|
-
|
|
44079
|
-
|
|
44080
|
-
|
|
44081
|
-
|
|
44082
|
-
|
|
44083
|
-
|
|
44084
|
-
|
|
44085
|
-
|
|
44086
|
-
|
|
44087
|
-
|
|
44088
|
-
|
|
44089
|
-
|
|
44090
|
-
|
|
44091
|
-
|
|
44092
|
-
|
|
44093
|
-
|
|
44094
|
-
|
|
44095
|
-
|
|
44096
|
-
|
|
44097
|
-
|
|
44098
|
-
|
|
44099
|
-
|
|
44100
|
-
|
|
44101
|
-
|
|
44102
|
-
|
|
44103
|
-
|
|
44104
|
-
|
|
44105
|
-
|
|
44106
|
-
|
|
44107
|
-
|
|
44108
|
-
|
|
44109
|
-
|
|
44110
|
-
|
|
44111
|
-
|
|
44112
|
-
|
|
44113
|
-
|
|
44114
|
-
|
|
44115
|
-
|
|
44116
|
-
|
|
44117
|
-
|
|
44118
|
-
|
|
44119
|
-
|
|
44120
|
-
|
|
44121
|
-
|
|
44122
|
-
|
|
44123
|
-
|
|
44124
|
-
|
|
44125
|
-
|
|
44126
|
-
|
|
44127
|
-
|
|
44128
|
-
|
|
44129
|
-
|
|
44130
|
-
|
|
44131
|
-
|
|
44132
|
-
|
|
44133
|
-
|
|
44041
|
+
const NothingToTrackIcon = _ref => {
|
|
44042
|
+
let {
|
|
44043
|
+
width = "251",
|
|
44044
|
+
height = "250"
|
|
44045
|
+
} = _ref;
|
|
44046
|
+
return /*#__PURE__*/React$1.createElement("svg", {
|
|
44047
|
+
width: width,
|
|
44048
|
+
height: height,
|
|
44049
|
+
viewBox: "0 0 250 251",
|
|
44050
|
+
fill: "none",
|
|
44051
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
44052
|
+
}, /*#__PURE__*/React$1.createElement("rect", {
|
|
44053
|
+
x: "0.5",
|
|
44054
|
+
width: "250",
|
|
44055
|
+
height: "250",
|
|
44056
|
+
rx: "125",
|
|
44057
|
+
fill: "#F3F7F7"
|
|
44058
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44059
|
+
d: "M119.792 200.515C121.831 201.751 124.145 202.402 126.5 202.402C128.855 202.402 131.169 201.751 133.208 200.515L180.167 172.349C182.204 171.114 183.897 169.338 185.074 167.2C186.252 165.062 186.873 162.636 186.875 160.167V103.833C186.873 101.364 186.252 98.9379 185.074 96.7997C183.897 94.6616 182.204 92.886 180.167 91.6511L133.208 63.4845C131.169 62.2484 128.855 61.5977 126.5 61.5977C124.145 61.5977 121.831 62.2484 119.792 63.4845L72.8333 91.6511C70.7958 92.886 69.1034 94.6616 67.9259 96.7997C66.7485 98.9379 66.1274 101.364 66.125 103.833V160.167C66.1274 162.636 66.7485 165.062 67.9259 167.2C69.1034 169.338 70.7958 171.114 72.8333 172.349L119.792 200.515Z",
|
|
44060
|
+
stroke: "#519595",
|
|
44061
|
+
"stroke-width": "6",
|
|
44062
|
+
"stroke-linecap": "round",
|
|
44063
|
+
"stroke-linejoin": "round"
|
|
44064
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44065
|
+
d: "M126.5 202.417V132",
|
|
44066
|
+
stroke: "#519595",
|
|
44067
|
+
"stroke-width": "6",
|
|
44068
|
+
"stroke-linecap": "round",
|
|
44069
|
+
"stroke-linejoin": "round"
|
|
44070
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44071
|
+
d: "M68.0703 96.792L126.5 132L184.929 96.792",
|
|
44072
|
+
stroke: "#519595",
|
|
44073
|
+
"stroke-width": "6",
|
|
44074
|
+
"stroke-linecap": "round",
|
|
44075
|
+
"stroke-linejoin": "round"
|
|
44076
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44077
|
+
d: "M96.3125 77.5684L156.688 113.833",
|
|
44078
|
+
stroke: "#519595",
|
|
44079
|
+
"stroke-width": "6",
|
|
44080
|
+
"stroke-linecap": "round",
|
|
44081
|
+
"stroke-linejoin": "round"
|
|
44082
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44083
|
+
d: "M201.551 142.578V142.545C201.55 142.551 201.548 142.556 201.547 142.561C201.545 142.556 201.543 142.551 201.542 142.545V142.578C201.125 144.131 200.158 145.242 198.644 145.909C200.158 146.577 201.125 147.688 201.542 149.241V149.274C201.544 149.268 201.546 149.263 201.547 149.257C201.549 149.263 201.55 149.268 201.551 149.274V149.241C201.969 147.688 202.936 146.577 204.45 145.909C202.936 145.242 201.969 144.131 201.551 142.578ZM32.9078 61.6887V61.656C32.906 61.6615 32.9043 61.6669 32.9034 61.6724C32.9016 61.6669 32.8998 61.6615 32.8989 61.656V61.6887C32.481 63.2419 31.5147 64.3525 30 65.0204C31.5147 65.6884 32.481 66.799 32.8989 68.3521V68.3848C32.9007 68.3794 32.9025 68.3739 32.9034 68.3685C32.9052 68.3739 32.9069 68.3794 32.9078 68.3848V68.3521C33.3258 66.799 34.2921 65.6884 35.8068 65.0204C34.2921 64.3525 33.3258 63.2419 32.9078 61.6887ZM218.101 173.351V173.318C218.099 173.323 218.098 173.329 218.097 173.334C218.095 173.329 218.093 173.323 218.092 173.318V173.351C217.674 174.904 216.708 176.014 215.193 176.682C216.708 177.35 217.674 178.461 218.092 180.014V180.047C218.094 180.041 218.096 180.036 218.097 180.03C218.098 180.036 218.1 180.041 218.101 180.047V180.014C218.519 178.461 219.485 177.35 221 176.682C219.485 176.014 218.519 174.904 218.101 173.351ZM182.681 176.603V176.537C182.679 176.549 182.675 176.559 182.672 176.571C182.67 176.559 182.666 176.549 182.663 176.537V176.603C181.828 179.709 179.895 181.931 176.866 183.267C179.895 184.603 181.827 186.825 182.663 189.93V189.996C182.666 189.985 182.67 189.975 182.672 189.963C182.675 189.975 182.679 189.985 182.681 189.996V189.93C183.517 186.825 185.45 184.603 188.479 183.267C185.45 181.931 183.518 179.709 182.681 176.603ZM53.3947 102.023V101.957C53.3921 101.969 53.3885 101.979 53.3859 101.991C53.3832 101.979 53.3797 101.969 53.377 101.957V102.023C52.5411 105.129 50.6085 107.351 47.5791 108.687C50.6085 110.023 52.5402 112.245 53.377 115.35V115.416C53.3797 115.405 53.3832 115.395 53.3859 115.383C53.3885 115.395 53.3921 115.405 53.3947 115.416V115.35C54.2306 112.245 56.1632 110.023 59.1926 108.687C56.1632 107.351 54.2315 105.129 53.3947 102.023ZM101.463 40.9091V40.8428C101.461 40.8546 101.457 40.8646 101.455 40.8764C101.452 40.8646 101.448 40.8546 101.446 40.8428V40.9091C100.61 44.0145 98.6771 46.2365 95.6478 47.5725C98.6771 48.9084 100.609 51.1304 101.446 54.2358V54.3022C101.448 54.2904 101.452 54.2804 101.455 54.2685C101.457 54.2804 101.461 54.2904 101.463 54.3022V54.2358C102.299 51.1304 104.232 48.9084 107.261 47.5725C104.232 46.2365 102.3 44.0145 101.463 40.9091Z",
|
|
44084
|
+
fill: "#F2BB91"
|
|
44085
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44086
|
+
d: "M47.7905 141.951C47.9948 141.763 48.3225 141.763 48.5269 141.951C48.7375 142.145 48.7375 142.466 48.5269 142.66L40.2554 150.287C40.0511 150.476 39.7234 150.476 39.519 150.287C39.3085 150.093 39.3085 149.772 39.519 149.578L47.7905 141.951ZM45.5845 147.544C46.2935 146.89 47.4389 146.89 48.1479 147.544C48.8634 148.204 48.8633 149.278 48.1479 149.938C47.4389 150.591 46.2935 150.591 45.5845 149.938C44.8693 149.278 44.8692 148.204 45.5845 147.544ZM47.4126 148.253C47.1122 147.976 46.6202 147.976 46.3198 148.253C46.0262 148.524 46.026 148.959 46.3198 149.229C46.6202 149.507 47.1122 149.506 47.4126 149.229C47.7065 148.959 47.7064 148.524 47.4126 148.253ZM39.8979 142.301C40.607 141.647 41.7524 141.647 42.4614 142.301C43.1766 142.96 43.1767 144.035 42.4614 144.694C41.7524 145.348 40.607 145.348 39.8979 144.694C39.1826 144.035 39.1827 142.96 39.8979 142.301ZM41.7261 143.009C41.4257 142.732 40.9337 142.732 40.6333 143.009C40.3394 143.28 40.3397 143.714 40.6333 143.985C40.9337 144.262 41.4257 144.262 41.7261 143.985C42.0197 143.714 42.0199 143.28 41.7261 143.009Z",
|
|
44087
|
+
fill: "#9BC2C3",
|
|
44088
|
+
stroke: "#9BC2C3",
|
|
44089
|
+
"stroke-width": "0.276243"
|
|
44090
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44091
|
+
d: "M136.451 193.856C136.655 193.668 136.983 193.668 137.187 193.856C137.398 194.051 137.398 194.371 137.187 194.565L128.916 202.192C128.711 202.381 128.384 202.381 128.179 202.192C127.969 201.998 127.969 201.678 128.179 201.483L136.451 193.856ZM134.245 199.449C134.954 198.795 136.099 198.795 136.808 199.449C137.524 200.109 137.523 201.183 136.808 201.843C136.099 202.497 134.954 202.497 134.245 201.843C133.53 201.183 133.529 200.109 134.245 199.449ZM136.073 200.158C135.772 199.881 135.28 199.881 134.98 200.158C134.686 200.429 134.686 200.864 134.98 201.135C135.28 201.412 135.772 201.412 136.073 201.135C136.367 200.864 136.367 200.429 136.073 200.158ZM128.558 194.206C129.267 193.552 130.413 193.552 131.122 194.206C131.837 194.866 131.837 195.94 131.122 196.6C130.413 197.253 129.267 197.253 128.558 196.6C127.843 195.94 127.843 194.866 128.558 194.206ZM130.386 194.914C130.086 194.637 129.594 194.637 129.293 194.914C129 195.185 129 195.62 129.293 195.891C129.594 196.168 130.086 196.168 130.386 195.891C130.68 195.62 130.68 195.185 130.386 194.914Z",
|
|
44092
|
+
fill: "#9BC2C3",
|
|
44093
|
+
stroke: "#9BC2C3",
|
|
44094
|
+
"stroke-width": "0.276243"
|
|
44095
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44096
|
+
d: "M147.664 33.4932C147.835 33.3178 148.114 33.3178 148.286 33.4932C148.455 33.6668 148.455 33.9474 148.286 34.1211L141.887 40.6758C141.716 40.8509 141.437 40.851 141.266 40.6758C141.097 40.5021 141.097 40.2215 141.266 40.0479L147.664 33.4932ZM145.958 38.2998C146.519 37.7245 147.431 37.7244 147.993 38.2998C148.553 38.8734 148.553 39.8024 147.993 40.376C147.431 40.9512 146.519 40.9511 145.958 40.376C145.398 39.8024 145.398 38.8734 145.958 38.2998ZM147.371 38.9277C147.152 38.7033 146.798 38.7033 146.579 38.9277C146.358 39.154 146.358 39.5219 146.579 39.748C146.798 39.9725 147.152 39.9724 147.371 39.748C147.592 39.5218 147.591 39.154 147.371 38.9277ZM141.559 33.7939C142.121 33.2185 143.033 33.2185 143.594 33.7939C144.154 34.3675 144.154 35.2956 143.594 35.8691C143.033 36.4446 142.121 36.4445 141.559 35.8691C140.999 35.2955 140.999 34.3676 141.559 33.7939ZM142.972 34.4209C142.753 34.1966 142.399 34.1965 142.18 34.4209C141.959 34.6472 141.959 35.0159 142.18 35.2422C142.399 35.4665 142.753 35.4664 142.972 35.2422C143.193 35.0159 143.193 34.6472 142.972 34.4209Z",
|
|
44097
|
+
fill: "#9BC2C3",
|
|
44098
|
+
stroke: "#9BC2C3",
|
|
44099
|
+
"stroke-width": "0.276243"
|
|
44100
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44101
|
+
d: "M83.7796 190.438V190.474C84.2838 192.128 85.4477 193.311 87.2731 194.023C85.4477 194.735 84.2832 195.918 83.7796 197.572V197.608C83.778 197.601 83.7758 197.596 83.7742 197.59C83.7726 197.596 83.7705 197.601 83.7689 197.608V197.572C83.2647 195.918 82.1007 194.735 80.2754 194.023C82.1007 193.311 83.2652 192.128 83.7689 190.474V190.438C83.7705 190.445 83.7726 190.45 83.7742 190.456C83.7758 190.45 83.778 190.445 83.7796 190.438Z",
|
|
44102
|
+
fill: "#F2BB91"
|
|
44103
|
+
}), /*#__PURE__*/React$1.createElement("path", {
|
|
44104
|
+
d: "M190.895 153.01C201.752 153.01 210.673 162.263 210.673 173.829C210.673 185.395 201.752 194.647 190.895 194.647C180.039 194.647 171.117 185.395 171.117 173.829C171.117 162.263 180.038 153.01 190.895 153.01Z",
|
|
44105
|
+
fill: "#B4D1D2",
|
|
44106
|
+
stroke: "#519595",
|
|
44107
|
+
"stroke-width": "3"
|
|
44108
|
+
}), /*#__PURE__*/React$1.createElement("line", {
|
|
44109
|
+
x1: "180.763",
|
|
44110
|
+
y1: "174.886",
|
|
44111
|
+
x2: "202.041",
|
|
44112
|
+
y2: "174.886",
|
|
44113
|
+
stroke: "#519595",
|
|
44114
|
+
"stroke-width": "3"
|
|
44115
|
+
}));
|
|
44116
|
+
};
|
|
44134
44117
|
|
|
44135
44118
|
// Table.jsx
|
|
44136
44119
|
const Table = props => {
|