@cesdk/cesdk-js 1.3.0 → 1.4.0-alpha.4

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/BlockAPI.d.ts ADDED
@@ -0,0 +1,232 @@
1
+ type Vec2 = { x: number; y: number };
2
+ type DesignElementId = number;
3
+ type DesignElementType = string;
4
+ type MimeType = 'image/png' | 'image/jpeg';
5
+ type Size = number; // | 'auto';
6
+ type Size2 = {
7
+ width: Size;
8
+ height: Size;
9
+ };
10
+
11
+ export default class BlockAPI {
12
+ /**
13
+ * Exports a design block element as a file of the given mime type.
14
+ * Performs an internal update to resolve the final layout for the blocks.
15
+ * @param handle The design block element to export.
16
+ * @param mimeType The mime type of the output file.
17
+ * @returns A promise that resolves with the exported image or is rejected with an error.
18
+ */
19
+ export(handle: DesignElementId, mimeType: MimeType): Promise<Blob>;
20
+
21
+ /**
22
+ * Create a new block, fails if type is unknown.
23
+ * @param type The type of the block that shall be created.
24
+ * @returns The created blocks handle.
25
+ */
26
+ create(type: DesignElementType): DesignElementId;
27
+
28
+ /**
29
+
30
+ * Get the type of the given block, fails if the block is invalid.
31
+ * @param id The block to query.
32
+ * @returns The blocks type.
33
+ */
34
+ getType(id: DesignElementId): DesignElementType;
35
+
36
+ /**
37
+ * Update the selection state of a block.
38
+ * Fails for invalid blocks.
39
+ * @param id The block to query.
40
+ * @param selected Whether or not the block should be selected.
41
+ */
42
+ setSelected(id: DesignElementId, selected: boolean): void;
43
+
44
+ /**
45
+ * Get the selected state of a block.
46
+ * @param id The block to query.
47
+ * @returns True if the block is selected, false otherwise.
48
+ */
49
+ isSelected(id: DesignElementId): boolean;
50
+
51
+ /**
52
+ * Get all currently selected blocks.
53
+ * @returns An array of block ids.
54
+ */
55
+ findAllSelected(): DesignElementId[];
56
+
57
+ /**
58
+ * Update a block's name.
59
+ * @param id The block to update.
60
+ * @param name The name to set.
61
+ */
62
+ setName(id: DesignElementId, name: string): void;
63
+
64
+ /**
65
+ * Get a block's name.
66
+ * @param id The block to update.
67
+ */
68
+ getName(id: DesignElementId): string;
69
+
70
+ /**
71
+ * Finds all blocks with the given name.
72
+ * @param name The name to search for.
73
+ * @returns A list of block ids.
74
+ */
75
+ findByName(name: string): DesignElementId[];
76
+
77
+ /**
78
+ * Finds all blocks with the given type.
79
+ * @param type The type to search for.
80
+ * @returns A list of block ids.
81
+ */
82
+ findByType(type: DesignElementType): DesignElementId[];
83
+
84
+ /**
85
+ * Return all blocks currently known to the engine.
86
+ * @returns A list of block ids.
87
+ */
88
+ findAll(): /* filterSpec?: unknown */ DesignElementId[];
89
+
90
+ // Element
91
+
92
+ /**
93
+ * Query a block's visibility.
94
+ * @param id The block to query.
95
+ * @returns True if visible, false otherwise.
96
+ */
97
+ isVisible(id: DesignElementId): boolean;
98
+
99
+ /**
100
+ * Update a block's visibility.
101
+ * @param id The block to update.
102
+ * @param visible Whether the block shall be visible.
103
+ */
104
+ setVisible(id: DesignElementId, visible: boolean): void;
105
+
106
+ /**
107
+ * Query a block's absolute position in design units.
108
+ * @param id The block to query.
109
+ * @returns
110
+ */
111
+ getPosition(id: DesignElementId): Vec2;
112
+
113
+ /**
114
+ * Update a block's absolute position.
115
+ * @param id The block to update.
116
+ * @param { x, y } pos The new position in design units.
117
+ */
118
+ setPosition(id: DesignElementId, { x, y }: Vec2): void;
119
+
120
+ /**
121
+ * Query a block's rotation in radians.
122
+ * @param id The block to query.
123
+ * @returns The block's rotation around its center in radians.
124
+ */
125
+ getRotation(id: DesignElementId): number;
126
+
127
+ /**
128
+ * Update a block's rotation.
129
+ * @param id The block to update.
130
+ * @param radians The new rotation in radians. Rotation is applied around the block's center.
131
+ */
132
+ setRotation(id: DesignElementId, radians: number): void;
133
+
134
+ /**
135
+ * Query a block's horizontal flip state.
136
+ * @param id The block to query.
137
+ * @returns A boolean indicating for whether the block is flipped in the queried direction
138
+ */
139
+ getFlipHorizontal(id: DesignElementId): boolean;
140
+
141
+ /**
142
+ * Query a block's vertical flip state.
143
+ * @param id The block to query.
144
+ * @returns A boolean indicating for whether the block is flipped in the queried direction
145
+ */
146
+ getFlipVertical(id: DesignElementId): boolean;
147
+
148
+ /**
149
+ * Update a block's horizontal flip.
150
+ * @param id The block to update.
151
+ * @param horizontal Whether the block should be flipped along its x-axis.
152
+ * @returns
153
+ */
154
+ setFlipHorizontal(id: DesignElementId, flip: boolean): void;
155
+
156
+ /**
157
+ * Update a block's vertical flip.
158
+ * @param id The block to update.
159
+ * @param vertical Whether the block should be flipped along its y-axis.
160
+ * @returns
161
+ */
162
+ setFlipVertical(id: DesignElementId, flip: boolean): void;
163
+
164
+ /**
165
+ * Query a block's absolute size in design units.
166
+ * @param id The block to query.
167
+ * @returns A `Size2` object.
168
+ */
169
+ getSize(id: DesignElementId): Size2;
170
+
171
+ /**
172
+ * Update a block's absolute size in design units.
173
+ * @param id The block to update.
174
+ * @param size A size object defining width and height.
175
+ */
176
+ setSize(id: DesignElementId, size: Size2): void;
177
+
178
+ /**
179
+ * Get a block's layouted size. Requires an `engine.render()` beforehand.
180
+ * @param id The block to query.
181
+ * @returns A `Size2` object holding the size.
182
+ */
183
+ getFrameSize(id: DesignElementId): Size2;
184
+
185
+ /**
186
+ * Duplicates a block including its children.
187
+ * @param id The block to duplicate.
188
+ * @returns The handle of the duplicate.
189
+ */
190
+ duplicate(id: DesignElementId): DesignElementId;
191
+
192
+ /**
193
+ * Destroys a block.
194
+ * @param id The block to destroy.
195
+ */
196
+ destroy(id: DesignElementId): void;
197
+
198
+ /**
199
+ * Query a block's parent.
200
+ * @param id The block to query.
201
+ * @returns The parent's handle.
202
+ */
203
+ getParent(id: DesignElementId): DesignElementId;
204
+
205
+ /**
206
+ * Get all children of the given block. Children
207
+ * are sorted in their rendering order: Last child is rendered
208
+ * in front of other children.
209
+ * @param id The block to query.
210
+ * @returns A list of block ids.
211
+ */
212
+ getChildren(id: DesignElementId): DesignElementId[];
213
+
214
+ /**
215
+ * Insert a new or existing child at a certain position in the parent's children.
216
+ * @param parent The block whose children should be updated.
217
+ * @param child The child to insert. Can be an existing child of `parent`.
218
+ * @param index The index to insert or move to.
219
+ */
220
+ insertChild(
221
+ parent: DesignElementId,
222
+ child: DesignElementId,
223
+ index: number
224
+ ): void;
225
+
226
+ /**
227
+ * Appends a new or existing child to a block's children.
228
+ * @param parent The block whose children should be updated.
229
+ * @param child The child to insert. Can be an existing child of `parent`.
230
+ */
231
+ appendChild(parent: DesignElementId, child: DesignElementId): void;
232
+ }
package/SceneAPI.d.ts ADDED
@@ -0,0 +1,52 @@
1
+ type DesignBlockId = number;
2
+
3
+ export default class SceneAPI {
4
+ /**
5
+ * Load the contents of a scene file.
6
+ * @param sceneContent The scene file contents, a base64 string.
7
+ * @returns A handle to the loaded scene.
8
+ */
9
+ loadFromString(sceneContent: string): DesignBlockId;
10
+
11
+ /**
12
+ * Load a scene from the URL to the scene file.
13
+ * The scene file will be fetched asynchronously by the engine. This requires continous `render`
14
+ * calls on this engines instance.
15
+ * @param url The URL of the scene file.
16
+ * @returns scene A promise that resolves once the scene was loaded or rejects with an error otherwise.
17
+ */
18
+ loadFromURL(url: string): Promise<DesignBlockId>;
19
+
20
+ /**
21
+ * Serializes the current scene into a string. Selection is discarded.
22
+ * @returns A promise that resolves with a string on success or an error on failure.
23
+ */
24
+ saveToString(): Promise<string>;
25
+
26
+ /**
27
+ * Create a new scene, along with its own camera.
28
+ * @returns The scenes handle.
29
+ */
30
+ create(): DesignBlockId;
31
+
32
+ /**
33
+ * Loads the given image and creates a scene with a single page showing the image.
34
+ * Fetching the image may take an arbitrary amount of time, so the scene isn't immediately
35
+ * available.
36
+ * @param url The image URL.
37
+ * @param dpi The scenes DPI.
38
+ * @param pixelScaleFactor The displays pixel scale factor.
39
+ * @returns A promise that resolves with the scene ID on success or rejected with an error otherwise.
40
+ */
41
+ createFromImage(
42
+ url: string,
43
+ dpi?: number,
44
+ pixelScaleFactor?: number
45
+ ): Promise<DesignBlockId>;
46
+
47
+ /**
48
+ * Return the currently active scene.
49
+ * @returns The scene or null, if none was created yet.
50
+ */
51
+ get(): DesignBlockId | null;
52
+ }
@@ -0,0 +1,27 @@
1
+ export default class VariableAPI {
2
+ /**
3
+ * Get all text variables currently stored in the engine.
4
+ * @returns Return a list of variable names
5
+ */
6
+ findAll(): string[];
7
+
8
+ /**
9
+ * Set a text variable to a string value.
10
+ * @param key The variable's key.
11
+ * @param value The text to replace the variable with.
12
+ */
13
+ setString(key: string, value: string): void;
14
+
15
+ /**
16
+ * Set a text variable to a string value.
17
+ * @param key The variable's key.
18
+ * @returns The text value of the variable.
19
+ */
20
+ getString(key: string): string;
21
+
22
+ /**
23
+ * Remove a text variable.
24
+ * @param key The variable's key.
25
+ */
26
+ remove(key: string): void;
27
+ }
package/api.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ import BlockAPI from './BlockAPI';
2
+ import SceneAPI from './SceneAPI';
3
+ import VariableAPI from './VariableAPI';
4
+
5
+ export default class API {
6
+ block: BlockAPI;
7
+
8
+ scene: SceneAPI;
9
+
10
+ variable: VariableAPI;
11
+ }
Binary file
Binary file
@@ -52,6 +52,11 @@
52
52
  "title": "Seite {{number}}"
