@economic/taco 2.70.2-release-reverts.0 → 2.70.2-search-race-condition.0
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/taco.cjs +6016 -512
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +1 -1
- package/dist/taco.js +6016 -512
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.d.ts
CHANGED
@@ -3492,7 +3492,7 @@ export declare type TableSettings = {
|
|
3492
3492
|
|
3493
3493
|
export declare type TableSettingsHandler = (settings: TableSettings) => void | Promise<void>;
|
3494
3494
|
|
3495
|
-
export declare type TableShortcutHandlerFn<TType = unknown> = (row: TType) => void;
|
3495
|
+
export declare type TableShortcutHandlerFn<TType = unknown> = (row: TType | undefined) => void;
|
3496
3496
|
|
3497
3497
|
export declare type TableShortcutHandlerObject<TType = unknown> = {
|
3498
3498
|
handler: TableShortcutHandlerFn<TType>;
|