ia-table 0.14.3 → 0.14.4
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.ts +10 -3
- package/dist/index.js +9007 -8872
- package/dist/locale-patch-applied.txt +1 -0
- package/dist/pivot.d.ts +8 -3
- package/dist/pivot.js +1 -1
- package/dist/{right-arrow-BayhBK88.js → right-arrow-DVcW5eaL.js} +466 -459
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Patch applied at 2026-04-23T06:12:52.085Z
|
package/dist/pivot.d.ts
CHANGED
|
@@ -86,6 +86,7 @@ declare const ACTION_TYPES: {
|
|
|
86
86
|
readonly SET_HAS_SPLIT_RENDERER: "SET_HAS_SPLIT_RENDERER";
|
|
87
87
|
readonly SET_HAS_SPLIT_RENDERER_KEYS: "SET_HAS_SPLIT_RENDERER_KEYS";
|
|
88
88
|
readonly SET_REMOVE_SELECTION_ON_OPERATION: "SET_REMOVE_SELECTION_ON_OPERATION";
|
|
89
|
+
readonly SET_REMOVE_CHECK_CONFIGURATION_ON_OPERATION: "SET_REMOVE_CHECK_CONFIGURATION_ON_OPERATION";
|
|
89
90
|
};
|
|
90
91
|
|
|
91
92
|
declare class InfiniteBlock {
|
|
@@ -440,6 +441,7 @@ declare interface SmartGridAPI {
|
|
|
440
441
|
getIsSelectAllRecords: () => boolean;
|
|
441
442
|
setIsSelectAllRecords: (value: boolean) => void;
|
|
442
443
|
getSelectedRows: () => SmartGridRowData[];
|
|
444
|
+
getSelectedRowsID: () => (string | number)[];
|
|
443
445
|
setSelectedRows: (rowIds: (string | number)[]) => void;
|
|
444
446
|
clearSelection: () => void;
|
|
445
447
|
selectAll: () => void;
|
|
@@ -463,7 +465,7 @@ declare interface SmartGridAPI {
|
|
|
463
465
|
getTableWidth: () => number;
|
|
464
466
|
sizeColumnsToFit: () => void;
|
|
465
467
|
setRowData: (newData: SmartGridRowData[]) => boolean | void;
|
|
466
|
-
forEachNode: (callback: (node: SmartGridRowNode, index: number) => void) => void
|
|
468
|
+
forEachNode: (callback: (node: SmartGridRowNode, index: number) => void | Promise<void>) => Promise<void>;
|
|
467
469
|
getColumnDefs: () => SmartGridColumnDefinition[];
|
|
468
470
|
getAllColumns: () => SmartGridColumnDefinition[];
|
|
469
471
|
setColumnDefs: (newColumns: SmartGridColumnDefinition) => void;
|
|
@@ -615,6 +617,7 @@ declare interface SmartGridBaseColumnDefinition {
|
|
|
615
617
|
is_multi?: boolean;
|
|
616
618
|
options_column?: string;
|
|
617
619
|
aggregation_func?: SmartGridSelectOption[];
|
|
620
|
+
enableCommaSeparated?: boolean;
|
|
618
621
|
[key: string]: unknown;
|
|
619
622
|
};
|
|
620
623
|
headerComponent?: default_2.FC<SmartGridHeaderStyleParams>;
|
|
@@ -938,6 +941,7 @@ declare type SmartGridCheckConfigraitonSearchField = {
|
|
|
938
941
|
type: string;
|
|
939
942
|
filterType: string;
|
|
940
943
|
filter: string;
|
|
944
|
+
filterMax?: string;
|
|
941
945
|
};
|
|
942
946
|
|
|
943
947
|
declare interface SmartGridCheckConfiguration {
|
|
@@ -1034,7 +1038,7 @@ declare interface SmartGridDataSourceParams {
|
|
|
1034
1038
|
[key: string]: unknown;
|
|
1035
1039
|
}
|
|
1036
1040
|
|
|
1037
|
-
declare type SmartGridDateFormat = "YYYY-MM-DD" | "DD-MM-YYYY" | "MM-DD-YYYY";
|
|
1041
|
+
declare type SmartGridDateFormat = "YYYY-MM-DD" | "DD-MM-YYYY" | "MM-DD-YYYY" | "YYYY/MM/DD" | "DD/MM/YYYY" | "MM/DD/YYYY";
|
|
1038
1042
|
|
|
1039
1043
|
declare type SmartGridDefaultColDef = {
|
|
1040
1044
|
minWidth: number;
|
|
@@ -2027,6 +2031,7 @@ declare interface SmartGridStateContext {
|
|
|
2027
2031
|
savedViewsOptions?: SmartGridSavedViewsOptions[];
|
|
2028
2032
|
} & Record<string, unknown>;
|
|
2029
2033
|
pivotPanelColumnDef: null | SmartGridColumnDefinition[];
|
|
2034
|
+
removeCheckConfigurationOnOperation: boolean;
|
|
2030
2035
|
[key: string]: unknown;
|
|
2031
2036
|
}
|
|
2032
2037
|
|
|
@@ -2062,7 +2067,7 @@ declare interface SmartGridTableModel {
|
|
|
2062
2067
|
getFilterModel: () => SmartGridFilterModel;
|
|
2063
2068
|
getType: () => SmartGridModelType;
|
|
2064
2069
|
getRowsToDisplay: () => number;
|
|
2065
|
-
forEachNode: (callback: (node: SmartGridRowNode, index: number) => void) => void
|
|
2070
|
+
forEachNode: (callback: (node: SmartGridRowNode, index: number) => void | Promise<void>) => Promise<void>;
|
|
2066
2071
|
getRowNode: (id: string | number) => SmartGridRowNode | null;
|
|
2067
2072
|
getSelectedRows: () => SmartGridRowData[];
|
|
2068
2073
|
getPaginationModel: () => SmartGridPaginationModel;
|
package/dist/pivot.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { jsxs as t, jsx as e, Fragment as Y } from "react/jsx-runtime";
|
|
3
3
|
import * as j from "react";
|
|
4
4
|
import q, { useState as D, useCallback as c, useMemo as V, useRef as Q, useEffect as J } from "react";
|
|
5
|
-
import { S as X, f as He, g as k, i as ve, o as K, T as pe, B as G, n as Ze, C as U, k as ue, j as oe, M as qe, I as de, l as ee, D as Ue, m as We } from "./right-arrow-
|
|
5
|
+
import { S as X, f as He, g as k, i as ve, o as K, T as pe, B as G, n as Ze, C as U, k as ue, j as oe, M as qe, I as de, l as ee, D as Ue, m as We } from "./right-arrow-DVcW5eaL.js";
|
|
6
6
|
import { createPortal as Qe } from "react-dom";
|
|
7
7
|
const Je = ({
|
|
8
8
|
title: l,
|