@owp/core 1.16.0 → 1.17.1
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-L0RqHeRZ.js → QuickPanel-G7zCa1Cr.js} +2 -2
- package/dist/{QuickPanel-L0RqHeRZ.js.map → QuickPanel-G7zCa1Cr.js.map} +1 -1
- package/dist/{index-Bv2PZ2fm.js → index-Byvj-_oU.js} +3828 -3788
- package/dist/{index-Bv2PZ2fm.js.map → index-Byvj-_oU.js.map} +1 -1
- package/dist/index.js +5 -4
- package/dist/types/components/OwpTable/OwpTable.d.ts +4 -2
- package/dist/types/hooks/useTreeGridCommonCodeEnums.d.ts +16 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DialogsProvider as
|
|
1
|
+
import { a_ as r, aY as o, a9 as i, aa as l, F as n, h as p, i as d, aS as c, aT as w, aU as u, aV as g, aZ as b, aX as O, aW as m, cm as C, bB as T, bC as S, a$ as G, b0 as L, b1 as h, aQ as y, b2 as I, bK as B, bL as D, b3 as E, b4 as v, b6 as N, b5 as R, bf as P, b9 as k, ba as x, bb as f, b8 as V, bc as A, bg as H, be as _, bk as M, bl as F, bm as U, bi as z, bj as J, bn as K, bo as Q, b7 as W, bh as Y, bp as Z, bq as q, br as j, bs as X, bt as $, bu as ee, bv as ae, bw as se, bx as te, by as re, bz as oe, bA as ie, d as le, bG as ne, bH as pe, bI as de, bJ as ce, aR as we, ci as ue, cj as ge, cy as be, ck as Oe, cl as me, O as Ce, cC as Te, cp as Se, cD as Ge, cr as Le, cs as he, ct as ye, bD as Ie, cv as Be, cu as De, cx as Ee, a1 as ve, cq as Ne, bE as Re, bF as Pe, cB as ke, cA as xe, cn as fe, co as Ve, ak as Ae, al as He, aj as _e, ai as Me, cw as Fe, ap as Ue, aD as ze, e as Je, a0 as Ke, bO as Qe, at as We, Y as Ye, a2 as Ze, a3 as qe, bN as je, a6 as Xe, ah as $e, ar as ea, aF as aa, ab as sa, Z as ta, af as ra, bP as oa, aq as ia, an as la, bZ as na, ac as pa, c1 as da, ad as ca, am as wa, a4 as ua, a5 as ga, b_ as ba, b$ as Oa, as as ma, c0 as Ca, aA as Ta, aB as Sa, aE as Ga, aG as La, aI as ha, ae as ya, bd as Ia, bM as Ba, W as Da, o as Ea, bR as va, ag as Na, ao as Ra, aC as Pa, ax as ka, av as xa, ay as fa, aw as Va, cf as Aa, aL as Ha, aM as _a, aJ as Ma, aK as Fa, aO as Ua, c2 as za, bY as Ja, cc as Ka, cd as Qa, ce as Wa, c3 as Ya, c4 as Za, c5 as qa, c6 as ja, c7 as Xa, c8 as $a, bS as es, bT as as, bX as ss, bU as ts, bW as rs, bV as os, c9 as is, ca as ls, cb as ns, a7 as ps, bQ as ds, az as cs, au as ws, cg as us, a8 as gs, ch as bs, aN as Os, aH as ms, g as Cs, X as Ts, aP as Ss, $ as Gs, _ as Ls, cz as hs, n as ys, B as Is, K as Bs, L as Ds, J as Es, l as vs, q as Ns, v as Rs, x as Ps, z as ks, p as xs, C as fs, E as Vs, M as As, V as Hs, U as _s, k as Ms, I as Fs, G as Us, H as zs, m as Js, r as Ks, w as Qs, y as Ws, A as Ys, D as Zs, N as qs, P as js, Q as Xs, R as $s, S as et, T as at } from "./index-Byvj-_oU.js";
|
|
2
|
+
import { DialogsProvider as tt } from "@toolpad/core/useDialogs";
|
|
3
3
|
import "@mui/material/styles";
|
|
4
4
|
import "@mui/material/Typography";
|
|
5
5
|
export {
|
|
6
6
|
r as CommonCodeRadioGroup,
|
|
7
7
|
o as CommonCodeSelector,
|
|
8
|
-
|
|
8
|
+
tt as DialogsProvider,
|
|
9
9
|
i as ErrorBoundary,
|
|
10
10
|
l as EventEmitter,
|
|
11
11
|
n as FALLBACK_LANGUAGE_LIST,
|
|
@@ -216,6 +216,7 @@ export {
|
|
|
216
216
|
js as useStorage,
|
|
217
217
|
Xs as useThemeMediaQuery,
|
|
218
218
|
$s as useTimeout,
|
|
219
|
-
et as useTreeGridCommonCodeEnum
|
|
219
|
+
et as useTreeGridCommonCodeEnum,
|
|
220
|
+
at as useTreeGridCommonCodeEnums
|
|
220
221
|
};
|
|
221
222
|
//# sourceMappingURL=index.js.map
|
|
@@ -5,6 +5,7 @@ type OwpTableCellValue = string | number;
|
|
|
5
5
|
type OwpTableHeaderRow = Record<string, OwpTableCellValue>;
|
|
6
6
|
interface StyledTableProps extends TableProps {
|
|
7
7
|
containerProps?: TableContainerProps;
|
|
8
|
+
tableLayout?: 'auto' | 'fixed';
|
|
8
9
|
title?: string;
|
|
9
10
|
children: React.ReactNode;
|
|
10
11
|
}
|
|
@@ -12,12 +13,13 @@ interface StyledTableProps extends TableProps {
|
|
|
12
13
|
* StyledTable 스타일 컴포넌트
|
|
13
14
|
* @param children 하위 콘텐츠
|
|
14
15
|
* @param containerProps containerProps props
|
|
16
|
+
* @param tableLayout tableLayout 값
|
|
15
17
|
*/
|
|
16
|
-
export declare const StyledTable: ({ children, containerProps, ...tableProps }: StyledTableProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare const StyledTable: ({ children, className, containerProps, tableLayout, ...tableProps }: StyledTableProps) => import("react/jsx-runtime").JSX.Element;
|
|
17
19
|
export declare const StyledTableRow: import("@emotion/styled").StyledComponent<import("@mui/material").TableRowOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & {
|
|
18
20
|
ref?: import("react").Ref<HTMLTableRowElement>;
|
|
19
21
|
}, "children" | "sx" | "classes" | "style" | "hover" | "selected" | "className"> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
|
|
20
|
-
interface OwpTableProps<T> extends
|
|
22
|
+
interface OwpTableProps<T> extends Omit<StyledTableProps, 'children'> {
|
|
21
23
|
headers: OwpTableHeaderRow | OwpTableHeaderRow[];
|
|
22
24
|
rows: T[];
|
|
23
25
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TreeGrid 공통코드 Enum 옵션 정보
|
|
3
|
+
* @param field Enum을 반영할 컬럼명
|
|
4
|
+
* @param codeId 공통코드 그룹 ID
|
|
5
|
+
*/
|
|
6
|
+
export interface TreeGridCommonCodeEnumConfig {
|
|
7
|
+
field: string;
|
|
8
|
+
codeId: string;
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* TreeGrid 공통코드 Enum 옵션 일괄 반영
|
|
12
|
+
* @param id TreeGrid 인스턴스 ID
|
|
13
|
+
* @param configs Enum 반영 대상 목록
|
|
14
|
+
* @param isGridReady TreeGrid 준비 여부
|
|
15
|
+
*/
|
|
16
|
+
export declare const useTreeGridCommonCodeEnums: (id: string, configs: TreeGridCommonCodeEnumConfig[], isGridReady: boolean) => void;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export * from './hooks/useStorage';
|
|
|
20
20
|
export * from './hooks/useThemeMediaQuery';
|
|
21
21
|
export * from './hooks/useTimeout';
|
|
22
22
|
export * from './hooks/useTreeGridCommonCodeEnum';
|
|
23
|
+
export * from './hooks/useTreeGridCommonCodeEnums';
|
|
23
24
|
export * from './hooks/useTreeGridInstance';
|
|
24
25
|
export * from './store/store';
|
|
25
26
|
export * from './utils/barcodeUtil';
|