-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1fae34
commit 4568923
Showing
14 changed files
with
127 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-api', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-primitives', 'wp-url'), 'version' => '6e33db2b7ebf3239e69d'); | ||
<?php return array('dependencies' => array('lodash', 'moment', 'react', 'react-dom', 'wp-api', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-primitives', 'wp-url'), 'version' => '07ad0462e2eca31f5610'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,82 @@ | ||
{ | ||
"$schema": "https://schemas.wp.org/trunk/block.json", | ||
"apiVersion": 3, | ||
"name": "ub/counter", | ||
"title": "Counter", | ||
"category": "ultimateblocks", | ||
"description": "Add animated number counters to display statistics and milestones.", | ||
"keywords": [ | ||
"counter", | ||
"ultimate counter" | ||
], | ||
"attributes": { | ||
"counterFontSize": { | ||
"type": "string", | ||
"default": "48px" | ||
}, | ||
"labelFontSize": { | ||
"type": "string", | ||
"default": "16px" | ||
}, | ||
"startNumber": { | ||
"type": "string", | ||
"default": "0" | ||
}, | ||
"endNumber": { | ||
"type": "string", | ||
"default": "500" | ||
}, | ||
"prefix": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"suffix": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"animationDuration": { | ||
"type": "number", | ||
"default": 2 | ||
}, | ||
"alignment": { | ||
"type": "string", | ||
"default": "center" | ||
}, | ||
"label": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"labelColor": { | ||
"type": "string", | ||
"default": null | ||
}, | ||
"labelPosition": { | ||
"type": "string", | ||
"default": "bottom" | ||
}, | ||
"padding": { | ||
"type": "object", | ||
"default": {} | ||
}, | ||
"margin": { | ||
"type": "object", | ||
"default": {} | ||
} | ||
}, | ||
"supports": { | ||
"align": true, | ||
"color": { | ||
"gradients": true, | ||
"link": true, | ||
"__experimentalDefaultControls": { | ||
"background": true, | ||
"text": true | ||
} | ||
} | ||
}, | ||
"viewScript": "ub-counter-frontend-script" | ||
} | ||
"$schema": "https://schemas.wp.org/trunk/block.json", | ||
"apiVersion": 3, | ||
"name": "ub/counter", | ||
"title": "Counter", | ||
"category": "ultimateblocks", | ||
"description": "Add animated number counters to display statistics and milestones.", | ||
"keywords": [ | ||
"counter", | ||
"ultimate counter" | ||
], | ||
"attributes": { | ||
"gap": { | ||
"type": "object", | ||
"default": {} | ||
}, | ||
"counterFontSize": { | ||
"type": "string", | ||
"default": "48px" | ||
}, | ||
"labelFontSize": { | ||
"type": "string", | ||
"default": "16px" | ||
}, | ||
"startNumber": { | ||
"type": "string", | ||
"default": "0" | ||
}, | ||
"endNumber": { | ||
"type": "string", | ||
"default": "500" | ||
}, | ||
"prefix": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"suffix": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"animationDuration": { | ||
"type": "number", | ||
"default": 2 | ||
}, | ||
"alignment": { | ||
"type": "string", | ||
"default": "center" | ||
}, | ||
"label": { | ||
"type": "string", | ||
"default": "" | ||
}, | ||
"labelColor": { | ||
"type": "string", | ||
"default": null | ||
}, | ||
"labelPosition": { | ||
"type": "string", | ||
"default": "bottom" | ||
}, | ||
"padding": { | ||
"type": "object", | ||
"default": {} | ||
}, | ||
"margin": { | ||
"type": "object", | ||
"default": {} | ||
} | ||
}, | ||
"supports": { | ||
"align": true, | ||
"color": { | ||
"gradients": true, | ||
"link": true, | ||
"__experimentalDefaultControls": { | ||
"background": true, | ||
"text": true | ||
} | ||
} | ||
}, | ||
"viewScript": "ub-counter-frontend-script" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters