ia-table 0.15.0 → 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 +10 -0
- package/dist/chat.js +8327 -8228
- package/dist/{chat.type-_co7njq2.js → chat.type-DlHf-J-u.js} +1636 -1620
- package/dist/index.d.ts +17 -0
- package/dist/index.js +5720 -5596
- package/dist/pivot.d.ts +10 -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-5CR5OWUs.js +0 -340
package/dist/chat.d.ts
CHANGED
|
@@ -963,6 +963,10 @@ declare type SmartGridCellRendererParams = {
|
|
|
963
963
|
rightLabel?: string;
|
|
964
964
|
splits?: SmartGridColumnDefinition[];
|
|
965
965
|
isEnableResetButton?: boolean;
|
|
966
|
+
placeholder?: string;
|
|
967
|
+
isOnDemandDropdownOptions?: boolean;
|
|
968
|
+
isDropdownValueLableSame?: boolean;
|
|
969
|
+
getDropdownOptions?: (params: SmartGridDropdownOptionsParams) => Promise<SmartGridSelectOption[]>;
|
|
966
970
|
} & Record<string, unknown>;
|
|
967
971
|
|
|
968
972
|
declare interface SmartGridCellValueChangedParams {
|
|
@@ -1756,6 +1760,12 @@ declare interface SmartGridDisptach {
|
|
|
1756
1760
|
payload?: unknown;
|
|
1757
1761
|
}
|
|
1758
1762
|
|
|
1763
|
+
declare interface SmartGridDropdownOptionsParams {
|
|
1764
|
+
value: string | number | (string | number)[] | null;
|
|
1765
|
+
data: SmartGridRowData;
|
|
1766
|
+
colDef: SmartGridColumnDefinition;
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1759
1769
|
export declare interface SmartGridEditorCommands {
|
|
1760
1770
|
toggleBold?: () => void;
|
|
1761
1771
|
toggleItalic?: () => void;
|