@moises.ai/design-system 3.11.4 → 3.11.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +179 -179
- package/package.json +1 -1
- package/src/components/TrackHeader/TrackHeader.jsx +21 -19
package/package.json
CHANGED
|
@@ -120,25 +120,27 @@ export const TrackHeader = memo(
|
|
|
120
120
|
)}
|
|
121
121
|
</IconButton>
|
|
122
122
|
{instrumentOptions && (
|
|
123
|
-
<
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
123
|
+
<Box {...DND_PROTECTION}>
|
|
124
|
+
<DropdownMenu
|
|
125
|
+
showActiveTrigger={true}
|
|
126
|
+
trigger={
|
|
127
|
+
<IconButton
|
|
128
|
+
variant="ghost"
|
|
129
|
+
size="1"
|
|
130
|
+
className={classNames(
|
|
131
|
+
styles.instrumentIconButton,
|
|
132
|
+
styles.menuOptionsTrigger,
|
|
133
|
+
)}
|
|
134
|
+
>
|
|
135
|
+
{instrumentSelected.icon}
|
|
136
|
+
</IconButton>
|
|
137
|
+
}
|
|
138
|
+
options={instrumentOptions}
|
|
139
|
+
onValueChange={onInstrumentChange}
|
|
140
|
+
side="bottom"
|
|
141
|
+
align="start"
|
|
142
|
+
/>
|
|
143
|
+
</Box>
|
|
142
144
|
)}
|
|
143
145
|
|
|
144
146
|
<Tooltip content={title}>
|