@vertz/theme-shadcn 0.2.0

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.
@@ -0,0 +1,14 @@
1
+ import { StyleEntry, VariantsConfig } from "@vertz/ui";
2
+ type BadgeVariants = {
3
+ color: Record<string, StyleEntry[]>;
4
+ };
5
+ /** Exportable config for variant customization via spread. */
6
+ declare const badgeConfig: VariantsConfig<BadgeVariants>;
7
+ import { StyleEntry as StyleEntry2, VariantsConfig as VariantsConfig2 } from "@vertz/ui";
8
+ type ButtonVariants = {
9
+ intent: Record<string, StyleEntry2[]>;
10
+ size: Record<string, StyleEntry2[]>;
11
+ };
12
+ /** Exportable config for variant customization via spread. */
13
+ declare const buttonConfig: VariantsConfig2<ButtonVariants>;
14
+ export { buttonConfig, badgeConfig };
@@ -0,0 +1,8 @@
1
+ import {
2
+ badgeConfig,
3
+ buttonConfig
4
+ } from "./shared/chunk-qvb3evv2.js";
5
+ export {
6
+ buttonConfig,
7
+ badgeConfig
8
+ };