ia-table 0.15.1 → 0.15.2
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/RadioGroup-D3RQET6P.js +1099 -0
- package/dist/chat.d.ts +9 -0
- package/dist/chat.js +2615 -2685
- package/dist/{chat.type-Dy7elZcf.js → chat.type-DlHf-J-u.js} +1619 -1605
- package/dist/index.d.ts +16 -0
- package/dist/index.js +2521 -2498
- package/dist/pivot.d.ts +9 -0
- package/dist/pivot.js +2 -2
- package/dist/right-arrow-CAPmbx1Z.js +413 -0
- package/package.json +1 -1
- package/dist/RadioGroup-Cv9QL-Yd.js +0 -1027
- package/dist/right-arrow-C7mpExx-.js +0 -341
package/dist/chat.d.ts
CHANGED
|
@@ -964,6 +964,9 @@ declare type SmartGridCellRendererParams = {
|
|
|
964
964
|
splits?: SmartGridColumnDefinition[];
|
|
965
965
|
isEnableResetButton?: boolean;
|
|
966
966
|
placeholder?: string;
|
|
967
|
+
isOnDemandDropdownOptions?: boolean;
|
|
968
|
+
isDropdownValueLableSame?: boolean;
|
|
969
|
+
getDropdownOptions?: (params: SmartGridDropdownOptionsParams) => Promise<SmartGridSelectOption[]>;
|
|
967
970
|
} & Record<string, unknown>;
|
|
968
971
|
|
|
969
972
|
declare interface SmartGridCellValueChangedParams {
|
|
@@ -1757,6 +1760,12 @@ declare interface SmartGridDisptach {
|
|
|
1757
1760
|
payload?: unknown;
|
|
1758
1761
|
}
|
|
1759
1762
|
|
|
1763
|
+
declare interface SmartGridDropdownOptionsParams {
|
|
1764
|
+
value: string | number | (string | number)[] | null;
|
|
1765
|
+
data: SmartGridRowData;
|
|
1766
|
+
colDef: SmartGridColumnDefinition;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1760
1769
|
export declare interface SmartGridEditorCommands {
|
|
1761
1770
|
toggleBold?: () => void;
|
|
1762
1771
|
toggleItalic?: () => void;
|