neat 1.9.0 → 1.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +259 -0
- data/app/assets/stylesheets/_neat.scss +1 -1
- data/app/assets/stylesheets/grid/_omega.scss +1 -1
- data/bower.json +1 -1
- data/lib/neat/version.rb +1 -1
- data/package.json +1 -1
- data/spec/support/sass_support.rb +1 -1
- metadata +4 -4
- data/NEWS.md +0 -47
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 91868c40d6ef8e7fb48584bdfd850b726cb3ece9
|
|
4
|
+
data.tar.gz: 66e2145a8765ef24a20636cf025dd13e4c8c6f96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34cca7868e28afff897994c557da2ca4fec1456d1787975bc64f8e88e8c1197f2bb823dc54cf66a61645086f2c029f535ea58dc70ac30fe3fa656478493d015d
|
|
7
|
+
data.tar.gz: 003fdd0fa6be8d75e5c398be588c2ec5e6dd89df5467d271223640a75d80c1ff5c5b7a4dfb94681582bb2cdb14672d329bdd61ee4a36aea1aba3d858b532c639
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
## [1.9.1] - 2018-09-11
|
|
2
|
+
|
|
3
|
+
### Fixed
|
|
4
|
+
|
|
5
|
+
- Fix Sass warning about "&&" vs "and" ([#646])
|
|
6
|
+
|
|
7
|
+
[#646]: https://github.com/thoughtbot/neat/pull/646
|
|
8
|
+
|
|
9
|
+
## [1.9.0] - 2017-06-27
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- Add support for complex `nth-child` selectors in `omega()`. ([#340])
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- The background color for visual grid columns now alternates. ([#373])
|
|
18
|
+
- Update node-sass dependency to 4.1.1. ([#520])
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- Removed unnecessary deprecation warning when using the `reset-display` mixin.
|
|
23
|
+
([#456])
|
|
24
|
+
- The description of the `remove` CLI command now correctly outputs "remove".
|
|
25
|
+
([#451])
|
|
26
|
+
|
|
27
|
+
[#340]: https://github.com/thoughtbot/neat/pull/340
|
|
28
|
+
[#373]: https://github.com/thoughtbot/neat/pull/373
|
|
29
|
+
[#451]: https://github.com/thoughtbot/neat/pull/451
|
|
30
|
+
[#456]: https://github.com/thoughtbot/neat/pull/456
|
|
31
|
+
[#520]: https://github.com/thoughtbot/neat/pull/520
|
|
32
|
+
|
|
33
|
+
## 1.8.0 - 2016-06-21
|
|
34
|
+
|
|
35
|
+
### Added
|
|
36
|
+
|
|
37
|
+
- Added `--version` and `-v` options to the CLI now has that show the version of
|
|
38
|
+
Neat you have installed
|
|
39
|
+
|
|
40
|
+
### Removed
|
|
41
|
+
|
|
42
|
+
- Neat no longer requires Bourbon
|
|
43
|
+
|
|
44
|
+
## 1.7.4 - 2016-03-04
|
|
45
|
+
|
|
46
|
+
### Added
|
|
47
|
+
|
|
48
|
+
- Added an explicit sass requirement
|
|
49
|
+
|
|
50
|
+
## 1.7.3 - 2016-02-29
|
|
51
|
+
|
|
52
|
+
### Added
|
|
53
|
+
|
|
54
|
+
- Added eyeglass support
|
|
55
|
+
|
|
56
|
+
### Changed
|
|
57
|
+
|
|
58
|
+
- Neat's npm package now includes the proper Sass paths
|
|
59
|
+
- The default `$max-width` is now `1200px`
|
|
60
|
+
|
|
61
|
+
## 1.7.2 - 2015-03-13
|
|
62
|
+
|
|
63
|
+
### Added
|
|
64
|
+
|
|
65
|
+
- Added Bourbon's updated `modular-scale` function for grid settings
|
|
66
|
+
|
|
67
|
+
### Removed
|
|
68
|
+
|
|
69
|
+
- Removed prefixes for `box-sizing`
|
|
70
|
+
|
|
71
|
+
## 1.7.1 - 2015-01-02
|
|
72
|
+
|
|
73
|
+
### Added
|
|
74
|
+
|
|
75
|
+
- Added custom `not` function for Libsass 3.0 compatibility
|
|
76
|
+
|
|
77
|
+
### Changed
|
|
78
|
+
|
|
79
|
+
- Fixed bug related to the `omega`'s query argument
|
|
80
|
+
|
|
81
|
+
## 1.7.0 - 2014-10-17
|
|
82
|
+
|
|
83
|
+
### Added
|
|
84
|
+
|
|
85
|
+
- Full compatibility with Sass 3.4+ and Libsass 3.0+
|
|
86
|
+
|
|
87
|
+
### Changed
|
|
88
|
+
|
|
89
|
+
- `direction-context` mixin changes the direction inside an entire block.
|
|
90
|
+
- `display-context` mixin changes the display property inside an entire block.
|
|
91
|
+
- `outer-container` now takes a max-width argument
|
|
92
|
+
|
|
93
|
+
### Removed
|
|
94
|
+
|
|
95
|
+
- Removed `reset-direction`
|
|
96
|
+
- Removed `reset-display`
|
|
97
|
+
|
|
98
|
+
## 1.5.1 - 2014-04-06
|
|
99
|
+
|
|
100
|
+
### Added
|
|
101
|
+
|
|
102
|
+
- Restore compatibility with Sass 3.2.x
|
|
103
|
+
|
|
104
|
+
## 1.6.0 - 2014-03-28
|
|
105
|
+
|
|
106
|
+
### Added
|
|
107
|
+
- Added multiple media queries support to the `media` mixin, including queries
|
|
108
|
+
such as orientation
|
|
109
|
+
|
|
110
|
+
### Changed
|
|
111
|
+
- Updated to Sass 3.3 and silence `!global` variable warnings
|
|
112
|
+
- Use absolute percentage widths for table displays
|
|
113
|
+
|
|
114
|
+
### Removed
|
|
115
|
+
|
|
116
|
+
- Passing table no longer adds padding to elements
|
|
117
|
+
- Omega no longer supports table display
|
|
118
|
+
|
|
119
|
+
## 1.6.0.pre2 - 2014-03-21
|
|
120
|
+
|
|
121
|
+
### Changed
|
|
122
|
+
|
|
123
|
+
- Use Sass 3.3 and silence global variable warnings
|
|
124
|
+
|
|
125
|
+
## 1.6.0.pre - 2014-02-10
|
|
126
|
+
|
|
127
|
+
### Added
|
|
128
|
+
|
|
129
|
+
- Added multiple media queries support to the `media` mixin, including queries
|
|
130
|
+
such as orientation
|
|
131
|
+
|
|
132
|
+
### Changed
|
|
133
|
+
|
|
134
|
+
- Use absolute percentage widths for table displays
|
|
135
|
+
|
|
136
|
+
### Removed
|
|
137
|
+
|
|
138
|
+
- Passing table no longer adds padding to elements
|
|
139
|
+
- Omega no longer supports table display
|
|
140
|
+
|
|
141
|
+
## 1.5.0 - 2013-22-15
|
|
142
|
+
|
|
143
|
+
### Added
|
|
144
|
+
|
|
145
|
+
- Added the ability for `span-columns` to omit display property from the output
|
|
146
|
+
- Improved browser support
|
|
147
|
+
|
|
148
|
+
### Changed
|
|
149
|
+
|
|
150
|
+
- Renamed `span-columns` collapse argument to block-collapse
|
|
151
|
+
- Made `shift` take parent column argument (useful when other `span-columns`
|
|
152
|
+
calls override the nesting context)
|
|
153
|
+
|
|
154
|
+
## 1.4.0 - 2013-08-28
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
|
|
158
|
+
- Added collapse argument to `span-columns` in order to remove gutter
|
|
159
|
+
|
|
160
|
+
### Changed
|
|
161
|
+
|
|
162
|
+
- Fixed visual grid overrides by reordering breakpoints
|
|
163
|
+
- Unified padding across table cells
|
|
164
|
+
- Specified comma as separator for gradient-stops append for libsass
|
|
165
|
+
|
|
166
|
+
### Removed
|
|
167
|
+
|
|
168
|
+
## 1.3.0 - 2013-05-03
|
|
169
|
+
|
|
170
|
+
### Added
|
|
171
|
+
|
|
172
|
+
- Added global RTL layout support
|
|
173
|
+
- Added row-specific RTL layout support
|
|
174
|
+
- Added auto-clearing for elements using `omega(nth-child)` (works only with
|
|
175
|
+
simple `nth-child` arguments due to limited string operations in Sass)
|
|
176
|
+
|
|
177
|
+
### Changed
|
|
178
|
+
|
|
179
|
+
- `reset-display`, `reset-layout-direction`, and `reset-all` for all your reset needs!
|
|
180
|
+
|
|
181
|
+
### Removed
|
|
182
|
+
|
|
183
|
+
- The visual grid no longer blocks user interactions
|
|
184
|
+
- `omega` will no longer take `$direction` in favor of `row($direction)` or
|
|
185
|
+
`$default-layout-direction`
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
## 1.2.1 - 2013-04-04
|
|
189
|
+
|
|
190
|
+
### Added
|
|
191
|
+
|
|
192
|
+
- Added stylesheets path to `Sass.load_paths`
|
|
193
|
+
- Official Docset
|
|
194
|
+
|
|
195
|
+
### Changed
|
|
196
|
+
|
|
197
|
+
- Force full-width and fixed table-layout on `row(table)`
|
|
198
|
+
|
|
199
|
+
## 1.2.0 - 2013-02-18
|
|
200
|
+
|
|
201
|
+
### Added
|
|
202
|
+
|
|
203
|
+
- Auto-detect table layout when `span-columns` is called inside `row(table)`
|
|
204
|
+
|
|
205
|
+
### Changed
|
|
206
|
+
|
|
207
|
+
- Make `shift` reset context after each nested call
|
|
208
|
+
|
|
209
|
+
## 1.1.0 - 2013-01-09
|
|
210
|
+
|
|
211
|
+
### Added
|
|
212
|
+
|
|
213
|
+
- `pad` takes shorthand arguments
|
|
214
|
+
|
|
215
|
+
### Changed
|
|
216
|
+
|
|
217
|
+
- Merge `omega` and `nth-omega`
|
|
218
|
+
- Last child in table layouts keeps its right-padding
|
|
219
|
+
|
|
220
|
+
## 1.0.2 - 2012-11-19
|
|
221
|
+
|
|
222
|
+
### Added
|
|
223
|
+
|
|
224
|
+
- Add explicit require to the bourbon gem
|
|
225
|
+
[#38](https://github.com/thoughtbot/neat/issues/38)
|
|
226
|
+
|
|
227
|
+
## 1.0.1 - 2012-11-06
|
|
228
|
+
|
|
229
|
+
### Added
|
|
230
|
+
|
|
231
|
+
- Relative path imports in Rails
|
|
232
|
+
|
|
233
|
+
### Changed
|
|
234
|
+
|
|
235
|
+
- Make `em` always return a number
|
|
236
|
+
|
|
237
|
+
## 1.0.0 - 2012-10-29
|
|
238
|
+
|
|
239
|
+
### Added
|
|
240
|
+
|
|
241
|
+
- Added executable for non-Rails projects
|
|
242
|
+
- Added visual grid
|
|
243
|
+
- Added `media` and `new-breakpoint` mixins
|
|
244
|
+
- Added `_neat-helpers.scss` as a public interface for Neat
|
|
245
|
+
|
|
246
|
+
### Changed
|
|
247
|
+
|
|
248
|
+
- Made `shift` work properly in nested contexts
|
|
249
|
+
|
|
250
|
+
### Removed
|
|
251
|
+
|
|
252
|
+
- Removed typography mixins and settings
|
|
253
|
+
|
|
254
|
+
## 0.4.2 - 2012-08-31
|
|
255
|
+
|
|
256
|
+
- Initial release
|
|
257
|
+
|
|
258
|
+
[1.9.1]: https://github.com/thoughtbot/neat/compare/v1.9.0...v1.9.1
|
|
259
|
+
[1.9.0]: https://github.com/thoughtbot/neat/compare/v1.8.0...v1.9.0
|
data/bower.json
CHANGED
data/lib/neat/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: neat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.9.
|
|
4
|
+
version: 1.9.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Joel Oliveira
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2018-09-11 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sass
|
|
@@ -167,11 +167,11 @@ files:
|
|
|
167
167
|
- ".ruby-version"
|
|
168
168
|
- ".scss-lint.yml"
|
|
169
169
|
- ".travis.yml"
|
|
170
|
+
- CHANGELOG.md
|
|
170
171
|
- CONTRIBUTING.md
|
|
171
172
|
- Gemfile
|
|
172
173
|
- Gulpfile.js
|
|
173
174
|
- LICENSE.md
|
|
174
|
-
- NEWS.md
|
|
175
175
|
- README.md
|
|
176
176
|
- Rakefile
|
|
177
177
|
- app/assets/stylesheets/_neat-helpers.scss
|
|
@@ -260,7 +260,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
260
260
|
version: '0'
|
|
261
261
|
requirements: []
|
|
262
262
|
rubyforge_project: neat
|
|
263
|
-
rubygems_version: 2.
|
|
263
|
+
rubygems_version: 2.5.1
|
|
264
264
|
signing_key:
|
|
265
265
|
specification_version: 4
|
|
266
266
|
summary: A lightweight, semantic grid framework
|
data/NEWS.md
DELETED
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
### 1.3.0 (2013-05-03)
|
|
2
|
-
|
|
3
|
-
* New: Add global RTL layout support
|
|
4
|
-
* New: Add row-specific RTL layout support
|
|
5
|
-
* New: Add auto-clearing for elements using `omega(nth-child)` (works only with simple nth-child arguments due to limited string operations in Sass)
|
|
6
|
-
* New: `reset-display`, `reset-layout-direction`, and `reset-all` for all your reset needs!
|
|
7
|
-
* Fix: The visual grid no longer blocks user interactions
|
|
8
|
-
* Deprecate: `omega()` will no longer take `$direction` in favor of `row($direction)` or `$default-layout-direction`
|
|
9
|
-
|
|
10
|
-
### 1.2.1 (2013-04-04)
|
|
11
|
-
|
|
12
|
-
* New: Add stylesheets path to Sass.load_paths
|
|
13
|
-
* Fixed: Force full-width and fixed table-layout on `row(table)`
|
|
14
|
-
* Official Docset
|
|
15
|
-
|
|
16
|
-
### 1.2.0 (2013-02-18)
|
|
17
|
-
|
|
18
|
-
* New: Auto-detect table layout when `span-columns()` is called inside `row(table)`
|
|
19
|
-
* Fix: Make `shift()` reset context after each nested call
|
|
20
|
-
|
|
21
|
-
### 1.1.0 (2013-01-09)
|
|
22
|
-
|
|
23
|
-
* New: `pad()` takes shorthand arguments
|
|
24
|
-
* Refactor: Merge `omega()` and `nth-omega()`
|
|
25
|
-
* Fix: Last child in table layouts keeps its right-padding
|
|
26
|
-
|
|
27
|
-
### 1.0.2 (2012-11-19)
|
|
28
|
-
|
|
29
|
-
* Fix: Add explicit require to the bourbon gem [#38](https://github.com/thoughtbot/neat/issues/38)
|
|
30
|
-
|
|
31
|
-
### 1.0.1 (2012-11-06)
|
|
32
|
-
|
|
33
|
-
* Fix: Make `em()` always return a number
|
|
34
|
-
* Fix: Relative path imports in Rails
|
|
35
|
-
|
|
36
|
-
### 1.0.0 (2012-10-29)
|
|
37
|
-
|
|
38
|
-
* New: Add executable for non-Rails projects
|
|
39
|
-
* New: Add visual grid
|
|
40
|
-
* New: Add `media` and `new-breakpoint` mixins
|
|
41
|
-
* New: Add `_neat-helpers.scss` as a public interface for Neat
|
|
42
|
-
* Fix: Make `shift()` work properly in nested contexts
|
|
43
|
-
* Refactor: Remove typography mixins and settings
|
|
44
|
-
|
|
45
|
-
### 0.4.2 (2012-08-31)
|
|
46
|
-
|
|
47
|
-
* Initial release
|