@nethru/ui 1.0.44 → 1.0.46
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/AppendableFormList.js +4 -3
- package/dist/TextField.js +1 -1
- 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, {}),
|
|
@@ -8,7 +8,8 @@ import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
|
8
8
|
export default function AppendableFormList({
|
|
9
9
|
forms,
|
|
10
10
|
onAppend,
|
|
11
|
-
onRemove
|
|
11
|
+
onRemove,
|
|
12
|
+
readOnly
|
|
12
13
|
}) {
|
|
13
14
|
return /*#__PURE__*/_jsxs(Stack, {
|
|
14
15
|
gap: 1,
|
|
@@ -17,7 +18,7 @@ export default function AppendableFormList({
|
|
|
17
18
|
direction: "row",
|
|
18
19
|
alignItems: "end",
|
|
19
20
|
gap: 2,
|
|
20
|
-
children: [form, /*#__PURE__*/_jsx(Tooltip, {
|
|
21
|
+
children: [form, !readOnly && /*#__PURE__*/_jsx(Tooltip, {
|
|
21
22
|
title: "\uC0AD\uC81C",
|
|
22
23
|
children: /*#__PURE__*/_jsx(IconButton, {
|
|
23
24
|
onClick: _ => onRemove(index),
|
|
@@ -38,7 +39,7 @@ export default function AppendableFormList({
|
|
|
38
39
|
},
|
|
39
40
|
children: "\uD56D\uBAA9\uC774 \uC5C6\uC2B5\uB2C8\uB2E4"
|
|
40
41
|
})]
|
|
41
|
-
}), /*#__PURE__*/_jsx(Box, {
|
|
42
|
+
}), !readOnly && /*#__PURE__*/_jsx(Box, {
|
|
42
43
|
children: /*#__PURE__*/_jsx(Button, {
|
|
43
44
|
variant: "text",
|
|
44
45
|
startIcon: /*#__PURE__*/_jsx(AddIcon, {}),
|
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,
|