@owp/core 1.2.2 → 1.2.4
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/{QuickPanel-DQX1X0iy.js → QuickPanel-Czn36Guw.js} +2 -2
- package/dist/{QuickPanel-DQX1X0iy.js.map → QuickPanel-Czn36Guw.js.map} +1 -1
- package/dist/{index-w6g0cj1i.js → index-Df7Y0VJB.js} +87 -79
- package/dist/index-Df7Y0VJB.js.map +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/index-w6g0cj1i.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var b = Object.defineProperty;
|
|
2
2
|
var o = (d, n) => b(d, "name", { value: n, configurable: !0 });
|
|
3
|
-
import { u as D, a as k, s as T, b as v, j as e, c as r, f as p, O as f, d as C, t as I } from "./index-
|
|
3
|
+
import { u as D, a as k, s as T, b as v, j as e, c as r, f as p, O as f, d as C, t as I } from "./index-Df7Y0VJB.js";
|
|
4
4
|
import u from "@mui/material/Divider";
|
|
5
5
|
import y from "@mui/material/List";
|
|
6
6
|
import c from "@mui/material/ListItem";
|
|
@@ -100,4 +100,4 @@ o(V, "QuickPanel");
|
|
|
100
100
|
export {
|
|
101
101
|
V as default
|
|
102
102
|
};
|
|
103
|
-
//# sourceMappingURL=QuickPanel-
|
|
103
|
+
//# sourceMappingURL=QuickPanel-Czn36Guw.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QuickPanel-
|
|
1
|
+
{"version":3,"file":"QuickPanel-Czn36Guw.js","sources":["../src/components/layouts/shared-components/quickPanel/QuickPanel.tsx"],"sourcesContent":["import { OwpScrollbars } from '@/components/OwpScrollbars';\nimport { OwpSvgIcon } from '@/components/OwpSvgIcon';\nimport { useAppDispatch, useAppSelector } from '@/store/hooks';\nimport Divider from '@mui/material/Divider';\nimport List from '@mui/material/List';\nimport ListItem from '@mui/material/ListItem';\nimport ListItemIcon from '@mui/material/ListItemIcon';\nimport ListItemSecondaryAction from '@mui/material/ListItemSecondaryAction';\nimport ListItemText from '@mui/material/ListItemText';\nimport ListSubheader from '@mui/material/ListSubheader';\nimport { styled } from '@mui/material/styles';\nimport SwipeableDrawer from '@mui/material/SwipeableDrawer';\nimport Switch from '@mui/material/Switch';\nimport Typography from '@mui/material/Typography';\nimport { format } from 'date-fns/format';\nimport { useState } from 'react';\nimport { selectQuickPanelData, selectQuickPanelOpen, toggleQuickPanel } from './quickPanelSlice';\n\nconst StyledSwipeableDrawer = styled(SwipeableDrawer)(() => ({\n '& .MuiDrawer-paper': {\n width: 280,\n },\n}));\n\n/**\n * The quick panel.\n */\nfunction QuickPanel() {\n const dispatch = useAppDispatch();\n const data = useAppSelector(selectQuickPanelData);\n const open = useAppSelector(selectQuickPanelOpen);\n\n const [checked, setChecked] = useState<string[]>(['notifications']);\n\n const handleToggle = (value: string) => () => {\n const currentIndex = checked.indexOf(value);\n const newChecked = [...checked];\n\n if (currentIndex === -1) {\n newChecked.push(value);\n } else {\n newChecked.splice(currentIndex, 1);\n }\n\n setChecked(newChecked);\n };\n\n return (\n <StyledSwipeableDrawer\n open={open as boolean}\n anchor=\"right\"\n onOpen={() => {}}\n onClose={() => dispatch(toggleQuickPanel())}\n disableSwipeToOpen\n >\n <OwpScrollbars>\n <ListSubheader component=\"div\">Today</ListSubheader>\n\n <div className=\"mb-0 px-24 py-16\">\n <Typography className=\"mb-12 text-5xl\" color=\"text.secondary\">\n {format(new Date(), 'eeee')}\n </Typography>\n <div className=\"flex\">\n <Typography className=\"text-5xl leading-none\" color=\"text.secondary\">\n {format(new Date(), 'dd')}\n </Typography>\n <Typography className=\"text-15 leading-none\" color=\"text.secondary\">\n th\n </Typography>\n <Typography className=\"text-5xl leading-none\" color=\"text.secondary\">\n {format(new Date(), 'MMMM')}\n </Typography>\n </div>\n </div>\n <Divider />\n <List>\n <ListSubheader component=\"div\">Events</ListSubheader>\n {data &&\n (data as any).events.map((event: any) => (\n <ListItem key={event.id}>\n <ListItemText primary={event.title} secondary={event.detail} />\n </ListItem>\n ))}\n </List>\n <Divider />\n <List>\n <ListSubheader component=\"div\">Notes</ListSubheader>\n {data &&\n (data as any).notes.map((note: any) => (\n <ListItem key={note.id}>\n <ListItemText primary={note.title} secondary={note.detail} />\n </ListItem>\n ))}\n </List>\n <Divider />\n <List>\n <ListSubheader component=\"div\">Quick Settings</ListSubheader>\n <ListItem>\n <ListItemIcon className=\"min-w-36\">\n <OwpSvgIcon>material-outline:notifications</OwpSvgIcon>\n </ListItemIcon>\n <ListItemText primary=\"Notifications\" />\n <ListItemSecondaryAction>\n <Switch\n color=\"primary\"\n onChange={handleToggle('notifications')}\n checked={checked.indexOf('notifications') !== -1}\n />\n </ListItemSecondaryAction>\n </ListItem>\n <ListItem>\n <ListItemIcon className=\"min-w-36\">\n <OwpSvgIcon>material-outline:cloud</OwpSvgIcon>\n </ListItemIcon>\n <ListItemText primary=\"Cloud Sync\" />\n <ListItemSecondaryAction>\n <Switch\n color=\"secondary\"\n onChange={handleToggle('cloudSync')}\n checked={checked.indexOf('cloudSync') !== -1}\n />\n </ListItemSecondaryAction>\n </ListItem>\n <ListItem>\n <ListItemIcon className=\"min-w-36\">\n <OwpSvgIcon>material-outline:brightness_high</OwpSvgIcon>\n </ListItemIcon>\n <ListItemText primary=\"Retro Thrusters\" />\n <ListItemSecondaryAction>\n <Switch\n color=\"primary\"\n onChange={handleToggle('retroThrusters')}\n checked={checked.indexOf('retroThrusters') !== -1}\n />\n </ListItemSecondaryAction>\n </ListItem>\n </List>\n </OwpScrollbars>\n </StyledSwipeableDrawer>\n );\n}\n\nexport default QuickPanel;\n"],"names":["StyledSwipeableDrawer","styled","SwipeableDrawer","QuickPanel","dispatch","useAppDispatch","data","useAppSelector","selectQuickPanelData","open","selectQuickPanelOpen","checked","setChecked","useState","handleToggle","__name","value","currentIndex","newChecked","jsx","toggleQuickPanel","OwpScrollbars","ListSubheader","jsxs","Typography","format","Divider","List","event","ListItem","ListItemText","note","ListItemIcon","OwpSvgIcon","ListItemSecondaryAction","Switch"],"mappings":"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"}
|
|
@@ -1938,64 +1938,72 @@ const sl = /* @__PURE__ */ o(() => ({
|
|
|
1938
1938
|
throw new Error("useOwpAppContext must be used within a OwpAppProvider");
|
|
1939
1939
|
return t;
|
|
1940
1940
|
}, "useOwpAppContext"), NS = rl("commonCodeList", void 0), vte = /* @__PURE__ */ o(() => el(NS), "useGetCommonCodeList"), yte = /* @__PURE__ */ o(() => tl(NS), "useSetCommonCodeList"), FS = /* @__PURE__ */ o(() => {
|
|
1941
|
-
const t = Vb(), { t: e } = Ci("owp"),
|
|
1941
|
+
const t = Vb(), { t: e, i18n: r } = Ci("owp"), n = /* @__PURE__ */ o(async (i) => await t.open(wk, i), "confirmBase");
|
|
1942
1942
|
return {
|
|
1943
|
-
confirm:
|
|
1944
|
-
confirmInfo: /* @__PURE__ */ o(async ({ title:
|
|
1945
|
-
title:
|
|
1946
|
-
|
|
1947
|
-
|
|
1943
|
+
confirm: n,
|
|
1944
|
+
confirmInfo: /* @__PURE__ */ o(async ({ title: i, okText: a, severity: s } = {}) => await n({
|
|
1945
|
+
title: i ?? e(
|
|
1946
|
+
r.exists("message.would_you_like_to_proceed") ? "message.would_you_like_to_proceed" : "Message.처리하시겠습니까"
|
|
1947
|
+
),
|
|
1948
|
+
okText: a ?? e(r.exists("button.ok") ? "button.ok" : "Button.확인"),
|
|
1949
|
+
severity: s ?? "primary",
|
|
1948
1950
|
useInfo: !0
|
|
1949
1951
|
}), "confirmInfo"),
|
|
1950
1952
|
confirmSave: /* @__PURE__ */ o(async ({
|
|
1951
|
-
title:
|
|
1952
|
-
okText:
|
|
1953
|
-
cancelText:
|
|
1954
|
-
okButtonProps:
|
|
1955
|
-
} = {}) => await
|
|
1956
|
-
title:
|
|
1957
|
-
|
|
1958
|
-
|
|
1953
|
+
title: i,
|
|
1954
|
+
okText: a,
|
|
1955
|
+
cancelText: s,
|
|
1956
|
+
okButtonProps: l
|
|
1957
|
+
} = {}) => await n({
|
|
1958
|
+
title: i ?? e(
|
|
1959
|
+
r.exists("message.do_you_want_to_save") ? "message.do_you_want_to_save" : "Message.저장하시겠습니까?"
|
|
1960
|
+
),
|
|
1961
|
+
okText: a ?? e(r.exists("button.save") ? "button.save" : "Button.저장"),
|
|
1962
|
+
cancelText: s,
|
|
1959
1963
|
okButtonProps: {
|
|
1960
1964
|
color: "secondary",
|
|
1961
|
-
...
|
|
1965
|
+
...l
|
|
1962
1966
|
}
|
|
1963
1967
|
}), "confirmSave"),
|
|
1964
1968
|
confirmUpdate: /* @__PURE__ */ o(async ({
|
|
1965
|
-
title:
|
|
1966
|
-
okText:
|
|
1967
|
-
cancelText:
|
|
1968
|
-
okButtonProps:
|
|
1969
|
-
} = {}) => await
|
|
1970
|
-
title:
|
|
1971
|
-
|
|
1972
|
-
|
|
1969
|
+
title: i,
|
|
1970
|
+
okText: a,
|
|
1971
|
+
cancelText: s,
|
|
1972
|
+
okButtonProps: l
|
|
1973
|
+
} = {}) => await n({
|
|
1974
|
+
title: i ?? e(
|
|
1975
|
+
r.exists("message.would_you_like_to_edit") ? "message.would_you_like_to_edit" : "Message.수정하시겠습니까?"
|
|
1976
|
+
),
|
|
1977
|
+
okText: a ?? e(r.exists("button.edit") ? "button.edit" : "Button.수정"),
|
|
1978
|
+
cancelText: s,
|
|
1973
1979
|
okButtonProps: {
|
|
1974
1980
|
color: "secondary",
|
|
1975
|
-
...
|
|
1981
|
+
...l
|
|
1976
1982
|
}
|
|
1977
1983
|
}), "confirmUpdate"),
|
|
1978
1984
|
confirmDelete: /* @__PURE__ */ o(async ({
|
|
1979
|
-
title:
|
|
1980
|
-
okText:
|
|
1981
|
-
cancelText:
|
|
1982
|
-
okButtonProps:
|
|
1983
|
-
} = {}) => await
|
|
1984
|
-
title:
|
|
1985
|
-
|
|
1986
|
-
|
|
1985
|
+
title: i,
|
|
1986
|
+
okText: a,
|
|
1987
|
+
cancelText: s,
|
|
1988
|
+
okButtonProps: l
|
|
1989
|
+
} = {}) => await n({
|
|
1990
|
+
title: i ?? e(
|
|
1991
|
+
r.exists("message.are_you_sure_you_want_to_delete") ? "message.are_you_sure_you_want_to_delete" : "Message.삭제하시겠습니까?"
|
|
1992
|
+
),
|
|
1993
|
+
okText: a ?? e(r.exists("button.delete") ? "button.delete" : "Button.삭제"),
|
|
1994
|
+
cancelText: s,
|
|
1987
1995
|
okButtonProps: {
|
|
1988
1996
|
color: "error",
|
|
1989
|
-
...
|
|
1997
|
+
...l
|
|
1990
1998
|
}
|
|
1991
1999
|
}), "confirmDelete")
|
|
1992
2000
|
};
|
|
1993
2001
|
}, "useConfirm"), wk = /* @__PURE__ */ o(({ payload: t, open: e, onClose: r }) => {
|
|
1994
|
-
const { title: n, okButtonProps: i, cancelButtonProps: a, severity: s, useInfo: l } = t, { t: u } = Ci("owp"),
|
|
2002
|
+
const { title: n, okButtonProps: i, cancelButtonProps: a, severity: s, useInfo: l } = t, { t: u, i18n: c } = Ci("owp"), f = (t == null ? void 0 : t.okText) ?? u(c.exists("button.ok") ? "button.ok" : "Button.확인"), d = (t == null ? void 0 : t.cancelText) ?? u(c.exists("button.cancel") ? "button.cancel" : "Button.취소");
|
|
1995
2003
|
return /* @__PURE__ */ ae(b1, { fullWidth: !0, maxWidth: "xs", open: e, onClose: /* @__PURE__ */ o(() => r(!1), "onClose"), children: [
|
|
1996
2004
|
/* @__PURE__ */ w(x1, { children: /* @__PURE__ */ w(xr, { className: "mb-12", variant: "h6", children: n }) }),
|
|
1997
2005
|
/* @__PURE__ */ ae(w1, { children: [
|
|
1998
|
-
!l && /* @__PURE__ */ w(Qn, { ...a, variant: "outlined", onClick: /* @__PURE__ */ o(() => r(!1), "onClick"), children:
|
|
2006
|
+
!l && /* @__PURE__ */ w(Qn, { ...a, variant: "outlined", onClick: /* @__PURE__ */ o(() => r(!1), "onClick"), children: d }),
|
|
1999
2007
|
/* @__PURE__ */ w(
|
|
2000
2008
|
Qn,
|
|
2001
2009
|
{
|
|
@@ -2003,7 +2011,7 @@ const sl = /* @__PURE__ */ o(() => ({
|
|
|
2003
2011
|
variant: "contained",
|
|
2004
2012
|
...i,
|
|
2005
2013
|
onClick: /* @__PURE__ */ o(() => r(!0), "onClick"),
|
|
2006
|
-
children:
|
|
2014
|
+
children: f
|
|
2007
2015
|
}
|
|
2008
2016
|
)
|
|
2009
2017
|
] })
|
|
@@ -31948,15 +31956,15 @@ const xl = nc([ll])(JU), zE = yn(
|
|
|
31948
31956
|
contentProps: c,
|
|
31949
31957
|
...f
|
|
31950
31958
|
}, d) => {
|
|
31951
|
-
const { t: h } = Ci("owp"),
|
|
31959
|
+
const { t: h, i18n: p } = Ci("owp"), g = (f == null ? void 0 : f.confirmText) ?? h(p.exists("button.save") ? "button.save" : "Button.저장"), m = (f == null ? void 0 : f.cancelText) ?? h(p.exists("button.cancel") ? "button.cancel" : "Button.취소");
|
|
31952
31960
|
return /* @__PURE__ */ ae(
|
|
31953
31961
|
b1,
|
|
31954
31962
|
{
|
|
31955
31963
|
ref: d,
|
|
31956
31964
|
fullWidth: !0,
|
|
31957
31965
|
component: l ? "form" : void 0,
|
|
31958
|
-
onClose: /* @__PURE__ */ o((
|
|
31959
|
-
|
|
31966
|
+
onClose: /* @__PURE__ */ o((v, y) => {
|
|
31967
|
+
y !== "backdropClick" && (s == null || s(v, y));
|
|
31960
31968
|
}, "onClose"),
|
|
31961
31969
|
...f,
|
|
31962
31970
|
children: [
|
|
@@ -31975,7 +31983,7 @@ const xl = nc([ll])(JU), zE = yn(
|
|
|
31975
31983
|
}
|
|
31976
31984
|
s == null || s({}, "escapeKeyDown");
|
|
31977
31985
|
}, "onClick"),
|
|
31978
|
-
children:
|
|
31986
|
+
children: m
|
|
31979
31987
|
}
|
|
31980
31988
|
),
|
|
31981
31989
|
n && /* @__PURE__ */ w(
|
|
@@ -31993,7 +32001,7 @@ const xl = nc([ll])(JU), zE = yn(
|
|
|
31993
32001
|
s == null || s({}, "escapeKeyDown");
|
|
31994
32002
|
}
|
|
31995
32003
|
}, "onClick"),
|
|
31996
|
-
children:
|
|
32004
|
+
children: g
|
|
31997
32005
|
}
|
|
31998
32006
|
)
|
|
31999
32007
|
] })
|
|
@@ -32205,15 +32213,15 @@ function nV({ open: t, onClose: e }) {
|
|
|
32205
32213
|
}
|
|
32206
32214
|
o(nV, "PasswordChangeDialog");
|
|
32207
32215
|
function uw() {
|
|
32208
|
-
const { t } = Ci("owp"),
|
|
32216
|
+
const { t, i18n: e } = Ci("owp"), r = al(), { resetStorage: n } = sl();
|
|
32209
32217
|
return /* @__PURE__ */ ae(Pu, { children: [
|
|
32210
32218
|
/* @__PURE__ */ w(yd, { className: "min-w-36", children: /* @__PURE__ */ w(nt, { children: "heroicons-outline:arrow-right-on-rectangle" }) }),
|
|
32211
32219
|
/* @__PURE__ */ w(
|
|
32212
32220
|
Rn,
|
|
32213
32221
|
{
|
|
32214
|
-
primary: t("button.logout"),
|
|
32222
|
+
primary: t(e.exists("button.logout") ? "button.logout" : "Title.로그아웃"),
|
|
32215
32223
|
onClick: /* @__PURE__ */ o(() => {
|
|
32216
|
-
|
|
32224
|
+
n(), r("auth/login");
|
|
32217
32225
|
}, "onClick")
|
|
32218
32226
|
}
|
|
32219
32227
|
)
|
|
@@ -32227,7 +32235,7 @@ function iV() {
|
|
|
32227
32235
|
/* @__PURE__ */ w(
|
|
32228
32236
|
Rn,
|
|
32229
32237
|
{
|
|
32230
|
-
primary: t("
|
|
32238
|
+
primary: t("Button.패스워드 변경"),
|
|
32231
32239
|
onClick: /* @__PURE__ */ o(async () => {
|
|
32232
32240
|
e.open(nV);
|
|
32233
32241
|
}, "onClick")
|
|
@@ -38884,7 +38892,7 @@ o(vz, "NavbarWrapperLayout2");
|
|
|
38884
38892
|
const yz = nc([Fu])(
|
|
38885
38893
|
et(vz)
|
|
38886
38894
|
), xz = y1(
|
|
38887
|
-
() => import("./QuickPanel-
|
|
38895
|
+
() => import("./QuickPanel-Czn36Guw.js")
|
|
38888
38896
|
);
|
|
38889
38897
|
function wz() {
|
|
38890
38898
|
return /* @__PURE__ */ w(Js, { children: /* @__PURE__ */ w(xz, {}) });
|
|
@@ -39469,7 +39477,7 @@ o(zz, "NavbarWrapperLayout3");
|
|
|
39469
39477
|
const Yz = nc([Fu])(
|
|
39470
39478
|
et(zz)
|
|
39471
39479
|
), Xz = y1(
|
|
39472
|
-
() => import("./QuickPanel-
|
|
39480
|
+
() => import("./QuickPanel-Czn36Guw.js")
|
|
39473
39481
|
);
|
|
39474
39482
|
function Kz() {
|
|
39475
39483
|
return /* @__PURE__ */ w(Js, { children: /* @__PURE__ */ w(Xz, {}) });
|
|
@@ -40581,53 +40589,53 @@ function _re({
|
|
|
40581
40589
|
title: i,
|
|
40582
40590
|
...a
|
|
40583
40591
|
}) {
|
|
40584
|
-
const { t: s } = Ci("owp"), [
|
|
40592
|
+
const { t: s, i18n: l } = Ci("owp"), [u, c] = Ke(!1);
|
|
40585
40593
|
return /* @__PURE__ */ w(
|
|
40586
40594
|
Qn,
|
|
40587
40595
|
{
|
|
40588
40596
|
variant: "contained",
|
|
40589
40597
|
color: "success",
|
|
40590
40598
|
...a,
|
|
40591
|
-
loading:
|
|
40599
|
+
loading: u,
|
|
40592
40600
|
loadingPosition: "start",
|
|
40593
40601
|
onClick: /* @__PURE__ */ o(async () => {
|
|
40594
|
-
var
|
|
40602
|
+
var d, h;
|
|
40595
40603
|
try {
|
|
40596
|
-
if (
|
|
40604
|
+
if (u)
|
|
40597
40605
|
return;
|
|
40598
40606
|
if (Dt(t) || !Gi(t))
|
|
40599
40607
|
throw ps("헤더정보가 없습니다", { variant: "warning" }), new Error();
|
|
40600
40608
|
if (Dt(e) || !Gi(e))
|
|
40601
40609
|
throw ps("맵핑정보가 없습니다", { variant: "warning" }), new Error();
|
|
40602
|
-
|
|
40603
|
-
const
|
|
40604
|
-
|
|
40605
|
-
|
|
40610
|
+
c(!0);
|
|
40611
|
+
const p = new sC.Workbook(), g = p.addWorksheet("sheet1");
|
|
40612
|
+
g.properties.defaultRowHeight = 19, t.forEach(({ key: y, range: x, value: b }) => {
|
|
40613
|
+
x ? KM(g, {
|
|
40606
40614
|
isHeader: !0,
|
|
40607
|
-
range:
|
|
40608
|
-
value:
|
|
40609
|
-
}) :
|
|
40615
|
+
range: x,
|
|
40616
|
+
value: b
|
|
40617
|
+
}) : y && Jh(g, {
|
|
40610
40618
|
isHeader: !0,
|
|
40611
|
-
key:
|
|
40612
|
-
value:
|
|
40619
|
+
key: y,
|
|
40620
|
+
value: b
|
|
40613
40621
|
});
|
|
40614
40622
|
});
|
|
40615
|
-
const
|
|
40616
|
-
(
|
|
40617
|
-
e.forEach(({ key:
|
|
40618
|
-
Jh(
|
|
40619
|
-
key: `${Z_(
|
|
40620
|
-
value: un(
|
|
40623
|
+
const m = (((d = g.lastRow) == null ? void 0 : d.number) ?? 0) + 1;
|
|
40624
|
+
(h = Gi(r) ? r : []) == null || h.forEach((y, x) => {
|
|
40625
|
+
e.forEach(({ key: b, prefix: S, suffix: E }, I) => {
|
|
40626
|
+
Jh(g, {
|
|
40627
|
+
key: `${Z_(I + 1)}${m + x}`,
|
|
40628
|
+
value: un(y == null ? void 0 : y[b]) || Hk(y == null ? void 0 : y[b]) ? `${S ?? ""}${y == null ? void 0 : y[b]}${E ?? ""}` : ""
|
|
40621
40629
|
});
|
|
40622
40630
|
});
|
|
40623
40631
|
});
|
|
40624
|
-
const
|
|
40625
|
-
XM(
|
|
40626
|
-
} catch (
|
|
40627
|
-
console.error(
|
|
40632
|
+
const v = await p.xlsx.writeBuffer();
|
|
40633
|
+
XM(v, n ?? "sheet"), c(!1);
|
|
40634
|
+
} catch (p) {
|
|
40635
|
+
console.error(p), ps(p == null ? void 0 : p.message, { variant: "error" }), c(!1);
|
|
40628
40636
|
}
|
|
40629
40637
|
}, "handleExportExcel"),
|
|
40630
|
-
children: i ?? s("button.saveExcel")
|
|
40638
|
+
children: i ?? s(l.exists("button.saveExcel") ? "button.saveExcel" : "Button.엑셀 저장")
|
|
40631
40639
|
}
|
|
40632
40640
|
);
|
|
40633
40641
|
}
|
|
@@ -50132,7 +50140,7 @@ const Lb = /* @__PURE__ */ o((t) => x_(t) && ks(t), "isNill"), Ire = /* @__PURE_
|
|
|
50132
50140
|
}), "RestartAlt"), nJ = xn(/* @__PURE__ */ Ht.jsx("path", {
|
|
50133
50141
|
d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14"
|
|
50134
50142
|
}), "Search"), Rre = /* @__PURE__ */ o(({ title: t, children: e, actions: r, onSubmit: n, onReset: i }) => {
|
|
50135
|
-
const { t: a } = Ci("owp");
|
|
50143
|
+
const { t: a, i18n: s } = Ci("owp");
|
|
50136
50144
|
return (
|
|
50137
50145
|
// <FormProvider {...form}>
|
|
50138
50146
|
/* @__PURE__ */ w(
|
|
@@ -50141,18 +50149,18 @@ const Lb = /* @__PURE__ */ o((t) => x_(t) && ks(t), "isNill"), Ire = /* @__PURE_
|
|
|
50141
50149
|
component: "form",
|
|
50142
50150
|
sx: { bgcolor: "background.paper" },
|
|
50143
50151
|
className: "w-full p-20 mt-16 rounded-lg shadow-1",
|
|
50144
|
-
onSubmit: /* @__PURE__ */ o((
|
|
50145
|
-
|
|
50152
|
+
onSubmit: /* @__PURE__ */ o((l) => {
|
|
50153
|
+
l.preventDefault(), n == null || n();
|
|
50146
50154
|
}, "onSubmit"),
|
|
50147
|
-
onReset: /* @__PURE__ */ o((
|
|
50148
|
-
|
|
50155
|
+
onReset: /* @__PURE__ */ o((l) => {
|
|
50156
|
+
l.preventDefault(), i == null || i();
|
|
50149
50157
|
}, "onReset"),
|
|
50150
50158
|
children: /* @__PURE__ */ ae("div", { className: "flex gap-12 justify-between items-center", children: [
|
|
50151
50159
|
t,
|
|
50152
50160
|
/* @__PURE__ */ w("div", { className: "flex flex-wrap gap-12", children: e }),
|
|
50153
50161
|
/* @__PURE__ */ ae("div", { className: "flex flex-shrink-0 gap-x-12", children: [
|
|
50154
|
-
/* @__PURE__ */ w(Qn, { type: "submit", variant: "outlined", startIcon: /* @__PURE__ */ w(nJ, {}), children: a("button.search") }),
|
|
50155
|
-
/* @__PURE__ */ w(Qn, { type: "reset", variant: "outlined", startIcon: /* @__PURE__ */ w(rJ, {}), children: a("button.reset") }),
|
|
50162
|
+
/* @__PURE__ */ w(Qn, { type: "submit", variant: "outlined", startIcon: /* @__PURE__ */ w(nJ, {}), children: a(s.exists("button.search") ? "button.search" : "Button.검색") }),
|
|
50163
|
+
/* @__PURE__ */ w(Qn, { type: "reset", variant: "outlined", startIcon: /* @__PURE__ */ w(rJ, {}), children: a(s.exists("button.reset") ? "button.reset" : "Button.초기화") }),
|
|
50156
50164
|
r
|
|
50157
50165
|
] })
|
|
50158
50166
|
] })
|
|
@@ -53956,4 +53964,4 @@ export {
|
|
|
53956
53964
|
Ste as y,
|
|
53957
53965
|
b_ as z
|
|
53958
53966
|
};
|
|
53959
|
-
//# sourceMappingURL=index-
|
|
53967
|
+
//# sourceMappingURL=index-Df7Y0VJB.js.map
|