@nativescript/template-drawer-navigation-ng 9.0.0 → 9.1.1

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.
@@ -15,11 +15,11 @@
15
15
  <key>CFBundlePackageType</key>
16
16
  <string>APPL</string>
17
17
  <key>CFBundleShortVersionString</key>
18
- <string>1.0</string>
18
+ <string>1.0.0</string>
19
19
  <key>CFBundleSignature</key>
20
20
  <string>????</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>1.0</string>
22
+ <string>1.0.0</string>
23
23
  <key>LSRequiresIPhoneOS</key>
24
24
  <true/>
25
25
  <key>UILaunchStoryboardName</key>
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "src/main.ts",
4
4
  "displayName": "Navigation Drawer",
5
5
  "templateType": "App template",
6
- "version": "9.0.0",
6
+ "version": "9.1.1",
7
7
  "description": "Side navigation template",
8
8
  "author": "NativeScript Team <oss@nativescript.org>",
9
9
  "license": "Apache-2.0",
@@ -41,27 +41,27 @@
41
41
  "url": "https://github.com/NativeScript/NativeScript/issues"
42
42
  },
43
43
  "dependencies": {
44
- "@angular/animations": "~18.0.0",
45
- "@angular/common": "~18.0.0",
46
- "@angular/compiler": "~18.0.0",
47
- "@angular/core": "~18.0.0",
48
- "@angular/forms": "~18.0.0",
49
- "@angular/platform-browser": "~18.0.0",
50
- "@angular/platform-browser-dynamic": "~18.0.0",
51
- "@angular/router": "~18.0.0",
52
- "@nativescript/angular": "^18.0.0",
53
- "@nativescript/core": "~9.0.0",
44
+ "@angular/animations": "~22.0.0",
45
+ "@angular/common": "~22.0.0",
46
+ "@angular/compiler": "~22.0.0",
47
+ "@angular/core": "~22.0.0",
48
+ "@angular/forms": "~22.0.0",
49
+ "@angular/platform-browser": "~22.0.0",
50
+ "@angular/platform-browser-dynamic": "~22.0.0",
51
+ "@angular/router": "~22.0.0",
52
+ "@nativescript/angular": "~22.0.0",
53
+ "@nativescript/core": "~9.1.0",
54
54
  "@nativescript/theme": "^3.1.0",
55
55
  "nativescript-ui-sidedrawer": "~15.2.0",
56
56
  "rxjs": "~7.8.0",
57
- "zone.js": "~0.14.0"
57
+ "zone.js": "~0.16.0"
58
58
  },
59
59
  "devDependencies": {
60
- "@angular-devkit/build-angular": "~18.0.0",
61
- "@angular/compiler-cli": "~18.0.0",
60
+ "@angular-devkit/build-angular": "~22.0.0",
61
+ "@angular/compiler-cli": "~22.0.0",
62
62
  "@nativescript/types": "~9.0.0",
63
63
  "@nativescript/webpack": "~5.0.25",
64
- "@ngtools/webpack": "~18.0.0",
65
- "typescript": "~5.4.0"
64
+ "@ngtools/webpack": "~22.0.0",
65
+ "typescript": "~6.0.0"
66
66
  }
67
67
  }
@@ -10,6 +10,7 @@ import { filter } from 'rxjs/operators'
10
10
  import { Application } from '@nativescript/core'
11
11
 
12
12
  @Component({
13
+ standalone: false,
13
14
  selector: 'ns-app',
14
15
  templateUrl: 'app.component.html',
15
16
  })
@@ -3,6 +3,7 @@ import { RadSideDrawer } from 'nativescript-ui-sidedrawer'
3
3
  import { Application } from '@nativescript/core'
4
4
 
5
5
  @Component({
6
+ standalone: false,
6
7
  selector: 'Browse',
7
8
  templateUrl: './browse.component.html',
8
9
  })
@@ -3,6 +3,7 @@ import { RadSideDrawer } from 'nativescript-ui-sidedrawer'
3
3
  import { Application } from '@nativescript/core'
4
4
 
5
5
  @Component({
6
+ standalone: false,
6
7
  selector: 'Featured',
7
8
  templateUrl: './featured.component.html',
8
9
  })
@@ -3,6 +3,7 @@ import { RadSideDrawer } from 'nativescript-ui-sidedrawer'
3
3
  import { Application } from '@nativescript/core'
4
4
 
5
5
  @Component({
6
+ standalone: false,
6
7
  selector: 'Home',
7
8
  templateUrl: './home.component.html',
8
9
  })
@@ -3,6 +3,7 @@ import { RadSideDrawer } from 'nativescript-ui-sidedrawer'
3
3
  import { Application } from '@nativescript/core'
4
4
 
5
5
  @Component({
6
+ standalone: false,
6
7
  selector: 'Search',
7
8
  templateUrl: './search.component.html',
8
9
  })
@@ -3,6 +3,7 @@ import { RadSideDrawer } from 'nativescript-ui-sidedrawer'
3
3
  import { Application } from '@nativescript/core'
4
4
 
5
5
  @Component({
6
+ standalone: false,
6
7
  selector: 'Settings',
7
8
  templateUrl: './settings.component.html',
8
9
  })
package/tsconfig.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
+ "strict": false,
3
4
  "module": "esnext",
4
5
  "target": "ES2020",
5
6
  "moduleResolution": "bundler",
@@ -9,10 +10,9 @@
9
10
  "noEmitOnError": true,
10
11
  "skipLibCheck": true,
11
12
  "lib": ["ESNext", "dom"],
12
- "baseUrl": ".",
13
13
  "paths": {
14
- "~/*": ["src/*"],
15
- "@/*": ["src/*"]
14
+ "~/*": ["./src/*"],
15
+ "@/*": ["./src/*"]
16
16
  }
17
17
  },
18
18
  "include": ["./src/**/*.ios.ts", "./src/**/*.android.ts"],