@superdoc-dev/cli 0.8.0-next.97 → 0.8.0-next.98
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 +7 -5
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -208761,7 +208761,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
208761
208761
|
init_remark_gfm_BhnWr3yf_es();
|
|
208762
208762
|
});
|
|
208763
208763
|
|
|
208764
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
208764
|
+
// ../../packages/superdoc/dist/chunks/src-DEPmpJjg.es.js
|
|
208765
208765
|
function deleteProps(obj, propOrProps) {
|
|
208766
208766
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
208767
208767
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -295301,10 +295301,12 @@ menclose::after {
|
|
|
295301
295301
|
}, AUTO_SPACING_DEFAULT_MULTIPLIER = 1.15, AUTO_SPACING_LINE_DEFAULT = 240, normalizeAlignment = (value, isRtl = false) => {
|
|
295302
295302
|
switch (value) {
|
|
295303
295303
|
case "center":
|
|
295304
|
-
case "right":
|
|
295305
295304
|
case "justify":
|
|
295306
|
-
case "left":
|
|
295307
295305
|
return value;
|
|
295306
|
+
case "left":
|
|
295307
|
+
return isRtl ? "right" : "left";
|
|
295308
|
+
case "right":
|
|
295309
|
+
return isRtl ? "left" : "right";
|
|
295308
295310
|
case "both":
|
|
295309
295311
|
case "distribute":
|
|
295310
295312
|
case "numTab":
|
|
@@ -302370,7 +302372,7 @@ menclose::after {
|
|
|
302370
302372
|
return;
|
|
302371
302373
|
console.log(...args$1);
|
|
302372
302374
|
}, HEADER_FOOTER_INIT_BUDGET_MS = 200, MAX_ZOOM_WARNING_THRESHOLD = 10, MAX_SELECTION_RECTS_PER_USER = 100, SEMANTIC_RESIZE_DEBOUNCE_MS = 120, MIN_SEMANTIC_CONTENT_WIDTH_PX = 1, GLOBAL_PERFORMANCE, PresentationEditor, ICONS, TEXTS, tableActionsOptions;
|
|
302373
|
-
var
|
|
302375
|
+
var init_src_DEPmpJjg_es = __esm(() => {
|
|
302374
302376
|
init_rolldown_runtime_Bg48TavK_es();
|
|
302375
302377
|
init_SuperConverter_VRDgcp1i_es();
|
|
302376
302378
|
init_jszip_C49i9kUs_es();
|
|
@@ -340439,7 +340441,7 @@ var init_zipper_BxRAi0_5_es = __esm(() => {
|
|
|
340439
340441
|
|
|
340440
340442
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
340441
340443
|
var init_super_editor_es = __esm(() => {
|
|
340442
|
-
|
|
340444
|
+
init_src_DEPmpJjg_es();
|
|
340443
340445
|
init_SuperConverter_VRDgcp1i_es();
|
|
340444
340446
|
init_jszip_C49i9kUs_es();
|
|
340445
340447
|
init_xml_js_CqGKpaft_es();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdoc-dev/cli",
|
|
3
|
-
"version": "0.8.0-next.
|
|
3
|
+
"version": "0.8.0-next.98",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superdoc": "./dist/index.js"
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@superdoc-dev/cli-darwin-arm64": "0.8.0-next.
|
|
38
|
-
"@superdoc-dev/cli-
|
|
39
|
-
"@superdoc-dev/cli-
|
|
40
|
-
"@superdoc-dev/cli-linux-arm64": "0.8.0-next.
|
|
41
|
-
"@superdoc-dev/cli-windows-x64": "0.8.0-next.
|
|
37
|
+
"@superdoc-dev/cli-darwin-arm64": "0.8.0-next.98",
|
|
38
|
+
"@superdoc-dev/cli-linux-x64": "0.8.0-next.98",
|
|
39
|
+
"@superdoc-dev/cli-darwin-x64": "0.8.0-next.98",
|
|
40
|
+
"@superdoc-dev/cli-linux-arm64": "0.8.0-next.98",
|
|
41
|
+
"@superdoc-dev/cli-windows-x64": "0.8.0-next.98"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"predev": "node scripts/ensure-superdoc-build.js",
|