@fileverse/ui 4.1.7-patch-20 → 4.1.7-patch-22

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.css CHANGED
@@ -634,6 +634,9 @@ video {
634
634
  }
635
635
  * {
636
636
  border-color: hsl(var(--color-border-default));
637
+ -webkit-font-smoothing: antialiased;
638
+ -moz-osx-font-smoothing: grayscale;
639
+ text-rendering: optimizeLegibility;
637
640
  }
638
641
  body {
639
642
  color: hsl(var(--color-text-default));
@@ -882,7 +885,7 @@ video {
882
885
  }
883
886
 
884
887
  .color-button-secondary {
885
- background-color: hsl(var(--color-button-ghost));
888
+ background-color: hsl(var(--color-button-secondary));
886
889
  border: 2px solid hsl(var(--color-border-active));
887
890
  }
888
891
 
@@ -1554,9 +1557,6 @@ video {
1554
1557
  .w-\[180px\] {
1555
1558
  width: 180px;
1556
1559
  }
1557
- .w-\[18px\] {
1558
- width: 18px;
1559
- }
1560
1560
  .w-\[200px\] {
1561
1561
  width: 200px;
1562
1562
  }
@@ -2226,9 +2226,6 @@ video {
2226
2226
  .p-6 {
2227
2227
  padding: 1.5rem;
2228
2228
  }
2229
- .p-\[4px\] {
2230
- padding: 4px;
2231
- }
2232
2229
  .\!px-0 {
2233
2230
  padding-left: 0px !important;
2234
2231
  padding-right: 0px !important;
@@ -159,12 +159,13 @@ export declare type CardSize = "sm" | "md" | "lg";
159
159
 
160
160
  export declare const CardTitle: React_2.ForwardRefExoticComponent<React_2.HTMLAttributes<HTMLHeadingElement> & React_2.RefAttributes<HTMLParagraphElement>>;
161
161
 
162
- export declare const Checkbox: ({ checked, onCheckedChange, className, disabled, ...props }: CheckboxProps) => JSX_2.Element;
162
+ export declare const Checkbox: ({ checked, onCheckedChange, className, disabled, size, ...props }: CheckboxProps) => JSX_2.Element;
163
163
 
164
164
  export declare interface CheckboxProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "onChange"> {
165
165
  onCheckedChange?: (event: default_2.ChangeEvent<HTMLInputElement>) => void;
166
166
  label?: string;
167
167
  labelPosition?: "left" | "right";
168
+ size?: number;
168
169
  }
169
170
 
170
171
  export declare function cn(...inputs: ClassValue[]): string;