@vertz/theme-shadcn 0.2.23 → 0.2.24
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/base.d.ts +2 -1
- package/dist/base.js +4 -2
- package/dist/configs.js +1 -1
- package/dist/index.d.ts +268 -445
- package/dist/index.js +465 -940
- package/dist/shared/{chunk-gjsm05ga.js → chunk-f0wk9320.js} +4 -2
- package/dist/shared/{chunk-gzfp8m46.js → chunk-kmh677y0.js} +1 -0
- package/package.json +4 -4
package/dist/base.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ interface ResolvedThemeBase {
|
|
|
31
31
|
/** Global CSS (reset, typography, radius). Auto-injected via globalCss(). */
|
|
32
32
|
globals: GlobalCSSOutput;
|
|
33
33
|
}
|
|
34
|
+
declare const RADIUS_VALUES: Record<"none" | "sm" | "md" | "lg" | "xl", string>;
|
|
34
35
|
/**
|
|
35
36
|
* Configure the shadcn theme base — palette tokens and global CSS only.
|
|
36
37
|
*
|
|
@@ -43,4 +44,4 @@ interface ResolvedThemeBase {
|
|
|
43
44
|
* `@vertz/theme-shadcn`.
|
|
44
45
|
*/
|
|
45
46
|
declare function configureThemeBase(config?: ThemeConfig): ResolvedThemeBase;
|
|
46
|
-
export { configureThemeBase, ThemeStyle, ThemeConfig, ResolvedThemeBase };
|
|
47
|
+
export { configureThemeBase, ThemeStyle, ThemeConfig, ResolvedThemeBase, RADIUS_VALUES };
|
package/dist/base.js
CHANGED