@availity/mui-empty-state 2.0.1 → 3.0.0
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/CHANGELOG.md +35 -0
- package/README.md +1 -1
- package/dist/index.d.ts +11 -12
- package/dist/index.js +545 -642
- package/package.json +15 -16
- package/project.json +5 -6
- package/src/assets/404-Page-Not-Found_Gray.tsx +1 -3
- package/src/assets/Content-Loading_Gray.tsx +2 -4
- package/src/assets/Error_Gray.tsx +2 -4
- package/src/assets/Instructional_Gray.tsx +2 -4
- package/src/assets/No-Data_Gray.tsx +2 -4
- package/src/assets/No-Favorites_Gray.tsx +2 -4
- package/src/assets/No-Messages_Gray.tsx +2 -4
- package/src/assets/No-Notifications_Gray.tsx +2 -4
- package/src/assets/No-Patients_Gray.tsx +2 -4
- package/src/assets/No-Search-Found_Gray.tsx +2 -4
- package/src/assets/Success-Confirmation_Gray.tsx +2 -4
- package/dist/index.d.mts +0 -29
- package/dist/index.mjs +0 -1509
- package/jest.config.js +0 -22
- package/tsconfig.spec.json +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,41 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [3.0.0](https://github.com/Availity/element/compare/@availity/mui-empty-state@2.0.2...@availity/mui-empty-state@3.0.0) (2026-06-16)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-utils` updated to version `2.0.2`
|
|
10
|
+
* `mui-layout` updated to version `2.0.2`
|
|
11
|
+
* `mui-link` updated to version `2.0.2`
|
|
12
|
+
* `mui-typography` updated to version `2.0.2`
|
|
13
|
+
|
|
14
|
+
### ⚠ BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* CJS builds removed, packages are ESM-only.
|
|
17
|
+
|
|
18
|
+
- Convert all packages to ESM (type: module)
|
|
19
|
+
- Replace Jest with Vitest for all test targets
|
|
20
|
+
- Migrate ESLint to v9 flat config (eslint.config.js)
|
|
21
|
+
- Build output ESM-only (removed CJS dist/index.js require path)
|
|
22
|
+
- Upgrade @tanstack/react-query from v4 to v5
|
|
23
|
+
- Upgrade @availity/api-axios to v13
|
|
24
|
+
- Drop Node 20 support (engines: ^22.0.0 || ^24.0.0)
|
|
25
|
+
- Bump React to 19.2.7, MUI to 7.3.11, TypeScript to 5.9.3
|
|
26
|
+
- Simplify CI caching with built-in yarn cache action + Nx cache
|
|
27
|
+
- Modernize nx.json configuration
|
|
28
|
+
- Update husky hooks to use yarn directly
|
|
29
|
+
- Replace lint-staged nx affected with direct eslint
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* migrate to ESM, Vitest, and ESLint 9 flat config ([cc22bb4](https://github.com/Availity/element/commit/cc22bb4a230bc1f3b190f187c4e61249d015b25b))
|
|
34
|
+
|
|
35
|
+
## [2.0.2](https://github.com/Availity/element/compare/@availity/mui-empty-state@2.0.1...@availity/mui-empty-state@2.0.2) (2026-02-02)
|
|
36
|
+
|
|
37
|
+
### Dependency Updates
|
|
38
|
+
|
|
39
|
+
* `mui-link` updated to version `2.0.1`
|
|
5
40
|
## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-empty-state@2.0.0...@availity/mui-empty-state@2.0.1) (2025-12-03)
|
|
6
41
|
|
|
7
42
|
### Dependency Updates
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@availity/mui-empty-state)
|
|
6
6
|
[](https://www.npmjs.com/package/@availity/mui-empty-state)
|
|
7
|
-
[](https://github.com/Availity/element/blob/main/packages/
|
|
7
|
+
[](https://github.com/Availity/element/blob/main/packages/empty-state/package.json)
|
|
8
8
|
|
|
9
9
|
## Documentation
|
|
10
10
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,18 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { BoxProps, StackProps } from '@availity/mui-layout';
|
|
3
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
|
|
5
4
|
declare const EmptyStateImages: {
|
|
6
|
-
ContentLoading: () =>
|
|
7
|
-
Error: () =>
|
|
8
|
-
Instructional: () =>
|
|
9
|
-
NoData: () =>
|
|
10
|
-
NoFavorites: () =>
|
|
11
|
-
NoMessages: () =>
|
|
12
|
-
NoNotifications: () =>
|
|
13
|
-
NoPatients: () =>
|
|
14
|
-
NoSearchFound: () =>
|
|
15
|
-
PageNotFound: () =>
|
|
16
|
-
SuccessConfirmation: () =>
|
|
5
|
+
ContentLoading: () => react.JSX.Element;
|
|
6
|
+
Error: () => react.JSX.Element;
|
|
7
|
+
Instructional: () => react.JSX.Element;
|
|
8
|
+
NoData: () => react.JSX.Element;
|
|
9
|
+
NoFavorites: () => react.JSX.Element;
|
|
10
|
+
NoMessages: () => react.JSX.Element;
|
|
11
|
+
NoNotifications: () => react.JSX.Element;
|
|
12
|
+
NoPatients: () => react.JSX.Element;
|
|
13
|
+
NoSearchFound: () => react.JSX.Element;
|
|
14
|
+
PageNotFound: () => react.JSX.Element;
|
|
15
|
+
SuccessConfirmation: () => react.JSX.Element;
|
|
17
16
|
};
|
|
18
17
|
interface EmptyStateImageProps extends Omit<BoxProps, 'children'> {
|
|
19
18
|
/** Empty State variant for image */
|