@clickhouse/click-ui 0.0.223 → 0.0.224
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/click-ui.bundled.es.js +3 -2
- package/dist/click-ui.bundled.es.js.map +1 -1
- package/dist/click-ui.bundled.umd.js +3 -2
- package/dist/click-ui.bundled.umd.js.map +1 -1
- package/dist/click-ui.es.js +3 -2
- package/dist/click-ui.es.js.map +1 -1
- package/dist/click-ui.umd.js +3 -2
- package/dist/click-ui.umd.js.map +1 -1
- package/dist/components/Table/Table.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15419,7 +15419,7 @@ SyntaxHighlighter.registerLanguage("json", json);
|
|
|
15419
15419
|
SyntaxHighlighter.registerLanguage("tsx", tsx);
|
|
15420
15420
|
const CodeBlockContainer = pt.div.withConfig({
|
|
15421
15421
|
componentId: "sc-18gnqgi-0"
|
|
15422
|
-
})(["width:100%;width:-webkit-fill-available;width:fill-available;width:stretch;position:relative;
|
|
15422
|
+
})(["width:100%;width:-webkit-fill-available;width:fill-available;width:stretch;position:relative;", ""], ({
|
|
15423
15423
|
theme: theme2,
|
|
15424
15424
|
$theme
|
|
15425
15425
|
}) => {
|
|
@@ -41219,6 +41219,7 @@ const TableBodyRow = ({
|
|
|
41219
41219
|
onSelect,
|
|
41220
41220
|
isSelectable,
|
|
41221
41221
|
isSelected,
|
|
41222
|
+
isIndeterminate,
|
|
41222
41223
|
onDelete,
|
|
41223
41224
|
onEdit,
|
|
41224
41225
|
isDeleted,
|
|
@@ -41232,7 +41233,7 @@ const TableBodyRow = ({
|
|
|
41232
41233
|
const isDeletable = typeof onDelete === "function";
|
|
41233
41234
|
const isEditable = typeof onEdit === "function";
|
|
41234
41235
|
return /* @__PURE__ */ jsxs(TableRow, { $isSelectable: isSelectable, $isDeleted: isDeleted, $isDisabled: isDisabled, $isActive: isActive, $showActions: isDeletable || isEditable, $rowHeight: rowHeight, ...rowProps, children: [
|
|
41235
|
-
isSelectable && /* @__PURE__ */ jsx(SelectData, { $size: size2, children: /* @__PURE__ */ jsx(Checkbox, { checked: isSelected, onCheckedChange: onSelect, disabled: isDisabled || isDeleted }) }),
|
|
41236
|
+
isSelectable && /* @__PURE__ */ jsx(SelectData, { $size: size2, children: /* @__PURE__ */ jsx(Checkbox, { checked: isIndeterminate ? "indeterminate" : isSelected, onCheckedChange: onSelect, disabled: isDisabled || isDeleted }) }),
|
|
41236
41237
|
items.map(({
|
|
41237
41238
|
label,
|
|
41238
41239
|
...cellProps
|