@nethru/ui 1.0.43 → 1.0.45
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/AccordionSummary.js +14 -4
- package/dist/Button.js +36 -0
- package/dist/Checkbox.js +12 -1
- package/dist/TextField.js +1 -1
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/AccordionSummary.js
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import { Stack, Typography } from "@mui/material";
|
|
1
2
|
import MuiAccordionSummary from "@mui/material/AccordionSummary";
|
|
2
3
|
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
|
|
3
|
-
import { Typography } from "@mui/material";
|
|
4
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
5
|
-
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
6
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
6
|
+
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
7
7
|
export default function AccordionSummary({
|
|
8
8
|
title,
|
|
9
|
+
desc,
|
|
9
10
|
children,
|
|
10
11
|
...props
|
|
11
12
|
}) {
|
|
@@ -13,8 +14,17 @@ export default function AccordionSummary({
|
|
|
13
14
|
children: [title && /*#__PURE__*/_jsx(MuiAccordionSummary, {
|
|
14
15
|
expandIcon: /*#__PURE__*/_jsx(ExpandMoreIcon, {}),
|
|
15
16
|
...props,
|
|
16
|
-
children: /*#__PURE__*/
|
|
17
|
-
|
|
17
|
+
children: /*#__PURE__*/_jsxs(Stack, {
|
|
18
|
+
direction: "row",
|
|
19
|
+
alignItems: "flex-end",
|
|
20
|
+
gap: 1,
|
|
21
|
+
children: [/*#__PURE__*/_jsx(Typography, {
|
|
22
|
+
children: title
|
|
23
|
+
}), desc && /*#__PURE__*/_jsx(Typography, {
|
|
24
|
+
variant: "caption",
|
|
25
|
+
color: "#aaa",
|
|
26
|
+
children: desc
|
|
27
|
+
})]
|
|
18
28
|
})
|
|
19
29
|
}), !title && /*#__PURE__*/_jsx(MuiAccordionSummary, {
|
|
20
30
|
expandIcon: /*#__PURE__*/_jsx(ExpandMoreIcon, {}),
|
package/dist/Button.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { useMemo } from "react";
|
|
2
|
+
import MuiButton from "@mui/material/Button";
|
|
3
|
+
import { Box } from "@mui/material";
|
|
4
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
5
|
+
export default function Button({
|
|
6
|
+
label,
|
|
7
|
+
icon,
|
|
8
|
+
iconPlacement = 'start',
|
|
9
|
+
iconSize = '20px',
|
|
10
|
+
iconProps = {},
|
|
11
|
+
...props
|
|
12
|
+
}) {
|
|
13
|
+
const iconComponent = useMemo(() => {
|
|
14
|
+
return icon ? /*#__PURE__*/_jsx(Box, {
|
|
15
|
+
component: icon,
|
|
16
|
+
sx: {
|
|
17
|
+
'&.MuiSvgIcon-root': {
|
|
18
|
+
fontSize: `${iconSize}!important`
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
...iconProps
|
|
22
|
+
}) : null;
|
|
23
|
+
}, [icon, iconSize, iconProps]);
|
|
24
|
+
const startIcon = useMemo(() => {
|
|
25
|
+
return iconPlacement === 'start' ? iconComponent : null;
|
|
26
|
+
}, [iconComponent, iconPlacement]);
|
|
27
|
+
const endIcon = useMemo(() => {
|
|
28
|
+
return iconPlacement === 'end' ? iconComponent : null;
|
|
29
|
+
}, [iconComponent, iconPlacement]);
|
|
30
|
+
return /*#__PURE__*/_jsx(MuiButton, {
|
|
31
|
+
startIcon: startIcon,
|
|
32
|
+
endIcon: endIcon,
|
|
33
|
+
...props,
|
|
34
|
+
children: label
|
|
35
|
+
});
|
|
36
|
+
}
|
package/dist/Checkbox.js
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
|
+
import { useMemo } from "react";
|
|
1
2
|
import MuiCheckbox from "@mui/material/Checkbox";
|
|
2
3
|
import { FormControlLabel } from "@mui/material";
|
|
3
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
4
5
|
export default function Checkbox({
|
|
5
6
|
label,
|
|
7
|
+
size = 'medium',
|
|
6
8
|
sx,
|
|
7
9
|
...props
|
|
8
10
|
}) {
|
|
11
|
+
const styles = useMemo(() => ({
|
|
12
|
+
'& .MuiFormControlLabel-label': {
|
|
13
|
+
fontSize: size === 'small' ? '14px' : '16px'
|
|
14
|
+
}
|
|
15
|
+
}), [size]);
|
|
9
16
|
return /*#__PURE__*/_jsx(FormControlLabel, {
|
|
10
17
|
label: label,
|
|
11
18
|
control: /*#__PURE__*/_jsx(MuiCheckbox, {
|
|
19
|
+
size: size,
|
|
12
20
|
...props
|
|
13
21
|
}),
|
|
14
|
-
sx:
|
|
22
|
+
sx: {
|
|
23
|
+
...styles,
|
|
24
|
+
...sx
|
|
25
|
+
}
|
|
15
26
|
});
|
|
16
27
|
}
|
package/dist/TextField.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import MuiTextField from "@mui/material/TextField";
|
|
2
2
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
3
3
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
4
|
-
export default function
|
|
4
|
+
export default function TextField({
|
|
5
5
|
width,
|
|
6
6
|
fontSize,
|
|
7
7
|
textAlign,
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,7 @@ export { default as AlertDialog } from "./AlertDialog";
|
|
|
5
5
|
export { default as AppBar } from "./AppBar";
|
|
6
6
|
export { default as AppendableFormList } from "./AppendableFormList";
|
|
7
7
|
export { default as AvatarDropdown } from "./AvatarDropdown";
|
|
8
|
+
export { default as Button } from "./Button";
|
|
8
9
|
export { default as Checkbox } from "./Checkbox";
|
|
9
10
|
export { default as CircularProgress } from "./CircularProgress";
|
|
10
11
|
export { default as ColumnedSection } from "./ColumnedSection";
|