Commits on Source (35)
-
David M Sibley authoredUnverified0d4ae58b
-
David M Sibley authored0b9f3977
-
David M Sibley authored
fixing gh-pages build
Unverifiedb2930c61 -
David M Sibley authored955916d6
-
David M Sibley authored
setting gh-pages repo to upstream
Unverified9336fdac -
David Witter authorede3428534
-
David Witter authored62f8384a
-
David Witter authored
Adjust button margins and add CSS variable
Unverifiedc185db4a -
David Witter authored2c60c9bf
-
David Witter authored
Adjust appearance and add font weight variable
Unverified2e37bcaa -
David Witter authoredbdc4e394
-
David Witter authored09aadf3a
-
David Witter authored5f25eaa5
-
David Witter authored
Fix appearance in Firefox
Unverifieda345f214 -
David Witter authorede44cf16f
-
David Witter authored9b04884a
-
David Witter authoredc29526a2
-
David Witter authoredb62a40e3
-
David Witter authored89a7192b
-
David Witter authored8efd3cd5
-
David Witter authored
feat: add custom event listener
Unverified0df58507 -
David Witter authoredUnverifiedc6f90528
-
David Witter authoredUnverified36460190
-
David M Sibley authored5c064e97
-
David M Sibley authored
transpile js sources
Unverified6801f967 -
David M Sibley authored40a66cc2
-
David M Sibley authored65aec922
-
David M Sibley authored
add css-vars-ponyfill to demo page
Unverified8ad0b0bb -
David M Sibley authoredf4bf1058
-
David M Sibley authored
Adding BrowserStack logo to README
Unverified73c2fc99 -
David Witter authored5d99c943
-
David Witter authored
make references safer in lifecycle hooks
Unverifiedb6f4e893 -
Scott Berg authored158e7f73
-
Scott Berg authored
Remove update blocking null check See merge request !1
39632626 -
Isaac Evavold authoredbba5b845
Showing
- CHANGELOG.md 33 additions, 0 deletionsCHANGELOG.md
- README.md 50 additions, 7 deletionsREADME.md
- index.html 96 additions, 36 deletionsindex.html
- package-lock.json 1356 additions, 339 deletionspackage-lock.json
- package.json 11 additions, 12 deletionspackage.json
- rollup.config.js 3 additions, 2 deletionsrollup.config.js
- src/.babelrc 7 additions, 0 deletionssrc/.babelrc
- src/myuw-profile.html 89 additions, 49 deletionssrc/myuw-profile.html
- src/myuw-profile.js 97 additions, 102 deletionssrc/myuw-profile.js
CHANGELOG.md
0 → 100644
This diff is collapsed.
{ | { | ||
"name": "@myuw-web-components/myuw-profile", | "name": "enrollment-profile", | ||
"version": "1.1.0", | "version": "1.3.1", | ||
"description": "Web component that provides an avatar button and profile menu", | "description": "Web component that provides an avatar button and profile menu", | ||
"module": "dist/myuw-profile.min.mjs", | "module": "dist/myuw-profile.min.mjs", | ||
"browser": "dist/myuw-profile.min.js", | "browser": "dist/myuw-profile.min.js", | ||
"scripts": { | "scripts": { | ||
"build": "rollup -c", | "build": "rollup -c", | ||
"watch": "rollup -c -w", | "watch": "rollup -c -w", | ||
"serve": "live-server", | "serve": "live-server --port=4200", | ||
"start": "run-p watch serve", | "start": "run-p watch serve", | ||
"prepare": "npm run build", | "prepare": "npm run build", | ||
"pages": "mkdir -p demo && cp -r dist demo/dist && cp index.html demo/index.html && gh-pages -d demo", | "pages": "rm -rf demo && mkdir -p demo && cp -r dist demo/ && cp -r test demo/ && cp index.html demo/ && gh-pages -d demo --repo git@github.com:myuw-web-components/myuw-profile.git", | ||
"postpublish": "npm run pages" | "postpublish": "npm run pages" | ||
}, | }, | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
"url": "git+https://github.com/myuw-web-components/myuw-profile.git" | "url": "git+https://git.doit.wisc.edu/adi-ia/enrollment-profile.git" | ||
}, | }, | ||
"author": "", | "author": "", | ||
"license": "Apache-2.0", | "license": "Apache-2.0", | ||
"bugs": { | |||
"url": "https://github.com/myuw-web-components/myuw-profile/issues" | |||
}, | |||
"homepage": "https://github.com/myuw-web-components/myuw-profile#readme", | |||
"devDependencies": { | "devDependencies": { | ||
"rollup": "^0.63.4", | "@babel/core": "^7.1.2", | ||
"rollup-plugin-html": "^0.2.1", | "@babel/preset-env": "^7.1.0", | ||
"rollup-plugin-minify-es": "^1.1.1", | |||
"gh-pages": "^1.2.0", | "gh-pages": "^1.2.0", | ||
"live-server": "^1.2.0", | "live-server": "^1.2.0", | ||
"npm-run-all": "^4.1.3", | "npm-run-all": "^4.1.3", | ||
"rollup": "^0.63.4", | |||
"rollup-plugin-babel": "^4.0.3", | |||
"rollup-plugin-html": "^0.2.1", | |||
"rollup-plugin-minify-es": "^1.1.1", | |||
"tota11y": "^0.1.6" | "tota11y": "^0.1.6" | ||
}, | }, | ||
"files": [ | "files": [ | ||
... | ... |
src/.babelrc
0 → 100644