@trackunit/react-compound-components 1.7.135 → 1.7.140
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-compound-components",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.140",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,15 +9,15 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react": "19.0.0",
|
|
11
11
|
"tailwind-merge": "^2.0.0",
|
|
12
|
-
"@trackunit/react-core-hooks": "1.7.
|
|
13
|
-
"@trackunit/react-components": "1.10.
|
|
14
|
-
"@trackunit/react-modal": "1.8.
|
|
15
|
-
"@trackunit/css-class-variance-utilities": "1.7.
|
|
16
|
-
"@trackunit/react-form-components": "1.8.
|
|
17
|
-
"@trackunit/i18n-library-translation": "1.7.
|
|
18
|
-
"@trackunit/shared-utils": "1.9.
|
|
19
|
-
"@trackunit/ui-icons": "1.7.
|
|
20
|
-
"@trackunit/iris-app-runtime-core-api": "1.7.
|
|
12
|
+
"@trackunit/react-core-hooks": "1.7.106",
|
|
13
|
+
"@trackunit/react-components": "1.10.67",
|
|
14
|
+
"@trackunit/react-modal": "1.8.128",
|
|
15
|
+
"@trackunit/css-class-variance-utilities": "1.7.92",
|
|
16
|
+
"@trackunit/react-form-components": "1.8.139",
|
|
17
|
+
"@trackunit/i18n-library-translation": "1.7.110",
|
|
18
|
+
"@trackunit/shared-utils": "1.9.92",
|
|
19
|
+
"@trackunit/ui-icons": "1.7.93",
|
|
20
|
+
"@trackunit/iris-app-runtime-core-api": "1.7.102"
|
|
21
21
|
},
|
|
22
22
|
"module": "./index.esm.js",
|
|
23
23
|
"main": "./index.cjs.js",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ConfirmationDialogProps as ConfirmationDialogPropsActual } from "@trackunit/iris-app-runtime-core-api";
|
|
2
|
-
import { ReactElement } from "react";
|
|
2
|
+
import { ReactElement, ReactNode } from "react";
|
|
3
3
|
export interface ConfirmationDialogProps extends ConfirmationDialogPropsActual {
|
|
4
4
|
/**
|
|
5
5
|
* The heading of the modal.
|
|
@@ -8,7 +8,7 @@ export interface ConfirmationDialogProps extends ConfirmationDialogPropsActual {
|
|
|
8
8
|
/**
|
|
9
9
|
* The content to show in the modal.
|
|
10
10
|
*/
|
|
11
|
-
message: string |
|
|
11
|
+
message: string | ReactNode;
|
|
12
12
|
/**
|
|
13
13
|
* The type of the primary action button.
|
|
14
14
|
* For actions like delete, the primary action button should be primary-danger.
|