@trops/dash-core 0.1.296 → 0.1.298
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/electron/index.js +47 -2
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +9 -6
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +9 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -23585,7 +23585,7 @@ var WidgetNotFound = function WidgetNotFound(_ref) {
|
|
|
23585
23585
|
width: "w-1/3",
|
|
23586
23586
|
height: "auto",
|
|
23587
23587
|
children: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
23588
|
-
className: "relative",
|
|
23588
|
+
className: "relative max-h-[80vh] flex flex-col",
|
|
23589
23589
|
children: [/*#__PURE__*/jsxRuntime.jsx("button", {
|
|
23590
23590
|
type: "button",
|
|
23591
23591
|
className: "absolute top-3 right-3 z-10 text-gray-500 hover:text-gray-300 transition-colors",
|
|
@@ -23600,11 +23600,14 @@ var WidgetNotFound = function WidgetNotFound(_ref) {
|
|
|
23600
23600
|
icon: "spinner",
|
|
23601
23601
|
className: "h-5 w-5 text-gray-400 animate-spin"
|
|
23602
23602
|
})
|
|
23603
|
-
}), !isLoading && registryWidget && /*#__PURE__*/jsxRuntime.jsx(
|
|
23604
|
-
|
|
23605
|
-
|
|
23606
|
-
|
|
23607
|
-
|
|
23603
|
+
}), !isLoading && registryWidget && /*#__PURE__*/jsxRuntime.jsx("div", {
|
|
23604
|
+
className: "overflow-y-auto flex-1 min-h-0",
|
|
23605
|
+
children: /*#__PURE__*/jsxRuntime.jsx(RegistryPackageDetail, {
|
|
23606
|
+
widget: registryWidget,
|
|
23607
|
+
onInstall: handleInstall,
|
|
23608
|
+
isInstalling: isInstalling,
|
|
23609
|
+
installError: installError
|
|
23610
|
+
})
|
|
23608
23611
|
}), !isLoading && notFound && /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
23609
23612
|
className: "flex flex-col items-center justify-center gap-3 p-12 text-center",
|
|
23610
23613
|
children: [/*#__PURE__*/jsxRuntime.jsx(DashReact.FontAwesomeIcon, {
|