@trops/dash-core 0.1.214 → 0.1.215

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 CHANGED
@@ -5979,7 +5979,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
5979
5979
  className: "text-sm font-semibold text-gray-300 flex items-center gap-2",
5980
5980
  children: ["Dashboards (", filteredDashboards.length, " result", filteredDashboards.length !== 1 ? "s" : "", ")"]
5981
5981
  }), /*#__PURE__*/jsxRuntime.jsx("div", {
5982
- className: "grid grid-cols-2 gap-3",
5982
+ className: "grid grid-cols-2 lg:grid-cols-3 gap-3",
5983
5983
  children: filteredDashboards.map(function (dash) {
5984
5984
  var isSelected = state.selectedDashboard && state.selectedDashboard.name === dash.name;
5985
5985
  var widgetCount = (dash.widgets || []).length;
@@ -6030,7 +6030,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
6030
6030
  text: "".concat(state.selectedWidgets.length, " selected")
6031
6031
  })]
6032
6032
  }), /*#__PURE__*/jsxRuntime.jsx("div", {
6033
- className: "grid grid-cols-2 gap-3",
6033
+ className: "grid grid-cols-2 lg:grid-cols-3 gap-3",
6034
6034
  children: filteredWidgets.map(function (widget) {
6035
6035
  var checked = isWidgetSelected(widget);
6036
6036
  return /*#__PURE__*/jsxRuntime.jsx(DashReact.Card2, {
@@ -7233,7 +7233,7 @@ var DashboardWizardModal = function DashboardWizardModal(_ref) {
7233
7233
  return /*#__PURE__*/jsxRuntime.jsx(DashReact.Modal, {
7234
7234
  isOpen: open,
7235
7235
  setIsOpen: setIsOpen,
7236
- width: "w-5/6",
7236
+ width: "w-full max-w-5xl",
7237
7237
  height: "h-5/6",
7238
7238
  children: /*#__PURE__*/jsxRuntime.jsxs("div", {
7239
7239
  className: "flex flex-col h-full bg-gray-900 rounded-lg overflow-hidden",