Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaszWatroba committed Aug 27, 2015
1 parent 0d18f52 commit 4c2acba
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 25 deletions.
16 changes: 9 additions & 7 deletions dist/v-textfield.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* User-friendly text fields in AngularJS
* @version v0.1.1
* @version v0.1.2
* @link http://lukaszwatroba.github.io/v-textfield
* @author Łukasz Wątroba <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
Expand Down Expand Up @@ -60,7 +60,8 @@ v-textfield ng-messages, v-textfield ng-message {
background-color: #fff;
color: inherit;
border-radius: 2px;
transition: border-color 0.25s; }
-webkit-transition: border-color 0.25s;
transition: border-color 0.25s; }
.vTextfield--default input:active, .vTextfield--default input.is-active {
outline: 0;
background-image: none; }
Expand All @@ -77,7 +78,8 @@ v-textfield ng-messages, v-textfield ng-message {
opacity: 0;
max-height: 0px;
will-change: opacity;
transition: max-height 0.25s, opacity 0.5s; }
-webkit-transition: max-height 0.25s, opacity 0.5s;
transition: max-height 0.25s, opacity 0.5s; }
.vTextfield--default ng-message {
max-width: 100%;
overflow: hidden;
Expand All @@ -89,8 +91,8 @@ v-textfield ng-messages, v-textfield ng-message {
-webkit-transform: translateY(15px);
-ms-transform: translateY(15px);
transform: translateY(15px);
transition: -webkit-transform 0.25s;
transition: transform 0.25s; }
-webkit-transition: -webkit-transform 0.25s;
transition: transform 0.25s; }
.vTextfield--default::after {
content: '';
position: absolute;
Expand All @@ -106,8 +108,8 @@ v-textfield ng-messages, v-textfield ng-message {
-webkit-transform: scale(0.2);
-ms-transform: scale(0.2);
transform: scale(0.2);
transition: -webkit-transform 0.25s, opacity 0.25s;
transition: transform 0.25s, opacity 0.25s; }
-webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
transition: transform 0.25s, opacity 0.25s; }

/* States */
.vTextfield--default.is-valid::after {
Expand Down
2 changes: 1 addition & 1 deletion dist/v-textfield.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* User-friendly text fields in AngularJS
* @version v0.1.1
* @version v0.1.2
* @link http://lukaszwatroba.github.io/v-textfield
* @author Łukasz Wątroba <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
Expand Down
4 changes: 2 additions & 2 deletions dist/v-textfield.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/v-textfield.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "v-textfield",
"description": "User-friendly text fields in AngularJS",
"version": "0.1.1",
"version": "0.1.2",
"author": "Łukasz Wątroba <[email protected]>",
"license": "MIT",
"keywords": [
Expand All @@ -25,28 +25,28 @@
"devDependencies": {
"chai": "^1.9.1",
"chai-jquery": "^1.2.3",
"gulp": "^3.8.7",
"gulp-autoprefixer": "^2.0.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-concat": "^2.3.4",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.9.0",
"gulp-minify-css": "^0.3.11",
"gulp-rename": "^1.2.0",
"gulp-sass": "^1.2.4",
"gulp-header": "^1.7.1",
"gulp-jshint": "^1.11.2",
"gulp-minify-css": "^0.3.13",
"gulp-rename": "^1.2.2",
"gulp-sass": "^1.3.3",
"gulp-uglify": "^0.3.2",
"jshint-stylish": "^1.0.0",
"karma": "^0.12.22",
"jshint-stylish": "^1.0.2",
"karma": "^0.12.37",
"karma-chai": "^0.1.0",
"karma-chai-jquery": "^1.0.0",
"karma-chrome-launcher": "^0.1.4",
"karma-jasmine": "^0.1.5",
"karma-chrome-launcher": "^0.1.12",
"karma-jasmine": "^0.1.6",
"karma-jquery": "^0.1.0",
"karma-mocha": "^0.1.8",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sinon-chai": "^0.2.0",
"mocha": "^1.21.4",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0"
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
},
"engines": {
"node": ">=0.8.0"
Expand Down

0 comments on commit 4c2acba

Please sign in to comment.