Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Overhaul for 5.9 #8

Merged
merged 15 commits into from
Jan 25, 2022
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ A simple little block that allows you add a custom SVG icon or graphic to the Bl

### Key Features

* 270+ native WordPress icons, including social logos
* Use any custom SVG icon or graphic
* Includes some handy icon controls (link, rotate, alignment, colors, etc.)
* No block library required 🎉
* Built almost entirely with native WordPress components
* Will get additional functionality as its added to WordPress core (margin, borders, responsive controls etc.)
- 270+ native WordPress icons, including social logos
- Use any custom SVG icon or graphic
- Includes some handy icon controls (link, rotate, alignment, colors, border, padding, margin, etc.)
- No block library required 🎉
- Built almost entirely with native WordPress components
- Will get additional functionality as it's added to WordPress core

## Requirements

Expand Down
15 changes: 11 additions & 4 deletions block.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
"customGradient": {
"type": "string"
},
"label": {
"type": "string"
},
"linkUrl": {
"type": "string"
},
Expand Down Expand Up @@ -72,13 +75,17 @@
"align": true,
"html": false,
"__experimentalBorder": {
"radius": true
"color": true,
"radius": true,
"style": true,
"width": true
},
"spacing": {
"padding": true
"padding": true,
"margin": true
}
},
"editorScript": "file:./build/index.js",
"editorStyle": "file:./build/index.css",
"style": "file:./build/style-index.css"
"editorStyle": "file:./build/editor.css",
"style": "file:./build/style.css"
}
1 change: 1 addition & 0 deletions build/editor.asset.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php return array('dependencies' => array(), 'version' => '88a9c1ee3b45dea20b5ce3d7eb6b5d83');
1 change: 1 addition & 0 deletions build/editor.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-polyfill', 'wp-primitives'), 'version' => '4f947a65df9fe3315d5cd8aca0c725ff');
<?php return array('dependencies' => array('lodash', 'react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-keycodes', 'wp-primitives'), 'version' => '7149c3c5ce45c30ba0a8d1d11e0bea84');
Loading