From d6e0ccbf23ca50b209bc067297e212aa7cc4d454 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:21:50 -0400 Subject: [PATCH 1/7] Install path changes #2101 --- tasks/config/project/install.js | 5 +++-- tasks/install.js | 32 +++++++++++++++++++------------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/tasks/config/project/install.js b/tasks/config/project/install.js index e8c4a1547..c271274c9 100644 --- a/tasks/config/project/install.js +++ b/tasks/config/project/install.js @@ -255,14 +255,15 @@ module.exports = { folders: { config : './', definitions : 'src/definitions/', - defaultTheme : 'default/', lessImport : 'src/', modules : 'node_modules/', site : 'src/site/', tasks : 'tasks/', themeConfig : 'src/', themeImport : 'src/', - themes : 'src/themes/' + themes : 'src/themes/', + + defaultTheme : 'default/' // only path that is relative to another directory and not root }, // questions asked during install diff --git a/tasks/install.js b/tasks/install.js index d7da7fc99..ec97ee83b 100644 --- a/tasks/install.js +++ b/tasks/install.js @@ -87,12 +87,13 @@ module.exports = function () { var updateFolder = path.join(manager.root, currentConfig.base), updatePaths = { - config : path.join(manager.root, files.config), - tasks : path.join(updateFolder, folders.tasks), - themeImport : path.join(updateFolder, folders.themeImport), - definition : path.join(currentConfig.paths.source.definitions), - site : path.join(currentConfig.paths.source.site), - theme : path.join(currentConfig.paths.source.themes, folders.defaultTheme) + config : path.join(manager.root, files.config), + tasks : path.join(updateFolder, folders.tasks), + themeImport : path.join(updateFolder, folders.themeImport), + definition : path.join(currentConfig.paths.source.definitions), + site : path.join(currentConfig.paths.source.site), + theme : path.join(currentConfig.paths.source.themes), + defaultTheme : path.join(currentConfig.paths.source.themes, folders.defaultTheme) } ; @@ -107,7 +108,8 @@ module.exports = function () { wrench.copyDirSyncRecursive(source.definitions, updatePaths.definition, settings.wrench.overwrite); console.info('Updating default theme...'); - wrench.copyDirSyncRecursive(source.themes, updatePaths.theme, settings.wrench.overwrite); + wrench.copyDirSyncRecursive(source.themes, updatePaths.theme, settings.wrench.merge); + wrench.copyDirSyncRecursive(source.defaultTheme, updatePaths.defaultTheme, settings.wrench.overwrite); console.info('Updating tasks...'); wrench.copyDirSyncRecursive(source.tasks, updatePaths.tasks, settings.wrench.overwrite); @@ -233,11 +235,12 @@ module.exports = function () { // special install paths only for PM install installPaths = extend(false, {}, installPaths, { - definition : folders.definitions, - lessImport : folders.lessImport, - tasks : folders.tasks, - theme : folders.themes, - themeImport : folders.themeImport + definition : folders.definitions, + lessImport : folders.lessImport, + tasks : folders.tasks, + theme : folders.themes, + defaultTheme : folders.defaultTheme, + themeImport : folders.themeImport }); // add project root to semantic root @@ -269,7 +272,10 @@ module.exports = function () { console.info('Copying UI definitions'); wrench.copyDirSyncRecursive(source.definitions, installPaths.definition, settings.wrench.overwrite); - wrench.copyDirSyncRecursive(source.themes, installPaths.theme, settings.wrench.overwrite); + + console.info('Copying UI themes'); + wrench.copyDirSyncRecursive(source.themes, installPaths.theme, settings.wrench.merge); + wrench.copyDirSyncRecursive(source.defaultTheme, installPaths.defaultTheme, settings.wrench.overwrite); console.info('Copying gulp tasks'); wrench.copyDirSyncRecursive(source.tasks, installPaths.tasks, settings.wrench.overwrite); From 13303c04895179266eec9c0b5cf5c43a501580e9 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:23:03 -0400 Subject: [PATCH 2/7] Fix theme path #2101 --- tasks/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install.js b/tasks/install.js index ec97ee83b..91ecdbb07 100644 --- a/tasks/install.js +++ b/tasks/install.js @@ -239,7 +239,7 @@ module.exports = function () { lessImport : folders.lessImport, tasks : folders.tasks, theme : folders.themes, - defaultTheme : folders.defaultTheme, + defaultTheme : path.join(folders.themes, folders.defaultTheme), themeImport : folders.themeImport }); From 2df4e8232af5c64e175ff2c0439d982ac052d134 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:37:30 -0400 Subject: [PATCH 3/7] #2101 finish fix for npm install --- tasks/config/project/install.js | 3 ++- tasks/install.js | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tasks/config/project/install.js b/tasks/config/project/install.js index c271274c9..10a2881bc 100644 --- a/tasks/config/project/install.js +++ b/tasks/config/project/install.js @@ -228,7 +228,7 @@ module.exports = { siteVariable: /@siteFolder .*\'(.*)/mg }, - // source paths (relative to tasks/install.js ) + // source paths (when installing) source: { config : './semantic.json.example', definitions : './src/definitions', @@ -239,6 +239,7 @@ module.exports = { themeConfig : './src/theme.config.example', themeImport : './src/theme.less', themes : './src/themes', + defaultTheme : './src/themes/default', userGulpFile : './tasks/config/npm/gulpfile.js' }, diff --git a/tasks/install.js b/tasks/install.js index 91ecdbb07..97b1f3a43 100644 --- a/tasks/install.js +++ b/tasks/install.js @@ -64,7 +64,7 @@ module.exports = function () { console.clear(); - /* Test NPM + /* Test NPM install manager = { name : 'NPM', root : path.normalize(__dirname + '/../') @@ -311,7 +311,7 @@ module.exports = function () { else { console.info('Creating site theme folder', installPaths.site); } - wrench.copyDirSyncRecursive(source.site, installPaths.site, settings.wrench.site); + wrench.copyDirSyncRecursive(source.site, installPaths.site, settings.wrench.merge); /*-------------- Theme Config From cec5b9fd1925f5e0dbca4c82aa2acfc2ba2fc198 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:43:27 -0400 Subject: [PATCH 4/7] Version tick 1.11.8 --- RELEASE-NOTES.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index c688996c2..4501d9331 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,9 @@ ## RELEASE NOTES +### Version 1.11.8 - April 13, 2015 + +**Bugs** +- **Build Tools** - Fixed `npm install` without `semantic.json` to merge changes with site theme and packaged themes in a similar fashion to `npm update` ### Version 1.11.7 - April 13, 2015 diff --git a/package.json b/package.json index c1120a017..f3b663ae4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name" : "semantic-ui", - "version" : "1.11.7", + "version" : "1.11.8", "title" : "Semantic UI", "description" : "Semantic empowers designers and developers by creating a shared vocabulary for UI.", "homepage" : "http://www.semantic-ui.com", From 81fe545ecb9506c0751960233f328cb94870869b Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:47:14 -0400 Subject: [PATCH 5/7] Add #2102 to 1.x --- tasks/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/build.js b/tasks/build.js index cb5e0fdbd..7914dcc68 100644 --- a/tasks/build.js +++ b/tasks/build.js @@ -54,7 +54,7 @@ module.exports = function(callback) { console.info('Building Semantic'); if( !install.isSetup() ) { - console.error('Cannot build files. Run "gulp install" to set-up Semantic'); + console.error('Cannot find semantic.json. Run "gulp install" to set-up Semantic'); return; } From 134d0adffe202824ed768e2c51733370b24d1b41 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 13 Apr 2015 16:49:45 -0400 Subject: [PATCH 6/7] Build 1.11.8 --- RELEASE-NOTES.md | 1 + dist/components/accordion.css | 2 +- dist/components/accordion.js | 2 +- dist/components/accordion.min.css | 2 +- dist/components/accordion.min.js | 2 +- dist/components/ad.css | 2 +- dist/components/ad.min.css | 2 +- dist/components/api.js | 2 +- dist/components/api.min.js | 2 +- dist/components/breadcrumb.css | 2 +- dist/components/breadcrumb.min.css | 2 +- dist/components/button.css | 2 +- dist/components/button.min.css | 2 +- dist/components/card.css | 2 +- dist/components/card.min.css | 2 +- dist/components/checkbox.css | 2 +- dist/components/checkbox.js | 2 +- dist/components/checkbox.min.css | 2 +- dist/components/checkbox.min.js | 2 +- dist/components/comment.css | 2 +- dist/components/comment.min.css | 2 +- dist/components/dimmer.css | 2 +- dist/components/dimmer.js | 2 +- dist/components/dimmer.min.css | 2 +- dist/components/dimmer.min.js | 2 +- dist/components/divider.css | 2 +- dist/components/divider.min.css | 2 +- dist/components/dropdown.css | 2 +- dist/components/dropdown.js | 2 +- dist/components/dropdown.min.css | 2 +- dist/components/dropdown.min.js | 2 +- dist/components/feed.css | 2 +- dist/components/feed.min.css | 2 +- dist/components/flag.css | 2 +- dist/components/flag.min.css | 2 +- dist/components/form.css | 2 +- dist/components/form.js | 2 +- dist/components/form.min.css | 2 +- dist/components/form.min.js | 2 +- dist/components/grid.css | 2 +- dist/components/grid.min.css | 2 +- dist/components/header.css | 2 +- dist/components/header.min.css | 2 +- dist/components/icon.css | 2 +- dist/components/icon.min.css | 2 +- dist/components/image.css | 2 +- dist/components/image.min.css | 2 +- dist/components/input.css | 2 +- dist/components/input.min.css | 2 +- dist/components/item.css | 2 +- dist/components/item.min.css | 2 +- dist/components/label.css | 2 +- dist/components/label.min.css | 2 +- dist/components/list.css | 2 +- dist/components/list.min.css | 2 +- dist/components/loader.css | 2 +- dist/components/loader.min.css | 2 +- dist/components/menu.css | 2 +- dist/components/menu.min.css | 2 +- dist/components/message.css | 2 +- dist/components/message.min.css | 2 +- dist/components/modal.css | 2 +- dist/components/modal.js | 2 +- dist/components/modal.min.css | 2 +- dist/components/modal.min.js | 2 +- dist/components/nag.css | 2 +- dist/components/nag.js | 2 +- dist/components/nag.min.css | 2 +- dist/components/nag.min.js | 2 +- dist/components/popup.css | 2 +- dist/components/popup.js | 2 +- dist/components/popup.min.css | 2 +- dist/components/popup.min.js | 2 +- dist/components/progress.css | 2 +- dist/components/progress.js | 2 +- dist/components/progress.min.css | 2 +- dist/components/progress.min.js | 2 +- dist/components/rail.css | 2 +- dist/components/rail.min.css | 2 +- dist/components/rating.css | 2 +- dist/components/rating.js | 2 +- dist/components/rating.min.css | 2 +- dist/components/rating.min.js | 2 +- dist/components/reset.css | 2 +- dist/components/reset.min.css | 2 +- dist/components/reveal.css | 2 +- dist/components/reveal.min.css | 2 +- dist/components/search.css | 2 +- dist/components/search.js | 2 +- dist/components/search.min.css | 2 +- dist/components/search.min.js | 2 +- dist/components/segment.css | 2 +- dist/components/segment.min.css | 2 +- dist/components/shape.css | 2 +- dist/components/shape.js | 2 +- dist/components/shape.min.css | 2 +- dist/components/shape.min.js | 2 +- dist/components/sidebar.css | 2 +- dist/components/sidebar.js | 2 +- dist/components/sidebar.min.css | 2 +- dist/components/sidebar.min.js | 2 +- dist/components/site.js | 2 +- dist/components/site.min.js | 2 +- dist/components/state.js | 2 +- dist/components/state.min.js | 2 +- dist/components/statistic.css | 2 +- dist/components/statistic.min.css | 2 +- dist/components/step.css | 2 +- dist/components/step.min.css | 2 +- dist/components/sticky.css | 2 +- dist/components/sticky.js | 2 +- dist/components/sticky.min.css | 2 +- dist/components/sticky.min.js | 2 +- dist/components/tab.css | 2 +- dist/components/tab.js | 2 +- dist/components/tab.min.css | 2 +- dist/components/tab.min.js | 2 +- dist/components/table.css | 2 +- dist/components/table.min.css | 2 +- dist/components/transition.css | 2 +- dist/components/transition.js | 2 +- dist/components/transition.min.css | 2 +- dist/components/transition.min.js | 2 +- dist/components/video.css | 2 +- dist/components/video.js | 2 +- dist/components/video.min.css | 2 +- dist/components/video.min.js | 2 +- dist/components/visibility.js | 2 +- dist/components/visibility.min.js | 2 +- dist/semantic.css | 92 +++++++++++++++--------------- dist/semantic.js | 46 +++++++-------- dist/semantic.min.css | 2 +- dist/semantic.min.js | 2 +- 133 files changed, 200 insertions(+), 199 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 4501d9331..f30152b91 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -4,6 +4,7 @@ **Bugs** - **Build Tools** - Fixed `npm install` without `semantic.json` to merge changes with site theme and packaged themes in a similar fashion to `npm update` +- **Build** - `gulp build` now properly warns against missing `semantic.json` **Thanks @rudyrk** ### Version 1.11.7 - April 13, 2015 diff --git a/dist/components/accordion.css b/dist/components/accordion.css index 20acf4ade..fb9abd39e 100755 --- a/dist/components/accordion.css +++ b/dist/components/accordion.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/accordion.js b/dist/components/accordion.js index 51f170b7c..ef08f5e46 100644 --- a/dist/components/accordion.js +++ b/dist/components/accordion.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/accordion.min.css b/dist/components/accordion.min.css index f86bad466..04a4a2c71 100755 --- a/dist/components/accordion.min.css +++ b/dist/components/accordion.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/accordion.min.js b/dist/components/accordion.min.js index dc2b40a59..b8710b63b 100644 --- a/dist/components/accordion.min.js +++ b/dist/components/accordion.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/ad.css b/dist/components/ad.css index 31dc74698..770a80a8c 100644 --- a/dist/components/ad.css +++ b/dist/components/ad.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Ad + * # Semantic UI 1.11.8 - Ad * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/ad.min.css b/dist/components/ad.min.css index f06308146..a68b78c04 100644 --- a/dist/components/ad.min.css +++ b/dist/components/ad.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Ad + * # Semantic UI 1.11.8 - Ad * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/api.js b/dist/components/api.js index 50461b361..53b095449 100644 --- a/dist/components/api.js +++ b/dist/components/api.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - API + * # Semantic UI 1.11.8 - API * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/api.min.js b/dist/components/api.min.js index e74ccc8fe..012406a0a 100644 --- a/dist/components/api.min.js +++ b/dist/components/api.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - API + * # Semantic UI 1.11.8 - API * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/breadcrumb.css b/dist/components/breadcrumb.css index 4b5ff0adc..51ac3be70 100755 --- a/dist/components/breadcrumb.css +++ b/dist/components/breadcrumb.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Breadcrumb + * # Semantic UI 1.11.8 - Breadcrumb * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/breadcrumb.min.css b/dist/components/breadcrumb.min.css index 58fe7e2e2..1157bb968 100755 --- a/dist/components/breadcrumb.min.css +++ b/dist/components/breadcrumb.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Breadcrumb + * # Semantic UI 1.11.8 - Breadcrumb * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/button.css b/dist/components/button.css index 887b39acd..f619ebe95 100755 --- a/dist/components/button.css +++ b/dist/components/button.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Button + * # Semantic UI 1.11.8 - Button * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/button.min.css b/dist/components/button.min.css index 672c355b5..9f28fe72a 100755 --- a/dist/components/button.min.css +++ b/dist/components/button.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Button + * # Semantic UI 1.11.8 - Button * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/card.css b/dist/components/card.css index 5a47980b7..89542668f 100755 --- a/dist/components/card.css +++ b/dist/components/card.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/card.min.css b/dist/components/card.min.css index 4c8ff115e..ba53adfc1 100755 --- a/dist/components/card.min.css +++ b/dist/components/card.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/checkbox.css b/dist/components/checkbox.css index a28c7b6b5..7d205c042 100755 --- a/dist/components/checkbox.css +++ b/dist/components/checkbox.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/checkbox.js b/dist/components/checkbox.js index 007a80930..572bea910 100644 --- a/dist/components/checkbox.js +++ b/dist/components/checkbox.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/checkbox.min.css b/dist/components/checkbox.min.css index b44dfa9da..830a29862 100755 --- a/dist/components/checkbox.min.css +++ b/dist/components/checkbox.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/checkbox.min.js b/dist/components/checkbox.min.js index 8279e6751..40f52bffc 100644 --- a/dist/components/checkbox.min.js +++ b/dist/components/checkbox.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/comment.css b/dist/components/comment.css index 2760629a1..88a4bce40 100755 --- a/dist/components/comment.css +++ b/dist/components/comment.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Comment + * # Semantic UI 1.11.8 - Comment * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/comment.min.css b/dist/components/comment.min.css index d7ca22f73..eec1b829b 100755 --- a/dist/components/comment.min.css +++ b/dist/components/comment.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Comment + * # Semantic UI 1.11.8 - Comment * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dimmer.css b/dist/components/dimmer.css index 4d79691c3..f7083d0f5 100755 --- a/dist/components/dimmer.css +++ b/dist/components/dimmer.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dimmer.js b/dist/components/dimmer.js index 699d32791..5f6fb443d 100644 --- a/dist/components/dimmer.js +++ b/dist/components/dimmer.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dimmer.min.css b/dist/components/dimmer.min.css index 9e579777c..72a7d0dce 100755 --- a/dist/components/dimmer.min.css +++ b/dist/components/dimmer.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dimmer.min.js b/dist/components/dimmer.min.js index 5479b0e21..a49caf645 100644 --- a/dist/components/dimmer.min.js +++ b/dist/components/dimmer.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/divider.css b/dist/components/divider.css index 6b162c507..478ee2528 100755 --- a/dist/components/divider.css +++ b/dist/components/divider.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Divider + * # Semantic UI 1.11.8 - Divider * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/divider.min.css b/dist/components/divider.min.css index b8eaf507d..ad3aa6a6b 100755 --- a/dist/components/divider.min.css +++ b/dist/components/divider.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Divider + * # Semantic UI 1.11.8 - Divider * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dropdown.css b/dist/components/dropdown.css index 11126e28c..8896498e7 100755 --- a/dist/components/dropdown.css +++ b/dist/components/dropdown.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dropdown.js b/dist/components/dropdown.js index c06095278..f841d7d7e 100644 --- a/dist/components/dropdown.js +++ b/dist/components/dropdown.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dropdown.min.css b/dist/components/dropdown.min.css index 3df2de340..e4e9e9598 100755 --- a/dist/components/dropdown.min.css +++ b/dist/components/dropdown.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/dropdown.min.js b/dist/components/dropdown.min.js index 2daeb3d52..887ac5425 100644 --- a/dist/components/dropdown.min.js +++ b/dist/components/dropdown.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/feed.css b/dist/components/feed.css index 2e3019460..c10c4e8e3 100755 --- a/dist/components/feed.css +++ b/dist/components/feed.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Feed + * # Semantic UI 1.11.8 - Feed * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/feed.min.css b/dist/components/feed.min.css index 72635b3e9..1c6e2502d 100755 --- a/dist/components/feed.min.css +++ b/dist/components/feed.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Feed + * # Semantic UI 1.11.8 - Feed * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/flag.css b/dist/components/flag.css index b2684b052..196b21e98 100755 --- a/dist/components/flag.css +++ b/dist/components/flag.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Flag + * # Semantic UI 1.11.8 - Flag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/flag.min.css b/dist/components/flag.min.css index 3416de9c4..235c700da 100755 --- a/dist/components/flag.min.css +++ b/dist/components/flag.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Flag + * # Semantic UI 1.11.8 - Flag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/form.css b/dist/components/form.css index dcbf21f80..10d16b110 100755 --- a/dist/components/form.css +++ b/dist/components/form.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Form + * # Semantic UI 1.11.8 - Form * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/form.js b/dist/components/form.js index 42ac81bae..4394ed481 100644 --- a/dist/components/form.js +++ b/dist/components/form.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Form Validation + * # Semantic UI 1.11.8 - Form Validation * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/form.min.css b/dist/components/form.min.css index 45112a27f..ef6099f3f 100755 --- a/dist/components/form.min.css +++ b/dist/components/form.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Form + * # Semantic UI 1.11.8 - Form * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/form.min.js b/dist/components/form.min.js index a437fad49..51c2fa854 100644 --- a/dist/components/form.min.js +++ b/dist/components/form.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Form Validation + * # Semantic UI 1.11.8 - Form Validation * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/grid.css b/dist/components/grid.css index 487ef4657..290c10b3f 100755 --- a/dist/components/grid.css +++ b/dist/components/grid.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Grid + * # Semantic UI 1.11.8 - Grid * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/grid.min.css b/dist/components/grid.min.css index 6943a36f5..879851095 100755 --- a/dist/components/grid.min.css +++ b/dist/components/grid.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Grid + * # Semantic UI 1.11.8 - Grid * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/header.css b/dist/components/header.css index ac11bb3ea..760a7e80c 100755 --- a/dist/components/header.css +++ b/dist/components/header.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Header + * # Semantic UI 1.11.8 - Header * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/header.min.css b/dist/components/header.min.css index ee455c977..8ebda7782 100755 --- a/dist/components/header.min.css +++ b/dist/components/header.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Header + * # Semantic UI 1.11.8 - Header * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/icon.css b/dist/components/icon.css index ff5fdb7d7..8f4ce35ff 100755 --- a/dist/components/icon.css +++ b/dist/components/icon.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Icon + * # Semantic UI 1.11.8 - Icon * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/icon.min.css b/dist/components/icon.min.css index 0b30857ea..3dbae4c54 100755 --- a/dist/components/icon.min.css +++ b/dist/components/icon.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Icon + * # Semantic UI 1.11.8 - Icon * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/image.css b/dist/components/image.css index 03632c513..f415f2f3f 100755 --- a/dist/components/image.css +++ b/dist/components/image.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Image + * # Semantic UI 1.11.8 - Image * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/image.min.css b/dist/components/image.min.css index e627df578..35c1d14dc 100755 --- a/dist/components/image.min.css +++ b/dist/components/image.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Image + * # Semantic UI 1.11.8 - Image * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/input.css b/dist/components/input.css index c62a04baf..588532302 100755 --- a/dist/components/input.css +++ b/dist/components/input.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Input + * # Semantic UI 1.11.8 - Input * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/input.min.css b/dist/components/input.min.css index 34debfa4b..5d83202a8 100755 --- a/dist/components/input.min.css +++ b/dist/components/input.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Input + * # Semantic UI 1.11.8 - Input * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/item.css b/dist/components/item.css index 2047319db..44c4f6946 100755 --- a/dist/components/item.css +++ b/dist/components/item.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/item.min.css b/dist/components/item.min.css index 7a3d4dcdf..cfe0371da 100755 --- a/dist/components/item.min.css +++ b/dist/components/item.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/label.css b/dist/components/label.css index 6e2f8a8ce..a81e3035b 100755 --- a/dist/components/label.css +++ b/dist/components/label.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Label + * # Semantic UI 1.11.8 - Label * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/label.min.css b/dist/components/label.min.css index 0778b0f42..d7f1ff3d3 100755 --- a/dist/components/label.min.css +++ b/dist/components/label.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Label + * # Semantic UI 1.11.8 - Label * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/list.css b/dist/components/list.css index 4edab1cd1..ea466af9c 100755 --- a/dist/components/list.css +++ b/dist/components/list.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - List + * # Semantic UI 1.11.8 - List * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/list.min.css b/dist/components/list.min.css index fa9d39322..afebc9d1d 100755 --- a/dist/components/list.min.css +++ b/dist/components/list.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - List + * # Semantic UI 1.11.8 - List * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/loader.css b/dist/components/loader.css index 0a8b48093..891663326 100755 --- a/dist/components/loader.css +++ b/dist/components/loader.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Loader + * # Semantic UI 1.11.8 - Loader * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/loader.min.css b/dist/components/loader.min.css index 28c2b2981..e9f0b2425 100755 --- a/dist/components/loader.min.css +++ b/dist/components/loader.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Loader + * # Semantic UI 1.11.8 - Loader * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/menu.css b/dist/components/menu.css index a437d1e94..6e1f4db9b 100755 --- a/dist/components/menu.css +++ b/dist/components/menu.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Menu + * # Semantic UI 1.11.8 - Menu * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/menu.min.css b/dist/components/menu.min.css index a1fe7137f..00b25d750 100755 --- a/dist/components/menu.min.css +++ b/dist/components/menu.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Menu + * # Semantic UI 1.11.8 - Menu * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/message.css b/dist/components/message.css index e4ba0fcdc..6828f7a62 100755 --- a/dist/components/message.css +++ b/dist/components/message.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Message + * # Semantic UI 1.11.8 - Message * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/message.min.css b/dist/components/message.min.css index f4634e5f1..8aaff4eff 100755 --- a/dist/components/message.min.css +++ b/dist/components/message.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Message + * # Semantic UI 1.11.8 - Message * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/modal.css b/dist/components/modal.css index d62321cb9..3e8d0078e 100755 --- a/dist/components/modal.css +++ b/dist/components/modal.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/modal.js b/dist/components/modal.js index 4c0d2a90e..987eb2036 100644 --- a/dist/components/modal.js +++ b/dist/components/modal.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/modal.min.css b/dist/components/modal.min.css index 46c1dcf53..c2d6f94a8 100755 --- a/dist/components/modal.min.css +++ b/dist/components/modal.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/modal.min.js b/dist/components/modal.min.js index 00e186456..cd83a2d2f 100644 --- a/dist/components/modal.min.js +++ b/dist/components/modal.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/nag.css b/dist/components/nag.css index 376a739bd..c31bd5cc0 100755 --- a/dist/components/nag.css +++ b/dist/components/nag.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/nag.js b/dist/components/nag.js index 98a50afe7..844a36486 100644 --- a/dist/components/nag.js +++ b/dist/components/nag.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/nag.min.css b/dist/components/nag.min.css index 5406406a3..ab2a97b2d 100755 --- a/dist/components/nag.min.css +++ b/dist/components/nag.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/nag.min.js b/dist/components/nag.min.js index 4370a910a..bee8c50e7 100644 --- a/dist/components/nag.min.js +++ b/dist/components/nag.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/popup.css b/dist/components/popup.css index 26adb4657..b705d95fe 100755 --- a/dist/components/popup.css +++ b/dist/components/popup.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/popup.js b/dist/components/popup.js index 486063329..62a702618 100644 --- a/dist/components/popup.js +++ b/dist/components/popup.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/popup.min.css b/dist/components/popup.min.css index c077e4bd7..cab326589 100755 --- a/dist/components/popup.min.css +++ b/dist/components/popup.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/popup.min.js b/dist/components/popup.min.js index ab3d8f5da..d4deda588 100644 --- a/dist/components/popup.min.js +++ b/dist/components/popup.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/progress.css b/dist/components/progress.css index 1ba1498e0..02ae4a4fb 100755 --- a/dist/components/progress.css +++ b/dist/components/progress.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Progress Bar + * # Semantic UI 1.11.8 - Progress Bar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/progress.js b/dist/components/progress.js index 8c62a5c17..ead0ef663 100644 --- a/dist/components/progress.js +++ b/dist/components/progress.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Progress + * # Semantic UI 1.11.8 - Progress * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/progress.min.css b/dist/components/progress.min.css index f4cfd06a8..390619804 100755 --- a/dist/components/progress.min.css +++ b/dist/components/progress.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Progress Bar + * # Semantic UI 1.11.8 - Progress Bar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/progress.min.js b/dist/components/progress.min.js index 9ff3652e3..7bc381bb1 100644 --- a/dist/components/progress.min.js +++ b/dist/components/progress.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Progress + * # Semantic UI 1.11.8 - Progress * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rail.css b/dist/components/rail.css index ffa00f604..f6887b0d1 100755 --- a/dist/components/rail.css +++ b/dist/components/rail.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rail + * # Semantic UI 1.11.8 - Rail * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rail.min.css b/dist/components/rail.min.css index 7bd9ad3cd..08f10e95c 100755 --- a/dist/components/rail.min.css +++ b/dist/components/rail.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rail + * # Semantic UI 1.11.8 - Rail * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rating.css b/dist/components/rating.css index 8d86af87b..645fff264 100755 --- a/dist/components/rating.css +++ b/dist/components/rating.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rating.js b/dist/components/rating.js index a00ad233b..098743fb7 100644 --- a/dist/components/rating.js +++ b/dist/components/rating.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rating.min.css b/dist/components/rating.min.css index a5141be71..063978d6c 100755 --- a/dist/components/rating.min.css +++ b/dist/components/rating.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/rating.min.js b/dist/components/rating.min.js index a2a1084e3..c1dd8995d 100644 --- a/dist/components/rating.min.js +++ b/dist/components/rating.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/reset.css b/dist/components/reset.css index e8ccaa275..8703b1f24 100755 --- a/dist/components/reset.css +++ b/dist/components/reset.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Reset + * # Semantic UI 1.11.8 - Reset * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/reset.min.css b/dist/components/reset.min.css index 1837ed9fa..c0e582a3f 100755 --- a/dist/components/reset.min.css +++ b/dist/components/reset.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Reset + * # Semantic UI 1.11.8 - Reset * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/reveal.css b/dist/components/reveal.css index 91665cbeb..f73db0e4d 100755 --- a/dist/components/reveal.css +++ b/dist/components/reveal.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Reveal + * # Semantic UI 1.11.8 - Reveal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/reveal.min.css b/dist/components/reveal.min.css index 95bd9f475..4afac5caa 100755 --- a/dist/components/reveal.min.css +++ b/dist/components/reveal.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Reveal + * # Semantic UI 1.11.8 - Reveal * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/search.css b/dist/components/search.css index ed0e5e553..a35a021fc 100755 --- a/dist/components/search.css +++ b/dist/components/search.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/search.js b/dist/components/search.js index a0137c636..b1e5c240e 100644 --- a/dist/components/search.js +++ b/dist/components/search.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/search.min.css b/dist/components/search.min.css index a665da759..c46e69ad4 100755 --- a/dist/components/search.min.css +++ b/dist/components/search.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/search.min.js b/dist/components/search.min.js index cb8566c8b..1f8393741 100644 --- a/dist/components/search.min.js +++ b/dist/components/search.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/segment.css b/dist/components/segment.css index 1789837a6..b1b00a906 100755 --- a/dist/components/segment.css +++ b/dist/components/segment.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Segment + * # Semantic UI 1.11.8 - Segment * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/segment.min.css b/dist/components/segment.min.css index 734aa4ff7..bff61c276 100755 --- a/dist/components/segment.min.css +++ b/dist/components/segment.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Segment + * # Semantic UI 1.11.8 - Segment * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/shape.css b/dist/components/shape.css index a1570544f..baba4c801 100755 --- a/dist/components/shape.css +++ b/dist/components/shape.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/shape.js b/dist/components/shape.js index 2f09be623..b8193bddc 100644 --- a/dist/components/shape.js +++ b/dist/components/shape.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/shape.min.css b/dist/components/shape.min.css index 626fb1fb9..0ee636bc5 100755 --- a/dist/components/shape.min.css +++ b/dist/components/shape.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/shape.min.js b/dist/components/shape.min.js index fdadd0734..d40ee3a97 100644 --- a/dist/components/shape.min.js +++ b/dist/components/shape.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sidebar.css b/dist/components/sidebar.css index 87330b81f..7c9833756 100755 --- a/dist/components/sidebar.css +++ b/dist/components/sidebar.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sidebar.js b/dist/components/sidebar.js index a5ba9f6e8..8ada060ef 100644 --- a/dist/components/sidebar.js +++ b/dist/components/sidebar.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sidebar.min.css b/dist/components/sidebar.min.css index 9fd1a120e..8df098425 100755 --- a/dist/components/sidebar.min.css +++ b/dist/components/sidebar.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sidebar.min.js b/dist/components/sidebar.min.js index 5105ae3e5..1b31c971b 100644 --- a/dist/components/sidebar.min.js +++ b/dist/components/sidebar.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/site.js b/dist/components/site.js index 81c826d40..8c317dde9 100644 --- a/dist/components/site.js +++ b/dist/components/site.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Site + * # Semantic UI 1.11.8 - Site * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/site.min.js b/dist/components/site.min.js index 93b27dc4a..e28ee60c8 100644 --- a/dist/components/site.min.js +++ b/dist/components/site.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Site + * # Semantic UI 1.11.8 - Site * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/state.js b/dist/components/state.js index 881cd9eb8..88618c97c 100644 --- a/dist/components/state.js +++ b/dist/components/state.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - State + * # Semantic UI 1.11.8 - State * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/state.min.js b/dist/components/state.min.js index 121057410..0f24495f1 100644 --- a/dist/components/state.min.js +++ b/dist/components/state.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - State + * # Semantic UI 1.11.8 - State * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/statistic.css b/dist/components/statistic.css index 3a8fb2c40..4929a2ec8 100755 --- a/dist/components/statistic.css +++ b/dist/components/statistic.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Statistic + * # Semantic UI 1.11.8 - Statistic * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/statistic.min.css b/dist/components/statistic.min.css index c8ce2aa26..358353b64 100755 --- a/dist/components/statistic.min.css +++ b/dist/components/statistic.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Statistic + * # Semantic UI 1.11.8 - Statistic * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/step.css b/dist/components/step.css index cd4e66cc3..d6a95ecd6 100755 --- a/dist/components/step.css +++ b/dist/components/step.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Step + * # Semantic UI 1.11.8 - Step * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/step.min.css b/dist/components/step.min.css index 34e06d591..0fc8e0997 100755 --- a/dist/components/step.min.css +++ b/dist/components/step.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Step + * # Semantic UI 1.11.8 - Step * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sticky.css b/dist/components/sticky.css index f8b5862fb..081838eff 100755 --- a/dist/components/sticky.css +++ b/dist/components/sticky.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sticky.js b/dist/components/sticky.js index d512b4bd2..7ee26157c 100644 --- a/dist/components/sticky.js +++ b/dist/components/sticky.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sticky.min.css b/dist/components/sticky.min.css index 61d13e437..57f9b9efb 100755 --- a/dist/components/sticky.min.css +++ b/dist/components/sticky.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/sticky.min.js b/dist/components/sticky.min.js index 70cc174c3..a82d1473d 100644 --- a/dist/components/sticky.min.js +++ b/dist/components/sticky.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/tab.css b/dist/components/tab.css index 025a99129..b6edf6b49 100755 --- a/dist/components/tab.css +++ b/dist/components/tab.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/tab.js b/dist/components/tab.js index 612631676..996260ccd 100644 --- a/dist/components/tab.js +++ b/dist/components/tab.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/tab.min.css b/dist/components/tab.min.css index 60b46229b..1883ae078 100755 --- a/dist/components/tab.min.css +++ b/dist/components/tab.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/tab.min.js b/dist/components/tab.min.js index d8473ba5b..e9d2b422c 100644 --- a/dist/components/tab.min.js +++ b/dist/components/tab.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/table.css b/dist/components/table.css index 6728d8af8..d73fd9454 100755 --- a/dist/components/table.css +++ b/dist/components/table.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Table + * # Semantic UI 1.11.8 - Table * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/table.min.css b/dist/components/table.min.css index 9d5042d9e..0474d06d1 100755 --- a/dist/components/table.min.css +++ b/dist/components/table.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Table + * # Semantic UI 1.11.8 - Table * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/transition.css b/dist/components/transition.css index 993401a6f..f08d86387 100755 --- a/dist/components/transition.css +++ b/dist/components/transition.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/transition.js b/dist/components/transition.js index 4d6c757ef..e07531b65 100644 --- a/dist/components/transition.js +++ b/dist/components/transition.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/transition.min.css b/dist/components/transition.min.css index b490736cf..e6cc250a4 100755 --- a/dist/components/transition.min.css +++ b/dist/components/transition.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/transition.min.js b/dist/components/transition.min.js index cbb2972f4..6008902ed 100644 --- a/dist/components/transition.min.js +++ b/dist/components/transition.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/video.css b/dist/components/video.css index fb239eeb9..626cf6428 100755 --- a/dist/components/video.css +++ b/dist/components/video.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/video.js b/dist/components/video.js index 6ae8f7193..e86e2c5d5 100644 --- a/dist/components/video.js +++ b/dist/components/video.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/video.min.css b/dist/components/video.min.css index e22746d32..73895170b 100755 --- a/dist/components/video.min.css +++ b/dist/components/video.min.css @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/video.min.js b/dist/components/video.min.js index 339e164cd..7297878cd 100644 --- a/dist/components/video.min.js +++ b/dist/components/video.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/visibility.js b/dist/components/visibility.js index bef37faae..c75bb8e8e 100644 --- a/dist/components/visibility.js +++ b/dist/components/visibility.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Visibility + * # Semantic UI 1.11.8 - Visibility * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/components/visibility.min.js b/dist/components/visibility.min.js index ff26760d4..b1083d3f3 100644 --- a/dist/components/visibility.min.js +++ b/dist/components/visibility.min.js @@ -1,5 +1,5 @@ /*! - * # Semantic UI 1.11.7 - Visibility + * # Semantic UI 1.11.8 - Visibility * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/semantic.css b/dist/semantic.css index 2f059ea3f..74fe59393 100755 --- a/dist/semantic.css +++ b/dist/semantic.css @@ -1,5 +1,5 @@ /* - * # Semantic UI - 1.11.7 + * # Semantic UI - 1.11.8 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * @@ -10,7 +10,7 @@ */ @import 'https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin'; /*! - * # Semantic UI 1.11.7 - Reset + * # Semantic UI 1.11.8 - Reset * http://github.com/semantic-org/semantic-ui/ * * @@ -668,7 +668,7 @@ input::selection { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Button + * # Semantic UI 1.11.8 - Button * http://github.com/semantic-org/semantic-ui/ * * @@ -3389,7 +3389,7 @@ input::selection { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Divider + * # Semantic UI 1.11.8 - Divider * http://github.com/semantic-org/semantic-ui/ * * @@ -3634,7 +3634,7 @@ input::selection { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Flag + * # Semantic UI 1.11.8 - Flag * http://github.com/semantic-org/semantic-ui/ * * @@ -4896,7 +4896,7 @@ i.flag.zimbabwe:before { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Header + * # Semantic UI 1.11.8 - Header * http://github.com/semantic-org/semantic-ui/ * * @@ -5584,7 +5584,7 @@ a.ui.inverted.yellow.header:hover { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Icon + * # Semantic UI 1.11.8 - Icon * http://github.com/semantic-org/semantic-ui/ * * @@ -8764,7 +8764,7 @@ i.icon.bed:before { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Image + * # Semantic UI 1.11.8 - Image * http://github.com/semantic-org/semantic-ui/ * * @@ -9060,7 +9060,7 @@ img.ui.bordered.image { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Input + * # Semantic UI 1.11.8 - Input * http://github.com/semantic-org/semantic-ui/ * * @@ -9542,7 +9542,7 @@ img.ui.bordered.image { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Label + * # Semantic UI 1.11.8 - Label * http://github.com/semantic-org/semantic-ui/ * * @@ -10597,7 +10597,7 @@ a.ui.yellow.label:hover:before { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - List + * # Semantic UI 1.11.8 - List * http://github.com/semantic-org/semantic-ui/ * * @@ -11588,7 +11588,7 @@ ol.ui.horizontal.list li:before, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Loader + * # Semantic UI 1.11.8 - Loader * http://github.com/semantic-org/semantic-ui/ * * @@ -11891,7 +11891,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Rail + * # Semantic UI 1.11.8 - Rail * http://github.com/semantic-org/semantic-ui/ * * @@ -12015,7 +12015,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Reveal + * # Semantic UI 1.11.8 - Reveal * http://github.com/semantic-org/semantic-ui/ * * @@ -12331,7 +12331,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Segment + * # Semantic UI 1.11.8 - Segment * http://github.com/semantic-org/semantic-ui/ * * @@ -13034,7 +13034,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Step + * # Semantic UI 1.11.8 - Step * http://github.com/semantic-org/semantic-ui/ * * @@ -13507,7 +13507,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Breadcrumb + * # Semantic UI 1.11.8 - Breadcrumb * http://github.com/semantic-org/semantic-ui/ * * @@ -13638,7 +13638,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Form + * # Semantic UI 1.11.8 - Form * http://github.com/semantic-org/semantic-ui/ * * @@ -14608,7 +14608,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Grid + * # Semantic UI 1.11.8 - Grid * http://github.com/semantic-org/semantic-ui/ * * @@ -16717,7 +16717,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Menu + * # Semantic UI 1.11.8 - Menu * http://github.com/semantic-org/semantic-ui/ * * @@ -18517,7 +18517,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Message + * # Semantic UI 1.11.8 - Message * http://github.com/semantic-org/semantic-ui/ * * @@ -18993,7 +18993,7 @@ ol.ui.horizontal.list li:before, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Table + * # Semantic UI 1.11.8 - Table * http://github.com/semantic-org/semantic-ui/ * * @@ -20135,7 +20135,7 @@ ol.ui.horizontal.list li:before, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Ad + * # Semantic UI 1.11.8 - Ad * http://github.com/semantic-org/semantic-ui/ * * @@ -20425,7 +20425,7 @@ ol.ui.horizontal.list li:before, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * @@ -21444,7 +21444,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Comment + * # Semantic UI 1.11.8 - Comment * http://github.com/semantic-org/semantic-ui/ * * @@ -21714,7 +21714,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Feed + * # Semantic UI 1.11.8 - Feed * http://github.com/semantic-org/semantic-ui/ * * @@ -22009,7 +22009,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Item + * # Semantic UI 1.11.8 - Item * http://github.com/semantic-org/semantic-ui/ * * @@ -22500,7 +22500,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Statistic + * # Semantic UI 1.11.8 - Statistic * http://github.com/semantic-org/semantic-ui/ * * @@ -22947,7 +22947,7 @@ a.ui.card:hover, User Variable Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * @@ -23213,7 +23213,7 @@ a.ui.card:hover, User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * @@ -23743,7 +23743,7 @@ a.ui.card:hover, Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * @@ -23935,7 +23935,7 @@ body.dimmed.dimmable > :not(.dimmer) { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * @@ -25134,7 +25134,7 @@ select.ui.dropdown { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * @@ -25604,7 +25604,7 @@ select.ui.dropdown { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * @@ -25750,7 +25750,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * @@ -26052,7 +26052,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Progress Bar + * # Semantic UI 1.11.8 - Progress Bar * http://github.com/semantic-org/semantic-ui/ * * @@ -26572,7 +26572,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * @@ -26841,7 +26841,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * @@ -27183,7 +27183,7 @@ a.ui.nag { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * @@ -27340,7 +27340,7 @@ a.ui.nag { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * @@ -28024,7 +28024,7 @@ html.ios { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * @@ -28099,7 +28099,7 @@ html.ios { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * @@ -28187,7 +28187,7 @@ html.ios { User Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Table + * # Semantic UI 1.11.8 - Table * http://github.com/semantic-org/semantic-ui/ * * @@ -29329,7 +29329,7 @@ html.ios { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * @@ -31592,7 +31592,7 @@ html.ios { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * @@ -31715,7 +31715,7 @@ html.ios { Site Overrides *******************************/ /*! - * # Semantic UI 1.11.7 - Form + * # Semantic UI 1.11.8 - Form * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/semantic.js b/dist/semantic.js index 21a112601..794f6459c 100644 --- a/dist/semantic.js +++ b/dist/semantic.js @@ -1,5 +1,5 @@ /* - * # Semantic UI - 1.11.7 + * # Semantic UI - 1.11.8 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * @@ -9,7 +9,7 @@ * */ /*! - * # Semantic UI 1.11.7 - Site + * # Semantic UI 1.11.8 - Site * http://github.com/semantic-org/semantic-ui/ * * @@ -496,7 +496,7 @@ $.extend($.expr[ ":" ], { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Form Validation + * # Semantic UI 1.11.8 - Form Validation * http://github.com/semantic-org/semantic-ui/ * * @@ -1615,7 +1615,7 @@ $.fn.form.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Accordion + * # Semantic UI 1.11.8 - Accordion * http://github.com/semantic-org/semantic-ui/ * * @@ -2194,7 +2194,7 @@ $.extend( $.easing, { /*! - * # Semantic UI 1.11.7 - Checkbox + * # Semantic UI 1.11.8 - Checkbox * http://github.com/semantic-org/semantic-ui/ * * @@ -2704,7 +2704,7 @@ $.fn.checkbox.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Dimmer + * # Semantic UI 1.11.8 - Dimmer * http://github.com/semantic-org/semantic-ui/ * * @@ -3373,7 +3373,7 @@ $.fn.dimmer.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Dropdown + * # Semantic UI 1.11.8 - Dropdown * http://github.com/semantic-org/semantic-ui/ * * @@ -5177,7 +5177,7 @@ $.extend( $.easing, { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Modal + * # Semantic UI 1.11.8 - Modal * http://github.com/semantic-org/semantic-ui/ * * @@ -6038,7 +6038,7 @@ $.fn.modal.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Nag + * # Semantic UI 1.11.8 - Nag * http://github.com/semantic-org/semantic-ui/ * * @@ -6516,7 +6516,7 @@ $.fn.nag.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Popup + * # Semantic UI 1.11.8 - Popup * http://github.com/semantic-org/semantic-ui/ * * @@ -7741,7 +7741,7 @@ $.extend( $.easing, { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Progress + * # Semantic UI 1.11.8 - Progress * http://github.com/semantic-org/semantic-ui/ * * @@ -8526,7 +8526,7 @@ $.fn.progress.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Rating + * # Semantic UI 1.11.8 - Rating * http://github.com/semantic-org/semantic-ui/ * * @@ -8978,7 +8978,7 @@ $.fn.rating.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Search + * # Semantic UI 1.11.8 - Search * http://github.com/semantic-org/semantic-ui/ * * @@ -10075,7 +10075,7 @@ $.fn.search.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Shape + * # Semantic UI 1.11.8 - Shape * http://github.com/semantic-org/semantic-ui/ * * @@ -10905,7 +10905,7 @@ $.fn.shape.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Sidebar + * # Semantic UI 1.11.8 - Sidebar * http://github.com/semantic-org/semantic-ui/ * * @@ -11995,7 +11995,7 @@ $.extend( $.easing, { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Sticky + * # Semantic UI 1.11.8 - Sticky * http://github.com/semantic-org/semantic-ui/ * * @@ -12787,7 +12787,7 @@ $.fn.sticky.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Tab + * # Semantic UI 1.11.8 - Tab * http://github.com/semantic-org/semantic-ui/ * * @@ -13589,7 +13589,7 @@ $.fn.tab.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Transition + * # Semantic UI 1.11.8 - Transition * http://github.com/semantic-org/semantic-ui/ * * @@ -14628,7 +14628,7 @@ $.fn.transition.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Video + * # Semantic UI 1.11.8 - Video * http://github.com/semantic-org/semantic-ui/ * * @@ -15169,7 +15169,7 @@ $.fn.video.settings.templates = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - API + * # Semantic UI 1.11.8 - API * http://github.com/semantic-org/semantic-ui/ * * @@ -16040,7 +16040,7 @@ $.api.settings.api = {}; })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Form Validation + * # Semantic UI 1.11.8 - Form Validation * http://github.com/semantic-org/semantic-ui/ * * @@ -17159,7 +17159,7 @@ $.fn.form.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - State + * # Semantic UI 1.11.8 - State * http://github.com/semantic-org/semantic-ui/ * * @@ -17855,7 +17855,7 @@ $.fn.state.settings = { })( jQuery, window , document ); /*! - * # Semantic UI 1.11.7 - Visibility + * # Semantic UI 1.11.8 - Visibility * http://github.com/semantic-org/semantic-ui/ * * diff --git a/dist/semantic.min.css b/dist/semantic.min.css index 84152fda3..73b815569 100755 --- a/dist/semantic.min.css +++ b/dist/semantic.min.css @@ -1,5 +1,5 @@ /* - * # Semantic UI - 1.11.7 + * # Semantic UI - 1.11.8 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * diff --git a/dist/semantic.min.js b/dist/semantic.min.js index f5a181ee0..813ffce26 100644 --- a/dist/semantic.min.js +++ b/dist/semantic.min.js @@ -1,5 +1,5 @@ /* - * # Semantic UI - 1.11.7 + * # Semantic UI - 1.11.8 * https://github.com/Semantic-Org/Semantic-UI * http://www.semantic-ui.com/ * From 7b744c33bb60684cbf56707f38eac67094b64184 Mon Sep 17 00:00:00 2001 From: jlukic Date: Thu, 16 Apr 2015 11:47:46 -0400 Subject: [PATCH 7/7] Fixes #2122 Component array in semantic.json (or defualts) does not remove duplicates --- tasks/config/project/config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tasks/config/project/config.js b/tasks/config/project/config.js index dd956d7c0..3d0fecf45 100644 --- a/tasks/config/project/config.js +++ b/tasks/config/project/config.js @@ -119,6 +119,13 @@ module.exports = { config.globs = {}; } + // remove duplicates from component array + if(config.components instanceof Array) { + config.components = config.components.filter(function(component, index) { + return config.components.indexOf(component) == index; + }); + } + // takes component object and creates file glob matching selected components config.globs.components = (typeof config.components == 'object') ? (config.components.length > 1)