@automattic/newspack-blocks 3.0.3 → 3.0.4
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/.cache/babel/2fa9c6a361abed0c298ce473e621c94c.json.gz +0 -0
- package/.cache/babel/6868f766c1c67a550ee0fb3a6ac463de.json.gz +0 -0
- package/.cache/babel/817cbaca80eaec949c5221857f548c88.json.gz +0 -0
- package/.cache/babel/fdd76bf50199728a7f02fe0f3bf347cd.json.gz +0 -0
- package/CHANGELOG.md +7 -0
- package/dist/carousel/view.asset.php +1 -1
- package/dist/carousel/view.css +1 -1
- package/dist/carousel/view.rtl.css +1 -1
- package/dist/editor.asset.php +1 -1
- package/dist/editor.css +1 -1
- package/dist/editor.js +2 -2
- package/dist/editor.rtl.css +1 -1
- package/dist/homepage-articles/view.asset.php +1 -1
- package/dist/homepage-articles/view.css +1 -1
- package/dist/homepage-articles/view.rtl.css +1 -1
- package/includes/class-newspack-blocks-api.php +1 -11
- package/includes/class-newspack-blocks.php +35 -0
- package/newspack-blocks.php +2 -2
- package/package.json +1 -1
- package/src/blocks/carousel/edit.js +29 -3
- package/src/blocks/carousel/index.js +8 -0
- package/src/blocks/carousel/view.php +20 -1
- package/src/blocks/carousel/view.scss +16 -0
- package/src/blocks/homepage-articles/block.json +35 -11
- package/src/blocks/homepage-articles/edit.js +24 -9
- package/src/blocks/homepage-articles/templates/article.php +2 -2
- package/src/blocks/homepage-articles/utils.ts +8 -0
- package/src/blocks/homepage-articles/view.php +3 -0
- package/src/blocks/homepage-articles/view.scss +6 -1
- package/src/types/index.d.ts +2 -0
- package/vendor/autoload.php +1 -1
- package/vendor/composer/autoload_real.php +4 -4
- package/vendor/composer/autoload_static.php +2 -2
- package/vendor/composer/installed.php +2 -2
- package/.cache/babel/0066e5fc44f03762bbd751d1e2c47eed.json.gz +0 -0
- package/.cache/babel/2bec24377bb9890c2268bcd4c8f3953c.json.gz +0 -0
- package/.cache/babel/98c36ce1c809c31c7b1a84794c9233d3.json.gz +0 -0
- package/.cache/babel/d9e74ec24a15371e21e2d1de3f1976c8.json.gz +0 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
namespace Composer\Autoload;
|
|
6
6
|
|
|
7
|
-
class
|
|
7
|
+
class ComposerStaticInitbf41db5fd90f71daf81a6c15709bfd19
|
|
8
8
|
{
|
|
9
9
|
public static $classMap = array (
|
|
10
10
|
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
|
|
@@ -13,7 +13,7 @@ class ComposerStaticInit90b7aab6d3fee0e0d25f57e0e59b1d50
|
|
|
13
13
|
public static function getInitializer(ClassLoader $loader)
|
|
14
14
|
{
|
|
15
15
|
return \Closure::bind(function () use ($loader) {
|
|
16
|
-
$loader->classMap =
|
|
16
|
+
$loader->classMap = ComposerStaticInitbf41db5fd90f71daf81a6c15709bfd19::$classMap;
|
|
17
17
|
|
|
18
18
|
}, null, ClassLoader::class);
|
|
19
19
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
'name' => 'automattic/newspack-blocks',
|
|
4
4
|
'pretty_version' => 'dev-trunk',
|
|
5
5
|
'version' => 'dev-trunk',
|
|
6
|
-
'reference' => '
|
|
6
|
+
'reference' => '92a7bd33dd1b8a41ecd85a62a748e743015d634a',
|
|
7
7
|
'type' => 'wordpress-plugin',
|
|
8
8
|
'install_path' => __DIR__ . '/../../',
|
|
9
9
|
'aliases' => array(),
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
'automattic/newspack-blocks' => array(
|
|
14
14
|
'pretty_version' => 'dev-trunk',
|
|
15
15
|
'version' => 'dev-trunk',
|
|
16
|
-
'reference' => '
|
|
16
|
+
'reference' => '92a7bd33dd1b8a41ecd85a62a748e743015d634a',
|
|
17
17
|
'type' => 'wordpress-plugin',
|
|
18
18
|
'install_path' => __DIR__ . '/../../',
|
|
19
19
|
'aliases' => array(),
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|