@wordpress/editor 13.12.8 → 13.12.9
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/package.json +7 -7
- package/src/store/test/selectors.js +13 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/editor",
|
|
3
|
-
"version": "13.12.
|
|
3
|
+
"version": "13.12.9",
|
|
4
4
|
"description": "Enhanced block editor for WordPress posts.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"@wordpress/a11y": "^3.35.1",
|
|
35
35
|
"@wordpress/api-fetch": "^6.32.1",
|
|
36
36
|
"@wordpress/blob": "^3.35.1",
|
|
37
|
-
"@wordpress/block-editor": "^12.3.
|
|
38
|
-
"@wordpress/blocks": "^12.12.
|
|
37
|
+
"@wordpress/block-editor": "^12.3.9",
|
|
38
|
+
"@wordpress/blocks": "^12.12.5",
|
|
39
39
|
"@wordpress/components": "^25.1.8",
|
|
40
40
|
"@wordpress/compose": "^6.12.1",
|
|
41
|
-
"@wordpress/core-data": "^6.12.
|
|
41
|
+
"@wordpress/core-data": "^6.12.9",
|
|
42
42
|
"@wordpress/data": "^9.5.4",
|
|
43
43
|
"@wordpress/date": "^4.35.1",
|
|
44
44
|
"@wordpress/deprecated": "^3.35.1",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"@wordpress/notices": "^4.3.4",
|
|
55
55
|
"@wordpress/preferences": "^3.12.8",
|
|
56
56
|
"@wordpress/private-apis": "^0.17.2",
|
|
57
|
-
"@wordpress/reusable-blocks": "^4.12.
|
|
57
|
+
"@wordpress/reusable-blocks": "^4.12.9",
|
|
58
58
|
"@wordpress/rich-text": "^6.12.5",
|
|
59
|
-
"@wordpress/server-side-render": "^4.12.
|
|
59
|
+
"@wordpress/server-side-render": "^4.12.9",
|
|
60
60
|
"@wordpress/url": "^3.36.1",
|
|
61
61
|
"@wordpress/wordcount": "^3.35.1",
|
|
62
62
|
"classnames": "^2.3.1",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"publishConfig": {
|
|
74
74
|
"access": "public"
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "ec0ed708e46a598ab2cf8e18bf2591b0102b5bb3"
|
|
77
77
|
}
|
|
@@ -264,7 +264,7 @@ describe( 'selectors', () => {
|
|
|
264
264
|
parent: [ 'core/test-block-b' ],
|
|
265
265
|
} );
|
|
266
266
|
|
|
267
|
-
registerBlockType( 'core/
|
|
267
|
+
registerBlockType( 'core/freeform', {
|
|
268
268
|
save: ( props ) => <RawHTML>{ props.attributes.content }</RawHTML>,
|
|
269
269
|
category: 'text',
|
|
270
270
|
title: 'Test Freeform Content Handler',
|
|
@@ -291,7 +291,7 @@ describe( 'selectors', () => {
|
|
|
291
291
|
save: () => null,
|
|
292
292
|
} );
|
|
293
293
|
|
|
294
|
-
setFreeformContentHandlerName( 'core/
|
|
294
|
+
setFreeformContentHandlerName( 'core/freeform' );
|
|
295
295
|
setDefaultBlockName( 'core/test-default' );
|
|
296
296
|
|
|
297
297
|
cachedSelectors.forEach( ( { clear } ) => clear() );
|
|
@@ -302,7 +302,7 @@ describe( 'selectors', () => {
|
|
|
302
302
|
unregisterBlockType( 'core/test-block-a' );
|
|
303
303
|
unregisterBlockType( 'core/test-block-b' );
|
|
304
304
|
unregisterBlockType( 'core/test-block-c' );
|
|
305
|
-
unregisterBlockType( 'core/
|
|
305
|
+
unregisterBlockType( 'core/freeform' );
|
|
306
306
|
unregisterBlockType( 'core/test-default' );
|
|
307
307
|
|
|
308
308
|
setFreeformContentHandlerName( undefined );
|
|
@@ -1339,7 +1339,7 @@ describe( 'selectors', () => {
|
|
|
1339
1339
|
value: [
|
|
1340
1340
|
{
|
|
1341
1341
|
clientId: 123,
|
|
1342
|
-
name: 'core/
|
|
1342
|
+
name: 'core/freeform',
|
|
1343
1343
|
isValid: true,
|
|
1344
1344
|
attributes: {
|
|
1345
1345
|
content: '',
|
|
@@ -1366,7 +1366,7 @@ describe( 'selectors', () => {
|
|
|
1366
1366
|
value: [
|
|
1367
1367
|
{
|
|
1368
1368
|
clientId: 123,
|
|
1369
|
-
name: 'core/
|
|
1369
|
+
name: 'core/freeform',
|
|
1370
1370
|
isValid: true,
|
|
1371
1371
|
attributes: {
|
|
1372
1372
|
content: '',
|
|
@@ -1742,7 +1742,7 @@ describe( 'selectors', () => {
|
|
|
1742
1742
|
value: [
|
|
1743
1743
|
{
|
|
1744
1744
|
clientId: 123,
|
|
1745
|
-
name: 'core/
|
|
1745
|
+
name: 'core/freeform',
|
|
1746
1746
|
isValid: true,
|
|
1747
1747
|
attributes: {
|
|
1748
1748
|
content: '',
|
|
@@ -1768,7 +1768,7 @@ describe( 'selectors', () => {
|
|
|
1768
1768
|
value: [
|
|
1769
1769
|
{
|
|
1770
1770
|
clientId: 123,
|
|
1771
|
-
name: 'core/
|
|
1771
|
+
name: 'core/freeform',
|
|
1772
1772
|
isValid: true,
|
|
1773
1773
|
attributes: {
|
|
1774
1774
|
content: '',
|
|
@@ -1796,7 +1796,7 @@ describe( 'selectors', () => {
|
|
|
1796
1796
|
value: [
|
|
1797
1797
|
{
|
|
1798
1798
|
clientId: 123,
|
|
1799
|
-
name: 'core/
|
|
1799
|
+
name: 'core/freeform',
|
|
1800
1800
|
isValid: true,
|
|
1801
1801
|
attributes: {
|
|
1802
1802
|
content: 'Test Data',
|
|
@@ -1824,7 +1824,7 @@ describe( 'selectors', () => {
|
|
|
1824
1824
|
value: [
|
|
1825
1825
|
{
|
|
1826
1826
|
clientId: 123,
|
|
1827
|
-
name: 'core/
|
|
1827
|
+
name: 'core/freeform',
|
|
1828
1828
|
isValid: true,
|
|
1829
1829
|
attributes: {
|
|
1830
1830
|
content: '',
|
|
@@ -1832,7 +1832,7 @@ describe( 'selectors', () => {
|
|
|
1832
1832
|
},
|
|
1833
1833
|
{
|
|
1834
1834
|
clientId: 456,
|
|
1835
|
-
name: 'core/
|
|
1835
|
+
name: 'core/freeform',
|
|
1836
1836
|
isValid: true,
|
|
1837
1837
|
attributes: {
|
|
1838
1838
|
content: '',
|
|
@@ -2415,7 +2415,7 @@ describe( 'selectors', () => {
|
|
|
2415
2415
|
} );
|
|
2416
2416
|
|
|
2417
2417
|
it( "returns removep'd serialization of blocks for single unknown", () => {
|
|
2418
|
-
const unknownBlock = createBlock( 'core/
|
|
2418
|
+
const unknownBlock = createBlock( 'core/freeform', {
|
|
2419
2419
|
content: '<p>foo</p>',
|
|
2420
2420
|
} );
|
|
2421
2421
|
const state = {
|
|
@@ -2437,10 +2437,10 @@ describe( 'selectors', () => {
|
|
|
2437
2437
|
} );
|
|
2438
2438
|
|
|
2439
2439
|
it( "returns non-removep'd serialization of blocks for multiple unknown", () => {
|
|
2440
|
-
const firstUnknown = createBlock( 'core/
|
|
2440
|
+
const firstUnknown = createBlock( 'core/freeform', {
|
|
2441
2441
|
content: '<p>foo</p>',
|
|
2442
2442
|
} );
|
|
2443
|
-
const secondUnknown = createBlock( 'core/
|
|
2443
|
+
const secondUnknown = createBlock( 'core/freeform', {
|
|
2444
2444
|
content: '<p>bar</p>',
|
|
2445
2445
|
} );
|
|
2446
2446
|
const state = {
|