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 +4 -4
- data/changelog.md +14 -0
- data/readme.md +1 -1
- data/scss/toolkit/components/carousel.scss +3 -1
- data/scss/toolkit/mixins/_flex.scss +0 -2
- data/scss/toolkit/mixins/_grid.scss +0 -2
- data/version.md +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad28e0b1e0287783b9a0e38726f69c536fbebcd2
|
4
|
+
data.tar.gz: 7e9ac010507fc22ed805d393315f8cb03a1fc7e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ade6730bfc330b5df9de8150b2f7f7b99416e55ec901005bb48e04b642e49cb93e2b2d42f29237641315c30d4f6b22a1167bd7fcb1120ad55fd67a2687ff0a91
|
7
|
+
data.tar.gz: 6993eed9b7fd84eb96fbd34bb23a9a793491735e71c77e84bf6b507aed6d1d74465b705cf61e1517e017a2798b42e1c7b2db8caa86eae92421833bf9f0207681
|
data/changelog.md
CHANGED
@@ -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.
|
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:
|
37
|
+
height: 100%;
|
36
38
|
position: relative;
|
37
39
|
|
38
40
|
> img {
|
data/version.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.1.
|
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.
|
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-
|
12
|
+
date: 2015-07-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|