@quintara.ai/ui 0.0.3 → 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 +6 -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 +14 -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
|
}
|
|
@@ -346,10 +349,11 @@ interface VideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, "style"
|
|
|
346
349
|
persistAutoplay?: boolean;
|
|
347
350
|
fetchpriority?: "high" | "low" | "auto";
|
|
348
351
|
preload?: "none" | "metadata" | "auto";
|
|
352
|
+
lazy?: boolean;
|
|
349
353
|
style?: SuperCSSProps;
|
|
350
354
|
}
|
|
351
355
|
|
|
352
|
-
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>;
|
|
353
357
|
|
|
354
358
|
interface BoxProps extends HTMLAttributes<HTMLDivElement> {
|
|
355
359
|
children: ReactNode;
|