@opentiny/tiny-robot 0.2.12 → 0.2.14
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/base-popper/index.js +89 -74
- package/dist/dropdown-menu/index.js +24 -22
- package/dist/index.d.ts +159 -715
- package/dist/index.js +33 -41
- package/dist/sender/index.js +674 -676
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -1,77 +1,69 @@
|
|
|
1
|
-
import { Bubble as
|
|
1
|
+
import { Bubble as s, BubbleList as e } from "./bubble/index.js";
|
|
2
2
|
import n from "./container/index.js";
|
|
3
3
|
import i from "./conversations/index.js";
|
|
4
4
|
import m from "./dropdown-menu/index.js";
|
|
5
5
|
import a from "./feedback/index.js";
|
|
6
6
|
import p from "./history/index.js";
|
|
7
|
-
import
|
|
8
|
-
import { Prompt as T, Prompts as
|
|
9
|
-
import
|
|
10
|
-
import c from "./
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
const B = [
|
|
16
|
-
t,
|
|
7
|
+
import l from "./icon-button/index.js";
|
|
8
|
+
import { Prompt as T, Prompts as u } from "./prompts/index.js";
|
|
9
|
+
import f from "./sender/index.js";
|
|
10
|
+
import c, { SuggestionPillButton as g } from "./suggestion-pills/index.js";
|
|
11
|
+
import b from "./suggestion-popover/index.js";
|
|
12
|
+
import P from "./welcome/index.js";
|
|
13
|
+
const d = [
|
|
14
|
+
s,
|
|
17
15
|
e,
|
|
18
16
|
n,
|
|
19
17
|
i,
|
|
20
18
|
m,
|
|
21
19
|
a,
|
|
22
20
|
p,
|
|
23
|
-
|
|
21
|
+
l,
|
|
24
22
|
T,
|
|
23
|
+
u,
|
|
25
24
|
f,
|
|
26
|
-
l,
|
|
27
25
|
c,
|
|
28
26
|
g,
|
|
29
27
|
b,
|
|
30
|
-
P
|
|
31
|
-
|
|
32
|
-
d
|
|
33
|
-
], Q = {
|
|
28
|
+
P
|
|
29
|
+
], L = {
|
|
34
30
|
install(r) {
|
|
35
|
-
|
|
36
|
-
const
|
|
37
|
-
r.component(`Tr${
|
|
31
|
+
d.forEach((o) => {
|
|
32
|
+
const t = o.name.replace(/^Tiny/, "").replace(/^Tr/, "");
|
|
33
|
+
r.component(`Tr${t}`, o);
|
|
38
34
|
});
|
|
39
35
|
}
|
|
40
36
|
};
|
|
41
37
|
export {
|
|
42
|
-
|
|
38
|
+
s as Bubble,
|
|
43
39
|
e as BubbleList,
|
|
44
40
|
n as Container,
|
|
45
41
|
i as Conversations,
|
|
46
42
|
m as DropdownMenu,
|
|
47
43
|
a as Feedback,
|
|
48
44
|
p as History,
|
|
49
|
-
|
|
45
|
+
l as IconButton,
|
|
50
46
|
T as Prompt,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
P as SuggestionPopover,
|
|
58
|
-
t as TrBubble,
|
|
47
|
+
u as Prompts,
|
|
48
|
+
f as Sender,
|
|
49
|
+
g as SuggestionPillButton,
|
|
50
|
+
c as SuggestionPills,
|
|
51
|
+
b as SuggestionPopover,
|
|
52
|
+
s as TrBubble,
|
|
59
53
|
e as TrBubbleList,
|
|
60
54
|
n as TrContainer,
|
|
61
55
|
i as TrConversations,
|
|
62
56
|
m as TrDropdownMenu,
|
|
63
57
|
a as TrFeedback,
|
|
64
58
|
p as TrHistory,
|
|
65
|
-
|
|
59
|
+
l as TrIconButton,
|
|
66
60
|
T as TrPrompt,
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
P as
|
|
74
|
-
|
|
75
|
-
g as Welcome,
|
|
76
|
-
Q as default
|
|
61
|
+
u as TrPrompts,
|
|
62
|
+
f as TrSender,
|
|
63
|
+
g as TrSuggestionPillButton,
|
|
64
|
+
c as TrSuggestionPills,
|
|
65
|
+
b as TrSuggestionPopover,
|
|
66
|
+
P as TrWelcome,
|
|
67
|
+
P as Welcome,
|
|
68
|
+
L as default
|
|
77
69
|
};
|