Skip to content

Commit 41d3184

Browse files
authored
Amplify ui migration (#1517)
* Update auth integration test value returned from Cognito * Revert "Update auth integration test value returned from Cognito" This reverts commit 4dc207d. * ui updates * update ui * update greeting * set default state as loading * update storage styles and move upload logic to component * Amplify UI migration * interactions ui * update theme * ionic theme * ionic theme updates * initial style commit * cleaning up * update ionic styles * update ionic styles * update ionic * CSS styles organized into seperate modules * Amplify React Native Authenticator styles updated to meet styleguide * React Native styled with Amplify UI styleguide * Update amplify ui with photo picker styles * Add photo picker style update to Amplify react * Remove font-family container styling * Allow theme to be passed into withAuthenticator * update ui for angular/ionic * update peer deps * update dev-dep for angular * update tests * update publish scope for amplify-ui * service test * feat(aws-amplify-react): UI Components feat(aws-amplify-react-native): UI Components feat(aws-amplify-angular): UI Components BREAKING CHANGE: UI Components
1 parent e150758 commit 41d3184

File tree

119 files changed

+18296
-18837
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+18296
-18837
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"clean": "lerna run -- clean",
1515
"format": "lerna run -- format",
1616
"lint": "lerna run -- lint",
17+
"link": "lerna exec yarn link",
1718
"publish:master": "lerna publish --conventional-commits --cd-version=prerelease --yes --independent --npm-tag=unstable --preid=unstable --message 'chore(release): Publish [ci skip]'",
1819
"publish:beta": "lerna publish --conventional-commits --cd-version=prerelease --yes --independent --npm-tag=beta --preid=beta --message 'chore(release): Publish [ci skip]'",
1920
"publish:release": "lerna publish --conventional-commits --cd-version=patch --yes --independent --message 'chore(release): Publish [ci skip]'"
@@ -27,14 +28,14 @@
2728
],
2829
"repository": {
2930
"type": "git",
30-
"url": "https://github.com/aws/aws-amplify.git"
31+
"url": "https://github.com/aws-amplify/amplify-js.git"
3132
},
3233
"author": "Amazon Web Services",
3334
"license": "Apache-2.0",
3435
"bugs": {
35-
"url": "https://github.com/aws/aws-amplify/issues"
36+
"url": "https://github.com/aws-amplify/amplify-js/issues"
3637
},
37-
"homepage": "https://github.com/aws/aws-amplify#readme",
38+
"homepage": "https://aws-amplify.github.io/",
3839
"devDependencies": {
3940
"@types/jest": "^20.0.7",
4041
"@types/node": "^8.9.5",

packages/amplify-ui/package.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "@aws-amplify/ui",
3+
"version": "1.0.0",
4+
"main": "dist/aws-amplify-ui.js",
5+
"publishConfig": {
6+
"access": "public"
7+
},
8+
"scripts": {
9+
"test": "webpack",
10+
"start": "webpack-dev-server",
11+
"clean": "rm -rf dist",
12+
"build": "npm run clean && webpack"
13+
},
14+
"license": "MIT",
15+
"devDependencies": {
16+
"autoprefixer-core": "^5.1.11",
17+
"babel-core": "^5.2.17",
18+
"babel-loader": "^5.0.0",
19+
"css-loader": "^0.15.1",
20+
"ejs": "^2.3.1",
21+
"extract-text-webpack-plugin": "^0.8.1",
22+
"file-loader": "^0.8.4",
23+
"gh-pages": "git://github.com/markdalgleish/gh-pages#cli-message",
24+
"node-libs-browser": "^0.5.0",
25+
"postcss-color-rebeccapurple": "^1.1.0",
26+
"postcss-loader": "^0.4.3",
27+
"raw-loader": "^0.5.1",
28+
"react": "^0.13.3",
29+
"react-to-html-webpack-plugin": "^2.2.0",
30+
"style-loader": "^0.12.3",
31+
"url-loader": "^0.5.6",
32+
"webpack": "^1.9.10",
33+
"webpack-dev-server": "^1.9.0"
34+
}
35+
}

packages/amplify-ui/src/Anchor.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@import './Theme.css';
2+
3+
.a {
4+
color: var(--link-color);
5+
cursor: pointer;
6+
}
7+
8+
.a:hover {
9+
text-decoration: underline;
10+
}

0 commit comments

Comments
 (0)