itmar-block-packages 1.9.0 → 1.10.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/README.md +8 -0
- package/build/index.asset.php +1 -1
- package/build/index.js +3 -3
- package/package.json +1 -1
- package/src/BrockInserter.js +247 -0
- package/src/MasonryControl.js +125 -0
- package/src/SwiperControl.js +265 -0
- package/src/customFooks.js +1 -0
- package/src/index.js +9 -0
- package/src/wordpressApi.js +230 -38
package/README.md
CHANGED
|
@@ -14,6 +14,14 @@ import {関数名又はコンポーネント名} from "itmar-block-packages"
|
|
|
14
14
|
npm i @wordpress/scripts@^27.6.0 --save-dev
|
|
15
15
|
|
|
16
16
|
## 更新履歴
|
|
17
|
+
= 1.10.1 =
|
|
18
|
+
- PageSelectControlで固定ページの選択肢が10個しか表示されないという不具合を解消
|
|
19
|
+
|
|
20
|
+
= 1.10.0 =
|
|
21
|
+
- useRebuildChangeFieldを新設。
|
|
22
|
+
- FieldChoiceControlについてacfフィールドの付加情報をフィールド選択項目として表示されていたものを表示しないように修正。また、gallaryについては画像を個別に選択するのではなく全体を選択するように修正
|
|
23
|
+
- FieldChoiceControlについて、指定された投稿タイプに紐づかないフィールドが選択項目に含まれる場合、それを除外する機能を備えた。
|
|
24
|
+
|
|
17
25
|
= 1.9.0 =
|
|
18
26
|
- shopfiApi.jsを新設。
|
|
19
27
|
|
package/build/index.asset.php
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-primitives'), 'version' => '
|
|
1
|
+
<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-data', 'wp-date', 'wp-element', 'wp-i18n', 'wp-primitives', 'wp-url'), 'version' => 'f59d66e6d8fcc390fee4');
|