@availity/mui-spaces 1.0.19 → 1.0.20
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 +11 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/src/lib/Spaces.test.tsx +0 -1
- package/src/lib/Spaces.tsx +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.0.20](https://github.com/Availity/element/compare/@availity/mui-spaces@1.0.19...@availity/mui-spaces@1.0.20) (2025-05-20)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-favorites` updated to version `1.0.19`
|
|
10
|
+
* `@availity/mock` updated to version `1.0.19`
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* **mui-spaces:** fix casing of payerIDs ([379fd35](https://github.com/Availity/element/commit/379fd3544271e3fd90ee5ee0b0920a682cb5e022))
|
|
15
|
+
|
|
5
16
|
## [1.0.19](https://github.com/Availity/element/compare/@availity/mui-spaces@1.0.18...@availity/mui-spaces@1.0.19) (2025-05-19)
|
|
6
17
|
|
|
7
18
|
|
package/dist/index.js
CHANGED
|
@@ -629,7 +629,7 @@ var Spaces = ({
|
|
|
629
629
|
}
|
|
630
630
|
}
|
|
631
631
|
const spaceIdVars = __spreadProps(__spreadValues({}, variables), { ids: [...spaceIdsToQuery.keys()] });
|
|
632
|
-
const payerIdVars = __spreadProps(__spreadValues({}, variables), {
|
|
632
|
+
const payerIdVars = __spreadProps(__spreadValues({}, variables), { payerIDs: [...payerIdsToQuery.keys()] });
|
|
633
633
|
const [
|
|
634
634
|
{ data: spacesBySpaceIds, isFetching: isLoadingBySpaceIds, isError: isErrorBySpaceIds },
|
|
635
635
|
{ data: spacesByPayerIds, isFetching: isLoadingByPayerIds, isError: isErrorByPayerIds }
|
package/dist/index.mjs
CHANGED
|
@@ -587,7 +587,7 @@ var Spaces = ({
|
|
|
587
587
|
}
|
|
588
588
|
}
|
|
589
589
|
const spaceIdVars = __spreadProps(__spreadValues({}, variables), { ids: [...spaceIdsToQuery.keys()] });
|
|
590
|
-
const payerIdVars = __spreadProps(__spreadValues({}, variables), {
|
|
590
|
+
const payerIdVars = __spreadProps(__spreadValues({}, variables), { payerIDs: [...payerIdsToQuery.keys()] });
|
|
591
591
|
const [
|
|
592
592
|
{ data: spacesBySpaceIds, isFetching: isLoadingBySpaceIds, isError: isErrorBySpaceIds },
|
|
593
593
|
{ data: spacesByPayerIds, isFetching: isLoadingByPayerIds, isError: isErrorByPayerIds }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/mui-spaces",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "Availity MUI Spaces Component - part of the @availity/element design system",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@availity/mui-chip": "^1.0.3",
|
|
46
46
|
"@availity/mui-dialog": "^1.0.14",
|
|
47
47
|
"@availity/mui-disclaimer": "^1.0.5",
|
|
48
|
-
"@availity/mui-favorites": "^1.1.
|
|
48
|
+
"@availity/mui-favorites": "^1.1.5",
|
|
49
49
|
"@availity/mui-icon": "^1.1.0",
|
|
50
50
|
"@availity/mui-layout": "^1.0.2",
|
|
51
51
|
"@availity/mui-list": "^1.0.6",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@availity/mui-chip": "^1.0.3",
|
|
67
67
|
"@availity/mui-dialog": "^1.0.14",
|
|
68
68
|
"@availity/mui-disclaimer": "^1.0.5",
|
|
69
|
-
"@availity/mui-favorites": "^1.1.
|
|
69
|
+
"@availity/mui-favorites": "^1.1.5",
|
|
70
70
|
"@availity/mui-icon": "^1.1.0",
|
|
71
71
|
"@availity/mui-layout": "^1.0.2",
|
|
72
72
|
"@availity/mui-list": "^1.0.6",
|
package/src/lib/Spaces.test.tsx
CHANGED
|
@@ -3,7 +3,6 @@ import { useState } from 'react';
|
|
|
3
3
|
import { render, waitFor, fireEvent } from '@testing-library/react';
|
|
4
4
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
5
5
|
import { Spaces, useSpaces, useSpacesContext } from '..';
|
|
6
|
-
import type { Space } from './spaces-types';
|
|
7
6
|
|
|
8
7
|
// eslint-disable-next-line @nx/enforce-module-boundaries
|
|
9
8
|
import { server } from '../../../mock/src/lib/server';
|
package/src/lib/Spaces.tsx
CHANGED
|
@@ -74,7 +74,7 @@ export const Spaces = ({
|
|
|
74
74
|
|
|
75
75
|
const spaceIdVars = { ...variables, ids: [...spaceIdsToQuery.keys()] };
|
|
76
76
|
|
|
77
|
-
const payerIdVars = { ...variables,
|
|
77
|
+
const payerIdVars = { ...variables, payerIDs: [...payerIdsToQuery.keys()] };
|
|
78
78
|
|
|
79
79
|
const [
|
|
80
80
|
{ data: spacesBySpaceIds, isFetching: isLoadingBySpaceIds, isError: isErrorBySpaceIds },
|