Skip to content

Commit 9e6c73e

Browse files
committed
Syiro 1.7.0-rc2 release
1 parent 5021175 commit 9e6c73e

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ We have a [document that highlights our policy](http://stroblindustries.com/devc
2828

2929
You can download our [stable 1.6.0 release](https://github.com/StroblIndustries/Syiro/releases/download/1.6.0/stable.tar.gz) which provides the necessary minified CSS, images and JS wrapped in a nice package.
3030

31-
You can also download our [devel 1.7.0-rc1 release](https://github.com/StroblIndustries/Syiro/releases/download/1.7.0-rc1/devel.tar.xz).
31+
You can also download our [devel 1.7.0-rc2 release](https://github.com/StroblIndustries/Syiro/releases/download/1.7.0-rc2/devel.tar.xz).
3232

3333
The package also comes with a gzipped version of the JavaScript code, so you can easily serve the compressed content.
3434

@@ -39,7 +39,7 @@ Framework | Minified CSS | Minified JS | Gzipped JS
3939
Bootstrap 3.3.6 | 36.9kb | 122.5kb | None Provided
4040
Polymer 1.3.1 | Varies depending on use of components | 155.3kb | None Provided
4141
Syiro 1.6.0 | 31.7kb | 63.8kb | 14.4kb
42-
Syiro 1.7.0-rc1 | 29.4kb | 58.1kb | 13.0kb
42+
Syiro 1.7.0-rc2 | 29.0kb | 56.2kb | 12.5kb
4343
Syiro (DEV) | 29.0kb | 56.2kb | 12.5kb
4444

4545
Details:

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Stable: 1.6.0
2-
Devel: 1.7.0-rc1
2+
Devel: 1.7.0-rc2

build/syiro.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ declare namespace syiro.style {
147147
function Set(component: any, property: string, value: string): boolean;
148148
}
149149
declare namespace syiro.render {
150-
function Position(positioningList: (string | Array<string>), componentObject: any, relativeComponentObject: any): boolean;
150+
function Position(positioningList: string | Array<string>, componentObject: any, relativeComponentObject: any): boolean;
151151
}
152152
declare namespace syiro.component {
153153
var lastUniqueIds: Object;

src/typescript/render.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace syiro.render {
1111

1212
// Position
1313
// Position a Component or Element relative to another one
14-
export function Position(positioningList : (string | Array<string>), componentObject : any, relativeComponentObject : any) : boolean {
14+
export function Position(positioningList : string | Array<string>, componentObject : any, relativeComponentObject : any) : boolean {
1515
let positioningAllowed : boolean = false; // Define positioningAllowed as a boolean, defaulting to false
1616

1717
if (arguments.length == 3){ // If three arguments were passed

0 commit comments

Comments
 (0)