@availity/mui-spaces 0.3.4 → 0.3.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 +7 -0
- package/dist/index.d.mts +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/index.js +85 -432
- package/dist/index.mjs +73 -424
- package/package.json +12 -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.3.6](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.5...@availity/mui-spaces@0.3.6) (2024-07-29)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-list` updated to version `0.3.5`
|
|
10
|
+
## [0.3.5](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.4...@availity/mui-spaces@0.3.5) (2024-07-25)
|
|
11
|
+
|
|
5
12
|
## [0.3.4](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.3...@availity/mui-spaces@0.3.4) (2024-07-25)
|
|
6
13
|
|
|
7
14
|
## [0.3.3](https://github.com/Availity/element/compare/@availity/mui-spaces@0.3.2...@availity/mui-spaces@0.3.3) (2024-07-22)
|
package/dist/index.d.mts
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ElementType } from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { StatusChipProps } from '@availity/mui-chip';
|
|
4
4
|
import { SvgIconProps } from '@mui/material';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
type StatusChipProps = {
|
|
8
|
-
/** The color of the component.
|
|
9
|
-
* @default default */
|
|
10
|
-
color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning';
|
|
11
|
-
} & Omit<ChipProps, 'avatar' | 'children' | 'color' | 'variant' | 'skipFocusWhenDisabled' | 'disabled' | 'size' | 'icon' | 'clickable' | 'deleteIcon' | 'onDelete'>;
|
|
12
|
-
|
|
13
7
|
type SpacesLinkVariants = 'card' | 'list' | 'default' | undefined;
|
|
14
8
|
type SpacesLinkWithSpace = {
|
|
15
9
|
/** If no spaceId is provided, the first space in the spaces array is used.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ElementType } from 'react';
|
|
3
|
-
import {
|
|
3
|
+
import { StatusChipProps } from '@availity/mui-chip';
|
|
4
4
|
import { SvgIconProps } from '@mui/material';
|
|
5
5
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
6
6
|
|
|
7
|
-
type StatusChipProps = {
|
|
8
|
-
/** The color of the component.
|
|
9
|
-
* @default default */
|
|
10
|
-
color?: 'default' | 'primary' | 'secondary' | 'error' | 'info' | 'success' | 'warning';
|
|
11
|
-
} & Omit<ChipProps, 'avatar' | 'children' | 'color' | 'variant' | 'skipFocusWhenDisabled' | 'disabled' | 'size' | 'icon' | 'clickable' | 'deleteIcon' | 'onDelete'>;
|
|
12
|
-
|
|
13
7
|
type SpacesLinkVariants = 'card' | 'list' | 'default' | undefined;
|
|
14
8
|
type SpacesLinkWithSpace = {
|
|
15
9
|
/** If no spaceId is provided, the first space in the spaces array is used.
|