shadcn-vue 2.7.0 → 2.7.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/{api-B-EGcsFi.d.ts → api-DIv5FGuT.d.ts} +40 -1
- package/dist/{api-B-EGcsFi.d.ts.map → api-DIv5FGuT.d.ts.map} +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/mcp/index.js +3 -3
- package/dist/{mcp-CLEmWRoA.js → mcp-DTXGTqSC.js} +2 -2
- package/dist/{mcp-CLEmWRoA.js.map → mcp-DTXGTqSC.js.map} +1 -1
- package/dist/preset/index.d.ts +3 -3
- package/dist/preset/index.d.ts.map +1 -1
- package/dist/preset/index.js +1 -1
- package/dist/{preset-DK0fGW7r.js → preset-ByCdjgEv.js} +5 -3
- package/dist/preset-ByCdjgEv.js.map +1 -0
- package/dist/registry/index.d.ts +1 -1
- package/dist/registry/index.js +2 -2
- package/dist/{registry-CWYPYAA2.js → registry-AuS-7q5e.js} +29 -5
- package/dist/registry-AuS-7q5e.js.map +1 -0
- package/dist/{transform-menu-CdBnB1yA.js → transform-menu-CrSgzEag.js} +23 -2
- package/dist/transform-menu-CrSgzEag.js.map +1 -0
- package/dist/utils/index.js +1 -1
- package/package.json +2 -2
- package/dist/preset-DK0fGW7r.js.map +0 -1
- package/dist/registry-CWYPYAA2.js.map +0 -1
- package/dist/transform-menu-CdBnB1yA.js.map +0 -1
|
@@ -638,6 +638,10 @@ declare function getRegistryVisualStyles(): readonly [{
|
|
|
638
638
|
readonly name: "luma";
|
|
639
639
|
readonly label: "Luma";
|
|
640
640
|
readonly description: "Fluid, luminous, and glassy.";
|
|
641
|
+
}, {
|
|
642
|
+
readonly name: "sera";
|
|
643
|
+
readonly label: "Sera";
|
|
644
|
+
readonly description: "Editorial and typographic.";
|
|
641
645
|
}];
|
|
642
646
|
/**
|
|
643
647
|
* Get available icon libraries.
|
|
@@ -754,6 +758,14 @@ declare function getRegistryFonts(): readonly [{
|
|
|
754
758
|
readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
|
|
755
759
|
readonly variable: "--font-mono";
|
|
756
760
|
readonly weight: readonly ["400", "500", "600", "700"];
|
|
761
|
+
}, {
|
|
762
|
+
readonly name: "playfair-display";
|
|
763
|
+
readonly label: "Playfair Display";
|
|
764
|
+
readonly family: "Playfair Display";
|
|
765
|
+
readonly provider: "google";
|
|
766
|
+
readonly import: "@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');";
|
|
767
|
+
readonly variable: "--font-serif";
|
|
768
|
+
readonly weight: readonly ["400", "500", "600", "700", "800", "900"];
|
|
757
769
|
}];
|
|
758
770
|
/**
|
|
759
771
|
* Get a specific base by name.
|
|
@@ -791,6 +803,10 @@ declare function getRegistryVisualStyle(name: string): {
|
|
|
791
803
|
readonly name: "luma";
|
|
792
804
|
readonly label: "Luma";
|
|
793
805
|
readonly description: "Fluid, luminous, and glassy.";
|
|
806
|
+
} | {
|
|
807
|
+
readonly name: "sera";
|
|
808
|
+
readonly label: "Sera";
|
|
809
|
+
readonly description: "Editorial and typographic.";
|
|
794
810
|
} | undefined;
|
|
795
811
|
/**
|
|
796
812
|
* Get a specific icon library by name.
|
|
@@ -907,6 +923,14 @@ declare function getRegistryFont(name: string): {
|
|
|
907
923
|
readonly import: "@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');";
|
|
908
924
|
readonly variable: "--font-mono";
|
|
909
925
|
readonly weight: readonly ["400", "500", "600", "700"];
|
|
926
|
+
} | {
|
|
927
|
+
readonly name: "playfair-display";
|
|
928
|
+
readonly label: "Playfair Display";
|
|
929
|
+
readonly family: "Playfair Display";
|
|
930
|
+
readonly provider: "google";
|
|
931
|
+
readonly import: "@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');";
|
|
932
|
+
readonly variable: "--font-serif";
|
|
933
|
+
readonly weight: readonly ["400", "500", "600", "700", "800", "900"];
|
|
910
934
|
} | undefined;
|
|
911
935
|
/**
|
|
912
936
|
* Get available presets (predefined combinations of base, style, icons, and font).
|
|
@@ -1001,6 +1025,21 @@ declare function getRegistryPresets(): ({
|
|
|
1001
1025
|
radius: string;
|
|
1002
1026
|
rtl: boolean;
|
|
1003
1027
|
name: string;
|
|
1028
|
+
} | {
|
|
1029
|
+
title: string;
|
|
1030
|
+
description: string;
|
|
1031
|
+
base: string;
|
|
1032
|
+
style: string;
|
|
1033
|
+
baseColor: string;
|
|
1034
|
+
theme: string;
|
|
1035
|
+
iconLibrary: string;
|
|
1036
|
+
font: string;
|
|
1037
|
+
fontHeading: string;
|
|
1038
|
+
menuAccent: "subtle";
|
|
1039
|
+
menuColor: "default";
|
|
1040
|
+
radius: string;
|
|
1041
|
+
rtl: boolean;
|
|
1042
|
+
name: string;
|
|
1004
1043
|
})[];
|
|
1005
1044
|
/**
|
|
1006
1045
|
* Get a specific preset by name.
|
|
@@ -1370,4 +1409,4 @@ declare function getRegistriesIndex(options?: {
|
|
|
1370
1409
|
}): Promise<Record<string, string>>;
|
|
1371
1410
|
//#endregion
|
|
1372
1411
|
export { resolveTree as C, resolveRegistryItems as S, getRegistryPresets as _, getRegistry as a, getRegistryVisualStyles as b, getRegistryBaseColors as c, getRegistryFonts as d, getRegistryIconLibraries as f, getRegistryPreset as g, getRegistryItems as h, getRegistriesIndex as i, getRegistryBases as l, getRegistryIcons as m, getItemTargetPath as n, getRegistryBase as o, getRegistryIconLibrary as p, getRegistriesConfig as r, getRegistryBaseColor as s, fetchTree as t, getRegistryFont as u, getRegistryStyles as v, getShadcnRegistryIndex as x, getRegistryVisualStyle as y };
|
|
1373
|
-
//# sourceMappingURL=api-
|
|
1412
|
+
//# sourceMappingURL=api-DIv5FGuT.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api-
|
|
1
|
+
{"version":3,"file":"api-DIv5FGuT.d.ts","names":[],"sources":["../src/registry/api.ts"],"sourcesContent":[],"mappings":"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"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import "./index-VbcDxT_d.js";
|
|
3
3
|
import "./get-config-BRAQ-Tnk.js";
|
|
4
|
-
import { C as resolveTree, S as resolveRegistryItems, _ as getRegistryPresets, a as getRegistry, b as getRegistryVisualStyles, c as getRegistryBaseColors, d as getRegistryFonts, f as getRegistryIconLibraries, g as getRegistryPreset, h as getRegistryItems, i as getRegistriesIndex, l as getRegistryBases, m as getRegistryIcons, n as getItemTargetPath, o as getRegistryBase, p as getRegistryIconLibrary, r as getRegistriesConfig, s as getRegistryBaseColor, t as fetchTree, u as getRegistryFont, v as getRegistryStyles, x as getShadcnRegistryIndex, y as getRegistryVisualStyle } from "./api-
|
|
4
|
+
import { C as resolveTree, S as resolveRegistryItems, _ as getRegistryPresets, a as getRegistry, b as getRegistryVisualStyles, c as getRegistryBaseColors, d as getRegistryFonts, f as getRegistryIconLibraries, g as getRegistryPreset, h as getRegistryItems, i as getRegistriesIndex, l as getRegistryBases, m as getRegistryIcons, n as getItemTargetPath, o as getRegistryBase, p as getRegistryIconLibrary, r as getRegistriesConfig, s as getRegistryBaseColor, t as fetchTree, u as getRegistryFont, v as getRegistryStyles, x as getShadcnRegistryIndex, y as getRegistryVisualStyle } from "./api-DIv5FGuT.js";
|
|
5
5
|
export { fetchTree, getItemTargetPath, getRegistriesConfig, getRegistriesIndex, getRegistry, getRegistryBase, getRegistryBaseColor, getRegistryBaseColors, getRegistryBases, getRegistryFont, getRegistryFonts, getRegistryIconLibraries, getRegistryIconLibrary, getRegistryIcons, getRegistryItems, getRegistryPreset, getRegistryPresets, getRegistryStyles, getRegistryVisualStyle, getRegistryVisualStyles, getShadcnRegistryIndex, resolveRegistryItems, resolveTree };
|
package/dist/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { a as BASE_COLORS, f as SHADCN_VUE_URL, i as BASES, l as FONTS, o as BUILTIN_REGISTRIES, p as STYLES, r as ICON_LIBRARIES, s as DEPRECATED_COMPONENTS, u as ICON_LIBRARIES$1 } from "./transform-menu-
|
|
2
|
+
import { a as BASE_COLORS, f as SHADCN_VUE_URL, i as BASES, l as FONTS, o as BUILTIN_REGISTRIES, p as STYLES, r as ICON_LIBRARIES, s as DEPRECATED_COMPONENTS, u as ICON_LIBRARIES$1 } from "./transform-menu-CrSgzEag.js";
|
|
3
3
|
import { _ as registryItemSchema, a as rawConfigSchema, x as registrySchema } from "./schema-CjAXtlQ7.js";
|
|
4
|
-
import { $ as mergeEnvContent, A as DEFAULT_PRESETS, B as handleError, C as getRegistryPresets, Ct as highlighter, D as getShadcnRegistryIndex, E as getRegistryVisualStyles, F as ensureRegistriesInConfig, G as isUrl, H as validateRegistryConfigForItems, I as resolveRegistryTree, J as transformRtl, K as updateFiles, L as _createSourceFile, M as promptForPreset, N as resolveInitUrl, O as resolveRegistryItems, P as resolveRegistryBaseConfig, Q as getNewEnvKeys, R as _getQuoteChar, S as getRegistryPreset, T as getRegistryVisualStyle, U as clearRegistryContext, V as buildUrlAndHeadersForRegistryItem, W as isUniversalRegistryItem, X as logger, Y as spinner, Z as findExistingEnvFile, _ as getRegistryFonts, a as getProjectTailwindVersionFromConfig, at as DEFAULT_UTILS, b as getRegistryIcons, c as getItemTargetPath, ct as findPackageRoot, d as getRegistry, dt as resolveConfigPaths, et as composeStyleId, f as getRegistryBase, g as getRegistryFont, h as getRegistryBases, i as getProjectInfo, it as DEFAULT_TAILWIND_CSS, j as promptForBase, k as resolveTree, l as getRegistriesConfig, lt as getConfig, m as getRegistryBaseColors, n as getProjectComponents, nt as DEFAULT_COMPONENTS, o as getPackageInfo, ot as createConfig, p as getRegistryBaseColor, q as transform$1, r as getProjectConfig, rt as DEFAULT_TAILWIND_CONFIG, s as fetchTree, st as findCommonRoot, t as searchRegistries, tt as configWithDefaults, u as getRegistriesIndex, ut as getWorkspaceConfig, v as getRegistryIconLibraries, w as getRegistryStyles, x as getRegistryItems, y as getRegistryIconLibrary, z as updateTailwindConfig } from "./registry-
|
|
5
|
-
import { p as decodePreset, v as isPresetCode } from "./preset-
|
|
6
|
-
import { t as server } from "./mcp-
|
|
4
|
+
import { $ as mergeEnvContent, A as DEFAULT_PRESETS, B as handleError, C as getRegistryPresets, Ct as highlighter, D as getShadcnRegistryIndex, E as getRegistryVisualStyles, F as ensureRegistriesInConfig, G as isUrl, H as validateRegistryConfigForItems, I as resolveRegistryTree, J as transformRtl, K as updateFiles, L as _createSourceFile, M as promptForPreset, N as resolveInitUrl, O as resolveRegistryItems, P as resolveRegistryBaseConfig, Q as getNewEnvKeys, R as _getQuoteChar, S as getRegistryPreset, T as getRegistryVisualStyle, U as clearRegistryContext, V as buildUrlAndHeadersForRegistryItem, W as isUniversalRegistryItem, X as logger, Y as spinner, Z as findExistingEnvFile, _ as getRegistryFonts, a as getProjectTailwindVersionFromConfig, at as DEFAULT_UTILS, b as getRegistryIcons, c as getItemTargetPath, ct as findPackageRoot, d as getRegistry, dt as resolveConfigPaths, et as composeStyleId, f as getRegistryBase, g as getRegistryFont, h as getRegistryBases, i as getProjectInfo, it as DEFAULT_TAILWIND_CSS, j as promptForBase, k as resolveTree, l as getRegistriesConfig, lt as getConfig, m as getRegistryBaseColors, n as getProjectComponents, nt as DEFAULT_COMPONENTS, o as getPackageInfo, ot as createConfig, p as getRegistryBaseColor, q as transform$1, r as getProjectConfig, rt as DEFAULT_TAILWIND_CONFIG, s as fetchTree, st as findCommonRoot, t as searchRegistries, tt as configWithDefaults, u as getRegistriesIndex, ut as getWorkspaceConfig, v as getRegistryIconLibraries, w as getRegistryStyles, x as getRegistryItems, y as getRegistryIconLibrary, z as updateTailwindConfig } from "./registry-AuS-7q5e.js";
|
|
5
|
+
import { p as decodePreset, v as isPresetCode } from "./preset-ByCdjgEv.js";
|
|
6
|
+
import { t as server } from "./mcp-DTXGTqSC.js";
|
|
7
7
|
import { Command } from "commander";
|
|
8
8
|
import path, { isAbsolute, join, normalize, resolve, sep } from "pathe";
|
|
9
9
|
import prompts from "prompts";
|
|
@@ -3183,7 +3183,7 @@ const view = new Command().name("view").description("view items from the registr
|
|
|
3183
3183
|
|
|
3184
3184
|
//#endregion
|
|
3185
3185
|
//#region package.json
|
|
3186
|
-
var version = "2.7.
|
|
3186
|
+
var version = "2.7.2";
|
|
3187
3187
|
|
|
3188
3188
|
//#endregion
|
|
3189
3189
|
//#region src/index.ts
|