shadcn-svelte 0.3.0 → 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 -5
- 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({
|
|
@@ -6325,7 +6325,6 @@ export const flyAndScale = (
|
|
|
6325
6325
|
};
|
|
6326
6326
|
};`;
|
|
6327
6327
|
var TAILWIND_CONFIG_WITH_VARIABLES = `import { fontFamily } from "tailwindcss/defaultTheme";
|
|
6328
|
-
import tailwindcssAnimate from "tailwindcss-animate";
|
|
6329
6328
|
|
|
6330
6329
|
/** @type {import('tailwindcss').Config} */
|
|
6331
6330
|
const config = {
|
|
@@ -6385,7 +6384,6 @@ const config = {
|
|
|
6385
6384
|
}
|
|
6386
6385
|
}
|
|
6387
6386
|
},
|
|
6388
|
-
plugins: [tailwindcssAnimate]
|
|
6389
6387
|
};
|
|
6390
6388
|
|
|
6391
6389
|
export default config;
|
|
@@ -6393,7 +6391,6 @@ export default config;
|
|
|
6393
6391
|
|
|
6394
6392
|
// src/commands/init.ts
|
|
6395
6393
|
var PROJECT_DEPENDENCIES = [
|
|
6396
|
-
"tailwindcss-animate",
|
|
6397
6394
|
"tailwind-variants",
|
|
6398
6395
|
"clsx",
|
|
6399
6396
|
"tailwind-merge"
|