shaders 2.2.18 → 2.2.20
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.
- package/dist/react/engine/component.template.d.ts +1 -1
- package/dist/solid/engine/component.template.d.ts +1 -1
- package/dist/svelte/components/AngularBlur.svelte.d.ts +1 -1
- package/dist/svelte/components/Ascii.svelte.d.ts +1 -1
- package/dist/svelte/components/Blob.svelte.d.ts +1 -1
- package/dist/svelte/components/Blur.svelte.d.ts +1 -1
- package/dist/svelte/components/Bulge.svelte.d.ts +1 -1
- package/dist/svelte/components/CRTScreen.svelte.d.ts +1 -1
- package/dist/svelte/components/ChannelBlur.svelte.d.ts +1 -1
- package/dist/svelte/components/Checkerboard.svelte.d.ts +1 -1
- package/dist/svelte/components/ChromaFlow.svelte.d.ts +1 -1
- package/dist/svelte/components/ChromaticAberration.svelte.d.ts +1 -1
- package/dist/svelte/components/Circle.svelte.d.ts +1 -1
- package/dist/svelte/components/CursorTrail.svelte.d.ts +1 -1
- package/dist/svelte/components/DiffuseBlur.svelte.d.ts +1 -1
- package/dist/svelte/components/Dither.svelte.d.ts +1 -1
- package/dist/svelte/components/DotGrid.svelte.d.ts +1 -1
- package/dist/svelte/components/Duotone.svelte.d.ts +1 -1
- package/dist/svelte/components/FilmGrain.svelte.d.ts +1 -1
- package/dist/svelte/components/FloatingParticles.svelte.d.ts +1 -1
- package/dist/svelte/components/GlassTiles.svelte.d.ts +1 -1
- package/dist/svelte/components/Glow.svelte.d.ts +1 -1
- package/dist/svelte/components/Godrays.svelte.d.ts +1 -1
- package/dist/svelte/components/Grayscale.svelte.d.ts +1 -1
- package/dist/svelte/components/Grid.svelte.d.ts +1 -1
- package/dist/svelte/components/GridDistortion.svelte.d.ts +1 -1
- package/dist/svelte/components/Group.svelte.d.ts +1 -1
- package/dist/svelte/components/Halftone.svelte.d.ts +1 -1
- package/dist/svelte/components/HueShift.svelte.d.ts +1 -1
- package/dist/svelte/components/ImageTexture.svelte.d.ts +1 -1
- package/dist/svelte/components/Invert.svelte.d.ts +1 -1
- package/dist/svelte/components/LinearBlur.svelte.d.ts +1 -1
- package/dist/svelte/components/LinearGradient.svelte.d.ts +1 -1
- package/dist/svelte/components/Liquify.svelte.d.ts +1 -1
- package/dist/svelte/components/Pixelate.svelte.d.ts +1 -1
- package/dist/svelte/components/PolarCoordinates.svelte.d.ts +1 -1
- package/dist/svelte/components/Posterize.svelte.d.ts +1 -1
- package/dist/svelte/components/ProgressiveBlur.svelte.d.ts +1 -1
- package/dist/svelte/components/RadialGradient.svelte.d.ts +1 -1
- package/dist/svelte/components/RectangularCoordinates.svelte.d.ts +1 -1
- package/dist/svelte/components/Ripples.svelte.d.ts +1 -1
- package/dist/svelte/components/Saturation.svelte.d.ts +1 -1
- package/dist/svelte/components/SimplexNoise.svelte.d.ts +1 -1
- package/dist/svelte/components/SineWave.svelte.d.ts +1 -1
- package/dist/svelte/components/SolidColor.svelte.d.ts +1 -1
- package/dist/svelte/components/Spherize.svelte.d.ts +1 -1
- package/dist/svelte/components/Spiral.svelte.d.ts +1 -1
- package/dist/svelte/components/Strands.svelte.d.ts +1 -1
- package/dist/svelte/components/Stretch.svelte.d.ts +1 -1
- package/dist/svelte/components/Swirl.svelte.d.ts +1 -1
- package/dist/svelte/components/TiltShift.svelte.d.ts +1 -1
- package/dist/svelte/components/Tritone.svelte.d.ts +1 -1
- package/dist/svelte/components/Twirl.svelte.d.ts +1 -1
- package/dist/svelte/components/Vibrance.svelte.d.ts +1 -1
- package/dist/svelte/components/WaveDistortion.svelte.d.ts +1 -1
- package/dist/svelte/components/ZoomBlur.svelte.d.ts +1 -1
- package/dist/svelte/engine/component.template.svelte.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { BlendMode, TransformConfig } from '../../core';
|
|
3
|
-
import { ComponentProps } from '../../core/__SHADER_NAME__';
|
|
3
|
+
import { ComponentProps } from '../../core/shaders/__SHADER_NAME__';
|
|
4
4
|
|
|
5
5
|
export type { ComponentProps };
|
|
6
6
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { JSX } from 'solid-js';
|
|
2
2
|
import { BlendMode, TransformConfig } from '../../core';
|
|
3
|
-
import { ComponentProps } from '../../core/__SHADER_NAME__';
|
|
3
|
+
import { ComponentProps } from '../../core/shaders/__SHADER_NAME__';
|
|
4
4
|
export type { ComponentProps };
|
|
5
5
|
/**
|
|
6
6
|
* Base props that all shader components have
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/AngularBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/AngularBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Ascii';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Ascii';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Blob';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Blob';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Blur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Blur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Bulge';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Bulge';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/CRTScreen';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/CRTScreen';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ChannelBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ChannelBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Checkerboard';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Checkerboard';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ChromaFlow';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ChromaFlow';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ChromaticAberration';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ChromaticAberration';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Circle';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Circle';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/CursorTrail';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/CursorTrail';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/DiffuseBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/DiffuseBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Dither';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Dither';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/DotGrid';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/DotGrid';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Duotone';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Duotone';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/FilmGrain';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/FilmGrain';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/FloatingParticles';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/FloatingParticles';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/GlassTiles';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/GlassTiles';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Glow';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Glow';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Godrays';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Godrays';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Grayscale';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Grayscale';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Grid';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Grid';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/GridDistortion';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/GridDistortion';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Group';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Group';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Halftone';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Halftone';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/HueShift';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/HueShift';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ImageTexture';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ImageTexture';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Invert';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Invert';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/LinearBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/LinearBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/LinearGradient';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/LinearGradient';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Liquify';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Liquify';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Pixelate';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Pixelate';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/PolarCoordinates';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/PolarCoordinates';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Posterize';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Posterize';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ProgressiveBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ProgressiveBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/RadialGradient';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/RadialGradient';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/RectangularCoordinates';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/RectangularCoordinates';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Ripples';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Ripples';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Saturation';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Saturation';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/SimplexNoise';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/SimplexNoise';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/SineWave';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/SineWave';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/SolidColor';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/SolidColor';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Spherize';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Spherize';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Spiral';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Spiral';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Strands';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Strands';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Stretch';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Stretch';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Swirl';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Swirl';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/TiltShift';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/TiltShift';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Tritone';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Tritone';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Twirl';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Twirl';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/Vibrance';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/Vibrance';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/WaveDistortion';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/WaveDistortion';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/ZoomBlur';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/ZoomBlur';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type BlendMode, type TransformConfig } from '../../core';
|
|
2
|
-
import { type ComponentProps } from '../../core/__SHADER_NAME__';
|
|
2
|
+
import { type ComponentProps } from '../../core/shaders/__SHADER_NAME__';
|
|
3
3
|
/**
|
|
4
4
|
* Define component props including blend mode, opacity, visibility, masking, and transformation
|
|
5
5
|
*/
|
package/package.json
CHANGED