@alquimia-ai/ui 1.9.3 → 2.0.0
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/atoms/index.d.mts +1 -1
- package/dist/components/atoms/index.d.ts +1 -1
- package/dist/components/atoms/index.js +1848 -1428
- package/dist/components/atoms/index.js.map +1 -1
- package/dist/components/atoms/index.mjs +1453 -1409
- package/dist/components/atoms/index.mjs.map +1 -1
- package/dist/components/hooks/index.d.mts +1 -0
- package/dist/components/hooks/index.d.ts +1 -0
- package/dist/components/hooks/index.js +572 -211
- package/dist/components/hooks/index.js.map +1 -1
- package/dist/components/hooks/index.mjs +505 -193
- package/dist/components/hooks/index.mjs.map +1 -1
- package/dist/components/molecules/documents/index.d.mts +1 -0
- package/dist/components/molecules/documents/index.d.ts +1 -0
- package/dist/components/molecules/documents/index.js +2366 -1884
- package/dist/components/molecules/documents/index.js.map +1 -1
- package/dist/components/molecules/documents/index.mjs +2207 -1764
- package/dist/components/molecules/documents/index.mjs.map +1 -1
- package/dist/components/molecules/index.js +2261 -2095
- package/dist/components/molecules/index.js.map +1 -1
- package/dist/components/molecules/index.mjs +2084 -2075
- package/dist/components/molecules/index.mjs.map +1 -1
- package/dist/components/molecules/viewers/index.js +1303 -1185
- package/dist/components/molecules/viewers/index.js.map +1 -1
- package/dist/components/molecules/viewers/index.mjs +1254 -1167
- package/dist/components/molecules/viewers/index.mjs.map +1 -1
- package/dist/components/organisms/index.d.mts +1 -0
- package/dist/components/organisms/index.d.ts +1 -0
- package/dist/components/organisms/index.js +3074 -2609
- package/dist/components/organisms/index.js.map +1 -1
- package/dist/components/organisms/index.mjs +2999 -2586
- package/dist/components/organisms/index.mjs.map +1 -1
- package/dist/components/templates/index.d.mts +25 -3
- package/dist/components/templates/index.d.ts +25 -3
- package/dist/components/templates/index.js +1490 -1300
- package/dist/components/templates/index.js.map +1 -1
- package/dist/components/templates/index.mjs +1413 -1281
- package/dist/components/templates/index.mjs.map +1 -1
- package/dist/index.d.mts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +3951 -2977
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3368 -2950
- package/dist/index.mjs.map +1 -1
- package/dist/lib/index.js +106 -54
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +42 -43
- package/dist/lib/index.mjs.map +1 -1
- package/dist/providers/index.d.mts +17 -0
- package/dist/providers/index.d.ts +17 -0
- package/dist/providers/index.js +177 -0
- package/dist/providers/index.js.map +1 -0
- package/dist/providers/index.mjs +101 -0
- package/dist/providers/index.mjs.map +1 -0
- package/dist/styles.css +68 -0
- package/dist/styles.css.map +1 -0
- package/dist/styles.d.mts +2 -0
- package/dist/styles.d.ts +2 -0
- package/dist/tailwind.config.js +4 -10
- package/dist/types/index.d.mts +5 -5
- package/dist/types/index.d.ts +5 -5
- package/dist/types/index.js +52 -19
- package/dist/types/index.js.map +1 -1
- package/dist/types/index.mjs +6 -8
- package/dist/types/index.mjs.map +1 -1
- package/package.json +8 -7
- package/dist/components/index.d.mts +0 -23
- package/dist/components/index.d.ts +0 -23
- package/dist/components/index.js +0 -1734
- package/dist/components/index.js.map +0 -1
- package/dist/components/index.mjs +0 -1702
- package/dist/components/index.mjs.map +0 -1
- package/dist/components/templates/cards/index.d.mts +0 -26
- package/dist/components/templates/cards/index.d.ts +0 -26
- package/dist/components/templates/cards/index.js +0 -1536
- package/dist/components/templates/cards/index.js.map +0 -1
- package/dist/components/templates/cards/index.mjs +0 -1504
- package/dist/components/templates/cards/index.mjs.map +0 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
|
|
3
|
-
import 'react/jsx-runtime';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
|
|
5
4
|
interface MessagesWindowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
6
5
|
}
|
|
@@ -17,4 +16,27 @@ interface HeroContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
17
16
|
}
|
|
18
17
|
declare const HeroContent: React$1.ForwardRefExoticComponent<HeroContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
interface CardWithImageHeadingDescriptionProps {
|
|
20
|
+
orientation: "vertical" | "horizontal";
|
|
21
|
+
showBorder?: boolean;
|
|
22
|
+
image: React.ReactNode;
|
|
23
|
+
heading: React.ReactNode;
|
|
24
|
+
description: React.ReactNode;
|
|
25
|
+
}
|
|
26
|
+
declare const CardWithImageHeadingDescriptionVertical: (props: CardWithImageHeadingDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
declare const CardImageWithHeadingAndDescriptionHorizontal: (props: CardWithImageHeadingDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
|
|
29
|
+
interface CardWithImageHeadingDescriptionAvatarProps {
|
|
30
|
+
orientation: "vertical" | "horizontal";
|
|
31
|
+
showBorder?: boolean;
|
|
32
|
+
image: React.ReactNode;
|
|
33
|
+
heading: React.ReactNode;
|
|
34
|
+
description: React.ReactNode;
|
|
35
|
+
avatarImage: string;
|
|
36
|
+
userName: string;
|
|
37
|
+
email: string;
|
|
38
|
+
}
|
|
39
|
+
declare const CardWithImageHeadingDescriptionAvatarVertical: (props: CardWithImageHeadingDescriptionAvatarProps) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare const CardImageWithHeadingAndDescriptionAvatarHorizontal: (props: CardWithImageHeadingDescriptionAvatarProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
export { CardImageWithHeadingAndDescriptionAvatarHorizontal, CardImageWithHeadingAndDescriptionHorizontal, type CardWithImageHeadingDescriptionAvatarProps, CardWithImageHeadingDescriptionAvatarVertical, type CardWithImageHeadingDescriptionProps, CardWithImageHeadingDescriptionVertical, Hero, HeroContent, type HeroContentProps, type HeroProps, MessagesWindow, QueryBox };
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
|
|
3
|
-
import 'react/jsx-runtime';
|
|
2
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
3
|
|
|
5
4
|
interface MessagesWindowProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
6
5
|
}
|
|
@@ -17,4 +16,27 @@ interface HeroContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
17
16
|
}
|
|
18
17
|
declare const HeroContent: React$1.ForwardRefExoticComponent<HeroContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
19
18
|
|
|
20
|
-
|
|
19
|
+
interface CardWithImageHeadingDescriptionProps {
|
|
20
|
+
orientation: "vertical" | "horizontal";
|
|
21
|
+
showBorder?: boolean;
|
|
22
|
+
image: React.ReactNode;
|
|
23
|
+
heading: React.ReactNode;
|
|
24
|
+
description: React.ReactNode;
|
|
25
|
+
}
|
|
26
|
+
declare const CardWithImageHeadingDescriptionVertical: (props: CardWithImageHeadingDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
27
|
+
declare const CardImageWithHeadingAndDescriptionHorizontal: (props: CardWithImageHeadingDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
28
|
+
|
|
29
|
+
interface CardWithImageHeadingDescriptionAvatarProps {
|
|
30
|
+
orientation: "vertical" | "horizontal";
|
|
31
|
+
showBorder?: boolean;
|
|
32
|
+
image: React.ReactNode;
|
|
33
|
+
heading: React.ReactNode;
|
|
34
|
+
description: React.ReactNode;
|
|
35
|
+
avatarImage: string;
|
|
36
|
+
userName: string;
|
|
37
|
+
email: string;
|
|
38
|
+
}
|
|
39
|
+
declare const CardWithImageHeadingDescriptionAvatarVertical: (props: CardWithImageHeadingDescriptionAvatarProps) => react_jsx_runtime.JSX.Element;
|
|
40
|
+
declare const CardImageWithHeadingAndDescriptionAvatarHorizontal: (props: CardWithImageHeadingDescriptionAvatarProps) => react_jsx_runtime.JSX.Element;
|
|
41
|
+
|
|
42
|
+
export { CardImageWithHeadingAndDescriptionAvatarHorizontal, CardImageWithHeadingAndDescriptionHorizontal, type CardWithImageHeadingDescriptionAvatarProps, CardWithImageHeadingDescriptionAvatarVertical, type CardWithImageHeadingDescriptionProps, CardWithImageHeadingDescriptionVertical, Hero, HeroContent, type HeroContentProps, type HeroProps, MessagesWindow, QueryBox };
|