@botpress/webchat 1.0.27 → 1.0.29
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/client/ChatClient/index.d.ts +1 -1
- package/dist/client/ChatClient/state-machine.d.ts +1 -0
- package/dist/client/MessagingClient/adapters/Card.d.ts +18 -18
- package/dist/client/MessagingClient/adapters/Carousel.d.ts +19 -19
- package/dist/client/MessagingClient/adapters/Choice.d.ts +5 -5
- package/dist/client/MessagingClient/adapters/Dropdown.d.ts +5 -5
- package/dist/client/MessagingClient/adapters/File.d.ts +3 -3
- package/dist/client/MessagingClient/adapters/Message.d.ts +42 -42
- package/dist/components/Avatar.d.ts +9 -6
- package/dist/components/Block.d.ts +1 -1
- package/dist/components/Fab.d.ts +2 -0
- package/dist/components/MessageList.d.ts +10 -2
- package/dist/components/Webchat.d.ts +1 -6
- package/dist/components/dev-tools/configuration.d.ts +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/contexts/WebchatContext.d.ts +1 -17
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/useClient.d.ts +8 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +38229 -54993
- package/dist/index.umd.cjs +335 -515
- package/dist/providers/WebchatProvider.d.ts +3 -2
- package/dist/schemas/theme.d.ts +657 -119
- package/dist/types/block-type.d.ts +2 -2
- package/dist/types/configuration.d.ts +16 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/utils/message.d.ts +8 -0
- package/dist/utils/message.test.d.ts +1 -0
- package/dist/utils/withBaseTheme.d.ts +61 -3
- package/package.json +11 -8
package/dist/schemas/theme.d.ts
CHANGED
|
@@ -11,6 +11,64 @@ declare const StyleOptionSchema: z.ZodObject<{
|
|
|
11
11
|
className?: string | undefined;
|
|
12
12
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
13
13
|
}>;
|
|
14
|
+
export declare const AvatarSchema: z.ZodObject<{
|
|
15
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
16
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
17
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
18
|
+
}, "strip", z.ZodTypeAny, {
|
|
19
|
+
className?: string | undefined;
|
|
20
|
+
style?: CSSProperties | undefined;
|
|
21
|
+
}, {
|
|
22
|
+
className?: string | undefined;
|
|
23
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
24
|
+
}>>;
|
|
25
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
26
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
27
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
28
|
+
}, "strip", z.ZodTypeAny, {
|
|
29
|
+
className?: string | undefined;
|
|
30
|
+
style?: CSSProperties | undefined;
|
|
31
|
+
}, {
|
|
32
|
+
className?: string | undefined;
|
|
33
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
34
|
+
}>>;
|
|
35
|
+
fallback: z.ZodOptional<z.ZodObject<{
|
|
36
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
37
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
className?: string | undefined;
|
|
40
|
+
style?: CSSProperties | undefined;
|
|
41
|
+
}, {
|
|
42
|
+
className?: string | undefined;
|
|
43
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
44
|
+
}>>;
|
|
45
|
+
}, "strip", z.ZodTypeAny, {
|
|
46
|
+
container?: {
|
|
47
|
+
className?: string | undefined;
|
|
48
|
+
style?: CSSProperties | undefined;
|
|
49
|
+
} | undefined;
|
|
50
|
+
image?: {
|
|
51
|
+
className?: string | undefined;
|
|
52
|
+
style?: CSSProperties | undefined;
|
|
53
|
+
} | undefined;
|
|
54
|
+
fallback?: {
|
|
55
|
+
className?: string | undefined;
|
|
56
|
+
style?: CSSProperties | undefined;
|
|
57
|
+
} | undefined;
|
|
58
|
+
}, {
|
|
59
|
+
container?: {
|
|
60
|
+
className?: string | undefined;
|
|
61
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
62
|
+
} | undefined;
|
|
63
|
+
image?: {
|
|
64
|
+
className?: string | undefined;
|
|
65
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
66
|
+
} | undefined;
|
|
67
|
+
fallback?: {
|
|
68
|
+
className?: string | undefined;
|
|
69
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
70
|
+
} | undefined;
|
|
71
|
+
}>;
|
|
14
72
|
export declare const BlocksSchema: z.ZodObject<{
|
|
15
73
|
button: z.ZodOptional<z.ZodObject<{
|
|
16
74
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
@@ -465,7 +523,7 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
465
523
|
} | undefined;
|
|
466
524
|
}>>;
|
|
467
525
|
}, "strip", z.ZodTypeAny, {
|
|
468
|
-
text: Partial<Record<"
|
|
526
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
469
527
|
className?: string | undefined;
|
|
470
528
|
style?: CSSProperties | undefined;
|
|
471
529
|
} | undefined>>;
|
|
@@ -576,7 +634,7 @@ export declare const BlocksSchema: z.ZodObject<{
|
|
|
576
634
|
} | undefined;
|
|
577
635
|
} | undefined;
|
|
578
636
|
}, {
|
|
579
|
-
text: Partial<Record<"
|
|
637
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
580
638
|
className?: string | undefined;
|
|
581
639
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
582
640
|
} | undefined>>;
|
|
@@ -1775,17 +1833,47 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1775
1833
|
} | undefined;
|
|
1776
1834
|
} | undefined;
|
|
1777
1835
|
}>>;
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1836
|
+
fab: z.ZodOptional<z.ZodObject<{
|
|
1837
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
1838
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1839
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1840
|
+
}, "strip", z.ZodTypeAny, {
|
|
1841
|
+
className?: string | undefined;
|
|
1842
|
+
style?: CSSProperties | undefined;
|
|
1843
|
+
}, {
|
|
1844
|
+
className?: string | undefined;
|
|
1845
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1846
|
+
}>>;
|
|
1847
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
1848
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1849
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1850
|
+
}, "strip", z.ZodTypeAny, {
|
|
1851
|
+
className?: string | undefined;
|
|
1852
|
+
style?: CSSProperties | undefined;
|
|
1853
|
+
}, {
|
|
1854
|
+
className?: string | undefined;
|
|
1855
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1856
|
+
}>>;
|
|
1781
1857
|
}, "strip", z.ZodTypeAny, {
|
|
1782
|
-
|
|
1783
|
-
|
|
1858
|
+
icon?: {
|
|
1859
|
+
className?: string | undefined;
|
|
1860
|
+
style?: CSSProperties | undefined;
|
|
1861
|
+
} | undefined;
|
|
1862
|
+
container?: {
|
|
1863
|
+
className?: string | undefined;
|
|
1864
|
+
style?: CSSProperties | undefined;
|
|
1865
|
+
} | undefined;
|
|
1784
1866
|
}, {
|
|
1785
|
-
|
|
1786
|
-
|
|
1867
|
+
icon?: {
|
|
1868
|
+
className?: string | undefined;
|
|
1869
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1870
|
+
} | undefined;
|
|
1871
|
+
container?: {
|
|
1872
|
+
className?: string | undefined;
|
|
1873
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1874
|
+
} | undefined;
|
|
1787
1875
|
}>>;
|
|
1788
|
-
|
|
1876
|
+
messageList: z.ZodOptional<z.ZodObject<{
|
|
1789
1877
|
container: z.ZodOptional<z.ZodObject<{
|
|
1790
1878
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1791
1879
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
@@ -1796,18 +1884,8 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1796
1884
|
className?: string | undefined;
|
|
1797
1885
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1798
1886
|
}>>;
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1802
|
-
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1803
|
-
}, "strip", z.ZodTypeAny, {
|
|
1804
|
-
className?: string | undefined;
|
|
1805
|
-
style?: CSSProperties | undefined;
|
|
1806
|
-
}, {
|
|
1807
|
-
className?: string | undefined;
|
|
1808
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1809
|
-
}>>;
|
|
1810
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
1887
|
+
marquee: z.ZodOptional<z.ZodObject<{
|
|
1888
|
+
content: z.ZodOptional<z.ZodObject<{
|
|
1811
1889
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1812
1890
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1813
1891
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1817,7 +1895,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1817
1895
|
className?: string | undefined;
|
|
1818
1896
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1819
1897
|
}>>;
|
|
1820
|
-
|
|
1898
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
1821
1899
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1822
1900
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1823
1901
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1827,35 +1905,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1827
1905
|
className?: string | undefined;
|
|
1828
1906
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1829
1907
|
}>>;
|
|
1830
|
-
|
|
1831
|
-
container?: {
|
|
1832
|
-
className?: string | undefined;
|
|
1833
|
-
style?: CSSProperties | undefined;
|
|
1834
|
-
} | undefined;
|
|
1835
|
-
image?: {
|
|
1836
|
-
className?: string | undefined;
|
|
1837
|
-
style?: CSSProperties | undefined;
|
|
1838
|
-
} | undefined;
|
|
1839
|
-
fallback?: {
|
|
1840
|
-
className?: string | undefined;
|
|
1841
|
-
style?: CSSProperties | undefined;
|
|
1842
|
-
} | undefined;
|
|
1843
|
-
}, {
|
|
1844
|
-
container?: {
|
|
1845
|
-
className?: string | undefined;
|
|
1846
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1847
|
-
} | undefined;
|
|
1848
|
-
image?: {
|
|
1849
|
-
className?: string | undefined;
|
|
1850
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1851
|
-
} | undefined;
|
|
1852
|
-
fallback?: {
|
|
1853
|
-
className?: string | undefined;
|
|
1854
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1855
|
-
} | undefined;
|
|
1856
|
-
}>>;
|
|
1857
|
-
blocks: z.ZodOptional<z.ZodObject<{
|
|
1858
|
-
button: z.ZodOptional<z.ZodObject<{
|
|
1908
|
+
description: z.ZodOptional<z.ZodObject<{
|
|
1859
1909
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1860
1910
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1861
1911
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1865,17 +1915,17 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1865
1915
|
className?: string | undefined;
|
|
1866
1916
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1867
1917
|
}>>;
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1918
|
+
avatar: z.ZodOptional<z.ZodObject<{
|
|
1919
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
1920
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1921
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1922
|
+
}, "strip", z.ZodTypeAny, {
|
|
1923
|
+
className?: string | undefined;
|
|
1924
|
+
style?: CSSProperties | undefined;
|
|
1925
|
+
}, {
|
|
1926
|
+
className?: string | undefined;
|
|
1927
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1928
|
+
}>>;
|
|
1879
1929
|
image: z.ZodOptional<z.ZodObject<{
|
|
1880
1930
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1881
1931
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
@@ -1886,7 +1936,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1886
1936
|
className?: string | undefined;
|
|
1887
1937
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1888
1938
|
}>>;
|
|
1889
|
-
|
|
1939
|
+
fallback: z.ZodOptional<z.ZodObject<{
|
|
1890
1940
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1891
1941
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1892
1942
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1897,25 +1947,33 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1897
1947
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1898
1948
|
}>>;
|
|
1899
1949
|
}, "strip", z.ZodTypeAny, {
|
|
1950
|
+
container?: {
|
|
1951
|
+
className?: string | undefined;
|
|
1952
|
+
style?: CSSProperties | undefined;
|
|
1953
|
+
} | undefined;
|
|
1900
1954
|
image?: {
|
|
1901
1955
|
className?: string | undefined;
|
|
1902
1956
|
style?: CSSProperties | undefined;
|
|
1903
1957
|
} | undefined;
|
|
1904
|
-
|
|
1958
|
+
fallback?: {
|
|
1905
1959
|
className?: string | undefined;
|
|
1906
1960
|
style?: CSSProperties | undefined;
|
|
1907
1961
|
} | undefined;
|
|
1908
1962
|
}, {
|
|
1963
|
+
container?: {
|
|
1964
|
+
className?: string | undefined;
|
|
1965
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1966
|
+
} | undefined;
|
|
1909
1967
|
image?: {
|
|
1910
1968
|
className?: string | undefined;
|
|
1911
1969
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1912
1970
|
} | undefined;
|
|
1913
|
-
|
|
1971
|
+
fallback?: {
|
|
1914
1972
|
className?: string | undefined;
|
|
1915
1973
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1916
1974
|
} | undefined;
|
|
1917
1975
|
}>>;
|
|
1918
|
-
|
|
1976
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
1919
1977
|
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1920
1978
|
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1921
1979
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1925,61 +1983,425 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
1925
1983
|
className?: string | undefined;
|
|
1926
1984
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1927
1985
|
}>>;
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1931
|
-
}, "strip", z.ZodTypeAny, {
|
|
1986
|
+
}, "strip", z.ZodTypeAny, {
|
|
1987
|
+
content?: {
|
|
1932
1988
|
className?: string | undefined;
|
|
1933
1989
|
style?: CSSProperties | undefined;
|
|
1934
|
-
}
|
|
1990
|
+
} | undefined;
|
|
1991
|
+
title?: {
|
|
1935
1992
|
className?: string | undefined;
|
|
1936
|
-
style?:
|
|
1937
|
-
}
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
className?: string | undefined;
|
|
1944
|
-
style?: CSSProperties | undefined;
|
|
1945
|
-
}, {
|
|
1946
|
-
className?: string | undefined;
|
|
1947
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1948
|
-
}>>;
|
|
1949
|
-
title: z.ZodOptional<z.ZodObject<{
|
|
1950
|
-
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1951
|
-
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1952
|
-
}, "strip", z.ZodTypeAny, {
|
|
1953
|
-
className?: string | undefined;
|
|
1954
|
-
style?: CSSProperties | undefined;
|
|
1955
|
-
}, {
|
|
1956
|
-
className?: string | undefined;
|
|
1957
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1958
|
-
}>>;
|
|
1959
|
-
icon: z.ZodOptional<z.ZodObject<{
|
|
1960
|
-
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
1961
|
-
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
1962
|
-
}, "strip", z.ZodTypeAny, {
|
|
1963
|
-
className?: string | undefined;
|
|
1964
|
-
style?: CSSProperties | undefined;
|
|
1965
|
-
}, {
|
|
1966
|
-
className?: string | undefined;
|
|
1967
|
-
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
1968
|
-
}>>;
|
|
1969
|
-
}, "strip", z.ZodTypeAny, {
|
|
1993
|
+
style?: CSSProperties | undefined;
|
|
1994
|
+
} | undefined;
|
|
1995
|
+
description?: {
|
|
1996
|
+
className?: string | undefined;
|
|
1997
|
+
style?: CSSProperties | undefined;
|
|
1998
|
+
} | undefined;
|
|
1999
|
+
avatar?: {
|
|
1970
2000
|
container?: {
|
|
1971
2001
|
className?: string | undefined;
|
|
1972
2002
|
style?: CSSProperties | undefined;
|
|
1973
2003
|
} | undefined;
|
|
1974
|
-
|
|
2004
|
+
image?: {
|
|
1975
2005
|
className?: string | undefined;
|
|
1976
2006
|
style?: CSSProperties | undefined;
|
|
1977
2007
|
} | undefined;
|
|
1978
|
-
|
|
2008
|
+
fallback?: {
|
|
1979
2009
|
className?: string | undefined;
|
|
1980
2010
|
style?: CSSProperties | undefined;
|
|
1981
2011
|
} | undefined;
|
|
1982
|
-
}
|
|
2012
|
+
} | undefined;
|
|
2013
|
+
container?: {
|
|
2014
|
+
className?: string | undefined;
|
|
2015
|
+
style?: CSSProperties | undefined;
|
|
2016
|
+
} | undefined;
|
|
2017
|
+
}, {
|
|
2018
|
+
content?: {
|
|
2019
|
+
className?: string | undefined;
|
|
2020
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2021
|
+
} | undefined;
|
|
2022
|
+
title?: {
|
|
2023
|
+
className?: string | undefined;
|
|
2024
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2025
|
+
} | undefined;
|
|
2026
|
+
description?: {
|
|
2027
|
+
className?: string | undefined;
|
|
2028
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2029
|
+
} | undefined;
|
|
2030
|
+
avatar?: {
|
|
2031
|
+
container?: {
|
|
2032
|
+
className?: string | undefined;
|
|
2033
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2034
|
+
} | undefined;
|
|
2035
|
+
image?: {
|
|
2036
|
+
className?: string | undefined;
|
|
2037
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
fallback?: {
|
|
2040
|
+
className?: string | undefined;
|
|
2041
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2042
|
+
} | undefined;
|
|
2043
|
+
} | undefined;
|
|
2044
|
+
container?: {
|
|
2045
|
+
className?: string | undefined;
|
|
2046
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2047
|
+
} | undefined;
|
|
2048
|
+
}>>;
|
|
2049
|
+
scrollDownButton: z.ZodOptional<z.ZodObject<{
|
|
2050
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2052
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2053
|
+
}, "strip", z.ZodTypeAny, {
|
|
2054
|
+
className?: string | undefined;
|
|
2055
|
+
style?: CSSProperties | undefined;
|
|
2056
|
+
}, {
|
|
2057
|
+
className?: string | undefined;
|
|
2058
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2059
|
+
}>>;
|
|
2060
|
+
button: z.ZodOptional<z.ZodObject<{
|
|
2061
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2062
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2063
|
+
}, "strip", z.ZodTypeAny, {
|
|
2064
|
+
className?: string | undefined;
|
|
2065
|
+
style?: CSSProperties | undefined;
|
|
2066
|
+
}, {
|
|
2067
|
+
className?: string | undefined;
|
|
2068
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2069
|
+
}>>;
|
|
2070
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
2071
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2072
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2073
|
+
}, "strip", z.ZodTypeAny, {
|
|
2074
|
+
className?: string | undefined;
|
|
2075
|
+
style?: CSSProperties | undefined;
|
|
2076
|
+
}, {
|
|
2077
|
+
className?: string | undefined;
|
|
2078
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2079
|
+
}>>;
|
|
2080
|
+
}, "strip", z.ZodTypeAny, {
|
|
2081
|
+
container?: {
|
|
2082
|
+
className?: string | undefined;
|
|
2083
|
+
style?: CSSProperties | undefined;
|
|
2084
|
+
} | undefined;
|
|
2085
|
+
button?: {
|
|
2086
|
+
className?: string | undefined;
|
|
2087
|
+
style?: CSSProperties | undefined;
|
|
2088
|
+
} | undefined;
|
|
2089
|
+
icon?: {
|
|
2090
|
+
className?: string | undefined;
|
|
2091
|
+
style?: CSSProperties | undefined;
|
|
2092
|
+
} | undefined;
|
|
2093
|
+
}, {
|
|
2094
|
+
container?: {
|
|
2095
|
+
className?: string | undefined;
|
|
2096
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2097
|
+
} | undefined;
|
|
2098
|
+
button?: {
|
|
2099
|
+
className?: string | undefined;
|
|
2100
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2101
|
+
} | undefined;
|
|
2102
|
+
icon?: {
|
|
2103
|
+
className?: string | undefined;
|
|
2104
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
}>>;
|
|
2107
|
+
}, "strip", z.ZodTypeAny, {
|
|
2108
|
+
container?: {
|
|
2109
|
+
className?: string | undefined;
|
|
2110
|
+
style?: CSSProperties | undefined;
|
|
2111
|
+
} | undefined;
|
|
2112
|
+
marquee?: {
|
|
2113
|
+
content?: {
|
|
2114
|
+
className?: string | undefined;
|
|
2115
|
+
style?: CSSProperties | undefined;
|
|
2116
|
+
} | undefined;
|
|
2117
|
+
title?: {
|
|
2118
|
+
className?: string | undefined;
|
|
2119
|
+
style?: CSSProperties | undefined;
|
|
2120
|
+
} | undefined;
|
|
2121
|
+
description?: {
|
|
2122
|
+
className?: string | undefined;
|
|
2123
|
+
style?: CSSProperties | undefined;
|
|
2124
|
+
} | undefined;
|
|
2125
|
+
avatar?: {
|
|
2126
|
+
container?: {
|
|
2127
|
+
className?: string | undefined;
|
|
2128
|
+
style?: CSSProperties | undefined;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
image?: {
|
|
2131
|
+
className?: string | undefined;
|
|
2132
|
+
style?: CSSProperties | undefined;
|
|
2133
|
+
} | undefined;
|
|
2134
|
+
fallback?: {
|
|
2135
|
+
className?: string | undefined;
|
|
2136
|
+
style?: CSSProperties | undefined;
|
|
2137
|
+
} | undefined;
|
|
2138
|
+
} | undefined;
|
|
2139
|
+
container?: {
|
|
2140
|
+
className?: string | undefined;
|
|
2141
|
+
style?: CSSProperties | undefined;
|
|
2142
|
+
} | undefined;
|
|
2143
|
+
} | undefined;
|
|
2144
|
+
scrollDownButton?: {
|
|
2145
|
+
container?: {
|
|
2146
|
+
className?: string | undefined;
|
|
2147
|
+
style?: CSSProperties | undefined;
|
|
2148
|
+
} | undefined;
|
|
2149
|
+
button?: {
|
|
2150
|
+
className?: string | undefined;
|
|
2151
|
+
style?: CSSProperties | undefined;
|
|
2152
|
+
} | undefined;
|
|
2153
|
+
icon?: {
|
|
2154
|
+
className?: string | undefined;
|
|
2155
|
+
style?: CSSProperties | undefined;
|
|
2156
|
+
} | undefined;
|
|
2157
|
+
} | undefined;
|
|
2158
|
+
}, {
|
|
2159
|
+
container?: {
|
|
2160
|
+
className?: string | undefined;
|
|
2161
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2162
|
+
} | undefined;
|
|
2163
|
+
marquee?: {
|
|
2164
|
+
content?: {
|
|
2165
|
+
className?: string | undefined;
|
|
2166
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2167
|
+
} | undefined;
|
|
2168
|
+
title?: {
|
|
2169
|
+
className?: string | undefined;
|
|
2170
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2171
|
+
} | undefined;
|
|
2172
|
+
description?: {
|
|
2173
|
+
className?: string | undefined;
|
|
2174
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2175
|
+
} | undefined;
|
|
2176
|
+
avatar?: {
|
|
2177
|
+
container?: {
|
|
2178
|
+
className?: string | undefined;
|
|
2179
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2180
|
+
} | undefined;
|
|
2181
|
+
image?: {
|
|
2182
|
+
className?: string | undefined;
|
|
2183
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2184
|
+
} | undefined;
|
|
2185
|
+
fallback?: {
|
|
2186
|
+
className?: string | undefined;
|
|
2187
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2188
|
+
} | undefined;
|
|
2189
|
+
} | undefined;
|
|
2190
|
+
container?: {
|
|
2191
|
+
className?: string | undefined;
|
|
2192
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2193
|
+
} | undefined;
|
|
2194
|
+
} | undefined;
|
|
2195
|
+
scrollDownButton?: {
|
|
2196
|
+
container?: {
|
|
2197
|
+
className?: string | undefined;
|
|
2198
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2199
|
+
} | undefined;
|
|
2200
|
+
button?: {
|
|
2201
|
+
className?: string | undefined;
|
|
2202
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2203
|
+
} | undefined;
|
|
2204
|
+
icon?: {
|
|
2205
|
+
className?: string | undefined;
|
|
2206
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2207
|
+
} | undefined;
|
|
2208
|
+
} | undefined;
|
|
2209
|
+
}>>;
|
|
2210
|
+
message: z.ZodOptional<z.ZodObject<{
|
|
2211
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
2212
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2213
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2214
|
+
}, "strip", z.ZodTypeAny, {
|
|
2215
|
+
className?: string | undefined;
|
|
2216
|
+
style?: CSSProperties | undefined;
|
|
2217
|
+
}, {
|
|
2218
|
+
className?: string | undefined;
|
|
2219
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2220
|
+
}>>;
|
|
2221
|
+
avatar: z.ZodOptional<z.ZodObject<{
|
|
2222
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
2223
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2224
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2225
|
+
}, "strip", z.ZodTypeAny, {
|
|
2226
|
+
className?: string | undefined;
|
|
2227
|
+
style?: CSSProperties | undefined;
|
|
2228
|
+
}, {
|
|
2229
|
+
className?: string | undefined;
|
|
2230
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2231
|
+
}>>;
|
|
2232
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
2233
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2234
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2235
|
+
}, "strip", z.ZodTypeAny, {
|
|
2236
|
+
className?: string | undefined;
|
|
2237
|
+
style?: CSSProperties | undefined;
|
|
2238
|
+
}, {
|
|
2239
|
+
className?: string | undefined;
|
|
2240
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2241
|
+
}>>;
|
|
2242
|
+
fallback: z.ZodOptional<z.ZodObject<{
|
|
2243
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2244
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2245
|
+
}, "strip", z.ZodTypeAny, {
|
|
2246
|
+
className?: string | undefined;
|
|
2247
|
+
style?: CSSProperties | undefined;
|
|
2248
|
+
}, {
|
|
2249
|
+
className?: string | undefined;
|
|
2250
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2251
|
+
}>>;
|
|
2252
|
+
}, "strip", z.ZodTypeAny, {
|
|
2253
|
+
container?: {
|
|
2254
|
+
className?: string | undefined;
|
|
2255
|
+
style?: CSSProperties | undefined;
|
|
2256
|
+
} | undefined;
|
|
2257
|
+
image?: {
|
|
2258
|
+
className?: string | undefined;
|
|
2259
|
+
style?: CSSProperties | undefined;
|
|
2260
|
+
} | undefined;
|
|
2261
|
+
fallback?: {
|
|
2262
|
+
className?: string | undefined;
|
|
2263
|
+
style?: CSSProperties | undefined;
|
|
2264
|
+
} | undefined;
|
|
2265
|
+
}, {
|
|
2266
|
+
container?: {
|
|
2267
|
+
className?: string | undefined;
|
|
2268
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2269
|
+
} | undefined;
|
|
2270
|
+
image?: {
|
|
2271
|
+
className?: string | undefined;
|
|
2272
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2273
|
+
} | undefined;
|
|
2274
|
+
fallback?: {
|
|
2275
|
+
className?: string | undefined;
|
|
2276
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2277
|
+
} | undefined;
|
|
2278
|
+
}>>;
|
|
2279
|
+
blocks: z.ZodOptional<z.ZodObject<{
|
|
2280
|
+
button: z.ZodOptional<z.ZodObject<{
|
|
2281
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2282
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2283
|
+
}, "strip", z.ZodTypeAny, {
|
|
2284
|
+
className?: string | undefined;
|
|
2285
|
+
style?: CSSProperties | undefined;
|
|
2286
|
+
}, {
|
|
2287
|
+
className?: string | undefined;
|
|
2288
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2289
|
+
}>>;
|
|
2290
|
+
text: z.ZodRecord<z.ZodEnum<["heading1", "heading2", "heading3", "text", "horizontalRule", "link", "italic", "bold", "orderedList", "unorderedList", "listItem", "lineBreak", "pre"]>, z.ZodOptional<z.ZodObject<{
|
|
2291
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2292
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2293
|
+
}, "strip", z.ZodTypeAny, {
|
|
2294
|
+
className?: string | undefined;
|
|
2295
|
+
style?: CSSProperties | undefined;
|
|
2296
|
+
}, {
|
|
2297
|
+
className?: string | undefined;
|
|
2298
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2299
|
+
}>>>;
|
|
2300
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
image: z.ZodOptional<z.ZodObject<{
|
|
2302
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2303
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2304
|
+
}, "strip", z.ZodTypeAny, {
|
|
2305
|
+
className?: string | undefined;
|
|
2306
|
+
style?: CSSProperties | undefined;
|
|
2307
|
+
}, {
|
|
2308
|
+
className?: string | undefined;
|
|
2309
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2310
|
+
}>>;
|
|
2311
|
+
placeholder: z.ZodOptional<z.ZodObject<{
|
|
2312
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2313
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2314
|
+
}, "strip", z.ZodTypeAny, {
|
|
2315
|
+
className?: string | undefined;
|
|
2316
|
+
style?: CSSProperties | undefined;
|
|
2317
|
+
}, {
|
|
2318
|
+
className?: string | undefined;
|
|
2319
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2320
|
+
}>>;
|
|
2321
|
+
}, "strip", z.ZodTypeAny, {
|
|
2322
|
+
image?: {
|
|
2323
|
+
className?: string | undefined;
|
|
2324
|
+
style?: CSSProperties | undefined;
|
|
2325
|
+
} | undefined;
|
|
2326
|
+
placeholder?: {
|
|
2327
|
+
className?: string | undefined;
|
|
2328
|
+
style?: CSSProperties | undefined;
|
|
2329
|
+
} | undefined;
|
|
2330
|
+
}, {
|
|
2331
|
+
image?: {
|
|
2332
|
+
className?: string | undefined;
|
|
2333
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2334
|
+
} | undefined;
|
|
2335
|
+
placeholder?: {
|
|
2336
|
+
className?: string | undefined;
|
|
2337
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2338
|
+
} | undefined;
|
|
2339
|
+
}>>;
|
|
2340
|
+
audio: z.ZodOptional<z.ZodObject<{
|
|
2341
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2342
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2343
|
+
}, "strip", z.ZodTypeAny, {
|
|
2344
|
+
className?: string | undefined;
|
|
2345
|
+
style?: CSSProperties | undefined;
|
|
2346
|
+
}, {
|
|
2347
|
+
className?: string | undefined;
|
|
2348
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2349
|
+
}>>;
|
|
2350
|
+
video: z.ZodOptional<z.ZodObject<{
|
|
2351
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2352
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2353
|
+
}, "strip", z.ZodTypeAny, {
|
|
2354
|
+
className?: string | undefined;
|
|
2355
|
+
style?: CSSProperties | undefined;
|
|
2356
|
+
}, {
|
|
2357
|
+
className?: string | undefined;
|
|
2358
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2359
|
+
}>>;
|
|
2360
|
+
file: z.ZodOptional<z.ZodObject<{
|
|
2361
|
+
container: z.ZodOptional<z.ZodObject<{
|
|
2362
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2363
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2364
|
+
}, "strip", z.ZodTypeAny, {
|
|
2365
|
+
className?: string | undefined;
|
|
2366
|
+
style?: CSSProperties | undefined;
|
|
2367
|
+
}, {
|
|
2368
|
+
className?: string | undefined;
|
|
2369
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2370
|
+
}>>;
|
|
2371
|
+
title: z.ZodOptional<z.ZodObject<{
|
|
2372
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2373
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2374
|
+
}, "strip", z.ZodTypeAny, {
|
|
2375
|
+
className?: string | undefined;
|
|
2376
|
+
style?: CSSProperties | undefined;
|
|
2377
|
+
}, {
|
|
2378
|
+
className?: string | undefined;
|
|
2379
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2380
|
+
}>>;
|
|
2381
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
2382
|
+
className: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
2383
|
+
style: z.ZodEffects<z.ZodOptional<z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>>, CSSProperties | undefined, z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined>;
|
|
2384
|
+
}, "strip", z.ZodTypeAny, {
|
|
2385
|
+
className?: string | undefined;
|
|
2386
|
+
style?: CSSProperties | undefined;
|
|
2387
|
+
}, {
|
|
2388
|
+
className?: string | undefined;
|
|
2389
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2390
|
+
}>>;
|
|
2391
|
+
}, "strip", z.ZodTypeAny, {
|
|
2392
|
+
container?: {
|
|
2393
|
+
className?: string | undefined;
|
|
2394
|
+
style?: CSSProperties | undefined;
|
|
2395
|
+
} | undefined;
|
|
2396
|
+
title?: {
|
|
2397
|
+
className?: string | undefined;
|
|
2398
|
+
style?: CSSProperties | undefined;
|
|
2399
|
+
} | undefined;
|
|
2400
|
+
icon?: {
|
|
2401
|
+
className?: string | undefined;
|
|
2402
|
+
style?: CSSProperties | undefined;
|
|
2403
|
+
} | undefined;
|
|
2404
|
+
}, {
|
|
1983
2405
|
container?: {
|
|
1984
2406
|
className?: string | undefined;
|
|
1985
2407
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
@@ -2308,7 +2730,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2308
2730
|
} | undefined;
|
|
2309
2731
|
}>>;
|
|
2310
2732
|
}, "strip", z.ZodTypeAny, {
|
|
2311
|
-
text: Partial<Record<"
|
|
2733
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2312
2734
|
className?: string | undefined;
|
|
2313
2735
|
style?: CSSProperties | undefined;
|
|
2314
2736
|
} | undefined>>;
|
|
@@ -2419,7 +2841,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2419
2841
|
} | undefined;
|
|
2420
2842
|
} | undefined;
|
|
2421
2843
|
}, {
|
|
2422
|
-
text: Partial<Record<"
|
|
2844
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2423
2845
|
className?: string | undefined;
|
|
2424
2846
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2425
2847
|
} | undefined>>;
|
|
@@ -2550,7 +2972,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2550
2972
|
} | undefined;
|
|
2551
2973
|
} | undefined;
|
|
2552
2974
|
blocks?: {
|
|
2553
|
-
text: Partial<Record<"
|
|
2975
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2554
2976
|
className?: string | undefined;
|
|
2555
2977
|
style?: CSSProperties | undefined;
|
|
2556
2978
|
} | undefined>>;
|
|
@@ -2681,7 +3103,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
2681
3103
|
} | undefined;
|
|
2682
3104
|
} | undefined;
|
|
2683
3105
|
blocks?: {
|
|
2684
|
-
text: Partial<Record<"
|
|
3106
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
2685
3107
|
className?: string | undefined;
|
|
2686
3108
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
2687
3109
|
} | undefined>>;
|
|
@@ -3010,9 +3432,67 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3010
3432
|
} | undefined;
|
|
3011
3433
|
} | undefined;
|
|
3012
3434
|
} | undefined;
|
|
3435
|
+
fab?: {
|
|
3436
|
+
icon?: {
|
|
3437
|
+
className?: string | undefined;
|
|
3438
|
+
style?: CSSProperties | undefined;
|
|
3439
|
+
} | undefined;
|
|
3440
|
+
container?: {
|
|
3441
|
+
className?: string | undefined;
|
|
3442
|
+
style?: CSSProperties | undefined;
|
|
3443
|
+
} | undefined;
|
|
3444
|
+
} | undefined;
|
|
3013
3445
|
messageList?: {
|
|
3014
|
-
|
|
3015
|
-
|
|
3446
|
+
container?: {
|
|
3447
|
+
className?: string | undefined;
|
|
3448
|
+
style?: CSSProperties | undefined;
|
|
3449
|
+
} | undefined;
|
|
3450
|
+
marquee?: {
|
|
3451
|
+
content?: {
|
|
3452
|
+
className?: string | undefined;
|
|
3453
|
+
style?: CSSProperties | undefined;
|
|
3454
|
+
} | undefined;
|
|
3455
|
+
title?: {
|
|
3456
|
+
className?: string | undefined;
|
|
3457
|
+
style?: CSSProperties | undefined;
|
|
3458
|
+
} | undefined;
|
|
3459
|
+
description?: {
|
|
3460
|
+
className?: string | undefined;
|
|
3461
|
+
style?: CSSProperties | undefined;
|
|
3462
|
+
} | undefined;
|
|
3463
|
+
avatar?: {
|
|
3464
|
+
container?: {
|
|
3465
|
+
className?: string | undefined;
|
|
3466
|
+
style?: CSSProperties | undefined;
|
|
3467
|
+
} | undefined;
|
|
3468
|
+
image?: {
|
|
3469
|
+
className?: string | undefined;
|
|
3470
|
+
style?: CSSProperties | undefined;
|
|
3471
|
+
} | undefined;
|
|
3472
|
+
fallback?: {
|
|
3473
|
+
className?: string | undefined;
|
|
3474
|
+
style?: CSSProperties | undefined;
|
|
3475
|
+
} | undefined;
|
|
3476
|
+
} | undefined;
|
|
3477
|
+
container?: {
|
|
3478
|
+
className?: string | undefined;
|
|
3479
|
+
style?: CSSProperties | undefined;
|
|
3480
|
+
} | undefined;
|
|
3481
|
+
} | undefined;
|
|
3482
|
+
scrollDownButton?: {
|
|
3483
|
+
container?: {
|
|
3484
|
+
className?: string | undefined;
|
|
3485
|
+
style?: CSSProperties | undefined;
|
|
3486
|
+
} | undefined;
|
|
3487
|
+
button?: {
|
|
3488
|
+
className?: string | undefined;
|
|
3489
|
+
style?: CSSProperties | undefined;
|
|
3490
|
+
} | undefined;
|
|
3491
|
+
icon?: {
|
|
3492
|
+
className?: string | undefined;
|
|
3493
|
+
style?: CSSProperties | undefined;
|
|
3494
|
+
} | undefined;
|
|
3495
|
+
} | undefined;
|
|
3016
3496
|
} | undefined;
|
|
3017
3497
|
message?: {
|
|
3018
3498
|
container?: {
|
|
@@ -3034,7 +3514,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3034
3514
|
} | undefined;
|
|
3035
3515
|
} | undefined;
|
|
3036
3516
|
blocks?: {
|
|
3037
|
-
text: Partial<Record<"
|
|
3517
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
3038
3518
|
className?: string | undefined;
|
|
3039
3519
|
style?: CSSProperties | undefined;
|
|
3040
3520
|
} | undefined>>;
|
|
@@ -3333,9 +3813,67 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3333
3813
|
} | undefined;
|
|
3334
3814
|
} | undefined;
|
|
3335
3815
|
} | undefined;
|
|
3816
|
+
fab?: {
|
|
3817
|
+
icon?: {
|
|
3818
|
+
className?: string | undefined;
|
|
3819
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3820
|
+
} | undefined;
|
|
3821
|
+
container?: {
|
|
3822
|
+
className?: string | undefined;
|
|
3823
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3824
|
+
} | undefined;
|
|
3825
|
+
} | undefined;
|
|
3336
3826
|
messageList?: {
|
|
3337
|
-
|
|
3338
|
-
|
|
3827
|
+
container?: {
|
|
3828
|
+
className?: string | undefined;
|
|
3829
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3830
|
+
} | undefined;
|
|
3831
|
+
marquee?: {
|
|
3832
|
+
content?: {
|
|
3833
|
+
className?: string | undefined;
|
|
3834
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3835
|
+
} | undefined;
|
|
3836
|
+
title?: {
|
|
3837
|
+
className?: string | undefined;
|
|
3838
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3839
|
+
} | undefined;
|
|
3840
|
+
description?: {
|
|
3841
|
+
className?: string | undefined;
|
|
3842
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3843
|
+
} | undefined;
|
|
3844
|
+
avatar?: {
|
|
3845
|
+
container?: {
|
|
3846
|
+
className?: string | undefined;
|
|
3847
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3848
|
+
} | undefined;
|
|
3849
|
+
image?: {
|
|
3850
|
+
className?: string | undefined;
|
|
3851
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3852
|
+
} | undefined;
|
|
3853
|
+
fallback?: {
|
|
3854
|
+
className?: string | undefined;
|
|
3855
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3856
|
+
} | undefined;
|
|
3857
|
+
} | undefined;
|
|
3858
|
+
container?: {
|
|
3859
|
+
className?: string | undefined;
|
|
3860
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3861
|
+
} | undefined;
|
|
3862
|
+
} | undefined;
|
|
3863
|
+
scrollDownButton?: {
|
|
3864
|
+
container?: {
|
|
3865
|
+
className?: string | undefined;
|
|
3866
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3867
|
+
} | undefined;
|
|
3868
|
+
button?: {
|
|
3869
|
+
className?: string | undefined;
|
|
3870
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3871
|
+
} | undefined;
|
|
3872
|
+
icon?: {
|
|
3873
|
+
className?: string | undefined;
|
|
3874
|
+
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3875
|
+
} | undefined;
|
|
3876
|
+
} | undefined;
|
|
3339
3877
|
} | undefined;
|
|
3340
3878
|
message?: {
|
|
3341
3879
|
container?: {
|
|
@@ -3357,7 +3895,7 @@ export declare const ThemeSchema: z.ZodObject<{
|
|
|
3357
3895
|
} | undefined;
|
|
3358
3896
|
} | undefined;
|
|
3359
3897
|
blocks?: {
|
|
3360
|
-
text: Partial<Record<"
|
|
3898
|
+
text: Partial<Record<"text" | "heading1" | "heading2" | "heading3" | "horizontalRule" | "link" | "italic" | "bold" | "orderedList" | "unorderedList" | "listItem" | "lineBreak" | "pre", {
|
|
3361
3899
|
className?: string | undefined;
|
|
3362
3900
|
style?: z.objectInputType<{}, z.ZodTypeAny, "passthrough"> | undefined;
|
|
3363
3901
|
} | undefined>>;
|