@nualang/nualang-ui-components 0.1.1197 → 0.1.1198
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.
|
@@ -42,7 +42,7 @@ function Customization({
|
|
|
42
42
|
fileSizeLimit: fileSizeLimit,
|
|
43
43
|
previewComponent: _PreviewCard.default,
|
|
44
44
|
isBanner: false
|
|
45
|
-
}))),
|
|
45
|
+
}))), /*#__PURE__*/_react.default.createElement(_material.Grid, {
|
|
46
46
|
item: true,
|
|
47
47
|
md: 6
|
|
48
48
|
}, /*#__PURE__*/_react.default.createElement(_material.Typography, {
|
|
@@ -59,7 +59,7 @@ function Customization({
|
|
|
59
59
|
previewComponent: _PreviewCard.default,
|
|
60
60
|
isBanner: true,
|
|
61
61
|
aspect: 16 / 2.5
|
|
62
|
-
})))
|
|
62
|
+
})))));
|
|
63
63
|
}
|
|
64
64
|
Customization.propTypes = {};
|
|
65
65
|
Customization.label = "customization";
|
|
@@ -964,8 +964,8 @@ function GenerateAudio({
|
|
|
964
964
|
}
|
|
965
965
|
if (generateTxt) {
|
|
966
966
|
const fileNameWithoutExtension = row.fileName.replace(".mp3", "");
|
|
967
|
-
const
|
|
968
|
-
folder.file(`${fileNameWithoutExtension}.txt`,
|
|
967
|
+
const txtContentWithoutQuotes = `${phrase}\n`.replace(/"/g, "");
|
|
968
|
+
folder.file(`${fileNameWithoutExtension}.txt`, txtContentWithoutQuotes);
|
|
969
969
|
}
|
|
970
970
|
if (fileNameCount[fileNameWithExtension]) {
|
|
971
971
|
fileNameCount[fileNameWithExtension] += 1;
|