@mieweb/ui 0.3.0-dev.94 → 0.3.0-dev.95

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.cjs CHANGED
@@ -32999,7 +32999,7 @@ function ServiceGeneralSettings({
32999
32999
  {
33000
33000
  className: "rounded-lg border border-red-200 bg-red-50 p-3 dark:border-red-800 dark:bg-red-900/20",
33001
33001
  "data-slot": "service-settings-error",
33002
- children: /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-red-600 dark:text-red-400", children: errorMessage })
33002
+ children: /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm text-red-700 dark:text-red-400", children: errorMessage })
33003
33003
  }
33004
33004
  ),
33005
33005
  /* @__PURE__ */ jsxRuntime.jsxs(
@@ -33009,14 +33009,28 @@ function ServiceGeneralSettings({
33009
33009
  "data-slot": "service-settings-toggles",
33010
33010
  children: [
33011
33011
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
33012
- /* @__PURE__ */ jsxRuntime.jsx(chunkNVHAQOHH_cjs.Switch, { checked: isActive, onCheckedChange: onIsActiveChange }),
33012
+ /* @__PURE__ */ jsxRuntime.jsx(
33013
+ chunkNVHAQOHH_cjs.Switch,
33014
+ {
33015
+ "aria-label": "Active",
33016
+ checked: isActive,
33017
+ onCheckedChange: onIsActiveChange
33018
+ }
33019
+ ),
33013
33020
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
33014
33021
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm font-medium text-gray-900 dark:text-white", children: "Active" }),
33015
33022
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-muted-foreground text-xs", children: "Service is available for orders" })
33016
33023
  ] })
33017
33024
  ] }),
33018
33025
  /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex items-center gap-3", children: [
33019
- /* @__PURE__ */ jsxRuntime.jsx(chunkNVHAQOHH_cjs.Switch, { checked: isFeatured, onCheckedChange: onIsFeaturedChange }),
33026
+ /* @__PURE__ */ jsxRuntime.jsx(
33027
+ chunkNVHAQOHH_cjs.Switch,
33028
+ {
33029
+ "aria-label": "Featured",
33030
+ checked: isFeatured,
33031
+ onCheckedChange: onIsFeaturedChange
33032
+ }
33033
+ ),
33020
33034
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
33021
33035
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-sm font-medium text-gray-900 dark:text-white", children: "Featured" }),
33022
33036
  /* @__PURE__ */ jsxRuntime.jsx("p", { className: "text-muted-foreground text-xs", children: "Show prominently in listings" })