@elementor/editor-variables 0.15.0 → 0.16.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 +38 -0
- package/dist/index.js +647 -495
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +637 -512
- package/dist/index.mjs.map +1 -1
- package/package.json +9 -9
- package/src/components/color-variable-creation.tsx +11 -52
- package/src/components/color-variable-edit.tsx +88 -83
- package/src/components/fields/color-field.tsx +54 -0
- package/src/components/fields/font-field.tsx +85 -0
- package/src/components/fields/label-field.tsx +54 -0
- package/src/components/font-variable-creation.tsx +13 -72
- package/src/components/font-variable-edit.tsx +86 -111
- package/src/components/ui/delete-confirmation-dialog.tsx +55 -0
- package/src/components/ui/menu-item-content.tsx +2 -5
- package/src/components/ui/{variable-tag.tsx → tags/assigned-tag.tsx} +1 -1
- package/src/components/ui/tags/deleted-tag.tsx +26 -0
- package/src/components/ui/variable/assigned-variable.tsx +70 -0
- package/src/components/ui/variable/deleted-variable.tsx +20 -0
- package/src/controls/color-variable-control.tsx +15 -48
- package/src/controls/font-variable-control.tsx +14 -43
- package/src/init-color-variables.ts +3 -48
- package/src/repeater-injections.ts +35 -0
- package/src/utils/validations.ts +42 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @elementor/editor-variables
|
|
2
2
|
|
|
3
|
+
## 0.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5236bf5: Deleted variable UI
|
|
8
|
+
- fbc7523: Extract tag and popover into separate components
|
|
9
|
+
- 6e18b13: Remove line break in dialog text
|
|
10
|
+
- ab2f4f7: Remove the version specific references inside the variables popover item layout.
|
|
11
|
+
- 1a37b1c: Update the Elementor UI version.
|
|
12
|
+
- 12333b0: Update `@elementor/icons` package.
|
|
13
|
+
- 8e7ac7c: Variables form handling improvements
|
|
14
|
+
- 13f531e: Add validations errors for variables flow
|
|
15
|
+
- fcbdf6c: Remove color in variables warning validation.
|
|
16
|
+
- 064599a: Refactor background & box shadow color injections into a separate file
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [49714e8]
|
|
21
|
+
- Updated dependencies [b94c5af]
|
|
22
|
+
- Updated dependencies [5c6a912]
|
|
23
|
+
- Updated dependencies [b3726f6]
|
|
24
|
+
- Updated dependencies [68ce0d9]
|
|
25
|
+
- Updated dependencies [b17730a]
|
|
26
|
+
- Updated dependencies [1a37b1c]
|
|
27
|
+
- Updated dependencies [c62d64c]
|
|
28
|
+
- Updated dependencies [d9aaedd]
|
|
29
|
+
- Updated dependencies [d1fc9d2]
|
|
30
|
+
- Updated dependencies [12333b0]
|
|
31
|
+
- Updated dependencies [8f38cf3]
|
|
32
|
+
- Updated dependencies [a88c14b]
|
|
33
|
+
- Updated dependencies [d4406fd]
|
|
34
|
+
- @elementor/editor-editing-panel@1.48.0
|
|
35
|
+
- @elementor/editor-controls@1.3.0
|
|
36
|
+
- @elementor/editor-canvas@0.26.0
|
|
37
|
+
- @elementor/editor-props@0.16.0
|
|
38
|
+
- @elementor/editor@0.21.0
|
|
39
|
+
- @elementor/editor-ui@0.14.0
|
|
40
|
+
|
|
3
41
|
## 0.15.0
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|