@nativescript/template-tab-navigation-vue 9.0.3 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@
5
5
  </ActionBar>
6
6
 
7
7
  <GridLayout>
8
- <Label class="far text-7xl text-gray-400 text-center" style="vertical-align: top; margin-top: 20%" text.decode="&#xf1ea;"/>
8
+ <Label class="far text-7xl text-gray-400 text-center" style="vertical-align: top; margin-top: 20%" :text="'\uf1ea'"/>
9
9
  <Label class="text-xl text-gray-400 text-center align-middle" text="Browse page content goes here"/>
10
10
  </GridLayout>
11
11
  </Page>
@@ -5,7 +5,7 @@
5
5
  </ActionBar>
6
6
 
7
7
  <GridLayout>
8
- <Label class="fas text-7xl text-gray-400 text-center" style="vertical-align: top; margin-top: 20%" text.decode="&#xf002;"/>
8
+ <Label class="fas text-7xl text-gray-400 text-center" style="vertical-align: top; margin-top: 20%" :text="'\uf002'"/>
9
9
  <Label class="text-xl text-gray-400 text-center align-middle" text="Search page content goes here"/>
10
10
  </GridLayout>
11
11
  </Page>
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nativescript/template-tab-navigation-vue",
3
3
  "main": "app/app.ts",
4
4
  "displayName": "Tabs",
5
- "version": "9.0.3",
5
+ "version": "9.1.0",
6
6
  "description": "Tabbed interface template using Vue",
7
7
  "author": "NativeScript Team <oss@nativescript.org>",
8
8
  "license": "Apache-2.0",
@@ -41,7 +41,7 @@
41
41
  "category-general"
42
42
  ],
43
43
  "dependencies": {
44
- "@nativescript/core": "~9.0.0",
44
+ "@nativescript/core": "~9.1.0",
45
45
  "nativescript-vue": "^3.0.0"
46
46
  },
47
47
  "devDependencies": {
@@ -50,6 +50,6 @@
50
50
  "@nativescript/webpack": "~5.0.31",
51
51
  "@types/node": "^20.0.0",
52
52
  "tailwindcss": "^4.0.0",
53
- "typescript": "~5.8.0"
53
+ "typescript": "~6.0.0"
54
54
  }
55
55
  }
package/tsconfig.json CHANGED
@@ -8,12 +8,11 @@
8
8
  "sourceMap": true,
9
9
  "noEmitHelpers": true,
10
10
  "importHelpers": true,
11
- "baseUrl": ".",
12
11
  "paths": {
13
- "~/*": ["app/*"],
14
- "@/*": ["app/*"]
12
+ "~/*": ["./app/*"],
13
+ "@/*": ["./app/*"]
15
14
  },
16
- "typeRoots": ["types"],
15
+ "typeRoots": ["./types", "./node_modules/@types"],
17
16
  "types": ["node"],
18
17
  "allowSyntheticDefaultImports": true,
19
18
  "esModuleInterop": true,