@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.esm.js
CHANGED
|
@@ -23567,7 +23567,7 @@ var WidgetNotFound = function WidgetNotFound(_ref) {
|
|
|
23567
23567
|
width: "w-1/3",
|
|
23568
23568
|
height: "auto",
|
|
23569
23569
|
children: /*#__PURE__*/jsxs("div", {
|
|
23570
|
-
className: "relative",
|
|
23570
|
+
className: "relative max-h-[80vh] flex flex-col",
|
|
23571
23571
|
children: [/*#__PURE__*/jsx("button", {
|
|
23572
23572
|
type: "button",
|
|
23573
23573
|
className: "absolute top-3 right-3 z-10 text-gray-500 hover:text-gray-300 transition-colors",
|
|
@@ -23582,11 +23582,14 @@ var WidgetNotFound = function WidgetNotFound(_ref) {
|
|
|
23582
23582
|
icon: "spinner",
|
|
23583
23583
|
className: "h-5 w-5 text-gray-400 animate-spin"
|
|
23584
23584
|
})
|
|
23585
|
-
}), !isLoading && registryWidget && /*#__PURE__*/jsx(
|
|
23586
|
-
|
|
23587
|
-
|
|
23588
|
-
|
|
23589
|
-
|
|
23585
|
+
}), !isLoading && registryWidget && /*#__PURE__*/jsx("div", {
|
|
23586
|
+
className: "overflow-y-auto flex-1 min-h-0",
|
|
23587
|
+
children: /*#__PURE__*/jsx(RegistryPackageDetail, {
|
|
23588
|
+
widget: registryWidget,
|
|
23589
|
+
onInstall: handleInstall,
|
|
23590
|
+
isInstalling: isInstalling,
|
|
23591
|
+
installError: installError
|
|
23592
|
+
})
|
|
23590
23593
|
}), !isLoading && notFound && /*#__PURE__*/jsxs("div", {
|
|
23591
23594
|
className: "flex flex-col items-center justify-center gap-3 p-12 text-center",
|
|
23592
23595
|
children: [/*#__PURE__*/jsx(FontAwesomeIcon, {
|