Skip to content

Commit

Permalink
Updated component to version 2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Dec 22, 2015
1 parent 5c0c606 commit ea0a6ab
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 26 deletions.
22 changes: 13 additions & 9 deletions checkbox.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.1.6 - Checkbox
* # Semantic UI 2.1.7 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -70,8 +70,10 @@
content: '';
background: #FFFFFF;
border-radius: 0.21428571rem;
-webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
-webkit-transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
border: 1px solid #D4D4D5;
}

Expand All @@ -90,8 +92,10 @@
text-align: center;
opacity: 0;
color: rgba(0, 0, 0, 0.87);
-webkit-transition: border 0.1s ease, opacity 0.1s ease, -webkit-transform 0.1s ease, box-shadow 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
-webkit-transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease;
transition: border 0.1s ease, opacity 0.1s ease, transform 0.1s ease, box-shadow 0.1s ease, -webkit-transform 0.1s ease;
}

/*--------------
Expand All @@ -104,7 +108,7 @@
.ui.checkbox + label {
color: rgba(0, 0, 0, 0.87);
-webkit-transition: color 0.1s ease;
transition: color 0.1s ease;
transition: color 0.1s ease;
}

/* Outside */
Expand Down Expand Up @@ -388,7 +392,7 @@
transform: none;
border-radius: 500rem;
-webkit-transition: background 0.3s ease;
transition: background 0.3s ease;
transition: background 0.3s ease;
}

/* Handle */
Expand All @@ -411,7 +415,7 @@
transform: none;
border-radius: 500rem;
-webkit-transition: left 0.3s ease;
transition: left 0.3s ease;
transition: left 0.3s ease;
}

/* Focus */
Expand Down Expand Up @@ -515,7 +519,7 @@
left: 0em;
border-radius: 500rem;
-webkit-transition: background 0.3s ease, left 0.3s ease;
transition: background 0.3s ease, left 0.3s ease;
transition: background 0.3s ease, left 0.3s ease;
}
.ui.toggle.checkbox input ~ .box:after,
.ui.toggle.checkbox input ~ label:after {
Expand Down
10 changes: 5 additions & 5 deletions checkbox.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.1.6 - Checkbox
* # Semantic UI 2.1.7 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -268,7 +268,7 @@ $.fn.checkbox = function(parameters) {
}
module.debug('Enabling checkbox');
module.set.enabled();
settings.onEnable.call(input);
settings.onEnabled.call(input);
},

disable: function() {
Expand All @@ -278,7 +278,7 @@ $.fn.checkbox = function(parameters) {
}
module.debug('Disabling checkbox');
module.set.disabled();
settings.onDisable.call(input);
settings.onDisabled.call(input);
},

get: {
Expand Down Expand Up @@ -781,8 +781,8 @@ $.fn.checkbox.settings = {
onDeterminate : function() {},
onIndeterminate : function() {},

onEnabled : function(){},
onDisabled : function(){},
onEnable : function(){},
onDisable : function(){},

className : {
checked : 'checked',
Expand Down
4 changes: 2 additions & 2 deletions checkbox.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions checkbox.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"framework"
],
"license": "MIT",
"version": "2.1.6"
"version": "2.1.7"
}
10 changes: 5 additions & 5 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.1.6 - Checkbox
* # Semantic UI 2.1.7 - Checkbox
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -269,7 +269,7 @@ module.exports = function(parameters) {
}
module.debug('Enabling checkbox');
module.set.enabled();
settings.onEnable.call(input);
settings.onEnabled.call(input);
},

disable: function() {
Expand All @@ -279,7 +279,7 @@ module.exports = function(parameters) {
}
module.debug('Disabling checkbox');
module.set.disabled();
settings.onDisable.call(input);
settings.onDisabled.call(input);
},

get: {
Expand Down Expand Up @@ -782,8 +782,8 @@ _module.exports.settings = {
onDeterminate : function() {},
onIndeterminate : function() {},

onEnabled : function(){},
onDisabled : function(){},
onEnable : function(){},
onDisable : function(){},

className : {
checked : 'checked',
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name : 'semantic:ui-checkbox',
summary : 'Semantic UI - Checkbox: Single component release',
version : '2.1.6',
version : '2.1.7',
git : 'git://github.com/Semantic-Org/UI-Checkbox.git',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-checkbox",
"version": "2.1.6",
"version": "2.1.7",
"title": "Semantic UI - Checkbox",
"description": "Single component release of checkbox",
"homepage": "http://www.semantic-ui.com",
Expand Down

0 comments on commit ea0a6ab

Please sign in to comment.