sccoreui 6.4.2 → 6.4.3
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/App.js +2 -0
- package/dist/components/ag-grid/helper.js +6 -16
- package/dist/components/ag-grid/parent-for-grid.js +3 -6
- package/dist/components/list-box-dropdown/virtualization-component.js +3 -5
- package/dist/directives/svg-icons.js +31 -0
- package/dist/types/components/ag-grid/helper.d.ts +1 -1
- package/package.json +2 -2
package/dist/App.js
CHANGED
|
@@ -2,8 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
4
|
require("./App.scss");
|
|
5
|
+
// import FroalaTextEditor from "./components/froala-editor/FroalaEditor";
|
|
5
6
|
// import Home from "./pages/home";
|
|
6
7
|
const App = () => {
|
|
8
|
+
// const [selectedCountries, setSelectedCountries] = useState(null);
|
|
7
9
|
return (0, jsx_runtime_1.jsx)("div", { className: "m-6" });
|
|
8
10
|
};
|
|
9
11
|
exports.default = App;
|
|
@@ -62,7 +62,7 @@ const sortColumns = (columns) => {
|
|
|
62
62
|
};
|
|
63
63
|
exports.sortColumns = sortColumns;
|
|
64
64
|
// Give checkbox checked status
|
|
65
|
-
const getCheckedStatus = (row, featureDetails, GRID_CHECKBOX_STATUS) => {
|
|
65
|
+
const getCheckedStatus = (row, featureDetails, GRID_CHECKBOX_STATUS, setFeatureDetails) => {
|
|
66
66
|
const { allBoxChecked, excludedRecords, includedRecords, headerCheckBoxStatus, } = featureDetails.checkBoxSelection;
|
|
67
67
|
if (allBoxChecked) {
|
|
68
68
|
return !excludedRecords.includes(row);
|
|
@@ -71,19 +71,12 @@ const getCheckedStatus = (row, featureDetails, GRID_CHECKBOX_STATUS) => {
|
|
|
71
71
|
if (headerCheckBoxStatus === GRID_CHECKBOX_STATUS.NEUTRAL &&
|
|
72
72
|
(row === null || row === void 0 ? void 0 : row.isSelected)) {
|
|
73
73
|
if (!includedRecords.includes(row)) {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
// ...prev,
|
|
77
|
-
// checkBoxSelection: {
|
|
78
|
-
// ...prev.checkBoxSelection,
|
|
79
|
-
// includedRecords: [...includedRecords],
|
|
80
|
-
// },
|
|
81
|
-
// }));
|
|
82
|
-
return !(excludedRecords === null || excludedRecords === void 0 ? void 0 : excludedRecords.includes(row));
|
|
74
|
+
includedRecords.push(row);
|
|
75
|
+
setFeatureDetails((prev) => (Object.assign(Object.assign({}, prev), { checkBoxSelection: Object.assign(Object.assign({}, prev.checkBoxSelection), { includedRecords: [...includedRecords] }) })));
|
|
83
76
|
}
|
|
84
77
|
return true;
|
|
85
78
|
}
|
|
86
|
-
return
|
|
79
|
+
return includedRecords.includes(row);
|
|
87
80
|
}
|
|
88
81
|
};
|
|
89
82
|
exports.getCheckedStatus = getCheckedStatus;
|
|
@@ -265,10 +258,7 @@ const updateRecords = (rowData, featureDetails, gridData) => {
|
|
|
265
258
|
return false; // Exclude this item from the new array
|
|
266
259
|
}
|
|
267
260
|
})
|
|
268
|
-
:
|
|
269
|
-
newExcludedRecords = (excludedRecords === null || excludedRecords === void 0 ? void 0 : excludedRecords.includes(rowData))
|
|
270
|
-
? excludedRecords === null || excludedRecords === void 0 ? void 0 : excludedRecords.filter((item) => (item === null || item === void 0 ? void 0 : item.id) !== (rowData === null || rowData === void 0 ? void 0 : rowData.id))
|
|
271
|
-
: (rowData === null || rowData === void 0 ? void 0 : rowData.isSelected) ? [...excludedRecords, rowData] : excludedRecords;
|
|
261
|
+
: [...includedRecords, rowData]; // Add rowData if it's not already included
|
|
272
262
|
// Check if all records are included; reset if so
|
|
273
263
|
if ((newIncludedRecords === null || newIncludedRecords === void 0 ? void 0 : newIncludedRecords.length) === ((_b = gridData === null || gridData === void 0 ? void 0 : gridData.rowData) === null || _b === void 0 ? void 0 : _b.length)) {
|
|
274
264
|
return {
|
|
@@ -284,7 +274,7 @@ const updateRecords = (rowData, featureDetails, gridData) => {
|
|
|
284
274
|
}
|
|
285
275
|
// Otherwise, update the included records
|
|
286
276
|
else {
|
|
287
|
-
return Object.assign(Object.assign({}, featureDetails === null || featureDetails === void 0 ? void 0 : featureDetails.checkBoxSelection), { includedRecords: newIncludedRecords
|
|
277
|
+
return Object.assign(Object.assign({}, featureDetails === null || featureDetails === void 0 ? void 0 : featureDetails.checkBoxSelection), { includedRecords: newIncludedRecords });
|
|
288
278
|
}
|
|
289
279
|
}
|
|
290
280
|
};
|
|
@@ -110,15 +110,12 @@ function ParentForGrid(props) {
|
|
|
110
110
|
? true
|
|
111
111
|
: false), shouldRenderOnRight: (_h = props === null || props === void 0 ? void 0 : props.conditionsToDisplay) === null || _h === void 0 ? void 0 : _h.displayCheckboxOnRight }), HeaderComponent ? ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "px-3" }, { children: [" ", (0, jsx_runtime_1.jsx)(HeaderComponent, {}), " "] }))) : ((0, jsx_runtime_1.jsx)("span", { children: headerDisplayName }))] })) })));
|
|
112
112
|
};
|
|
113
|
-
const onRowClickSelection = (data) => {
|
|
114
|
-
(0, helper_1.handleCheckboxClick)({ checked: true }, data, featureDetails, gridData, setFeatureDetails, groupingColumns, setSelectedGroup, selectColumns);
|
|
115
|
-
};
|
|
116
113
|
// JSX for rendering checkbox in cells
|
|
117
114
|
const cellCheckBoxRenderer = (params) => {
|
|
118
115
|
var _a, _b;
|
|
119
116
|
const { data } = params;
|
|
120
117
|
// const { allBoxChecked, excludedRecords, includedRecords } = featureDetails.checkBoxSelection;
|
|
121
|
-
const isChecked = (0, helper_1.getCheckedStatus)(data, featureDetails, constants_1.GRID_CHECKBOX_STATUS);
|
|
118
|
+
const isChecked = (0, helper_1.getCheckedStatus)(data, featureDetails, constants_1.GRID_CHECKBOX_STATUS, setFeatureDetails);
|
|
122
119
|
return ((0, jsx_runtime_1.jsx)(grid_checkbox_1.default, { checked: isChecked, disabled: ((_a = params === null || params === void 0 ? void 0 : params.data) === null || _a === void 0 ? void 0 : _a.tagged) || false, onChange: (e) => (0, helper_1.handleCheckboxClick)(e, params, featureDetails, gridData, setFeatureDetails, groupingColumns, setSelectedGroup, selectColumns), isIndeterminate: false, shouldRenderOnRight: (_b = props === null || props === void 0 ? void 0 : props.conditionsToDisplay) === null || _b === void 0 ? void 0 : _b.displayCheckboxOnRight }));
|
|
123
120
|
};
|
|
124
121
|
// Callback to products for getting data
|
|
@@ -352,7 +349,7 @@ function ParentForGrid(props) {
|
|
|
352
349
|
setGridViewData(Object.assign(Object.assign({}, gridViewData), { rowData: allData }));
|
|
353
350
|
};
|
|
354
351
|
// Options that grid should have
|
|
355
|
-
const gridOptions = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(
|
|
352
|
+
const gridOptions = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({ columnDefs: (_f = gridData === null || gridData === void 0 ? void 0 : gridData.columnData) === null || _f === void 0 ? void 0 : _f.map((column) => {
|
|
356
353
|
var _a, _b;
|
|
357
354
|
if ((column === null || column === void 0 ? void 0 : column.enableChildCheckbox) && (column === null || column === void 0 ? void 0 : column.enableHeaderCheckbox)) {
|
|
358
355
|
return Object.assign(Object.assign({}, column), { headerComponent: (params) => headerCheckBoxRenderer(params === null || params === void 0 ? void 0 : params.displayName, (column === null || column === void 0 ? void 0 : column.headerComponent) && ""), cellRenderer: (params) => (0, utilComponents_1.dataCellRenderer)(params, column, props), cellRendererParams: {
|
|
@@ -371,7 +368,7 @@ function ParentForGrid(props) {
|
|
|
371
368
|
dataTypeDefinitions: props === null || props === void 0 ? void 0 : props.dataTypeDefinitions,
|
|
372
369
|
})), { popupParent: popupParent }), ((props === null || props === void 0 ? void 0 : props.treeData) && { treeData: props === null || props === void 0 ? void 0 : props.treeData })), ((props === null || props === void 0 ? void 0 : props.groupDefaultExpanded) && {
|
|
373
370
|
groupDefaultExpanded: props === null || props === void 0 ? void 0 : props.groupDefaultExpanded, // to enable tree data
|
|
374
|
-
})), ((props === null || props === void 0 ? void 0 : props.onRowClicked) ? { onRowClicked: props === null || props === void 0 ? void 0 : props.onRowClicked } : {})), ((props === null || props === void 0 ? void 0 : props.
|
|
371
|
+
})), ((props === null || props === void 0 ? void 0 : props.onRowClicked) ? { onRowClicked: props === null || props === void 0 ? void 0 : props.onRowClicked } : {})), ((props === null || props === void 0 ? void 0 : props.quickSearch) ? { quickSearch: props.quickSearch } : {})), {
|
|
375
372
|
// ...(props?.getDataPath && { getDataPath: props?.getDataPath }), // for clint side tree data enable fetuare
|
|
376
373
|
onGridPreDestroyed: onGridPreDestroyed }), ((props === null || props === void 0 ? void 0 : props.rowDragManaged) ? { rowDragManaged: props === null || props === void 0 ? void 0 : props.rowDragManaged } : {})), gridProps);
|
|
377
374
|
// Fucntion to call the grid
|
|
@@ -12,7 +12,7 @@ function RowVirtualizerDynamic(props) {
|
|
|
12
12
|
var _a, _b;
|
|
13
13
|
const { optionTemplate, optionLabel, filterPlaceholder, matchKey = "id", values, multiple = false, onSelectionChange, fetchData, emptyMessage, emptyFilterMessage } = props;
|
|
14
14
|
const parentRef = React.useRef(null);
|
|
15
|
-
const loadingRef = React.useRef(
|
|
15
|
+
const loadingRef = React.useRef(false);
|
|
16
16
|
const allCount = React.useRef(null);
|
|
17
17
|
const totalRecordsCount = React.useRef(null);
|
|
18
18
|
const initialFetch = {
|
|
@@ -53,8 +53,6 @@ function RowVirtualizerDynamic(props) {
|
|
|
53
53
|
loadingRef.current = false;
|
|
54
54
|
if ((props === null || props === void 0 ? void 0 : props.searchTerm) && (props === null || props === void 0 ? void 0 : props.searchTerm) !== "") {
|
|
55
55
|
totalRecordsCount.current = (_c = object === null || object === void 0 ? void 0 : object.data) === null || _c === void 0 ? void 0 : _c.length;
|
|
56
|
-
allCount.current = object === null || object === void 0 ? void 0 : object.totalRecords;
|
|
57
|
-
pageIndex.current = 0;
|
|
58
56
|
setData(object === null || object === void 0 ? void 0 : object.data);
|
|
59
57
|
}
|
|
60
58
|
else {
|
|
@@ -101,7 +99,7 @@ function RowVirtualizerDynamic(props) {
|
|
|
101
99
|
};
|
|
102
100
|
// Render Skeletons
|
|
103
101
|
const renderSkeletons = () => {
|
|
104
|
-
return Array.from({ length: 10 }).map((_, index) => ((0, jsx_runtime_1.jsx)("li", Object.assign({ className: "p-listbox-item cursor-pointer
|
|
102
|
+
return Array.from({ length: 10 }).map((_, index) => ((0, jsx_runtime_1.jsx)("li", Object.assign({ className: "p-listbox-item cursor-pointer" }, { children: (0, jsx_runtime_1.jsx)(skeleton_1.Skeleton, { height: "30px", width: "100%" }) }), index)));
|
|
105
103
|
};
|
|
106
104
|
return ((0, jsx_runtime_1.jsxs)("div", Object.assign({ className: "p-listbox" }, { children: [(0, jsx_runtime_1.jsx)("div", Object.assign({ className: "p-listbox-header", "data-pc-section": "header" }, { children: (0, jsx_runtime_1.jsx)("div", Object.assign({ className: "p-listbox-filter-container", "data-pc-section": "filtercontainer" }, { children: (0, jsx_runtime_1.jsxs)("span", Object.assign({ className: "p-input-icon-right flex-order-1" }, { children: [inputValue === "" ? ((0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-input-suffix cursor-pointer" }, { children: (0, jsx_runtime_1.jsx)(svg_component_1.default, { icon: "search-md", size: 12 }) }))) : ((0, jsx_runtime_1.jsx)("span", Object.assign({ className: "p-input-suffix cursor-pointer", onClick: (e) => {
|
|
107
105
|
e.stopPropagation();
|
|
@@ -114,7 +112,7 @@ function RowVirtualizerDynamic(props) {
|
|
|
114
112
|
height: virtualizer.getTotalSize(),
|
|
115
113
|
width: '100%',
|
|
116
114
|
position: 'relative',
|
|
117
|
-
}, className: `${data.length === 0 ? "flex-column flex justify-content-around align-items-center h-full w-full" : ""}` }, { children: loadingRef.current && (data === null || data === void 0 ? void 0 : data.length) === 0 ? ((0, jsx_runtime_1.jsx)("ul", Object.assign({ className: "p-listbox-list
|
|
115
|
+
}, className: `${data.length === 0 ? "flex-column flex justify-content-around align-items-center h-full w-full" : ""}` }, { children: loadingRef.current && (data === null || data === void 0 ? void 0 : data.length) === 0 ? ((0, jsx_runtime_1.jsx)("ul", Object.assign({ className: "p-listbox-list" }, { children: renderSkeletons() }))) : (data === null || data === void 0 ? void 0 : data.length) === 0 ? (debouncedValue && debouncedValue !== "" ? ((0, jsx_runtime_1.jsx)("span", { children: emptyFilterMessage })) : ((0, jsx_runtime_1.jsx)("span", { children: emptyMessage }))) : ((0, jsx_runtime_1.jsx)("ul", Object.assign({ className: "p-listbox-list", style: {
|
|
118
116
|
position: 'absolute',
|
|
119
117
|
top: 0,
|
|
120
118
|
left: 0,
|
|
@@ -11105,6 +11105,37 @@ exports.iconList = [
|
|
|
11105
11105
|
svg: `<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11106
11106
|
<path d="M1.5 16.5H16.5M4 14V7.33333M7.33333 14V7.33333M10.6667 14V7.33333M14 14V7.33333M15.6667 4.83333L9.35333 0.887495C9.22515 0.807381 9.16106 0.767325 9.09233 0.751706C9.03155 0.737896 8.96845 0.737896 8.90767 0.751706C8.83894 0.767325 8.77485 0.807381 8.64667 0.887494L2.33333 4.83333H15.6667Z" stroke="#8190E8" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11107
11107
|
</svg>
|
|
11108
|
+
`,
|
|
11109
|
+
},
|
|
11110
|
+
{
|
|
11111
|
+
name: "products-01",
|
|
11112
|
+
svg: `<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11113
|
+
<path d="M3.07086 5.75L5.67503 4.3125V9.25C5.38336 9.27778 5.09864 9.32292 4.82086 9.38542C4.54308 9.44792 4.27225 9.53472 4.00836 9.64583V7.14583L3.15419 7.60417C2.95975 7.71528 2.75142 7.73958 2.52919 7.67708C2.30697 7.61458 2.1403 7.48611 2.02919 7.29167L0.362526 4.39583C0.251415 4.20139 0.227109 3.98958 0.289609 3.76042C0.352109 3.53125 0.480582 3.36111 0.675026 3.25L4.82086 0.854167C4.98753 0.756944 5.16114 0.673611 5.34169 0.604167C5.52225 0.534722 5.70975 0.5 5.90419 0.5C6.09864 0.5 6.26531 0.559028 6.40419 0.677083C6.54308 0.795139 6.64725 0.944444 6.71669 1.125C6.91114 1.65278 7.16461 2.09722 7.47711 2.45833C7.78961 2.81944 8.30003 3 9.00836 3C9.71669 3 10.2271 2.81944 10.5396 2.45833C10.8521 2.09722 11.1056 1.65278 11.3 1.125C11.3695 0.944444 11.4771 0.795139 11.6229 0.677083C11.7688 0.559028 11.9389 0.5 12.1334 0.5C12.3278 0.5 12.5118 0.534722 12.6854 0.604167C12.8591 0.673611 13.0292 0.756944 13.1959 0.854167L17.3417 3.25C17.5361 3.375 17.6611 3.54861 17.7167 3.77083C17.7723 3.99306 17.7445 4.20139 17.6334 4.39583L15.9875 7.29167C15.8764 7.48611 15.7098 7.61458 15.4875 7.67708C15.2653 7.73958 15.057 7.71528 14.8625 7.60417L14.0084 7.14583V11.1458L12.6959 12.2917C12.6542 12.3194 12.5986 12.3542 12.5292 12.3958C12.4598 12.4375 12.3973 12.4722 12.3417 12.5V4.3125L14.9459 5.75L15.7792 4.29167L12.5917 2.4375C12.2584 3.11806 11.7688 3.65972 11.1229 4.0625C10.4771 4.46528 9.77225 4.66667 9.00836 4.66667C8.24447 4.66667 7.53961 4.46528 6.89378 4.0625C6.24794 3.65972 5.75836 3.11806 5.42503 2.4375L2.21669 4.29167L3.07086 5.75ZM5.98753 12.1667C5.75142 12.1667 5.51878 12.2049 5.28961 12.2812C5.06044 12.3576 4.86253 12.4653 4.69586 12.6042L3.50836 13.6042C3.3278 13.7569 3.12642 13.8264 2.90419 13.8125C2.68197 13.7986 2.49447 13.7014 2.34169 13.5208C2.18892 13.3403 2.12294 13.1354 2.14378 12.9062C2.16461 12.6771 2.2653 12.4861 2.44586 12.3333L3.61253 11.3333C3.93197 11.0556 4.29655 10.8438 4.70628 10.6979C5.116 10.5521 5.54308 10.4792 5.98753 10.4792C6.43197 10.4792 6.85558 10.5521 7.25836 10.6979C7.66114 10.8438 8.02225 11.0556 8.34169 11.3333L10.7584 13.3958C10.925 13.5347 11.1229 13.6424 11.3521 13.7188C11.5813 13.7951 11.8139 13.8333 12.05 13.8333C12.3 13.8333 12.5327 13.7986 12.7479 13.7292C12.9632 13.6597 13.1542 13.5486 13.3209 13.3958L14.4875 12.3958C14.6681 12.2431 14.8729 12.1736 15.1021 12.1875C15.3313 12.2014 15.5223 12.2986 15.675 12.4792C15.8278 12.6597 15.8938 12.8646 15.8729 13.0938C15.8521 13.3229 15.7514 13.5139 15.5709 13.6667L14.4042 14.6667C14.0848 14.9444 13.7236 15.1528 13.3209 15.2917C12.9181 15.4306 12.4945 15.5 12.05 15.5C11.6056 15.5 11.1785 15.4306 10.7688 15.2917C10.3591 15.1528 9.99447 14.9444 9.67503 14.6667L7.25836 12.6042C7.09169 12.4653 6.90072 12.3576 6.68544 12.2812C6.47017 12.2049 6.23753 12.1667 5.98753 12.1667Z" fill="white"/>
|
|
11114
|
+
</svg>
|
|
11115
|
+
`,
|
|
11116
|
+
},
|
|
11117
|
+
{
|
|
11118
|
+
name: "customers-01",
|
|
11119
|
+
svg: `<svg width="20" height="23" viewBox="0 0 20 23" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11120
|
+
<g clip-path="url(#clip0_3286_817)">
|
|
11121
|
+
<path d="M16 3.46776C17.4817 4.20411 18.5 5.73314 18.5 7.5C18.5 9.26686 17.4817 10.7959 16 11.5322M18 16.7664C19.5115 17.4503 20.8725 18.565 22 20M2 20C3.94649 17.5226 6.58918 16 9.5 16C12.4108 16 15.0535 17.5226 17 20M14 7.5C14 9.98528 11.9853 12 9.5 12C7.01472 12 5 9.98528 5 7.5C5 5.01472 7.01472 3 9.5 3C11.9853 3 14 5.01472 14 7.5Z" stroke="#8190E8" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11122
|
+
</g>
|
|
11123
|
+
<defs>
|
|
11124
|
+
<clipPath id="clip0_3286_817">
|
|
11125
|
+
<rect width="20" height="23" fill="white"/>
|
|
11126
|
+
</clipPath>
|
|
11127
|
+
</defs>
|
|
11128
|
+
</svg>
|
|
11129
|
+
|
|
11130
|
+
`,
|
|
11131
|
+
},
|
|
11132
|
+
{
|
|
11133
|
+
name: "orders-01",
|
|
11134
|
+
svg: `<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
11135
|
+
<path d="M17.0833 6.06478L9.99997 9.99996M9.99997 9.99996L2.91664 6.06478M9.99997 9.99996L10 17.9167M17.5 13.3821V6.61786C17.5 6.33232 17.5 6.18956 17.4579 6.06222C17.4207 5.94958 17.3599 5.84618 17.2795 5.75893C17.1886 5.66032 17.0638 5.59099 16.8142 5.45232L10.6475 2.02639C10.4112 1.89509 10.293 1.82944 10.1679 1.80371C10.0571 1.78093 9.94288 1.78093 9.83213 1.80371C9.70698 1.82944 9.58881 1.89509 9.35248 2.02639L3.18581 5.45232C2.93621 5.59099 2.8114 5.66032 2.72053 5.75894C2.64013 5.84618 2.57929 5.94958 2.54207 6.06223C2.5 6.18956 2.5 6.33233 2.5 6.61786V13.3821C2.5 13.6677 2.5 13.8104 2.54207 13.9378C2.57929 14.0504 2.64013 14.1538 2.72053 14.241C2.8114 14.3397 2.93621 14.409 3.18581 14.5477L9.35248 17.9736C9.58881 18.1049 9.70698 18.1705 9.83213 18.1963C9.94288 18.219 10.0571 18.219 10.1679 18.1963C10.293 18.1705 10.4112 18.1049 10.6475 17.9736L16.8142 14.5477C17.0638 14.409 17.1886 14.3397 17.2795 14.241C17.3599 14.1538 17.4207 14.0504 17.4579 13.9378C17.5 13.8104 17.5 13.6677 17.5 13.3821Z" stroke="#8190E8" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11136
|
+
<path d="M13.75 7.91667L6.25 3.75" stroke="#8190E8" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11137
|
+
</svg>
|
|
11138
|
+
|
|
11108
11139
|
`,
|
|
11109
11140
|
},
|
|
11110
11141
|
{
|
|
@@ -5,7 +5,7 @@ export declare const isComponentDisable: (state?: string) => boolean;
|
|
|
5
5
|
export declare const applyDefaultFilters: (defaultFilters: any) => any;
|
|
6
6
|
export declare const parseIfNeeded: (value: any) => any;
|
|
7
7
|
export declare const sortColumns: (columns: any) => any;
|
|
8
|
-
export declare const getCheckedStatus: (row: any, featureDetails: any, GRID_CHECKBOX_STATUS: any) => any;
|
|
8
|
+
export declare const getCheckedStatus: (row: any, featureDetails: any, GRID_CHECKBOX_STATUS: any, setFeatureDetails: any) => any;
|
|
9
9
|
export declare const updateCells: (updatedRowData: any, setUpdateRowData: any, api: any) => void;
|
|
10
10
|
export declare const fillOperation: (params: any, api: any, editedRecords: any, setEditedRecords: any) => Promise<void>;
|
|
11
11
|
export declare const autoGroupColumnDef: (isTreeEnable: boolean, headerName: string, groupField: string, GroupHeaderComponent: React.FC, headerCheckboxRenderer: React.FC, enableCheckboxForGroupHeader: boolean, displayGroupCount: boolean, rowGroupColumnWidth: number, ChildRendererForGroup?: React.FC, HeaderRendererForGroup?: React.FC) => {
|