53
53
  },
54
54
  "inputs": {
55
+ "SliderInput": {
56
+ "toggleNumberInput": {
57
+ "description": "Direkte Werteingabe einblenden."
58
+ }
59
+ },
55
60
  "TypefaceSelect": {
56
61
  "label": "Ausgewählte Schriftfamilie: {{fontFamily}}"
57
62
  },
@@ -150,7 +155,10 @@
150
155
  "noItems": { "label": "Keine Elemente vorhanden" },
151
156
  "noMoreItems": { "label": "Keine weiteren Elemente" },
152
157
  "search": {
153
- "placeholder": "Suchen …"
158
+ "placeholder": "Suchen …",
159
+ "clear": {
160
+ "label": "Suchen leeren"
161
+ }
154
162
  },
155
163
  "breadcrumb": {
156
164
  "root": {
@@ -397,7 +405,7 @@
397
405
  "label": "Aktionen für intelligente Funktionen"
398
406
  }
399
407
  },
400
- "mask": { "label": "Maskieren" },
408
+ "imageMatting": { "label": "Hintergrund entfernen" },
401
409
  "smartCrop": { "label": "Smartes Zuschneiden" },
402
410
  "superResolution": { "label": "Hochskalieren" },
403
411
  "inpainting": { "label": "Auffüllen" },
@@ -499,7 +507,7 @@
499
507
  "label": "Texthintergrundfarbe"
500
508
  }
