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/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;