@elementor/editor-global-classes 4.1.0-708 → 4.1.0-709

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-global-classes",
3
- "version": "4.1.0-708",
3
+ "version": "4.1.0-709",
4
4
  "private": false,
5
5
  "author": "Elementor Team",
6
6
  "homepage": "https://elementor.com/",
@@ -39,28 +39,28 @@
39
39
  "dev": "tsup --config=../../tsup.dev.ts"
40
40
  },
41
41
  "dependencies": {
42
- "@elementor/editor": "4.1.0-708",
43
- "@elementor/editor-current-user": "4.1.0-708",
44
- "@elementor/editor-documents": "4.1.0-708",
45
- "@elementor/editor-editing-panel": "4.1.0-708",
46
- "@elementor/editor-mcp": "4.1.0-708",
47
- "@elementor/editor-panels": "4.1.0-708",
48
- "@elementor/editor-props": "4.1.0-708",
49
- "@elementor/editor-variables": "4.1.0-708",
50
- "@elementor/editor-styles": "4.1.0-708",
51
- "@elementor/editor-canvas": "4.1.0-708",
52
- "@elementor/editor-styles-repository": "4.1.0-708",
53
- "@elementor/editor-ui": "4.1.0-708",
54
- "@elementor/editor-v1-adapters": "4.1.0-708",
55
- "@elementor/http-client": "4.1.0-708",
42
+ "@elementor/editor": "4.1.0-709",
43
+ "@elementor/editor-current-user": "4.1.0-709",
44
+ "@elementor/editor-documents": "4.1.0-709",
45
+ "@elementor/editor-editing-panel": "4.1.0-709",
46
+ "@elementor/editor-mcp": "4.1.0-709",
47
+ "@elementor/editor-panels": "4.1.0-709",
48
+ "@elementor/editor-props": "4.1.0-709",
49
+ "@elementor/editor-variables": "4.1.0-709",
50
+ "@elementor/editor-styles": "4.1.0-709",
51
+ "@elementor/editor-canvas": "4.1.0-709",
52
+ "@elementor/editor-styles-repository": "4.1.0-709",
53
+ "@elementor/editor-ui": "4.1.0-709",
54
+ "@elementor/editor-v1-adapters": "4.1.0-709",
55
+ "@elementor/http-client": "4.1.0-709",
56
56
  "@elementor/icons": "^1.68.0",
57
- "@elementor/query": "4.1.0-708",
58
- "@elementor/schema": "4.1.0-708",
59
- "@elementor/store": "4.1.0-708",
57
+ "@elementor/query": "4.1.0-709",
58
+ "@elementor/schema": "4.1.0-709",
59
+ "@elementor/store": "4.1.0-709",
60
60
  "@elementor/ui": "1.36.17",
61
- "@elementor/utils": "4.1.0-708",
61
+ "@elementor/utils": "4.1.0-709",
62
62
  "@wordpress/i18n": "^5.13.0",
63
- "@elementor/events": "4.1.0-708"
63
+ "@elementor/events": "4.1.0-709"
64
64
  },
65
65
  "peerDependencies": {
66
66
  "react": "^18.3.1",
@@ -2,7 +2,7 @@ import * as React from 'react';
2
2
  import { useRef, useState } from 'react';
3
3
  import { validateStyleLabel } from '@elementor/editor-styles-repository';
4
4
  import { EditableField, EllipsisWithTooltip, MenuListItem, useEditable, WarningInfotip } from '@elementor/editor-ui';
5
- import { DotsVerticalIcon } from '@elementor/icons';
5
+ import { DotsVerticalIcon, RefreshIcon, RefreshOffIcon } from '@elementor/icons';
6
6
  import {
7
7
  bindMenu,
8
8
  bindTrigger,
@@ -148,11 +148,14 @@ export const ClassItem = ( {
148
148
  onToggleSync( id, ! syncToV3 );
149
149
  } }
150
150
  >
151
- <Typography variant="caption" sx={ { color: 'text.primary' } }>
152
- { syncToV3
153
- ? __( 'Stop syncing to Global Fonts', 'elementor' )
154
- : __( 'Sync to Global Fonts', 'elementor' ) }
155
- </Typography>
151
+ <Stack direction="row" alignItems="center" gap={ 1 }>
152
+ { syncToV3 ? <RefreshOffIcon fontSize="tiny" /> : <RefreshIcon fontSize="tiny" /> }
153
+ <Typography variant="caption" sx={ { color: 'text.primary' } }>
154
+ { syncToV3
155
+ ? __( 'Stop syncing to Global Fonts', 'elementor' )
156
+ : __( 'Sync to Global Fonts', 'elementor' ) }
157
+ </Typography>
158
+ </Stack>
156
159
  </MenuListItem>
157
160
  ) }
158
161
  <MenuListItem