titon-toolkit 2.0.0.pre.rc.1 → 2.0.0.pre.rc.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45212dc7c2e4c712241c179a71040b88879a55d2
4
- data.tar.gz: 1cf11bbd68b151cffc4eccfab446608d14719e03
3
+ metadata.gz: 61f3d670d15e72696dd0081a21c348e433484d33
4
+ data.tar.gz: e1eab947650d2f21a71e3b06f603ef855a447ce9
5
5
  SHA512:
6
- metadata.gz: 7b2201b5614a5e555743061a1d9c73a5bfec6719b6edf89de5aef5188aa0137a18ba1cc31bc20fd5f214d67ec62fc346d45d5065d3c1a3b8811f52209f970ae2
7
- data.tar.gz: a64f2c94da6ca15f2e9d64a5a1d29385ab46cf93fbbaaadf199af14595945cacd864e891777f091db8dd325d8f719c4f881b51de217e4c5e6caa0b5e3829202a
6
+ metadata.gz: e7800e7b75959b62cf7718938848f6872c70ff36541624623b0e18defb267845412bfcc67884feb1e133b093b836a961c14e23455482ca92fc4a1329abb2d507
7
+ data.tar.gz: 5898b27b1c0a44edc49948fe37d656d0d792319fe57fdffaeb37be9fab4565310d39af5dea8f83a1e0cbc06336ed0a960006ff01b814e620da91ab5153ddfefb
data/changelog.md CHANGED
@@ -15,6 +15,7 @@ Check out the release update for more information.
15
15
  * Upgraded to RequireJS for JS dependency management and compilation
16
16
  * Added a robust namespacing system which allows components to be nested within each other
17
17
  * Added unit tests for all components through Mocha, Chai, and PhantomJS
18
+ * Added new `horizontalresize` and `verticalresize` events
18
19
  * Decoupled the CSS and JS layers so that CSS classes (excluding states) are no longer hardcoded
19
20
  * Refactored components to make more use of templates for DOM building
20
21
  * Renamed most instances of the word "component" to "plugin" to differentiate between components and behaviors,
@@ -60,6 +61,7 @@ Check out the release update for more information.
60
61
  * Added option groups
61
62
  * Added `namespace` property
62
63
  * Added `ns()` method for generating namespace selectors
64
+ * Updated the `ajax` option to only be used for setting jQuery AJAX options
63
65
  * Refactored the `requestData()` method
64
66
  * Added `url`, `cache` (whether to cache in the class), and `settings` (AJAX settings) to the XHR object used by jQuery
65
67
  * Removed the `before`, `done`, and `fail` arguments
@@ -82,7 +84,7 @@ Check out the release update for more information.
82
84
  * Renamed `Toolkit.Blackout.factory()` to `Toolkit.Blackout.instance()`
83
85
  * Carousel
84
86
  * Added a `calculate()` method that triggers on load/resize to determine carousel dimensions
85
- * Added a `swipe` option
87
+ * Added a `swipe` option for toggling swipe events
86
88
  * Added `cycling`, `cycled`, `jumping` and `jumped` events
87
89
  * Removed `cycle` and `jump` events
88
90
  * Renamed selectors `.carousel-items ul`, `.carousel-tabs`, `.carousel-next`, `.carousel-prev`, `.carousel-start`, `.carousel-stop` to
@@ -131,7 +133,9 @@ Check out the release update for more information.
131
133
  * Removed `render` event
132
134
  * Updated to no longer automatically set `.matrix` on the container
133
135
  * Modal
136
+ * Added a `clickout` option for toggling clickout events
134
137
  * IDs can now be passed as the 2nd argument to `show()`
138
+ * Removed the `ajax` option (handled by `loadContent()`)
135
139
  * Renamed selectors `.modal-inner`, `.modal-hide`, `.modal-submit` to
136
140
  `[data-modal-content]`, `[data-modal-close]`, `[data-modal-submit]`
137
141
  * Off Canvas
@@ -154,7 +158,8 @@ Check out the release update for more information.
154
158
  * Removed `.show-mobile`, `.show-tablet`, `.show-desktop`, `.hide-mobile`, `.hide-tablet`, and `.hide-desktop` classes
155
159
  * Removed `$responsive-size` variable
156
160
  * Showcase
157
- * Added a `swipe` option
161
+ * Added a `swipe` option for toggling swipe events
162
+ * Added a `clickout` option for toggling clickout events
158
163
  * Added `jumping` and `jumped` events
159
164
  * Removed `jump` event
160
165
  * Removed `.showcase-prev`, `.showcase-next`, and `.showcase-tabs` styles
@@ -178,6 +183,7 @@ Check out the release update for more information.
178
183
  * Added a `toastTemplate` property
179
184
  * Added a `reset()` method to reset the tooltip state
180
185
  * Tooltip
186
+ * Removed the `ajax` option (handled by `loadContent()`)
181
187
  * Removed the `delay` option
