@trops/dash-core 0.1.132 → 0.1.133
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 +1485 -1345
- package/dist/electron/index.js.map +1 -1
- package/dist/index.esm.js +30 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -3603,6 +3603,36 @@ var RegistryDashboardDetail = function RegistryDashboardDetail(_ref) {
|
|
|
3603
3603
|
children: tag
|
|
3604
3604
|
}, tag);
|
|
3605
3605
|
})
|
|
3606
|
+
}), pkg.theme && /*#__PURE__*/jsxs("div", {
|
|
3607
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
3608
|
+
className: "text-xs font-semibold opacity-50 mb-1 block",
|
|
3609
|
+
children: "INCLUDES THEME"
|
|
3610
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
3611
|
+
className: "p-3 rounded ".concat(currentTheme["bg-primary-medium"], " flex items-center gap-3"),
|
|
3612
|
+
children: [/*#__PURE__*/jsx(FontAwesomeIcon, {
|
|
3613
|
+
icon: "palette",
|
|
3614
|
+
className: "h-4 w-4 opacity-60"
|
|
3615
|
+
}), /*#__PURE__*/jsxs("div", {
|
|
3616
|
+
className: "flex-1",
|
|
3617
|
+
children: [/*#__PURE__*/jsx("span", {
|
|
3618
|
+
className: "text-sm font-medium",
|
|
3619
|
+
children: pkg.theme.name || pkg.theme.key || "Bundled Theme"
|
|
3620
|
+
}), /*#__PURE__*/jsx("span", {
|
|
3621
|
+
className: "text-xs opacity-40 ml-2",
|
|
3622
|
+
children: "Will be auto-installed"
|
|
3623
|
+
})]
|
|
3624
|
+
}), pkg.theme.colors && /*#__PURE__*/jsx("div", {
|
|
3625
|
+
className: "flex items-center gap-1",
|
|
3626
|
+
children: [pkg.theme.colors.primary, pkg.theme.colors.secondary, pkg.theme.colors.tertiary].filter(Boolean).map(function (color, i) {
|
|
3627
|
+
return /*#__PURE__*/jsx("div", {
|
|
3628
|
+
className: "h-4 w-4 rounded-full border border-white/20",
|
|
3629
|
+
style: {
|
|
3630
|
+
backgroundColor: color
|
|
3631
|
+
}
|
|
3632
|
+
}, i);
|
|
3633
|
+
})
|
|
3634
|
+
})]
|
|
3635
|
+
})]
|
|
3606
3636
|
}), /*#__PURE__*/jsxs("div", {
|
|
3607
3637
|
children: [/*#__PURE__*/jsx("span", {
|
|
3608
3638
|
className: "text-xs font-semibold opacity-50 mb-1 block",
|