@quintara.ai/ui 0.0.2 → 0.0.3
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/components.d.ts
CHANGED
|
@@ -329,6 +329,7 @@ declare const _default$b: React.NamedExoticComponent<ImageProps>;
|
|
|
329
329
|
type ObjectFit = "contain" | "cover" | "fill" | "none" | "scale-down";
|
|
330
330
|
interface VideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, "style"> {
|
|
331
331
|
src?: string;
|
|
332
|
+
alt?: string;
|
|
332
333
|
title?: string;
|
|
333
334
|
type?: string;
|
|
334
335
|
controls?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -521,6 +521,7 @@ declare const _default$b: React.NamedExoticComponent<ImageProps>;
|
|
|
521
521
|
type ObjectFit = "contain" | "cover" | "fill" | "none" | "scale-down";
|
|
522
522
|
interface VideoProps extends Omit<VideoHTMLAttributes<HTMLVideoElement>, "style"> {
|
|
523
523
|
src?: string;
|
|
524
|
+
alt?: string;
|
|
524
525
|
title?: string;
|
|
525
526
|
type?: string;
|
|
526
527
|
controls?: boolean;
|