titon-toolkit 2.1.5 → 2.1.6

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: 83cdf899e4f4f06db0e5bb9d75e1e9e1925ef11d
4
- data.tar.gz: 5afaa07c9b1607973708c00b634c239933fb439b
3
+ metadata.gz: ad28e0b1e0287783b9a0e38726f69c536fbebcd2
4
+ data.tar.gz: 7e9ac010507fc22ed805d393315f8cb03a1fc7e7
5
5
  SHA512:
6
- metadata.gz: 1978ca10757cb2f2f55178844e6710ae355ff5655c8d7f4ef9ef903d5e27928bebb84703d4c2d80595370758b6952a15da94ab9d3a40baffa0acd0e90ed23c9c
7
- data.tar.gz: 79b7ecf186a5c306c8a781ed6c54782986baa1ae326702510d58f90bcc45dbe5efddf6d3e33a7bc79ff2aca4bd19a5718ba2ea2964449d549bb5bbcd56ca76e3
6
+ metadata.gz: ade6730bfc330b5df9de8150b2f7f7b99416e55ec901005bb48e04b642e49cb93e2b2d42f29237641315c30d4f6b22a1167bd7fcb1120ad55fd67a2687ff0a91
7
+ data.tar.gz: 6993eed9b7fd84eb96fbd34bb23a9a793491735e71c77e84bf6b507aed6d1d74465b705cf61e1517e017a2798b42e1c7b2db8caa86eae92421833bf9f0207681
@@ -2,6 +2,20 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 2.1.6 ##
6
+ * Further improved AMD loading by splitting child components into their own files
7
+ * Components
8
+ * Carousel
9
+ * BREAKING CHANGE: The process to determine the size (width or height) to cycle with has been completely refactored. The new process will now take into account margins (to allow for gutters) and sizes to be explicitly set with CSS. Because of this change, the `itemsToShow` value will only aid in the calculation process, but will not actually change the display of the items, this should be done with CSS.
10
+ * Pin
11
+ * Added `pinned` and `unpinned` events
12
+ * Added a `pinned` boolean property
13
+ * Added an `unpin()` method that resets state
14
+ * Reworked the `elementTop` property to be the top offset value on page load and added `initialTop` to be the CSS defined top value
15
+ * Fixed a bug where `initialTop` would be set to `NaN`
16
+ * Fixed a bug where elements at the very top would pin immediately instead of waiting for scroll
17
+ * Fixed a bug regarding scroll top and `fixed` elements
18
+
5
19
  ## 2.1.5 ##
6
20
  * Added docs for integration with build tools and task runners
7
21
  * Added main/index support to all JavaScript source folders and to NPM
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Titon Toolkit v2.1.5 #
9
+ # Titon Toolkit v2.1.6 #
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)
@@ -29,10 +29,12 @@
29
29
  top: 0;
30
30
  #{$align-direction}: 0;
31
31
  transition: left $carousel-transition, top $carousel-transition, right $carousel-transition;
32
+ width: 100%;
33
+ height: 100%;
32
34
 
33
35
  > li {
34
36
  width: 100%;
35
- height: auto;
37
+ height: 100%;
36
38
  position: relative;
37
39
 
38
40
  > img {
@@ -1,5 +1,3 @@
1
- @import "layout";
2
- @import "helper";
3
1
 
4
2
  $flex-align-map: (
5
3
  top: flex-start,
@@ -1,5 +1,3 @@
1
- @import "layout";
2
- @import "helper";
3
1
 
4
2
  // Calculate the width of an individual grid column.
5
3
  // Take into account max widths and gutters.
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.1.5
1
+ 2.1.6
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.5
4
+ version: 2.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Project Titon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-05-21 00:00:00.000000000 Z
12
+ date: 2015-07-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass