@workglow/tasks 0.2.17 → 0.2.18
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/browser.d.ts +2 -2
- package/dist/browser.d.ts.map +1 -1
- package/dist/browser.js +1636 -1287
- package/dist/browser.js.map +58 -26
- package/dist/bun.d.ts +2 -2
- package/dist/bun.d.ts.map +1 -1
- package/dist/bun.js +1382 -1318
- package/dist/bun.js.map +56 -26
- package/dist/codec.browser.d.ts +39 -0
- package/dist/codec.browser.d.ts.map +1 -0
- package/dist/codec.node.d.ts +37 -0
- package/dist/codec.node.d.ts.map +1 -0
- package/dist/common.d.ts +39 -38
- package/dist/common.d.ts.map +1 -1
- package/dist/electron.d.ts +2 -2
- package/dist/electron.d.ts.map +1 -1
- package/dist/electron.js +1382 -1318
- package/dist/electron.js.map +56 -26
- package/dist/node.d.ts +2 -2
- package/dist/node.d.ts.map +1 -1
- package/dist/node.js +1382 -1318
- package/dist/node.js.map +56 -26
- package/dist/task/image/ImageFilterTask.d.ts +24 -0
- package/dist/task/image/ImageFilterTask.d.ts.map +1 -0
- package/dist/task/image/ImageSchemas.d.ts +15 -101
- package/dist/task/image/ImageSchemas.d.ts.map +1 -1
- package/dist/task/image/blur/ImageBlurTask.d.ts +29 -0
- package/dist/task/image/blur/ImageBlurTask.d.ts.map +1 -0
- package/dist/task/image/blur/blur.cpu.d.ts +4 -0
- package/dist/task/image/blur/blur.cpu.d.ts.map +1 -0
- package/dist/task/image/blur/blur.sharp.d.ts +2 -0
- package/dist/task/image/blur/blur.sharp.d.ts.map +1 -0
- package/dist/task/image/blur/blur.webgpu.d.ts +2 -0
- package/dist/task/image/blur/blur.webgpu.d.ts.map +1 -0
- package/dist/task/image/border/ImageBorderTask.d.ts +35 -0
- package/dist/task/image/border/ImageBorderTask.d.ts.map +1 -0
- package/dist/task/image/border/border.cpu.d.ts +10 -0
- package/dist/task/image/border/border.cpu.d.ts.map +1 -0
- package/dist/task/image/border/border.sharp.d.ts +2 -0
- package/dist/task/image/border/border.sharp.d.ts.map +1 -0
- package/dist/task/image/border/border.webgpu.d.ts +2 -0
- package/dist/task/image/border/border.webgpu.d.ts.map +1 -0
- package/dist/task/image/brightness/ImageBrightnessTask.d.ts +28 -0
- package/dist/task/image/brightness/ImageBrightnessTask.d.ts.map +1 -0
- package/dist/task/image/brightness/brightness.cpu.d.ts +4 -0
- package/dist/task/image/brightness/brightness.cpu.d.ts.map +1 -0
- package/dist/task/image/brightness/brightness.sharp.d.ts +2 -0
- package/dist/task/image/brightness/brightness.sharp.d.ts.map +1 -0
- package/dist/task/image/brightness/brightness.webgpu.d.ts +2 -0
- package/dist/task/image/brightness/brightness.webgpu.d.ts.map +1 -0
- package/dist/task/image/contrast/ImageContrastTask.d.ts +28 -0
- package/dist/task/image/contrast/ImageContrastTask.d.ts.map +1 -0
- package/dist/task/image/contrast/contrast.cpu.d.ts +4 -0
- package/dist/task/image/contrast/contrast.cpu.d.ts.map +1 -0
- package/dist/task/image/contrast/contrast.sharp.d.ts +2 -0
- package/dist/task/image/contrast/contrast.sharp.d.ts.map +1 -0
- package/dist/task/image/contrast/contrast.webgpu.d.ts +2 -0
- package/dist/task/image/contrast/contrast.webgpu.d.ts.map +1 -0
- package/dist/task/image/crop/ImageCropTask.d.ts +32 -0
- package/dist/task/image/crop/ImageCropTask.d.ts.map +1 -0
- package/dist/task/image/crop/crop.cpu.d.ts +7 -0
- package/dist/task/image/crop/crop.cpu.d.ts.map +1 -0
- package/dist/task/image/crop/crop.sharp.d.ts +2 -0
- package/dist/task/image/crop/crop.sharp.d.ts.map +1 -0
- package/dist/task/image/crop/crop.webgpu.d.ts +2 -0
- package/dist/task/image/crop/crop.webgpu.d.ts.map +1 -0
- package/dist/task/image/flip/ImageFlipTask.d.ts +28 -0
- package/dist/task/image/flip/ImageFlipTask.d.ts.map +1 -0
- package/dist/task/image/flip/flip.cpu.d.ts +4 -0
- package/dist/task/image/flip/flip.cpu.d.ts.map +1 -0
- package/dist/task/image/flip/flip.sharp.d.ts +2 -0
- package/dist/task/image/flip/flip.sharp.d.ts.map +1 -0
- package/dist/task/image/flip/flip.webgpu.d.ts +2 -0
- package/dist/task/image/flip/flip.webgpu.d.ts.map +1 -0
- package/dist/task/image/grayscale/ImageGrayscaleTask.d.ts +25 -0
- package/dist/task/image/grayscale/ImageGrayscaleTask.d.ts.map +1 -0
- package/dist/task/image/grayscale/grayscale.cpu.d.ts +2 -0
- package/dist/task/image/grayscale/grayscale.cpu.d.ts.map +1 -0
- package/dist/task/image/grayscale/grayscale.sharp.d.ts +2 -0
- package/dist/task/image/grayscale/grayscale.sharp.d.ts.map +1 -0
- package/dist/task/image/grayscale/grayscale.webgpu.d.ts +2 -0
- package/dist/task/image/grayscale/grayscale.webgpu.d.ts.map +1 -0
- package/dist/task/image/imageCodecLimits.d.ts +8 -4
- package/dist/task/image/imageCodecLimits.d.ts.map +1 -1
- package/dist/task/image/invert/ImageInvertTask.d.ts +25 -0
- package/dist/task/image/invert/ImageInvertTask.d.ts.map +1 -0
- package/dist/task/image/invert/invert.cpu.d.ts +2 -0
- package/dist/task/image/invert/invert.cpu.d.ts.map +1 -0
- package/dist/task/image/invert/invert.sharp.d.ts +2 -0
- package/dist/task/image/invert/invert.sharp.d.ts.map +1 -0
- package/dist/task/image/invert/invert.webgpu.d.ts +2 -0
- package/dist/task/image/invert/invert.webgpu.d.ts.map +1 -0
- package/dist/task/image/pixelate/ImagePixelateTask.d.ts +29 -0
- package/dist/task/image/pixelate/ImagePixelateTask.d.ts.map +1 -0
- package/dist/task/image/pixelate/pixelate.cpu.d.ts +4 -0
- package/dist/task/image/pixelate/pixelate.cpu.d.ts.map +1 -0
- package/dist/task/image/pixelate/pixelate.sharp.d.ts +2 -0
- package/dist/task/image/pixelate/pixelate.sharp.d.ts.map +1 -0
- package/dist/task/image/pixelate/pixelate.webgpu.d.ts +2 -0
- package/dist/task/image/pixelate/pixelate.webgpu.d.ts.map +1 -0
- package/dist/task/image/posterize/ImagePosterizeTask.d.ts +28 -0
- package/dist/task/image/posterize/ImagePosterizeTask.d.ts.map +1 -0
- package/dist/task/image/posterize/posterize.cpu.d.ts +4 -0
- package/dist/task/image/posterize/posterize.cpu.d.ts.map +1 -0
- package/dist/task/image/posterize/posterize.webgpu.d.ts +2 -0
- package/dist/task/image/posterize/posterize.webgpu.d.ts.map +1 -0
- package/dist/task/image/resize/ImageResizeTask.d.ts +32 -0
- package/dist/task/image/resize/ImageResizeTask.d.ts.map +1 -0
- package/dist/task/image/resize/resize.cpu.d.ts +7 -0
- package/dist/task/image/resize/resize.cpu.d.ts.map +1 -0
- package/dist/task/image/resize/resize.sharp.d.ts +2 -0
- package/dist/task/image/resize/resize.sharp.d.ts.map +1 -0
- package/dist/task/image/resize/resize.webgpu.d.ts +2 -0
- package/dist/task/image/resize/resize.webgpu.d.ts.map +1 -0
- package/dist/task/image/rotate/ImageRotateTask.d.ts +29 -0
- package/dist/task/image/rotate/ImageRotateTask.d.ts.map +1 -0
- package/dist/task/image/rotate/rotate.cpu.d.ts +5 -0
- package/dist/task/image/rotate/rotate.cpu.d.ts.map +1 -0
- package/dist/task/image/rotate/rotate.sharp.d.ts +2 -0
- package/dist/task/image/rotate/rotate.sharp.d.ts.map +1 -0
- package/dist/task/image/rotate/rotate.webgpu.d.ts +2 -0
- package/dist/task/image/rotate/rotate.webgpu.d.ts.map +1 -0
- package/dist/task/image/sepia/ImageSepiaTask.d.ts +25 -0
- package/dist/task/image/sepia/ImageSepiaTask.d.ts.map +1 -0
- package/dist/task/image/sepia/sepia.cpu.d.ts +2 -0
- package/dist/task/image/sepia/sepia.cpu.d.ts.map +1 -0
- package/dist/task/image/sepia/sepia.sharp.d.ts +2 -0
- package/dist/task/image/sepia/sepia.sharp.d.ts.map +1 -0
- package/dist/task/image/sepia/sepia.webgpu.d.ts +2 -0
- package/dist/task/image/sepia/sepia.webgpu.d.ts.map +1 -0
- package/dist/task/image/{ImageTextTask.d.ts → text/ImageTextTask.d.ts} +15 -102
- package/dist/task/image/text/ImageTextTask.d.ts.map +1 -0
- package/dist/task/image/threshold/ImageThresholdTask.d.ts +28 -0
- package/dist/task/image/threshold/ImageThresholdTask.d.ts.map +1 -0
- package/dist/task/image/threshold/threshold.cpu.d.ts +4 -0
- package/dist/task/image/threshold/threshold.cpu.d.ts.map +1 -0
- package/dist/task/image/threshold/threshold.sharp.d.ts +2 -0
- package/dist/task/image/threshold/threshold.sharp.d.ts.map +1 -0
- package/dist/task/image/threshold/threshold.webgpu.d.ts +2 -0
- package/dist/task/image/threshold/threshold.webgpu.d.ts.map +1 -0
- package/dist/task/image/tint/ImageTintTask.d.ts +30 -0
- package/dist/task/image/tint/ImageTintTask.d.ts.map +1 -0
- package/dist/task/image/tint/tint.cpu.d.ts +11 -0
- package/dist/task/image/tint/tint.cpu.d.ts.map +1 -0
- package/dist/task/image/tint/tint.sharp.d.ts +2 -0
- package/dist/task/image/tint/tint.sharp.d.ts.map +1 -0
- package/dist/task/image/tint/tint.webgpu.d.ts +2 -0
- package/dist/task/image/tint/tint.webgpu.d.ts.map +1 -0
- package/dist/task/image/transparency/ImageTransparencyTask.d.ts +28 -0
- package/dist/task/image/transparency/ImageTransparencyTask.d.ts.map +1 -0
- package/dist/task/image/transparency/transparency.cpu.d.ts +4 -0
- package/dist/task/image/transparency/transparency.cpu.d.ts.map +1 -0
- package/dist/task/image/transparency/transparency.webgpu.d.ts +2 -0
- package/dist/task/image/transparency/transparency.webgpu.d.ts.map +1 -0
- package/package.json +9 -9
- package/dist/task/image/ImageBlurTask.d.ts +0 -248
- package/dist/task/image/ImageBlurTask.d.ts.map +0 -1
- package/dist/task/image/ImageBorderTask.d.ts +0 -328
- package/dist/task/image/ImageBorderTask.d.ts.map +0 -1
- package/dist/task/image/ImageBrightnessTask.d.ts +0 -248
- package/dist/task/image/ImageBrightnessTask.d.ts.map +0 -1
- package/dist/task/image/ImageContrastTask.d.ts +0 -248
- package/dist/task/image/ImageContrastTask.d.ts.map +0 -1
- package/dist/task/image/ImageCropTask.d.ts +0 -280
- package/dist/task/image/ImageCropTask.d.ts.map +0 -1
- package/dist/task/image/ImageFlipTask.d.ts +0 -244
- package/dist/task/image/ImageFlipTask.d.ts.map +0 -1
- package/dist/task/image/ImageGrayscaleTask.d.ts +0 -232
- package/dist/task/image/ImageGrayscaleTask.d.ts.map +0 -1
- package/dist/task/image/ImageInvertTask.d.ts +0 -232
- package/dist/task/image/ImageInvertTask.d.ts.map +0 -1
- package/dist/task/image/ImagePixelateTask.d.ts +0 -246
- package/dist/task/image/ImagePixelateTask.d.ts.map +0 -1
- package/dist/task/image/ImagePosterizeTask.d.ts +0 -248
- package/dist/task/image/ImagePosterizeTask.d.ts.map +0 -1
- package/dist/task/image/ImageResizeTask.d.ts +0 -256
- package/dist/task/image/ImageResizeTask.d.ts.map +0 -1
- package/dist/task/image/ImageRotateTask.d.ts +0 -244
- package/dist/task/image/ImageRotateTask.d.ts.map +0 -1
- package/dist/task/image/ImageSepiaTask.d.ts +0 -232
- package/dist/task/image/ImageSepiaTask.d.ts.map +0 -1
- package/dist/task/image/ImageTextTask.d.ts.map +0 -1
- package/dist/task/image/ImageThresholdTask.d.ts +0 -248
- package/dist/task/image/ImageThresholdTask.d.ts.map +0 -1
- package/dist/task/image/ImageTintTask.d.ts +0 -330
- package/dist/task/image/ImageTintTask.d.ts.map +0 -1
- package/dist/task/image/ImageTransparencyTask.d.ts +0 -246
- package/dist/task/image/ImageTransparencyTask.d.ts.map +0 -1
- package/dist/task/image/ImageWatermarkTask.d.ts +0 -276
- package/dist/task/image/ImageWatermarkTask.d.ts.map +0 -1
- package/dist/task/image/imageTaskIo.d.ts +0 -20
- package/dist/task/image/imageTaskIo.d.ts.map +0 -1
|
@@ -1,328 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { CreateWorkflow, IExecuteContext, IExecutePreviewContext, Task, TaskConfig } from "@workglow/task-graph";
|
|
7
|
-
import { ImageFromSchema } from "./ImageSchemas";
|
|
8
|
-
declare const inputSchema: {
|
|
9
|
-
readonly type: "object";
|
|
10
|
-
readonly properties: {
|
|
11
|
-
readonly image: {
|
|
12
|
-
readonly oneOf: readonly [{
|
|
13
|
-
readonly type: "object";
|
|
14
|
-
readonly properties: {
|
|
15
|
-
readonly data: {
|
|
16
|
-
readonly type: "array";
|
|
17
|
-
readonly items: {
|
|
18
|
-
readonly type: "number";
|
|
19
|
-
readonly format: "Uint8Clamped";
|
|
20
|
-
};
|
|
21
|
-
readonly format: "Uint8ClampedArray";
|
|
22
|
-
readonly title: "Data";
|
|
23
|
-
readonly description: "Pixel data of the image";
|
|
24
|
-
};
|
|
25
|
-
readonly width: {
|
|
26
|
-
readonly type: "integer";
|
|
27
|
-
readonly minimum: 1;
|
|
28
|
-
readonly title: "Width";
|
|
29
|
-
readonly description: "Width in pixels";
|
|
30
|
-
};
|
|
31
|
-
readonly height: {
|
|
32
|
-
readonly type: "integer";
|
|
33
|
-
readonly minimum: 1;
|
|
34
|
-
readonly title: "Height";
|
|
35
|
-
readonly description: "Height in pixels";
|
|
36
|
-
};
|
|
37
|
-
readonly channels: {
|
|
38
|
-
readonly type: "integer";
|
|
39
|
-
readonly enum: readonly [1, 3, 4];
|
|
40
|
-
readonly title: "Channels";
|
|
41
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
readonly additionalProperties: false;
|
|
45
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
46
|
-
readonly format: "image:ImageBinary";
|
|
47
|
-
readonly title: "Image";
|
|
48
|
-
readonly description: "Raw pixel image data";
|
|
49
|
-
}, {
|
|
50
|
-
readonly type: "string";
|
|
51
|
-
readonly format: "image:data-uri";
|
|
52
|
-
readonly title: string;
|
|
53
|
-
readonly description: string;
|
|
54
|
-
}];
|
|
55
|
-
};
|
|
56
|
-
readonly borderWidth: {
|
|
57
|
-
readonly type: "integer";
|
|
58
|
-
readonly title: "Border Width";
|
|
59
|
-
readonly description: "Border width in pixels";
|
|
60
|
-
readonly minimum: 1;
|
|
61
|
-
readonly default: 1;
|
|
62
|
-
};
|
|
63
|
-
readonly color: {
|
|
64
|
-
readonly oneOf: readonly [{
|
|
65
|
-
readonly type: "object";
|
|
66
|
-
readonly properties: {
|
|
67
|
-
readonly r: {
|
|
68
|
-
readonly type: "integer";
|
|
69
|
-
readonly minimum: 0;
|
|
70
|
-
readonly maximum: 255;
|
|
71
|
-
readonly title: "Red";
|
|
72
|
-
};
|
|
73
|
-
readonly g: {
|
|
74
|
-
readonly type: "integer";
|
|
75
|
-
readonly minimum: 0;
|
|
76
|
-
readonly maximum: 255;
|
|
77
|
-
readonly title: "Green";
|
|
78
|
-
};
|
|
79
|
-
readonly b: {
|
|
80
|
-
readonly type: "integer";
|
|
81
|
-
readonly minimum: 0;
|
|
82
|
-
readonly maximum: 255;
|
|
83
|
-
readonly title: "Blue";
|
|
84
|
-
};
|
|
85
|
-
readonly a: {
|
|
86
|
-
readonly type: "integer";
|
|
87
|
-
readonly minimum: 0;
|
|
88
|
-
readonly maximum: 255;
|
|
89
|
-
readonly title: "Alpha";
|
|
90
|
-
readonly default: 255;
|
|
91
|
-
};
|
|
92
|
-
};
|
|
93
|
-
readonly required: readonly ["r", "g", "b"];
|
|
94
|
-
readonly format: "color";
|
|
95
|
-
readonly additionalProperties: false;
|
|
96
|
-
}, {
|
|
97
|
-
readonly type: "string";
|
|
98
|
-
readonly format: "color";
|
|
99
|
-
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
100
|
-
readonly title: "Color (hex)";
|
|
101
|
-
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
102
|
-
}];
|
|
103
|
-
};
|
|
104
|
-
};
|
|
105
|
-
readonly required: readonly ["image", "color"];
|
|
106
|
-
readonly additionalProperties: false;
|
|
107
|
-
};
|
|
108
|
-
declare const outputSchema: {
|
|
109
|
-
readonly type: "object";
|
|
110
|
-
readonly properties: {
|
|
111
|
-
readonly image: {
|
|
112
|
-
readonly oneOf: readonly [{
|
|
113
|
-
readonly type: "object";
|
|
114
|
-
readonly properties: {
|
|
115
|
-
readonly data: {
|
|
116
|
-
readonly type: "array";
|
|
117
|
-
readonly items: {
|
|
118
|
-
readonly type: "number";
|
|
119
|
-
readonly format: "Uint8Clamped";
|
|
120
|
-
};
|
|
121
|
-
readonly format: "Uint8ClampedArray";
|
|
122
|
-
readonly title: "Data";
|
|
123
|
-
readonly description: "Pixel data of the image";
|
|
124
|
-
};
|
|
125
|
-
readonly width: {
|
|
126
|
-
readonly type: "integer";
|
|
127
|
-
readonly minimum: 1;
|
|
128
|
-
readonly title: "Width";
|
|
129
|
-
readonly description: "Width in pixels";
|
|
130
|
-
};
|
|
131
|
-
readonly height: {
|
|
132
|
-
readonly type: "integer";
|
|
133
|
-
readonly minimum: 1;
|
|
134
|
-
readonly title: "Height";
|
|
135
|
-
readonly description: "Height in pixels";
|
|
136
|
-
};
|
|
137
|
-
readonly channels: {
|
|
138
|
-
readonly type: "integer";
|
|
139
|
-
readonly enum: readonly [1, 3, 4];
|
|
140
|
-
readonly title: "Channels";
|
|
141
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
142
|
-
};
|
|
143
|
-
};
|
|
144
|
-
readonly additionalProperties: false;
|
|
145
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
146
|
-
readonly format: "image:ImageBinary";
|
|
147
|
-
readonly title: "Image";
|
|
148
|
-
readonly description: "Raw pixel image data";
|
|
149
|
-
}, {
|
|
150
|
-
readonly type: "string";
|
|
151
|
-
readonly format: "image:data-uri";
|
|
152
|
-
readonly title: string;
|
|
153
|
-
readonly description: string;
|
|
154
|
-
}];
|
|
155
|
-
};
|
|
156
|
-
};
|
|
157
|
-
readonly required: readonly ["image"];
|
|
158
|
-
readonly additionalProperties: false;
|
|
159
|
-
};
|
|
160
|
-
export type ImageBorderTaskInput = ImageFromSchema<typeof inputSchema>;
|
|
161
|
-
export type ImageBorderTaskOutput = ImageFromSchema<typeof outputSchema>;
|
|
162
|
-
export declare class ImageBorderTask<Input extends ImageBorderTaskInput = ImageBorderTaskInput, Output extends ImageBorderTaskOutput = ImageBorderTaskOutput, Config extends TaskConfig = TaskConfig> extends Task<Input, Output, Config> {
|
|
163
|
-
static readonly type = "ImageBorderTask";
|
|
164
|
-
static readonly category = "Image";
|
|
165
|
-
static title: string;
|
|
166
|
-
static description: string;
|
|
167
|
-
static inputSchema(): {
|
|
168
|
-
readonly type: "object";
|
|
169
|
-
readonly properties: {
|
|
170
|
-
readonly image: {
|
|
171
|
-
readonly oneOf: readonly [{
|
|
172
|
-
readonly type: "object";
|
|
173
|
-
readonly properties: {
|
|
174
|
-
readonly data: {
|
|
175
|
-
readonly type: "array";
|
|
176
|
-
readonly items: {
|
|
177
|
-
readonly type: "number";
|
|
178
|
-
readonly format: "Uint8Clamped";
|
|
179
|
-
};
|
|
180
|
-
readonly format: "Uint8ClampedArray";
|
|
181
|
-
readonly title: "Data";
|
|
182
|
-
readonly description: "Pixel data of the image";
|
|
183
|
-
};
|
|
184
|
-
readonly width: {
|
|
185
|
-
readonly type: "integer";
|
|
186
|
-
readonly minimum: 1;
|
|
187
|
-
readonly title: "Width";
|
|
188
|
-
readonly description: "Width in pixels";
|
|
189
|
-
};
|
|
190
|
-
readonly height: {
|
|
191
|
-
readonly type: "integer";
|
|
192
|
-
readonly minimum: 1;
|
|
193
|
-
readonly title: "Height";
|
|
194
|
-
readonly description: "Height in pixels";
|
|
195
|
-
};
|
|
196
|
-
readonly channels: {
|
|
197
|
-
readonly type: "integer";
|
|
198
|
-
readonly enum: readonly [1, 3, 4];
|
|
199
|
-
readonly title: "Channels";
|
|
200
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
201
|
-
};
|
|
202
|
-
};
|
|
203
|
-
readonly additionalProperties: false;
|
|
204
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
205
|
-
readonly format: "image:ImageBinary";
|
|
206
|
-
readonly title: "Image";
|
|
207
|
-
readonly description: "Raw pixel image data";
|
|
208
|
-
}, {
|
|
209
|
-
readonly type: "string";
|
|
210
|
-
readonly format: "image:data-uri";
|
|
211
|
-
readonly title: string;
|
|
212
|
-
readonly description: string;
|
|
213
|
-
}];
|
|
214
|
-
};
|
|
215
|
-
readonly borderWidth: {
|
|
216
|
-
readonly type: "integer";
|
|
217
|
-
readonly title: "Border Width";
|
|
218
|
-
readonly description: "Border width in pixels";
|
|
219
|
-
readonly minimum: 1;
|
|
220
|
-
readonly default: 1;
|
|
221
|
-
};
|
|
222
|
-
readonly color: {
|
|
223
|
-
readonly oneOf: readonly [{
|
|
224
|
-
readonly type: "object";
|
|
225
|
-
readonly properties: {
|
|
226
|
-
readonly r: {
|
|
227
|
-
readonly type: "integer";
|
|
228
|
-
readonly minimum: 0;
|
|
229
|
-
readonly maximum: 255;
|
|
230
|
-
readonly title: "Red";
|
|
231
|
-
};
|
|
232
|
-
readonly g: {
|
|
233
|
-
readonly type: "integer";
|
|
234
|
-
readonly minimum: 0;
|
|
235
|
-
readonly maximum: 255;
|
|
236
|
-
readonly title: "Green";
|
|
237
|
-
};
|
|
238
|
-
readonly b: {
|
|
239
|
-
readonly type: "integer";
|
|
240
|
-
readonly minimum: 0;
|
|
241
|
-
readonly maximum: 255;
|
|
242
|
-
readonly title: "Blue";
|
|
243
|
-
};
|
|
244
|
-
readonly a: {
|
|
245
|
-
readonly type: "integer";
|
|
246
|
-
readonly minimum: 0;
|
|
247
|
-
readonly maximum: 255;
|
|
248
|
-
readonly title: "Alpha";
|
|
249
|
-
readonly default: 255;
|
|
250
|
-
};
|
|
251
|
-
};
|
|
252
|
-
readonly required: readonly ["r", "g", "b"];
|
|
253
|
-
readonly format: "color";
|
|
254
|
-
readonly additionalProperties: false;
|
|
255
|
-
}, {
|
|
256
|
-
readonly type: "string";
|
|
257
|
-
readonly format: "color";
|
|
258
|
-
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
259
|
-
readonly title: "Color (hex)";
|
|
260
|
-
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
261
|
-
}];
|
|
262
|
-
};
|
|
263
|
-
};
|
|
264
|
-
readonly required: readonly ["image", "color"];
|
|
265
|
-
readonly additionalProperties: false;
|
|
266
|
-
};
|
|
267
|
-
static outputSchema(): {
|
|
268
|
-
readonly type: "object";
|
|
269
|
-
readonly properties: {
|
|
270
|
-
readonly image: {
|
|
271
|
-
readonly oneOf: readonly [{
|
|
272
|
-
readonly type: "object";
|
|
273
|
-
readonly properties: {
|
|
274
|
-
readonly data: {
|
|
275
|
-
readonly type: "array";
|
|
276
|
-
readonly items: {
|
|
277
|
-
readonly type: "number";
|
|
278
|
-
readonly format: "Uint8Clamped";
|
|
279
|
-
};
|
|
280
|
-
readonly format: "Uint8ClampedArray";
|
|
281
|
-
readonly title: "Data";
|
|
282
|
-
readonly description: "Pixel data of the image";
|
|
283
|
-
};
|
|
284
|
-
readonly width: {
|
|
285
|
-
readonly type: "integer";
|
|
286
|
-
readonly minimum: 1;
|
|
287
|
-
readonly title: "Width";
|
|
288
|
-
readonly description: "Width in pixels";
|
|
289
|
-
};
|
|
290
|
-
readonly height: {
|
|
291
|
-
readonly type: "integer";
|
|
292
|
-
readonly minimum: 1;
|
|
293
|
-
readonly title: "Height";
|
|
294
|
-
readonly description: "Height in pixels";
|
|
295
|
-
};
|
|
296
|
-
readonly channels: {
|
|
297
|
-
readonly type: "integer";
|
|
298
|
-
readonly enum: readonly [1, 3, 4];
|
|
299
|
-
readonly title: "Channels";
|
|
300
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
301
|
-
};
|
|
302
|
-
};
|
|
303
|
-
readonly additionalProperties: false;
|
|
304
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
305
|
-
readonly format: "image:ImageBinary";
|
|
306
|
-
readonly title: "Image";
|
|
307
|
-
readonly description: "Raw pixel image data";
|
|
308
|
-
}, {
|
|
309
|
-
readonly type: "string";
|
|
310
|
-
readonly format: "image:data-uri";
|
|
311
|
-
readonly title: string;
|
|
312
|
-
readonly description: string;
|
|
313
|
-
}];
|
|
314
|
-
};
|
|
315
|
-
};
|
|
316
|
-
readonly required: readonly ["image"];
|
|
317
|
-
readonly additionalProperties: false;
|
|
318
|
-
};
|
|
319
|
-
execute(input: Input, _context: IExecuteContext): Promise<Output | undefined>;
|
|
320
|
-
executePreview(input: Input, _context: IExecutePreviewContext): Promise<Output | undefined>;
|
|
321
|
-
}
|
|
322
|
-
declare module "@workglow/task-graph" {
|
|
323
|
-
interface Workflow {
|
|
324
|
-
imageBorder: CreateWorkflow<ImageBorderTaskInput, ImageBorderTaskOutput, TaskConfig>;
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
export {};
|
|
328
|
-
//# sourceMappingURL=ImageBorderTask.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ImageBorderTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageBorderTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,eAAe,EACf,sBAAsB,EACtB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAgD,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA2C/F,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,WAAW;qBACT,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,cAAc;qBACrB,WAAW,EAAE,wBAAwB;qBACrC,OAAO,EAAE,CAAC;qBACV,OAAO,EAAE,CAAC;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI0B,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI0B,CAAC;AAEpC,MAAM,MAAM,oBAAoB,GAAG,eAAe,CAAC,OAAO,WAAW,CAAC,CAAC;AACvE,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,OAAO,YAAY,CAAC,CAAC;AAEzE,qBAAa,eAAe,CAC1B,KAAK,SAAS,oBAAoB,GAAG,oBAAoB,EACzD,MAAM,SAAS,qBAAqB,GAAG,qBAAqB,EAC5D,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,qBAAqB;IAClD,gBAAyB,QAAQ,WAAW;IAC5C,OAAuB,KAAK,SAAgB;IAC5C,OAAuB,WAAW,SAA2C;IAE7E,OAAgB,WAAW;uBAtCrB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBACL,WAAW;yBACT,IAAI,EAAE,SAAS;yBACf,KAAK,EAAE,cAAc;yBACrB,WAAW,EAAE,wBAAwB;yBACrC,OAAO,EAAE,CAAC;yBACV,OAAO,EAAE,CAAC;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8BN;IAED,OAAgB,YAAY;uBAzBtB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyBN;IAEc,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAE3F;IAEc,cAAc,CAC3B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,sBAAsB,GAC/B,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAE7B;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,WAAW,EAAE,cAAc,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,CAAC,CAAC;KACtF;CACF"}
|
|
@@ -1,248 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
5
|
-
*/
|
|
6
|
-
import { CreateWorkflow, IExecuteContext, IExecutePreviewContext, Task, TaskConfig } from "@workglow/task-graph";
|
|
7
|
-
import { ImageFromSchema } from "./ImageSchemas";
|
|
8
|
-
declare const inputSchema: {
|
|
9
|
-
readonly type: "object";
|
|
10
|
-
readonly properties: {
|
|
11
|
-
readonly image: {
|
|
12
|
-
readonly oneOf: readonly [{
|
|
13
|
-
readonly type: "object";
|
|
14
|
-
readonly properties: {
|
|
15
|
-
readonly data: {
|
|
16
|
-
readonly type: "array";
|
|
17
|
-
readonly items: {
|
|
18
|
-
readonly type: "number";
|
|
19
|
-
readonly format: "Uint8Clamped";
|
|
20
|
-
};
|
|
21
|
-
readonly format: "Uint8ClampedArray";
|
|
22
|
-
readonly title: "Data";
|
|
23
|
-
readonly description: "Pixel data of the image";
|
|
24
|
-
};
|
|
25
|
-
readonly width: {
|
|
26
|
-
readonly type: "integer";
|
|
27
|
-
readonly minimum: 1;
|
|
28
|
-
readonly title: "Width";
|
|
29
|
-
readonly description: "Width in pixels";
|
|
30
|
-
};
|
|
31
|
-
readonly height: {
|
|
32
|
-
readonly type: "integer";
|
|
33
|
-
readonly minimum: 1;
|
|
34
|
-
readonly title: "Height";
|
|
35
|
-
readonly description: "Height in pixels";
|
|
36
|
-
};
|
|
37
|
-
readonly channels: {
|
|
38
|
-
readonly type: "integer";
|
|
39
|
-
readonly enum: readonly [1, 3, 4];
|
|
40
|
-
readonly title: "Channels";
|
|
41
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
readonly additionalProperties: false;
|
|
45
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
46
|
-
readonly format: "image:ImageBinary";
|
|
47
|
-
readonly title: "Image";
|
|
48
|
-
readonly description: "Raw pixel image data";
|
|
49
|
-
}, {
|
|
50
|
-
readonly type: "string";
|
|
51
|
-
readonly format: "image:data-uri";
|
|
52
|
-
readonly title: string;
|
|
53
|
-
readonly description: string;
|
|
54
|
-
}];
|
|
55
|
-
};
|
|
56
|
-
readonly amount: {
|
|
57
|
-
readonly type: "number";
|
|
58
|
-
readonly title: "Amount";
|
|
59
|
-
readonly description: "Brightness adjustment (-255 to 255)";
|
|
60
|
-
readonly minimum: -255;
|
|
61
|
-
readonly maximum: 255;
|
|
62
|
-
readonly default: 0;
|
|
63
|
-
};
|
|
64
|
-
};
|
|
65
|
-
readonly required: readonly ["image"];
|
|
66
|
-
readonly additionalProperties: false;
|
|
67
|
-
};
|
|
68
|
-
declare const outputSchema: {
|
|
69
|
-
readonly type: "object";
|
|
70
|
-
readonly properties: {
|
|
71
|
-
readonly image: {
|
|
72
|
-
readonly oneOf: readonly [{
|
|
73
|
-
readonly type: "object";
|
|
74
|
-
readonly properties: {
|
|
75
|
-
readonly data: {
|
|
76
|
-
readonly type: "array";
|
|
77
|
-
readonly items: {
|
|
78
|
-
readonly type: "number";
|
|
79
|
-
readonly format: "Uint8Clamped";
|
|
80
|
-
};
|
|
81
|
-
readonly format: "Uint8ClampedArray";
|
|
82
|
-
readonly title: "Data";
|
|
83
|
-
readonly description: "Pixel data of the image";
|
|
84
|
-
};
|
|
85
|
-
readonly width: {
|
|
86
|
-
readonly type: "integer";
|
|
87
|
-
readonly minimum: 1;
|
|
88
|
-
readonly title: "Width";
|
|
89
|
-
readonly description: "Width in pixels";
|
|
90
|
-
};
|
|
91
|
-
readonly height: {
|
|
92
|
-
readonly type: "integer";
|
|
93
|
-
readonly minimum: 1;
|
|
94
|
-
readonly title: "Height";
|
|
95
|
-
readonly description: "Height in pixels";
|
|
96
|
-
};
|
|
97
|
-
readonly channels: {
|
|
98
|
-
readonly type: "integer";
|
|
99
|
-
readonly enum: readonly [1, 3, 4];
|
|
100
|
-
readonly title: "Channels";
|
|
101
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
readonly additionalProperties: false;
|
|
105
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
106
|
-
readonly format: "image:ImageBinary";
|
|
107
|
-
readonly title: "Image";
|
|
108
|
-
readonly description: "Raw pixel image data";
|
|
109
|
-
}, {
|
|
110
|
-
readonly type: "string";
|
|
111
|
-
readonly format: "image:data-uri";
|
|
112
|
-
readonly title: string;
|
|
113
|
-
readonly description: string;
|
|
114
|
-
}];
|
|
115
|
-
};
|
|
116
|
-
};
|
|
117
|
-
readonly required: readonly ["image"];
|
|
118
|
-
readonly additionalProperties: false;
|
|
119
|
-
};
|
|
120
|
-
export type ImageBrightnessTaskInput = ImageFromSchema<typeof inputSchema>;
|
|
121
|
-
export type ImageBrightnessTaskOutput = ImageFromSchema<typeof outputSchema>;
|
|
122
|
-
export declare class ImageBrightnessTask<Input extends ImageBrightnessTaskInput = ImageBrightnessTaskInput, Output extends ImageBrightnessTaskOutput = ImageBrightnessTaskOutput, Config extends TaskConfig = TaskConfig> extends Task<Input, Output, Config> {
|
|
123
|
-
static readonly type = "ImageBrightnessTask";
|
|
124
|
-
static readonly category = "Image";
|
|
125
|
-
static title: string;
|
|
126
|
-
static description: string;
|
|
127
|
-
static inputSchema(): {
|
|
128
|
-
readonly type: "object";
|
|
129
|
-
readonly properties: {
|
|
130
|
-
readonly image: {
|
|
131
|
-
readonly oneOf: readonly [{
|
|
132
|
-
readonly type: "object";
|
|
133
|
-
readonly properties: {
|
|
134
|
-
readonly data: {
|
|
135
|
-
readonly type: "array";
|
|
136
|
-
readonly items: {
|
|
137
|
-
readonly type: "number";
|
|
138
|
-
readonly format: "Uint8Clamped";
|
|
139
|
-
};
|
|
140
|
-
readonly format: "Uint8ClampedArray";
|
|
141
|
-
readonly title: "Data";
|
|
142
|
-
readonly description: "Pixel data of the image";
|
|
143
|
-
};
|
|
144
|
-
readonly width: {
|
|
145
|
-
readonly type: "integer";
|
|
146
|
-
readonly minimum: 1;
|
|
147
|
-
readonly title: "Width";
|
|
148
|
-
readonly description: "Width in pixels";
|
|
149
|
-
};
|
|
150
|
-
readonly height: {
|
|
151
|
-
readonly type: "integer";
|
|
152
|
-
readonly minimum: 1;
|
|
153
|
-
readonly title: "Height";
|
|
154
|
-
readonly description: "Height in pixels";
|
|
155
|
-
};
|
|
156
|
-
readonly channels: {
|
|
157
|
-
readonly type: "integer";
|
|
158
|
-
readonly enum: readonly [1, 3, 4];
|
|
159
|
-
readonly title: "Channels";
|
|
160
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
readonly additionalProperties: false;
|
|
164
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
165
|
-
readonly format: "image:ImageBinary";
|
|
166
|
-
readonly title: "Image";
|
|
167
|
-
readonly description: "Raw pixel image data";
|
|
168
|
-
}, {
|
|
169
|
-
readonly type: "string";
|
|
170
|
-
readonly format: "image:data-uri";
|
|
171
|
-
readonly title: string;
|
|
172
|
-
readonly description: string;
|
|
173
|
-
}];
|
|
174
|
-
};
|
|
175
|
-
readonly amount: {
|
|
176
|
-
readonly type: "number";
|
|
177
|
-
readonly title: "Amount";
|
|
178
|
-
readonly description: "Brightness adjustment (-255 to 255)";
|
|
179
|
-
readonly minimum: -255;
|
|
180
|
-
readonly maximum: 255;
|
|
181
|
-
readonly default: 0;
|
|
182
|
-
};
|
|
183
|
-
};
|
|
184
|
-
readonly required: readonly ["image"];
|
|
185
|
-
readonly additionalProperties: false;
|
|
186
|
-
};
|
|
187
|
-
static outputSchema(): {
|
|
188
|
-
readonly type: "object";
|
|
189
|
-
readonly properties: {
|
|
190
|
-
readonly image: {
|
|
191
|
-
readonly oneOf: readonly [{
|
|
192
|
-
readonly type: "object";
|
|
193
|
-
readonly properties: {
|
|
194
|
-
readonly data: {
|
|
195
|
-
readonly type: "array";
|
|
196
|
-
readonly items: {
|
|
197
|
-
readonly type: "number";
|
|
198
|
-
readonly format: "Uint8Clamped";
|
|
199
|
-
};
|
|
200
|
-
readonly format: "Uint8ClampedArray";
|
|
201
|
-
readonly title: "Data";
|
|
202
|
-
readonly description: "Pixel data of the image";
|
|
203
|
-
};
|
|
204
|
-
readonly width: {
|
|
205
|
-
readonly type: "integer";
|
|
206
|
-
readonly minimum: 1;
|
|
207
|
-
readonly title: "Width";
|
|
208
|
-
readonly description: "Width in pixels";
|
|
209
|
-
};
|
|
210
|
-
readonly height: {
|
|
211
|
-
readonly type: "integer";
|
|
212
|
-
readonly minimum: 1;
|
|
213
|
-
readonly title: "Height";
|
|
214
|
-
readonly description: "Height in pixels";
|
|
215
|
-
};
|
|
216
|
-
readonly channels: {
|
|
217
|
-
readonly type: "integer";
|
|
218
|
-
readonly enum: readonly [1, 3, 4];
|
|
219
|
-
readonly title: "Channels";
|
|
220
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
221
|
-
};
|
|
222
|
-
};
|
|
223
|
-
readonly additionalProperties: false;
|
|
224
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
225
|
-
readonly format: "image:ImageBinary";
|
|
226
|
-
readonly title: "Image";
|
|
227
|
-
readonly description: "Raw pixel image data";
|
|
228
|
-
}, {
|
|
229
|
-
readonly type: "string";
|
|
230
|
-
readonly format: "image:data-uri";
|
|
231
|
-
readonly title: string;
|
|
232
|
-
readonly description: string;
|
|
233
|
-
}];
|
|
234
|
-
};
|
|
235
|
-
};
|
|
236
|
-
readonly required: readonly ["image"];
|
|
237
|
-
readonly additionalProperties: false;
|
|
238
|
-
};
|
|
239
|
-
execute(input: Input, _context: IExecuteContext): Promise<Output | undefined>;
|
|
240
|
-
executePreview(input: Input, _context: IExecutePreviewContext): Promise<Output | undefined>;
|
|
241
|
-
}
|
|
242
|
-
declare module "@workglow/task-graph" {
|
|
243
|
-
interface Workflow {
|
|
244
|
-
imageBrightness: CreateWorkflow<ImageBrightnessTaskInput, ImageBrightnessTaskOutput, TaskConfig>;
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
export {};
|
|
248
|
-
//# sourceMappingURL=ImageBrightnessTask.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ImageBrightnessTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageBrightnessTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,eAAe,EACf,sBAAsB,EACtB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAE9B,OAAO,EAA8B,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA6B7E,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,MAAM;qBACJ,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,QAAQ;qBACf,WAAW,EAAE,qCAAqC;qBAClD,OAAO,EAAE,CAAC,GAAG;qBACb,OAAO,EAAE,GAAG;qBACZ,OAAO,EAAE,CAAC;;;;;CAKmB,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI0B,CAAC;AAEpC,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAC,OAAO,WAAW,CAAC,CAAC;AAC3E,MAAM,MAAM,yBAAyB,GAAG,eAAe,CAAC,OAAO,YAAY,CAAC,CAAC;AAE7E,qBAAa,mBAAmB,CAC9B,KAAK,SAAS,wBAAwB,GAAG,wBAAwB,EACjE,MAAM,SAAS,yBAAyB,GAAG,yBAAyB,EACpE,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,yBAAyB;IACtD,gBAAyB,QAAQ,WAAW;IAC5C,OAAuB,KAAK,SAAuB;IACnD,OAAuB,WAAW,SAAwC;IAE1E,OAAgB,WAAW;uBAtCrB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBACL,MAAM;yBACJ,IAAI,EAAE,QAAQ;yBACd,KAAK,EAAE,QAAQ;yBACf,WAAW,EAAE,qCAAqC;yBAClD,OAAO,EAAE,CAAC,GAAG;yBACb,OAAO,EAAE,GAAG;yBACZ,OAAO,EAAE,CAAC;;;;;MA+Bb;IAED,OAAgB,YAAY;uBAzBtB,QAAQ;;qBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAyBN;IAEc,OAAO,CAAC,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,eAAe,GAAG,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAE3F;IAEc,cAAc,CAC3B,KAAK,EAAE,KAAK,EACZ,QAAQ,EAAE,sBAAsB,GAC/B,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAE7B;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,eAAe,EAAE,cAAc,CAC7B,wBAAwB,EACxB,yBAAyB,EACzB,UAAU,CACX,CAAC;KACH;CACF"}
|