Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit fb21e6c

Browse files
bmarteljuliosgarbihlomzikTravis1282
authored
chore: 1.8.0 cherrypick 2023 05 30 (#1422)
* fix: LSDV-5161: Fix confidence score design to match with new labeling ui (#1408) * fix: LSDV-5161: Fix confidence score layout to match with new labeling ui * add tooltip * fix: LSDV-5165: Number indices in List data (#1405) Allow numeric indices in List items; this will also unblock Preview. Also show List title, it was missed in the code. * fix: LSDV-5167: Ranker undo/redo (#1416) * fix: LSDV-5167: Fix undo/redo for Ranker Store original List in results as well to track all changes to every column including the original one. This will result in this column exposed to exported result, but that should not be a problem. * Add note about _ column * Handle readonly status (i.e. from predictions) * Small fixes Add data-ranker-id to every item. Fix types for html param. * Trigger view reaction in rank mode with array --------- Co-authored-by: hlomzik <hlomzik@users.noreply.github.com> * fix: LSDV-5155: Panel Hover color, button style improvements (#1409) * uhnoist unfreese command on page resize * fix: lsdv-5155: panel header hover state, button improvements * undo image tag changes commited by mistake * undo image tag changes commited by mistake * remove color from svg icons * Update collapse-small.svg * Update expand-small.svg * Update arrow-right-small.svg * Update arrow-left-small.svg * remove color from svg icons --------- Co-authored-by: bmartel <brandonmartel@gmail.com> * fix: LSDV-5198: Fix the annotation name line height (#1417) * fix: LSDV-5198: Fix the annotation name line height * fix: LSDV-5194: Add annotation tab indicator tooltip * rollback changes * add height property on the user name --------- Co-authored-by: juliosgarbi <juliosgarbi@users.noreply.github.com> * fix: LSDV-5194: Add annotation tab indicator tooltip (#1418) * fix: LSDV-5194: Add annotation tab indicator tooltip * fix comment icons, and inconsistencies in file names, as well as annotation carousel nav button states * removing changes accidentally committed for annotation nav buttons --------- Co-authored-by: Brandon Martel <brandonmartel@gmail.com> Co-authored-by: juliosgarbi <juliosgarbi@users.noreply.github.com> * fix: LSDV-5153: Change icon sort (#1410) * fix: LSDV-5153: Change icon sort * remove leftover caracter * fix button and style of direction menu * remove unused css * removing deps from get ordering label * fix extra name and padding * removing unused imports --------- Co-authored-by: juliosgarbi <juliosgarbi@users.noreply.github.com> * fix: LSDV-5145: Regions hover lock consistency (#1411) * fix: lsdv-5145: regions hover lock consistancy * fix the hover states for outliner item controls in new ui --------- Co-authored-by: Brandon Martel <brandonmartel@gmail.com> --------- Co-authored-by: Julio Sgarbi <julio.sgarbi@hotmail.com> Co-authored-by: hlomzik <hlomzik@gmail.com> Co-authored-by: hlomzik <hlomzik@users.noreply.github.com> Co-authored-by: Travis Clark <travisjosephclark@gmail.com> Co-authored-by: juliosgarbi <juliosgarbi@users.noreply.github.com>
1 parent 8f4b15a commit fb21e6c

31 files changed

+267
-137
lines changed
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading
Lines changed: 4 additions & 0 deletions
Loading

src/assets/icons/expand-small.svg

Lines changed: 3 additions & 0 deletions
Loading

src/assets/icons/index.tsx

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ export { ReactComponent as LsRemove } from './remove.svg';
44
export { ReactComponent as LsTrash } from './trash.svg';
55
export { ReactComponent as LsPlus } from './plus.svg';
66
export { ReactComponent as LsSparks } from './sparks.svg';
7-
export { ReactComponent as LsComment } from './comment_check.svg';
8-
export { ReactComponent as LsCommentRed } from './comment_red.svg';
9-
export { ReactComponent as LsParentLink } from './parent_link.svg';
7+
export { ReactComponent as LsComment } from './comment-check.svg';
8+
export { ReactComponent as LsCommentRed } from './comment-red.svg';
9+
export { ReactComponent as LsCommentResolved } from './comment-resolved.svg';
10+
export { ReactComponent as LsCommentUnresolved } from './comment-unresolved.svg';
11+
export { ReactComponent as LsParentLink } from './parent-link.svg';
1012
export { ReactComponent as LsAnnotation } from './annotation.svg';
1113
export { ReactComponent as LsGrid } from './grid.svg';
1214
export { ReactComponent as LsSettings } from './settings.svg';
@@ -18,10 +20,12 @@ export { ReactComponent as LsVisible } from './visible.svg';
1820
export { ReactComponent as LsInvisible } from './invisible.svg';
1921
export { ReactComponent as LsChevron } from './chevron.svg';
2022
export { ReactComponent as LsExpand } from './expand.svg';
23+
export { ReactComponent as LsExpandSmall } from './expand-small.svg';
2124
export { ReactComponent as LsExpandAlt } from './expand-alt.svg';
2225
export { ReactComponent as LsCollapse } from './collapse.svg';
26+
export { ReactComponent as LsCollapseSmall } from './collapse-small.svg';
2327
export { ReactComponent as LsDate } from './date.svg';
24-
export { ReactComponent as IconPlusCircle } from './plus_circle.svg';
28+
export { ReactComponent as IconPlusCircle } from './plus-circle.svg';
2529
export { ReactComponent as IconSlow } from './slow.svg';
2630
export { ReactComponent as IconFast } from './fast.svg';
2731
export { ReactComponent as IconDuplicate } from './duplicate.svg';
@@ -70,7 +74,7 @@ export { ReactComponent as IconInfoOutline } from './info-outline.svg';
7074
export { ReactComponent as IconInfo } from './info.svg';
7175
export { ReactComponent as IconCopy } from './copy.svg';
7276
export { ReactComponent as IconText } from './text.svg';
73-
export { ReactComponent as IconViewAll } from './view_all.svg';
77+
export { ReactComponent as IconViewAll } from './view-all.svg';
7478
export { ReactComponent as IconLink } from './link.svg';
7579
export { ReactComponent as IconPlusAlt } from './plus-alt.svg';
7680
export { ReactComponent as IconTrash } from './trash.svg';
@@ -86,13 +90,16 @@ export { ReactComponent as IconList } from './list.svg';
8690
export { ReactComponent as IconSpeed } from './speed.svg';
8791
export { ReactComponent as IconTagAlt } from './tag-alt.svg';
8892
export { ReactComponent as IconSortUp } from './sort-up.svg';
93+
export { ReactComponent as IconSortUpNew } from './sort-up-new.svg';
8994
export { ReactComponent as IconSortDown } from './sort-down.svg';
95+
export { ReactComponent as IconSortDownNew } from './sort-down-new.svg';
9096
export { ReactComponent as IconFilter } from './filter.svg';
9197
export { ReactComponent as IconDelete } from './delete.svg';
9298

9399
export { ReactComponent as IconArrowLeft } from './arrow-left.svg';
100+
export { ReactComponent as IconArrowLeftSmall } from './arrow-left-small.svg';
94101
export { ReactComponent as IconArrowRight } from './arrow-right.svg';
95-
102+
export { ReactComponent as IconArrowRightSmall } from './arrow-right-small.svg';
96103

97104
// Relations
98105
export { ReactComponent as IconRelationRight } from './relations/right.svg';

0 commit comments

Comments
 (0)