File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " framework" ,
3- "version" : " 0.12.11 " ,
3+ "version" : " 0.12.12 " ,
44 "description" : " " ,
55 "main" : " gruntfile.js" ,
66 "devDependencies" : {
Original file line number Diff line number Diff line change 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 /**
You can’t perform that action at this time.
0 commit comments