@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.
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schemyx/mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Local stdio MCP server for reading Schemyx project configs and Theme Forge artifacts.",
5
5
  "license": "Proprietary",
6
6
  "type": "commonjs",