@availity/mui-empty-state 2.0.2 → 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 CHANGED
@@ -2,6 +2,36 @@
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
+
5
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)
6
36
 
7
37
  ### Dependency Updates
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: () => react_jsx_runtime.JSX.Element;
7
- Error: () => react_jsx_runtime.JSX.Element;
8
- Instructional: () => react_jsx_runtime.JSX.Element;
9
- NoData: () => react_jsx_runtime.JSX.Element;
10
- NoFavorites: () => react_jsx_runtime.JSX.Element;
11
- NoMessages: () => react_jsx_runtime.JSX.Element;
12
- NoNotifications: () => react_jsx_runtime.JSX.Element;
13
- NoPatients: () => react_jsx_runtime.JSX.Element;
14
- NoSearchFound: () => react_jsx_runtime.JSX.Element;
15
- PageNotFound: () => react_jsx_runtime.JSX.Element;
16
- SuccessConfirmation: () => react_jsx_runtime.JSX.Element;
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 */