@oneplatformdev/ui 0.0.1-beta.113 → 0.0.1-beta.115
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/Dialog/Dialog.mjs +3 -4
- package/LoadedIcon/index.d.ts +1 -1
- package/package.json +1 -1
package/Dialog/Dialog.mjs
CHANGED
|
@@ -35,7 +35,6 @@ const u = l.forwardRef(({ className: a, children: t, showCloseButton: s = !0, on
|
|
|
35
35
|
s && /* @__PURE__ */ d(
|
|
36
36
|
e.Close,
|
|
37
37
|
{
|
|
38
|
-
tabIndex: 0,
|
|
39
38
|
"aria-label": "Close",
|
|
40
39
|
className: i(
|
|
41
40
|
"absolute right-4 top-4 rounded-sm ring-offset-background w-10 aspect-square",
|
|
@@ -98,7 +97,7 @@ const N = l.forwardRef(({ className: a, ...t }, s) => /* @__PURE__ */ o(
|
|
|
98
97
|
}
|
|
99
98
|
));
|
|
100
99
|
N.displayName = e.Title.displayName;
|
|
101
|
-
const
|
|
100
|
+
const D = l.forwardRef(({ className: a, ...t }, s) => /* @__PURE__ */ o(
|
|
102
101
|
e.Description,
|
|
103
102
|
{
|
|
104
103
|
ref: s,
|
|
@@ -106,12 +105,12 @@ const b = l.forwardRef(({ className: a, ...t }, s) => /* @__PURE__ */ o(
|
|
|
106
105
|
...t
|
|
107
106
|
}
|
|
108
107
|
));
|
|
109
|
-
|
|
108
|
+
D.displayName = e.Description.displayName;
|
|
110
109
|
export {
|
|
111
110
|
v as Dialog,
|
|
112
111
|
R as DialogClose,
|
|
113
112
|
u as DialogContent,
|
|
114
|
-
|
|
113
|
+
D as DialogDescription,
|
|
115
114
|
y as DialogFooter,
|
|
116
115
|
x as DialogHeader,
|
|
117
116
|
c as DialogOverlay,
|
package/LoadedIcon/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './LoadedIcon
|
|
1
|
+
export * from './LoadedIcon';
|