-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
= 2.2.0 - 2023/09/07 = * This feature release adds a "Products Slider" Block for use with Gutenberg templates. Also compatibility with WooCommerce 8.0.3 and WordPress 6.3 * Feature - Define new "Products Slider" block to show product slider on Gutenberg Block templates pages. * Tweak - Test for compatibility with WooCommerce 8.0.3 * Tweak - Test for compatibility with WordPress 6.3.0 * Fix - New Product Slider Block resolves issues that the product slider shortcode has with Gutenberg templates.
- Loading branch information
Showing
22 changed files
with
554 additions
and
7 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "woocommerce-product-slider", | ||
"version": "1.0.0", | ||
"private": true, | ||
"scripts": { | ||
"start": "cgb-scripts start", | ||
"build": "cgb-scripts build", | ||
"eject": "cgb-scripts eject" | ||
}, | ||
"dependencies": { | ||
"cgb-scripts": "^1.23.1" | ||
}, | ||
"devDependencies": { | ||
"@svgr/webpack": "^4.3.3" | ||
} | ||
} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Gutenberg Blocks | ||
* | ||
* All blocks related JavaScript files should be imported here. | ||
* You can create a new block folder in this dir and include code | ||
* for that block here as well. | ||
* | ||
* All blocks should be included here since this is the file that | ||
* Webpack is compiling as the input file. | ||
*/ | ||
const { updateCategory } = wp.blocks; | ||
|
||
import a3revBlocksIcon from './assets/icons/a3blockpress.svg'; | ||
|
||
/** | ||
* Add category icon. | ||
*/ | ||
updateCategory('a3rev-blocks', { | ||
icon: a3revBlocksIcon, | ||
}); | ||
|
||
import './blocks/slider/block'; |
Oops, something went wrong.