titon-toolkit 2.1.8 → 2.1.9

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: 21296ab9e50ec94f5999457f65fe5a6b407c5457
4
- data.tar.gz: 9747a967f76ef52bed0e54d2baa198270ab2bea1
3
+ metadata.gz: edfba21b8c0a0c4df968b171559dfcace16cbafa
4
+ data.tar.gz: 4d909bd4a254fb70ccce1fe54c9375a97585ca24
5
5
  SHA512:
6
- metadata.gz: 041458cc5d2dc716d0f34c571a4ac7f6b0a77e1832c76592f265b4947913bc80fdcb28a78f9fd666a38413229bdcd61509034b065a9826acce3514509221aa8c
7
- data.tar.gz: fd9d96a19db356b93992cdc64c7a7969dbd1d0d685925e8ed94475b2bce3726c15d9970f1a372cf9cae232fd9dc511b9c99696a5fb7067702c3e021e66879df1
6
+ metadata.gz: a40052f2c6d90bf088561c9414d73be1621435b086bfe169ce96bab89873a7bed60a776e9aafc21f95fd5eb13c1c11e9856bab57e2d937177fa3c7ba11ed080c
7
+ data.tar.gz: 02f6f0055c024595314216bab297168c0366eee00b0f416eb9613c8daf08bda394ec043c46db6d210a7778579e5f4ccb3be44ef132c0c8e995a16b375aec1eee
@@ -2,6 +2,11 @@
2
2
 
3
3
  Older versions can be found in the documentation changelogs.
4
4
 
5
+ ## 2.1.9 ##
6
+ * Updated NPM dependencies and fixed build process
7
+ * Replaced `$.access()` as it was removed from jQuery's public API
8
+ * Added new float and alignment CSS classes that respect RTL mode
9
+
5
10
  ## 2.1.8 ##
6
11
  * Fixed an issue with libsass ~3.4 failing to transpile.
7
12
 
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/ \/_____/ \/_____/ \/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Titon Toolkit v2.1.8 #
9
+ # Titon Toolkit v2.1.9 #
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)
@@ -18,10 +18,14 @@ bdo[dir="rtl"] { direction: rtl; unicode-bidi: bidi-override; }
18
18
  .align-center { text-align: center; }
19
19
  .align-right { text-align: right; }
20
20
  .align-justify { text-align: justify; }
21
+ .align-start { text-align: $align-direction; }
22
+ .align-end { text-align: $align-opposite-direction; }
21
23
 
22
24
  .float-left { float: left; }
23
25
  .float-right { float: right; }
24
26
  .float-none { float: none; }
27
+ .float-start { text-align: $align-direction; }
28
+ .float-end { text-align: $align-opposite-direction; }
25
29
 
26
30
  // Animations
27
31
  .show { opacity: 1 !important; visibility: visible !important; }
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.1.8
1
+ 2.1.9
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.8
4
+ version: 2.1.9
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-11-05 00:00:00.000000000 Z
12
+ date: 2016-05-14 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,8 +46,13 @@ executables: []
46
46
  extensions: []
47
47
  extra_rdoc_files: []
48
48
  files:
49
+ - changelog.md
49
50
  - lib/titon-toolkit.rb
51
+ - license.md
52
+ - readme.md
53
+ - roadmap.md
50
54
  - scss/normalize.scss
55
+ - scss/toolkit.scss
51
56
  - scss/toolkit/_common.scss
52
57
  - scss/toolkit/base.scss
53
58
  - scss/toolkit/components/accordion.scss
@@ -95,11 +100,6 @@ files:
95
100
  - scss/toolkit/mixins/_layout.scss
96
101
  - scss/toolkit/mixins/_responsive.scss
97
102
  - 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.0.14
124
+ rubygems_version: 2.5.1
125
125
  signing_key:
126
126
  specification_version: 4
127
127
  summary: Provides Titon Toolkit Sass files for use in projects.