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