@eqtylab/equality 1.1.5 → 1.1.7

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
@@ -329,21 +329,31 @@ var AlertDialogDescription = React15__namespace.forwardRef(({ className, ...prop
329
329
  }
330
330
  ));
331
331
  AlertDialogDescription.displayName = AlertDialogPrimitive__namespace.Description.displayName;
332
- var AlertDialogAction = React15__namespace.forwardRef(({ className, variant = "primary", size = "sm", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
332
+ var AlertDialogAction = React15__namespace.forwardRef(({ className, variant = "primary", size = "sm", prefix, suffix, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
333
333
  AlertDialogPrimitive__namespace.Action,
334
334
  {
335
335
  ref,
336
336
  className: cn(buttonVariants({ variant, size }), className),
337
- ...props
337
+ ...props,
338
+ children: [
339
+ prefix,
340
+ children,
341
+ suffix
342
+ ]
338
343
  }
339
344
  ));
340
345
  AlertDialogAction.displayName = AlertDialogPrimitive__namespace.Action.displayName;
341
- var AlertDialogCancel = React15__namespace.forwardRef(({ className, variant = "tertiary", size = "sm", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
346
+ var AlertDialogCancel = React15__namespace.forwardRef(({ className, variant = "tertiary", size = "sm", prefix, suffix, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
342
347
  AlertDialogPrimitive__namespace.Cancel,
343
348
  {
344
349
  ref,
345
350
  className: cn(buttonVariants({ variant, size }), styles3__default.default["alert-dialog-cancel"], className),
346
- ...props
351
+ ...props,
352
+ children: [
353
+ prefix,
354
+ children,
355
+ suffix
356
+ ]
347
357
  }
348
358
  ));
349
359
  AlertDialogCancel.displayName = AlertDialogPrimitive__namespace.Cancel.displayName;
@@ -3213,7 +3223,7 @@ var getStatusConfig = (status) => {
3213
3223
  };
3214
3224
  case "non-compliant":
3215
3225
  return {
3216
- icon: "X",
3226
+ icon: "TriangleAlert",
3217
3227
  className: styles59__default.default["badge--non-compliant"],
3218
3228
  label: "Non-compliant"
3219
3229
  };