chore(release): v3.0.0
This commit is contained in:
+34
-7
@@ -1,18 +1,45 @@
|
|||||||
# This file is for unifying the coding style for different editors and IDEs
|
# This project uses EditorConfig for setting code formatting options: http://EditorConfig.org
|
||||||
# editorconfig.org
|
|
||||||
|
|
||||||
root = true
|
root = true
|
||||||
|
|
||||||
|
# Default settings for all files
|
||||||
[*]
|
[*]
|
||||||
end_of_line = lf
|
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = tab
|
||||||
|
tab_width = 4
|
||||||
|
max_line_length = 120
|
||||||
|
|
||||||
# Tabs in JS unless otherwise specified
|
spaces_around_operators = true
|
||||||
[**.js]
|
spaces_around_brackets = none
|
||||||
|
curly_bracket_next_line = true
|
||||||
|
indent_brace_style = Allman
|
||||||
|
continuation_indent_size = 4
|
||||||
|
|
||||||
|
[*.{css,less}]
|
||||||
|
curly_bracket_next_line = false
|
||||||
|
continuation_indent_size = 0
|
||||||
|
|
||||||
|
# Formats likely to be pasted into an REPL on a terminal should not use tabs to avoid triggering tab-completion.
|
||||||
|
[*.{sh,bash,sql,psql,pgsql}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
[*.md]
|
[*.{js,json}]
|
||||||
trim_trailing_whitespace = false
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# Special overrides for automatically-generated files
|
||||||
|
[package.json]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# For some formats, trailing whitespace is significant; don't strip it.
|
||||||
|
[*.{md,diff,patch}]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
<a name="3.0.0"></a>
|
||||||
|
# [3.0.0](https://github.com/morgul/ui-bootstrap4/compare/3.0.0-beta.4...3.0.0) (2017-12-11)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a name="3.0.0-beta.4"></a>
|
<a name="3.0.0-beta.4"></a>
|
||||||
# [3.0.0-beta.4](https://github.com/morgul/ui-bootstrap4/compare/2.5.0...3.0.0-beta.4) (2017-12-10)
|
# [3.0.0-beta.4](https://github.com/morgul/ui-bootstrap4/compare/2.5.0...3.0.0-beta.4) (2017-12-10)
|
||||||
|
|
||||||
|
|||||||
+526
-461
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
|||||||
* ui-bootstrap4
|
* ui-bootstrap4
|
||||||
* http://morgul.github.io/ui-bootstrap4/
|
* http://morgul.github.io/ui-bootstrap4/
|
||||||
|
|
||||||
* Version: 3.0.0-beta.4 - 2017-12-09
|
* Version: 3.0.0-beta.4 - 2017-12-11
|
||||||
* License: MIT
|
* License: MIT
|
||||||
*/angular.module("ui.bootstrap", ["ui.bootstrap.collapse","ui.bootstrap.tabindex","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.isClass","ui.bootstrap.datepicker","ui.bootstrap.position","ui.bootstrap.datepickerPopup","ui.bootstrap.debounce","ui.bootstrap.multiMap","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.paging","ui.bootstrap.pager","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]);
|
*/angular.module("ui.bootstrap", ["ui.bootstrap.collapse","ui.bootstrap.tabindex","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.isClass","ui.bootstrap.datepicker","ui.bootstrap.position","ui.bootstrap.datepickerPopup","ui.bootstrap.debounce","ui.bootstrap.multiMap","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.paging","ui.bootstrap.pager","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]);
|
||||||
angular.module('ui.bootstrap.collapse', [])
|
angular.module('ui.bootstrap.collapse', [])
|
||||||
@@ -2736,8 +2736,6 @@ angular.module('ui.bootstrap.position', [])
|
|||||||
|
|
||||||
arrowCss[placement[1]] = borderRadius;
|
arrowCss[placement[1]] = borderRadius;
|
||||||
|
|
||||||
console.log('calc CSS:', arrowCss);
|
|
||||||
|
|
||||||
angular.element(arrowElem).css(arrowCss);
|
angular.element(arrowElem).css(arrowCss);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+4
-4
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
|||||||
* ui-bootstrap4
|
* ui-bootstrap4
|
||||||
* http://morgul.github.io/ui-bootstrap4/
|
* http://morgul.github.io/ui-bootstrap4/
|
||||||
|
|
||||||
* Version: 3.0.0-beta.4 - 2017-12-09
|
* Version: 3.0.0-beta.4 - 2017-12-11
|
||||||
* License: MIT
|
* License: MIT
|
||||||
*/angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.collapse","ui.bootstrap.tabindex","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.isClass","ui.bootstrap.datepicker","ui.bootstrap.position","ui.bootstrap.datepickerPopup","ui.bootstrap.debounce","ui.bootstrap.multiMap","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.paging","ui.bootstrap.pager","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]);
|
*/angular.module("ui.bootstrap", ["ui.bootstrap.tpls", "ui.bootstrap.collapse","ui.bootstrap.tabindex","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.isClass","ui.bootstrap.datepicker","ui.bootstrap.position","ui.bootstrap.datepickerPopup","ui.bootstrap.debounce","ui.bootstrap.multiMap","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.paging","ui.bootstrap.pager","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]);
|
||||||
angular.module("ui.bootstrap.tpls", ["uib/template/accordion/accordion-group.html","uib/template/accordion/accordion.html","uib/template/alert/alert.html","uib/template/carousel/carousel.html","uib/template/carousel/slide.html","uib/template/datepicker/datepicker.html","uib/template/datepicker/day.html","uib/template/datepicker/month.html","uib/template/datepicker/year.html","uib/template/datepickerPopup/popup.html","uib/template/modal/window.html","uib/template/pager/pager.html","uib/template/pagination/pagination.html","uib/template/tooltip/tooltip-html-popup.html","uib/template/tooltip/tooltip-popup.html","uib/template/tooltip/tooltip-template-popup.html","uib/template/popover/popover-html.html","uib/template/popover/popover-template.html","uib/template/popover/popover.html","uib/template/progressbar/bar.html","uib/template/progressbar/progress.html","uib/template/progressbar/progressbar.html","uib/template/rating/rating.html","uib/template/tabs/tab.html","uib/template/tabs/tabset.html","uib/template/timepicker/timepicker.html","uib/template/typeahead/typeahead-match.html","uib/template/typeahead/typeahead-popup.html"]);
|
angular.module("ui.bootstrap.tpls", ["uib/template/accordion/accordion-group.html","uib/template/accordion/accordion.html","uib/template/alert/alert.html","uib/template/carousel/carousel.html","uib/template/carousel/slide.html","uib/template/datepicker/datepicker.html","uib/template/datepicker/day.html","uib/template/datepicker/month.html","uib/template/datepicker/year.html","uib/template/datepickerPopup/popup.html","uib/template/modal/window.html","uib/template/pager/pager.html","uib/template/pagination/pagination.html","uib/template/tooltip/tooltip-html-popup.html","uib/template/tooltip/tooltip-popup.html","uib/template/tooltip/tooltip-template-popup.html","uib/template/popover/popover-html.html","uib/template/popover/popover-template.html","uib/template/popover/popover.html","uib/template/progressbar/bar.html","uib/template/progressbar/progress.html","uib/template/progressbar/progressbar.html","uib/template/rating/rating.html","uib/template/tabs/tab.html","uib/template/tabs/tabset.html","uib/template/timepicker/timepicker.html","uib/template/typeahead/typeahead-match.html","uib/template/typeahead/typeahead-popup.html"]);
|
||||||
@@ -2737,8 +2737,6 @@ angular.module('ui.bootstrap.position', [])
|
|||||||
|
|
||||||
arrowCss[placement[1]] = borderRadius;
|
arrowCss[placement[1]] = borderRadius;
|
||||||
|
|
||||||
console.log('calc CSS:', arrowCss);
|
|
||||||
|
|
||||||
angular.element(arrowElem).css(arrowCss);
|
angular.element(arrowElem).css(arrowCss);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
+4
-4
File diff suppressed because one or more lines are too long
+2
-2
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"author": "https://github.com/morgul/ui-bootstrap4/graphs/contributors",
|
"author": "https://github.com/morgul/ui-bootstrap4/graphs/contributors",
|
||||||
"name": "ui-bootstrap4",
|
"name": "ui-bootstrap4",
|
||||||
"version": "3.0.0-beta.4",
|
"version": "3.0.0",
|
||||||
"description": "Native AngularJS (Angular) directives for Bootstrap",
|
"description": "Native AngularJS (Angular) directives for Bootstrap",
|
||||||
"homepage": "http://morgul.github.io/ui-bootstrap4/",
|
"homepage": "http://morgul.github.io/ui-bootstrap4/",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@@ -59,4 +59,4 @@
|
|||||||
"shelljs": "^0.6.0"
|
"shelljs": "^0.6.0"
|
||||||
},
|
},
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user