titon-toolkit 2.1.6 → 2.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad28e0b1e0287783b9a0e38726f69c536fbebcd2
4
- data.tar.gz: 7e9ac010507fc22ed805d393315f8cb03a1fc7e7
3
+ metadata.gz: 8b2d0f7f40614941019170a8ce891636fb1cd943
4
+ data.tar.gz: 61adf1a115d30c10be87125c3692c1dd3412a6d9
5
5
  SHA512:
6
- metadata.gz: ade6730bfc330b5df9de8150b2f7f7b99416e55ec901005bb48e04b642e49cb93e2b2d42f29237641315c30d4f6b22a1167bd7fcb1120ad55fd67a2687ff0a91
7
- data.tar.gz: 6993eed9b7fd84eb96fbd34bb23a9a793491735e71c77e84bf6b507aed6d1d74465b705cf61e1517e017a2798b42e1c7b2db8caa86eae92421833bf9f0207681
6
+ metadata.gz: ccddcbc3dbd84e22dc321255e919341a62ada50b5cc2a8460be74844975fe666762f2956263a62f6666caef8804ac5cdc4cdfc6dd3a7e2290cd0cc9699096125
7
+ data.tar.gz: a68e82f65e938d6dc06f6e42eec909424501a81e2685e415b9191f3614a9ae7a57e8be071c2047af9adb0a3dc95bb177844b8d8d3292111fbd009eb9a571b759
@@ -2,6 +2,16 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 2.1.7 ##
6
+ * Updated the `.span-*` classes to no longer be coupled with the grid component
7
+ * Components
8
+ * Component
9
+ * Updated `loadContent()` to accept elements as well as strings
10
+ * Carousel
11
+ * Fixed a bug where re-calculations would fail because of the previously set widths or heights
12
+ * Stalker
13
+ * Fixed a bug where the bottom threshold was being calculated incorrectly
14
+
5
15
  ## 2.1.6 ##
6
16
  * Further improved AMD loading by splitting child components into their own files
7
17
  * Components
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Titon Toolkit v2.1.6 #
9
+ # Titon Toolkit v2.1.7 #
10
10
  [![Project Titon](https://img.shields.io/badge/project-titon-82667d.svg?style=flat)](http://titon.io)
11
11
  [![Build Status](https://img.shields.io/travis/titon/toolkit.svg?style=flat)](https://travis-ci.org/titon/toolkit)
12
12
  [![NPM Version](https://img.shields.io/npm/v/titon-toolkit.svg?style=flat)](https://npmjs.com/package/titon-toolkit)
@@ -149,7 +149,7 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
149
149
 
150
150
  // Sizes
151
151
  @for $i from 1 through 12 {
152
- .span-#{$i} { width: grid-span($i, 12); }
152
+ .span-#{$i} { width: span-width($i, 12, 100%, false); }
153
153
  }
154
154
 
155
155
  // Fluid
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.1.6
1
+ 2.1.7
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: titon-toolkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.6
4
+ version: 2.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Project Titon
@@ -9,34 +9,34 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-07-06 00:00:00.000000000 Z
12
+ date: 2015-08-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - "~>"
18
+ - - ~>
19
19
  - !ruby/object:Gem::Version
20
20
  version: '3.4'
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - "~>"
25
+ - - ~>
26
26
  - !ruby/object:Gem::Version
27
27
  version: '3.4'
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: compass
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ~>
33
33
  - !ruby/object:Gem::Version
34
34
  version: '1.0'
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - "~>"
39
+ - - ~>
40
40
  - !ruby/object:Gem::Version
41
41
  version: '1.0'
42
42
  description: A collection of extensible front-end UI components and behaviors for
@@ -46,13 +46,8 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
- - changelog.md
50
49
  - lib/titon-toolkit.rb
51
- - license.md
52
- - readme.md
53
- - roadmap.md
54
50
  - scss/normalize.scss
55
- - scss/toolkit.scss
56
51
  - scss/toolkit/_common.scss
57
52
  - scss/toolkit/base.scss
58
53
  - scss/toolkit/components/accordion.scss
@@ -100,6 +95,11 @@ files:
100
95
  - scss/toolkit/mixins/_layout.scss
101
96
  - scss/toolkit/mixins/_responsive.scss
102
97
  - scss/toolkit/mixins/_unit.scss
98
+ - scss/toolkit.scss
99
+ - changelog.md
100
+ - license.md
101
+ - readme.md
102
+ - roadmap.md
103
103
  - version.md
104
104
  homepage: http://titon.io
105
105
  licenses:
@@ -111,17 +111,17 @@ require_paths:
111
111
  - lib
112
112
  required_ruby_version: !ruby/object:Gem::Requirement
113
113
  requirements:
114
- - - ">="
114
+ - - '>='
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  required_rubygems_version: !ruby/object:Gem::Requirement
118
118
  requirements:
119
- - - ">="
119
+ - - '>='
120
120
  - !ruby/object:Gem::Version
121
121
  version: '0'
122
122
  requirements: []
123
123
  rubyforge_project:
124
- rubygems_version: 2.4.5
124
+ rubygems_version: 2.0.14
125
125
  signing_key:
126
126
  specification_version: 4
127
127
  summary: Provides Titon Toolkit Sass files for use in projects.