ui-mathilde-web 0.13.3 → 0.13.5

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.
@@ -53,6 +53,8 @@ export declare const AiChatSvgIcon: ({ size, width, height, color, style, ...pro
53
53
 
54
54
  export declare const Alert: ({ isOpen, onConfirm, onCancel, onClose, ...options }: AlertProps) => null;
55
55
 
56
+ export declare const AlertCircleSvgIcon: ({ size, width, height, color, style, ...props }: SvgIconBaseProps) => JSX_2.Element;
57
+
56
58
  declare type AlertIcon = "success" | "error" | "warning" | "info" | "question";
57
59
 
58
60
  /**
@@ -188,6 +190,8 @@ declare interface ButtonFormatProps {
188
190
  iconSize?: number;
189
191
  }
190
192
 
193
+ export declare const CancelSquareSvgIcon: ({ size, width, height, color, style, ...props }: SvgIconBaseProps) => JSX_2.Element;
194
+
191
195
  export declare const Card: ForwardRefExoticComponent<CardProps & RefAttributes<HTMLDivElement>>;
192
196
 
193
197
  export declare const CardIndicator: React.FC<CardIndicatorProps>;
@@ -262,6 +266,8 @@ declare interface CheckboxProps {
262
266
  icono?: string;
263
267
  }
264
268
 
269
+ export declare const CheckmarkCircleSvgIcon: ({ size, width, height, color, style, ...props }: SvgIconBaseProps) => JSX_2.Element;
270
+
265
271
  export declare const CheckmarkSvgIcon: ({ size, width, height, color, style, ...props }: SvgIconBaseProps) => JSX_2.Element;
266
272
 
267
273
  declare interface ChipColors {
@@ -525,20 +531,7 @@ declare interface DropzoneProps {
525
531
  disabled?: boolean;
526
532
  }
527
533
 
528
- /** Variables CSS leídas por el SVG (útiles desde Tailwind: `[--mth-edit-surface:#…]`) */
529
- export declare const EDIT_ICON_CSS_VARS: {
530
- readonly surface: "--mth-edit-surface";
531
- readonly ink: "--mth-edit-ink";
532
- };
533
-
534
- export declare const EditSvgIcon: ({ size, width, height, color, style, surfaceColor, inkColor, ...props }: EditSvgIconProps) => JSX_2.Element;
535
-
536
- export declare type EditSvgIconProps = SvgIconBaseProps & {
537
- /** Color del fondo redondeado (rect). */
538
- surfaceColor?: string;
539
- /** Color del lápiz (paths / line). Si no se pasa, se usa `color` del SVG si existe. */
540
- inkColor?: string;
541
- };
534
+ export declare const EditSvgIcon: ({ size, width, height, color, style, ...props }: SvgIconBaseProps) => JSX_2.Element;
542
535
 
543
536
  export declare const FacebookIcon: {
544
537
  ({ size, width, height, alt, ...props }: IconBaseProps_2): JSX_2.Element;