Skip to content

Commit d2d1b6e

Browse files
committed
Ship v2.0.1
1 parent 1fcba73 commit d2d1b6e

31 files changed

+212
-212
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ $ npm install @coreui/coreui --save
5252
### Yarn
5353

5454
``` bash
55-
$ yarn add @coreui/[email protected].0
55+
$ yarn add @coreui/[email protected].1
5656
```
5757

5858
### Composer
5959

6060
``` bash
61-
$ composer require coreui/coreui:2.0.0
61+
$ composer require coreui/coreui:2.0.1
6262
```
6363

6464
## Usage

dist/css/coreui-standalone.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui-standalone.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/coreui.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/coreui-utilities.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/coreui-utilities.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/coreui.js

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/coreui.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/ajax-load.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/aside-menu.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/sidebar.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/toggle-classes.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/utilities/get-style.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/utilities/hex-to-rgb.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/utilities/hex-to-rgba.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/dist/utilities/rgb-to-hex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/src/ajax-load.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import $ from 'jquery'
22

33
/**
44
* --------------------------------------------------------------------------
5-
* CoreUI (v2.0.0): ajax-load.js
5+
* CoreUI (v2.0.1): ajax-load.js
66
* Licensed under MIT (https://coreui.io/license)
77
* --------------------------------------------------------------------------
88
*/
@@ -16,7 +16,7 @@ const AjaxLoad = (($) => {
1616
*/
1717

1818
const NAME = 'ajaxLoad'
19-
const VERSION = '2.0.0'
19+
const VERSION = '2.0.1'
2020
const DATA_KEY = 'coreui.ajaxLoad'
2121
const JQUERY_NO_CONFLICT = $.fn[NAME]
2222

js/src/aside-menu.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import toggleClasses from './toggle-classes'
33

44
/**
55
* --------------------------------------------------------------------------
6-
* CoreUI (v2.0.0): aside-menu.js
6+
* CoreUI (v2.0.1): aside-menu.js
77
* Licensed under MIT (https://coreui.io/license)
88
* --------------------------------------------------------------------------
99
*/
@@ -16,7 +16,7 @@ const AsideMenu = (($) => {
1616
*/
1717

1818
const NAME = 'aside-menu'
19-
const VERSION = '2.0.0'
19+
const VERSION = '2.0.1'
2020
const DATA_KEY = 'coreui.aside-menu'
2121
const EVENT_KEY = `.${DATA_KEY}`
2222
const DATA_API_KEY = '.data-api'

js/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Sidebar from './sidebar'
55

66
/**
77
* --------------------------------------------------------------------------
8-
* CoreUI (v2.0.0): index.js
8+
* CoreUI (v2.0.1): index.js
99
* Licensed under MIT (https://coreui.io/license)
1010
* --------------------------------------------------------------------------
1111
*/

js/src/sidebar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import toggleClasses from './toggle-classes'
44

55
/**
66
* --------------------------------------------------------------------------
7-
* CoreUI (v2.0.0): sidebar.js
7+
* CoreUI (v2.0.1): sidebar.js
88
* Licensed under MIT (https://coreui.io/license)
99
* --------------------------------------------------------------------------
1010
*/
@@ -17,7 +17,7 @@ const Sidebar = (($) => {
1717
*/
1818

1919
const NAME = 'sidebar'
20-
const VERSION = '2.0.0'
20+
const VERSION = '2.0.1'
2121
const DATA_KEY = 'coreui.sidebar'
2222
const EVENT_KEY = `.${DATA_KEY}`
2323
const DATA_API_KEY = '.data-api'

js/src/toggle-classes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* --------------------------------------------------------------------------
3-
* CoreUI (v2.0.0): toggle-classes.js
3+
* CoreUI (v2.0.1): toggle-classes.js
44
* Licensed under MIT (https://coreui.io/license)
55
* --------------------------------------------------------------------------
66
*/

js/src/utilities/get-style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* --------------------------------------------------------------------------
3-
* CoreUI Utilities (v2.0.0): get-style.js
3+
* CoreUI Utilities (v2.0.1): get-style.js
44
* Licensed under MIT (https://coreui.io/license)
55
* --------------------------------------------------------------------------
66
*/

0 commit comments

Comments
 (0)