@availity/mui-accordion 0.1.4 → 0.1.6
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 +13 -0
- package/dist/index.d.mts +19 -0
- package/dist/index.d.ts +5 -6
- package/dist/index.js +28 -20
- package/dist/index.mjs +24 -17
- package/jest.config.js +10 -0
- package/package.json +8 -8
- package/project.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.1.6](https://github.com/Availity/element/compare/@availity/mui-accordion@0.1.5...@availity/mui-accordion@0.1.6) (2024-06-14)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-typography` updated to version `0.1.5`
|
|
10
|
+
## [0.1.5](https://github.com/Availity/element/compare/@availity/mui-accordion@0.1.4...@availity/mui-accordion@0.1.5) (2024-04-19)
|
|
11
|
+
|
|
12
|
+
### Dependency Updates
|
|
13
|
+
|
|
14
|
+
* `mui-button` updated to version `0.1.4`
|
|
15
|
+
* `mui-layout` updated to version `0.1.4`
|
|
16
|
+
* `mui-typography` updated to version `0.1.4`
|
|
17
|
+
* `mui-icon` updated to version `0.1.4`
|
|
5
18
|
## [0.1.4](https://github.com/Availity/element/compare/@availity/mui-accordion@0.1.3...@availity/mui-accordion@0.1.4) (2024-04-15)
|
|
6
19
|
|
|
7
20
|
### Dependency Updates
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
2
|
+
import { AccordionProps as AccordionProps$1 } from '@mui/material/Accordion';
|
|
3
|
+
import { AccordionActionsProps as AccordionActionsProps$1 } from '@mui/material/AccordionActions';
|
|
4
|
+
import { AccordionDetailsProps as AccordionDetailsProps$1 } from '@mui/material/AccordionDetails';
|
|
5
|
+
import { AccordionSummaryProps as AccordionSummaryProps$1 } from '@mui/material/AccordionSummary';
|
|
6
|
+
|
|
7
|
+
type AccordionProps = Omit<AccordionProps$1, 'component' | 'TransitionComponent' | 'TransitionProps'>;
|
|
8
|
+
declare const Accordion: react.ForwardRefExoticComponent<Omit<AccordionProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
9
|
+
|
|
10
|
+
type AccordionActionsProps = AccordionActionsProps$1;
|
|
11
|
+
declare const AccordionActions: react.ForwardRefExoticComponent<Omit<AccordionActionsProps$1, "ref"> & react.RefAttributes<unknown>>;
|
|
12
|
+
|
|
13
|
+
type AccordionDetailsProps = AccordionDetailsProps$1;
|
|
14
|
+
declare const AccordionDetails: react.ForwardRefExoticComponent<Omit<AccordionDetailsProps$1, "ref"> & react.RefAttributes<unknown>>;
|
|
15
|
+
|
|
16
|
+
type AccordionSummaryProps = Omit<AccordionSummaryProps$1, 'centerRipple' | 'component' | 'disableRipple' | 'disableTouchRipple' | 'expandIcon' | 'focusRipple' | 'focusVisibleClassname' | 'onFocusVisible' | 'TouchRippleProps' | 'touchRippleRef'>;
|
|
17
|
+
declare const AccordionSummary: react.ForwardRefExoticComponent<Omit<AccordionSummaryProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
18
|
+
|
|
19
|
+
export { Accordion, AccordionActions, type AccordionActionsProps, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,20 +1,19 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
3
2
|
import { AccordionProps as AccordionProps$1 } from '@mui/material/Accordion';
|
|
4
3
|
import { AccordionActionsProps as AccordionActionsProps$1 } from '@mui/material/AccordionActions';
|
|
5
4
|
import { AccordionDetailsProps as AccordionDetailsProps$1 } from '@mui/material/AccordionDetails';
|
|
6
5
|
import { AccordionSummaryProps as AccordionSummaryProps$1 } from '@mui/material/AccordionSummary';
|
|
7
6
|
|
|
8
7
|
type AccordionProps = Omit<AccordionProps$1, 'component' | 'TransitionComponent' | 'TransitionProps'>;
|
|
9
|
-
declare const Accordion: react.ForwardRefExoticComponent<
|
|
8
|
+
declare const Accordion: react.ForwardRefExoticComponent<Omit<AccordionProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
10
9
|
|
|
11
10
|
type AccordionActionsProps = AccordionActionsProps$1;
|
|
12
|
-
declare const AccordionActions: react.ForwardRefExoticComponent<
|
|
11
|
+
declare const AccordionActions: react.ForwardRefExoticComponent<Omit<AccordionActionsProps$1, "ref"> & react.RefAttributes<unknown>>;
|
|
13
12
|
|
|
14
13
|
type AccordionDetailsProps = AccordionDetailsProps$1;
|
|
15
|
-
declare const AccordionDetails: react.ForwardRefExoticComponent<
|
|
14
|
+
declare const AccordionDetails: react.ForwardRefExoticComponent<Omit<AccordionDetailsProps$1, "ref"> & react.RefAttributes<unknown>>;
|
|
16
15
|
|
|
17
16
|
type AccordionSummaryProps = Omit<AccordionSummaryProps$1, 'centerRipple' | 'component' | 'disableRipple' | 'disableTouchRipple' | 'expandIcon' | 'focusRipple' | 'focusVisibleClassname' | 'onFocusVisible' | 'TouchRippleProps' | 'touchRippleRef'>;
|
|
18
|
-
declare const AccordionSummary: react.ForwardRefExoticComponent<
|
|
17
|
+
declare const AccordionSummary: react.ForwardRefExoticComponent<Omit<AccordionSummaryProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
19
18
|
|
|
20
|
-
export { Accordion, AccordionActions, AccordionActionsProps, AccordionDetails, AccordionDetailsProps, AccordionProps, AccordionSummary, AccordionSummaryProps };
|
|
19
|
+
export { Accordion, AccordionActions, type AccordionActionsProps, AccordionDetails, type AccordionDetailsProps, type AccordionProps, AccordionSummary, type AccordionSummaryProps };
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __create = Object.create;
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
|
+
var __defProps = Object.defineProperties;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
5
7
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
8
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
6
9
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
10
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
11
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
12
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
13
|
+
var __spreadValues = (a, b) => {
|
|
14
|
+
for (var prop in b || (b = {}))
|
|
15
|
+
if (__hasOwnProp.call(b, prop))
|
|
16
|
+
__defNormalProp(a, prop, b[prop]);
|
|
17
|
+
if (__getOwnPropSymbols)
|
|
18
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
19
|
+
if (__propIsEnum.call(b, prop))
|
|
20
|
+
__defNormalProp(a, prop, b[prop]);
|
|
21
|
+
}
|
|
22
|
+
return a;
|
|
23
|
+
};
|
|
24
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
8
25
|
var __export = (target, all) => {
|
|
9
26
|
for (var name in all)
|
|
10
27
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
@@ -18,6 +35,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
35
|
return to;
|
|
19
36
|
};
|
|
20
37
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
38
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
39
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
40
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
41
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
21
42
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
22
43
|
mod
|
|
23
44
|
));
|
|
@@ -37,39 +58,26 @@ module.exports = __toCommonJS(src_exports);
|
|
|
37
58
|
var import_Accordion = __toESM(require("@mui/material/Accordion"));
|
|
38
59
|
var import_react = require("react");
|
|
39
60
|
var import_jsx_runtime = require("react/jsx-runtime");
|
|
40
|
-
var Accordion = (0, import_react.forwardRef)((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Accordion.default, {
|
|
41
|
-
...props,
|
|
42
|
-
ref
|
|
43
|
-
}));
|
|
61
|
+
var Accordion = (0, import_react.forwardRef)((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_Accordion.default, __spreadProps(__spreadValues({}, props), { ref })));
|
|
44
62
|
|
|
45
63
|
// src/lib/AccordionActions.tsx
|
|
46
64
|
var import_AccordionActions = __toESM(require("@mui/material/AccordionActions"));
|
|
47
65
|
var import_react2 = require("react");
|
|
48
|
-
var
|
|
49
|
-
var AccordionActions = (0, import_react2.forwardRef)((props, ref) => /* @__PURE__ */ (0,
|
|
50
|
-
...props,
|
|
51
|
-
ref
|
|
52
|
-
}));
|
|
66
|
+
var import_jsx_runtime2 = require("react/jsx-runtime");
|
|
67
|
+
var AccordionActions = (0, import_react2.forwardRef)((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime2.jsx)(import_AccordionActions.default, __spreadProps(__spreadValues({}, props), { ref })));
|
|
53
68
|
|
|
54
69
|
// src/lib/AccordionDetails.tsx
|
|
55
70
|
var import_AccordionDetails = __toESM(require("@mui/material/AccordionDetails"));
|
|
56
71
|
var import_react3 = require("react");
|
|
57
|
-
var
|
|
58
|
-
var AccordionDetails = (0, import_react3.forwardRef)((props, ref) => /* @__PURE__ */ (0,
|
|
59
|
-
...props,
|
|
60
|
-
ref
|
|
61
|
-
}));
|
|
72
|
+
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
73
|
+
var AccordionDetails = (0, import_react3.forwardRef)((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(import_AccordionDetails.default, __spreadProps(__spreadValues({}, props), { ref })));
|
|
62
74
|
|
|
63
75
|
// src/lib/AccordionSummary.tsx
|
|
64
76
|
var import_AccordionSummary = __toESM(require("@mui/material/AccordionSummary"));
|
|
65
77
|
var import_mui_icon = require("@availity/mui-icon");
|
|
66
78
|
var import_react4 = require("react");
|
|
67
|
-
var
|
|
68
|
-
var AccordionSummary = (0, import_react4.forwardRef)((props, ref) => /* @__PURE__ */ (0,
|
|
69
|
-
...props,
|
|
70
|
-
expandIcon: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_mui_icon.TriangleExpandIcon, {}),
|
|
71
|
-
ref
|
|
72
|
-
}));
|
|
79
|
+
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
80
|
+
var AccordionSummary = (0, import_react4.forwardRef)((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_AccordionSummary.default, __spreadProps(__spreadValues({}, props), { expandIcon: /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(import_mui_icon.TriangleExpandIcon, {}), ref })));
|
|
73
81
|
// Annotate the CommonJS export names for ESM import in node:
|
|
74
82
|
0 && (module.exports = {
|
|
75
83
|
Accordion,
|
package/dist/index.mjs
CHANGED
|
@@ -1,40 +1,47 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __defProps = Object.defineProperties;
|
|
3
|
+
var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
|
|
4
|
+
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
+
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
7
|
+
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
8
|
+
var __spreadValues = (a, b) => {
|
|
9
|
+
for (var prop in b || (b = {}))
|
|
10
|
+
if (__hasOwnProp.call(b, prop))
|
|
11
|
+
__defNormalProp(a, prop, b[prop]);
|
|
12
|
+
if (__getOwnPropSymbols)
|
|
13
|
+
for (var prop of __getOwnPropSymbols(b)) {
|
|
14
|
+
if (__propIsEnum.call(b, prop))
|
|
15
|
+
__defNormalProp(a, prop, b[prop]);
|
|
16
|
+
}
|
|
17
|
+
return a;
|
|
18
|
+
};
|
|
19
|
+
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
|
+
|
|
1
21
|
// src/lib/Accordion.tsx
|
|
2
22
|
import MuiAccordion from "@mui/material/Accordion";
|
|
3
23
|
import { forwardRef } from "react";
|
|
4
24
|
import { jsx } from "react/jsx-runtime";
|
|
5
|
-
var Accordion = forwardRef((props, ref) => /* @__PURE__ */ jsx(MuiAccordion, {
|
|
6
|
-
...props,
|
|
7
|
-
ref
|
|
8
|
-
}));
|
|
25
|
+
var Accordion = forwardRef((props, ref) => /* @__PURE__ */ jsx(MuiAccordion, __spreadProps(__spreadValues({}, props), { ref })));
|
|
9
26
|
|
|
10
27
|
// src/lib/AccordionActions.tsx
|
|
11
28
|
import MuiAccordionActions from "@mui/material/AccordionActions";
|
|
12
29
|
import { forwardRef as forwardRef2 } from "react";
|
|
13
30
|
import { jsx as jsx2 } from "react/jsx-runtime";
|
|
14
|
-
var AccordionActions = forwardRef2((props, ref) => /* @__PURE__ */ jsx2(MuiAccordionActions, {
|
|
15
|
-
...props,
|
|
16
|
-
ref
|
|
17
|
-
}));
|
|
31
|
+
var AccordionActions = forwardRef2((props, ref) => /* @__PURE__ */ jsx2(MuiAccordionActions, __spreadProps(__spreadValues({}, props), { ref })));
|
|
18
32
|
|
|
19
33
|
// src/lib/AccordionDetails.tsx
|
|
20
34
|
import MuiAccordionDetails from "@mui/material/AccordionDetails";
|
|
21
35
|
import { forwardRef as forwardRef3 } from "react";
|
|
22
36
|
import { jsx as jsx3 } from "react/jsx-runtime";
|
|
23
|
-
var AccordionDetails = forwardRef3((props, ref) => /* @__PURE__ */ jsx3(MuiAccordionDetails, {
|
|
24
|
-
...props,
|
|
25
|
-
ref
|
|
26
|
-
}));
|
|
37
|
+
var AccordionDetails = forwardRef3((props, ref) => /* @__PURE__ */ jsx3(MuiAccordionDetails, __spreadProps(__spreadValues({}, props), { ref })));
|
|
27
38
|
|
|
28
39
|
// src/lib/AccordionSummary.tsx
|
|
29
40
|
import MuiAccordionSummary from "@mui/material/AccordionSummary";
|
|
30
41
|
import { TriangleExpandIcon } from "@availity/mui-icon";
|
|
31
42
|
import { forwardRef as forwardRef4 } from "react";
|
|
32
43
|
import { jsx as jsx4 } from "react/jsx-runtime";
|
|
33
|
-
var AccordionSummary = forwardRef4((props, ref) => /* @__PURE__ */ jsx4(MuiAccordionSummary, {
|
|
34
|
-
...props,
|
|
35
|
-
expandIcon: /* @__PURE__ */ jsx4(TriangleExpandIcon, {}),
|
|
36
|
-
ref
|
|
37
|
-
}));
|
|
44
|
+
var AccordionSummary = forwardRef4((props, ref) => /* @__PURE__ */ jsx4(MuiAccordionSummary, __spreadProps(__spreadValues({}, props), { expandIcon: /* @__PURE__ */ jsx4(TriangleExpandIcon, {}), ref })));
|
|
38
45
|
export {
|
|
39
46
|
Accordion,
|
|
40
47
|
AccordionActions,
|
package/jest.config.js
CHANGED
|
@@ -4,4 +4,14 @@ module.exports = {
|
|
|
4
4
|
...global,
|
|
5
5
|
displayName: 'accordion',
|
|
6
6
|
coverageDirectory: '../../coverage/accordion',
|
|
7
|
+
/* TODO: Update to latest Jest snapshotFormat
|
|
8
|
+
* By default Nx has kept the older style of Jest Snapshot formats
|
|
9
|
+
* to prevent breaking of any existing tests with snapshots.
|
|
10
|
+
* It's recommend you update to the latest format.
|
|
11
|
+
* You can do this by removing snapshotFormat property
|
|
12
|
+
* and running tests with --update-snapshot flag.
|
|
13
|
+
* Example: From within the project directory, run "nx test --update-snapshot"
|
|
14
|
+
* More info: https://jestjs.io/docs/upgrading-to-jest29#snapshot-format
|
|
15
|
+
*/
|
|
16
|
+
snapshotFormat: { escapeString: true, printBasicPrototype: true },
|
|
7
17
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-accordion",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Availity MUI Accordion Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"publish:canary": "yarn npm publish --access public --tag canary"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@availity/mui-button": "^0.6.
|
|
36
|
-
"@availity/mui-layout": "^0.1.
|
|
37
|
-
"@availity/mui-typography": "^0.
|
|
38
|
-
"@mui/material": "^5.
|
|
35
|
+
"@availity/mui-button": "^0.6.7",
|
|
36
|
+
"@availity/mui-layout": "^0.1.6",
|
|
37
|
+
"@availity/mui-typography": "^0.2.0",
|
|
38
|
+
"@mui/material": "^5.15.15",
|
|
39
39
|
"react": "18.2.0",
|
|
40
40
|
"react-dom": "18.2.0",
|
|
41
|
-
"tsup": "^
|
|
42
|
-
"typescript": "^4.
|
|
41
|
+
"tsup": "^8.0.2",
|
|
42
|
+
"typescript": "^5.4.5"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@availity/mui-icon": "^0.8.
|
|
45
|
+
"@availity/mui-icon": "^0.8.2",
|
|
46
46
|
"@mui/material": "^5.11.9",
|
|
47
47
|
"react": ">=16.3.0"
|
|
48
48
|
},
|
package/project.json
CHANGED
|
@@ -6,10 +6,9 @@
|
|
|
6
6
|
"tags": [],
|
|
7
7
|
"targets": {
|
|
8
8
|
"lint": {
|
|
9
|
-
"executor": "@
|
|
9
|
+
"executor": "@nx/eslint:lint",
|
|
10
10
|
"options": {
|
|
11
11
|
"eslintConfig": ".eslintrc.json",
|
|
12
|
-
"lintFilePatterns": ["packages/accordion/**/*.{js,ts}"],
|
|
13
12
|
"silent": false,
|
|
14
13
|
"fix": false,
|
|
15
14
|
"cache": true,
|
|
@@ -22,20 +21,20 @@
|
|
|
22
21
|
}
|
|
23
22
|
},
|
|
24
23
|
"test": {
|
|
25
|
-
"executor": "@
|
|
26
|
-
"outputs": ["coverage/accordion"],
|
|
24
|
+
"executor": "@nx/jest:jest",
|
|
25
|
+
"outputs": ["{workspaceRoot}/coverage/accordion"],
|
|
27
26
|
"options": {
|
|
28
|
-
"jestConfig": "packages/accordion/jest.config.js"
|
|
29
|
-
"passWithNoTests": true
|
|
27
|
+
"jestConfig": "packages/accordion/jest.config.js"
|
|
30
28
|
}
|
|
31
29
|
},
|
|
32
30
|
"version": {
|
|
33
31
|
"executor": "@jscutlery/semver:version",
|
|
34
32
|
"options": {
|
|
35
33
|
"preset": "conventional",
|
|
36
|
-
"commitMessageFormat": "chore(
|
|
37
|
-
"tagPrefix": "@availity
|
|
38
|
-
"trackDeps": true
|
|
34
|
+
"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
|
|
35
|
+
"tagPrefix": "@availity/{projectName}@",
|
|
36
|
+
"trackDeps": true,
|
|
37
|
+
"skipCommitTypes": ["docs"]
|
|
39
38
|
}
|
|
40
39
|
}
|
|
41
40
|
}
|