Skip to content

Commit fdac76f

Browse files
author
Will Johnston
committed
incrementing version
1 parent b697516 commit fdac76f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

framework/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework",
3-
"version": "0.12.11",
3+
"version": "0.12.12",
44
"description": "",
55
"main": "gruntfile.js",
66
"devDependencies": {

framework/testing/framework/platypus.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* PlatypusTS v0.12.11 (http://getplatypi.com)
2+
* PlatypusTS v0.12.12 (http://getplatypi.com)
33
* Copyright 2015 Platypi, LLC. All rights reserved.
44
*
55
* PlatypusTS is licensed under the GPL-3.0 found at
@@ -7493,7 +7493,7 @@ declare module plat {
74937493
* after the animation has started. Defaults to false as we want to remove
74947494
* any initial state after an animation has kicked off.
74957495
*/
7496-
preserveInit: boolean;
7496+
preserveInit?: boolean;
74977497
}
74987498
/**
74997499
* An animation control that fades in an element as defined by the included CSS.
@@ -7641,20 +7641,20 @@ declare module plat {
76417641
* A JavaScript object with key value pairs for adjusting transition values.
76427642
* (e.g. { width: '800px' } would set the element's width to 800px.
76437643
*/
7644-
properties: IObject<string>;
7644+
properties?: IObject<string>;
76457645
/**
76467646
* A boolean specifying whether or not to leave the '*-init' class on the element
76477647
* after the transition has started. Defaults to true as we want to keep all
76487648
* initial states and definitions throughout the transition
76497649
* (and/or initial transition states will be overwritten upon start).
76507650
*/
7651-
preserveInit: boolean;
7651+
preserveInit?: boolean;
76527652
/**
76537653
* A defined transition count number. Useful when the transition property name 'all'
76547654
* is used in conjunction with another transition property and transitions are being
76557655
* performed through CSS.
76567656
*/
7657-
count: number;
7657+
count?: number;
76587658
}
76597659
}
76607660
/**

0 commit comments

Comments
 (0)