@availity/mui-textfield 1.3.2 → 2.0.1
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 +33 -0
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/introduction.mdx +1 -2
- package/package.json +9 -9
- package/src/lib/TextField.stories.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [2.0.1](https://github.com/Availity/element/compare/@availity/mui-textfield@2.0.0...@availity/mui-textfield@2.0.1) (2025-12-03)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-typography` updated to version `2.0.0`
|
|
10
|
+
* `mui-form-utils` updated to version `2.0.0`
|
|
11
|
+
* `mui-icon` updated to version `2.0.0`
|
|
12
|
+
* `mui-button` updated to version `2.0.0`
|
|
13
|
+
* `mui-chip` updated to version `2.0.0`
|
|
14
|
+
* `mui-layout` updated to version `2.0.0`
|
|
15
|
+
* `mui-menu` updated to version `2.0.0`
|
|
16
|
+
## [2.0.0](https://github.com/Availity/element/compare/@availity/mui-textfield@1.3.2...@availity/mui-textfield@2.0.0) (2025-11-17)
|
|
17
|
+
|
|
18
|
+
### Dependency Updates
|
|
19
|
+
|
|
20
|
+
* `mui-typography` updated to version `1.3.2`
|
|
21
|
+
* `mui-form-utils` updated to version `1.3.2`
|
|
22
|
+
* `mui-icon` updated to version `1.3.2`
|
|
23
|
+
* `mui-button` updated to version `1.3.2`
|
|
24
|
+
* `mui-chip` updated to version `1.3.2`
|
|
25
|
+
* `mui-layout` updated to version `1.3.2`
|
|
26
|
+
* `mui-menu` updated to version `1.3.2`
|
|
27
|
+
|
|
28
|
+
### ⚠ BREAKING CHANGES
|
|
29
|
+
|
|
30
|
+
* @mui/material upgraded to v7
|
|
31
|
+
* @mui/x-* upgraded to v8
|
|
32
|
+
* react upgraded to v19
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* upgrade material and react dependencies ([51602a4](https://github.com/Availity/element/commit/51602a48c5304db6f61e2c7e772c9a3a4aa3f65c))
|
|
37
|
+
|
|
5
38
|
## [1.3.2](https://github.com/Availity/element/compare/@availity/mui-textfield@1.3.1...@availity/mui-textfield@1.3.2) (2025-10-30)
|
|
6
39
|
|
|
7
40
|
### Dependency Updates
|
package/dist/index.js
CHANGED
|
@@ -69,10 +69,10 @@ var import_TextField = __toESM(require("@mui/material/TextField"));
|
|
|
69
69
|
var import_mui_form_utils = require("@availity/mui-form-utils");
|
|
70
70
|
|
|
71
71
|
// ../layout/src/lib/Grid.tsx
|
|
72
|
-
var
|
|
72
|
+
var import_Grid = __toESM(require("@mui/material/Grid"));
|
|
73
73
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
74
74
|
var Grid = (args) => {
|
|
75
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
75
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Grid.default, __spreadValues({}, args));
|
|
76
76
|
};
|
|
77
77
|
|
|
78
78
|
// ../typography/src/lib/Typography.tsx
|
package/dist/index.mjs
CHANGED
|
@@ -42,10 +42,10 @@ import {
|
|
|
42
42
|
} from "@availity/mui-form-utils";
|
|
43
43
|
|
|
44
44
|
// ../layout/src/lib/Grid.tsx
|
|
45
|
-
import
|
|
45
|
+
import MuiGrid from "@mui/material/Grid";
|
|
46
46
|
import { jsx } from "react/jsx-runtime";
|
|
47
47
|
var Grid = (args) => {
|
|
48
|
-
return /* @__PURE__ */ jsx(
|
|
48
|
+
return /* @__PURE__ */ jsx(MuiGrid, __spreadValues({}, args));
|
|
49
49
|
};
|
|
50
50
|
|
|
51
51
|
// ../typography/src/lib/Typography.tsx
|
package/introduction.mdx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-textfield",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Availity MUI Textfield Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@availity/mui-form-utils": "
|
|
44
|
-
"@availity/mui-icon": "
|
|
43
|
+
"@availity/mui-form-utils": "2.0.1",
|
|
44
|
+
"@availity/mui-icon": "2.0.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@availity/mui-typography": "
|
|
48
|
-
"@mui/material": "^
|
|
49
|
-
"react": "
|
|
50
|
-
"react-dom": "
|
|
47
|
+
"@availity/mui-typography": "2.0.1",
|
|
48
|
+
"@mui/material": "^7.3.4",
|
|
49
|
+
"react": "19.2.0",
|
|
50
|
+
"react-dom": "19.2.0",
|
|
51
51
|
"tsup": "^8.4.0",
|
|
52
52
|
"typescript": "^5.4.5"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@mui/material": "^
|
|
56
|
-
"react": ">=
|
|
55
|
+
"@mui/material": "^7.0.0",
|
|
56
|
+
"react": ">=17.0.0"
|
|
57
57
|
},
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Each exported component in the package should have its own stories file
|
|
2
2
|
import { forwardRef, useState } from 'react';
|
|
3
|
-
import type { Meta, StoryObj } from '@storybook/react';
|
|
3
|
+
import type { Meta, StoryObj } from '@storybook/react-vite';
|
|
4
4
|
import { AsYouType } from 'libphonenumber-js';
|
|
5
5
|
import { IMaskInput } from 'react-imask';
|
|
6
6
|
import { NumericFormat, NumericFormatProps } from 'react-number-format';
|