asma-core-ui 3.0.8 → 3.0.10

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.
@@ -1,3 +1,2 @@
1
- /// <reference types="react" />
2
- import type { IIcon } from '../Icons.types';
3
- export declare const CheckOutlineIcon: React.FC<IIcon>;
1
+ import type { SVGProps } from 'react';
2
+ export declare function CheckOutlineIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1,2 @@
1
+ import type { SVGProps } from 'react';
2
+ export declare function EditSquareIcon(props: SVGProps<SVGSVGElement>): JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './EditSquareIcon';
@@ -71,3 +71,4 @@ export * from './minimize-icon';
71
71
  export * from './keyboard-capslock-icon';
72
72
  export * from './message-reply-icon';
73
73
  export * from './badge-icon';
74
+ export * from './edit-square-icon';
@@ -2,16 +2,16 @@ import React, { type AnchorHTMLAttributes, type ReactNode } from 'react';
2
2
  export type StyledLinkProps = AnchorHTMLAttributes<HTMLAnchorElement> & {
3
3
  disabled?: boolean;
4
4
  size?: 'small' | 'large';
5
- title: ReactNode;
6
5
  children?: never;
7
6
  reflink?: React.Ref<HTMLAnchorElement>;
8
7
  dataTest?: string;
8
+ content: ReactNode;
9
9
  };
10
10
  /**
11
11
  * Developer: bularga.alexandru@carasent.com
12
12
  *
13
13
  * Custom props:
14
- * @param title - title of the link
14
+ * @param content - content of the link
15
15
  * @param disabled = disabled
16
16
  * @param size - 'large' | 'small'
17
17
  * @param refLink - ref to component
@@ -25,18 +25,16 @@ export * from './components/miscellaneous/StyledFormControlLabel';
25
25
  export * from './components/miscellaneous/StyledFormHelperText';
26
26
  export * from './components/miscellaneous/StyledFormLabel';
27
27
  export * from './components/miscellaneous/StyledInputLabel';
28
- export * from './components/miscellaneous/StyledStack';
29
28
  export * from './components/miscellaneous/StyledFormGroup';
30
29
  export * from './components/navigation/drawer';
31
30
  export * from './components/navigation/menu';
32
31
  export * from './components/navigation/link';
33
32
  export * from './components/navigation/tabs';
34
- export * from './components/layout/container';
35
- export * from './components/surfaces/accordion';
33
+ export * from './components/utils/accordion';
36
34
  export * from './components/table';
37
35
  export * from './components/utils/popover';
38
36
  export * from './components/custom/widget/widget-title/StyledWidgetTitle';
39
37
  export * from './components/custom/module/module-title/StyledModuleTitle';
40
- export * from './components/filter-menu/StyledFilterMenu';
38
+ export * from './components/utils/filter-menu/StyledFilterMenu';
41
39
  export * from './components/feedback/minimizable-dialog/MinimizableDialog';
42
- export { Fade, Paper, ClickAwayListener, Popper, Avatar, Skeleton } from '@mui/material';
40
+ export { Fade, Paper, ClickAwayListener, Popper, Avatar, Skeleton, Container, Stack } from '@mui/material';