@trackunit/react-widgets 2.1.23 → 2.1.24

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-widgets",
3
- "version": "2.1.23",
3
+ "version": "2.1.24",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -8,15 +8,15 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "react": "19.0.0",
11
- "@trackunit/react-components": "1.7.19",
12
- "@trackunit/iris-app-runtime-core": "1.7.15",
13
- "@trackunit/css-class-variance-utilities": "1.6.14",
14
- "@trackunit/ui-design-tokens": "1.6.15",
15
- "@trackunit/ui-icons": "1.6.13",
16
- "@trackunit/react-table-pagination": "1.6.13",
17
- "@trackunit/shared-utils": "1.8.14",
18
- "@trackunit/i18n-library-translation": "1.6.15",
19
- "@trackunit/react-test-setup": "1.3.14"
11
+ "@trackunit/react-components": "1.7.20",
12
+ "@trackunit/iris-app-runtime-core": "1.7.16",
13
+ "@trackunit/css-class-variance-utilities": "1.6.15",
14
+ "@trackunit/ui-design-tokens": "1.6.16",
15
+ "@trackunit/ui-icons": "1.6.14",
16
+ "@trackunit/react-table-pagination": "1.6.14",
17
+ "@trackunit/shared-utils": "1.8.15",
18
+ "@trackunit/i18n-library-translation": "1.6.16",
19
+ "@trackunit/react-test-setup": "1.3.15"
20
20
  },
21
21
  "module": "./index.esm.js",
22
22
  "main": "./index.cjs.js",
@@ -1,6 +1,14 @@
1
1
  export type NoDataType = "Good" | "Neutral";
2
2
  export interface WidgetNoDataProps {
3
+ /**
4
+ * The type of no data state to show.
5
+ *
6
+ * @default "Neutral"
7
+ */
3
8
  type?: NoDataType;
9
+ /**
10
+ * The description to show in the no data state.
11
+ */
4
12
  description: string;
5
13
  }
6
14
  /**