@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,56 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "redirect-button-card",
4
- "type": "registry:component",
5
- "title": "RedirectButtonCard",
6
- "description": "RedirectButtonCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/redirect-button-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { RedirectButtonCard } from '@piedata/pieui/components'\n\nexport default RedirectButtonCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "RedirectButtonCard",
19
- "sourcePath": "./Buttons/RedirectButtonCard",
20
- "pieCard": "RedirectButtonCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "title": {
28
- "type": "string"
29
- },
30
- "url": {
31
- "type": "string"
32
- },
33
- "iconUrl": {
34
- "type": "string"
35
- },
36
- "iconPosition": {
37
- "enum": [
38
- "end",
39
- "start"
40
- ],
41
- "type": "string"
42
- },
43
- "sx": {
44
- "type": "object",
45
- "additionalProperties": {}
46
- }
47
- },
48
- "additionalProperties": false,
49
- "required": [
50
- "name",
51
- "title"
52
- ],
53
- "$schema": "http://json-schema.org/draft-07/schema#"
54
- }
55
- }
56
- }
@@ -1,40 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "sequence-card",
4
- "type": "registry:component",
5
- "title": "SequenceCard",
6
- "description": "SequenceCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/sequence-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { SequenceCard } from '@piedata/pieui/components'\n\nexport default SequenceCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "SequenceCard",
19
- "sourcePath": "./Containers/SequenceCard",
20
- "pieCard": "SequenceCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "sx": {
28
- "type": "object",
29
- "additionalProperties": {}
30
- }
31
- },
32
- "additionalProperties": false,
33
- "required": [
34
- "name",
35
- "sx"
36
- ],
37
- "$schema": "http://json-schema.org/draft-07/schema#"
38
- }
39
- }
40
- }
@@ -1,122 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "table-card",
4
- "type": "registry:component",
5
- "title": "TableCard",
6
- "description": "TableCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/table-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { TableCard } from '@piedata/pieui/components'\n\nexport default TableCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "TableCard",
19
- "sourcePath": "./Containers/TableCard",
20
- "pieCard": "TableCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- },
27
- "headers": {
28
- "type": "array",
29
- "items": {
30
- "type": "array",
31
- "items": {
32
- "anyOf": [
33
- {
34
- "$ref": "#/definitions/UIConfigType"
35
- },
36
- {
37
- "type": "string"
38
- }
39
- ]
40
- }
41
- }
42
- },
43
- "rows": {
44
- "type": "array",
45
- "items": {
46
- "type": "array",
47
- "items": {
48
- "anyOf": [
49
- {
50
- "$ref": "#/definitions/UIConfigType"
51
- },
52
- {
53
- "type": "string"
54
- }
55
- ]
56
- }
57
- }
58
- },
59
- "rowUrls": {
60
- "type": "array",
61
- "items": {
62
- "type": "string"
63
- }
64
- },
65
- "useSocketioSupport": {
66
- "type": "boolean"
67
- },
68
- "useCentrifugeSupport": {
69
- "type": "boolean"
70
- },
71
- "useMittSupport": {
72
- "type": "boolean"
73
- },
74
- "centrifugeChannel": {
75
- "type": "string"
76
- },
77
- "columns": {
78
- "type": "array",
79
- "items": {
80
- "type": "string"
81
- }
82
- },
83
- "content": {
84
- "type": "object",
85
- "additionalProperties": {}
86
- },
87
- "sx": {
88
- "type": "object",
89
- "additionalProperties": {}
90
- },
91
- "sxMap": {
92
- "type": "object",
93
- "properties": {
94
- "table": {},
95
- "cell": {},
96
- "row": {}
97
- },
98
- "additionalProperties": false,
99
- "required": [
100
- "cell",
101
- "row",
102
- "table"
103
- ]
104
- }
105
- },
106
- "additionalProperties": false,
107
- "required": [
108
- "columns",
109
- "content",
110
- "headers",
111
- "name",
112
- "rowUrls",
113
- "rows",
114
- "sxMap",
115
- "useCentrifugeSupport",
116
- "useMittSupport",
117
- "useSocketioSupport"
118
- ],
119
- "$schema": "http://json-schema.org/draft-07/schema#"
120
- }
121
- }
122
- }
package/dist/r/ui.json DELETED
@@ -1,21 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "ui",
4
- "type": "registry:component",
5
- "title": "UI",
6
- "description": "UI component from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/ui.tsx",
13
- "type": "registry:component",
14
- "content": "import { UI } from '@piedata/pieui/components'\n\nexport default UI\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "UI",
19
- "sourcePath": "./UI"
20
- }
21
- }
@@ -1,35 +0,0 @@
1
- {
2
- "$schema": "https://ui.shadcn.com/schema/registry-item.json",
3
- "name": "union-card",
4
- "type": "registry:component",
5
- "title": "UnionCard",
6
- "description": "UnionCard card from PieUI",
7
- "dependencies": [
8
- "@piedata/pieui"
9
- ],
10
- "files": [
11
- {
12
- "path": "registry/union-card.tsx",
13
- "type": "registry:component",
14
- "content": "import { UnionCard } from '@piedata/pieui/components'\n\nexport default UnionCard\n"
15
- }
16
- ],
17
- "meta": {
18
- "sourceExport": "UnionCard",
19
- "sourcePath": "./Containers/UnionCard",
20
- "pieCard": "UnionCard",
21
- "dataSchema": {
22
- "type": "object",
23
- "properties": {
24
- "name": {
25
- "type": "string"
26
- }
27
- },
28
- "additionalProperties": false,
29
- "required": [
30
- "name"
31
- ],
32
- "$schema": "http://json-schema.org/draft-07/schema#"
33
- }
34
- }
35
- }
@@ -1,96 +0,0 @@
1
- {
2
- "name": "@piedata/pieui",
3
- "homepage": "https://github.com/PieDataLabs/pieui",
4
- "items": [
5
- {
6
- "name": "ajax-button-card",
7
- "type": "registry:component",
8
- "title": "AjaxButtonCard",
9
- "description": "AjaxButtonCard card from PieUI"
10
- },
11
- {
12
- "name": "ajax-group-card",
13
- "type": "registry:component",
14
- "title": "AjaxGroupCard",
15
- "description": "AjaxGroupCard card from PieUI"
16
- },
17
- {
18
- "name": "auto-redirect-card",
19
- "type": "registry:component",
20
- "title": "AutoRedirectCard",
21
- "description": "AutoRedirectCard card from PieUI"
22
- },
23
- {
24
- "name": "box-card",
25
- "type": "registry:component",
26
- "title": "BoxCard",
27
- "description": "BoxCard card from PieUI"
28
- },
29
- {
30
- "name": "chat-card",
31
- "type": "registry:component",
32
- "title": "ChatCard",
33
- "description": "ChatCard card from PieUI"
34
- },
35
- {
36
- "name": "hidden-card",
37
- "type": "registry:component",
38
- "title": "HiddenCard",
39
- "description": "HiddenCard card from PieUI"
40
- },
41
- {
42
- "name": "html-embed-card",
43
- "type": "registry:component",
44
- "title": "HTMLEmbedCard",
45
- "description": "HTMLEmbedCard card from PieUI"
46
- },
47
- {
48
- "name": "io-events-card",
49
- "type": "registry:component",
50
- "title": "IOEventsCard",
51
- "description": "IOEventsCard card from PieUI"
52
- },
53
- {
54
- "name": "open-ai-voice-agent-card",
55
- "type": "registry:component",
56
- "title": "OpenAIVoiceAgentCard",
57
- "description": "OpenAIVoiceAgentCard card from PieUI"
58
- },
59
- {
60
- "name": "pie-card",
61
- "type": "registry:component",
62
- "title": "PieCard",
63
- "description": "PieCard component from PieUI"
64
- },
65
- {
66
- "name": "redirect-button-card",
67
- "type": "registry:component",
68
- "title": "RedirectButtonCard",
69
- "description": "RedirectButtonCard card from PieUI"
70
- },
71
- {
72
- "name": "sequence-card",
73
- "type": "registry:component",
74
- "title": "SequenceCard",
75
- "description": "SequenceCard card from PieUI"
76
- },
77
- {
78
- "name": "table-card",
79
- "type": "registry:component",
80
- "title": "TableCard",
81
- "description": "TableCard card from PieUI"
82
- },
83
- {
84
- "name": "ui",
85
- "type": "registry:component",
86
- "title": "UI",
87
- "description": "UI component from PieUI"
88
- },
89
- {
90
- "name": "union-card",
91
- "type": "registry:component",
92
- "title": "UnionCard",
93
- "description": "UnionCard card from PieUI"
94
- }
95
- ]
96
- }