@elementor/editor-variables 0.16.0 → 0.18.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.
- package/CHANGELOG.md +50 -0
- package/dist/index.js +392 -136
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +400 -144
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/components/color-variable-creation.tsx +30 -10
- package/src/components/color-variable-edit.tsx +29 -10
- package/src/components/color-variables-selection.tsx +32 -34
- package/src/components/font-variable-creation.tsx +30 -10
- package/src/components/font-variable-edit.tsx +29 -10
- package/src/components/font-variables-selection.tsx +32 -34
- package/src/components/ui/delete-confirmation-dialog.tsx +4 -7
- package/src/components/ui/deleted-variable-alert.tsx +47 -0
- package/src/components/ui/tags/assigned-tag.tsx +21 -19
- package/src/components/ui/tags/deleted-tag.tsx +29 -18
- package/src/components/ui/variable/deleted-variable.tsx +63 -7
- package/src/controls/color-variable-control.tsx +7 -1
- package/src/controls/font-variable-control.tsx +7 -1
- package/src/create-style-variables-repository.ts +44 -5
- package/src/hooks/use-prop-variables.ts +6 -0
- package/src/renderers/style-variables-renderer.tsx +10 -4
- package/src/service.ts +23 -2
- package/src/sync/enqueue-font.ts +7 -0
- package/src/sync/types.ts +5 -0
- package/src/transformers/variable-transformer.ts +21 -3
- package/src/types.ts +1 -1
- package/src/utils/validations.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,55 @@
|
|
|
1
1
|
# @elementor/editor-variables
|
|
2
2
|
|
|
3
|
+
## 0.18.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1ff40ee: Support for user-defined variable names in css
|
|
8
|
+
- aff9ad2: Update the deleted variable tag.
|
|
9
|
+
- e46222c: Add tooltip to variable chip.
|
|
10
|
+
- 4ef12df: Update text translations
|
|
11
|
+
- 99d7a44: Add input validation for server errors.
|
|
12
|
+
- 102e64b: Added fallback values for variables on canvas for visual consistency
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 0db150c: Update the popover height.
|
|
17
|
+
- Updated dependencies [22b87fb]
|
|
18
|
+
- Updated dependencies [64b3e09]
|
|
19
|
+
- Updated dependencies [3904505]
|
|
20
|
+
- Updated dependencies [3d530f6]
|
|
21
|
+
- Updated dependencies [0db150c]
|
|
22
|
+
- Updated dependencies [cdbd491]
|
|
23
|
+
- Updated dependencies [b90d7db]
|
|
24
|
+
- @elementor/editor-editing-panel@1.50.0
|
|
25
|
+
- @elementor/editor-controls@1.5.0
|
|
26
|
+
- @elementor/editor-canvas@0.28.0
|
|
27
|
+
- @elementor/editor-props@0.18.0
|
|
28
|
+
- @elementor/editor-ui@0.14.2
|
|
29
|
+
- @elementor/editor@0.21.1
|
|
30
|
+
|
|
31
|
+
## 0.17.0
|
|
32
|
+
|
|
33
|
+
### Minor Changes
|
|
34
|
+
|
|
35
|
+
- f2df660: Fix font variable not rendering on the canvas
|
|
36
|
+
- 5fc23ea: Created an alert popover for deleted variables
|
|
37
|
+
- 0b2145a: Update the text on the delete variable dialog.
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- Updated dependencies [669f39f]
|
|
42
|
+
- Updated dependencies [2e677ee]
|
|
43
|
+
- Updated dependencies [90ec4c6]
|
|
44
|
+
- Updated dependencies [068f659]
|
|
45
|
+
- Updated dependencies [e7cca0a]
|
|
46
|
+
- Updated dependencies [07ca7e9]
|
|
47
|
+
- @elementor/editor-controls@1.4.0
|
|
48
|
+
- @elementor/editor-ui@0.14.1
|
|
49
|
+
- @elementor/editor-editing-panel@1.49.0
|
|
50
|
+
- @elementor/editor-canvas@0.27.0
|
|
51
|
+
- @elementor/editor-props@0.17.0
|
|
52
|
+
|
|
3
53
|
## 0.16.0
|
|
4
54
|
|
|
5
55
|
### Minor Changes
|