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

Add initial work on composite-checkout package #36720

Merged
merged 23 commits into from
Oct 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c21f683
wp-checkout: Add README
sirbrillig Oct 18, 2019
c60eed9
wp-checkout: Initial commit of package
sirbrillig Oct 18, 2019
d6cf523
wp-checkout: Add dependencies to global package
sirbrillig Oct 18, 2019
1c5e338
wp-checkout: Add wp-checkout-demo script
sirbrillig Oct 18, 2019
35ba4cd
wp-checkout: Update npm-shrinkwrap for dependencies
sirbrillig Oct 18, 2019
faa8fd6
wp-checkout: Add styled-components as a dependency
sirbrillig Oct 18, 2019
7334060
wp-checkout: Rename public to demo for accuracy
sirbrillig Oct 18, 2019
f3f2eb0
Change outline colour
fditrapani Oct 18, 2019
401dd0d
Move global outline to parent container
fditrapani Oct 18, 2019
465bea6
Refactor step component to reduce duplication
fditrapani Oct 18, 2019
3cd9371
StepTitle: remove duplicated css attribute
sirbrillig Oct 18, 2019
16338d6
CheckoutStep: Simplify StepSummary prop logic
sirbrillig Oct 18, 2019
477a778
BillingDetailsStep: Guard against missing data
sirbrillig Oct 18, 2019
09b3e61
CheckoutStep: inline completedTitle with title
sirbrillig Oct 18, 2019
27c9b2a
BillingContactComponent: Use ApplePayBillingForm for all
sirbrillig Oct 18, 2019
4a3b2ee
PaymentMethodComponent: Pass checked as isActive
sirbrillig Oct 18, 2019
2c77921
Rename package to composite-checkout
sirbrillig Oct 18, 2019
17b71c8
Update npm-shrinkwrap for composite-checkout
sirbrillig Oct 18, 2019
f3fcd12
README: fix image links
sirbrillig Oct 19, 2019
feea244
Remove custom gitignore,babelrc,prettierrc
sirbrillig Oct 19, 2019
4433b94
Remove format pragma
sirbrillig Oct 19, 2019
9f73321
ApplePayBillingForm: Localize strings
sirbrillig Oct 19, 2019
33238c0
Move composite-checkout demo webpack to package
sirbrillig Oct 19, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,800 changes: 1,688 additions & 112 deletions npm-shrinkwrap.json

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@
"source-map-support": "0.5.12",
"store": "2.0.12",
"striptags": "2.2.1",
"styled-components": "4.4.0",
"superagent": "3.8.3",
"svg4everybody": "2.1.9",
"textarea-caret": "3.1.0",
Expand Down Expand Up @@ -285,7 +286,8 @@
"validate-fallback-es5": "npx eslint --env=es5 --no-eslintrc --no-ignore ./public/fallback/*.js",
"postshrinkwrap": "node -e \"fs.utimesSync( './node_modules', new Date(), new Date() );\"",
"prewhybundled": "cross-env-shell CALYPSO_ENV=production EMIT_STATS=withreasons NODE_ARGS=--max_old_space_size=8192 npm run -s build-client",
"whybundled": "whybundled stats.json"
"whybundled": "whybundled stats.json",
"composite-checkout-demo": "webpack-dev-server --config ./packages/composite-checkout/webpack.config.demo.js --mode development"
},
"devDependencies": {
"@automattic/babel-plugin-i18n-calypso": "file:./packages/babel-plugin-i18n-calypso",
Expand All @@ -294,6 +296,7 @@
"@automattic/calypso-color-schemes": "file:./packages/calypso-color-schemes",
"@automattic/webpack-extensive-lodash-replacement-plugin": "file:./packages/webpack-extensive-lodash-replacement-plugin",
"@automattic/webpack-inline-constant-exports-plugin": "file:./packages/webpack-inline-constant-exports-plugin",
"@automattic/composite-checkout": "file:./packages/composite-checkout",
"@types/classnames": "2.2.9",
"@types/debug": "4.1.4",
"@types/lodash": "4.14.144",
Expand Down Expand Up @@ -359,6 +362,9 @@
"supertest": "3.4.2",
"svgstore-cli": "1.3.1",
"typescript": "3.6.4",
"webpack": "4.41.2",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.2",
"webpack-hot-middleware": "2.25.0",
"webpack-node-externals": "1.7.2",
"whybundled": "1.4.2"
Expand Down
Loading