shadcn-svelte 0.3.1 → 0.3.2
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4776,8 +4776,8 @@ var rawConfigSchema = z.object({
|
|
|
4776
4776
|
// cssVariables: z.boolean().default(true)
|
|
4777
4777
|
}),
|
|
4778
4778
|
aliases: z.object({
|
|
4779
|
-
components: z.string(),
|
|
4780
|
-
utils: z.string()
|
|
4779
|
+
components: z.string().transform((v) => v.replace(/[\u{0080}-\u{FFFF}]/gu, "")),
|
|
4780
|
+
utils: z.string().transform((v) => v.replace(/[\u{0080}-\u{FFFF}]/gu, ""))
|
|
4781
4781
|
})
|
|
4782
4782
|
}).strict();
|
|
4783
4783
|
var configSchema = rawConfigSchema.extend({
|