diff --git a/apps/app/ui-tests-app/issues/issue-5274.css b/apps/app/ui-tests-app/issues/issue-5274.css
new file mode 100644
index 000000000..fbb7ab199
--- /dev/null
+++ b/apps/app/ui-tests-app/issues/issue-5274.css
@@ -0,0 +1,5 @@
+.paddingCssPanel{
+ vertical-align: center;
+ font-size: 20;
+ margin: 15;
+}
\ No newline at end of file
diff --git a/apps/app/ui-tests-app/issues/issue-5274.xml b/apps/app/ui-tests-app/issues/issue-5274.xml
new file mode 100644
index 000000000..00a75c59f
--- /dev/null
+++ b/apps/app/ui-tests-app/issues/issue-5274.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/apps/app/ui-tests-app/issues/main-page.ts b/apps/app/ui-tests-app/issues/main-page.ts
index 869b61d54..fa2dec103 100644
--- a/apps/app/ui-tests-app/issues/main-page.ts
+++ b/apps/app/ui-tests-app/issues/main-page.ts
@@ -26,6 +26,7 @@ export function loadExamples() {
examples.set("tabview-with-scrollview_4022", "issues/tabview-with-scrollview_4022");
examples.set("3354-ios", "issues/issue-3354");
examples.set("4450", "issues/issue-4450");
+ examples.set("5274", "issues/issue-5274");
return examples;
}
\ No newline at end of file
diff --git a/apps/package.json b/apps/package.json
index a8ac4a6db..70c68f984 100644
--- a/apps/package.json
+++ b/apps/package.json
@@ -5,11 +5,11 @@
"repository": "",
"nativescript": {
"id": "org.nativescript.apps",
- "tns-ios": {
- "version": "3.4.1"
- },
"tns-android": {
- "version": "3.4.1"
+ "version": "next"
+ },
+ "tns-ios": {
+ "version": "next"
}
},
"dependencies": {
@@ -20,8 +20,8 @@
"babel-types": "6.11.1",
"babylon": "6.8.3",
"lazy": "1.0.11",
- "nativescript-dev-typescript": "^0.5.0",
+ "nativescript-dev-typescript": "^0.7.1",
"tns-platform-declarations": "*",
- "typescript": "^2.6.1"
+ "typescript": "^2.7.2"
}
-}
+}
\ No newline at end of file
diff --git a/apps/tsconfig.json b/apps/tsconfig.json
index c06a3a67e..4f5d9b3d1 100644
--- a/apps/tsconfig.json
+++ b/apps/tsconfig.json
@@ -3,5 +3,21 @@
"exclude": [
"node_modules",
"platforms"
- ]
+ ],
+ "compilerOptions": {
+ "baseUrl": ".",
+ "paths": {
+ "*": [
+ "./node_modules/tns-core-modules/*",
+ "./node_modules/*"
+ ],
+ "~/*": [
+ "app/*"
+ ]
+ },
+ "lib": [
+ "es6",
+ "dom"
+ ]
+ }
}
\ No newline at end of file