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.
- package/dist/asma-core-ui.es.js +7 -6
- package/dist/src/components/icons/check-outline-icon/CheckOutlineIcon.d.ts +2 -3
- package/dist/src/components/icons/edit-square-icon/EditSquareIcon.d.ts +2 -0
- package/dist/src/components/icons/edit-square-icon/index.d.ts +1 -0
- package/dist/src/components/icons/index.d.ts +1 -0
- package/dist/src/components/navigation/link/StyledLink.d.ts +2 -2
- package/dist/src/index.d.ts +3 -5
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/dist/src/components/layout/container/StyledContainer.d.ts +0 -3
- package/dist/src/components/layout/container/index.d.ts +0 -1
- package/dist/src/components/miscellaneous/StyledStack.d.ts +0 -2
- /package/dist/src/components/{surfaces → utils}/accordion/StyledAccordion.d.ts +0 -0
- /package/dist/src/components/{surfaces → utils}/accordion/StyledAccordionDetails.d.ts +0 -0
- /package/dist/src/components/{surfaces → utils}/accordion/StyledAccordionSummary.d.ts +0 -0
- /package/dist/src/components/{surfaces → utils}/accordion/index.d.ts +0 -0
- /package/dist/src/components/{filter-menu → utils/filter-menu}/StyledFilterMenu.d.ts +0 -0
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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 @@
|
|
|
1
|
+
export * from './EditSquareIcon';
|
|
@@ -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
|
|
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
|
package/dist/src/index.d.ts
CHANGED
|
@@ -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/
|
|
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';
|