@kodiak-finance/orderly-ui-scaffold 2.8.21-rc.2 → 2.8.22-beta.0
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/index.js +22 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -4257,20 +4257,28 @@ var DesktopScaffold = (props) => {
|
|
|
4257
4257
|
classNames?.container
|
|
4258
4258
|
),
|
|
4259
4259
|
children: [
|
|
4260
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
|
|
4271
|
-
|
|
4272
|
-
|
|
4273
|
-
|
|
4260
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
4261
|
+
orderlyUi.Box,
|
|
4262
|
+
{
|
|
4263
|
+
px: 2,
|
|
4264
|
+
ref: announcementRef,
|
|
4265
|
+
className: orderlyUi.cn("oui-space-y-2", "oui-mt-2"),
|
|
4266
|
+
children: [
|
|
4267
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4268
|
+
exports.RestrictedInfoWidget,
|
|
4269
|
+
{
|
|
4270
|
+
className: orderlyUi.cn(
|
|
4271
|
+
"oui-scaffold-restricted-info",
|
|
4272
|
+
"oui-relative oui-z-[1]",
|
|
4273
|
+
"oui-bg-base-9",
|
|
4274
|
+
"oui-min-w-[994px]"
|
|
4275
|
+
)
|
|
4276
|
+
}
|
|
4277
|
+
),
|
|
4278
|
+
/* @__PURE__ */ jsxRuntime.jsx(NotificationWidget, { className: "oui-mx-auto" })
|
|
4279
|
+
]
|
|
4280
|
+
}
|
|
4281
|
+
),
|
|
4274
4282
|
!hasLeftSidebar ? (
|
|
4275
4283
|
// ----------No leftSidebar layout start ---------
|
|
4276
4284
|
/* @__PURE__ */ jsxRuntime.jsx(orderlyUi.Box, { height: "100%", className: orderlyUi.cn(classNames?.content), children })
|