@salina-app/media-editor 0.1.52 → 0.1.53
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 +3 -2
- package/dist/lib/typings/ITrimmed.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1605,10 +1605,11 @@ function vZ(t) {
|
|
|
1605
1605
|
const Bv = zs()((t) => ({
|
|
1606
1606
|
trimmedClips: [],
|
|
1607
1607
|
setTrimmedClips: (e) => t(() => {
|
|
1608
|
-
const r = ((i) => i.map((a) => ({
|
|
1608
|
+
const r = ((i) => i.map((a, l) => ({
|
|
1609
1609
|
...a,
|
|
1610
1610
|
timestamp_one: l3(a.timestamp_one),
|
|
1611
|
-
timestamp_two: l3(a.timestamp_two)
|
|
1611
|
+
timestamp_two: l3(a.timestamp_two),
|
|
1612
|
+
index: l
|
|
1612
1613
|
})))(e);
|
|
1613
1614
|
return {
|
|
1614
1615
|
trimmedClips: vZ(r)
|