@availity/mui-checkbox 0.3.0 → 1.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,35 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.0](https://github.com/Availity/element/compare/@availity/mui-checkbox@1.0.0-alpha.0...@availity/mui-checkbox@1.0.0) (2025-02-25)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `mui-icon` updated to version `0.3.0`
10
+ * `mui-typography` updated to version `0.3.0`
11
+
12
+ ### ⚠ BREAKING CHANGES
13
+
14
+ * upgrade to @mui/material v6
15
+
16
+ ### Miscellaneous Chores
17
+
18
+ * element v1 release ([a6e3567](https://github.com/Availity/element/commit/a6e35671185b9f13d25c7a39c4488ecb8774633e))
19
+
20
+ ## [1.0.0-alpha.0](https://github.com/Availity/element/compare/@availity/mui-checkbox@0.3.0...@availity/mui-checkbox@1.0.0-alpha.0) (2025-02-24)
21
+
22
+
23
+ ### ⚠ BREAKING CHANGES
24
+
25
+ * upgraded to @mui/material v6
26
+ * **element:** upgraded to @mui/material v6
27
+
28
+ ### Features
29
+
30
+ * **element:** upgrade to @mui/material v6 ([cb958bb](https://github.com/Availity/element/commit/cb958bba99a4f1ee6dab323f0ff54b69e6fd3493))
31
+ * upgrade @mui/material ([571453a](https://github.com/Availity/element/commit/571453a34b21c344594ab4c03bc497d19aba942b))
32
+ * upgrade to MUI v6 ([7febd6f](https://github.com/Availity/element/commit/7febd6fd4fd58e87e1c97a832cea3b4595a35d58))
33
+
5
34
  ## [0.3.0](https://github.com/Availity/element/compare/@availity/mui-checkbox@0.2.6...@availity/mui-checkbox@0.3.0) (2025-02-04)
6
35
 
7
36
  ### Dependency Updates
package/dist/index.js CHANGED
@@ -45,11 +45,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
45
45
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
46
46
 
47
47
  // src/index.ts
48
- var src_exports = {};
49
- __export(src_exports, {
48
+ var index_exports = {};
49
+ __export(index_exports, {
50
50
  Checkbox: () => Checkbox
51
51
  });
52
- module.exports = __toCommonJS(src_exports);
52
+ module.exports = __toCommonJS(index_exports);
53
53
 
54
54
  // src/lib/Checkbox.tsx
55
55
  var import_react = require("react");
@@ -1,7 +1,10 @@
1
1
  import { Markdown } from '@storybook/blocks';
2
2
  import { Meta } from '@storybook/addon-docs';
3
3
  import ReadMe from './README.md?raw';
4
+ import CHANGELOG from './CHANGELOG.md?raw';
4
5
 
5
6
  <Meta title="Form Components/Checkbox/Introduction" />
6
7
 
7
8
  <Markdown>{ReadMe}</Markdown>
9
+
10
+ <Markdown>{CHANGELOG}</Markdown>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-checkbox",
3
- "version": "0.3.0",
3
+ "version": "1.0.0",
4
4
  "description": "Availity MUI Checkbox Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -40,16 +40,16 @@
40
40
  "publish:canary": "yarn npm publish --access public --tag canary"
41
41
  },
42
42
  "devDependencies": {
43
- "@availity/mui-icon": "^0.14.0",
44
- "@availity/mui-typography": "^0.3.0",
45
- "@mui/material": "^5.15.15",
43
+ "@availity/mui-icon": "^1.0.0",
44
+ "@availity/mui-typography": "^1.0.0",
45
+ "@mui/material": "^6.4.5",
46
46
  "react": "18.2.0",
47
47
  "react-dom": "18.2.0",
48
- "tsup": "^8.0.2",
48
+ "tsup": "^8.3.6",
49
49
  "typescript": "^5.4.5"
50
50
  },
51
51
  "peerDependencies": {
52
- "@mui/material": "^5.11.9",
52
+ "@mui/material": "^6.4.5",
53
53
  "react": ">=16.3.0"
54
54
  },
55
55
  "publishConfig": {
@@ -51,7 +51,7 @@ export const _Checkbox: StoryObj<typeof Checkbox> = {
51
51
  export const _CustomCheckbox: StoryObj<typeof Checkbox> = {
52
52
  render: (args: CheckboxProps) => (
53
53
  <Container>
54
- <Typography variant="h1" marginTop="1rem">
54
+ <Typography variant="h1" sx={{ marginTop: '1rem' }}>
55
55
  Examples
56
56
  </Typography>
57
57
  <Typography variant="body1">Storybook controls do not apply to these</Typography>
@@ -101,7 +101,7 @@ export const _CustomCheckbox: StoryObj<typeof Checkbox> = {
101
101
  export const _LabeledCheckbox: StoryObj<typeof Checkbox> = {
102
102
  render: (args: CheckboxProps) => (
103
103
  <Container>
104
- <Typography variant="h1" marginTop="1rem">
104
+ <Typography variant="h1" sx={{ marginTop: '1rem' }}>
105
105
  Examples
106
106
  </Typography>
107
107
  <Typography variant="body1">Storybook controls do not apply to these</Typography>