501
509
  },
502
- "adjustableImage": {
510
+ "image": {
503
511
  "crop": {
504
512
  "label": "Bildausschnitt"
505
513
  },
@@ -558,12 +566,12 @@
558
566
  "AdopterViewSelect": {
559
567
  "label": "Adopter Ansicht",
560
568
  "options": {
561
- "classic": {
562
- "label": "Classic",
569
+ "advanced": {
570
+ "label": "Advanced",
563
571
  "description": "Den Inspektor immer anzeigen."
564
572
  },
565
- "minimal": {
566
- "label": "Minimal",
573
+ "default": {
574
+ "label": "Default",
567
575
  "description": "Den Inspektor möglichst verbergen."
568
576
  }
569
577
  }
@@ -722,7 +730,7 @@
722
730
  }
723
731
  }
724
732
  },
725
- "adjustableImage": {
733
+ "image": {
726
734
  "label": "Bild",
727
735
  "select": { "label": "$t(common.select)" },
728
736
  "scope": {
@@ -749,7 +757,7 @@
749
757
  "description": " Höhe vom Zuschneidebereich in {{unit}}"
750
758
  }
751
759
  },
752
- "adjustableImage": {
760
+ "image": {
753
761
  "heading": "Bild",
754
762
  "x": {
755
763
  "label": "X Versatz",
@@ -800,7 +808,7 @@
800
808
  "polygon": { "label": "Mehreck" },
801
809
  "oval": { "label": "Ellipse" },
802
810
  "ellipse": { "label": "Ellipse" },
803
- "vectorPath": { "label": "Vektorpfad" }
811
+ "vectorPath": { "label": "Pfad" }
804
812
  },
805
813
  "exclusion_zone": { "label": "Ausschlusszonen" },
806
814
  "multiSelection": {
@@ -918,6 +926,7 @@
918
926
  "letterSpacing": { "label": "Laufweite" },
919
927
 
920
928
  "opacity": { "label": "Transparenz" },
929
+ "hue": { "label": "Farbwert" },
921
930
 
922
931
  "uniformBlur/intensity": { "label": "Unschärfe" },
923
932
 
@@ -1001,8 +1010,8 @@
1001
1010
  "Sharpie": { "label": "Sharpie" }
1002
1011
  },
1003
1012
  "effectProp": {
1004
- "Pixelize/horizontalPixelSize": { "label": "Horizontale Größe" },
1005
- "Pixelize/verticalPixelSize": { "label": "Vertikale Größe" },
1013
+ "Pixelize/horizontalPixelSize": { "label": "Anzahl Horizontal" },
1014
+ "Pixelize/verticalPixelSize": { "label": "Anzahl Vertikal" },
1006
1015
  "RadialPixel/radius": { "label": "Radius pro Reihe" },
1007
1016
  "RadialPixel/segments": { "label": "Größe pro Reihe" },
1008
1017
  "CrossCut/slices": { "label": "Horizontale Schnitte" },
@@ -1033,7 +1042,7 @@
1033
1042
  "Posterize/levels": { "label": "Anzahl Farben" },
1034
1043
  "TvGlitch/distortion": { "label": "Grobe Verzerrung" },
1035
1044
  "TvGlitch/distortion2": { "label": "Feine Verzerrung" },
1036
- "TvGlitch/speed": { "label": "Sensitivität" },
1045
+ "TvGlitch/speed": { "label": "Varianz" },
1037
1046
  "TvGlitch/rollSpeed": { "label": "Vertikaler Versatz" },
1038
1047
  "TvGlitch/time": { "label": "Varianz" },
1039
1048
  "HalfTone/angle": { "label": "Winkel des Musters" },
@@ -1042,14 +1051,14 @@
1042
1051
  "Psychedelic/amount": { "label": "Intensität" },
1043
1052
  "Psychedelic/offset": { "label": "Diagonaler Versatz" },
1044
1053
  "Psychedelic/time": { "label": "Varianz" },
1045
- "Shifter/amount": { "label": "Intensität" },
1046
- "Shifter/angle": { "label": "Richtung Versatz" },
1047
- "Mirror/side": { "label": "Spiegelachse" },
1048
- "Glow/size": { "label": "Intensität" },
1049
- "Glow/amount": { "label": "Helligkeit" },
1054
+ "Shifter/amount": { "label": "Abstand" },
1055
+ "Shifter/angle": { "label": "Richtung" },
1056
+ "Mirror/side": { "label": "Gespiegelte Seite" },
1057
+ "Glow/size": { "label": "Schimmer" },
1058
+ "Glow/amount": { "label": "Intensität" },
1050
1059
  "Glow/darkness": { "label": "Dunkelkeit" },
1051
- "Vignette/offset": { "label": "Radialer Versatz" },
1052
- "Vignette/darkness": { "label": "Helligketi" },
1060
+ "Vignette/offset": { "label": "Größe" },
1061
+ "Vignette/darkness": { "label": "Farbe" },
1053
1062
  "TiltShift/amount": { "label": "Intensität" },
1054
1063
  "TiltShift/position": { "label": "Position" },
1055
1064
  "Separate/amount": { "label": "Versatz" },
@@ -1114,7 +1123,7 @@
1114
1123
  "fixedFrame": { "description": "Feste Größe aktivieren" }
1115
1124
  },
1116
1125
 
1117
- "adjustableImage": {
1126
+ "image": {
1118
1127
  "crop": { "description": "Bild beschneiden" },
1119
1128
  "filter": { "description": "Filter anwenden" }
1120
1129
  },
@@ -1158,6 +1167,18 @@
1158
1167
  "description": "Seiten untereinander anordnen"
1159
1168
  }
1160
1169
  }
1170
+ },
1171
+
1172
+ "placeholder": {
1173
+ "create": {
1174
+ "description": "Platzhalter einrichten"
1175
+ },
1176
+ "remove": {
1177
+ "description": "Platzhalter entfernen"
1178
+ },
1179
+ "change": {
1180
+ "description": "Platzhalter anpassen"
1181
+ }
1161
1182
  }
1162
1183
  }
1163
1184
  }
@@ -52,6 +52,11 @@
52
52
  "title": "Page {{number}}"
53
53
  },
