Skip to content

Commit b07816b

Browse files
committed
chore: update nx
1 parent aea07c6 commit b07816b

File tree

19 files changed

+30611
-23684
lines changed

19 files changed

+30611
-23684
lines changed

CHANGELOG.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
2-
31
## [2.0.0-beta.17](https://github.com/angular-threejs/angular-three/compare/2.0.0-beta.16...2.0.0-beta.17) (2023-08-23)
42

5-
63
### Bug Fixes
74

8-
* **core:** adjust createAttachFn positional type arguments ([b65fe57](https://github.com/angular-threejs/angular-three/commit/b65fe57bc8ab21089ebce86835c0508908f8a755))
9-
5+
- **core:** adjust createAttachFn positional type arguments ([b65fe57](https://github.com/angular-threejs/angular-three/commit/b65fe57bc8ab21089ebce86835c0508908f8a755))
106

117
### Documentations
128

13-
* adjust sandbox app component ([15b0a27](https://github.com/angular-threejs/angular-three/commit/15b0a279588dfe125e390093427b48ea09eaea17))
9+
- adjust sandbox app component ([15b0a27](https://github.com/angular-threejs/angular-three/commit/15b0a279588dfe125e390093427b48ea09eaea17))
1410

1511
## [2.0.0-beta.16](https://github.com/angular-threejs/angular-three/compare/2.0.0-beta.15...2.0.0-beta.16) (2023-08-16)
1612

@@ -64,4 +60,4 @@
6460

6561
### Features
6662

67-
- **core:** generate core ([e1cf6c7](https://github.com/angular-threejs/angular-three/commit/e1cf6c7422668afbbc0f767a444bcc591e1a6903))
63+
- **core:** generate core ([e1cf6c7](https://github.com/angular-threejs/angular-three/commit/e1cf6c7422668afbbc0f767a444bcc591e1a6903))

apps/examples/src/app/app.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { RouterOutlet } from '@angular/router';
55
selector: 'examples-root',
66
standalone: true,
77
imports: [RouterOutlet],
8-
template: ` <router-outlet />`,
8+
template: `
9+
<router-outlet />
10+
`,
911
})
1012
export class AppComponent {}

apps/sandbox/src/app/bot/canvas.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import { BotScene } from './scene.component';
44

55
@Component({
66
standalone: true,
7-
template: ` <ngt-canvas [sceneGraph]="scene" [shadows]="true" /> `,
7+
template: `
8+
<ngt-canvas [sceneGraph]="scene" [shadows]="true" />
9+
`,
810
imports: [NgtCanvas],
911
host: { class: 'bot-canvas' },
1012
})

apps/sandbox/src/app/skydiving/components/wind-effect.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ import * as THREE from 'three';
77
@Component({
88
selector: 'app-wind-shape',
99
standalone: true,
10-
template: ` <ngts-instance color="white" [instanceRef]="ref" [position]="randomPosition" /> `,
10+
template: `
11+
<ngts-instance color="white" [instanceRef]="ref" [position]="randomPosition" />
12+
`,
1113
imports: [NgtsInstance],
1214
schemas: [CUSTOM_ELEMENTS_SCHEMA],
1315
})

libs/cannon/src/lib/physics.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ export const [injectNgtcPhysicsApi, provideNgtcPhysicsApi] = createInjectionToke
7676
@Component({
7777
selector: 'ngtc-physics',
7878
standalone: true,
79-
template: `<ng-content />`,
79+
template: `
80+
<ng-content />
81+
`,
8082
providers: [provideNgtcPhysicsApi()],
8183
})
8284
export class NgtcPhysics implements OnInit {

libs/core/src/lib/canvas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export type NgtCanvasInputs = {
116116
standalone: true,
117117
template: `
118118
<div (ngxResize)="onResize($event)" style="height: 100%; width: 100%;">
119-
<canvas #glCanvas style="display: block;"> </canvas>
119+
<canvas #glCanvas style="display: block;"></canvas>
120120
</div>
121121
`,
122122
imports: [NgxResize],

libs/core/src/lib/routed-scene.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ import { safeDetectChanges } from './utils/safe-detect-changes';
88
@Component({
99
standalone: true,
1010
selector: 'ngt-routed-scene',
11-
template: `<router-outlet />`,
11+
template: `
12+
<router-outlet />
13+
`,
1214
imports: [RouterOutlet],
1315
})
1416
export class NgtRoutedScene {

libs/postprocessing/src/lib/effects/lut/lut.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ declare global {
1717
@Component({
1818
selector: 'ngtp-lut',
1919
standalone: true,
20-
template: ` <ngt-primitive *args="[effect()]" [ref]="effectRef" /> `,
20+
template: `
21+
<ngt-primitive *args="[effect()]" [ref]="effectRef" />
22+
`,
2123
imports: [NgtArgs],
2224
schemas: [CUSTOM_ELEMENTS_SCHEMA],
2325
})

libs/postprocessing/src/lib/effects/pixelation/pixelation.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ declare global {
1616
@Component({
1717
selector: 'ngtp-pixelation',
1818
standalone: true,
19-
template: ` <ngt-primitive *args="[effect()]" [ref]="effectRef" /> `,
19+
template: `
20+
<ngt-primitive *args="[effect()]" [ref]="effectRef" />
21+
`,
2022
imports: [NgtArgs],
2123
schemas: [CUSTOM_ELEMENTS_SCHEMA],
2224
})

libs/postprocessing/src/lib/effects/ssao/ssao.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ declare global {
1515
@Component({
1616
selector: 'ngtp-SSAO',
1717
standalone: true,
18-
template: ` <ngt-primitive *args="[effect()]" [ref]="effectRef" /> `,
18+
template: `
19+
<ngt-primitive *args="[effect()]" [ref]="effectRef" />
20+
`,
1921
imports: [NgtArgs],
2022
schemas: [CUSTOM_ELEMENTS_SCHEMA],
2123
})

0 commit comments

Comments
 (0)