@superdoc-dev/cli 0.8.0-next.81 → 0.8.0-next.82
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 -7
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -207687,7 +207687,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
207687
207687
|
init_remark_gfm_BhnWr3yf_es();
|
|
207688
207688
|
});
|
|
207689
207689
|
|
|
207690
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
207690
|
+
// ../../packages/superdoc/dist/chunks/src-BOh9nYEk.es.js
|
|
207691
207691
|
function deleteProps(obj, propOrProps) {
|
|
207692
207692
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
207693
207693
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -250701,7 +250701,7 @@ function getSdtContainerConfig(sdt) {
|
|
|
250701
250701
|
return {
|
|
250702
250702
|
className: "superdoc-structured-content-block",
|
|
250703
250703
|
labelText: sdt.alias ?? "Structured content",
|
|
250704
|
-
labelClassName: "superdoc-structured-content__label",
|
|
250704
|
+
labelClassName: "superdoc-structured-content__label superdoc-structured-content-block__label",
|
|
250705
250705
|
isStart: true,
|
|
250706
250706
|
isEnd: true
|
|
250707
250707
|
};
|
|
@@ -286601,13 +286601,13 @@ var Node$13 = class Node$14 {
|
|
|
286601
286601
|
|
|
286602
286602
|
.superdoc-structured-content-block:not(.ProseMirror-selectednode):hover {
|
|
286603
286603
|
background-color: var(--sd-content-controls-block-hover-bg, #f2f2f2);
|
|
286604
|
-
border-color: transparent;
|
|
286604
|
+
border-color: var(--sd-content-controls-block-hover-border, transparent);
|
|
286605
286605
|
}
|
|
286606
286606
|
|
|
286607
286607
|
/* Group hover (JavaScript-coordinated via PresentationEditor) */
|
|
286608
286608
|
.superdoc-structured-content-block.sdt-group-hover:not(.ProseMirror-selectednode) {
|
|
286609
286609
|
background-color: var(--sd-content-controls-block-hover-bg, #f2f2f2);
|
|
286610
|
-
border-color: transparent;
|
|
286610
|
+
border-color: var(--sd-content-controls-block-hover-border, transparent);
|
|
286611
286611
|
}
|
|
286612
286612
|
|
|
286613
286613
|
.superdoc-structured-content-block.ProseMirror-selectednode {
|
|
@@ -286701,7 +286701,7 @@ var Node$13 = class Node$14 {
|
|
|
286701
286701
|
/* Hover effect for inline structured content */
|
|
286702
286702
|
.superdoc-structured-content-inline:not(.ProseMirror-selectednode):hover {
|
|
286703
286703
|
background-color: var(--sd-content-controls-inline-hover-bg, #f2f2f2);
|
|
286704
|
-
border-color: transparent;
|
|
286704
|
+
border-color: var(--sd-content-controls-inline-hover-border, transparent);
|
|
286705
286705
|
}
|
|
286706
286706
|
|
|
286707
286707
|
.superdoc-structured-content-inline.ProseMirror-selectednode {
|
|
@@ -300325,7 +300325,7 @@ menclose::after {
|
|
|
300325
300325
|
return;
|
|
300326
300326
|
console.log(...args$1);
|
|
300327
300327
|
}, 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;
|
|
300328
|
-
var
|
|
300328
|
+
var init_src_BOh9nYEk_es = __esm(() => {
|
|
300329
300329
|
init_rolldown_runtime_Bg48TavK_es();
|
|
300330
300330
|
init_SuperConverter_D1o6_yKI_es();
|
|
300331
300331
|
init_jszip_C49i9kUs_es();
|
|
@@ -337983,7 +337983,7 @@ var init_zipper_BxRAi0_5_es = __esm(() => {
|
|
|
337983
337983
|
|
|
337984
337984
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
337985
337985
|
var init_super_editor_es = __esm(() => {
|
|
337986
|
-
|
|
337986
|
+
init_src_BOh9nYEk_es();
|
|
337987
337987
|
init_SuperConverter_D1o6_yKI_es();
|
|
337988
337988
|
init_jszip_C49i9kUs_es();
|
|
337989
337989
|
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.82",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"superdoc": "./dist/index.js"
|
|
@@ -24,21 +24,21 @@
|
|
|
24
24
|
"@types/node": "22.19.2",
|
|
25
25
|
"@types/ws": "^8.5.13",
|
|
26
26
|
"typescript": "^5.9.2",
|
|
27
|
-
"@superdoc/document-api": "0.0.1",
|
|
28
|
-
"@superdoc/pm-adapter": "0.0.0",
|
|
29
27
|
"@superdoc/super-editor": "0.0.1",
|
|
30
|
-
"superdoc": "1.31.0"
|
|
28
|
+
"superdoc": "1.31.0",
|
|
29
|
+
"@superdoc/pm-adapter": "0.0.0",
|
|
30
|
+
"@superdoc/document-api": "0.0.1"
|
|
31
31
|
},
|
|
32
32
|
"module": "src/index.ts",
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"optionalDependencies": {
|
|
37
|
-
"@superdoc-dev/cli-darwin-arm64": "0.8.0-next.
|
|
38
|
-
"@superdoc-dev/cli-darwin-x64": "0.8.0-next.
|
|
39
|
-
"@superdoc-dev/cli-linux-
|
|
40
|
-
"@superdoc-dev/cli-linux-
|
|
41
|
-
"@superdoc-dev/cli-windows-x64": "0.8.0-next.
|
|
37
|
+
"@superdoc-dev/cli-darwin-arm64": "0.8.0-next.82",
|
|
38
|
+
"@superdoc-dev/cli-darwin-x64": "0.8.0-next.82",
|
|
39
|
+
"@superdoc-dev/cli-linux-x64": "0.8.0-next.82",
|
|
40
|
+
"@superdoc-dev/cli-linux-arm64": "0.8.0-next.82",
|
|
41
|
+
"@superdoc-dev/cli-windows-x64": "0.8.0-next.82"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"predev": "node scripts/ensure-superdoc-build.js",
|