Skip to content

Commit 40d0856

Browse files
committed
RTC: Fix syncing of emoji / surrogate pairs (#76049)
* Fix syncing of emoji / surrogate pairs * Fix type errors Source: WordPress/gutenberg@f23578a
1 parent 8e9a384 commit 40d0856

9 files changed

Lines changed: 179 additions & 169 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ This is a duplicate of the [WordPress/Gutenberg](https://github.com/WordPress/gu
55
You are currently viewing the version build from the source:
66

77
* Branch: `wp/7.0`
8-
* Commit: [WordPress/Gutenberg@`27c52b5056d`](https://github.com/WordPress/gutenberg/commit/27c52b5056ddd1cb53638a3c91cb4fb6fd646fa8), [Browse files](https://github.com/WordPress/gutenberg/tree/27c52b5056ddd1cb53638a3c91cb4fb6fd646fa8)
8+
* Commit: [WordPress/Gutenberg@`f23578a2e9a`](https://github.com/WordPress/gutenberg/commit/f23578a2e9a23c5518bce93aaac34330e8afefd5), [Browse files](https://github.com/WordPress/gutenberg/tree/f23578a2e9a23c5518bce93aaac34330e8afefd5)
99

1010
> [!NOTE]
1111
> This readme file has replaced the original version included in the upstream repository.
1212
>
13-
> The [original `README.md` file](https://github.com/WordPress/gutenberg/blob/27c52b5056ddd1cb53638a3c91cb4fb6fd646fa8/README.md) file for this commit can be found in the upstream repository.
13+
> The [original `README.md` file](https://github.com/WordPress/gutenberg/blob/f23578a2e9a23c5518bce93aaac34330e8afefd5/README.md) file for this commit can be found in the upstream repository.
1414
1515
## Pupose
1616

build/modules/registry.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,9 @@
1313
'asset' => 'interactivity/index.min.asset.php',
1414
),
1515
array(
16-
'id' => '@wordpress/interactivity-router',
17-
'path' => 'interactivity-router/index',
18-
'asset' => 'interactivity-router/index.min.asset.php',
19-
),
20-
array(
21-
'id' => '@wordpress/interactivity-router/full-page',
22-
'path' => 'interactivity-router/full-page',
23-
'asset' => 'interactivity-router/full-page.min.asset.php',
16+
'id' => '@wordpress/a11y',
17+
'path' => 'a11y/index',
18+
'asset' => 'a11y/index.min.asset.php',
2419
),
2520
array(
2621
'id' => '@wordpress/latex-to-mathml',
@@ -32,6 +27,16 @@
3227
'path' => 'latex-to-mathml/loader',
3328
'asset' => 'latex-to-mathml/loader.min.asset.php',
3429
),
30+
array(
31+
'id' => '@wordpress/interactivity-router',
32+
'path' => 'interactivity-router/index',
33+
'asset' => 'interactivity-router/index.min.asset.php',
34+
),
35+
array(
36+
'id' => '@wordpress/interactivity-router/full-page',
37+
'path' => 'interactivity-router/full-page',
38+
'asset' => 'interactivity-router/full-page.min.asset.php',
39+
),
3540
array(
3641
'id' => '@wordpress/vips/worker',
3742
'path' => 'vips/worker',
@@ -42,26 +47,21 @@
4247
'path' => 'vips/loader',
4348
'asset' => 'vips/loader.min.asset.php',
4449
),
45-
array(
46-
'id' => '@wordpress/a11y',
47-
'path' => 'a11y/index',
48-
'asset' => 'a11y/index.min.asset.php',
49-
),
5050
array(
5151
'id' => '@wordpress/abilities',
5252
'path' => 'abilities/index',
5353
'asset' => 'abilities/index.min.asset.php',
5454
),
55-
array(
56-
'id' => '@wordpress/core-abilities',
57-
'path' => 'core-abilities/index',
58-
'asset' => 'core-abilities/index.min.asset.php',
59-
),
6055
array(
6156
'id' => '@wordpress/route',
6257
'path' => 'route/index',
6358
'asset' => 'route/index.min.asset.php',
6459
),
60+
array(
61+
'id' => '@wordpress/core-abilities',
62+
'path' => 'core-abilities/index',
63+
'asset' => 'core-abilities/index.min.asset.php',
64+
),
6565
array(
6666
'id' => '@wordpress/connectors',
6767
'path' => 'connectors/index',

0 commit comments

Comments
 (0)