@piedata/pieui 1.1.33 → 1.2.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.
@@ -1,236 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "chat-card",
4
- "type": "registry:component",
5
- "title": "ChatCard",
6
- "description": "ChatCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/chat-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { ChatCard } from '@piedata/pieui/components'\n\nexport default ChatCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "ChatCard",
19
- "sourcePath": "./Chats/ChatCard",
20
- "pieCard": "ChatCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "defaultValue": {
28
- "type": "string"
29
- },
30
- "defaultMessages": {
31
- "type": "array",
32
- "items": {
33
- "type": "object",
34
- "properties": {
35
- "id": {
36
- "type": "string"
37
- },
38
- "username": {
39
- "type": "string"
40
- },
41
- "avatar": {
42
- "type": "string"
43
- },
44
- "content": {
45
- "anyOf": [
46
- {
47
- "$ref": "#/definitions/UIConfigType"
48
- },
49
- {
50
- "type": "string"
51
- }
52
- ]
53
- },
54
- "options": {
55
- "type": "array",
56
- "items": {
57
- "type": "object",
58
- "properties": {
59
- "title": {
60
- "type": "string"
61
- },
62
- "iconUrl": {
63
- "type": "string"
64
- },
65
- "iconPosition": {
66
- "enum": [
67
- "end",
68
- "start"
69
- ],
70
- "type": "string"
71
- },
72
- "sx": {
73
- "type": "object",
74
- "additionalProperties": {}
75
- }
76
- },
77
- "additionalProperties": false,
78
- "required": [
79
- "iconPosition",
80
- "iconUrl",
81
- "sx",
82
- "title"
83
- ]
84
- }
85
- },
86
- "parseMode": {
87
- "enum": [
88
- "HTML",
89
- "Markdown",
90
- "Pie",
91
- "Text"
92
- ],
93
- "type": "string"
94
- },
95
- "align": {
96
- "enum": [
97
- "center",
98
- "left",
99
- "right"
100
- ],
101
- "type": "string"
102
- }
103
- },
104
- "additionalProperties": false,
105
- "required": [
106
- "align",
107
- "avatar",
108
- "content",
109
- "id",
110
- "options",
111
- "parseMode",
112
- "username"
113
- ]
114
- }
115
- },
116
- "defaultOptions": {
117
- "type": "array",
118
- "items": {
119
- "type": "object",
120
- "properties": {
121
- "title": {
122
- "type": "string"
123
- },
124
- "iconUrl": {
125
- "type": "string"
126
- },
127
- "iconPosition": {
128
- "enum": [
129
- "end",
130
- "start"
131
- ],
132
- "type": "string"
133
- },
134
- "sx": {
135
- "type": "object",
136
- "additionalProperties": {}
137
- }
138
- },
139
- "additionalProperties": false,
140
- "required": [
141
- "iconPosition",
142
- "iconUrl",
143
- "sx",
144
- "title"
145
- ]
146
- }
147
- },
148
- "isArea": {
149
- "type": "boolean"
150
- },
151
- "placeholder": {
152
- "type": "string"
153
- },
154
- "fileAccept": {
155
- "type": "string"
156
- },
157
- "icons": {
158
- "type": "object",
159
- "properties": {
160
- "voiceRecordingIcon": {
161
- "type": "string"
162
- },
163
- "sendIcon": {
164
- "type": "string"
165
- },
166
- "cancelIcon": {
167
- "type": "string"
168
- },
169
- "attachFileIcon": {
170
- "type": "string"
171
- }
172
- },
173
- "additionalProperties": false,
174
- "required": [
175
- "attachFileIcon",
176
- "cancelIcon",
177
- "sendIcon",
178
- "voiceRecordingIcon"
179
- ]
180
- },
181
- "optionsPosition": {
182
- "enum": [
183
- "bottom",
184
- "top"
185
- ],
186
- "type": "string"
187
- },
188
- "sxMap": {
189
- "type": "object",
190
- "additionalProperties": {}
191
- },
192
- "pathname": {
193
- "type": "string"
194
- },
195
- "depsNames": {
196
- "type": "array",
197
- "items": {
198
- "type": "string"
199
- }
200
- },
201
- "kwargs": {
202
- "type": "object",
203
- "additionalProperties": {
204
- "type": "string"
205
- }
206
- },
207
- "useSocketioSupport": {
208
- "type": "boolean"
209
- },
210
- "useCentrifugeSupport": {
211
- "type": "boolean"
212
- },
213
- "useMittSupport": {
214
- "type": "boolean"
215
- },
216
- "centrifugeChannel": {
217
- "type": "string"
218
- }
219
- },
220
- "additionalProperties": false,
221
- "required": [
222
- "defaultMessages",
223
- "defaultOptions",
224
- "defaultValue",
225
- "fileAccept",
226
- "icons",
227
- "isArea",
228
- "name",
229
- "optionsPosition",
230
- "placeholder",
231
- "sxMap"
232
- ],
233
- "$schema": "http://json-schema.org/draft-07/schema#"
234
- }
235
- }
236
- }
@@ -1,51 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "hidden-card",
4
- "type": "registry:component",
5
- "title": "HiddenCard",
6
- "description": "HiddenCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/hidden-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { HiddenCard } from '@piedata/pieui/components'\n\nexport default HiddenCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "HiddenCard",
19
- "sourcePath": "./Common/HiddenCard",
20
- "pieCard": "HiddenCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "value": {
28
- "type": "string"
29
- },
30
- "useSocketioSupport": {
31
- "type": "boolean"
32
- },
33
- "useCentrifugeSupport": {
34
- "type": "boolean"
35
- },
36
- "useMittSupport": {
37
- "type": "boolean"
38
- },
39
- "centrifugeChannel": {
40
- "type": "string"
41
- }
42
- },
43
- "additionalProperties": false,
44
- "required": [
45
- "name",
46
- "value"
47
- ],
48
- "$schema": "http://json-schema.org/draft-07/schema#"
49
- }
50
- }
51
- }
@@ -1,56 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "html-embed-card",
4
- "type": "registry:component",
5
- "title": "HTMLEmbedCard",
6
- "description": "HTMLEmbedCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/html-embed-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { HTMLEmbedCard } from '@piedata/pieui/components'\n\nexport default HTMLEmbedCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "HTMLEmbedCard",
19
- "sourcePath": "./Common/HTMLEmbedCard",
20
- "pieCard": "HTMLEmbedCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "html": {
28
- "type": "string"
29
- },
30
- "sx": {
31
- "type": "object",
32
- "additionalProperties": {}
33
- },
34
- "useSocketioSupport": {
35
- "type": "boolean"
36
- },
37
- "useCentrifugeSupport": {
38
- "type": "boolean"
39
- },
40
- "useMittSupport": {
41
- "type": "boolean"
42
- },
43
- "centrifugeChannel": {
44
- "type": "string"
45
- }
46
- },
47
- "additionalProperties": false,
48
- "required": [
49
- "html",
50
- "name",
51
- "sx"
52
- ],
53
- "$schema": "http://json-schema.org/draft-07/schema#"
54
- }
55
- }
56
- }
package/dist/r/index.json DELETED
@@ -1,92 +0,0 @@
1
- [
2
- {
3
- "name": "ajax-button-card",
4
- "type": "registry:component",
5
- "title": "AjaxButtonCard",
6
- "description": "AjaxButtonCard card from PieUI"
7
- },
8
- {
9
- "name": "ajax-group-card",
10
- "type": "registry:component",
11
- "title": "AjaxGroupCard",
12
- "description": "AjaxGroupCard card from PieUI"
13
- },
14
- {
15
- "name": "auto-redirect-card",
16
- "type": "registry:component",
17
- "title": "AutoRedirectCard",
18
- "description": "AutoRedirectCard card from PieUI"
19
- },
20
- {
21
- "name": "box-card",
22
- "type": "registry:component",
23
- "title": "BoxCard",
24
- "description": "BoxCard card from PieUI"
25
- },
26
- {
27
- "name": "chat-card",
28
- "type": "registry:component",
29
- "title": "ChatCard",
30
- "description": "ChatCard card from PieUI"
31
- },
32
- {
33
- "name": "hidden-card",
34
- "type": "registry:component",
35
- "title": "HiddenCard",
36
- "description": "HiddenCard card from PieUI"
37
- },
38
- {
39
- "name": "html-embed-card",
40
- "type": "registry:component",
41
- "title": "HTMLEmbedCard",
42
- "description": "HTMLEmbedCard card from PieUI"
43
- },
44
- {
45
- "name": "io-events-card",
46
- "type": "registry:component",
47
- "title": "IOEventsCard",
48
- "description": "IOEventsCard card from PieUI"
49
- },
50
- {
51
- "name": "open-ai-voice-agent-card",
52
- "type": "registry:component",
53
- "title": "OpenAIVoiceAgentCard",
54
- "description": "OpenAIVoiceAgentCard card from PieUI"
55
- },
56
- {
57
- "name": "pie-card",
58
- "type": "registry:component",
59
- "title": "PieCard",
60
- "description": "PieCard component from PieUI"
61
- },
62
- {
63
- "name": "redirect-button-card",
64
- "type": "registry:component",
65
- "title": "RedirectButtonCard",
66
- "description": "RedirectButtonCard card from PieUI"
67
- },
68
- {
69
- "name": "sequence-card",
70
- "type": "registry:component",
71
- "title": "SequenceCard",
72
- "description": "SequenceCard card from PieUI"
73
- },
74
- {
75
- "name": "table-card",
76
- "type": "registry:component",
77
- "title": "TableCard",
78
- "description": "TableCard card from PieUI"
79
- },
80
- {
81
- "name": "ui",
82
- "type": "registry:component",
83
- "title": "UI",
84
- "description": "UI component from PieUI"
85
- },
86
- {
87
- "name": "union-card",
88
- "type": "registry:component",
89
- "title": "UnionCard",
90
- "description": "UnionCard card from PieUI"
91
- }
92
- ]
@@ -1,47 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "io-events-card",
4
- "type": "registry:component",
5
- "title": "IOEventsCard",
6
- "description": "IOEventsCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/io-events-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { IOEventsCard } from '@piedata/pieui/components'\n\nexport default IOEventsCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "IOEventsCard",
19
- "sourcePath": "./Common/IOEventsCard",
20
- "pieCard": "IOEventsCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "useSocketioSupport": {
28
- "type": "boolean"
29
- },
30
- "useCentrifugeSupport": {
31
- "type": "boolean"
32
- },
33
- "useMittSupport": {
34
- "type": "boolean"
35
- },
36
- "centrifugeChannel": {
37
- "type": "string"
38
- }
39
- },
40
- "additionalProperties": false,
41
- "required": [
42
- "name"
43
- ],
44
- "$schema": "http://json-schema.org/draft-07/schema#"
45
- }
46
- }
47
- }
@@ -1,147 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "open-ai-voice-agent-card",
4
- "type": "registry:component",
5
- "title": "OpenAIVoiceAgentCard",
6
- "description": "OpenAIVoiceAgentCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/open-ai-voice-agent-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { OpenAIVoiceAgentCard } from '@piedata/pieui/components'\n\nexport default OpenAIVoiceAgentCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "OpenAIVoiceAgentCard",
19
- "sourcePath": "./Agents/OpenAIVoiceAgentCard",
20
- "pieCard": "OpenAIVoiceAgentCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "titles": {
28
- "type": "object",
29
- "properties": {
30
- "disabled": {
31
- "type": "string"
32
- },
33
- "enabled": {
34
- "type": "string"
35
- }
36
- },
37
- "additionalProperties": false,
38
- "required": [
39
- "disabled",
40
- "enabled"
41
- ]
42
- },
43
- "instructions": {
44
- "type": "string"
45
- },
46
- "tools": {
47
- "type": "array",
48
- "items": {
49
- "type": "object",
50
- "properties": {
51
- "name": {
52
- "type": "string"
53
- },
54
- "description": {
55
- "type": "string"
56
- },
57
- "params": {},
58
- "pathname": {
59
- "type": "string"
60
- },
61
- "depsNames": {
62
- "type": "array",
63
- "items": {
64
- "type": "string"
65
- }
66
- },
67
- "kwargs": {
68
- "type": "object",
69
- "additionalProperties": {}
70
- }
71
- },
72
- "additionalProperties": false,
73
- "required": [
74
- "depsNames",
75
- "description",
76
- "kwargs",
77
- "name",
78
- "params",
79
- "pathname"
80
- ]
81
- }
82
- },
83
- "token": {
84
- "type": "string"
85
- },
86
- "autoStart": {
87
- "type": "boolean"
88
- },
89
- "language": {
90
- "type": "string"
91
- },
92
- "muted": {
93
- "type": "boolean"
94
- },
95
- "outputModalities": {
96
- "type": "array",
97
- "items": {
98
- "enum": [
99
- "audio",
100
- "text"
101
- ],
102
- "type": "string"
103
- }
104
- },
105
- "iconUrl": {
106
- "type": "string"
107
- },
108
- "iconPosition": {
109
- "enum": [
110
- "end",
111
- "start"
112
- ],
113
- "type": "string"
114
- },
115
- "sxMap": {
116
- "type": "object",
117
- "additionalProperties": {}
118
- },
119
- "useSocketioSupport": {
120
- "type": "boolean"
121
- },
122
- "useCentrifugeSupport": {
123
- "type": "boolean"
124
- },
125
- "useMittSupport": {
126
- "type": "boolean"
127
- },
128
- "centrifugeChannel": {
129
- "type": "string"
130
- }
131
- },
132
- "additionalProperties": false,
133
- "required": [
134
- "autoStart",
135
- "instructions",
136
- "language",
137
- "muted",
138
- "name",
139
- "sxMap",
140
- "titles",
141
- "token",
142
- "tools"
143
- ],
144
- "$schema": "http://json-schema.org/draft-07/schema#"
145
- }
146
- }
147
- }
@@ -1,21 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "pie-card",
4
- "type": "registry:component",
5
- "title": "PieCard",
6
- "description": "PieCard component from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/pie-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { PieCard } from '@piedata/pieui/components'\n\nexport default PieCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "PieCard",
19
- "sourcePath": "./PieCard"
20
- }
21
- }