182
188
  * Renamed selectors `.tooltip-head`, `.tooltip-body` to `[data-tooltip-header]`, `[data-tooltip-content]`
183
189
  * Type Ahead
data/readme.md CHANGED
@@ -6,7 +6,7 @@
6
6
  \/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Toolkit v2.0.0 RC1 #
9
+ # Toolkit v2.0.0 RC2 - Gallant Golem #
10
10
 
11
11
  Titon Toolkit is a collection of very powerful user interface components and utility classes
12
12
  for the responsive, mobile, and modern web. Each component represents encapsulated HTML, CSS,
@@ -16,6 +16,7 @@ Toolkit makes use of the latest and greatest technology. This includes HTML5 for
16
16
  CSS3 for animations and styles, Sass for CSS pre-processing, Gulp for task and package management,
17
17
  and powerful new browser APIs for the JavaScript layer.
18
18
 
19
+ * [Release Notes](https://github.com/titon/toolkit/blob/master/docs/en/releases/2.0.md)
19
20
  * [Official Website](http://titon.io/toolkit)
20
21
  * [Features](http://titon.io/toolkit#features)
21
22
  * [Components](http://titon.io/toolkit#components)
data/roadmap.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  All releases will contain bug fixing and polishing for current features.
4
4
 
5
- ### 2.x ###
5
+ ### 2.1 ###
6
6
  * RTL support.
7
- * Take Google fundamentals into consideration - https://developers.google.com/web/fundamentals/
7
+ * Flex - A grid component that uses flex box instead of floats.
8
8
 
9
9
  ### 3.x ###
10
10
  * Remove jQuery dependency and go straight vanilla?
@@ -16,9 +16,11 @@ All releases will contain bug fixing and polishing for current features.
16
16
  ### Components ###
17
17
  * Dialog - A component that prompts the user for an action. Sister to the modal component.
18
18
  * Guide - A component that displays introduction guides (popovers) in a sequential order. Useful for show casing new features and functionality.
19
- * Flex - A grid component that uses flex box instead of floats.
20
19
  * Drag & Drop - Provides a drag and drop system.
21
20
 
22
21
  ### Behaviors ###
23
22
  * Form Validator - Provides form validation.
24
- * Data Binding - Provides 2 way data binding.
23
+ * Data Binding - Provides 2 way data binding.
24
+
25
+ ### Misc ###
26
+ * Take Google fundamentals into consideration - https://developers.google.com/web/fundamentals/
data/scss/normalize.scss CHANGED
@@ -1,4 +1,4 @@
1
- /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
1
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2
2
 
3
3
  /**
4
4
  * 1. Set default font family to sans-serif.
@@ -25,7 +25,8 @@ body {
25
25
 
26
26
  /**
27
27
  * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
- * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ * and Firefox.
29
30
  * Correct `block` display not defined for `main` in IE 11.
30
31
  */
31
32
 
@@ -38,6 +39,7 @@ footer,
38
39
  header,
39
40
  hgroup,
40
41
  main,
42
+ menu,
41
43
  nav,
42
44
  section,
43
45
  summary {
@@ -85,7 +87,7 @@ template {
85
87
  */
86
88
 
87
89
  a {
88
- background: transparent;
90
+ background-color: transparent;
89
91
  }
90
92
 
91
93
  /**
@@ -422,4 +424,4 @@ table {
422
424
  td,
423
425
  th {
424
426
  padding: 0;
425
- }
427
+ }
@@ -12,9 +12,9 @@ $shape-skew-class: ".skew" !default;
12
12
 
13
13
  $enable-small-size: true !default;
14
14
  $enable-large-size: true !default;
15
- $enable-all-effects: true !default;
16
- $enable-all-modifiers: true !default;
17
- $enable-all-animations: true !default;
15
+ $enable-all-effects: false !default;
16
+ $enable-all-modifiers: false !default;
17
+ $enable-all-animations: false !default;
18
18
 
19
19
  //-------------------- Colors --------------------//
20
20
 
@@ -115,6 +115,10 @@ select#{$form-class-input} {
115
115
  &[multiple] {
116
116
  max-height: 500px;
117
117
  }
118
+
119
+ &::-ms-expand {
120
+ display: none;
121
+ }
118
122
  }
119
123
 
120
124
  textarea#{$form-class-input} {
data/version.md CHANGED
@@ -1 +1 @@
1
- 2.0.0-rc.1
1
+ 2.0.0-rc.2
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.0.0.pre.rc.1
4
+ version: 2.0.0.pre.rc.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Project Titon
@@ -9,36 +9,36 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-11-20 00:00:00.000000000 Z
12
+ date: 2014-11-26 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
- version: 3.4.0
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
- version: 3.4.0
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
- version: 1.0.0
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
- version: 1.0.0
41
+ version: '1.0'
42
42
  description: A collection of extensible front-end UI components and behaviors for
43
43
  the responsive and mobile web.
44
44
  email: