@rehagro/ui 1.0.34 → 1.0.35

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.mjs CHANGED
@@ -1294,7 +1294,9 @@ var descriptionSizeClasses = {
1294
1294
  var gapClasses = {
1295
1295
  sm: "rh-gap-2",
1296
1296
  md: "rh-gap-3",
1297
- lg: "rh-gap-4"
1297
+ lg: "rh-gap-4",
1298
+ xl: "rh-gap-5",
1299
+ xxl: "rh-gap-6"
1298
1300
  };
1299
1301
  var PRESET_COLORS3 = /* @__PURE__ */ new Set([
1300
1302
  "primary",
@@ -1361,16 +1363,7 @@ var Radio = forwardRef(function Radio2({
1361
1363
  ),
1362
1364
  (label || description) && /* @__PURE__ */ jsxs("span", { className: "rh-flex rh-flex-col", children: [
1363
1365
  label && /* @__PURE__ */ jsx("span", { className: ["rh-text-text", labelSizeClasses2[size]].join(" "), children: label }),
1364
- description && /* @__PURE__ */ jsx(
1365
- "span",
1366
- {
1367
- className: [
1368
- "rh-text-text-muted",
1369
- descriptionSizeClasses[size]
1370
- ].join(" "),
1371
- children: description
1372
- }
1373
- )
1366
+ description && /* @__PURE__ */ jsx("span", { className: ["rh-text-text-muted", descriptionSizeClasses[size]].join(" "), children: description })
1374
1367
  ] })
1375
1368
  ]
1376
1369
  }