@availity/mui-spaces 0.7.4 → 0.7.5
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 +7 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/lib/SpacesLink/SpacesLink.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.7.5](https://github.com/Availity/element/compare/@availity/mui-spaces@0.7.4...@availity/mui-spaces@0.7.5) (2025-02-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **mui-spaces:** make SpaceLink header should match CardHeader size ([1b7a975](https://github.com/Availity/element/commit/1b7a97590a3153a0219a1eed53ca9de252dd0fd5))
|
|
11
|
+
|
|
5
12
|
## [0.7.4](https://github.com/Availity/element/compare/@availity/mui-spaces@0.7.3...@availity/mui-spaces@0.7.4) (2025-02-20)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -1135,7 +1135,7 @@ var SpacesLink = (_a) => {
|
|
|
1135
1135
|
role: showUrl ? "link" : role,
|
|
1136
1136
|
"aria-label": linkSpace == null ? void 0 : linkSpace.name,
|
|
1137
1137
|
"aria-describedby": showNew && (linkSpace == null ? void 0 : linkSpace.isNew) ? `${idPrefix}app-new-badge-${linkSpace == null ? void 0 : linkSpace.configurationId}` : void 0,
|
|
1138
|
-
variant:
|
|
1138
|
+
variant: "h5",
|
|
1139
1139
|
title: showName ? linkSpace == null ? void 0 : linkSpace.name : void 0,
|
|
1140
1140
|
children: showName ? linkSpace == null ? void 0 : linkSpace.name : void 0
|
|
1141
1141
|
})
|
package/dist/index.mjs
CHANGED
|
@@ -1093,7 +1093,7 @@ var SpacesLink = (_a) => {
|
|
|
1093
1093
|
role: showUrl ? "link" : role,
|
|
1094
1094
|
"aria-label": linkSpace == null ? void 0 : linkSpace.name,
|
|
1095
1095
|
"aria-describedby": showNew && (linkSpace == null ? void 0 : linkSpace.isNew) ? `${idPrefix}app-new-badge-${linkSpace == null ? void 0 : linkSpace.configurationId}` : void 0,
|
|
1096
|
-
variant:
|
|
1096
|
+
variant: "h5",
|
|
1097
1097
|
title: showName ? linkSpace == null ? void 0 : linkSpace.name : void 0,
|
|
1098
1098
|
children: showName ? linkSpace == null ? void 0 : linkSpace.name : void 0
|
|
1099
1099
|
})
|
package/package.json
CHANGED
|
@@ -236,7 +236,7 @@ export const SpacesLink = ({
|
|
|
236
236
|
? `${idPrefix}app-new-badge-${linkSpace?.configurationId}`
|
|
237
237
|
: undefined
|
|
238
238
|
}
|
|
239
|
-
variant=
|
|
239
|
+
variant="h5"
|
|
240
240
|
title={showName ? linkSpace?.name : undefined}
|
|
241
241
|
>
|
|
242
242
|
{showName ? linkSpace?.name : undefined}
|