@schemyx/mcp 0.1.3 → 0.1.4
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/codebase-scanner/bundle.js +182 -0
- package/dist/codebase-scanner/bundle.js.map +1 -1
- package/dist/codebase-scanner/extractors.d.ts +1 -0
- package/dist/codebase-scanner/extractors.js +52 -0
- package/dist/codebase-scanner/extractors.js.map +1 -1
- package/dist/codebase-scanner/types.d.ts +2 -1
- package/package.json +1 -1
|
@@ -602,12 +602,13 @@ export interface StringLiteralRange {
|
|
|
602
602
|
}
|
|
603
603
|
export interface ComponentStyleDefinition {
|
|
604
604
|
name: string;
|
|
605
|
-
kind: 'cva' | 'variant-object' | 'class-map';
|
|
605
|
+
kind: 'cva' | 'variant-object' | 'class-map' | 'component-wrapper';
|
|
606
606
|
line: number;
|
|
607
607
|
baseClasses: string[];
|
|
608
608
|
variants: Record<string, Record<string, string[]>>;
|
|
609
609
|
defaultVariants: Record<string, string>;
|
|
610
610
|
classes: string[];
|
|
611
|
+
styleHelper?: string;
|
|
611
612
|
source: string;
|
|
612
613
|
}
|
|
613
614
|
export interface ThemeToken {
|