54
54
  "inputs": {
55
+ "SliderInput": {
56
+ "toggleNumberInput": {
57
+ "description": "Display direct value input."
58
+ }
59
+ },
55
60
  "TypefaceSelect": {
56
61
  "label": "Selected font typeface: {{fontFamily}}"
57
62
  },
@@ -150,7 +155,10 @@
150
155
  "noItems": { "label": "No elements" },
151
156
  "noMoreItems": { "label": "No more elements" },
152
157
  "search": {
153
- "placeholder": "Search …"
158
+ "placeholder": "Search …",
159
+ "clear": {
160
+ "label": "Clear search"
161
+ }
154
162
  },
155
163
  "breadcrumb": {
156
164
  "root": {
@@ -258,7 +266,7 @@
258
266
  "share": { "label": "Share as Template" },
259
267
  "load": { "label": "Import Design File" },
260
268
  "download": { "label": "Export Design File" },
261
- "export": { "label": "Export Image" },
269
+ "export": { "label": "Export Images" },
262
270
  "close": { "label": "$t(common.close)" },
263
271
  "back": { "label": "$t(common.back)" },
264
272
  "image": { "label": "Image" },
@@ -397,7 +405,7 @@
397
405
  "label": "Smart Features Actions"
398
406
  }
399
407
  },
400
- "mask": { "label": "Mask" },
408
+ "imageMatting": { "label": "Remove Background" },
401
409
  "smartCrop": { "label": "Smart-crop" },
402
410
  "superResolution": { "label": "Super-resolution" },
403
411
  "inpainting": { "label": "Inpaint" },
@@ -499,7 +507,7 @@
499
507
  "label": "Text Background Color"
500
508
  }
