Skip to content

Commit fc4d962

Browse files
Chau TranChau Tran
authored andcommitted
docs: remove colorKeyword type
1 parent 16ed946 commit fc4d962

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.release-it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"releaseName": "Release ${version}"
4141
},
4242
"hooks": {
43-
"before:bump": "pnpm exec nx run-many --target=package --projects=angular-three,soba,postprocessing,cannon",
43+
"before:bump": "pnpm exec nx run-many --target=package --projects=angular-three,soba,postprocessing,cannon --parallel=false",
4444
"after:bump": ["git checkout -- package.json"]
4545
}
4646
}

apps/sandbox/src/app/pages/keen/scene.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<ngtp-effect-composer>
1515
<ngtp-bloom [intensity]="5" />
16-
<!-- <ngtp-dot-screen [scale]="3" /> -->
16+
<ngtp-dot-screen [scale]="3" />
1717
</ngtp-effect-composer>
1818

1919
<ngts-orbit-controls />

libs/soba/src/setup-canvas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ export function number(
262262
return { defaultValue, control: { control: { type: range ? 'range' : 'number', ...rest } } };
263263
}
264264

265-
export function color(defaultValue: string, { presetColors = [] }: { presetColors?: THREE.ColorKeyword[] } = {}) {
265+
export function color(defaultValue: string, { presetColors = [] }: { presetColors?: string[] } = {}) {
266266
return { defaultValue, control: { control: { type: 'color', presetColors } } };
267267
}
268268

0 commit comments

Comments
 (0)