File tree 6 files changed +14
-2
lines changed
6 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,9 @@ import ComboBoxFilter from "./types/ComboBoxFilter.js";
105
105
import type FormSupportT from "./features/InputElementsFormSupport.js" ;
106
106
import type ListItemBase from "./ListItemBase.js" ;
107
107
import CheckBox from "./CheckBox.js" ;
108
- import Input , { InputEventDetail } from "./Input.js" ;
108
+ import Input from "./Input.js" ;
109
+ import type { InputEventDetail } from "./Input.js" ;
110
+ import SuggestionItem from "./SuggestionItem.js" ;
109
111
110
112
/**
111
113
* Interface for components that may be slotted inside a `ui5-multi-combobox` as items
@@ -185,6 +187,7 @@ type MultiComboboxItemWithSelection = {
185
187
MultiComboBoxGroupItem ,
186
188
Tokenizer ,
187
189
Token ,
190
+ Input ,
188
191
Icon ,
189
192
ResponsivePopover ,
190
193
Popover ,
@@ -194,6 +197,7 @@ type MultiComboboxItemWithSelection = {
194
197
ToggleButton ,
195
198
Button ,
196
199
CheckBox ,
200
+ SuggestionItem ,
197
201
] ,
198
202
} )
199
203
/**
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ type MultiInputTokenDeleteEventDetail = {
66
66
styles : [ Input . styles , styles ] ,
67
67
dependencies : [
68
68
...Input . dependencies ,
69
+ Input ,
69
70
Tokenizer ,
70
71
Token ,
71
72
Icon ,
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ import List from "./List.js";
48
48
import DropIndicator from "./DropIndicator.js" ;
49
49
import type Tab from "./Tab.js" ;
50
50
import type { ListItemClickEventDetail , ListMoveEventDetail } from "./List.js" ;
51
- import type CustomListItem from "./CustomListItem.js" ;
51
+ import CustomListItem from "./CustomListItem.js" ;
52
52
import ResponsivePopover from "./ResponsivePopover.js" ;
53
53
import TabContainerTabsPlacement from "./types/TabContainerTabsPlacement.js" ;
54
54
import SemanticColor from "./types/SemanticColor.js" ;
@@ -180,6 +180,7 @@ interface TabContainerTabInOverflow extends CustomListItem {
180
180
List ,
181
181
ResponsivePopover ,
182
182
DropIndicator ,
183
+ CustomListItem ,
183
184
] ,
184
185
} )
185
186
/**
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import TimePickerInternals from "./TimePickerInternals.js";
25
25
import TimePickerClock from "./TimePickerClock.js" ;
26
26
import ToggleSpinButton from "./ToggleSpinButton.js" ;
27
27
import SegmentedButton from "./SegmentedButton.js" ;
28
+ import SegmentedButtonItem from "./SegmentedButtonItem.js" ;
28
29
import type { TimePickerClockChangeEventDetail } from "./TimePickerClock.js" ;
29
30
30
31
// Template
@@ -64,6 +65,7 @@ import TimeSelectionClocksCss from "./generated/themes/TimeSelectionClocks.css.j
64
65
TimePickerClock ,
65
66
ToggleSpinButton ,
66
67
SegmentedButton ,
68
+ SegmentedButtonItem ,
67
69
] ,
68
70
} )
69
71
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import {
11
11
import TimePickerInternals from "./TimePickerInternals.js" ;
12
12
import Input from "./Input.js" ;
13
13
import SegmentedButton from "./SegmentedButton.js" ;
14
+ import SegmentedButtonItem from "./SegmentedButtonItem.js" ;
14
15
15
16
import InputType from "./types/InputType.js" ;
16
17
@@ -51,6 +52,7 @@ import TimeSelectionInputsCss from "./generated/themes/TimeSelectionInputs.css.j
51
52
dependencies : [
52
53
Input ,
53
54
SegmentedButton ,
55
+ SegmentedButtonItem ,
54
56
] ,
55
57
} )
56
58
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ import ResponsivePopover from "./ResponsivePopover.js";
43
43
import List from "./List.js" ;
44
44
import Title from "./Title.js" ;
45
45
import Button from "./Button.js" ;
46
+ import Icon from "./Icon.js" ;
46
47
import StandardListItem from "./StandardListItem.js" ;
47
48
import type Token from "./Token.js" ;
48
49
import type { IToken } from "./MultiInput.js" ;
@@ -105,6 +106,7 @@ enum ClipboardDataOperation {
105
106
StandardListItem ,
106
107
Title ,
107
108
Button ,
109
+ Icon ,
108
110
] ,
109
111
} )
110
112
You can’t perform that action at this time.
0 commit comments