@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/README.md +13 -6
- package/ai/INDEX.txt +360 -0
- package/ai/basic-setup.txt +165 -0
- package/ai/callbacks-events.txt +297 -0
- package/ai/columns.txt +486 -0
- package/ai/dropdown-editors.txt +504 -0
- package/ai/editing.txt +545 -0
- package/ai/fill-handle.txt +128 -0
- package/ai/frozen-columns.txt +142 -0
- package/ai/grid-modes.txt +267 -0
- package/ai/keyboard-navigation.txt +429 -0
- package/ai/public-methods.txt +231 -0
- package/ai/row-locking.txt +214 -0
- package/ai/selection.txt +403 -0
- package/ai/sorting-filtering-pagination.txt +375 -0
- package/ai/styling-theming.txt +291 -0
- package/ai/toolbar-actions.txt +475 -0
- package/ai/typescript-types.txt +498 -0
- package/ai/virtual-scroll.txt +146 -0
- package/dist/grid.d.ts +4 -0
- package/dist/modules/navigation/focus.d.ts +4 -0
- package/dist/modules/navigation/index.d.ts +1 -1
- package/dist/modules/toolbar/index.d.ts +1 -1
- package/dist/types.d.ts +3 -0
- package/dist/web-grid.js +2038 -1997
- package/dist/web-grid.umd.js +80 -79
- package/package.json +2 -1
- package/src/css/_cell-selection.css +5 -3
- package/src/css/_dark-mode.css +44 -7
- package/src/css/_dialogs.css +1 -1
- package/src/css/_freeze.css +10 -5
- package/src/css/_navigation.css +15 -8
- package/src/css/_selection.css +5 -3
- package/src/css/_variables.css +3 -0
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> = {
|