@availity/mui-tabs 0.1.10 → 1.0.0-alpha.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,30 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.0.0-alpha.0](https://github.com/Availity/element/compare/@availity/mui-tabs@0.2.0...@availity/mui-tabs@1.0.0-alpha.0) (2025-02-24)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * upgraded to @mui/material v6
11
+ * **element:** upgraded to @mui/material v6
12
+
13
+ ### Features
14
+
15
+ * **element:** upgrade to @mui/material v6 ([cb958bb](https://github.com/Availity/element/commit/cb958bba99a4f1ee6dab323f0ff54b69e6fd3493))
16
+ * upgrade @mui/material ([571453a](https://github.com/Availity/element/commit/571453a34b21c344594ab4c03bc497d19aba942b))
17
+ * upgrade to MUI v6 ([7febd6f](https://github.com/Availity/element/commit/7febd6fd4fd58e87e1c97a832cea3b4595a35d58))
18
+
19
+ ## [0.2.0](https://github.com/Availity/element/compare/@availity/mui-tabs@0.1.10...@availity/mui-tabs@0.2.0) (2025-02-04)
20
+
21
+ ### Dependency Updates
22
+
23
+ * `mui-divider` updated to version `0.1.10`
24
+
25
+ ### Features
26
+
27
+ * configure package.json to allow esm to be used ([5a5393d](https://github.com/Availity/element/commit/5a5393de761f52608e714dd94a05106937dd95db))
28
+
5
29
  ## [0.1.10](https://github.com/Availity/element/compare/@availity/mui-tabs@0.1.9...@availity/mui-tabs@0.1.10) (2024-10-31)
6
30
 
7
31
  ### Dependency Updates
package/README.md CHANGED
@@ -12,7 +12,7 @@ This package extends the MUI Tabs component: [MUI Tabs Docs](https://mui.com/com
12
12
 
13
13
  Live demo and documentation in our [Storybook](https://availity.github.io/element/?path=/docs/components-tabs-introduction--docs)
14
14
 
15
- Availity standards for design and usage can be found in the [Availity Design Guide](https://zeroheight.com/2e36e50c7)
15
+ Availity standards for design and usage can be found in the [Availity Design Guide](https://design.availity.com/2e36e50c7)
16
16
 
17
17
  ## Installation
18
18
 
package/dist/index.js CHANGED
@@ -57,15 +57,15 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
57
57
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
58
58
 
59
59
  // src/index.ts
60
- var src_exports = {};
61
- __export(src_exports, {
60
+ var index_exports = {};
61
+ __export(index_exports, {
62
62
  Tab: () => Tab,
63
63
  TabContext: () => TabContext,
64
64
  TabList: () => TabList,
65
65
  TabPanel: () => TabPanel,
66
66
  Tabs: () => Tabs
67
67
  });
68
- module.exports = __toCommonJS(src_exports);
68
+ module.exports = __toCommonJS(index_exports);
69
69
 
70
70
  // src/lib/Tab.tsx
71
71
  var import_Tab = __toESM(require("@mui/material/Tab"));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/mui-tabs",
3
- "version": "0.1.10",
3
+ "version": "1.0.0-alpha.0",
4
4
  "description": "Availity MUI Tabs Component - part of the @availity/element design system",
5
5
  "keywords": [
6
6
  "react",
@@ -23,6 +23,14 @@
23
23
  "main": "./dist/index.js",
24
24
  "module": "./dist/index.mjs",
25
25
  "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ "./package.json": "./package.json",
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.mjs",
31
+ "require": "./dist/index.js"
32
+ }
33
+ },
26
34
  "scripts": {
27
35
  "build": "tsup src/index.ts --format esm,cjs --dts",
28
36
  "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
@@ -32,18 +40,18 @@
32
40
  "publish:canary": "yarn npm publish --access public --tag canary"
33
41
  },
34
42
  "dependencies": {
35
- "@mui/lab": "^5.0.0-alpha.147"
43
+ "@mui/lab": "6.0.0-beta.12"
36
44
  },
37
45
  "devDependencies": {
38
- "@availity/mui-divider": "^0.4.0",
39
- "@mui/material": "^5.15.15",
46
+ "@availity/mui-divider": "^1.0.0-alpha.0",
47
+ "@mui/material": "^6.4.5",
40
48
  "react": "18.2.0",
41
49
  "react-dom": "18.2.0",
42
- "tsup": "^8.0.2",
50
+ "tsup": "^8.3.6",
43
51
  "typescript": "^5.4.5"
44
52
  },
45
53
  "peerDependencies": {
46
- "@mui/material": "^5.11.9",
54
+ "@mui/material": "^6.4.5",
47
55
  "react": ">=16.3.0"
48
56
  },
49
57
  "publishConfig": {
File without changes