@elementor/editor-variables 4.3.0-1060 → 4.3.0-1061

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementor/editor-variables",
3
- "version": "4.3.0-1060",
3
+ "version": "4.3.0-1061",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -39,22 +39,22 @@
39
39
  "dev": "tsup --config=../../tsup.dev.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@elementor/editor": "4.3.0-1060",
43
- "@elementor/editor-canvas": "4.3.0-1060",
44
- "@elementor/editor-controls": "4.3.0-1060",
45
- "@elementor/editor-current-user": "4.3.0-1060",
46
- "@elementor/editor-mcp": "4.3.0-1060",
47
- "@elementor/editor-panels": "4.3.0-1060",
48
- "@elementor/editor-props": "4.3.0-1060",
49
- "@elementor/editor-ui": "4.3.0-1060",
50
- "@elementor/editor-v1-adapters": "4.3.0-1060",
51
- "@elementor/menus": "4.3.0-1060",
52
- "@elementor/http-client": "4.3.0-1060",
42
+ "@elementor/editor": "4.3.0-1061",
43
+ "@elementor/editor-canvas": "4.3.0-1061",
44
+ "@elementor/editor-controls": "4.3.0-1061",
45
+ "@elementor/editor-current-user": "4.3.0-1061",
46
+ "@elementor/editor-mcp": "4.3.0-1061",
47
+ "@elementor/editor-panels": "4.3.0-1061",
48
+ "@elementor/editor-props": "4.3.0-1061",
49
+ "@elementor/editor-ui": "4.3.0-1061",
50
+ "@elementor/editor-v1-adapters": "4.3.0-1061",
51
+ "@elementor/menus": "4.3.0-1061",
52
+ "@elementor/http-client": "4.3.0-1061",
53
53
  "@elementor/icons": "~1.75.1",
54
- "@elementor/events": "4.3.0-1060",
55
- "@elementor/schema": "4.3.0-1060",
54
+ "@elementor/events": "4.3.0-1061",
55
+ "@elementor/schema": "4.3.0-1061",
56
56
  "@elementor/ui": "1.37.5",
57
- "@elementor/utils": "4.3.0-1060",
57
+ "@elementor/utils": "4.3.0-1061",
58
58
  "@wordpress/i18n": "^5.13.0"
59
59
  },
60
60
  "peerDependencies": {
@@ -52,7 +52,7 @@ export const initManageVariableTool = ( reg: MCPRegistryEntry ) => {
52
52
  addTool( {
53
53
  name: TOOL_NAME,
54
54
  description:
55
- 'Manage V4 global variables (color, font, size, custom-size). Read the guide resource before use. font = font-famliy, size = measured unit, custom-size = calculated values',
55
+ 'Manage V4 global variables (color, font, size, custom-size). Read the guide resource before use. font = single Google Font family name, no fallback stacks, size = measured unit, custom-size = calculated values',
56
56
  schema: {
57
57
  action: z.enum( [ 'create', 'update', 'delete' ] ),
58
58
  id: z
@@ -65,7 +65,7 @@ export const initManageVariableTool = ( reg: MCPRegistryEntry ) => {
65
65
  .string()
66
66
  .optional()
67
67
  .describe(
68
- 'Plain CSS value — required for create/update. Color: hex/rgba/hsl. Font: family name only. Size: value with unit e.g. "16px", or "auto" (Pro). Do NOT pass JSON.'
68
+ 'Plain CSS value — required for create/update. Color: hex/rgba/hsl. Font: single Google Font family name only — no fallback stacks, no generic families. Size: value with unit e.g. "16px", or "auto" (Pro). Do NOT pass JSON.'
69
69
  ),
70
70
  },
71
71
  outputSchema: {