@remotion/effects 4.0.471 → 4.0.472
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/color-key.d.ts +47 -0
- package/dist/color-utils.d.ts +4 -1
- package/dist/dot-grid.d.ts +2 -0
- package/dist/duotone.d.ts +1 -0
- package/dist/esm/barrel-distortion.mjs +9 -5
- package/dist/esm/blur.mjs +2 -1
- package/dist/esm/brightness.mjs +7 -4
- package/dist/esm/chromatic-aberration.mjs +10 -6
- package/dist/esm/color-key.mjs +419 -0
- package/dist/esm/contrast.mjs +7 -4
- package/dist/esm/dot-grid.mjs +11 -6
- package/dist/esm/drop-shadow.mjs +15 -8
- package/dist/esm/duotone.mjs +9 -5
- package/dist/esm/evolve.mjs +11 -6
- package/dist/esm/fisheye.mjs +13 -7
- package/dist/esm/glow.mjs +13 -7
- package/dist/esm/grayscale.mjs +7 -4
- package/dist/esm/halftone-linear-gradient.mjs +13 -7
- package/dist/esm/halftone.mjs +16 -11
- package/dist/esm/hue.mjs +7 -4
- package/dist/esm/index.mjs +24 -15
- package/dist/esm/invert.mjs +7 -4
- package/dist/esm/linear-progressive-blur.mjs +530 -0
- package/dist/esm/lines.mjs +14 -10
- package/dist/esm/mirror.mjs +9 -5
- package/dist/esm/noise.mjs +11 -6
- package/dist/esm/pixel-dissolve.mjs +17 -9
- package/dist/esm/rings.mjs +13 -7
- package/dist/esm/saturation.mjs +7 -4
- package/dist/esm/scale.mjs +2 -1
- package/dist/esm/scanlines.mjs +15 -8
- package/dist/esm/shine.mjs +18 -12
- package/dist/esm/speckle.mjs +13 -7
- package/dist/esm/tint.mjs +9 -5
- package/dist/esm/translate.mjs +15 -8
- package/dist/esm/vignette.mjs +40 -12
- package/dist/esm/wave.mjs +6 -3
- package/dist/esm/waves.mjs +20 -13
- package/dist/esm/white-noise.mjs +11 -6
- package/dist/esm/zigzag.mjs +18 -12
- package/dist/evolve.d.ts +2 -0
- package/dist/halftone-linear-gradient.d.ts +3 -0
- package/dist/halftone.d.ts +5 -3
- package/dist/linear-progressive-blur/index.d.ts +28 -0
- package/dist/linear-progressive-blur/linear-progressive-blur-runtime.d.ts +32 -0
- package/dist/linear-progressive-blur/linear-progressive-blur-shaders.d.ts +2 -0
- package/dist/linear-progressive-blur.d.ts +1 -0
- package/dist/lines.d.ts +4 -3
- package/dist/rings.d.ts +3 -0
- package/dist/tint.d.ts +1 -0
- package/dist/vignette.d.ts +13 -0
- package/dist/waves.d.ts +7 -3
- package/dist/zigzag.d.ts +6 -3
- package/package.json +19 -3
- package/dist/effect-internals.d.ts +0 -8
- package/dist/entrypoints/blur.d.ts +0 -6
package/dist/esm/dot-grid.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -107,7 +110,8 @@ var dotGridSchema = {
|
|
|
107
110
|
max: 400,
|
|
108
111
|
step: 1,
|
|
109
112
|
default: DEFAULT_DOT_SIZE,
|
|
110
|
-
description: "Dot size"
|
|
113
|
+
description: "Dot size",
|
|
114
|
+
hiddenFromList: false
|
|
111
115
|
},
|
|
112
116
|
gridSize: {
|
|
113
117
|
type: "number",
|
|
@@ -115,7 +119,8 @@ var dotGridSchema = {
|
|
|
115
119
|
max: 400,
|
|
116
120
|
step: 1,
|
|
117
121
|
default: DEFAULT_GRID_SIZE,
|
|
118
|
-
description: "Grid size"
|
|
122
|
+
description: "Grid size",
|
|
123
|
+
hiddenFromList: false
|
|
119
124
|
},
|
|
120
125
|
invert: {
|
|
121
126
|
type: "boolean",
|
package/dist/esm/drop-shadow.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -526,19 +529,22 @@ var dropShadowSchema = {
|
|
|
526
529
|
max: 100,
|
|
527
530
|
step: 1,
|
|
528
531
|
default: DEFAULT_RADIUS,
|
|
529
|
-
description: "Radius"
|
|
532
|
+
description: "Radius",
|
|
533
|
+
hiddenFromList: false
|
|
530
534
|
},
|
|
531
535
|
offsetX: {
|
|
532
536
|
type: "number",
|
|
533
537
|
step: 1,
|
|
534
538
|
default: DEFAULT_OFFSET_X,
|
|
535
|
-
description: "Offset X"
|
|
539
|
+
description: "Offset X",
|
|
540
|
+
hiddenFromList: false
|
|
536
541
|
},
|
|
537
542
|
offsetY: {
|
|
538
543
|
type: "number",
|
|
539
544
|
step: 1,
|
|
540
545
|
default: DEFAULT_OFFSET_Y,
|
|
541
|
-
description: "Offset Y"
|
|
546
|
+
description: "Offset Y",
|
|
547
|
+
hiddenFromList: false
|
|
542
548
|
},
|
|
543
549
|
opacity: {
|
|
544
550
|
type: "number",
|
|
@@ -546,7 +552,8 @@ var dropShadowSchema = {
|
|
|
546
552
|
max: 1,
|
|
547
553
|
step: 0.01,
|
|
548
554
|
default: DEFAULT_OPACITY,
|
|
549
|
-
description: "Opacity"
|
|
555
|
+
description: "Opacity",
|
|
556
|
+
hiddenFromList: false
|
|
550
557
|
},
|
|
551
558
|
color: {
|
|
552
559
|
type: "color",
|
package/dist/esm/duotone.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -117,7 +120,8 @@ var duotoneSchema = {
|
|
|
117
120
|
max: 1,
|
|
118
121
|
step: 0.01,
|
|
119
122
|
default: DEFAULT_LUMINANCE_THRESHOLD,
|
|
120
|
-
description: "Luminance threshold"
|
|
123
|
+
description: "Luminance threshold",
|
|
124
|
+
hiddenFromList: false
|
|
121
125
|
}
|
|
122
126
|
};
|
|
123
127
|
var resolve = (p) => ({
|
package/dist/esm/evolve.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -108,7 +111,8 @@ var evolveSchema = {
|
|
|
108
111
|
max: 1,
|
|
109
112
|
step: 0.01,
|
|
110
113
|
default: DEFAULT_PROGRESS,
|
|
111
|
-
description: "Progress"
|
|
114
|
+
description: "Progress",
|
|
115
|
+
hiddenFromList: false
|
|
112
116
|
},
|
|
113
117
|
direction: {
|
|
114
118
|
type: "enum",
|
|
@@ -127,7 +131,8 @@ var evolveSchema = {
|
|
|
127
131
|
max: 1,
|
|
128
132
|
step: 0.01,
|
|
129
133
|
default: DEFAULT_FEATHER,
|
|
130
|
-
description: "Feather"
|
|
134
|
+
description: "Feather",
|
|
135
|
+
hiddenFromList: false
|
|
131
136
|
}
|
|
132
137
|
};
|
|
133
138
|
var formatEnum = (variants) => {
|
package/dist/esm/fisheye.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -337,7 +340,8 @@ var fisheyeSchema = {
|
|
|
337
340
|
max: MAX_FIELD_OF_VIEW,
|
|
338
341
|
step: 0.01,
|
|
339
342
|
default: DEFAULT_FISHEYE_FIELD_OF_VIEW,
|
|
340
|
-
description: "Field of view"
|
|
343
|
+
description: "Field of view",
|
|
344
|
+
hiddenFromList: false
|
|
341
345
|
},
|
|
342
346
|
center: {
|
|
343
347
|
type: "uv-coordinate",
|
|
@@ -353,7 +357,8 @@ var fisheyeSchema = {
|
|
|
353
357
|
max: 3,
|
|
354
358
|
step: 0.01,
|
|
355
359
|
default: DEFAULT_FISHEYE_RADIUS,
|
|
356
|
-
description: "Radius"
|
|
360
|
+
description: "Radius",
|
|
361
|
+
hiddenFromList: false
|
|
357
362
|
},
|
|
358
363
|
zoom: {
|
|
359
364
|
type: "number",
|
|
@@ -361,7 +366,8 @@ var fisheyeSchema = {
|
|
|
361
366
|
max: 5,
|
|
362
367
|
step: 0.01,
|
|
363
368
|
default: DEFAULT_FISHEYE_ZOOM,
|
|
364
|
-
description: "Zoom"
|
|
369
|
+
description: "Zoom",
|
|
370
|
+
hiddenFromList: false
|
|
365
371
|
}
|
|
366
372
|
};
|
|
367
373
|
var resolve = (p) => ({
|
package/dist/esm/glow.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -521,7 +524,8 @@ var glowSchema = {
|
|
|
521
524
|
max: 100,
|
|
522
525
|
step: 1,
|
|
523
526
|
default: DEFAULT_RADIUS,
|
|
524
|
-
description: "Radius"
|
|
527
|
+
description: "Radius",
|
|
528
|
+
hiddenFromList: false
|
|
525
529
|
},
|
|
526
530
|
intensity: {
|
|
527
531
|
type: "number",
|
|
@@ -529,7 +533,8 @@ var glowSchema = {
|
|
|
529
533
|
max: 5,
|
|
530
534
|
step: 0.1,
|
|
531
535
|
default: DEFAULT_INTENSITY,
|
|
532
|
-
description: "Intensity"
|
|
536
|
+
description: "Intensity",
|
|
537
|
+
hiddenFromList: false
|
|
533
538
|
},
|
|
534
539
|
threshold: {
|
|
535
540
|
type: "number",
|
|
@@ -537,7 +542,8 @@ var glowSchema = {
|
|
|
537
542
|
max: 1,
|
|
538
543
|
step: 0.01,
|
|
539
544
|
default: DEFAULT_THRESHOLD,
|
|
540
|
-
description: "Threshold"
|
|
545
|
+
description: "Threshold",
|
|
546
|
+
hiddenFromList: false
|
|
541
547
|
},
|
|
542
548
|
color: {
|
|
543
549
|
type: "color",
|
package/dist/esm/grayscale.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -111,7 +114,8 @@ var halftoneLinearGradientSchema = {
|
|
|
111
114
|
max: 400,
|
|
112
115
|
step: 1,
|
|
113
116
|
default: DEFAULT_FIRST_STOP_DOT_SIZE,
|
|
114
|
-
description: "First stop dot size"
|
|
117
|
+
description: "First stop dot size",
|
|
118
|
+
hiddenFromList: false
|
|
115
119
|
},
|
|
116
120
|
secondStopDotSize: {
|
|
117
121
|
type: "number",
|
|
@@ -119,7 +123,8 @@ var halftoneLinearGradientSchema = {
|
|
|
119
123
|
max: 400,
|
|
120
124
|
step: 1,
|
|
121
125
|
default: DEFAULT_SECOND_STOP_DOT_SIZE,
|
|
122
|
-
description: "Second stop dot size"
|
|
126
|
+
description: "Second stop dot size",
|
|
127
|
+
hiddenFromList: false
|
|
123
128
|
},
|
|
124
129
|
firstStopPosition: {
|
|
125
130
|
type: "uv-coordinate",
|
|
@@ -143,7 +148,8 @@ var halftoneLinearGradientSchema = {
|
|
|
143
148
|
max: 400,
|
|
144
149
|
step: 1,
|
|
145
150
|
default: DEFAULT_GRID_SIZE,
|
|
146
|
-
description: "Grid size"
|
|
151
|
+
description: "Grid size",
|
|
152
|
+
hiddenFromList: false
|
|
147
153
|
},
|
|
148
154
|
colorMode: {
|
|
149
155
|
type: "enum",
|
package/dist/esm/halftone.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -107,7 +110,8 @@ var halftoneSchema = {
|
|
|
107
110
|
max: 200,
|
|
108
111
|
step: 1,
|
|
109
112
|
default: 20,
|
|
110
|
-
description: "Dot size"
|
|
113
|
+
description: "Dot size",
|
|
114
|
+
hiddenFromList: false
|
|
111
115
|
},
|
|
112
116
|
dotSpacing: {
|
|
113
117
|
type: "number",
|
|
@@ -115,12 +119,11 @@ var halftoneSchema = {
|
|
|
115
119
|
max: 200,
|
|
116
120
|
step: 1,
|
|
117
121
|
default: 20,
|
|
118
|
-
description: "Dot spacing"
|
|
122
|
+
description: "Dot spacing",
|
|
123
|
+
hiddenFromList: false
|
|
119
124
|
},
|
|
120
125
|
rotation: {
|
|
121
|
-
type: "
|
|
122
|
-
min: -180,
|
|
123
|
-
max: 180,
|
|
126
|
+
type: "rotation-degrees",
|
|
124
127
|
step: 1,
|
|
125
128
|
default: 0,
|
|
126
129
|
description: "Rotation"
|
|
@@ -129,13 +132,15 @@ var halftoneSchema = {
|
|
|
129
132
|
type: "number",
|
|
130
133
|
step: 1,
|
|
131
134
|
default: 0,
|
|
132
|
-
description: "Offset X"
|
|
135
|
+
description: "Offset X",
|
|
136
|
+
hiddenFromList: false
|
|
133
137
|
},
|
|
134
138
|
offsetY: {
|
|
135
139
|
type: "number",
|
|
136
140
|
step: 1,
|
|
137
141
|
default: 0,
|
|
138
|
-
description: "Offset Y"
|
|
142
|
+
description: "Offset Y",
|
|
143
|
+
hiddenFromList: false
|
|
139
144
|
},
|
|
140
145
|
shape: {
|
|
141
146
|
type: "enum",
|
package/dist/esm/hue.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
package/dist/esm/index.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|
|
@@ -117,7 +120,8 @@ var ringsSchema = {
|
|
|
117
120
|
max: 400,
|
|
118
121
|
step: 0.1,
|
|
119
122
|
default: DEFAULT_THICKNESS,
|
|
120
|
-
description: "Thickness"
|
|
123
|
+
description: "Thickness",
|
|
124
|
+
hiddenFromList: false
|
|
121
125
|
},
|
|
122
126
|
gap: {
|
|
123
127
|
type: "number",
|
|
@@ -125,13 +129,15 @@ var ringsSchema = {
|
|
|
125
129
|
max: 400,
|
|
126
130
|
step: 0.1,
|
|
127
131
|
default: DEFAULT_GAP,
|
|
128
|
-
description: "Gap"
|
|
132
|
+
description: "Gap",
|
|
133
|
+
hiddenFromList: false
|
|
129
134
|
},
|
|
130
135
|
offset: {
|
|
131
136
|
type: "number",
|
|
132
137
|
step: 0.1,
|
|
133
138
|
default: DEFAULT_OFFSET,
|
|
134
|
-
description: "Offset"
|
|
139
|
+
description: "Offset",
|
|
140
|
+
hiddenFromList: false
|
|
135
141
|
}
|
|
136
142
|
};
|
|
137
143
|
var resolve = (p) => {
|
|
@@ -484,7 +490,8 @@ var zigzagSchema = {
|
|
|
484
490
|
max: 400,
|
|
485
491
|
step: 0.1,
|
|
486
492
|
default: DEFAULT_THICKNESS2,
|
|
487
|
-
description: "Thickness"
|
|
493
|
+
description: "Thickness",
|
|
494
|
+
hiddenFromList: false
|
|
488
495
|
},
|
|
489
496
|
gap: {
|
|
490
497
|
type: "number",
|
|
@@ -492,12 +499,11 @@ var zigzagSchema = {
|
|
|
492
499
|
max: 400,
|
|
493
500
|
step: 0.1,
|
|
494
501
|
default: DEFAULT_GAP2,
|
|
495
|
-
description: "Gap"
|
|
502
|
+
description: "Gap",
|
|
503
|
+
hiddenFromList: false
|
|
496
504
|
},
|
|
497
505
|
angle: {
|
|
498
|
-
type: "
|
|
499
|
-
min: -180,
|
|
500
|
-
max: 180,
|
|
506
|
+
type: "rotation-degrees",
|
|
501
507
|
step: 1,
|
|
502
508
|
default: DEFAULT_ANGLE,
|
|
503
509
|
description: "Angle"
|
|
@@ -506,7 +512,8 @@ var zigzagSchema = {
|
|
|
506
512
|
type: "number",
|
|
507
513
|
step: 0.1,
|
|
508
514
|
default: DEFAULT_OFFSET2,
|
|
509
|
-
description: "Offset"
|
|
515
|
+
description: "Offset",
|
|
516
|
+
hiddenFromList: false
|
|
510
517
|
},
|
|
511
518
|
amplitude: {
|
|
512
519
|
type: "number",
|
|
@@ -514,7 +521,8 @@ var zigzagSchema = {
|
|
|
514
521
|
max: 500,
|
|
515
522
|
step: 0.1,
|
|
516
523
|
default: DEFAULT_AMPLITUDE,
|
|
517
|
-
description: "Amplitude"
|
|
524
|
+
description: "Amplitude",
|
|
525
|
+
hiddenFromList: false
|
|
518
526
|
},
|
|
519
527
|
wavelength: {
|
|
520
528
|
type: "number",
|
|
@@ -522,7 +530,8 @@ var zigzagSchema = {
|
|
|
522
530
|
max: 2000,
|
|
523
531
|
step: 1,
|
|
524
532
|
default: DEFAULT_WAVELENGTH,
|
|
525
|
-
description: "Wavelength"
|
|
533
|
+
description: "Wavelength",
|
|
534
|
+
hiddenFromList: false
|
|
526
535
|
}
|
|
527
536
|
};
|
|
528
537
|
var resolve2 = (p) => {
|
package/dist/esm/invert.mjs
CHANGED
|
@@ -34,14 +34,16 @@ var colorAmountSchema = {
|
|
|
34
34
|
max: 1,
|
|
35
35
|
step: 0.01,
|
|
36
36
|
default: DEFAULT_AMOUNT,
|
|
37
|
-
description: "Amount"
|
|
37
|
+
description: "Amount",
|
|
38
|
+
hiddenFromList: false
|
|
38
39
|
};
|
|
39
40
|
var colorMultiplierSchema = {
|
|
40
41
|
type: "number",
|
|
41
42
|
min: 0,
|
|
42
43
|
step: 0.01,
|
|
43
44
|
default: DEFAULT_AMOUNT,
|
|
44
|
-
description: "Amount"
|
|
45
|
+
description: "Amount",
|
|
46
|
+
hiddenFromList: false
|
|
45
47
|
};
|
|
46
48
|
var brightnessAmountSchema = {
|
|
47
49
|
type: "number",
|
|
@@ -49,10 +51,11 @@ var brightnessAmountSchema = {
|
|
|
49
51
|
max: 1,
|
|
50
52
|
step: 0.01,
|
|
51
53
|
default: DEFAULT_BRIGHTNESS_AMOUNT,
|
|
52
|
-
description: "Amount"
|
|
54
|
+
description: "Amount",
|
|
55
|
+
hiddenFromList: false
|
|
53
56
|
};
|
|
54
57
|
var hueDegreesSchema = {
|
|
55
|
-
type: "
|
|
58
|
+
type: "rotation-degrees",
|
|
56
59
|
step: 1,
|
|
57
60
|
default: DEFAULT_HUE_DEGREES,
|
|
58
61
|
description: "Degrees"
|