@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
package/dist/click-ui.es.js
CHANGED
|
@@ -14251,7 +14251,7 @@ SyntaxHighlighter.registerLanguage("json", json);
|
|
|
14251
14251
|
SyntaxHighlighter.registerLanguage("tsx", tsx);
|
|
14252
14252
|
const CodeBlockContainer = styled.div.withConfig({
|
|
14253
14253
|
componentId: "sc-18gnqgi-0"
|
|
14254
|
-
})(["width:100%;width:-webkit-fill-available;width:fill-available;width:stretch;position:relative;
|
|
14254
|
+
})(["width:100%;width:-webkit-fill-available;width:fill-available;width:stretch;position:relative;", ""], ({
|
|
14255
14255
|
theme: theme2,
|
|
14256
14256
|
$theme
|
|
14257
14257
|
}) => {
|
|
@@ -40051,6 +40051,7 @@ const TableBodyRow = ({
|
|
|
40051
40051
|
onSelect,
|
|
40052
40052
|
isSelectable,
|
|
40053
40053
|
isSelected,
|
|
40054
|
+
isIndeterminate,
|
|
40054
40055
|
onDelete,
|
|
40055
40056
|
onEdit,
|
|
40056
40057
|
isDeleted,
|
|
@@ -40064,7 +40065,7 @@ const TableBodyRow = ({
|
|
|
40064
40065
|
const isDeletable = typeof onDelete === "function";
|
|
40065
40066
|
const isEditable = typeof onEdit === "function";
|
|
40066
40067
|
return /* @__PURE__ */ jsxs(TableRow, { $isSelectable: isSelectable, $isDeleted: isDeleted, $isDisabled: isDisabled, $isActive: isActive, $showActions: isDeletable || isEditable, $rowHeight: rowHeight, ...rowProps, children: [
|
|
40067
|
-
isSelectable && /* @__PURE__ */ jsx(SelectData, { $size: size2, children: /* @__PURE__ */ jsx(Checkbox, { checked: isSelected, onCheckedChange: onSelect, disabled: isDisabled || isDeleted }) }),
|
|
40068
|
+
isSelectable && /* @__PURE__ */ jsx(SelectData, { $size: size2, children: /* @__PURE__ */ jsx(Checkbox, { checked: isIndeterminate ? "indeterminate" : isSelected, onCheckedChange: onSelect, disabled: isDisabled || isDeleted }) }),
|
|
40068
40069
|
items.map(({
|
|
40069
40070
|
label,
|
|
40070
40071
|
...cellProps
|