mt-block-editor-block 1.1.12 → 1.1.13

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/icon.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const edit: any;
2
- export { edit };
1
+ declare const edit: any, link: any;
2
+ export { edit, link };
package/icon.js CHANGED
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  exports.__esModule = true;
3
- exports.edit = void 0;
4
- var edit = window.MTBlockEditor.icon.edit;
3
+ exports.link = exports.edit = void 0;
4
+ var _a = window.MTBlockEditor.icon, edit = _a.edit, link = _a.link;
5
5
  exports.edit = edit;
6
+ exports.link = link;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mt-block-editor-block",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "This package helps you define custom block types.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
package/src/icon.ts CHANGED
@@ -1,3 +1,3 @@
1
- const { edit } = window.MTBlockEditor.icon;
1
+ const { edit, link } = window.MTBlockEditor.icon;
2
2
 
3
- export { edit };
3
+ export { edit, link };