-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat( core ): Size and Alignment - Checkbox and radio button sizes ar…
…e calculated from parent font size. Aligned to baseline of the application's font. (#19) BREAKING CHANGE: The complete API has been changed, and this version does not compatible with v2.x refactor( core ): Complete rewritten of the library feat( animation ): Pulse feat( state ): Introducing state, to work with different checkbox states feat( scale ): Added support to make checkbox bigger feat( SVG ): Added support for svg elements,files and sprites feat( Image ): Added support for tiny images feat( Switch ): New iOS style switches with 3 variants fix( core ): z-index is calculated from 0 to 2 [ #6 , #14 ] feat( lock ): Similar to disable but looks like active [ #17 ] build( CI ): Setup Travis for auto publish from staging to master doc( readme ): Updated with examples, badges, gif preview and a logo doc( readme ): Removed bower installation guide doc( readme ): Changed CDN provider from cdnjs to jsDelivr refactor( core ): All class names starts with prefix `p-` except *pretty*and *state*
- Loading branch information
1 parent
b8078b6
commit 81bb8c5
Showing
62 changed files
with
3,636 additions
and
1,706 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 |
---|---|---|
@@ -1,3 +1,29 @@ | ||
node_modules/ | ||
test/ | ||
# Node | ||
node_modules | ||
npm-debug.log | ||
package-lock.json | ||
.npmrc | ||
|
||
# Yarn | ||
yarn-error.log | ||
yarn.lock | ||
|
||
# JetBrains | ||
.idea/ | ||
|
||
# VS Code | ||
.vscode/ | ||
.history | ||
|
||
# Windows | ||
Thumbs.db | ||
Desktop.ini | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
# Temporary files | ||
coverage/ | ||
docs | ||
tmp | ||
test |
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 @@ | ||
{ | ||
"extends": "stylelint-config-recommended-scss" | ||
} |
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,33 @@ | ||
sudo: required | ||
dist: trusty | ||
language: node_js | ||
node_js: | ||
- node | ||
cache: | ||
yarn: true | ||
notifications: | ||
email: false | ||
before_install: | ||
- echo "//registry.npmjs.org/:_authToken=\${NPM_TOKEN}" > .npmrc | ||
before_script: | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
- sleep 3 | ||
- git remote rm origin | ||
- git remote add origin https://${GH_TOKEN}@github.com/lokesh-coder/hug.css.git | ||
- 'if [ ${TRAVIS_PULL_REQUEST} = "false" ]; then | ||
git fetch && git checkout master; | ||
git config push.default current; | ||
fi' | ||
after_success: | ||
- 'if [ ${TRAVIS_PULL_REQUEST} = "false" ]; then | ||
npm run ci; | ||
npm run release; | ||
npm publish --access=public; | ||
npm run log; | ||
fi' | ||
|
||
branches: | ||
only: | ||
- staging | ||
- /^greenkeeper/.*$/ |
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,9 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2017 Lokesh Rajendran | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Oops, something went wrong.