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
* Removes gates
* Remove refinery pat
* remove welcome screen
* Removes welcome
* remove welcome import
* Appdropdown positioning
* Removed icons for gates and workflow
* Removal of crowd labeler and zeroshot (#26)
* Removal of crowd labeler and zeroshot
* Removed data from dropdown used only for zeroshot
* Remove model callbacks
---------
Co-authored-by: Lina <lina.lumburovska@kern.ai>
Co-authored-by: lumburovskalina <104008550+lumburovskalina@users.noreply.github.com>
Copy file name to clipboardExpand all lines: types/dropdown.ts
+1-6Lines changed: 1 addition & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -32,8 +32,6 @@
32
32
* @linkList {string[]} - The array of links that will be applied to the dropdown items (needs to be the exact same length as the optionArray)
33
33
* @optionsHaveHoverBox {boolean} - If the dropdown options have a hover box
34
34
* @hoverBoxList {string[]} - The array of hover boxes that will be applied to the dropdown items (needs to be the exact same length as the optionArray)
35
-
* @addLineSeparator {boolean} - If the dropdown should have a line separator
36
-
* @lineSeparatorIndex {number} - The index of the dropdown item that will have a line separator
37
35
* @iconsArray {string[]} - The array of icons that will be applied to the dropdown items (needs to be the exact same length as the optionArray)
38
36
* @valuePropertyPath {string, optional} - if undefined option text is returned, else (e.g. name.tmp.xyz) the path is split and used to access the object property
39
37
* @useFillForIcons {boolean[], optional} - if true, the icon will be filled with the color of the option
@@ -76,8 +74,6 @@ export type KernDropdownProps = {
76
74
linkList?: string[];
77
75
optionsHaveHoverBox?: boolean;
78
76
hoverBoxList?: string[];
79
-
addLineSeparator?: boolean;
80
-
lineSeparatorIndex?: number;
81
77
iconsArray?: string[];
82
78
valuePropertyPath?: string;
83
79
useFillForIcons?: boolean[];
@@ -88,7 +84,6 @@ export type KernDropdownProps = {
0 commit comments