@keenmate/web-grid 1.0.0-rc15 → 1.0.1

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/types.d.ts CHANGED
@@ -125,6 +125,7 @@ export type Column<T> = {
125
125
  isEditButtonVisible?: boolean;
126
126
  tooltipMember?: string;
127
127
  tooltipCallback?: (value: unknown, row: T) => string | null;
128
+ isTooltipHtml?: boolean;
128
129
  beforeCopyCallback?: (value: unknown, row: T) => string;
129
130
  beforePasteCallback?: (value: string, row: T) => unknown;
130
131
  validationTooltipCallback?: (context: ValidationTooltipContext<T>) => string | null;
@@ -196,6 +197,8 @@ export type ToolbarClickDetail<T> = {
196
197
  item: NormalizedToolbarItem<T>;
197
198
  rowIndex: number;
198
199
  row: T;
200
+ event: MouseEvent;
201
+ triggerElement: HTMLElement;
199
202
  };
200
203
  export type RowActionType = PredefinedToolbarItemType;
201
204
  export type RowActionClickDetail<T> = {