titon-toolkit 1.1.0.rc.2 → 1.1.0

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: 63b9e2abbea99690a8ae8b840806eea773744af6
4
- data.tar.gz: ccbcaf2afed5f72d18e7f4521be4a1c772662fbd
3
+ metadata.gz: 25a094323fb10ebe2311ca637a6b848676dbb184
4
+ data.tar.gz: 9045e54d29b6cd57e3d4c2027e825934bf1ea141
5
5
  SHA512:
6
- metadata.gz: f710ad6e5446effb1219b14c77b54aa13f15fd41be5e9efc60a12accff38a29243dd57f9e586b374cacbabe239e31e5df9f84bdc5b686e365b9d0eb70df8506a
7
- data.tar.gz: b8a45ffb033ccdb6d732af472bc606fe5832cacbf0fcaa8e7d25dc5ecf1d59c3db5ae6102152fe75f811b6c84d17665c21fad4faacf24a4efdfd225a927dae1e
6
+ metadata.gz: 68027f64647c8aaf2300e364ee891f151e29567c2fe160ab21e98cbaa5d360b306a1ce6958cd4e2e587fae0bd364f0755db00095badcd4b87e491b7e2f3cc21f
7
+ data.tar.gz: bb06bfa413e050a4b123b515dbff9bf4728ec9eda6d4ba208bf309446dec798c7d5452038d693c86e10a0e484fec65ea725747dd795964df6ed931d58687592b
data/changelog.md CHANGED
@@ -11,18 +11,24 @@ Older versions can be found in the documentation changelogs.
11
11
  * Added a `--demo` parameter to Grunt that builds files for demo purposes
12
12
  * Improved the Grunt build process
13
13
  * Refactored `debounce()` and `throttle()` methods
14
- * Replaced Toolkit `ie8` and `ie9` flags with `hasTransform` and `hasTransition` feature flags
14
+ * Replaced Toolkit `ie8` and `ie9` flags with `hasTransition` feature flag
15
15
  * Renamed `Titon.js` to `Toolkit.js`
16
16
  * jQuery
17
17
  * Prototype inheritance has been rewritten and improved
18
18
  * New properties `component` and `version` have been added to all components
19
19
  * Namespaced element events are now triggered in the format of `<event>.toolkit.<component>`
20
+ * Added `$.cookie()` and `$.removeCookie()` methods
21
+ * Added `swipe`, `swipeleft`, `swiperight`, `swipeup`, and `swipedown` event types for touch devices
20
22
  * Component
21
23
  * Added `process()` to handle non-HTML AJAX responses
22
24
  * Added `onProcess` option event
23
25
  * Updated `requestData()` to call `position()` for HTML responses and `process()` for non-HTML
24
26
  * Updated `requestData()` to accept an object of options as the 1st argument
25
27
  * Updated `fireEvent()` to trigger namespaced element events (jQuery only)
28
+ * Accordion
29
+ * Renamed `.accordion-head` to `.accordion-header`
30
+ * Renamed `.accordion-handle` to `.accordion-section`
31
+ * Renamed `contentElement` option to `sectionElement`
26
32
  * Blackout
27
33
  * Rewritten to be a singleton to differ from the new `Mask` component
28
34
  * Added `Loader` support for in-between states
data/readme.md CHANGED
@@ -6,19 +6,28 @@
6
6
  \/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
