@owp/core 2.2.2 → 2.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.
Files changed (68) hide show
  1. package/dist/_virtual/index10.js +2 -2
  2. package/dist/_virtual/index12.js +2 -2
  3. package/dist/_virtual/index13.js +2 -2
  4. package/dist/_virtual/index14.js +2 -2
  5. package/dist/_virtual/index15.js +2 -2
  6. package/dist/_virtual/index5.js +2 -2
  7. package/dist/components/OwpMrtTable/OwpMrtTable.js +252 -201
  8. package/dist/components/OwpMrtTable/OwpMrtTable.js.map +1 -1
  9. package/dist/components/OwpMrtTable/OwpMrtTableNoDataOverlay.js +53 -0
  10. package/dist/components/OwpMrtTable/OwpMrtTableNoDataOverlay.js.map +1 -0
  11. package/dist/components/OwpPageTitle/OwpPageTitle.js +74 -18
  12. package/dist/components/OwpPageTitle/OwpPageTitle.js.map +1 -1
  13. package/dist/components/OwpSearchFilter/OwpSearchFilter.js +44 -29
  14. package/dist/components/OwpSearchFilter/OwpSearchFilter.js.map +1 -1
  15. package/dist/components/OwpSection/OwpSection.js +104 -43
  16. package/dist/components/OwpSection/OwpSection.js.map +1 -1
  17. package/dist/components/OwpTreeGrid/OwpTreeGrid.js +291 -192
  18. package/dist/components/OwpTreeGrid/OwpTreeGrid.js.map +1 -1
  19. package/dist/components/OwpTreeGrid/hooks/useOwpTreeGridOverlayFrame.js +48 -46
  20. package/dist/components/OwpTreeGrid/hooks/useOwpTreeGridOverlayFrame.js.map +1 -1
  21. package/dist/components/OwpTreeGrid/perf.js +31 -0
  22. package/dist/components/OwpTreeGrid/perf.js.map +1 -0
  23. package/dist/components/OwpTreeGridResetChangesButton/OwpTreeGridResetChangesButton.js +34 -0
  24. package/dist/components/OwpTreeGridResetChangesButton/OwpTreeGridResetChangesButton.js.map +1 -0
  25. package/dist/hooks/useHeaderWrapState.js +48 -0
  26. package/dist/hooks/useHeaderWrapState.js.map +1 -0
  27. package/dist/hooks.js +40 -38
  28. package/dist/hooks.js.map +1 -1
  29. package/dist/index.js +25 -23
  30. package/dist/index.js.map +1 -1
  31. package/dist/layout/components/navigation/vertical/NavVerticalLayout.js +63 -27
  32. package/dist/layout/components/navigation/vertical/NavVerticalLayout.js.map +1 -1
  33. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/CODE128/constants.js +1 -1
  34. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/CODE128/index.js +1 -1
  35. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/CODE39/index.js +1 -1
  36. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/CODE93/index.js +1 -1
  37. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/EAN_UPC/constants.js +1 -1
  38. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/EAN_UPC/index.js +1 -1
  39. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/GenericBarcode/index.js +1 -1
  40. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/ITF/index.js +1 -1
  41. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/MSI/index.js +1 -1
  42. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/codabar/index.js +1 -1
  43. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/barcodes/pharmacode/index.js +1 -1
  44. package/dist/node_modules/.pnpm/jsbarcode@3.12.1/node_modules/jsbarcode/bin/renderers/index.js +1 -1
  45. package/dist/node_modules/.pnpm/react-is@16.13.1/node_modules/react-is/index.js +1 -1
  46. package/dist/owp-app.css +1 -1
  47. package/dist/types/components/OwpMrtTable/OwpMrtTable.d.ts +2 -0
  48. package/dist/types/components/OwpMrtTable/OwpMrtTableNoDataOverlay.d.ts +14 -0
  49. package/dist/types/components/OwpSection/OwpSection.d.ts +3 -1
  50. package/dist/types/components/OwpTreeGrid/hooks/useOwpTreeGridOverlayFrame.d.ts +2 -1
  51. package/dist/types/components/OwpTreeGrid/perf.d.ts +30 -0
  52. package/dist/types/components/OwpTreeGridResetChangesButton/OwpTreeGridResetChangesButton.d.ts +13 -0
  53. package/dist/types/components/OwpTreeGridResetChangesButton/index.d.ts +1 -0
  54. package/dist/types/hooks/index.d.ts +1 -0
  55. package/dist/types/hooks/useHeaderWrapState.d.ts +14 -0
  56. package/dist/types/index.d.ts +1 -0
  57. package/dist/types/utils/index.d.ts +1 -0
  58. package/dist/types/utils/preloadOnIdle.d.ts +7 -0
  59. package/dist/types/utils/treeGridBodyRowsEvent.d.ts +9 -0
  60. package/dist/utils/preloadOnIdle.js +27 -0
  61. package/dist/utils/preloadOnIdle.js.map +1 -0
  62. package/dist/utils/treeGridBodyRowsEvent.js +14 -0
  63. package/dist/utils/treeGridBodyRowsEvent.js.map +1 -0
  64. package/dist/utils/treeGridUtil.js +79 -72
  65. package/dist/utils/treeGridUtil.js.map +1 -1
  66. package/dist/utils.js +64 -62
  67. package/dist/utils.js.map +1 -1
  68. package/package.json +1 -1
@@ -1,55 +1,116 @@
1
- var u = Object.defineProperty;
2
- var o = (s, m) => u(s, "name", { value: m, configurable: !0 });
3
- import { jsxs as l, jsx as n, Fragment as w } from "../../node_modules/.pnpm/@emotion_react@11.14.0_@types_react@19.2.14_react@19.2.4/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js";
4
- import b from "../../node_modules/.pnpm/@mui_icons-material@7.3.9_@mui_material@7.3.9_@emotion_react@11.14.0_@types_react@19.2._dc2be6bc014bebdac88a574e3e02c144/node_modules/@mui/icons-material/esm/Fitbit.js";
5
- import { Divider as h } from "@mui/material";
6
- import { clsx as v } from "../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js";
7
- import { OwpPageTitle as j } from "../OwpPageTitle/OwpPageTitle.js";
8
- const R = /* @__PURE__ */ o(({
9
- className: s,
10
- title: m,
11
- disableTitleIcon: x,
12
- headerProps: i,
13
- usePageTitle: e,
14
- actions: c,
15
- leftSlot: d,
16
- centerSlot: a,
17
- children: r,
18
- iconSize: f
1
+ var j = Object.defineProperty;
2
+ var w = (r, l) => j(r, "name", { value: l, configurable: !0 });
3
+ import { jsxs as n, jsx as e } from "../../node_modules/.pnpm/@emotion_react@11.14.0_@types_react@19.2.14_react@19.2.4/node_modules/@emotion/react/jsx-runtime/dist/emotion-react-jsx-runtime.browser.esm.js";
4
+ import O from "../../node_modules/.pnpm/@mui_icons-material@7.3.9_@mui_material@7.3.9_@emotion_react@11.14.0_@types_react@19.2._dc2be6bc014bebdac88a574e3e02c144/node_modules/@mui/icons-material/esm/Fitbit.js";
5
+ import { Divider as R } from "@mui/material";
6
+ import { useHeaderWrapState as k } from "../../hooks/useHeaderWrapState.js";
7
+ import { clsx as m } from "../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.js";
8
+ import { OwpPageTitle as B } from "../OwpPageTitle/OwpPageTitle.js";
9
+ const z = /* @__PURE__ */ w(({
10
+ className: r,
11
+ title: l,
12
+ disableTitleIcon: o,
13
+ headerProps: s,
14
+ usePageTitle: x,
15
+ actions: f,
16
+ leftSlot: a,
17
+ centerSlot: i,
18
+ children: t,
19
+ iconSize: d
19
20
  }) => {
20
- const N = m != null && m !== "";
21
- return /* @__PURE__ */ l("div", { className: s, children: [
22
- (e ? !!(N || c || d || a) : !!(m || c)) && (e ? /* @__PURE__ */ l("div", { children: [
23
- /* @__PURE__ */ n("div", { ...i, className: v("w-full", i == null ? void 0 : i.className), children: /* @__PURE__ */ n(
24
- j,
21
+ const u = l != null && l !== "", p = !!(a || i), { containerRef: N, titleRef: h, slotsRef: v, actionsRef: y, isWrapped: c } = k([
22
+ l,
23
+ a,
24
+ i,
25
+ f,
26
+ o,
27
+ d
28
+ ]), g = !!(u || f || a || i);
29
+ return /* @__PURE__ */ n("div", { className: m("OwpSection-root flex h-full w-full flex-col", r), children: [
30
+ g && (x ? /* @__PURE__ */ n("div", { className: "OwpSection-header", children: [
31
+ /* @__PURE__ */ e("div", { ...s, className: m("w-full", s == null ? void 0 : s.className), children: /* @__PURE__ */ e(
32
+ B,
25
33
  {
26
- title: m,
27
- leftSlot: d,
28
- centerSlot: a,
29
- actions: c
34
+ title: l,
35
+ leftSlot: a,
36
+ centerSlot: i,
37
+ actions: f
30
38
  }
31
39
  ) }),
32
- /* @__PURE__ */ n(h, { className: "my-12" })
33
- ] }) : /* @__PURE__ */ l("div", { className: "flex w-full justify-between items-center mb-12 min-h-36", children: [
34
- /* @__PURE__ */ l("div", { ...i, className: v("flex items-center gap-8", i == null ? void 0 : i.className), children: [
35
- m && /* @__PURE__ */ l(w, { children: [
36
- !x && /* @__PURE__ */ n(
37
- b,
40
+ /* @__PURE__ */ e(R, { className: "my-12" })
41
+ ] }) : /* @__PURE__ */ e("div", { className: "OwpSection-header mb-12 min-h-36 w-full", children: /* @__PURE__ */ n(
42
+ "div",
43
+ {
44
+ ref: N,
45
+ ...s,
46
+ className: m(
47
+ "min-h-36 w-full",
48
+ c ? "flex flex-col gap-8" : "grid grid-cols-[auto_minmax(0,1fr)_auto] items-center gap-x-8 gap-y-8",
49
+ s == null ? void 0 : s.className
50
+ ),
51
+ children: [
52
+ l && /* @__PURE__ */ n(
53
+ "div",
38
54
  {
39
- fontSize: f,
40
- sx: { fontSize: f ? void 0 : 24, color: "secondary.main" }
55
+ ref: h,
56
+ className: m(
57
+ "flex shrink-0 items-center gap-8 whitespace-nowrap",
58
+ c ? "order-1 self-start" : "col-start-1"
59
+ ),
60
+ children: [
61
+ !o && /* @__PURE__ */ e(
62
+ O,
63
+ {
64
+ className: "shrink-0",
65
+ fontSize: d,
66
+ sx: { fontSize: d ? void 0 : 24, color: "secondary.main" }
67
+ }
68
+ ),
69
+ /* @__PURE__ */ e("h6", { className: "shrink-0 whitespace-nowrap text-2xl font-medium", children: l })
70
+ ]
41
71
  }
42
72
  ),
43
- /* @__PURE__ */ n("h6", { className: "text-2xl font-medium", children: m })
44
- ] }),
45
- d && /* @__PURE__ */ n("div", { children: d })
46
- ] }),
47
- c && /* @__PURE__ */ n("div", { className: "space-x-8", children: c })
48
- ] })),
49
- r
73
+ p && /* @__PURE__ */ e(
74
+ "div",
75
+ {
76
+ ref: v,
77
+ className: m(
78
+ "flex max-w-full",
79
+ c ? "order-2 self-end justify-end" : "col-start-2 justify-self-center"
80
+ ),
81
+ children: /* @__PURE__ */ n(
82
+ "div",
83
+ {
84
+ className: m(
85
+ "flex max-w-full items-center gap-8",
86
+ c ? "flex-wrap justify-end" : "flex-nowrap justify-center"
87
+ ),
88
+ children: [
89
+ a && /* @__PURE__ */ e("div", { className: "max-w-full", children: a }),
90
+ i && /* @__PURE__ */ e("div", { className: "max-w-full", children: i })
91
+ ]
92
+ }
93
+ )
94
+ }
95
+ ),
96
+ f && /* @__PURE__ */ e(
97
+ "div",
98
+ {
99
+ ref: y,
100
+ className: m(
101
+ "flex max-w-full justify-end",
102
+ c ? "order-3 self-end" : "col-start-3 justify-self-end"
103
+ ),
104
+ children: /* @__PURE__ */ e("div", { className: "flex max-w-full flex-wrap items-center gap-8", children: f })
105
+ }
106
+ )
107
+ ]
108
+ }
109
+ ) })),
110
+ /* @__PURE__ */ e("div", { className: "OwpSection-body flex min-h-0 flex-1 flex-col", children: t })
50
111
  ] });
51
112
  }, "OwpSection");
52
113
  export {
53
- R as OwpSection
114
+ z as OwpSection
54
115
  };
55
116
  //# sourceMappingURL=OwpSection.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"OwpSection.js","sources":["../../../src/components/OwpSection/OwpSection.tsx"],"sourcesContent":["import FitbitIcon from '@mui/icons-material/Fitbit';\nimport { Divider, IconProps } from '@mui/material';\nimport clsx from 'clsx';\nimport type { HTMLAttributes, ReactNode } from 'react';\nimport { OwpPageTitle } from '../OwpPageTitle';\n\ninterface OwpSectionProps {\n className?: string;\n headerProps?: HTMLAttributes<HTMLDivElement>;\n disableTitleIcon?: boolean;\n usePageTitle?: boolean;\n title?: ReactNode;\n actions?: ReactNode;\n leftSlot?: ReactNode;\n centerSlot?: ReactNode;\n children?: ReactNode;\n iconSize?: IconProps['fontSize'];\n}\n\n/**\n * OwpSection 컴포넌트\n * @param className CSS 클래스명\n * @param title 제목\n * @param disableTitleIcon disableTitleIcon 값\n * @param headerProps headerProps props\n * @param usePageTitle usePageTitle 값\n * @param actions 액션 영역\n */\nconst OwpSection = ({\n className,\n title,\n disableTitleIcon,\n headerProps,\n usePageTitle,\n actions,\n leftSlot,\n centerSlot,\n children,\n iconSize,\n}: OwpSectionProps) => {\n const hasTitle = title !== undefined && title !== null && title !== '';\n const shouldRenderHeader = usePageTitle\n ? Boolean(hasTitle || actions || leftSlot || centerSlot)\n : Boolean(title || actions);\n\n return (\n <div className={className}>\n {shouldRenderHeader &&\n (usePageTitle ? (\n <div>\n <div {...headerProps} className={clsx('w-full', headerProps?.className)}>\n <OwpPageTitle\n title={title}\n leftSlot={leftSlot}\n centerSlot={centerSlot}\n actions={actions}\n />\n </div>\n <Divider className=\"my-12\" />\n </div>\n ) : (\n <div className=\"flex w-full justify-between items-center mb-12 min-h-36\">\n <div {...headerProps} className={clsx('flex items-center gap-8', headerProps?.className)}>\n {title && (\n <>\n {!disableTitleIcon && (\n <FitbitIcon\n fontSize={iconSize}\n sx={{ fontSize: iconSize ? undefined : 24, color: 'secondary.main' }}\n />\n )}\n <h6 className=\"text-2xl font-medium\">{title}</h6>\n </>\n )}\n {leftSlot && <div>{leftSlot}</div>}\n </div>\n {actions && <div className=\"space-x-8\">{actions}</div>}\n </div>\n ))}\n {children}\n </div>\n );\n};\n\nexport { OwpSection };\n"],"names":["OwpSection","__name","className","title","disableTitleIcon","headerProps","usePageTitle","actions","leftSlot","centerSlot","children","iconSize","hasTitle","jsxs","jsx","clsx","OwpPageTitle","Divider","Fragment","FitbitIcon"],"mappings":";;;;;;;AA4BA,MAAMA,IAAa,gBAAAC,EAAA,CAAC;AAAA,EAClB,WAAAC;AAAA,EACA,OAAAC;AAAA,EACA,kBAAAC;AAAA,EACA,aAAAC;AAAA,EACA,cAAAC;AAAA,EACA,SAAAC;AAAA,EACA,UAAAC;AAAA,EACA,YAAAC;AAAA,EACA,UAAAC;AAAA,EACA,UAAAC;AACF,MAAuB;AACrB,QAAMC,IAAkCT,KAAU,QAAQA,MAAU;AAKpE,SACE,gBAAAU,EAAC,SAAI,WAAAX,GACF,UAAA;AAAA,KANsBI,IACvB,GAAQM,KAAYL,KAAWC,KAAYC,KAC3C,GAAQN,KAASI,QAKdD,sBACE,OAAA,EACC,UAAA;AAAA,MAAA,gBAAAQ,EAAC,OAAA,EAAK,GAAGT,GAAa,WAAWU,EAAK,UAAUV,KAAA,gBAAAA,EAAa,SAAS,GACpE,UAAA,gBAAAS;AAAA,QAACE;AAAA,QAAA;AAAA,UACC,OAAAb;AAAA,UACA,UAAAK;AAAA,UACA,YAAAC;AAAA,UACA,SAAAF;AAAA,QAAA;AAAA,MAAA,GAEJ;AAAA,MACA,gBAAAO,EAACG,GAAA,EAAQ,WAAU,QAAA,CAAQ;AAAA,IAAA,EAAA,CAC7B,IAEA,gBAAAJ,EAAC,OAAA,EAAI,WAAU,2DACb,UAAA;AAAA,MAAA,gBAAAA,EAAC,OAAA,EAAK,GAAGR,GAAa,WAAWU,EAAK,2BAA2BV,KAAA,gBAAAA,EAAa,SAAS,GACpF,UAAA;AAAA,QAAAF,KACC,gBAAAU,EAAAK,GAAA,EACG,UAAA;AAAA,UAAA,CAACd,KACA,gBAAAU;AAAA,YAACK;AAAA,YAAA;AAAA,cACC,UAAUR;AAAA,cACV,IAAI,EAAE,UAAUA,IAAW,SAAY,IAAI,OAAO,iBAAA;AAAA,YAAiB;AAAA,UAAA;AAAA,UAGvE,gBAAAG,EAAC,MAAA,EAAG,WAAU,wBAAwB,UAAAX,EAAA,CAAM;AAAA,QAAA,GAC9C;AAAA,QAEDK,KAAY,gBAAAM,EAAC,OAAA,EAAK,UAAAN,EAAA,CAAS;AAAA,MAAA,GAC9B;AAAA,MACCD,KAAW,gBAAAO,EAAC,OAAA,EAAI,WAAU,aAAa,UAAAP,EAAA,CAAQ;AAAA,IAAA,EAAA,CAClD;AAAA,IAEHG;AAAA,EAAA,GACH;AAEJ,GAtDmB;"}
1
+ {"version":3,"file":"OwpSection.js","sources":["../../../src/components/OwpSection/OwpSection.tsx"],"sourcesContent":["import FitbitIcon from '@mui/icons-material/Fitbit';\nimport { Divider, type IconProps } from '@mui/material';\nimport { useHeaderWrapState } from '@/hooks/useHeaderWrapState';\nimport clsx from 'clsx';\nimport type { HTMLAttributes, ReactNode } from 'react';\nimport { OwpPageTitle } from '../OwpPageTitle';\n\ninterface OwpSectionProps {\n className?: string;\n headerProps?: HTMLAttributes<HTMLDivElement>;\n disableTitleIcon?: boolean;\n usePageTitle?: boolean;\n title?: ReactNode;\n actions?: ReactNode;\n leftSlot?: ReactNode;\n centerSlot?: ReactNode;\n children?: ReactNode;\n iconSize?: IconProps['fontSize'];\n}\n\n/**\n * OwpSection 컴포넌트\n * @param className CSS 클래스명\n * @param title 제목\n * @param disableTitleIcon disableTitleIcon 값\n * @param headerProps headerProps props\n * @param usePageTitle usePageTitle 값\n * @param leftSlot leftSlot 값\n * @param centerSlot centerSlot 값\n * @param actions 액션 영역\n */\nconst OwpSection = ({\n className,\n title,\n disableTitleIcon,\n headerProps,\n usePageTitle,\n actions,\n leftSlot,\n centerSlot,\n children,\n iconSize,\n}: OwpSectionProps) => {\n const hasTitle = title !== undefined && title !== null && title !== '';\n const hasSlots = Boolean(leftSlot || centerSlot);\n const { containerRef, titleRef, slotsRef, actionsRef, isWrapped } = useHeaderWrapState([\n title,\n leftSlot,\n centerSlot,\n actions,\n disableTitleIcon,\n iconSize,\n ]);\n const shouldRenderHeader = usePageTitle\n ? Boolean(hasTitle || actions || leftSlot || centerSlot)\n : Boolean(hasTitle || actions || leftSlot || centerSlot);\n\n return (\n <div className={clsx('OwpSection-root flex h-full w-full flex-col', className)}>\n {shouldRenderHeader &&\n (usePageTitle ? (\n <div className=\"OwpSection-header\">\n <div {...headerProps} className={clsx('w-full', headerProps?.className)}>\n <OwpPageTitle\n title={title}\n leftSlot={leftSlot}\n centerSlot={centerSlot}\n actions={actions}\n />\n </div>\n <Divider className=\"my-12\" />\n </div>\n ) : (\n <div className=\"OwpSection-header mb-12 min-h-36 w-full\">\n <div\n ref={containerRef}\n {...headerProps}\n className={clsx(\n 'min-h-36 w-full',\n isWrapped\n ? 'flex flex-col gap-8'\n : 'grid grid-cols-[auto_minmax(0,1fr)_auto] items-center gap-x-8 gap-y-8',\n headerProps?.className,\n )}\n >\n {title && (\n <div\n ref={titleRef}\n className={clsx(\n 'flex shrink-0 items-center gap-8 whitespace-nowrap',\n isWrapped ? 'order-1 self-start' : 'col-start-1',\n )}\n >\n {!disableTitleIcon && (\n <FitbitIcon\n className=\"shrink-0\"\n fontSize={iconSize}\n sx={{ fontSize: iconSize ? undefined : 24, color: 'secondary.main' }}\n />\n )}\n <h6 className=\"shrink-0 whitespace-nowrap text-2xl font-medium\">{title}</h6>\n </div>\n )}\n {hasSlots && (\n <div\n ref={slotsRef}\n className={clsx(\n 'flex max-w-full',\n isWrapped ? 'order-2 self-end justify-end' : 'col-start-2 justify-self-center',\n )}\n >\n <div\n className={clsx(\n 'flex max-w-full items-center gap-8',\n isWrapped ? 'flex-wrap justify-end' : 'flex-nowrap justify-center',\n )}\n >\n {leftSlot && <div className=\"max-w-full\">{leftSlot}</div>}\n {centerSlot && <div className=\"max-w-full\">{centerSlot}</div>}\n </div>\n </div>\n )}\n {actions && (\n <div\n ref={actionsRef}\n className={clsx(\n 'flex max-w-full justify-end',\n isWrapped ? 'order-3 self-end' : 'col-start-3 justify-self-end',\n )}\n >\n <div className=\"flex max-w-full flex-wrap items-center gap-8\">{actions}</div>\n </div>\n )}\n </div>\n </div>\n ))}\n <div className=\"OwpSection-body flex min-h-0 flex-1 flex-col\">{children}</div>\n </div>\n );\n};\n\nexport { OwpSection };\n"],"names":["OwpSection","__name","className","title","disableTitleIcon","headerProps","usePageTitle","actions","leftSlot","centerSlot","children","iconSize","hasTitle","hasSlots","containerRef","titleRef","slotsRef","actionsRef","isWrapped","useHeaderWrapState","shouldRenderHeader","clsx","jsxs","jsx","OwpPageTitle","Divider","FitbitIcon"],"mappings":"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"}