-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Cart and Checkout Blocks (#1467)
* Fix payment request button 3DS verification (not working in the blocks plugin) * Regenerate pot file with wp-cli instead of wpi18n * Add the `build` folder to release assets * Add margin to GPay PRB to make room for shadow in blocks * Use AJAX api when using Payment Request Buttons with Block-based checkouts (#1545) We now control the PRBs entirely through AJAX APIs. Translation strings have also been updated. Co-authored-by: Albert Juhé Lluveras <[email protected]> Co-authored-by: Kristófer R <[email protected]> Co-authored-by: Ricardo Metring <[email protected]>
- Loading branch information
1 parent
33411e5
commit 326fbea
Showing
52 changed files
with
23,229 additions
and
7,856 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
!.eslintrc.js | ||
build | ||
assets | ||
docker | ||
bin | ||
docs | ||
includes | ||
languages | ||
release | ||
tasks | ||
templates | ||
vendor | ||
tests |
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 @@ | ||
module.exports = { | ||
extends: [ 'plugin:@woocommerce/eslint-plugin/recommended' ], | ||
globals: { | ||
_: false, | ||
Backbone: false, | ||
jQuery: false, | ||
wp: false, | ||
}, | ||
settings: { | ||
jsdoc: { mode: 'typescript' }, | ||
// List of modules that are externals in our webpack config. | ||
// This helps the `import/no-extraneous-dependencies` and | ||
//`import/no-unresolved` rules account for them. | ||
'import/core-modules': [ | ||
'@woocommerce/blocks-registry', | ||
'@woocommerce/settings', | ||
'@wordpress/i18n', | ||
'@wordpress/is-shallow-equal', | ||
'@wordpress/element', | ||
], | ||
}, | ||
}; |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Import the default config file and expose it in the project root. | ||
// Useful for editor integrations. | ||
module.exports = require( '@wordpress/prettier-config' ); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.