@workglow/tasks 0.2.14 → 0.2.16
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.js +189 -166
- package/dist/browser.js.map +22 -23
- package/dist/bun.js +189 -166
- package/dist/bun.js.map +22 -23
- package/dist/common.d.ts +0 -1
- package/dist/common.d.ts.map +1 -1
- package/dist/electron.js +189 -166
- package/dist/electron.js.map +22 -23
- package/dist/node.js +189 -166
- package/dist/node.js.map +22 -23
- package/dist/task/image/ImageBorderTask.d.ts +76 -58
- package/dist/task/image/ImageBorderTask.d.ts.map +1 -1
- package/dist/task/image/ImageSchemas.d.ts +66 -1
- package/dist/task/image/ImageSchemas.d.ts.map +1 -1
- package/dist/task/image/ImageTextTask.d.ts +91 -254
- package/dist/task/image/ImageTextTask.d.ts.map +1 -1
- package/dist/task/image/ImageTintTask.d.ts +76 -58
- package/dist/task/image/ImageTintTask.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecBrowser.d.ts +1 -1
- package/dist/task/image/imageRasterCodecBrowser.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecNode.d.ts +1 -1
- package/dist/task/image/imageRasterCodecNode.d.ts.map +1 -1
- package/dist/task/image/imageRasterCodecRegistry.d.ts +7 -7
- package/dist/task/image/imageRasterCodecRegistry.d.ts.map +1 -1
- package/dist/task/image/imageTaskIo.d.ts +11 -3
- package/dist/task/image/imageTaskIo.d.ts.map +1 -1
- package/dist/task/string/StringConcatTask.d.ts +6 -6
- package/dist/task/string/StringConcatTask.d.ts.map +1 -1
- package/dist/task/string/StringIncludesTask.d.ts +12 -12
- package/dist/task/string/StringIncludesTask.d.ts.map +1 -1
- package/dist/task/string/StringJoinTask.d.ts +12 -12
- package/dist/task/string/StringJoinTask.d.ts.map +1 -1
- package/dist/task/string/StringLengthTask.d.ts +12 -12
- package/dist/task/string/StringLengthTask.d.ts.map +1 -1
- package/dist/task/string/StringLowerCaseTask.d.ts +12 -12
- package/dist/task/string/StringLowerCaseTask.d.ts.map +1 -1
- package/dist/task/string/StringReplaceTask.d.ts +12 -12
- package/dist/task/string/StringReplaceTask.d.ts.map +1 -1
- package/dist/task/string/StringSliceTask.d.ts +12 -12
- package/dist/task/string/StringSliceTask.d.ts.map +1 -1
- package/dist/task/string/StringTemplateTask.d.ts +6 -6
- package/dist/task/string/StringTemplateTask.d.ts.map +1 -1
- package/dist/task/string/StringTrimTask.d.ts +12 -12
- package/dist/task/string/StringTrimTask.d.ts.map +1 -1
- package/dist/task/string/StringUpperCaseTask.d.ts +12 -12
- package/dist/task/string/StringUpperCaseTask.d.ts.map +1 -1
- package/package.json +9 -9
- package/dist/task/image/imageTaskTransport.d.ts +0 -21
- package/dist/task/image/imageTaskTransport.d.ts.map +0 -1
|
@@ -61,36 +61,45 @@ declare const inputSchema: {
|
|
|
61
61
|
readonly default: 1;
|
|
62
62
|
};
|
|
63
63
|
readonly color: {
|
|
64
|
-
readonly
|
|
65
|
-
|
|
66
|
-
readonly
|
|
67
|
-
readonly
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
readonly
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
readonly
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
readonly
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
+
};
|
|
90
92
|
};
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
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
|
+
}];
|
|
94
103
|
};
|
|
95
104
|
};
|
|
96
105
|
readonly required: readonly ["image", "color"];
|
|
@@ -211,36 +220,45 @@ export declare class ImageBorderTask<Input extends ImageBorderTaskInput = ImageB
|
|
|
211
220
|
readonly default: 1;
|
|
212
221
|
};
|
|
213
222
|
readonly color: {
|
|
214
|
-
readonly
|
|
215
|
-
|
|
216
|
-
readonly
|
|
217
|
-
readonly
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
readonly
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
readonly
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
readonly
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
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
|
+
};
|
|
240
251
|
};
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
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
|
+
}];
|
|
244
262
|
};
|
|
245
263
|
};
|
|
246
264
|
readonly required: readonly ["image", "color"];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageBorderTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageBorderTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"ImageBorderTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageBorderTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,EACvB,IAAI,EACJ,UAAU,EAEX,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAgD,eAAe,EAAE,MAAM,gBAAgB,CAAC;AAG/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,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAsCjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,WAAW,EAAE,cAAc,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,CAAC,CAAC;KACtF;CACF"}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright 2025 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import type { ImageBinary } from "@workglow/util/media";
|
|
6
|
+
import type { ColorObject, ImageBinary } from "@workglow/util/media";
|
|
7
7
|
import type { JsonSchema } from "@workglow/util/schema";
|
|
8
8
|
import { FromSchema } from "@workglow/util/schema";
|
|
9
9
|
export declare const ImageBinarySchemaOptions: {
|
|
@@ -135,6 +135,71 @@ export declare const ColorSchema: (annotations?: Record<string, unknown>) => {
|
|
|
135
135
|
};
|
|
136
136
|
};
|
|
137
137
|
readonly required: readonly ["r", "g", "b"];
|
|
138
|
+
readonly format: "color";
|
|
138
139
|
readonly additionalProperties: false;
|
|
139
140
|
};
|
|
141
|
+
export declare const HexColorSchema: (annotations?: Record<string, unknown>) => {
|
|
142
|
+
readonly type: "string";
|
|
143
|
+
readonly format: "color";
|
|
144
|
+
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
145
|
+
readonly title: "Color (hex)";
|
|
146
|
+
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
147
|
+
};
|
|
148
|
+
/** Accept a {@link ColorObject} or a `#RRGGBB[AA]`/`#RGB[A]` hex string. */
|
|
149
|
+
export declare const ColorValueSchema: (annotations?: Record<string, unknown>) => {
|
|
150
|
+
readonly oneOf: readonly [{
|
|
151
|
+
readonly type: "object";
|
|
152
|
+
readonly properties: {
|
|
153
|
+
readonly r: {
|
|
154
|
+
readonly type: "integer";
|
|
155
|
+
readonly minimum: 0;
|
|
156
|
+
readonly maximum: 255;
|
|
157
|
+
readonly title: "Red";
|
|
158
|
+
};
|
|
159
|
+
readonly g: {
|
|
160
|
+
readonly type: "integer";
|
|
161
|
+
readonly minimum: 0;
|
|
162
|
+
readonly maximum: 255;
|
|
163
|
+
readonly title: "Green";
|
|
164
|
+
};
|
|
165
|
+
readonly b: {
|
|
166
|
+
readonly type: "integer";
|
|
167
|
+
readonly minimum: 0;
|
|
168
|
+
readonly maximum: 255;
|
|
169
|
+
readonly title: "Blue";
|
|
170
|
+
};
|
|
171
|
+
readonly a: {
|
|
172
|
+
readonly type: "integer";
|
|
173
|
+
readonly minimum: 0;
|
|
174
|
+
readonly maximum: 255;
|
|
175
|
+
readonly title: "Alpha";
|
|
176
|
+
readonly default: 255;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
readonly required: readonly ["r", "g", "b"];
|
|
180
|
+
readonly format: "color";
|
|
181
|
+
readonly additionalProperties: false;
|
|
182
|
+
}, {
|
|
183
|
+
readonly type: "string";
|
|
184
|
+
readonly format: "color";
|
|
185
|
+
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
186
|
+
readonly title: "Color (hex)";
|
|
187
|
+
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
188
|
+
}];
|
|
189
|
+
};
|
|
190
|
+
export declare const ColorFromSchemaOptions: {
|
|
191
|
+
readonly parseNotKeyword: true;
|
|
192
|
+
readonly parseIfThenElseKeywords: true;
|
|
193
|
+
readonly keepDefaultedPropertiesOptional: true;
|
|
194
|
+
readonly references: false;
|
|
195
|
+
readonly deserialize: [{
|
|
196
|
+
readonly pattern: {
|
|
197
|
+
readonly type: "object";
|
|
198
|
+
readonly format: "color";
|
|
199
|
+
};
|
|
200
|
+
readonly output: ColorObject;
|
|
201
|
+
}];
|
|
202
|
+
};
|
|
203
|
+
export type ColorFromSchemaOptions = typeof ColorFromSchemaOptions;
|
|
204
|
+
export type ColorFromSchema<SCHEMA extends JsonSchema> = FromSchema<SCHEMA, ColorFromSchemaOptions>;
|
|
140
205
|
//# sourceMappingURL=ImageSchemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageSchemas.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageSchemas.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"ImageSchemas.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageSchemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,11 +3,90 @@
|
|
|
3
3
|
* Copyright 2026 Steven Roussey <sroussey@gmail.com>
|
|
4
4
|
* SPDX-License-Identifier: Apache-2.0
|
|
5
5
|
*/
|
|
6
|
-
import { CreateWorkflow,
|
|
6
|
+
import { CreateWorkflow, Task, type IExecuteReactiveContext, type TaskConfig } from "@workglow/task-graph";
|
|
7
|
+
import type { DataPortSchema } from "@workglow/util/schema";
|
|
7
8
|
import { ImageFromSchema } from "./ImageSchemas";
|
|
8
9
|
declare const inputSchema: {
|
|
9
10
|
readonly type: "object";
|
|
10
11
|
readonly properties: {
|
|
12
|
+
readonly text: {
|
|
13
|
+
readonly type: "string";
|
|
14
|
+
readonly title: "Text";
|
|
15
|
+
readonly description: "Text to render (use \\n for line breaks)";
|
|
16
|
+
readonly minLength: 1;
|
|
17
|
+
};
|
|
18
|
+
readonly font: {
|
|
19
|
+
readonly type: "string";
|
|
20
|
+
readonly title: "Font";
|
|
21
|
+
readonly description: "CSS font family name (e.g. sans-serif, Arial)";
|
|
22
|
+
readonly default: "sans-serif";
|
|
23
|
+
};
|
|
24
|
+
readonly fontSize: {
|
|
25
|
+
readonly type: "integer";
|
|
26
|
+
readonly title: "Font size";
|
|
27
|
+
readonly description: "Font size in pixels";
|
|
28
|
+
readonly minimum: 1;
|
|
29
|
+
readonly default: 24;
|
|
30
|
+
};
|
|
31
|
+
readonly bold: {
|
|
32
|
+
readonly type: "boolean";
|
|
33
|
+
readonly title: "Bold";
|
|
34
|
+
readonly default: false;
|
|
35
|
+
};
|
|
36
|
+
readonly italic: {
|
|
37
|
+
readonly type: "boolean";
|
|
38
|
+
readonly title: "Italic";
|
|
39
|
+
readonly default: false;
|
|
40
|
+
};
|
|
41
|
+
readonly color: {
|
|
42
|
+
readonly oneOf: readonly [{
|
|
43
|
+
readonly type: "object";
|
|
44
|
+
readonly properties: {
|
|
45
|
+
readonly r: {
|
|
46
|
+
readonly type: "integer";
|
|
47
|
+
readonly minimum: 0;
|
|
48
|
+
readonly maximum: 255;
|
|
49
|
+
readonly title: "Red";
|
|
50
|
+
};
|
|
51
|
+
readonly g: {
|
|
52
|
+
readonly type: "integer";
|
|
53
|
+
readonly minimum: 0;
|
|
54
|
+
readonly maximum: 255;
|
|
55
|
+
readonly title: "Green";
|
|
56
|
+
};
|
|
57
|
+
readonly b: {
|
|
58
|
+
readonly type: "integer";
|
|
59
|
+
readonly minimum: 0;
|
|
60
|
+
readonly maximum: 255;
|
|
61
|
+
readonly title: "Blue";
|
|
62
|
+
};
|
|
63
|
+
readonly a: {
|
|
64
|
+
readonly type: "integer";
|
|
65
|
+
readonly minimum: 0;
|
|
66
|
+
readonly maximum: 255;
|
|
67
|
+
readonly title: "Alpha";
|
|
68
|
+
readonly default: 255;
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
readonly required: readonly ["r", "g", "b"];
|
|
72
|
+
readonly format: "color";
|
|
73
|
+
readonly additionalProperties: false;
|
|
74
|
+
}, {
|
|
75
|
+
readonly type: "string";
|
|
76
|
+
readonly format: "color";
|
|
77
|
+
readonly pattern: "^#([0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})$";
|
|
78
|
+
readonly title: "Color (hex)";
|
|
79
|
+
readonly description: "Color as a `#RRGGBB[AA]` or `#RGB[A]` hex string";
|
|
80
|
+
}];
|
|
81
|
+
};
|
|
82
|
+
readonly position: {
|
|
83
|
+
readonly type: "string";
|
|
84
|
+
readonly title: "Position";
|
|
85
|
+
readonly description: "Anchor position of the text block within the image";
|
|
86
|
+
readonly enum: readonly ["top-left", "top-center", "top-right", "middle-left", "middle-center", "middle-right", "bottom-left", "bottom-center", "bottom-right"];
|
|
87
|
+
readonly default: "middle-center";
|
|
88
|
+
readonly "x-ui-enum-labels": Record<"bottom-center" | "bottom-left" | "bottom-right" | "middle-center" | "middle-left" | "middle-right" | "top-center" | "top-left" | "top-right", string>;
|
|
89
|
+
};
|
|
11
90
|
readonly image: {
|
|
12
91
|
readonly oneOf: readonly [{
|
|
13
92
|
readonly type: "object";
|
|
@@ -53,66 +132,6 @@ declare const inputSchema: {
|
|
|
53
132
|
readonly description: string;
|
|
54
133
|
}];
|
|
55
134
|
};
|
|
56
|
-
readonly text: {
|
|
57
|
-
readonly type: "string";
|
|
58
|
-
readonly title: "Text";
|
|
59
|
-
readonly description: "Text to render (use \\n for line breaks)";
|
|
60
|
-
};
|
|
61
|
-
readonly font: {
|
|
62
|
-
readonly type: "string";
|
|
63
|
-
readonly title: "Font";
|
|
64
|
-
readonly description: "CSS font family name (e.g. sans-serif, Arial)";
|
|
65
|
-
readonly default: "sans-serif";
|
|
66
|
-
};
|
|
67
|
-
readonly fontSize: {
|
|
68
|
-
readonly type: "integer";
|
|
69
|
-
readonly title: "Font size";
|
|
70
|
-
readonly description: "Font size in pixels";
|
|
71
|
-
readonly minimum: 1;
|
|
72
|
-
readonly default: 24;
|
|
73
|
-
};
|
|
74
|
-
readonly bold: {
|
|
75
|
-
readonly type: "boolean";
|
|
76
|
-
readonly title: "Bold";
|
|
77
|
-
readonly default: false;
|
|
78
|
-
};
|
|
79
|
-
readonly italic: {
|
|
80
|
-
readonly type: "boolean";
|
|
81
|
-
readonly title: "Italic";
|
|
82
|
-
readonly default: false;
|
|
83
|
-
};
|
|
84
|
-
readonly color: {
|
|
85
|
-
readonly type: "object";
|
|
86
|
-
readonly properties: {
|
|
87
|
-
readonly r: {
|
|
88
|
-
readonly type: "integer";
|
|
89
|
-
readonly minimum: 0;
|
|
90
|
-
readonly maximum: 255;
|
|
91
|
-
readonly title: "Red";
|
|
92
|
-
};
|
|
93
|
-
readonly g: {
|
|
94
|
-
readonly type: "integer";
|
|
95
|
-
readonly minimum: 0;
|
|
96
|
-
readonly maximum: 255;
|
|
97
|
-
readonly title: "Green";
|
|
98
|
-
};
|
|
99
|
-
readonly b: {
|
|
100
|
-
readonly type: "integer";
|
|
101
|
-
readonly minimum: 0;
|
|
102
|
-
readonly maximum: 255;
|
|
103
|
-
readonly title: "Blue";
|
|
104
|
-
};
|
|
105
|
-
readonly a: {
|
|
106
|
-
readonly type: "integer";
|
|
107
|
-
readonly minimum: 0;
|
|
108
|
-
readonly maximum: 255;
|
|
109
|
-
readonly title: "Alpha";
|
|
110
|
-
readonly default: 255;
|
|
111
|
-
};
|
|
112
|
-
};
|
|
113
|
-
readonly required: readonly ["r", "g", "b"];
|
|
114
|
-
readonly additionalProperties: false;
|
|
115
|
-
};
|
|
116
135
|
readonly width: {
|
|
117
136
|
readonly type: "integer";
|
|
118
137
|
readonly title: "Width";
|
|
@@ -125,17 +144,17 @@ declare const inputSchema: {
|
|
|
125
144
|
readonly description: "Output height in pixels";
|
|
126
145
|
readonly minimum: 1;
|
|
127
146
|
};
|
|
128
|
-
readonly position: {
|
|
129
|
-
readonly type: "string";
|
|
130
|
-
readonly title: "Position";
|
|
131
|
-
readonly description: "Anchor position of the text block within the image";
|
|
132
|
-
readonly enum: readonly ["top-left", "top-center", "top-right", "middle-left", "middle-center", "middle-right", "bottom-left", "bottom-center", "bottom-right"];
|
|
133
|
-
readonly default: "middle-center";
|
|
134
|
-
readonly "x-ui-enum-labels": Record<"bottom-center" | "bottom-left" | "bottom-right" | "middle-center" | "middle-left" | "middle-right" | "top-center" | "top-left" | "top-right", string>;
|
|
135
|
-
};
|
|
136
147
|
};
|
|
137
|
-
readonly required: readonly ["text", "color"
|
|
148
|
+
readonly required: readonly ["text", "color"];
|
|
138
149
|
readonly additionalProperties: false;
|
|
150
|
+
readonly if: {
|
|
151
|
+
readonly not: {
|
|
152
|
+
readonly required: readonly ["image"];
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
readonly then: {
|
|
156
|
+
readonly required: readonly ["width", "height"];
|
|
157
|
+
};
|
|
139
158
|
};
|
|
140
159
|
declare const outputSchema: {
|
|
141
160
|
readonly type: "object";
|
|
@@ -196,190 +215,8 @@ export declare class ImageTextTask<Input extends ImageTextTaskInput = ImageTextT
|
|
|
196
215
|
static readonly category = "Image";
|
|
197
216
|
static title: string;
|
|
198
217
|
static description: string;
|
|
199
|
-
static inputSchema():
|
|
200
|
-
|
|
201
|
-
readonly properties: {
|
|
202
|
-
readonly image: {
|
|
203
|
-
readonly oneOf: readonly [{
|
|
204
|
-
readonly type: "object";
|
|
205
|
-
readonly properties: {
|
|
206
|
-
readonly data: {
|
|
207
|
-
readonly type: "array";
|
|
208
|
-
readonly items: {
|
|
209
|
-
readonly type: "number";
|
|
210
|
-
readonly format: "Uint8Clamped";
|
|
211
|
-
};
|
|
212
|
-
readonly format: "Uint8ClampedArray";
|
|
213
|
-
readonly title: "Data";
|
|
214
|
-
readonly description: "Pixel data of the image";
|
|
215
|
-
};
|
|
216
|
-
readonly width: {
|
|
217
|
-
readonly type: "integer";
|
|
218
|
-
readonly minimum: 1;
|
|
219
|
-
readonly title: "Width";
|
|
220
|
-
readonly description: "Width in pixels";
|
|
221
|
-
};
|
|
222
|
-
readonly height: {
|
|
223
|
-
readonly type: "integer";
|
|
224
|
-
readonly minimum: 1;
|
|
225
|
-
readonly title: "Height";
|
|
226
|
-
readonly description: "Height in pixels";
|
|
227
|
-
};
|
|
228
|
-
readonly channels: {
|
|
229
|
-
readonly type: "integer";
|
|
230
|
-
readonly enum: readonly [1, 3, 4];
|
|
231
|
-
readonly title: "Channels";
|
|
232
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
233
|
-
};
|
|
234
|
-
};
|
|
235
|
-
readonly additionalProperties: false;
|
|
236
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
237
|
-
readonly format: "image:ImageBinary";
|
|
238
|
-
readonly title: "Image";
|
|
239
|
-
readonly description: "Raw pixel image data";
|
|
240
|
-
}, {
|
|
241
|
-
readonly type: "string";
|
|
242
|
-
readonly format: "image:data-uri";
|
|
243
|
-
readonly title: string;
|
|
244
|
-
readonly description: string;
|
|
245
|
-
}];
|
|
246
|
-
};
|
|
247
|
-
readonly text: {
|
|
248
|
-
readonly type: "string";
|
|
249
|
-
readonly title: "Text";
|
|
250
|
-
readonly description: "Text to render (use \\n for line breaks)";
|
|
251
|
-
};
|
|
252
|
-
readonly font: {
|
|
253
|
-
readonly type: "string";
|
|
254
|
-
readonly title: "Font";
|
|
255
|
-
readonly description: "CSS font family name (e.g. sans-serif, Arial)";
|
|
256
|
-
readonly default: "sans-serif";
|
|
257
|
-
};
|
|
258
|
-
readonly fontSize: {
|
|
259
|
-
readonly type: "integer";
|
|
260
|
-
readonly title: "Font size";
|
|
261
|
-
readonly description: "Font size in pixels";
|
|
262
|
-
readonly minimum: 1;
|
|
263
|
-
readonly default: 24;
|
|
264
|
-
};
|
|
265
|
-
readonly bold: {
|
|
266
|
-
readonly type: "boolean";
|
|
267
|
-
readonly title: "Bold";
|
|
268
|
-
readonly default: false;
|
|
269
|
-
};
|
|
270
|
-
readonly italic: {
|
|
271
|
-
readonly type: "boolean";
|
|
272
|
-
readonly title: "Italic";
|
|
273
|
-
readonly default: false;
|
|
274
|
-
};
|
|
275
|
-
readonly color: {
|
|
276
|
-
readonly type: "object";
|
|
277
|
-
readonly properties: {
|
|
278
|
-
readonly r: {
|
|
279
|
-
readonly type: "integer";
|
|
280
|
-
readonly minimum: 0;
|
|
281
|
-
readonly maximum: 255;
|
|
282
|
-
readonly title: "Red";
|
|
283
|
-
};
|
|
284
|
-
readonly g: {
|
|
285
|
-
readonly type: "integer";
|
|
286
|
-
readonly minimum: 0;
|
|
287
|
-
readonly maximum: 255;
|
|
288
|
-
readonly title: "Green";
|
|
289
|
-
};
|
|
290
|
-
readonly b: {
|
|
291
|
-
readonly type: "integer";
|
|
292
|
-
readonly minimum: 0;
|
|
293
|
-
readonly maximum: 255;
|
|
294
|
-
readonly title: "Blue";
|
|
295
|
-
};
|
|
296
|
-
readonly a: {
|
|
297
|
-
readonly type: "integer";
|
|
298
|
-
readonly minimum: 0;
|
|
299
|
-
readonly maximum: 255;
|
|
300
|
-
readonly title: "Alpha";
|
|
301
|
-
readonly default: 255;
|
|
302
|
-
};
|
|
303
|
-
};
|
|
304
|
-
readonly required: readonly ["r", "g", "b"];
|
|
305
|
-
readonly additionalProperties: false;
|
|
306
|
-
};
|
|
307
|
-
readonly width: {
|
|
308
|
-
readonly type: "integer";
|
|
309
|
-
readonly title: "Width";
|
|
310
|
-
readonly description: "Output width in pixels";
|
|
311
|
-
readonly minimum: 1;
|
|
312
|
-
};
|
|
313
|
-
readonly height: {
|
|
314
|
-
readonly type: "integer";
|
|
315
|
-
readonly title: "Height";
|
|
316
|
-
readonly description: "Output height in pixels";
|
|
317
|
-
readonly minimum: 1;
|
|
318
|
-
};
|
|
319
|
-
readonly position: {
|
|
320
|
-
readonly type: "string";
|
|
321
|
-
readonly title: "Position";
|
|
322
|
-
readonly description: "Anchor position of the text block within the image";
|
|
323
|
-
readonly enum: readonly ["top-left", "top-center", "top-right", "middle-left", "middle-center", "middle-right", "bottom-left", "bottom-center", "bottom-right"];
|
|
324
|
-
readonly default: "middle-center";
|
|
325
|
-
readonly "x-ui-enum-labels": Record<"bottom-center" | "bottom-left" | "bottom-right" | "middle-center" | "middle-left" | "middle-right" | "top-center" | "top-left" | "top-right", string>;
|
|
326
|
-
};
|
|
327
|
-
};
|
|
328
|
-
readonly required: readonly ["text", "color", "width", "height"];
|
|
329
|
-
readonly additionalProperties: false;
|
|
330
|
-
};
|
|
331
|
-
static outputSchema(): {
|
|
332
|
-
readonly type: "object";
|
|
333
|
-
readonly properties: {
|
|
334
|
-
readonly image: {
|
|
335
|
-
readonly oneOf: readonly [{
|
|
336
|
-
readonly type: "object";
|
|
337
|
-
readonly properties: {
|
|
338
|
-
readonly data: {
|
|
339
|
-
readonly type: "array";
|
|
340
|
-
readonly items: {
|
|
341
|
-
readonly type: "number";
|
|
342
|
-
readonly format: "Uint8Clamped";
|
|
343
|
-
};
|
|
344
|
-
readonly format: "Uint8ClampedArray";
|
|
345
|
-
readonly title: "Data";
|
|
346
|
-
readonly description: "Pixel data of the image";
|
|
347
|
-
};
|
|
348
|
-
readonly width: {
|
|
349
|
-
readonly type: "integer";
|
|
350
|
-
readonly minimum: 1;
|
|
351
|
-
readonly title: "Width";
|
|
352
|
-
readonly description: "Width in pixels";
|
|
353
|
-
};
|
|
354
|
-
readonly height: {
|
|
355
|
-
readonly type: "integer";
|
|
356
|
-
readonly minimum: 1;
|
|
357
|
-
readonly title: "Height";
|
|
358
|
-
readonly description: "Height in pixels";
|
|
359
|
-
};
|
|
360
|
-
readonly channels: {
|
|
361
|
-
readonly type: "integer";
|
|
362
|
-
readonly enum: readonly [1, 3, 4];
|
|
363
|
-
readonly title: "Channels";
|
|
364
|
-
readonly description: "1 (gray), 3 (RGB), or 4 (RGBA)";
|
|
365
|
-
};
|
|
366
|
-
};
|
|
367
|
-
readonly additionalProperties: false;
|
|
368
|
-
readonly required: readonly ["data", "width", "height", "channels"];
|
|
369
|
-
readonly format: "image:ImageBinary";
|
|
370
|
-
readonly title: "Image";
|
|
371
|
-
readonly description: "Raw pixel image data";
|
|
372
|
-
}, {
|
|
373
|
-
readonly type: "string";
|
|
374
|
-
readonly format: "image:data-uri";
|
|
375
|
-
readonly title: string;
|
|
376
|
-
readonly description: string;
|
|
377
|
-
}];
|
|
378
|
-
};
|
|
379
|
-
};
|
|
380
|
-
readonly required: readonly ["image"];
|
|
381
|
-
readonly additionalProperties: false;
|
|
382
|
-
};
|
|
218
|
+
static inputSchema(): DataPortSchema;
|
|
219
|
+
static outputSchema(): DataPortSchema;
|
|
383
220
|
getDefaultInputsFromStaticInputDefinitions(): Partial<Input>;
|
|
384
221
|
executeReactive(input: Input, _output: Output, _context: IExecuteReactiveContext): Promise<Output>;
|
|
385
222
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ImageTextTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageTextTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,uBAAuB,
|
|
1
|
+
{"version":3,"file":"ImageTextTask.d.ts","sourceRoot":"","sources":["../../../src/task/image/ImageTextTask.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,cAAc,EACd,IAAI,EAEJ,KAAK,uBAAuB,EAC5B,KAAK,UAAU,EAChB,MAAM,sBAAsB,CAAC;AAE9B,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAC;AAC5D,OAAO,EAAgD,eAAe,EAAE,MAAM,gBAAgB,CAAC;AA8G/F,QAAA,MAAM,WAAW;mBACT,QAAQ;;iBAEZ,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,0CAA0C;qBACvD,SAAS,EAAE,CAAC;;iBAEd,IAAI;qBACF,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,MAAM;qBACb,WAAW,EAAE,+CAA+C;qBAC5D,OAAO,EAAE,YAAY;;iBAEvB,QAAQ;qBACN,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,WAAW;qBAClB,WAAW,EAAE,qBAAqB;qBAClC,OAAO,EAAE,CAAC;qBACV,OAAO,EAAE,EAAE;;iBAEb,IAAI;qBAAI,IAAI,EAAE,SAAS;qBAAE,KAAK,EAAE,MAAM;qBAAE,OAAO;;iBAC/C,MAAM;qBAAI,IAAI,EAAE,SAAS;qBAAE,KAAK,EAAE,QAAQ;qBAAE,OAAO;;iBACnD,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,QAAQ;qBACN,IAAI,EAAE,QAAQ;qBACd,KAAK,EAAE,UAAU;qBACjB,WAAW,EAAE,oDAAoD;qBACjE,IAAI;qBACJ,OAAO,EAAE,eAAe;qBACxB,kBAAkB;;iBAEpB,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBACL,KAAK;qBACH,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,OAAO;qBACd,WAAW,EAAE,wBAAwB;qBACrC,OAAO,EAAE,CAAC;;iBAEZ,MAAM;qBACJ,IAAI,EAAE,SAAS;qBACf,KAAK,EAAE,QAAQ;qBACf,WAAW,EAAE,yBAAyB;qBACtC,OAAO,EAAE,CAAC;;;;;;iBAMZ,GAAG;qBACD,QAAQ;;;;iBAIV,QAAQ;;CAEuB,CAAC;AAEpC,QAAA,MAAM,YAAY;mBACV,QAAQ;;iBAEZ,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI0B,CAAC;AAEpC,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,OAAO,WAAW,CAAC,CAAC;AACrE,MAAM,MAAM,mBAAmB,GAAG,eAAe,CAAC,OAAO,YAAY,CAAC,CAAC;AAkBvE,qBAAa,aAAa,CACxB,KAAK,SAAS,kBAAkB,GAAG,kBAAkB,EACrD,MAAM,SAAS,mBAAmB,GAAG,mBAAmB,EACxD,MAAM,SAAS,UAAU,GAAG,UAAU,CACtC,SAAQ,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,MAAM,CAAC;IACnC,gBAAyB,IAAI,mBAAmB;IAChD,gBAAyB,QAAQ,WAAW;IAC5C,OAAuB,KAAK,SAA0B;IACtD,OAAuB,WAAW,SAC4D;IAE9F,OAAgB,WAAW,IAAI,cAAc,CAE5C;IAED,OAAgB,YAAY,IAAI,cAAc,CAE7C;IAEQ,0CAA0C,IAAI,OAAO,CAAC,KAAK,CAAC,CAMpE;IAEc,eAAe,CAC5B,KAAK,EAAE,KAAK,EACZ,OAAO,EAAE,MAAM,EACf,QAAQ,EAAE,uBAAuB,GAChC,OAAO,CAAC,MAAM,CAAC,CAiDjB;CACF;AAED,OAAO,QAAQ,sBAAsB,CAAC,CAAC;IACrC,UAAU,QAAQ;QAChB,SAAS,EAAE,cAAc,CAAC,kBAAkB,EAAE,mBAAmB,EAAE,UAAU,CAAC,CAAC;KAChF;CACF"}
|