@helpwave/hightide 0.6.14 → 0.6.16
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 -16
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -16
- 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: [
|
|
@@ -15120,22 +15121,6 @@ var TextFilter = ({ filterValue, onFilterValueChange }) => {
|
|
|
15120
15121
|
className: "min-w-64"
|
|
15121
15122
|
}
|
|
15122
15123
|
),
|
|
15123
|
-
/* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: "flex-row-2 items-center gap-2", children: [
|
|
15124
|
-
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
15125
|
-
Checkbox,
|
|
15126
|
-
{
|
|
15127
|
-
id,
|
|
15128
|
-
value: parameter.isCaseSensitive ?? false,
|
|
15129
|
-
onValueChange: (isCaseSensitive) => {
|
|
15130
|
-
onFilterValueChange({
|
|
15131
|
-
operator,
|
|
15132
|
-
parameter: { ...parameter, isCaseSensitive }
|
|
15133
|
-
});
|
|
15134
|
-
}
|
|
15135
|
-
}
|
|
15136
|
-
),
|
|
15137
|
-
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)("label", { htmlFor: id, children: translation("caseSensitive") })
|
|
15138
|
-
] }),
|
|
15139
15124
|
/* @__PURE__ */ (0, import_jsx_runtime67.jsxs)("div", { className: "flex-row-2 items-center gap-2", children: [
|
|
15140
15125
|
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
15141
15126
|
Checkbox,
|