Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RNMobile] Remove third-party dependency on react-native-hsv-color-picker #6029

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8abce9f
Update gutenberg submodule hash to 7fa9386254089170edf0b178eee32c2d0d…
wpmobilebot Aug 4, 2023
1e71296
Update gutenberg submodule hash to 962c97fa514044250ca3ae4b6849d9e89d…
wpmobilebot Aug 7, 2023
16502f3
Update gutenberg submodule hash to 033a44e2469d593425bf5d2db8ef81fb44…
wpmobilebot Aug 9, 2023
2425995
Update gutenberg submodule hash to 4333a9c29b8b19756d5ec9447ffaf70aa4…
wpmobilebot Aug 9, 2023
3bf31fe
Update gutenberg submodule hash to 72432f77416083b01c10dbd1b4c0bac664…
wpmobilebot Aug 11, 2023
aaf7bd0
Update gutenberg submodule hash to 41d1443dc981d80b154f6332812538cf83…
wpmobilebot Aug 11, 2023
5c5ead2
Merge trunk and resolve conflicts
derekblank Aug 11, 2023
0c6dbc3
Update gutenberg ref
derekblank Aug 11, 2023
45e999c
Update RELEASE-NOTES
derekblank Aug 11, 2023
5e5543f
Update gutenberg submodule hash to 20ae378b7065bf75b2af6809b179dfa380…
wpmobilebot Aug 11, 2023
25fc5a6
Update gutenberg submodule hash to cbe44be6c6e8909c9cfbf94f2ffd52d54b…
wpmobilebot Aug 14, 2023
e4b80aa
Update gutenberg submodule hash to e221e1718b9761ed6e5977e6f449d92344…
wpmobilebot Aug 14, 2023
b1e7012
Update gutenberg submodule hash to 4fbf73aa061b961d07e2418de3f06f9435…
wpmobilebot Aug 20, 2023
858f819
Merge trunk
derekblank Aug 20, 2023
3721c5c
Update package-lock.json
derekblank Aug 20, 2023
99db434
Merge branch 'version-toolkit/gutenberg/rnmobile/remove-react-native-…
derekblank Aug 20, 2023
0db4ac9
Update gutenberg submodule hash to eb36cd148e279b71aa1f5f72dda1e2ac57…
wpmobilebot Aug 21, 2023
5f3fcb6
Update gutenberg submodule hash to 807014577ecabcb44792fe6c954a2c8aac…
wpmobilebot Aug 21, 2023
dc38c92
Update package-lock.json
derekblank Aug 21, 2023
66b2eaa
Update gutenberg submodule hash to 4dea3b1b06d634304c163c1e314a83ac67…
wpmobilebot Aug 28, 2023
6f6aef3
Merge trunk
derekblank Aug 28, 2023
fd05d13
Merge branch 'version-toolkit/gutenberg/rnmobile/remove-react-native-…
derekblank Aug 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Unreleased
---
* [*] Remove third-party dependency on react-native-hsv-color-picker [https://github.com/WordPress/gutenberg/pull/53329]
* [*] Search Control - Prevent calling TextInput's methods when undefined [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6090]
* [**] Add basic support to view, relocate, and remove the Jetpack Paywall block. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/6076]

Expand Down
2 changes: 1 addition & 1 deletion gutenberg
Submodule gutenberg updated 29 files
+1 −1 docs/contributors/code/getting-started-with-code-contribution.md
+1 −1 docs/getting-started/devenv/README.md
+8 −12 docs/how-to-guides/platform/custom-block-editor.md
+98 −0 lib/compat/wordpress-6.4/script-loader.php
+1 −0 lib/load.php
+0 −29 package-lock.json
+5 −8 packages/block-editor/README.md
+8 −1 packages/block-editor/src/components/provider/index.js
+46 −31 packages/block-editor/src/components/use-block-commands/index.js
+3 −1 packages/block-library/src/cover/edit/index.js
+25 −20 packages/block-library/src/cover/shared.js
+1 −5 packages/block-library/src/cover/test/edit.native.js
+1 −0 packages/block-library/src/site-logo/style.scss
+1 −0 packages/components/CHANGELOG.md
+88 −0 packages/components/src/color-picker/hsv-color-picker.native.js
+194 −0 packages/components/src/color-picker/hue-picker.native.js
+2 −1 packages/components/src/color-picker/index.native.js
+163 −0 packages/components/src/color-picker/saturation-picker.native.js
+23 −0 packages/components/src/color-picker/style.native.scss
+3 −0 packages/components/src/slot-fill/bubbles-virtually/slot-fill-context.js
+6 −1 packages/components/src/slot-fill/index.js
+0 −2 packages/customize-widgets/src/components/sidebar-block-editor/index.js
+0 −2 packages/edit-site/src/components/block-editor/site-editor-canvas.js
+0 −2 packages/edit-widgets/src/components/widget-areas-block-editor-provider/index.js
+6 −2 packages/react-native-editor/CHANGELOG.md
+0 −1 packages/react-native-editor/package.json
+18 −23 storybook/stories/playground/index.story.js
+1 −1 test/e2e/playwright.config.ts
+13 −18 test/integration/helpers/integration-test-editor.js