asma-core-ui 2.6.9 → 2.7.0

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.
@@ -0,0 +1,2 @@
1
+ import { type TypographyProps } from '@mui/material';
2
+ export declare const StyledTypography: (props: TypographyProps) => JSX.Element;
@@ -1,7 +1,8 @@
1
+ /// <reference types="react" />
1
2
  import type { StoryObj } from '@storybook/react';
2
3
  declare const meta: {
3
4
  title: string;
4
- component: import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material").TypographyTypeMap<{}, "span">>;
5
+ component: (props: import("@mui/material").TypographyProps) => JSX.Element;
5
6
  tags: string[];
6
7
  argTypes: {};
7
8
  };
@@ -0,0 +1 @@
1
+ export * from './StyledTypography';
@@ -2,10 +2,10 @@ import { type ButtonProps } from '@mui/material';
2
2
  /**
3
3
  * Custom props:
4
4
  *
5
- * @componentref
6
- * use componentref to provide ref attribute on wrapper component.
5
+ * @reflink
6
+ * use reflink to provide ref attribute on wrapper component.
7
7
  *
8
8
  */
9
9
  export declare const StyledButton: (props: ButtonProps & {
10
- componentref?: React.RefObject<HTMLButtonElement> | null | undefined;
10
+ reflink?: React.RefObject<HTMLButtonElement> | null | undefined;
11
11
  }) => JSX.Element;
@@ -3,10 +3,10 @@ import { type SelectProps } from '@mui/material';
3
3
  /**
4
4
  * Custom props:
5
5
  *
6
- * @componentref
7
- * use componentref to provide ref attribute on wrapper component.
6
+ * @reflink
7
+ * use reflink to provide ref attribute on wrapper component.
8
8
  *
9
9
  */
10
10
  export declare const StyledSelect: (props: SelectProps<unknown> & {
11
- componentref?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
11
+ reflink?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
12
12
  }) => JSX.Element;
@@ -5,7 +5,7 @@ import type { SelectProps } from '@mui/material';
5
5
  declare const meta: {
6
6
  title: string;
7
7
  component: (props: SelectProps<unknown> & {
8
- componentref?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
8
+ reflink?: import("react").RefObject<unknown> | ((instance: unknown) => void) | null | undefined;
9
9
  }) => JSX.Element;
10
10
  tags: string[];
11
11
  argTypes: {
@@ -5,6 +5,7 @@ export * from './interfaces';
5
5
  export * from './components/data-display/badge';
6
6
  export * from './components/data-display/tooltip';
7
7
  export * from './components/data-display/icons';
8
+ export * from './components/data-display/typography';
8
9
  export * from './components/data-grid';
9
10
  export * from './components/feedback/dialog';
10
11
  export * from './components/feedback/alert';
@@ -23,3 +24,4 @@ export * from './components/miscellaneous/StyledFormLabel';
23
24
  export * from './components/miscellaneous/StyledInputLabel';
24
25
  export * from './components/miscellaneous/StyledStack';
25
26
  export * from './components/miscellaneous/StyledFormGroup';
27
+ export * from './components/surfaces/accordion';
@@ -1,3 +1,3 @@
1
1
  export * from './ThemeProvider';
2
- export { createTheme } from '@mui/material/styles';
2
+ export { createTheme, StyledEngineProvider } from '@mui/material/styles';
3
3
  export { enqueueSnackbar, closeSnackbar, useSnackbar } from 'notistack';
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "2.6.9",
6
+ "version": "2.7.0",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",