@trackunit/react-table-base-components 2.6.45 → 2.6.48
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/index.cjs.js +9 -2
- package/index.esm.js +9 -2
- package/package.json +9 -9
package/index.cjs.js
CHANGED
|
@@ -153,8 +153,15 @@ const CheckboxCell = ({ checked, className, "data-testid": dataTestId, style })
|
|
|
153
153
|
return (jsxRuntime.jsx("div", { className: cvaCheckboxCell({ className }), "data-testid": dataTestId, style: style, children: jsxRuntime.jsx(reactFormComponents.Checkbox, { checked: checked, readOnly: true }) }));
|
|
154
154
|
};
|
|
155
155
|
|
|
156
|
-
const cvaMultiRowTableCellSection = cssClassVarianceUtilities.cvaMerge([
|
|
157
|
-
|
|
156
|
+
const cvaMultiRowTableCellSection = cssClassVarianceUtilities.cvaMerge([
|
|
157
|
+
"flex",
|
|
158
|
+
"flex-col",
|
|
159
|
+
"justify-center",
|
|
160
|
+
"min-w-0",
|
|
161
|
+
"max-w-full",
|
|
162
|
+
"overflow-hidden",
|
|
163
|
+
]);
|
|
164
|
+
const cvaMultiRowTableCell = cssClassVarianceUtilities.cvaMerge(["flex", "justify-start", "min-w-0", "max-w-full"]);
|
|
158
165
|
const cvaMainRowText = cssClassVarianceUtilities.cvaMerge(["overflow-hidden", "text-ellipsis", "text-sm"]);
|
|
159
166
|
const cvaSecondaryRowText = cssClassVarianceUtilities.cvaMerge(["overflow-hidden", "text-ellipsis", "text-neutral-500", "text-xs"]);
|
|
160
167
|
|
package/index.esm.js
CHANGED
|
@@ -151,8 +151,15 @@ const CheckboxCell = ({ checked, className, "data-testid": dataTestId, style })
|
|
|
151
151
|
return (jsx("div", { className: cvaCheckboxCell({ className }), "data-testid": dataTestId, style: style, children: jsx(Checkbox, { checked: checked, readOnly: true }) }));
|
|
152
152
|
};
|
|
153
153
|
|
|
154
|
-
const cvaMultiRowTableCellSection = cvaMerge([
|
|
155
|
-
|
|
154
|
+
const cvaMultiRowTableCellSection = cvaMerge([
|
|
155
|
+
"flex",
|
|
156
|
+
"flex-col",
|
|
157
|
+
"justify-center",
|
|
158
|
+
"min-w-0",
|
|
159
|
+
"max-w-full",
|
|
160
|
+
"overflow-hidden",
|
|
161
|
+
]);
|
|
162
|
+
const cvaMultiRowTableCell = cvaMerge(["flex", "justify-start", "min-w-0", "max-w-full"]);
|
|
156
163
|
const cvaMainRowText = cvaMerge(["overflow-hidden", "text-ellipsis", "text-sm"]);
|
|
157
164
|
const cvaSecondaryRowText = cvaMerge(["overflow-hidden", "text-ellipsis", "text-neutral-500", "text-xs"]);
|
|
158
165
|
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-table-base-components",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.48",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=24.x"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@trackunit/react-components": "2.
|
|
11
|
-
"@trackunit/ui-icons": "1.14.
|
|
12
|
-
"@trackunit/react-form-components": "2.6.
|
|
13
|
-
"@trackunit/css-class-variance-utilities": "1.14.
|
|
14
|
-
"@trackunit/date-and-time-utils": "1.14.
|
|
15
|
-
"@trackunit/react-date-and-time-hooks": "2.6.
|
|
16
|
-
"@trackunit/shared-utils": "1.16.
|
|
17
|
-
"@trackunit/i18n-library-translation": "2.4.
|
|
10
|
+
"@trackunit/react-components": "2.13.0",
|
|
11
|
+
"@trackunit/ui-icons": "1.14.28",
|
|
12
|
+
"@trackunit/react-form-components": "2.6.48",
|
|
13
|
+
"@trackunit/css-class-variance-utilities": "1.14.29",
|
|
14
|
+
"@trackunit/date-and-time-utils": "1.14.30",
|
|
15
|
+
"@trackunit/react-date-and-time-hooks": "2.6.46",
|
|
16
|
+
"@trackunit/shared-utils": "1.16.32",
|
|
17
|
+
"@trackunit/i18n-library-translation": "2.4.41",
|
|
18
18
|
"tailwind-merge": "^2.0.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|