Skip to content

Commit ee0339b

Browse files
committed
Ship v2.0.6
2 parents acb1e5c + a14b70d commit ee0339b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+2941
-2846
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## v2.0.4
2+
3+
- **Refactor: SCSS Variables**
4+
- Update: @babel/cli to 7.0.0-beta.53
5+
- Update: @babel/core to 7.0.0-beta.53
6+
- Update: @babel/plugin-proposal-object-rest-spread to 7.0.0-beta.53
7+
- Update: @babel/plugin-proposal-throw-expressions to 7.0.0-beta.53
8+
- Update: @babel/plugin-transform-runtime to 7.0.0-beta.53
9+
- Update: @babel/preset-env to 7.0.0-beta.53
10+
- Update: autoprefixer to 8.6.5
11+
- Update: babel-eslint to 8.2.6
12+
- Update: bootstrap to 4.1.2
13+
- Update: cross-env to 5.2.0
14+
- Update: eslint to 5.1.0
15+
- Update: eslint-plugin-compat to 2.5.0
16+
- Update: node-sass to 4.9.2
17+
- Update: nodemon to 1.18.1
18+
- Update: postcss-cli to 5.0.1
19+
- Update: rollup to 0.62.0
20+
- Update: rollup-plugin-babel to 3.0.7
21+
- Update: shx to 0.3.2
22+
- Update: stylelint to 9.3.0
23+
- Update: stylelint-scss to 3.1.3
24+
- Update: uglify-js to 3.4.4

README.md

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

5454
``` bash
55-
$ yarn add @coreui/[email protected]
55+
<<<<<<< HEAD
56+
$ yarn add @coreui/[email protected]
57+
=======
58+
$ yarn add @coreui/[email protected]
59+
>>>>>>> a14b70d7ed6f4fbd99af9d867079549a2398c646
5660
```
5761

5862
### Composer
5963

6064
``` bash
61-
$ composer require coreui/coreui:2.0.5
65+
<<<<<<< HEAD
66+
$ composer require coreui/coreui:2.0.6
67+
=======
68+
$ composer require coreui/coreui:2.0.4
69+
>>>>>>> a14b70d7ed6f4fbd99af9d867079549a2398c646
6270
```
6371

6472
## Usage

build/.stylelintrc

Lines changed: 31 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
"stylelint-order"
55
],
66
"rules": {
7-
"at-rule-empty-line-before": [null,
8-
"except": ["first-nested"]
9-
],
7+
"at-rule-empty-line-before": null,
108
"at-rule-name-space-after": "always",
119
"at-rule-no-vendor-prefix": true,
1210
"at-rule-semicolon-space-before": "never",
@@ -33,6 +31,9 @@
3331
"no-descending-specificity": null,
3432
"no-duplicate-selectors": true,
3533
"number-leading-zero": "never",
34+
"media-feature-name-no-unknown": [true, {
35+
"ignoreMediaFeatureNames": ["prefers-reduced-motion"]
36+
}],
3637
"order/properties-order": [
3738
"position",
3839
"top",
@@ -48,9 +49,11 @@
4849
"flex-direction",
4950
"flex-wrap",
5051
"flex-flow",
52+
"flex-shrink",
5153
"flex-grow",
5254
"flex-order",
5355
"flex-pack",
56+
"align-content",
5457
"align-items",
5558
"align-self",
5659
"justify-content",
@@ -79,6 +82,18 @@
7982
"-ms-overflow-x",
8083
"-ms-overflow-y",
8184
"-ms-overflow-style",
85+
"columns",
86+
"column-count",
87+
"column-fill",
88+
"column-gap",
89+
"column-rule",
90+
"column-rule-width",
91+
"column-rule-style",
92+
"column-rule-color",
93+
"column-span",
94+
"column-width",
95+
"orphans",
96+
"widows",
8297
"clip",
8398
"clear",
8499
"font",
@@ -94,6 +109,7 @@
94109
"font-emphasize-position",
95110
"font-emphasize-style",
96111
"font-smooth",
112+
"src",
97113
"hyphens",
98114
"line-height",
99115
"color",
@@ -126,6 +142,8 @@
126142
"tab-size",
127143
"white-space",
128144
"vertical-align",
145+
"direction",
146+
"unicode-bidi",
129147
"list-style",
130148
"list-style-position",
131149
"list-style-type",
@@ -203,24 +221,33 @@
203221
"box-shadow",
204222
"opacity",
205223
"-ms-interpolation-mode",
224+
"page-break-after",
225+
"page-break-before",
226+
"page-break-inside",
206227
"transition",
207228
"transition-delay",
208229
"transition-timing-function",
209230
"transition-duration",
210231
"transition-property",
211232
"transform",
212233
"transform-origin",
234+
"perspective",
235+
"appearance",
213236
"animation",
214237
"animation-name",
215238
"animation-duration",
216239
"animation-play-state",
217240
"animation-timing-function",
218241
"animation-delay",
219242
"animation-iteration-count",
220-
"animation-direction"
243+
"animation-direction",
244+
"animation-fill-mode",
245+
"fill",
246+
"stroke"
221247
],
222248
"property-no-vendor-prefix": true,
223249
"rule-empty-line-before": null,
250+
"scss/dollar-variable-default": [true, { "ignore": "local" }],
224251
"selector-attribute-quotes": "always",
225252
"selector-list-comma-newline-after": "always",
226253
"selector-list-comma-newline-before": "never-multi-line",

composer.json

Lines changed: 0 additions & 31 deletions
This file was deleted.

dist/css/bootstrap.css

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

dist/css/bootstrap.css.map

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

0 commit comments

Comments
 (0)