@moises.ai/design-system 4.16.5 → 4.16.7
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/{ForwardBarFillIcon-CUEgLgyx.js → ChordDiagramGridIcon-CxpGQmg4.js} +1029 -976
- package/dist/colors/custom-styles.css +1 -0
- package/dist/icons.js +604 -602
- package/dist/{index-f-eJMg6F.js → index-Dwaw5zqT.js} +151 -151
- package/dist/index.js +1252 -1233
- package/dist/primitives.js +147 -147
- package/package.json +1 -1
- package/src/colors/custom-styles.css +1 -0
- package/src/components/DropdownButton/DropdownButton.jsx +29 -3
- package/src/components/DropdownButton/DropdownButton.module.css +50 -5
- package/src/components/PlayerBar/PlayerBar.jsx +12 -11
- package/src/components/PlayerBar/PlayerBar.stories.jsx +193 -8
- package/src/components/PlayerMasterVolume/PlayerMasterVolume.jsx +54 -0
- package/src/components/PlayerMasterVolume/PlayerMasterVolume.module.css +31 -0
- package/src/components/PlayerMasterVolume/PlayerMasterVolume.stories.jsx +182 -0
- package/src/components/PlayerSmartMetronome/PlayerSmartMetronome.jsx +79 -0
- package/src/components/PlayerSmartMetronome/PlayerSmartMetronome.module.css +23 -0
- package/src/components/PlayerSmartMetronome/PlayerSmartMetronome.stories.jsx +225 -0
- package/src/components/PlayerSmartMetronome/SegmentedField.jsx +19 -0
- package/src/components/PlayerTempoPitch/PlayerTempoPitch.jsx +123 -0
- package/src/components/PlayerTempoPitch/PlayerTempoPitch.module.css +25 -0
- package/src/components/PlayerTempoPitch/PlayerTempoPitch.stories.jsx +215 -0
- package/src/components/PlayerTempoPitch/StepperField.jsx +57 -0
- package/src/components/PlayerTempoPitch/constants.js +40 -0
- package/src/icons/ChordDiagramGridIcon.jsx +22 -0
- package/src/icons/ChordGrid3Icon.jsx +20 -0
- package/src/icons.jsx +2 -0
- package/src/index.jsx +1 -1
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
import { useCallback, useEffect, useState } from 'react'
|
|
2
|
+
import { PlayerTempoPitch } from './PlayerTempoPitch'
|
|
3
|
+
import { MAX_VALUE_BPM, MIN_VALUE_BPM } from './constants'
|
|
4
|
+
|
|
5
|
+
const DEFAULTS = {
|
|
6
|
+
tempo: 120,
|
|
7
|
+
pitch: 'C#',
|
|
8
|
+
tuning: 440,
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
function StatefulPlayerTempoPitch({
|
|
12
|
+
initialTempo = DEFAULTS.tempo,
|
|
13
|
+
initialPitch = DEFAULTS.pitch,
|
|
14
|
+
initialTuning = DEFAULTS.tuning,
|
|
15
|
+
onTempoChange,
|
|
16
|
+
onPitchChange,
|
|
17
|
+
onTuningChange,
|
|
18
|
+
onRefresh,
|
|
19
|
+
}) {
|
|
20
|
+
const [tempo, setTempo] = useState(initialTempo)
|
|
21
|
+
const [pitch, setPitch] = useState(initialPitch)
|
|
22
|
+
const [tuning, setTuning] = useState(initialTuning)
|
|
23
|
+
|
|
24
|
+
useEffect(() => {
|
|
25
|
+
setTempo(initialTempo)
|
|
26
|
+
}, [initialTempo])
|
|
27
|
+
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
setPitch(initialPitch)
|
|
30
|
+
}, [initialPitch])
|
|
31
|
+
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
setTuning(initialTuning)
|
|
34
|
+
}, [initialTuning])
|
|
35
|
+
|
|
36
|
+
const handleRefresh = useCallback(() => {
|
|
37
|
+
setTempo(DEFAULTS.tempo)
|
|
38
|
+
setPitch(DEFAULTS.pitch)
|
|
39
|
+
setTuning(DEFAULTS.tuning)
|
|
40
|
+
onRefresh?.()
|
|
41
|
+
}, [onRefresh])
|
|
42
|
+
|
|
43
|
+
return (
|
|
44
|
+
<PlayerTempoPitch
|
|
45
|
+
tempo={tempo}
|
|
46
|
+
pitch={pitch}
|
|
47
|
+
tuning={tuning}
|
|
48
|
+
onTempoChange={(value) => {
|
|
49
|
+
setTempo(value)
|
|
50
|
+
onTempoChange?.(value)
|
|
51
|
+
}}
|
|
52
|
+
onPitchChange={(value) => {
|
|
53
|
+
setPitch(value)
|
|
54
|
+
onPitchChange?.(value)
|
|
55
|
+
}}
|
|
56
|
+
onTuningChange={(value) => {
|
|
57
|
+
setTuning(value)
|
|
58
|
+
onTuningChange?.(value)
|
|
59
|
+
}}
|
|
60
|
+
onRefresh={handleRefresh}
|
|
61
|
+
/>
|
|
62
|
+
)
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export default {
|
|
66
|
+
title: 'New Mixer/PlayerTempoPitch',
|
|
67
|
+
component: PlayerTempoPitch,
|
|
68
|
+
parameters: {
|
|
69
|
+
layout: 'centered',
|
|
70
|
+
docs: {
|
|
71
|
+
description: {
|
|
72
|
+
component: `
|
|
73
|
+
Tempo and pitch panel for New Mixer. Pass \`tempo\`, \`pitch\` and \`tuning\`, then update them from their change handlers. The refresh button resets to defaults.
|
|
74
|
+
`,
|
|
75
|
+
},
|
|
76
|
+
},
|
|
77
|
+
},
|
|
78
|
+
decorators: [
|
|
79
|
+
(Story) => (
|
|
80
|
+
<div
|
|
81
|
+
style={{
|
|
82
|
+
width: 258,
|
|
83
|
+
padding: 16,
|
|
84
|
+
background: '#1d1d1d',
|
|
85
|
+
borderRadius: 8,
|
|
86
|
+
boxSizing: 'border-box',
|
|
87
|
+
}}
|
|
88
|
+
>
|
|
89
|
+
<Story />
|
|
90
|
+
</div>
|
|
91
|
+
),
|
|
92
|
+
],
|
|
93
|
+
tags: ['autodocs'],
|
|
94
|
+
argTypes: {
|
|
95
|
+
tempo: {
|
|
96
|
+
description: `Tempo in BPM (${MIN_VALUE_BPM}–${MAX_VALUE_BPM}).`,
|
|
97
|
+
table: { type: { summary: 'number' }, defaultValue: { summary: 120 } },
|
|
98
|
+
control: { type: 'range', min: MIN_VALUE_BPM, max: MAX_VALUE_BPM, step: 1 },
|
|
99
|
+
},
|
|
100
|
+
pitch: {
|
|
101
|
+
description: 'Selected pitch note.',
|
|
102
|
+
table: { type: { summary: 'string' }, defaultValue: { summary: 'C#' } },
|
|
103
|
+
control: 'select',
|
|
104
|
+
options: ['C', 'C#', 'D', 'D#', 'E'],
|
|
105
|
+
},
|
|
106
|
+
tuning: {
|
|
107
|
+
description: 'Reference tuning in Hz.',
|
|
108
|
+
table: { type: { summary: 'number' }, defaultValue: { summary: 440 } },
|
|
109
|
+
control: 'select',
|
|
110
|
+
options: [440, 442, 444, 446],
|
|
111
|
+
},
|
|
112
|
+
onTempoChange: {
|
|
113
|
+
table: { type: { summary: '(tempo: number | "") => void' } },
|
|
114
|
+
action: 'tempo changed',
|
|
115
|
+
},
|
|
116
|
+
onPitchChange: {
|
|
117
|
+
table: { type: { summary: '(pitch: string) => void' } },
|
|
118
|
+
action: 'pitch changed',
|
|
119
|
+
},
|
|
120
|
+
onTuningChange: {
|
|
121
|
+
table: { type: { summary: '(tuning: number) => void' } },
|
|
122
|
+
action: 'tuning changed',
|
|
123
|
+
},
|
|
124
|
+
onRefresh: {
|
|
125
|
+
table: { type: { summary: '() => void' } },
|
|
126
|
+
action: 'refreshed',
|
|
127
|
+
},
|
|
128
|
+
},
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
export const Default = {
|
|
132
|
+
render: (args) => (
|
|
133
|
+
<StatefulPlayerTempoPitch
|
|
134
|
+
initialTempo={args.tempo}
|
|
135
|
+
initialPitch={args.pitch}
|
|
136
|
+
initialTuning={args.tuning}
|
|
137
|
+
onTempoChange={args.onTempoChange}
|
|
138
|
+
onPitchChange={args.onPitchChange}
|
|
139
|
+
onTuningChange={args.onTuningChange}
|
|
140
|
+
onRefresh={args.onRefresh}
|
|
141
|
+
/>
|
|
142
|
+
),
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export const SlowTempo = {
|
|
146
|
+
args: {
|
|
147
|
+
tempo: 60,
|
|
148
|
+
pitch: 'C',
|
|
149
|
+
},
|
|
150
|
+
render: (args) => (
|
|
151
|
+
<StatefulPlayerTempoPitch
|
|
152
|
+
initialTempo={args.tempo}
|
|
153
|
+
initialPitch={args.pitch}
|
|
154
|
+
initialTuning={args.tuning}
|
|
155
|
+
onTempoChange={args.onTempoChange}
|
|
156
|
+
onPitchChange={args.onPitchChange}
|
|
157
|
+
onTuningChange={args.onTuningChange}
|
|
158
|
+
onRefresh={args.onRefresh}
|
|
159
|
+
/>
|
|
160
|
+
),
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export const FastTempo = {
|
|
164
|
+
args: {
|
|
165
|
+
tempo: 180,
|
|
166
|
+
pitch: 'E',
|
|
167
|
+
},
|
|
168
|
+
render: (args) => (
|
|
169
|
+
<StatefulPlayerTempoPitch
|
|
170
|
+
initialTempo={args.tempo}
|
|
171
|
+
initialPitch={args.pitch}
|
|
172
|
+
initialTuning={args.tuning}
|
|
173
|
+
onTempoChange={args.onTempoChange}
|
|
174
|
+
onPitchChange={args.onPitchChange}
|
|
175
|
+
onTuningChange={args.onTuningChange}
|
|
176
|
+
onRefresh={args.onRefresh}
|
|
177
|
+
/>
|
|
178
|
+
),
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
export const AlternateTuning = {
|
|
182
|
+
args: {
|
|
183
|
+
tuning: 442,
|
|
184
|
+
},
|
|
185
|
+
render: (args) => (
|
|
186
|
+
<StatefulPlayerTempoPitch
|
|
187
|
+
initialTempo={args.tempo}
|
|
188
|
+
initialPitch={args.pitch}
|
|
189
|
+
initialTuning={args.tuning}
|
|
190
|
+
onTempoChange={args.onTempoChange}
|
|
191
|
+
onPitchChange={args.onPitchChange}
|
|
192
|
+
onTuningChange={args.onTuningChange}
|
|
193
|
+
onRefresh={args.onRefresh}
|
|
194
|
+
/>
|
|
195
|
+
),
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
export const Playground = {
|
|
199
|
+
args: {
|
|
200
|
+
tempo: 120,
|
|
201
|
+
pitch: 'C#',
|
|
202
|
+
tuning: 440,
|
|
203
|
+
},
|
|
204
|
+
render: (args) => (
|
|
205
|
+
<StatefulPlayerTempoPitch
|
|
206
|
+
initialTempo={args.tempo}
|
|
207
|
+
initialPitch={args.pitch}
|
|
208
|
+
initialTuning={args.tuning}
|
|
209
|
+
onTempoChange={args.onTempoChange}
|
|
210
|
+
onPitchChange={args.onPitchChange}
|
|
211
|
+
onTuningChange={args.onTuningChange}
|
|
212
|
+
onRefresh={args.onRefresh}
|
|
213
|
+
/>
|
|
214
|
+
),
|
|
215
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { Flex, Text, IconButton, TextField } from '../../index'
|
|
2
|
+
import { MinusIcon, PlusIcon } from '../../icons'
|
|
3
|
+
import styles from './PlayerTempoPitch.module.css'
|
|
4
|
+
|
|
5
|
+
export function StepperField({
|
|
6
|
+
label,
|
|
7
|
+
hint,
|
|
8
|
+
value,
|
|
9
|
+
onChange,
|
|
10
|
+
onBlur,
|
|
11
|
+
onDecrease,
|
|
12
|
+
onIncrease,
|
|
13
|
+
disableDecrease,
|
|
14
|
+
disableIncrease,
|
|
15
|
+
}) {
|
|
16
|
+
return (
|
|
17
|
+
<Flex direction="column" gap="1">
|
|
18
|
+
<Flex width="100%" justify="between" align="center">
|
|
19
|
+
<Text size="2" className={styles.neutral12}>
|
|
20
|
+
{label}
|
|
21
|
+
</Text>
|
|
22
|
+
|
|
23
|
+
{hint && (
|
|
24
|
+
<Text size="2" className={styles.neutralAlpha9}>
|
|
25
|
+
{hint}
|
|
26
|
+
</Text>
|
|
27
|
+
)}
|
|
28
|
+
</Flex>
|
|
29
|
+
|
|
30
|
+
<Flex gap="1" align="center" justify="center">
|
|
31
|
+
<IconButton
|
|
32
|
+
className={styles.button}
|
|
33
|
+
variant="soft"
|
|
34
|
+
size="2"
|
|
35
|
+
onClick={onDecrease}
|
|
36
|
+
disabled={disableDecrease}
|
|
37
|
+
>
|
|
38
|
+
<MinusIcon width={16} height={16} />
|
|
39
|
+
</IconButton>
|
|
40
|
+
|
|
41
|
+
<Flex className={styles.customTextField}>
|
|
42
|
+
<TextField size="2" value={value} onChange={onChange} onBlur={onBlur} />
|
|
43
|
+
</Flex>
|
|
44
|
+
|
|
45
|
+
<IconButton
|
|
46
|
+
className={styles.button}
|
|
47
|
+
variant="soft"
|
|
48
|
+
size="2"
|
|
49
|
+
onClick={onIncrease}
|
|
50
|
+
disabled={disableIncrease}
|
|
51
|
+
>
|
|
52
|
+
<PlusIcon width={16} height={16} />
|
|
53
|
+
</IconButton>
|
|
54
|
+
</Flex>
|
|
55
|
+
</Flex>
|
|
56
|
+
)
|
|
57
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// TODO: remove this file when we have the right constants
|
|
2
|
+
export const MIN_VALUE_BPM = 30
|
|
3
|
+
export const MAX_VALUE_BPM = 200
|
|
4
|
+
|
|
5
|
+
export const TEMPO_RANGES = [
|
|
6
|
+
{ maxBpm: 19, marking: 'Larghissimo' },
|
|
7
|
+
{ maxBpm: 40, marking: 'Grave' },
|
|
8
|
+
{ maxBpm: 45, marking: 'Lento' },
|
|
9
|
+
{ maxBpm: 50, marking: 'Largo' },
|
|
10
|
+
{ maxBpm: 55, marking: 'Larghetto' },
|
|
11
|
+
{ maxBpm: 65, marking: 'Adagio' },
|
|
12
|
+
{ maxBpm: 69, marking: 'Adagietto' },
|
|
13
|
+
{ maxBpm: 72, marking: 'Andante Moderato' },
|
|
14
|
+
{ maxBpm: 77, marking: 'Andante' },
|
|
15
|
+
{ maxBpm: 83, marking: 'Andantino' },
|
|
16
|
+
{ maxBpm: 85, marking: 'Marcia Moderato' },
|
|
17
|
+
{ maxBpm: 97, marking: 'Moderato' },
|
|
18
|
+
{ maxBpm: 109, marking: 'Allegretto' },
|
|
19
|
+
{ maxBpm: 132, marking: 'Allegro' },
|
|
20
|
+
{ maxBpm: 140, marking: 'Vivace' },
|
|
21
|
+
{ maxBpm: 150, marking: 'Vivacissimo' },
|
|
22
|
+
{ maxBpm: 167, marking: 'Allegrissimo' },
|
|
23
|
+
{ maxBpm: 177, marking: 'Presto' },
|
|
24
|
+
{ maxBpm: Number.POSITIVE_INFINITY, marking: 'Prestissimo' },
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
export const PITCH_ITEMS = [
|
|
28
|
+
{ value: 'C', label: 'C' },
|
|
29
|
+
{ value: 'C#', label: 'C#' },
|
|
30
|
+
{ value: 'D', label: 'D' },
|
|
31
|
+
{ value: 'D#', label: 'D#' },
|
|
32
|
+
{ value: 'E', label: 'E' },
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
export const TUNING_ITEMS = [
|
|
36
|
+
{ value: 440, label: '440 Hz', aiDetected: true, extra: '(AI detected)' },
|
|
37
|
+
{ value: 442, label: '442 Hz' },
|
|
38
|
+
{ value: 444, label: '444 Hz' },
|
|
39
|
+
{ value: 446, label: '446 Hz' },
|
|
40
|
+
]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export const ChordDiagramGridIcon = ({ width = 16, height = 16, className, ...props }) => (
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width={width}
|
|
5
|
+
height={height}
|
|
6
|
+
viewBox="0 0 16 16"
|
|
7
|
+
fill="none"
|
|
8
|
+
className={className}
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M5.33325 14.6663C5.33325 14.9425 5.55711 15.1663 5.83325 15.1663C6.10939 15.1663 6.33325 14.9425 6.33325 14.6663H5.83325H5.33325ZM9.66658 14.6663C9.66658 14.9425 9.89044 15.1663 10.1666 15.1663C10.4427 15.1663 10.6666 14.9425 10.6666 14.6663H10.1666H9.66658ZM2.66659 10.6663V11.1663H13.3333V10.6663V10.1663H2.66659V10.6663ZM2.66659 14.6663V15.1663H13.3333V14.6663V14.1663H2.66659V14.6663ZM5.83325 14.6663H6.33325V10.6663H5.83325H5.33325V14.6663H5.83325ZM10.1666 14.6663H10.6666V10.6663H10.1666H9.66658V14.6663H10.1666ZM1.33325 13.333H1.83325V11.9997H1.33325H0.833252V13.333H1.33325ZM14.6666 13.333H15.1666V11.9997H14.6666H14.1666V13.333H14.6666ZM13.3333 10.6663V11.1663C13.7935 11.1663 14.1666 11.5394 14.1666 11.9997H14.6666H15.1666C15.1666 10.9872 14.3458 10.1663 13.3333 10.1663V10.6663ZM13.3333 14.6663V15.1663C14.3458 15.1663 15.1666 14.3455 15.1666 13.333H14.6666H14.1666C14.1666 13.7932 13.7935 14.1663 13.3333 14.1663V14.6663ZM2.66659 10.6663V10.1663C1.65406 10.1663 0.833252 10.9872 0.833252 11.9997H1.33325H1.83325C1.83325 11.5394 2.20635 11.1663 2.66659 11.1663V10.6663ZM2.66659 14.6663V14.1663C2.20635 14.1663 1.83325 13.7932 1.83325 13.333H1.33325H0.833252C0.833252 14.3455 1.65406 15.1663 2.66659 15.1663V14.6663ZM3.83325 1.33301V1.83301H6.16659V1.33301V0.833008H3.83325V1.33301ZM6.16659 1.33301V1.83301H9.83325V1.33301V0.833008H6.16659V1.33301ZM9.83325 1.33301V1.83301H12.1666V1.33301V0.833008H9.83325V1.33301ZM13.4999 2.66634H12.9999V7.99967H13.4999H13.9999V2.66634H13.4999ZM2.49992 7.99967H2.99992V2.66634H2.49992H1.99992V7.99967H2.49992ZM12.1666 1.33301V1.83301C12.6268 1.83301 12.9999 2.2061 12.9999 2.66634H13.4999H13.9999C13.9999 1.65382 13.1791 0.833008 12.1666 0.833008V1.33301ZM3.83325 1.33301V0.833008C2.82073 0.833008 1.99992 1.65382 1.99992 2.66634H2.49992H2.99992C2.99992 2.2061 3.37301 1.83301 3.83325 1.83301V1.33301ZM6.16659 7.99967H6.66659V1.33301H6.16659H5.66659V7.99967H6.16659ZM9.83325 7.99967H10.3333V1.33301H9.83325H9.33325V7.99967H9.83325Z"
|
|
13
|
+
fill='currentColor'
|
|
14
|
+
/>
|
|
15
|
+
<path
|
|
16
|
+
d="M11.1667 4.66634C11.1667 5.40272 10.5697 5.99967 9.83333 5.99967C9.09695 5.99967 8.5 5.40272 8.5 4.66634C8.5 3.92996 9.09695 3.33301 9.83333 3.33301C10.5697 3.33301 11.1667 3.92996 11.1667 4.66634Z"
|
|
17
|
+
fill='currentColor'
|
|
18
|
+
/>
|
|
19
|
+
</svg>
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
ChordDiagramGridIcon.displayName = 'ChordDiagramGridIcon'
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export const ChordGrid3Icon = ({ width = 16, height = 16, className, ...props }) => (
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width={width}
|
|
5
|
+
height={height}
|
|
6
|
+
viewBox="0 0 15 8"
|
|
7
|
+
fill="none"
|
|
8
|
+
className={className}
|
|
9
|
+
{...props}
|
|
10
|
+
>
|
|
11
|
+
<path
|
|
12
|
+
d="M5 7.5V0.5M9.33333 7.5V0.5M12.5 0.5H1.83333C1.09695 0.5 0.5 1.39543 0.5 2.5V5.5C0.5 6.60457 1.09695 7.5 1.83333 7.5H12.5C13.2364 7.5 13.8333 6.60457 13.8333 5.5V2.5C13.8333 1.39543 13.2364 0.5 12.5 0.5Z"
|
|
13
|
+
stroke="currentColor"
|
|
14
|
+
strokeMiterlimit="10"
|
|
15
|
+
strokeLinecap="round"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
ChordGrid3Icon.displayName = 'ChordGrid3Icon'
|
package/src/icons.jsx
CHANGED
|
@@ -435,3 +435,5 @@ export { ThumbsDownIcon } from './icons/ThumbsDownIcon'
|
|
|
435
435
|
export { LightBulbIcon } from './icons/LightBulbIcon'
|
|
436
436
|
export { RewindBarFillIcon } from './icons/RewindBarFillIcon'
|
|
437
437
|
export { ForwardBarFillIcon } from './icons/ForwardBarFillIcon'
|
|
438
|
+
export { ChordGrid3Icon } from './icons/ChordGrid3Icon'
|
|
439
|
+
export { ChordDiagramGridIcon } from './icons/ChordDiagramGridIcon'
|
package/src/index.jsx
CHANGED
|
@@ -122,4 +122,4 @@ export { TrackHeader } from './components/TrackHeader/TrackHeader'
|
|
|
122
122
|
export { useForm } from './components/useForm/useForm'
|
|
123
123
|
export { VerticalSegmentControl } from './components/VerticalSegmentControl/VerticalSegmentControl'
|
|
124
124
|
export { VoiceConversionForm } from './components/VoiceConversionForm/VoiceConversionForm'
|
|
125
|
-
export { Waveform } from './components/VoiceConversionForm/Waveform/Waveform'
|
|
125
|
+
export { Waveform } from './components/VoiceConversionForm/Waveform/Waveform'
|