@razorwind/core 0.0.26 → 0.0.28
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/{config-CdWp8VAJ.d.mts → config-B-9DV8mT.d.cts} +12 -5
- package/dist/config-B-9DV8mT.d.cts.map +1 -0
- package/dist/{config-DBWJv6wm.d.cts → config-BIIL6BJa.d.mts} +12 -5
- package/dist/config-BIIL6BJa.d.mts.map +1 -0
- package/dist/{index-CH__zCuk.d.cts → index-BGy8EkAJ.d.mts} +5 -5
- package/dist/{index-DLV7_d-V.d.mts.map → index-BGy8EkAJ.d.mts.map} +1 -1
- package/dist/{index-DW51mcvl.d.cts → index-BzsWyssi.d.cts} +1 -1
- package/dist/{index-DLV7_d-V.d.mts → index-Di8KVEql.d.cts} +5 -5
- package/dist/{index-CH__zCuk.d.cts.map → index-Di8KVEql.d.cts.map} +1 -1
- package/dist/{index-BhVvIILv.d.mts → index-dMv2FZkj.d.mts} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +18 -6
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +18 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/lib/tokens/index.d.cts +1 -1
- package/dist/lib/tokens/index.d.mts +1 -1
- package/dist/{plugin-BRsuaaQR.d.mts → plugin-49itXF3F.d.mts} +2 -2
- package/dist/plugin-49itXF3F.d.mts.map +1 -0
- package/dist/{plugin-C6HpaHMi.d.cts → plugin-D9baACxf.d.cts} +2 -2
- package/dist/{plugin-C6HpaHMi.d.cts.map → plugin-D9baACxf.d.cts.map} +1 -1
- package/dist/plugin.d.cts +2 -2
- package/dist/plugin.d.mts +2 -2
- package/dist/schema/index.cjs +1 -1
- package/dist/schema/index.d.cts +3 -3
- package/dist/schema/index.d.mts +3 -3
- package/dist/schema/index.mjs +1 -1
- package/dist/schema-D_QQto0V.d.cts +257 -0
- package/dist/schema-D_QQto0V.d.cts.map +1 -0
- package/dist/schema-D_QQto0V.d.mts +257 -0
- package/dist/schema-D_QQto0V.d.mts.map +1 -0
- package/dist/schema-jfwKMfbW.mjs +2 -0
- package/dist/schema-jfwKMfbW.mjs.map +1 -0
- package/dist/schema-r6H4qZHJ.cjs +1 -0
- package/package.json +6 -6
- package/dist/config-CdWp8VAJ.d.mts.map +0 -1
- package/dist/config-DBWJv6wm.d.cts.map +0 -1
- package/dist/plugin-BRsuaaQR.d.mts.map +0 -1
- package/dist/schema-C6-umW1r.d.cts +0 -115
- package/dist/schema-C6-umW1r.d.cts.map +0 -1
- package/dist/schema-C6-umW1r.d.mts +0 -115
- package/dist/schema-C6-umW1r.d.mts.map +0 -1
- package/dist/schema-CzpHs4s7.mjs +0 -2
- package/dist/schema-CzpHs4s7.mjs.map +0 -1
- package/dist/schema-DWEhLYz4.cjs +0 -1
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import z, { z as z$1 } from "zod";
|
|
2
|
+
import { Tokens } from "@power-plant/dtcg-schema";
|
|
3
|
+
//#region src/schema/components.d.ts
|
|
4
|
+
declare const componentFileSchema: z$1.ZodObject<{
|
|
5
|
+
path: z$1.ZodString;
|
|
6
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
7
|
+
block: "block";
|
|
8
|
+
component: "component";
|
|
9
|
+
ui: "ui";
|
|
10
|
+
page: "page";
|
|
11
|
+
file: "file";
|
|
12
|
+
lib: "lib";
|
|
13
|
+
hook: "hook";
|
|
14
|
+
theme: "theme";
|
|
15
|
+
style: "style";
|
|
16
|
+
base: "base";
|
|
17
|
+
font: "font";
|
|
18
|
+
item: "item";
|
|
19
|
+
}>>;
|
|
20
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
21
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
22
|
+
}, z$1.core.$strip>;
|
|
23
|
+
type ComponentFile = z$1.infer<typeof componentFileSchema>;
|
|
24
|
+
/**
|
|
25
|
+
* An example of how a component should be used.
|
|
26
|
+
*
|
|
27
|
+
* Loaded from a component directory's `usage/` folder, or declared under
|
|
28
|
+
* `usage` in `component.json` / `package.json` `razorwind`. Consumed by
|
|
29
|
+
* documentation and Storybook plugins.
|
|
30
|
+
*/
|
|
31
|
+
declare const componentUsageSchema: z$1.ZodObject<{
|
|
32
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
33
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
34
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
35
|
+
path: z$1.ZodString;
|
|
36
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
37
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
38
|
+
tsx: "tsx";
|
|
39
|
+
jsx: "jsx";
|
|
40
|
+
ts: "ts";
|
|
41
|
+
js: "js";
|
|
42
|
+
mdx: "mdx";
|
|
43
|
+
md: "md";
|
|
44
|
+
css: "css";
|
|
45
|
+
html: "html";
|
|
46
|
+
txt: "txt";
|
|
47
|
+
}>>;
|
|
48
|
+
}, z$1.core.$strip>;
|
|
49
|
+
type ComponentUsage = z$1.infer<typeof componentUsageSchema>;
|
|
50
|
+
declare const componentSchema: z$1.ZodObject<{
|
|
51
|
+
name: z$1.ZodString;
|
|
52
|
+
title: z$1.ZodString;
|
|
53
|
+
type: z$1.ZodDefault<z$1.ZodEnum<{
|
|
54
|
+
block: "block";
|
|
55
|
+
component: "component";
|
|
56
|
+
ui: "ui";
|
|
57
|
+
page: "page";
|
|
58
|
+
}>>;
|
|
59
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
60
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
61
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
62
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
63
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
64
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
65
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
66
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
67
|
+
dependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
68
|
+
devDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
69
|
+
registryDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
70
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
71
|
+
path: z$1.ZodString;
|
|
72
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
73
|
+
block: "block";
|
|
74
|
+
component: "component";
|
|
75
|
+
ui: "ui";
|
|
76
|
+
page: "page";
|
|
77
|
+
file: "file";
|
|
78
|
+
lib: "lib";
|
|
79
|
+
hook: "hook";
|
|
80
|
+
theme: "theme";
|
|
81
|
+
style: "style";
|
|
82
|
+
base: "base";
|
|
83
|
+
font: "font";
|
|
84
|
+
item: "item";
|
|
85
|
+
}>>;
|
|
86
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
87
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
88
|
+
}, z$1.core.$strip>>>;
|
|
89
|
+
usage: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
90
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
91
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
92
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
93
|
+
path: z$1.ZodString;
|
|
94
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
95
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
96
|
+
tsx: "tsx";
|
|
97
|
+
jsx: "jsx";
|
|
98
|
+
ts: "ts";
|
|
99
|
+
js: "js";
|
|
100
|
+
mdx: "mdx";
|
|
101
|
+
md: "md";
|
|
102
|
+
css: "css";
|
|
103
|
+
html: "html";
|
|
104
|
+
txt: "txt";
|
|
105
|
+
}>>;
|
|
106
|
+
}, z$1.core.$strip>>>;
|
|
107
|
+
}, z$1.core.$strip>;
|
|
108
|
+
type Component = z$1.infer<typeof componentSchema>;
|
|
109
|
+
declare const componentsSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
110
|
+
name: z$1.ZodString;
|
|
111
|
+
title: z$1.ZodString;
|
|
112
|
+
type: z$1.ZodDefault<z$1.ZodEnum<{
|
|
113
|
+
block: "block";
|
|
114
|
+
component: "component";
|
|
115
|
+
ui: "ui";
|
|
116
|
+
page: "page";
|
|
117
|
+
}>>;
|
|
118
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
119
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
120
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
121
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
122
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
123
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
124
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
125
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
126
|
+
dependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
127
|
+
devDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
128
|
+
registryDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
129
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
130
|
+
path: z$1.ZodString;
|
|
131
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
132
|
+
block: "block";
|
|
133
|
+
component: "component";
|
|
134
|
+
ui: "ui";
|
|
135
|
+
page: "page";
|
|
136
|
+
file: "file";
|
|
137
|
+
lib: "lib";
|
|
138
|
+
hook: "hook";
|
|
139
|
+
theme: "theme";
|
|
140
|
+
style: "style";
|
|
141
|
+
base: "base";
|
|
142
|
+
font: "font";
|
|
143
|
+
item: "item";
|
|
144
|
+
}>>;
|
|
145
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
146
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
147
|
+
}, z$1.core.$strip>>>;
|
|
148
|
+
usage: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
149
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
150
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
151
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
152
|
+
path: z$1.ZodString;
|
|
153
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
154
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
155
|
+
tsx: "tsx";
|
|
156
|
+
jsx: "jsx";
|
|
157
|
+
ts: "ts";
|
|
158
|
+
js: "js";
|
|
159
|
+
mdx: "mdx";
|
|
160
|
+
md: "md";
|
|
161
|
+
css: "css";
|
|
162
|
+
html: "html";
|
|
163
|
+
txt: "txt";
|
|
164
|
+
}>>;
|
|
165
|
+
}, z$1.core.$strip>>>;
|
|
166
|
+
}, z$1.core.$strip>>;
|
|
167
|
+
type Components = z$1.infer<typeof componentsSchema>;
|
|
168
|
+
//#endregion
|
|
169
|
+
//#region src/schema/icons.d.ts
|
|
170
|
+
declare const iconFileSchema: z$1.ZodObject<{
|
|
171
|
+
path: z$1.ZodString;
|
|
172
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
173
|
+
file: "file";
|
|
174
|
+
svg: "svg";
|
|
175
|
+
png: "png";
|
|
176
|
+
webp: "webp";
|
|
177
|
+
jpg: "jpg";
|
|
178
|
+
jpeg: "jpeg";
|
|
179
|
+
gif: "gif";
|
|
180
|
+
ico: "ico";
|
|
181
|
+
}>>;
|
|
182
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
183
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
184
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
185
|
+
}, z$1.core.$strip>;
|
|
186
|
+
type IconFile = z$1.infer<typeof iconFileSchema>;
|
|
187
|
+
declare const iconSchema: z$1.ZodObject<{
|
|
188
|
+
name: z$1.ZodString;
|
|
189
|
+
title: z$1.ZodString;
|
|
190
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
191
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
192
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
193
|
+
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
194
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
195
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
196
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
197
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
198
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
199
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
200
|
+
path: z$1.ZodString;
|
|
201
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
202
|
+
file: "file";
|
|
203
|
+
svg: "svg";
|
|
204
|
+
png: "png";
|
|
205
|
+
webp: "webp";
|
|
206
|
+
jpg: "jpg";
|
|
207
|
+
jpeg: "jpeg";
|
|
208
|
+
gif: "gif";
|
|
209
|
+
ico: "ico";
|
|
210
|
+
}>>;
|
|
211
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
212
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
213
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
214
|
+
}, z$1.core.$strip>>>;
|
|
215
|
+
}, z$1.core.$strip>;
|
|
216
|
+
type Icon = z$1.infer<typeof iconSchema>;
|
|
217
|
+
declare const iconsSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
218
|
+
name: z$1.ZodString;
|
|
219
|
+
title: z$1.ZodString;
|
|
220
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
221
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
222
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
223
|
+
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
224
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
225
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
226
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
227
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
228
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
229
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
230
|
+
path: z$1.ZodString;
|
|
231
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
232
|
+
file: "file";
|
|
233
|
+
svg: "svg";
|
|
234
|
+
png: "png";
|
|
235
|
+
webp: "webp";
|
|
236
|
+
jpg: "jpg";
|
|
237
|
+
jpeg: "jpeg";
|
|
238
|
+
gif: "gif";
|
|
239
|
+
ico: "ico";
|
|
240
|
+
}>>;
|
|
241
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
242
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
243
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
244
|
+
}, z$1.core.$strip>>>;
|
|
245
|
+
}, z$1.core.$strip>>;
|
|
246
|
+
type Icons = z$1.infer<typeof iconsSchema>;
|
|
247
|
+
//#endregion
|
|
248
|
+
//#region src/schema/schema.d.ts
|
|
249
|
+
interface Schema {
|
|
250
|
+
components: Components;
|
|
251
|
+
icons: Icons;
|
|
252
|
+
tokens: Tokens | Record<string, Tokens>;
|
|
253
|
+
}
|
|
254
|
+
declare const schema: z.ZodType<Schema>;
|
|
255
|
+
//#endregion
|
|
256
|
+
export { Icons as a, iconsSchema as c, ComponentUsage as d, Components as f, componentsSchema as g, componentUsageSchema as h, IconFile as i, Component as l, componentSchema as m, schema as n, iconFileSchema as o, componentFileSchema as p, Icon as r, iconSchema as s, Schema as t, ComponentFile as u };
|
|
257
|
+
//# sourceMappingURL=schema-D_QQto0V.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema-D_QQto0V.d.cts","names":[],"sources":["../src/schema/components.ts","../src/schema/icons.ts","../src/schema/schema.ts"],"mappings":";;;cAoBa,qBAAmB,IAAA;;;;;;;;;;;;;;;;;;GAyB9B,IAAA,KAAA;KAEU,gBAAgB,IAAE,aAAa;;;;;;;;cAS9B,sBAAoB,IAAA;;;;;;;;;;;;;;;;;GAiB/B,IAAA,KAAA;KAEU,iBAAiB,IAAE,aAAa;cAE/B,iBAAe,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsB1B,IAAA,KAAA;KAEU,YAAY,IAAE,aAAa;cAE1B,kBAAgB,IAAA,UAAA,IAAA,WAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAwC,IAAA,KAAA;KAEzD,aAAa,IAAE,aAAa;;;cCrF3B,gBAAc,IAAA;;;;;;;;;;;;;;;GAkBzB,IAAA,KAAA;KAEU,WAAW,IAAE,aAAa;cAEzB,YAAU,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAarB,IAAA,KAAA;KAEU,OAAO,IAAE,aAAa;cAErB,aAAW,IAAA,UAAA,IAAA,WAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAAmC,IAAA,KAAA;KAE/C,QAAQ,IAAE,aAAa;;;UC9BlB;EACf,YAAY;EACZ,OAAO;EACP,QAAQ,SAAS,eAAe;;cAGrB,QAAQ,EAAE,QAAQ"}
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import z, { z as z$1 } from "zod";
|
|
2
|
+
import { Tokens } from "@power-plant/dtcg-schema";
|
|
3
|
+
//#region src/schema/components.d.ts
|
|
4
|
+
declare const componentFileSchema: z$1.ZodObject<{
|
|
5
|
+
path: z$1.ZodString;
|
|
6
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
7
|
+
block: "block";
|
|
8
|
+
component: "component";
|
|
9
|
+
ui: "ui";
|
|
10
|
+
page: "page";
|
|
11
|
+
file: "file";
|
|
12
|
+
lib: "lib";
|
|
13
|
+
hook: "hook";
|
|
14
|
+
theme: "theme";
|
|
15
|
+
style: "style";
|
|
16
|
+
base: "base";
|
|
17
|
+
font: "font";
|
|
18
|
+
item: "item";
|
|
19
|
+
}>>;
|
|
20
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
21
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
22
|
+
}, z$1.core.$strip>;
|
|
23
|
+
type ComponentFile = z$1.infer<typeof componentFileSchema>;
|
|
24
|
+
/**
|
|
25
|
+
* An example of how a component should be used.
|
|
26
|
+
*
|
|
27
|
+
* Loaded from a component directory's `usage/` folder, or declared under
|
|
28
|
+
* `usage` in `component.json` / `package.json` `razorwind`. Consumed by
|
|
29
|
+
* documentation and Storybook plugins.
|
|
30
|
+
*/
|
|
31
|
+
declare const componentUsageSchema: z$1.ZodObject<{
|
|
32
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
33
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
34
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
35
|
+
path: z$1.ZodString;
|
|
36
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
37
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
38
|
+
tsx: "tsx";
|
|
39
|
+
jsx: "jsx";
|
|
40
|
+
ts: "ts";
|
|
41
|
+
js: "js";
|
|
42
|
+
mdx: "mdx";
|
|
43
|
+
md: "md";
|
|
44
|
+
css: "css";
|
|
45
|
+
html: "html";
|
|
46
|
+
txt: "txt";
|
|
47
|
+
}>>;
|
|
48
|
+
}, z$1.core.$strip>;
|
|
49
|
+
type ComponentUsage = z$1.infer<typeof componentUsageSchema>;
|
|
50
|
+
declare const componentSchema: z$1.ZodObject<{
|
|
51
|
+
name: z$1.ZodString;
|
|
52
|
+
title: z$1.ZodString;
|
|
53
|
+
type: z$1.ZodDefault<z$1.ZodEnum<{
|
|
54
|
+
block: "block";
|
|
55
|
+
component: "component";
|
|
56
|
+
ui: "ui";
|
|
57
|
+
page: "page";
|
|
58
|
+
}>>;
|
|
59
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
60
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
61
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
62
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
63
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
64
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
65
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
66
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
67
|
+
dependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
68
|
+
devDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
69
|
+
registryDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
70
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
71
|
+
path: z$1.ZodString;
|
|
72
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
73
|
+
block: "block";
|
|
74
|
+
component: "component";
|
|
75
|
+
ui: "ui";
|
|
76
|
+
page: "page";
|
|
77
|
+
file: "file";
|
|
78
|
+
lib: "lib";
|
|
79
|
+
hook: "hook";
|
|
80
|
+
theme: "theme";
|
|
81
|
+
style: "style";
|
|
82
|
+
base: "base";
|
|
83
|
+
font: "font";
|
|
84
|
+
item: "item";
|
|
85
|
+
}>>;
|
|
86
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
87
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
88
|
+
}, z$1.core.$strip>>>;
|
|
89
|
+
usage: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
90
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
91
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
92
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
93
|
+
path: z$1.ZodString;
|
|
94
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
95
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
96
|
+
tsx: "tsx";
|
|
97
|
+
jsx: "jsx";
|
|
98
|
+
ts: "ts";
|
|
99
|
+
js: "js";
|
|
100
|
+
mdx: "mdx";
|
|
101
|
+
md: "md";
|
|
102
|
+
css: "css";
|
|
103
|
+
html: "html";
|
|
104
|
+
txt: "txt";
|
|
105
|
+
}>>;
|
|
106
|
+
}, z$1.core.$strip>>>;
|
|
107
|
+
}, z$1.core.$strip>;
|
|
108
|
+
type Component = z$1.infer<typeof componentSchema>;
|
|
109
|
+
declare const componentsSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
110
|
+
name: z$1.ZodString;
|
|
111
|
+
title: z$1.ZodString;
|
|
112
|
+
type: z$1.ZodDefault<z$1.ZodEnum<{
|
|
113
|
+
block: "block";
|
|
114
|
+
component: "component";
|
|
115
|
+
ui: "ui";
|
|
116
|
+
page: "page";
|
|
117
|
+
}>>;
|
|
118
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
119
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
120
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
121
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
122
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
123
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
124
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
125
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
126
|
+
dependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
127
|
+
devDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
128
|
+
registryDependencies: z$1.ZodOptional<z$1.ZodRecord<z$1.ZodString, z$1.ZodString>>;
|
|
129
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
130
|
+
path: z$1.ZodString;
|
|
131
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
132
|
+
block: "block";
|
|
133
|
+
component: "component";
|
|
134
|
+
ui: "ui";
|
|
135
|
+
page: "page";
|
|
136
|
+
file: "file";
|
|
137
|
+
lib: "lib";
|
|
138
|
+
hook: "hook";
|
|
139
|
+
theme: "theme";
|
|
140
|
+
style: "style";
|
|
141
|
+
base: "base";
|
|
142
|
+
font: "font";
|
|
143
|
+
item: "item";
|
|
144
|
+
}>>;
|
|
145
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
146
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
147
|
+
}, z$1.core.$strip>>>;
|
|
148
|
+
usage: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
149
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
150
|
+
title: z$1.ZodOptional<z$1.ZodString>;
|
|
151
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
152
|
+
path: z$1.ZodString;
|
|
153
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
154
|
+
language: z$1.ZodOptional<z$1.ZodEnum<{
|
|
155
|
+
tsx: "tsx";
|
|
156
|
+
jsx: "jsx";
|
|
157
|
+
ts: "ts";
|
|
158
|
+
js: "js";
|
|
159
|
+
mdx: "mdx";
|
|
160
|
+
md: "md";
|
|
161
|
+
css: "css";
|
|
162
|
+
html: "html";
|
|
163
|
+
txt: "txt";
|
|
164
|
+
}>>;
|
|
165
|
+
}, z$1.core.$strip>>>;
|
|
166
|
+
}, z$1.core.$strip>>;
|
|
167
|
+
type Components = z$1.infer<typeof componentsSchema>;
|
|
168
|
+
//#endregion
|
|
169
|
+
//#region src/schema/icons.d.ts
|
|
170
|
+
declare const iconFileSchema: z$1.ZodObject<{
|
|
171
|
+
path: z$1.ZodString;
|
|
172
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
173
|
+
file: "file";
|
|
174
|
+
svg: "svg";
|
|
175
|
+
png: "png";
|
|
176
|
+
webp: "webp";
|
|
177
|
+
jpg: "jpg";
|
|
178
|
+
jpeg: "jpeg";
|
|
179
|
+
gif: "gif";
|
|
180
|
+
ico: "ico";
|
|
181
|
+
}>>;
|
|
182
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
183
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
184
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
185
|
+
}, z$1.core.$strip>;
|
|
186
|
+
type IconFile = z$1.infer<typeof iconFileSchema>;
|
|
187
|
+
declare const iconSchema: z$1.ZodObject<{
|
|
188
|
+
name: z$1.ZodString;
|
|
189
|
+
title: z$1.ZodString;
|
|
190
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
191
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
192
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
193
|
+
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
194
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
195
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
196
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
197
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
198
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
199
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
200
|
+
path: z$1.ZodString;
|
|
201
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
202
|
+
file: "file";
|
|
203
|
+
svg: "svg";
|
|
204
|
+
png: "png";
|
|
205
|
+
webp: "webp";
|
|
206
|
+
jpg: "jpg";
|
|
207
|
+
jpeg: "jpeg";
|
|
208
|
+
gif: "gif";
|
|
209
|
+
ico: "ico";
|
|
210
|
+
}>>;
|
|
211
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
212
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
213
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
214
|
+
}, z$1.core.$strip>>>;
|
|
215
|
+
}, z$1.core.$strip>;
|
|
216
|
+
type Icon = z$1.infer<typeof iconSchema>;
|
|
217
|
+
declare const iconsSchema: z$1.ZodRecord<z$1.ZodString, z$1.ZodObject<{
|
|
218
|
+
name: z$1.ZodString;
|
|
219
|
+
title: z$1.ZodString;
|
|
220
|
+
category: z$1.ZodOptional<z$1.ZodString>;
|
|
221
|
+
description: z$1.ZodOptional<z$1.ZodString>;
|
|
222
|
+
tags: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
223
|
+
aliases: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
224
|
+
related: z$1.ZodOptional<z$1.ZodArray<z$1.ZodString>>;
|
|
225
|
+
since: z$1.ZodOptional<z$1.ZodString>;
|
|
226
|
+
version: z$1.ZodOptional<z$1.ZodString>;
|
|
227
|
+
repository: z$1.ZodOptional<z$1.ZodString>;
|
|
228
|
+
homepage: z$1.ZodOptional<z$1.ZodString>;
|
|
229
|
+
files: z$1.ZodOptional<z$1.ZodArray<z$1.ZodObject<{
|
|
230
|
+
path: z$1.ZodString;
|
|
231
|
+
type: z$1.ZodOptional<z$1.ZodEnum<{
|
|
232
|
+
file: "file";
|
|
233
|
+
svg: "svg";
|
|
234
|
+
png: "png";
|
|
235
|
+
webp: "webp";
|
|
236
|
+
jpg: "jpg";
|
|
237
|
+
jpeg: "jpeg";
|
|
238
|
+
gif: "gif";
|
|
239
|
+
ico: "ico";
|
|
240
|
+
}>>;
|
|
241
|
+
content: z$1.ZodOptional<z$1.ZodString>;
|
|
242
|
+
theme: z$1.ZodOptional<z$1.ZodString>;
|
|
243
|
+
target: z$1.ZodOptional<z$1.ZodString>;
|
|
244
|
+
}, z$1.core.$strip>>>;
|
|
245
|
+
}, z$1.core.$strip>>;
|
|
246
|
+
type Icons = z$1.infer<typeof iconsSchema>;
|
|
247
|
+
//#endregion
|
|
248
|
+
//#region src/schema/schema.d.ts
|
|
249
|
+
interface Schema {
|
|
250
|
+
components: Components;
|
|
251
|
+
icons: Icons;
|
|
252
|
+
tokens: Tokens | Record<string, Tokens>;
|
|
253
|
+
}
|
|
254
|
+
declare const schema: z.ZodType<Schema>;
|
|
255
|
+
//#endregion
|
|
256
|
+
export { Icons as a, iconsSchema as c, ComponentUsage as d, Components as f, componentsSchema as g, componentUsageSchema as h, IconFile as i, Component as l, componentSchema as m, schema as n, iconFileSchema as o, componentFileSchema as p, Icon as r, iconSchema as s, Schema as t, ComponentFile as u };
|
|
257
|
+
//# sourceMappingURL=schema-D_QQto0V.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema-D_QQto0V.d.mts","names":[],"sources":["../src/schema/components.ts","../src/schema/icons.ts","../src/schema/schema.ts"],"mappings":""}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import e,{z as t}from"zod";import{tokenSchema as n,tokensSchema as r,tokensSchema as i}from"@power-plant/dtcg-schema";const a=t.object({path:t.string(),type:t.enum([`lib`,`block`,`component`,`ui`,`hook`,`theme`,`page`,`file`,`style`,`base`,`font`,`item`]).optional(),content:t.string().optional(),target:t.string().optional().describe(`The target path of the file. This is the path to the file in the project. Supports registry target placeholders @components/, @ui/, @lib/, and @hooks/, which resolve to the corresponding aliases configured in components.json. These placeholders are independent of the project's import prefix.`)}),o=t.object({name:t.string().optional().describe(`Stable usage example id. Defaults to the source filename without extension.`),title:t.string().optional(),description:t.string().optional(),path:t.string(),content:t.string().optional(),language:t.enum([`tsx`,`jsx`,`ts`,`js`,`mdx`,`md`,`css`,`html`,`txt`]).optional().describe(`Source language for syntax highlighting. Inferred from the file extension when omitted.`)}),s=t.object({name:t.string(),title:t.string(),type:t.enum([`block`,`component`,`ui`,`page`]).default(`component`),category:t.string().optional(),description:t.string().optional(),tags:t.array(t.string()).optional(),related:t.array(t.string()).optional(),since:t.string().optional(),version:t.string().optional(),repository:t.string().optional(),homepage:t.string().optional(),dependencies:t.record(t.string(),t.string()).optional(),devDependencies:t.record(t.string(),t.string()).optional(),registryDependencies:t.record(t.string(),t.string()).optional(),files:t.array(a).optional(),usage:t.array(o).optional().describe("Example usage snippets for this component. Prefer a `usage/` directory of source files; entries may also be declared in metadata.")}),c=t.record(t.string(),s),l=t.object({path:t.string(),type:t.enum([`svg`,`png`,`webp`,`jpg`,`jpeg`,`gif`,`ico`,`file`]).optional(),content:t.string().optional(),theme:t.string().optional().describe(`Optional theme variant for this asset (for example light or dark).`),target:t.string().optional().describe(`The target path of the file in the project. Supports registry-style placeholders independent of the project's import prefix.`)}),u=t.object({name:t.string(),title:t.string(),category:t.string().optional(),description:t.string().optional(),tags:t.array(t.string()).optional(),aliases:t.array(t.string()).optional(),related:t.array(t.string()).optional(),since:t.string().optional(),version:t.string().optional(),repository:t.string().optional(),homepage:t.string().optional(),files:t.array(l).optional()}),d=t.record(t.string(),u),f=e.union([r,e.record(e.string(),r)]),p=e.object({tokens:f,components:c,icons:d});export{u as a,s as c,l as i,o as l,i as n,d as o,p as r,a as s,n as t,c as u};
|
|
2
|
+
//# sourceMappingURL=schema-jfwKMfbW.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"schema-jfwKMfbW.mjs","names":[],"sources":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e=require("./rolldown-runtime-BocRIvOZ.cjs");let t=require("zod");t=e.t(t,1);let n=require("@power-plant/dtcg-schema");const r=t.z.object({path:t.z.string(),type:t.z.enum([`lib`,`block`,`component`,`ui`,`hook`,`theme`,`page`,`file`,`style`,`base`,`font`,`item`]).optional(),content:t.z.string().optional(),target:t.z.string().optional().describe(`The target path of the file. This is the path to the file in the project. Supports registry target placeholders @components/, @ui/, @lib/, and @hooks/, which resolve to the corresponding aliases configured in components.json. These placeholders are independent of the project's import prefix.`)}),i=t.z.object({name:t.z.string().optional().describe(`Stable usage example id. Defaults to the source filename without extension.`),title:t.z.string().optional(),description:t.z.string().optional(),path:t.z.string(),content:t.z.string().optional(),language:t.z.enum([`tsx`,`jsx`,`ts`,`js`,`mdx`,`md`,`css`,`html`,`txt`]).optional().describe(`Source language for syntax highlighting. Inferred from the file extension when omitted.`)}),a=t.z.object({name:t.z.string(),title:t.z.string(),type:t.z.enum([`block`,`component`,`ui`,`page`]).default(`component`),category:t.z.string().optional(),description:t.z.string().optional(),tags:t.z.array(t.z.string()).optional(),related:t.z.array(t.z.string()).optional(),since:t.z.string().optional(),version:t.z.string().optional(),repository:t.z.string().optional(),homepage:t.z.string().optional(),dependencies:t.z.record(t.z.string(),t.z.string()).optional(),devDependencies:t.z.record(t.z.string(),t.z.string()).optional(),registryDependencies:t.z.record(t.z.string(),t.z.string()).optional(),files:t.z.array(r).optional(),usage:t.z.array(i).optional().describe("Example usage snippets for this component. Prefer a `usage/` directory of source files; entries may also be declared in metadata.")}),o=t.z.record(t.z.string(),a),s=t.z.object({path:t.z.string(),type:t.z.enum([`svg`,`png`,`webp`,`jpg`,`jpeg`,`gif`,`ico`,`file`]).optional(),content:t.z.string().optional(),theme:t.z.string().optional().describe(`Optional theme variant for this asset (for example light or dark).`),target:t.z.string().optional().describe(`The target path of the file in the project. Supports registry-style placeholders independent of the project's import prefix.`)}),c=t.z.object({name:t.z.string(),title:t.z.string(),category:t.z.string().optional(),description:t.z.string().optional(),tags:t.z.array(t.z.string()).optional(),aliases:t.z.array(t.z.string()).optional(),related:t.z.array(t.z.string()).optional(),since:t.z.string().optional(),version:t.z.string().optional(),repository:t.z.string().optional(),homepage:t.z.string().optional(),files:t.z.array(s).optional()}),l=t.z.record(t.z.string(),c),u=t.default.union([n.tokensSchema,t.default.record(t.default.string(),n.tokensSchema)]),d=t.default.object({tokens:u,components:o,icons:l});Object.defineProperty(exports,"a",{enumerable:!0,get:function(){return r}}),Object.defineProperty(exports,"c",{enumerable:!0,get:function(){return o}}),Object.defineProperty(exports,"i",{enumerable:!0,get:function(){return l}}),Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return s}}),Object.defineProperty(exports,"o",{enumerable:!0,get:function(){return a}}),Object.defineProperty(exports,"r",{enumerable:!0,get:function(){return c}}),Object.defineProperty(exports,"s",{enumerable:!0,get:function(){return i}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return d}});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@razorwind/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.28",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "💨 Razorwind is a unified set of tools that make creating design systems a breeze.",
|
|
6
6
|
"keywords": ["razorwind", "storm-software"],
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
"typings": "dist/index.d.mts",
|
|
119
119
|
"files": ["dist"],
|
|
120
120
|
"dependencies": {
|
|
121
|
-
"@power-plant/core": "^0.0.
|
|
121
|
+
"@power-plant/core": "^0.0.75",
|
|
122
122
|
"@power-plant/dtcg-schema": "^0.0.1",
|
|
123
|
-
"@power-plant/schema": "^0.0.
|
|
124
|
-
"@power-plant/utils": "^0.0.
|
|
123
|
+
"@power-plant/schema": "^0.0.73",
|
|
124
|
+
"@power-plant/utils": "^0.0.61",
|
|
125
125
|
"@stryke/env": "^0.20.120",
|
|
126
126
|
"@stryke/fs": "^0.33.103",
|
|
127
127
|
"@stryke/path": "^0.29.29",
|
|
@@ -140,10 +140,10 @@
|
|
|
140
140
|
"zod": "^4.4.3"
|
|
141
141
|
},
|
|
142
142
|
"devDependencies": {
|
|
143
|
-
"@powerlines/plugin-tsdown": "^0.1.
|
|
143
|
+
"@powerlines/plugin-tsdown": "^0.1.589",
|
|
144
144
|
"@types/node": "^25.9.5",
|
|
145
145
|
"typescript": "^6.0.3"
|
|
146
146
|
},
|
|
147
147
|
"publishConfig": { "access": "public" },
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "1035cb442a4b46f2373951c74b1c89821749be2b"
|
|
149
149
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config-CdWp8VAJ.d.mts","names":[],"sources":["../src/types/plugin.ts","../src/types/config.ts"],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config-DBWJv6wm.d.cts","names":[],"sources":["../src/types/plugin.ts","../src/types/config.ts"],"mappings":";;;;;;;;;;;;;;;UAgCiB;EACf;EACA,SAAS;EACT,SAAS,qBAAqB;;;;;;;;;KAUpB;EAEN;EACA,eAAe,YAAY,uBAAuB;MAElD,YAAY,uBAAuB;;;;;;;;;UAUxB;;;;;;;EAOf;;;;;;EAOA,UAAU;;;;;;EAOV,gBAAgB;;;;;;;;EAShB,WAAW,MAAM,QAAQ,QAAQ,WAAW,aAAa;;;;;;;;EASzD,YACE,MAAM,QACN,QAAQ,WACL,aAAa,eAAe;;;;;;;;EASjC,YAAY,MAAM,QAAQ,QAAQ,WAAW;;;;UCvF9B;;;;;;EAMf;;;;EAKA;;;;;;;;EASA;;;;;;EAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyCA;;UAGe,mBAAmB;EAClC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA,SAAS,SAAS,eAAe;EACjC,aAAa;EACb,UAAU;;UAGK;EACf;EACA;;KAGU,sBAAsB,QAAQ,eAAe;KAC7C,uBACV,QAAQ,qBACL,QAAQ,aAAa;KACd,gBACV,QAAQ,qBACL,aAAa,eAAe,QAAQ,aAAa;KAC1C,mBACR,aACA,eACA,QAAQ,aAAa,gBACrB,qBACA,sBACA;KAEQ,SAAS,aAAa;EAChC;EACA,UAAU;IACR"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-BRsuaaQR.d.mts","names":[],"sources":["../src/plugin.ts"],"mappings":""}
|