501
509
  },
502
- "adjustableImage": {
510
+ "image": {
503
511
  "crop": {
504
512
  "label": "Image Crop"
505
513
  },
@@ -558,12 +566,12 @@
558
566
  "AdopterViewSelect": {
559
567
  "label": "Adopter View",
560
568
  "options": {
561
- "classic": {
562
- "label": "Classic",
569
+ "advanced": {
570
+ "label": "Advanced",
563
571
  "description": "Always show the inspector."
564
572
  },
565
- "minimal": {
566
- "label": "Minimal",
573
+ "default": {
574
+ "label": "Default",
567
575
  "description": "Hide the inspector if possible."
568
576
  }
569
577
  }
@@ -722,7 +730,7 @@
722
730
  }
723
731
  }
724
732
  },
725
- "adjustableImage": {
733
+ "image": {
726
734
  "label": "Image",
727
735
  "select": { "label": "$t(common.select)" },
728
736
  "scope": {
@@ -749,7 +757,7 @@
749
757
  "description": "Height of the crop frame in {{unit}}"
750
758
  }
751
759
  },
752
- "adjustableImage": {
760
+ "image": {
753
761
  "heading": "Image",
754
762
  "x": {
755
763
  "label": "X Offset",
@@ -800,7 +808,7 @@
800
808
  "polygon": { "label": "Polygon" },
801
809
  "oval": { "label": "Oval" },
802
810
  "ellipse": { "label": "Ellipse" },
803
- "vectorPath": { "label": "Vector Path" }
811
+ "vectorPath": { "label": "Path" }
804
812
  },
805
813
  "exclusion_zone": { "label": "Exclusion Zone" },
806
814
  "multiSelection": {
@@ -921,6 +929,7 @@
921
929
  "letterSpacing": { "label": "Letter Spacing" },
922
930
 
923
931
  "opacity": { "label": "Opacity" },
932
+ "hue": { "label": "Hue" },
924
933
 
925
934
  "uniformBlur/intensity": { "label": "Blur" },
926
935
 
@@ -1074,13 +1083,13 @@
1074
1083
  "Sharpie": { "label": "Sharpie" }
1075
1084
  },
1076
1085
  "effectProp": {
1077
- "Pixelize/horizontalPixelSize": { "label": "Horizontal Size" },
1078
- "Pixelize/verticalPixelSize": { "label": "Vertical Size" },
1086
+ "Pixelize/horizontalPixelSize": { "label": "Horizontal Count" },
1087
+ "Pixelize/verticalPixelSize": { "label": "Vertical Count" },
1079
1088
  "RadialPixel/radius": { "label": "Radius per Row" },
1080
1089
  "RadialPixel/segments": { "label": "Size per Row" },
1081
1090
  "CrossCut/slices": { "label": "Horizontal Cuts" },
1082
- "CrossCut/offset": { "label": "Horizontal Offset per Cut" },
1083
- "CrossCut/speedV": { "label": "Vertical Offset per Cut" },
1091
+ "CrossCut/offset": { "label": "Horizontal Offset" },
1092
+ "CrossCut/speedV": { "label": "Vertical Offset" },
1084
1093
  "CrossCut/time": { "label": "Variation" },
1085
1094
  "ColorCut/amount": { "label": "Intensity" },
1086
1095
  "ColorCut/speed": { "label": "Sensitivity" },
@@ -1106,7 +1115,7 @@
1106
1115
  "Posterize/levels": { "label": "Number of Levels" },
1107
1116
  "TvGlitch/distortion": { "label": "Rough Distortion" },
1108
1117
  "TvGlitch/distortion2": { "label": "Fine Distortion" },
1109
- "TvGlitch/speed": { "label": "Sensitivity" },
1118
+ "TvGlitch/speed": { "label": "Variance" },
1110
1119
  "TvGlitch/rollSpeed": { "label": "Vertical Offset" },
1111
1120
  "TvGlitch/time": { "label": "Variation" },
1112
1121
  "HalfTone/angle": { "label": "Angle of Pattern" },
@@ -1115,14 +1124,14 @@
1115
1124
  "Psychedelic/amount": { "label": "Intensity" },
1116
1125
  "Psychedelic/offset": { "label": "Diagonal Offset" },
1117
1126
  "Psychedelic/time": { "label": "Variation" },
1118
- "Shifter/amount": { "label": "Intensity" },
1127
+ "Shifter/amount": { "label": "Distance" },
1119
1128
  "Shifter/angle": { "label": "Shift Direction" },
1120
- "Mirror/side": { "label": "Axis to Mirror" },
1121
- "Glow/size": { "label": "Intensity" },
1122
- "Glow/amount": { "label": "Brightness" },
1129
+ "Mirror/side": { "label": "Mirrored Side" },
1130
+ "Glow/size": { "label": "Bloom" },
1131
+ "Glow/amount": { "label": "Intensity" },
1123
1132
  "Glow/darkness": { "label": "Darkening" },
1124
- "Vignette/offset": { "label": "Radial Offset" },
1125
- "Vignette/darkness": { "label": "Brightness" },
1133
+ "Vignette/offset": { "label": "Size" },
1134
+ "Vignette/darkness": { "label": "Color" },
1126
1135
  "TiltShift/amount": { "label": "Intensity" },
1127
1136
  "TiltShift/position": { "label": "Position" },
1128
1137
  "Separate/amount": { "label": "Offset" },
@@ -1187,7 +1196,7 @@
1187
1196
  "fixedFrame": { "description": "Enable fixed frame" }
1188
1197
  },
1189
1198
 
1190
- "adjustableImage": {
1199
+ "image": {
1191
1200
  "crop": { "description": "Crop image" },
1192
1201
  "filter": { "description": "Apply filter" }
1193
1202
  },
@@ -1229,6 +1238,18 @@
1229
1238
  "description": "Arrange pages vertically"
1230
1239
  }
1231
1240
  }
1241
+ },
1242
+
1243
+ "placeholder": {
1244
+ "create": {
1245
+ "description": "Create Placeholder"
1246
+ },
1247
+ "remove": {
1248
+ "description": "Remove Placeholder"
1249
+ },
1250
+ "change": {
1251
+ "description": "Change Placeholder constraints"
1252
+ }
1232
1253
  }
1233
1254
  }
1234
1255
  }