@quintara.ai/ui 0.0.2 → 0.0.4
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/components.d.ts +7 -2
- package/dist/components.esm.js +37 -30
- package/dist/components.esm.js.map +1 -1
- package/dist/components.js +34 -27
- package/dist/components.js.map +1 -1
- package/dist/index.d.ts +15 -3
- package/dist/index.esm.js +236 -229
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +165 -158
- package/dist/index.js.map +1 -1
- package/dist/utils.d.ts +8 -1
- package/dist/utils.esm.js +1 -1
- package/dist/utils.esm.js.map +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -26,6 +26,8 @@ interface IconsProps extends SVGProps<SVGSVGElement> {
|
|
|
26
26
|
classes?: string;
|
|
27
27
|
type?: IconType;
|
|
28
28
|
wsvg?: number;
|
|
29
|
+
color?: string;
|
|
30
|
+
stroke?: string;
|
|
29
31
|
containerProps?: SuperCSSProps;
|
|
30
32
|
component?: ReactNode | null;
|
|
31
33
|
}
|
|
@@ -55,7 +57,7 @@ declare const _default$l: React.MemoExoticComponent<({ title, message, }: {
|
|
|
55
57
|
|
|
56
58
|
type InputRole = "input" | "textarea";
|
|
57
59
|
type InputAlign = "left" | "center" | "right";
|
|
58
|
-
type InputType = "text" | "password" | "email" | "tel" | "number" | "curp" | "calendar";
|
|
60
|
+
type InputType = "text" | "password" | "email" | "tel" | "number" | "curp" | "calendar" | "otp";
|
|
59
61
|
interface InputProps extends Omit<HTMLAttributes<HTMLDivElement>, "onCopy" | "onPaste" | "onChange"> {
|
|
60
62
|
isSlug?: boolean;
|
|
61
63
|
placeholder?: string;
|
|
@@ -91,6 +93,7 @@ interface InputProps extends Omit<HTMLAttributes<HTMLDivElement>, "onCopy" | "on
|
|
|
91
93
|
autoComplete?: boolean;
|
|
92
94
|
align?: InputAlign;
|
|
93
95
|
styles?: CSSProperties;
|
|
96
|
+
inputStyles?: SuperCSSProps;
|
|
94
97
|
height?: number;
|
|
95
98
|
suffix?: ReactNode;
|
|
96
99
|
}
|
|
@@ -329,6 +332,7 @@ declare const _default$b: React.NamedExoticComponent<ImageProps>;
|
|
|
329
332
|
type ObjectFit = "contain" | "cover" | "fill" | "none" | "scale-down";
|
|
330
333
|
interface VideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, "style"> {
|
|
331
334
|
src?: string;
|
|
335
|
+
alt?: string;
|
|
332
336
|
title?: string;
|
|
333
337
|
type?: string;
|
|
334
338
|
controls?: boolean;
|
|
@@ -345,10 +349,11 @@ interface VideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, "style"
|
|
|
345
349
|
persistAutoplay?: boolean;
|
|
346
350
|
fetchpriority?: "high" | "low" | "auto";
|
|
347
351
|
preload?: "none" | "metadata" | "auto";
|
|
352
|
+
lazy?: boolean;
|
|
348
353
|
style?: SuperCSSProps;
|
|
349
354
|
}
|
|
350
355
|
|
|
351
|
-
declare const _default$a: React.MemoExoticComponent<({ src, title, type, controls, autoPlay, muted, loop, className, containerStyles, videoStyles, fit, poster, id, name, persistAutoplay, ...props }: VideoProps) => react_jsx_runtime.JSX.Element>;
|
|
356
|
+
declare const _default$a: React.MemoExoticComponent<({ src, title, type, controls, autoPlay, muted, loop, className, containerStyles, videoStyles, fit, poster, id, name, persistAutoplay, lazy, ...props }: VideoProps) => react_jsx_runtime.JSX.Element>;
|
|
352
357
|
|
|
353
358
|
interface BoxProps extends HTMLAttributes<HTMLDivElement> {
|
|
354
359
|
children: ReactNode;
|