@owomark/view 0.1.7 → 0.1.9
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/.build-manifest.json +6 -4
- package/dist/index.js +4 -2
- package/package.json +2 -2
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"packageName": "@owomark/view",
|
|
4
4
|
"packagePath": "owomark/packages/owomark-view",
|
|
5
|
-
"packageFingerprint": "
|
|
6
|
-
"workspaceFingerprint": "
|
|
7
|
-
"builtAt": "2026-04-
|
|
5
|
+
"packageFingerprint": "d8f4b1d986a0675fda2192c0d468451889972322aed165be9fc65f4565475ef6",
|
|
6
|
+
"workspaceFingerprint": "947c542dce3fedf4a242f46f580a35ff336c5a64ac6448d24339650ad9dac6a1",
|
|
7
|
+
"builtAt": "2026-04-23T10:30:21.564Z",
|
|
8
8
|
"builderVersion": "2026-04-22-industrialization-v1",
|
|
9
9
|
"inputFiles": [
|
|
10
10
|
"owomark/package.json",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"owomark/packages/owomark-view/src/internal/virtual/height-cache.ts",
|
|
22
22
|
"owomark/packages/owomark-view/src/internal/virtual/height-estimator.ts",
|
|
23
23
|
"owomark/packages/owomark-view/src/internal/virtual/viewport-manager.ts",
|
|
24
|
+
"owomark/packages/owomark-view/src/renderer/cards-renderer.ts",
|
|
24
25
|
"owomark/packages/owomark-view/src/renderer/default-renderer.ts",
|
|
25
26
|
"owomark/packages/owomark-view/src/renderer/highlight-cache.ts",
|
|
26
27
|
"owomark/packages/owomark-view/src/renderer/registry.ts",
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
"owomark/packages/owomark-view/src/strategies/virtual.ts",
|
|
31
32
|
"owomark/packages/owomark-view/src/style.css",
|
|
32
33
|
"owomark/packages/owomark-view/src/theme.ts",
|
|
34
|
+
"owomark/packages/owomark-view/src/theme/cards.css",
|
|
33
35
|
"owomark/packages/owomark-view/src/theme/dark.css",
|
|
34
36
|
"owomark/packages/owomark-view/src/theme/light.css",
|
|
35
37
|
"owomark/packages/owomark-view/src/theme/owomark.css",
|
|
@@ -71,6 +73,6 @@
|
|
|
71
73
|
"dist/types-D4TVpyP7.d.ts"
|
|
72
74
|
],
|
|
73
75
|
"localDependencyFingerprints": {
|
|
74
|
-
"@owomark/core": "
|
|
76
|
+
"@owomark/core": "8db4cbc05bde390fdc26e52f8d57f3f0fd5bfbf27af1ef9991bf015a3f7b5f69"
|
|
75
77
|
}
|
|
76
78
|
}
|
package/dist/index.js
CHANGED
|
@@ -332,7 +332,8 @@ function createViewEngine(options) {
|
|
|
332
332
|
i,
|
|
333
333
|
block.type,
|
|
334
334
|
block.type === "heading" ? block.headingLevel : void 0,
|
|
335
|
-
block.depth
|
|
335
|
+
block.depth,
|
|
336
|
+
block.ancestry
|
|
336
337
|
);
|
|
337
338
|
el.setAttribute("data-block-id", block.id);
|
|
338
339
|
el.contentEditable = "false";
|
|
@@ -373,7 +374,8 @@ function createViewEngine(options) {
|
|
|
373
374
|
tokens,
|
|
374
375
|
newBlock.type,
|
|
375
376
|
newBlock.type === "heading" ? newBlock.headingLevel : void 0,
|
|
376
|
-
newBlock.depth
|
|
377
|
+
newBlock.depth,
|
|
378
|
+
newBlock.ancestry
|
|
377
379
|
);
|
|
378
380
|
el.setAttribute("data-block-id", newBlock.id);
|
|
379
381
|
if (newBlock.id === activeBlockId) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owomark/view",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Rendering engine, preview engine, DOM view layer, and official base theme for OwoMark.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@owomark/core": "^0.1.
|
|
65
|
+
"@owomark/core": "^0.1.8"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"tsup": "^8.5.1"
|