Browse Source

Rebuild 1.7.0 proper

pull/1629/merge
jlukic 10 years ago
parent
commit
18ba063836
5 changed files with 30 additions and 20 deletions
  1. 4
      RELEASE-NOTES.md
  2. 9
      dist/components/transition.js
  3. 11
      dist/components/transition.min.js
  4. 9
      dist/semantic.js
  5. 17
      dist/semantic.min.js

4
RELEASE-NOTES.md

@ -14,7 +14,7 @@
- **Dropdown** - Javascript Dropdown can now be disabled by adding ``disabled` class. No need to call `destroy`. **Thanks Psyton**
- **Dropdown** - Search dropdown input can now have backgrounds. Fixes issues with autocompleted search dropdowns which have forced yellow "autocompleted" bg.
- **Dropdown** - Fix issue with search selection not correctly matching when values are not strings
- **Progress* - Progress bars can now display percent or amount left using `{value}` in text templates
- **Progress** - Progress bars can now display percent or amount left using `{value}` in text templates
- **Dropdown** - New `upward dropdown` variation, which opens its menu upward. Default animation now uses ``settings.transition = 'auto'` and determines direction of animation based on menu direction
- **Dropdown** - Dropdown matching fields without values now trims whitespace by default
- **Checkbox** - Checkbox now toggles on spacebar when focused (previously only toggled on enter key).
@ -39,7 +39,7 @@
- **Segment** - `basic segment` no longer removes padding on first and last elements
- **Steps** - Steps now use ``table-cell`` to allow steps to be equal height by default, even with different content height.
- **Button** - Fix issue with labeled icon groups in material theme
- **Progress* - Fixes bug with progress that use ``total`` and ``value`` receiving the wrong values for text templates
- **Progress** - Fixes bug with progress that use ``total`` and ``value`` receiving the wrong values for text templates
- **List** - Fix some styling issues with `ui list` inside `ui menu`
### Version 1.6.4 - January 12, 2015

9
dist/components/transition.js

@ -240,15 +240,6 @@ $.fn.transition = function() {
if(settings.useFailSafe) {
module.add.failSafe();
}
// showing multiple
$('.inline.sidebar')
.sidebar{
context: $('.application.segment')
})
;
$('.inline.sidebar')
.sidebar('attach events', '.demo.menu .item')
;
module.set.duration(settings.duration);
settings.onStart.call(this);
module.debug('Starting tween', animation, $module.attr('class'));

11
dist/components/transition.min.js
File diff suppressed because it is too large
View File

9
dist/semantic.js

@ -13038,15 +13038,6 @@ $.fn.transition = function() {
if(settings.useFailSafe) {
module.add.failSafe();
}
// showing multiple
$('.inline.sidebar')
.sidebar{
context: $('.application.segment')
})
;
$('.inline.sidebar')
.sidebar('attach events', '.demo.menu .item')
;
module.set.duration(settings.duration);
settings.onStart.call(this);
module.debug('Starting tween', animation, $module.attr('class'));

17
dist/semantic.min.js
File diff suppressed because it is too large
View File

Loading…
Cancel
Save