You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/includes/tags/choices.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,5 @@
16
16
|[perItem]| <code>boolean</code> || Use this tag to select a choice for a specific item inside the object instead of the whole object |
17
17
|[value]| <code>string</code> || Task data field containing a list of dynamically loaded choices (see example below) |
18
18
|[allowNested]| <code>boolean</code> || Allow to use `children` field in dynamic choices to nest them. Submitted result will contain array of arrays, every item is a list of values from topmost parent choice down to selected one. |
19
+
|[layout]| <code>select</code> \| <code>inline</code> \| <code>vertical</code> || Layout of the choices: `select` for dropdown/select box format, `inline` for horizontal single row display, `vertical` for vertically stacked display (default) |
Copy file name to clipboardExpand all lines: docs/source/includes/tags/rectangle.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,4 +11,5 @@
11
11
|[canRotate]| <code>boolean</code> | <code>true</code> | Whether to show or hide rotation control. Note that the anchor point in the results is different than the anchor point used when rotating with the rotation tool. For more information, see [Rotation](/templates/image_bbox#Rotation). |
12
12
|[smart]| <code>boolean</code> || Show smart tool for interactive pre-annotations |
13
13
|[smartOnly]| <code>boolean</code> || Only show smart tool for interactive pre-annotations |
Copy file name to clipboardExpand all lines: docs/source/includes/tags/rectanglelabels.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@
12
12
|[strokeColor]| <code>string</code> || Stroke color in hexadecimal |
13
13
|[strokeWidth]| <code>number</code> | <code>1</code> | Width of stroke |
14
14
|[canRotate]| <code>boolean</code> | <code>true</code> | Show or hide rotation control. Note that the anchor point in the results is different than the anchor point used when rotating with the rotation tool. For more information, see [Rotation](/templates/image_bbox#Rotation). |
* @param {boolean} [perItem] - Use this tag to select a choice for a specific item inside the object instead of the whole object
93
93
* @param {string} [value] - Task data field containing a list of dynamically loaded choices (see example below)
94
94
* @param {boolean} [allowNested] - Allow to use `children` field in dynamic choices to nest them. Submitted result will contain array of arrays, every item is a list of values from topmost parent choice down to selected one.
95
+
* @param {select|inline|vertical} [layout] - Layout of the choices: `select` for dropdown/select box format, `inline` for horizontal single row display, `vertical` for vertically stacked display (default)
Copy file name to clipboardExpand all lines: web/libs/editor/src/tags/control/Rectangle.js
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ import { ToolManagerMixin } from "../../mixins/ToolManagerMixin";
31
31
* @param {boolean=} [canRotate=true] - Whether to show or hide rotation control. Note that the anchor point in the results is different than the anchor point used when rotating with the rotation tool. For more information, see [Rotation](/templates/image_bbox#Rotation).
32
32
* @param {boolean} [smart] - Show smart tool for interactive pre-annotations
33
33
* @param {boolean} [smartOnly] - Only show smart tool for interactive pre-annotations
34
+
* @param {pixel|none} [snap=none] - Snap rectangle to image pixels
Copy file name to clipboardExpand all lines: web/libs/editor/src/tags/control/RectangleLabels.jsx
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,7 @@ import ControlBase from "./Base";
39
39
* @param {string} [strokeColor] - Stroke color in hexadecimal
40
40
* @param {number} [strokeWidth=1] - Width of stroke
41
41
* @param {boolean} [canRotate=true] - Show or hide rotation control. Note that the anchor point in the results is different than the anchor point used when rotating with the rotation tool. For more information, see [Rotation](/templates/image_bbox#Rotation).
42
+
* @param {pixel|none} [snap=none] - Snap rectangle to image pixels
0 commit comments