7
7
  ```
8
8
 
9
- # Toolkit v1.1.0-rc.2 #
10
- Titon Toolkit is a collection of very powerful user interface components and utility classes.
11
- Each component represents encapsulated HTML, CSS, and JavaScript functionality for role specific page elements.
9
+ # Toolkit v1.1.0 #
10
+ Titon Toolkit is a collection of very powerful user interface components and utility classes
11
+ for the responsive, mobile, and modern web. Each component represents encapsulated HTML, CSS,
12
+ and JavaScript functionality for role specific page elements.
12
13
 
13
- Titon makes use of the latest and greatest technology. This includes CSS3 for animation (fade, slide, etc),
14
- Sass for CSS pre-processing, and Grunt for task and package management.
14
+ Toolkit makes use of the latest and greatest technology. This includes HTML5 for semantics,
15
+ CSS3 for animations and styles, Sass for CSS pre-processing, Grunt for task and package management,
16
+ and powerful new browser APIs for the JavaScript layer.
15
17
 
16
18
  * [Official Website](http://titon.io/toolkit)
17
19
  * [Features](http://titon.io/toolkit#features)
18
20
  * [Components](http://titon.io/toolkit#components)
21
+ * [Interactive Demo](http://demo.titon.io/)
19
22
 
20
23
  ## Learn More ##
21
24
  * [Getting Started](https://github.com/titon/toolkit/blob/master/docs/en/setup/getting-started.md)
22
25
  * [Downloading & Installing](https://github.com/titon/toolkit/blob/master/docs/en/setup/installing.md)
23
26
  * [Custom Builds](https://github.com/titon/toolkit/blob/master/docs/en/setup/custom-builds.md)
24
- * [Browser Compatibility](https://github.com/titon/toolkit/blob/master/docs/en/support/compatibility.md)
27
+ * [Browser Compatibility](https://github.com/titon/toolkit/blob/master/docs/en/support/compatibility.md)
28
+
29
+ ## Documentation ##
30
+
31
+ Documentation for installing and developing with Toolkit can be found within the docs folder.
32
+ Documentation for implementation of components is still in progress, but reading the source code
33
+ or interacting with the demos should provide more than enough information. We hope to have it ready soon!
data/roadmap.md CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  All releases will contain bug fixing and polishing for current features.
4
4
 
5
- ### 1.1.0 ###
6
- * Mask - A component that will mask a target element with a blackout.
7
- * Loader - CSS based loaders and spinners.
8
- * Improvements for Input by adding custom select dropdowns and multi-select support.
9
-
10
5
  ### 1.2.0 ###
11
6
  * Marquee - A component that displays multiple slides at once and allows for cycling through a variable amount. A sister component to the carousel.
12
7
  * Step - A component that highlights a step in a series of consecutive steps (represented by an arrow based navigation).
@@ -26,12 +21,10 @@ All releases will contain bug fixing and polishing for current features.
26
21
  * Add deferred/promise integration.
27
22
  * Inherit options at runtime through data attributes.
28
23
  * Add aria attributes where applicable.
29
- * Remove jQuery mobile dependency for touch events.
30
24
  * Updated to use AMD.
31
25
  * Optimize classes for smaller filesize.
32
26
  * Switch to Gulp.
33
27
  * Improved event binding within the component class.
34
- * Rework cookie management.
35
28
 
36
29
  ### 3.0.0 ###
37
30
  * Remove jQuery dependency and go straight vanilla?
@@ -10,7 +10,7 @@
10
10
  @include reset-list;
11
11
  }
12
12
 
13
- .#{$vendor-prefix}accordion-head {
13
+ .#{$vendor-prefix}accordion-header {
14
14
  padding: $padding;
15
15
  background: $gray;
16
16
  cursor: pointer;
@@ -27,7 +27,7 @@
27
27
  }
28
28
 
29
29
  // Handle is used for animations, do not style it!
30
- .#{$vendor-prefix}accordion-handle {
30
+ .#{$vendor-prefix}accordion-section {
31
31
  overflow: hidden;
32
32
  position: relative;
33
33
  @include transition(all $accordion-transition ease-in-out);
@@ -32,7 +32,7 @@ mark { background: lighten($warning-light, 25%); }
32
32
 
33
33
  //-------------------- Accordion --------------------//
34
34
 
35
- .accordion-head {
35
+ .accordion-header {
36
36
  border: 1px solid $gray-dark;
37
37
  margin: -1px;
38
38
  @include transition(all .15s);
data/version.md CHANGED
@@ -1 +1 @@
1
- 1.1.0-rc.2
1
+ 1.1.0
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: 1.1.0.rc.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Titon
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-02-11 00:00:00.000000000 Z
12
+ date: 2014-02-14 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -128,9 +128,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
128
128
  version: '0'
129
129
  required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  requirements:
131
- - - ">"
131
+ - - ">="
132
132
  - !ruby/object:Gem::Version
133
- version: 1.3.1
133
+ version: '0'
134
134
  requirements: []
135
135
  rubyforge_project:
136
136
  rubygems_version: 2.1.11