@trycompai/design-system 1.0.16 → 1.0.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycompai/design-system",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "description": "Design system for Comp AI - shadcn-style components with Tailwind CSS",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -79,7 +79,7 @@ function AlertDialogTitle({
79
79
  return (
80
80
  <AlertDialogPrimitive.Title
81
81
  data-slot="alert-dialog-title"
82
- className="text-sm font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2"
82
+ className="text-sm font-semibold sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2"
83
83
  {...props}
84
84
  />
85
85
  );
@@ -91,7 +91,7 @@ function AlertDialogDescription({
91
91
  return (
92
92
  <AlertDialogPrimitive.Description
93
93
  data-slot="alert-dialog-description"
94
- className="text-muted-foreground *:[a]:hover:text-foreground text-sm text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3"
94
+ className="text-muted-foreground font-normal *:[a]:hover:text-foreground text-sm text-balance md:text-pretty *:[a]:underline *:[a]:underline-offset-3"
95
95
  {...props}
96
96
  />
97
97
  );