asma-core-ui 1.0.161 → 1.0.162

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.
@@ -2,4 +2,5 @@
2
2
  import { type ChipProps } from '@mui/material';
3
3
  export declare const StyledChip: React.FC<ChipProps & {
4
4
  dataTest: string;
5
+ readOnly?: boolean;
5
6
  }>;
@@ -0,0 +1,8 @@
1
+ import type { ComponentProps, FC } from 'react';
2
+ import { StyledChip } from '../chip';
3
+ import type { CheckboxProps, RadioProps } from '@mui/material';
4
+ export interface StyledInteractiveChipProps extends ComponentProps<typeof StyledChip> {
5
+ type?: 'checkbox' | 'radio';
6
+ checked?: (CheckboxProps | RadioProps)['checked'];
7
+ }
8
+ export declare const StyledInteractiveChip: FC<StyledInteractiveChipProps>;
@@ -0,0 +1 @@
1
+ export * from './StyledInteractiveChip';
@@ -1,6 +1,7 @@
1
1
  export * from './helpers';
2
2
  export * from './components/data-display/badge';
3
3
  export * from './components/data-display/chip';
4
+ export * from './components/data-display/interactive-chip';
4
5
  export * from './components/data-display/tooltip';
5
6
  export * from './components/icons';
6
7
  export * from './components/data-display/typography';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.0.161",
6
+ "version": "1.0.162",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",