@elementor/editor-editing-panel 1.11.0 → 1.12.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 +42 -0
- package/dist/index.js +483 -473
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +425 -415
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
- package/src/components/css-classes/css-class-item.tsx +2 -0
- package/src/components/css-classes/css-class-selector.tsx +2 -7
- package/src/components/panel-divider.tsx +4 -0
- package/src/components/style-sections/border-section/border-color-field.tsx +1 -1
- package/src/components/style-sections/border-section/border-radius-field.tsx +33 -15
- package/src/components/style-sections/border-section/border-section.tsx +3 -2
- package/src/components/style-sections/border-section/border-style-field.tsx +2 -2
- package/src/components/style-sections/border-section/border-width-field.tsx +1 -1
- package/src/components/style-sections/layout-section/layout-section.tsx +4 -3
- package/src/components/style-sections/position-section/position-field.tsx +1 -1
- package/src/components/style-sections/size-section/size-section.tsx +7 -6
- package/src/components/style-sections/spacing-section/spacing-section.tsx +3 -2
- package/src/components/style-sections/typography-section/font-family-field.tsx +2 -2
- package/src/components/style-sections/typography-section/font-size-field.tsx +1 -1
- package/src/components/style-sections/typography-section/font-style-field.tsx +36 -0
- package/src/components/style-sections/typography-section/font-weight-field.tsx +2 -2
- package/src/components/style-sections/typography-section/letter-spacing-field.tsx +1 -1
- package/src/components/style-sections/typography-section/line-height-field.tsx +1 -1
- package/src/components/style-sections/typography-section/text-color-field.tsx +1 -1
- package/src/components/style-sections/typography-section/{text-style-field.tsx → text-decoration-field.tsx} +3 -24
- package/src/components/style-sections/typography-section/text-stroke-field.tsx +3 -3
- package/src/components/style-sections/typography-section/transform-field.tsx +1 -1
- package/src/components/style-sections/typography-section/typography-section.tsx +8 -5
- package/src/components/style-sections/typography-section/word-spacing-field.tsx +1 -1
- package/src/controls-registry/settings-field.tsx +1 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f949dce: Add font style control
|
|
8
|
+
- 35092ea: Fixed strings to sentence case
|
|
9
|
+
- 9de89b0: The creation of a panel divider component.
|
|
10
|
+
- b001371: Prevent editable field validation for initial value.
|
|
11
|
+
- 2da724c: Fix input width changing, according to selection
|
|
12
|
+
- cf83fe4: Updated link control to save null instead of empty string, to allow it to pass validation, and re-add support of dynamic tags
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 1597a71: Add validation for class creation.
|
|
17
|
+
- Updated dependencies [728ffb5]
|
|
18
|
+
- Updated dependencies [35092ea]
|
|
19
|
+
- Updated dependencies [b001371]
|
|
20
|
+
- Updated dependencies [2da724c]
|
|
21
|
+
- Updated dependencies [cf83fe4]
|
|
22
|
+
- @elementor/editor-props@0.9.2
|
|
23
|
+
- @elementor/editor-controls@0.11.0
|
|
24
|
+
- @elementor/editor-ui@0.4.0
|
|
25
|
+
- @elementor/editor-styles-repository@0.7.2
|
|
26
|
+
- @elementor/editor-elements@0.5.4
|
|
27
|
+
- @elementor/editor-styles@0.5.7
|
|
28
|
+
|
|
29
|
+
## 1.11.1
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- 6b064c5: Make atomic border radius control use logical properties
|
|
34
|
+
- Updated dependencies [dd8654a]
|
|
35
|
+
- Updated dependencies [6b064c5]
|
|
36
|
+
- Updated dependencies [158d092]
|
|
37
|
+
- Updated dependencies [87fa083]
|
|
38
|
+
- @elementor/editor-ui@0.3.0
|
|
39
|
+
- @elementor/editor-props@0.9.1
|
|
40
|
+
- @elementor/editor-controls@0.10.0
|
|
41
|
+
- @elementor/editor-styles-repository@0.7.1
|
|
42
|
+
- @elementor/editor-elements@0.5.3
|
|
43
|
+
- @elementor/editor-styles@0.5.6
|
|
44
|
+
|
|
3
45
|
## 1.11.0
|
|
4
46
|
|
|
5
47
|
### Minor Changes
|