@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.esm.js CHANGED
@@ -5961,7 +5961,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
5961
5961
  className: "text-sm font-semibold text-gray-300 flex items-center gap-2",
5962
5962
  children: ["Dashboards (", filteredDashboards.length, " result", filteredDashboards.length !== 1 ? "s" : "", ")"]
5963
5963
  }), /*#__PURE__*/jsx("div", {
5964
- className: "grid grid-cols-2 gap-3",
5964
+ className: "grid grid-cols-2 lg:grid-cols-3 gap-3",
5965
5965
  children: filteredDashboards.map(function (dash) {
5966
5966
  var isSelected = state.selectedDashboard && state.selectedDashboard.name === dash.name;
5967
5967
  var widgetCount = (dash.widgets || []).length;
@@ -6012,7 +6012,7 @@ var WizardDiscoverStep = function WizardDiscoverStep(_ref) {
6012
6012
  text: "".concat(state.selectedWidgets.length, " selected")
6013
6013
  })]
6014
6014
  }), /*#__PURE__*/jsx("div", {
6015
- className: "grid grid-cols-2 gap-3",
6015
+ className: "grid grid-cols-2 lg:grid-cols-3 gap-3",
6016
6016
  children: filteredWidgets.map(function (widget) {
6017
6017
  var checked = isWidgetSelected(widget);
6018
6018
  return /*#__PURE__*/jsx(Card2, {
@@ -7215,7 +7215,7 @@ var DashboardWizardModal = function DashboardWizardModal(_ref) {
7215
7215
  return /*#__PURE__*/jsx(Modal, {
7216
7216
  isOpen: open,
7217
7217
  setIsOpen: setIsOpen,
7218
- width: "w-5/6",
7218
+ width: "w-full max-w-5xl",
7219
7219
  height: "h-5/6",
7220
7220
  children: /*#__PURE__*/jsxs("div", {
7221
7221
  className: "flex flex-col h-full bg-gray-900 rounded-lg overflow-hidden",