Skip to content

Commit 3fb1722

Browse files
committed
chore: format
1 parent 7965d7e commit 3fb1722

File tree

24 files changed

+930
-835
lines changed

24 files changed

+930
-835
lines changed

apps/examples/.postcssrc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"plugins": {
3-
"@tailwindcss/postcss": {}
4-
}
2+
"plugins": {
3+
"@tailwindcss/postcss": {}
4+
}
55
}

apps/examples/src/app/routed-rocks/cursor.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
import { Directive, ElementRef, inject, DOCUMENT } from '@angular/core';
1+
import { Directive, DOCUMENT, ElementRef, inject } from '@angular/core';
32
import { getInstanceState, objectEvents } from 'angular-three';
43
import { Object3D } from 'three';
54

apps/examples/src/app/soba/camera-scroll/overlay.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
import { ChangeDetectionStrategy, Component, ElementRef, inject, viewChild, DOCUMENT } from '@angular/core';
1+
import { ChangeDetectionStrategy, Component, DOCUMENT, ElementRef, inject, viewChild } from '@angular/core';
32
import { SCROLL } from './camera-scroll';
43

54
@Component({

apps/examples/src/app/soba/shoe-configuration/scene.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import { NgTemplateOutlet } from '@angular/common';
22
import {
3-
ChangeDetectionStrategy,
4-
Component,
5-
computed,
6-
CUSTOM_ELEMENTS_SCHEMA,
7-
effect,
8-
inject,
9-
signal,
10-
DOCUMENT
3+
ChangeDetectionStrategy,
4+
Component,
5+
computed,
6+
CUSTOM_ELEMENTS_SCHEMA,
7+
DOCUMENT,
8+
effect,
9+
inject,
10+
signal,
1111
} from '@angular/core';
1212
import { NgtArgs, signalState } from 'angular-three';
1313
import { NgtsOrbitControls } from 'angular-three-soba/controls';

eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
2-
import storybook from "eslint-plugin-storybook";
32

43
const { FlatCompat } = require('@eslint/eslintrc');
54
const js = require('@eslint/js');

libs/cannon/debug/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ The `injectNgtcDebugApi` function is used to inject the `NgtcDebugApi` into your
3030
The `NgtcDebug` directive is applied to the `ngtc-physics` component to enable physics debugging. It has the following inputs:
3131

3232
- `debug`: An object containing the following properties:
33-
3433
- `enabled`: (boolean) Whether the debug visualization is enabled (default: true).
3534
- `color`: (string) The color of the debug visualization (default: 'black').
3635
- `impl`: (typeof CannonDebugger) The implementation of the CannonDebugger to use (default: CannonDebugger).

libs/cannon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"@pmndrs/cannon-worker-api": "^2.0.0",
2929
"cannon-es": ">=0.20.0 <0.21.0",
3030
"cannon-es-debugger": "^1.0.0",
31-
"three": ">=0.157.0 <0.177.0"
31+
"three": ">=0.157.0 <0.177.0"
3232
},
3333
"peerDependenciesMeta": {
3434
"cannon-es-debugger": {

libs/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@angular/common": ">=19.0.0 <21.0.0",
2626
"@angular/core": ">=19.0.0 <21.0.0",
2727
"ngxtension": ">=3.0.0",
28-
"three": ">=0.157.0 <0.177.0"
28+
"three": ">=0.157.0 <0.177.0"
2929
},
3030
"dependencies": {
3131
"tslib": "^2.7.0"

libs/core/src/lib/pipes/hexify.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
import { inject, Pipe, DOCUMENT } from '@angular/core';
1+
import { DOCUMENT, inject, Pipe } from '@angular/core';
32

43
const RGBA_REGEX = /rgba?\((\d+),\s*(\d+),\s*(\d+),?\s*(\d*\.?\d+)?\)/;
54
const DEFAULT_COLOR = 0x000000;

libs/core/src/lib/renderer/renderer.ts

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
21
import {
3-
inject,
4-
Injectable,
5-
InjectionToken,
6-
Injector,
7-
Renderer2,
8-
RendererFactory2,
9-
RendererType2,
10-
Type,
11-
untracked,
12-
DOCUMENT
2+
DOCUMENT,
3+
inject,
4+
Injectable,
5+
InjectionToken,
6+
Injector,
7+
Renderer2,
8+
RendererFactory2,
9+
RendererType2,
10+
Type,
11+
untracked,
1312
} from '@angular/core';
1413
import * as THREE from 'three';
1514
import { NgtArgs } from '../directives/args';

0 commit comments

Comments
 (0)