@trackunit/react-table-base-components 1.6.9 → 1.6.14
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
CHANGED
|
@@ -308,7 +308,7 @@ const cvaResizeHandel = cssClassVarianceUtilities.cvaMerge([
|
|
|
308
308
|
*
|
|
309
309
|
* @param {RowActionsProps} props - The properties for the component.
|
|
310
310
|
* @param {Action[]} props.actions - A list of actions to display, including their labels, icons, and handlers.
|
|
311
|
-
* @returns {
|
|
311
|
+
* @returns {Element} A React component rendering the actions.
|
|
312
312
|
*/
|
|
313
313
|
const RowActions = ({ actions }) => {
|
|
314
314
|
const selectedActions = actions.filter(action => action.isSelected);
|
package/index.esm.js
CHANGED
|
@@ -306,7 +306,7 @@ const cvaResizeHandel = cvaMerge([
|
|
|
306
306
|
*
|
|
307
307
|
* @param {RowActionsProps} props - The properties for the component.
|
|
308
308
|
* @param {Action[]} props.actions - A list of actions to display, including their labels, icons, and handlers.
|
|
309
|
-
* @returns {
|
|
309
|
+
* @returns {Element} A React component rendering the actions.
|
|
310
310
|
*/
|
|
311
311
|
const RowActions = ({ actions }) => {
|
|
312
312
|
const selectedActions = actions.filter(action => action.isSelected);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-table-base-components",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.14",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react": "19.0.0",
|
|
11
11
|
"@js-temporal/polyfill": "^0.4.4",
|
|
12
|
-
"@trackunit/react-components": "1.7.
|
|
13
|
-
"@trackunit/ui-icons": "1.6.
|
|
14
|
-
"@trackunit/react-form-components": "1.6.
|
|
15
|
-
"@trackunit/css-class-variance-utilities": "1.6.
|
|
16
|
-
"@trackunit/date-and-time-utils": "1.6.
|
|
17
|
-
"@trackunit/shared-utils": "1.8.
|
|
18
|
-
"@trackunit/react-test-setup": "1.3.
|
|
12
|
+
"@trackunit/react-components": "1.7.13",
|
|
13
|
+
"@trackunit/ui-icons": "1.6.10",
|
|
14
|
+
"@trackunit/react-form-components": "1.6.14",
|
|
15
|
+
"@trackunit/css-class-variance-utilities": "1.6.11",
|
|
16
|
+
"@trackunit/date-and-time-utils": "1.6.11",
|
|
17
|
+
"@trackunit/shared-utils": "1.8.11",
|
|
18
|
+
"@trackunit/react-test-setup": "1.3.11"
|
|
19
19
|
},
|
|
20
20
|
"module": "./index.esm.js",
|
|
21
21
|
"main": "./index.cjs.js",
|
|
@@ -22,7 +22,7 @@ interface RowActionsProps {
|
|
|
22
22
|
*
|
|
23
23
|
* @param {RowActionsProps} props - The properties for the component.
|
|
24
24
|
* @param {Action[]} props.actions - A list of actions to display, including their labels, icons, and handlers.
|
|
25
|
-
* @returns {
|
|
25
|
+
* @returns {Element} A React component rendering the actions.
|
|
26
26
|
*/
|
|
27
27
|
export declare const RowActions: ({ actions }: RowActionsProps) => false | import("react/jsx-runtime").JSX.Element | null | undefined;
|
|
28
28
|
export {};
|