@piedata/pieui 1.1.28 → 1.1.30
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/README.md +10 -0
- package/dist/cli.js +277 -41
- package/dist/components/PieBaseRoot/index.d.ts.map +1 -1
- package/dist/components/PieRoot/index.d.ts.map +1 -1
- package/dist/components/PieTelegramRoot/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.esm.js +1 -76
- package/dist/components/index.js +1 -106
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.esm.js +1 -81
- package/dist/index.js +1 -123
- package/dist/r/ajax-button-card.json +68 -0
- package/dist/r/ajax-group-card.json +63 -0
- package/dist/r/auto-redirect-card.json +35 -0
- package/dist/r/box-card.json +44 -0
- package/dist/r/chat-card.json +236 -0
- package/dist/r/hidden-card.json +51 -0
- package/dist/r/html-embed-card.json +56 -0
- package/dist/r/index.json +92 -0
- package/dist/r/io-events-card.json +47 -0
- package/dist/r/open-ai-voice-agent-card.json +147 -0
- package/dist/r/pie-card.json +21 -0
- package/dist/r/redirect-button-card.json +56 -0
- package/dist/r/sequence-card.json +40 -0
- package/dist/r/table-card.json +122 -0
- package/dist/r/ui.json +21 -0
- package/dist/r/union-card.json +35 -0
- package/dist/registry.json +96 -0
- package/dist/util/globalForm.d.ts +2 -0
- package/dist/util/globalForm.d.ts.map +1 -0
- package/package.json +1 -2
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "ajax-button-card",
|
|
4
|
+
"type": "registry:component",
|
|
5
|
+
"title": "AjaxButtonCard",
|
|
6
|
+
"description": "AjaxButtonCard card from PieUI",
|
|
7
|
+
"dependencies": [
|
|
8
|
+
"@piedata/pieui"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"path": "registry/ajax-button-card.tsx",
|
|
13
|
+
"type": "registry:component",
|
|
14
|
+
"content": "import { AjaxButtonCard } from '@piedata/pieui/components'\n\nexport default AjaxButtonCard\n"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"meta": {
|
|
18
|
+
"sourceExport": "AjaxButtonCard",
|
|
19
|
+
"sourcePath": "./Buttons/AjaxButtonCard",
|
|
20
|
+
"pieCard": "AjaxButtonCard",
|
|
21
|
+
"dataSchema": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"properties": {
|
|
24
|
+
"name": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"title": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"pathname": {
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"depsNames": {
|
|
34
|
+
"type": "array",
|
|
35
|
+
"items": {
|
|
36
|
+
"type": "string"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"kwargs": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"additionalProperties": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"iconUrl": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
48
|
+
"iconPosition": {
|
|
49
|
+
"enum": [
|
|
50
|
+
"end",
|
|
51
|
+
"start"
|
|
52
|
+
],
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"sx": {
|
|
56
|
+
"type": "object",
|
|
57
|
+
"additionalProperties": {}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"additionalProperties": false,
|
|
61
|
+
"required": [
|
|
62
|
+
"name",
|
|
63
|
+
"title"
|
|
64
|
+
],
|
|
65
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "ajax-group-card",
|
|
4
|
+
"type": "registry:component",
|
|
5
|
+
"title": "AjaxGroupCard",
|
|
6
|
+
"description": "AjaxGroupCard card from PieUI",
|
|
7
|
+
"dependencies": [
|
|
8
|
+
"@piedata/pieui"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"path": "registry/ajax-group-card.tsx",
|
|
13
|
+
"type": "registry:component",
|
|
14
|
+
"content": "import { AjaxGroupCard } from '@piedata/pieui/components'\n\nexport default AjaxGroupCard\n"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"meta": {
|
|
18
|
+
"sourceExport": "AjaxGroupCard",
|
|
19
|
+
"sourcePath": "./Containers/AjaxGroupCard",
|
|
20
|
+
"pieCard": "AjaxGroupCard",
|
|
21
|
+
"dataSchema": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"properties": {
|
|
24
|
+
"name": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"noReturn": {
|
|
28
|
+
"type": "boolean"
|
|
29
|
+
},
|
|
30
|
+
"returnType": {
|
|
31
|
+
"enum": [
|
|
32
|
+
"content",
|
|
33
|
+
"events"
|
|
34
|
+
],
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"useLoader": {
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
40
|
+
"useSocketioSupport": {
|
|
41
|
+
"type": "boolean"
|
|
42
|
+
},
|
|
43
|
+
"useCentrifugeSupport": {
|
|
44
|
+
"type": "boolean"
|
|
45
|
+
},
|
|
46
|
+
"useMittSupport": {
|
|
47
|
+
"type": "boolean"
|
|
48
|
+
},
|
|
49
|
+
"centrifugeChannel": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"additionalProperties": false,
|
|
54
|
+
"required": [
|
|
55
|
+
"name",
|
|
56
|
+
"noReturn",
|
|
57
|
+
"returnType",
|
|
58
|
+
"useLoader"
|
|
59
|
+
],
|
|
60
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "auto-redirect-card",
|
|
4
|
+
"type": "registry:component",
|
|
5
|
+
"title": "AutoRedirectCard",
|
|
6
|
+
"description": "AutoRedirectCard card from PieUI",
|
|
7
|
+
"dependencies": [
|
|
8
|
+
"@piedata/pieui"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"path": "registry/auto-redirect-card.tsx",
|
|
13
|
+
"type": "registry:component",
|
|
14
|
+
"content": "import { AutoRedirectCard } from '@piedata/pieui/components'\n\nexport default AutoRedirectCard\n"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"meta": {
|
|
18
|
+
"sourceExport": "AutoRedirectCard",
|
|
19
|
+
"sourcePath": "./Common/AutoRedirectCard",
|
|
20
|
+
"pieCard": "AutoRedirectCard",
|
|
21
|
+
"dataSchema": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"properties": {
|
|
24
|
+
"url": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"additionalProperties": false,
|
|
29
|
+
"required": [
|
|
30
|
+
"url"
|
|
31
|
+
],
|
|
32
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
|
|
3
|
+
"name": "box-card",
|
|
4
|
+
"type": "registry:component",
|
|
5
|
+
"title": "BoxCard",
|
|
6
|
+
"description": "BoxCard card from PieUI",
|
|
7
|
+
"dependencies": [
|
|
8
|
+
"@piedata/pieui"
|
|
9
|
+
],
|
|
10
|
+
"files": [
|
|
11
|
+
{
|
|
12
|
+
"path": "registry/box-card.tsx",
|
|
13
|
+
"type": "registry:component",
|
|
14
|
+
"content": "import { BoxCard } from '@piedata/pieui/components'\n\nexport default BoxCard\n"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"meta": {
|
|
18
|
+
"sourceExport": "BoxCard",
|
|
19
|
+
"sourcePath": "./Containers/BoxCard",
|
|
20
|
+
"pieCard": "BoxCard",
|
|
21
|
+
"dataSchema": {
|
|
22
|
+
"type": "object",
|
|
23
|
+
"properties": {
|
|
24
|
+
"name": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"url": {
|
|
28
|
+
"type": "string"
|
|
29
|
+
},
|
|
30
|
+
"sx": {
|
|
31
|
+
"type": "object",
|
|
32
|
+
"additionalProperties": {}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"additionalProperties": false,
|
|
36
|
+
"required": [
|
|
37
|
+
"name",
|
|
38
|
+
"sx",
|
|
39
|
+
"url"
|
|
40
|
+
],
|
|
41
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
@@ -0,0 +1,236 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
}
|