@helpwave/hightide 0.6.14 → 0.6.15
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/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1132,7 +1132,7 @@ type TableProviderProps<T> = {
|
|
|
1132
1132
|
initialState?: Omit<InitialTableState, 'columnSizing'>;
|
|
1133
1133
|
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1134
1134
|
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1135
|
-
state?: Omit<TableState, 'columnSizing'
|
|
1135
|
+
state?: Partial<Omit<TableState, 'columnSizing'>>;
|
|
1136
1136
|
} & Partial<TableOptions<T>>;
|
|
1137
1137
|
declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRowCell, initialState, onRowClick, onFillerRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1138
1138
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1132,7 +1132,7 @@ type TableProviderProps<T> = {
|
|
|
1132
1132
|
initialState?: Omit<InitialTableState, 'columnSizing'>;
|
|
1133
1133
|
onRowClick?: (row: Row<T>, table: Table$1<T>) => void;
|
|
1134
1134
|
onFillerRowClick?: (index: number, table: Table$1<T>) => void;
|
|
1135
|
-
state?: Omit<TableState, 'columnSizing'
|
|
1135
|
+
state?: Partial<Omit<TableState, 'columnSizing'>>;
|
|
1136
1136
|
} & Partial<TableOptions<T>>;
|
|
1137
1137
|
declare const TableProvider: <T>({ data, isUsingFillerRows, fillerRowCell, initialState, onRowClick, onFillerRowClick, defaultColumn: defaultColumnOverwrite, state, columns: columnsProp, children, ...tableOptions }: TableProviderProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1138
1138
|
|
package/dist/index.js
CHANGED
|
@@ -12779,6 +12779,7 @@ var Tooltip = ({
|
|
|
12779
12779
|
onPointerEnter: openWithDelay,
|
|
12780
12780
|
onPointerLeave: close3,
|
|
12781
12781
|
onPointerCancel: close3,
|
|
12782
|
+
onClick: close3,
|
|
12782
12783
|
onFocus: openWithDelay,
|
|
12783
12784
|
onBlur: close3,
|
|
12784
12785
|
children: [
|