@elementor/editor-app-bar 0.21.0 → 0.22.1
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 +29 -0
- package/dist/index.js +226 -226
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +245 -245
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
- package/src/components/actions/action.tsx +3 -2
- package/src/components/actions/link.tsx +3 -2
- package/src/components/actions/toggle-action.tsx +2 -1
- package/src/components/app-bar.tsx +5 -4
- package/src/components/locations/integrations-menu-location.tsx +3 -2
- package/src/components/locations/main-menu-location.tsx +3 -2
- package/src/components/locations/page-indication-location.tsx +1 -0
- package/src/components/locations/primary-action-location.tsx +1 -0
- package/src/components/locations/responsive-location.tsx +1 -0
- package/src/components/locations/tools-menu-location.tsx +1 -0
- package/src/components/locations/utilities-menu-location.tsx +3 -2
- package/src/components/ui/popover-menu-item.tsx +1 -1
- package/src/components/ui/popover-menu.tsx +2 -1
- package/src/components/ui/toolbar-logo.tsx +1 -1
- package/src/components/ui/toolbar-menu-item.tsx +1 -1
- package/src/components/ui/toolbar-menu-more.tsx +4 -3
- package/src/components/ui/toolbar-menu-toggle-item.tsx +1 -1
- package/src/components/ui/toolbar-menu.tsx +2 -1
- package/src/contexts/menu-context.tsx +2 -2
- package/src/extensions/documents-indicator/components/settings-button.tsx +8 -7
- package/src/extensions/documents-preview/hooks/use-action-props.ts +5 -4
- package/src/extensions/documents-save/components/primary-action-menu.tsx +2 -1
- package/src/extensions/documents-save/components/primary-action.tsx +11 -10
- package/src/extensions/documents-save/hooks/use-document-copy-and-share-props.ts +4 -3
- package/src/extensions/documents-save/hooks/use-document-save-draft-props.ts +4 -3
- package/src/extensions/documents-save/hooks/use-document-save-template-props.ts +4 -3
- package/src/extensions/documents-save/hooks/use-document-view-page-props.ts +2 -2
- package/src/extensions/documents-save/index.ts +2 -2
- package/src/extensions/documents-save/locations.ts +1 -0
- package/src/extensions/elements/hooks/use-action-props.ts +4 -3
- package/src/extensions/elements/index.ts +1 -1
- package/src/extensions/elements/sync/sync-panel-title.ts +1 -1
- package/src/extensions/finder/hooks/use-action-props.ts +4 -3
- package/src/extensions/help/index.ts +4 -3
- package/src/extensions/history/hooks/use-action-props.ts +4 -3
- package/src/extensions/keyboard-shortcuts/hooks/use-action-props.ts +4 -3
- package/src/extensions/responsive/components/breakpoints-switcher.tsx +10 -9
- package/src/extensions/site-settings/components/portal.tsx +2 -2
- package/src/extensions/site-settings/components/portalled-primary-action.tsx +1 -0
- package/src/extensions/site-settings/hooks/use-action-props.ts +3 -2
- package/src/extensions/site-settings/index.ts +2 -1
- package/src/extensions/structure/hooks/use-action-props.ts +3 -2
- package/src/extensions/theme-builder/hooks/use-action-props.ts +4 -3
- package/src/extensions/user-preferences/hooks/use-action-props.ts +4 -3
- package/src/extensions/wordpress/index.ts +5 -4
- package/src/init.ts +3 -2
- package/src/locations.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.22.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1926fe1: Update dependencies
|
|
8
|
+
- Updated dependencies [081bae8]
|
|
9
|
+
- Updated dependencies [1926fe1]
|
|
10
|
+
- @elementor/editor-responsive@0.12.3
|
|
11
|
+
- @elementor/editor-documents@0.11.13
|
|
12
|
+
- @elementor/editor@0.17.1
|
|
13
|
+
|
|
14
|
+
## 0.22.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- e4c6e3b: update @elementor/ui version
|
|
19
|
+
fix color picker position in box shadow repeater control
|
|
20
|
+
make the color control full width
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 7781969: Update `@elementor/ui` version
|
|
25
|
+
- Updated dependencies [e4c6e3b]
|
|
26
|
+
- Updated dependencies [7781969]
|
|
27
|
+
- Updated dependencies [0c6bcb6]
|
|
28
|
+
- @elementor/editor@0.17.0
|
|
29
|
+
- @elementor/editor-v1-adapters@0.8.4
|
|
30
|
+
- @elementor/editor-documents@0.11.12
|
|
31
|
+
|
|
3
32
|
## 0.21.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|