Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8007615
[submodules] Build static HumanSignal/label-studio-frontend
Travis1282 Aug 18, 2023
1d646b9
docs: LSF Update
Travis1282 Aug 18, 2023
615a1c0
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 18, 2023
0d3c54e
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 23, 2023
a2274c0
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Aug 23, 2023
5ded6c1
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 23, 2023
7e3dd38
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 23, 2023
c5efc7c
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 23, 2023
8d4ccdf
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Aug 23, 2023
df3640a
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 23, 2023
b1c4121
Merge remote-tracking branch 'origin/develop' into fb-optic-7/draft-l…
hlomzik Aug 24, 2023
4520424
[submodules] Build static HumanSignal/label-studio-frontend
hlomzik Aug 24, 2023
4adf40a
docs: LSF Update
hlomzik Aug 24, 2023
b52d89b
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
hlomzik Aug 24, 2023
4856bb6
[submodules] Build static HumanSignal/dm2
Travis1282 Aug 30, 2023
4029ae9
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Aug 30, 2023
152ecea
[submodules] Build static HumanSignal/dm2
Travis1282 Sep 1, 2023
7d92770
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Sep 1, 2023
1732b1b
[submodules] Build static HumanSignal/dm2
Travis1282 Sep 7, 2023
3b80d5f
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Sep 7, 2023
d99e246
[submodules] Build static HumanSignal/dm2
Travis1282 Sep 11, 2023
a5677e6
Merge branch 'origin/develop' into 'fb-optic-7/draft-lead-time-added'
Travis1282 Sep 11, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
docs: LSF Update
  • Loading branch information
hlomzik committed Aug 24, 2023
commit 4adf40a47fa86eeb061a6f9864435294ed76ee3f
6 changes: 3 additions & 3 deletions docs/source/tags/choices.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ The `Choices` tag can be used with any data types.
| [showInline] | <code>boolean</code> | <code>false</code> | Show choices in the same visual line |
| [required] | <code>boolean</code> | <code>false</code> | Validate whether a choice has been selected |
| [requiredMessage] | <code>string</code> | | Show a message if validation fails |
| [visibleWhen] | <code>region-selected</code> \| <code>choice-selected</code> \| <code>no-region-selected</code> | | Control visibility of the choices. |
| [visibleWhen] | <code>region-selected</code> \| <code>no-region-selected</code> \| <code>choice-selected</code> \| <code>choice-unselected</code> | | Control visibility of the choices. Can also be used with `when*` attributes below to narrow down visibility |
| [whenTagName] | <code>string</code> | | Use with visibleWhen. Narrow down visibility by name of the tag. For regions, use the name of the object tag, for choices, use the name of the choices tag |
| [whenLabelValue] | <code>string</code> | | Narrow down visibility by label value |
| [whenChoiceValue] | <code>string</code> | | Narrow down visibility by choice value |
| [whenLabelValue] | <code>string</code> | | Use with visibleWhen="region-selected". Narrow down visibility by label value |
| [whenChoiceValue] | <code>string</code> | | Use with visibleWhen ("choice-selected" or "choice-unselected") and whenTagName, both are required. Narrow down visibility by choice value |
| [perRegion] | <code>boolean</code> | | Use this tag to select a choice for a specific region instead of the entire task |
| [perItem] | <code>boolean</code> | | Use this tag to select a choice for a specific item inside the object instead of the whole object[^1] |
| [value] | <code>string</code> | | Task data field containing a list of dynamically loaded choices (see example below)[^2] |
Expand Down
8 changes: 4 additions & 4 deletions docs/source/tags/view.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ The `View` element is used to configure the display of blocks, similar to the di
| display | <code>block</code> \| <code>inline</code> | |
| [style] | <code>string</code> | CSS style string |
| [className] | <code>string</code> | Class name of the CSS style to apply. Use with the Style tag |
| [visibleWhen] | <code>region-selected</code> \| <code>choice-selected</code> \| <code>no-region-selected</code> | Show the contents of a view when condition is true |
| [whenTagName] | <code>string</code> | Narrow down visibility by tag name. For regions, use the name of the object tag, for choices, use the name of the choices tag. |
| [whenLabelValue] | <code>string</code> | Narrow down visibility by label value |
| [whenChoiceValue] | <code>string</code> | Narrow down visibility by choice value |
| [visibleWhen] | <code>region-selected</code> \| <code>choice-selected</code> \| <code>no-region-selected</code> \| <code>choice-unselected</code> | Control visibility of the content. Can also be used with `when*` attributes below to narrow down visibility |
| [whenTagName] | <code>string</code> | Use with visibleWhen. Narrow down visibility by tag name. For regions, use the name of the object tag, for choices, use the name of the choices tag |
| [whenLabelValue] | <code>string</code> | Use with visibleWhen="region-selected". Narrow down visibility by label value |
| [whenChoiceValue] | <code>string</code> | Use with visibleWhen ("choice-selected" or "choice-unselected") and whenTagName, both are required. Narrow down visibility by choice value |

### Example

Expand Down