@mrakomor/core 0.0.5 → 0.0.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrakomor/core",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
4
  "description": "",
5
5
  "imports": {
6
6
  "#src/*.mjs": "./src/*.mjs",
@@ -14,14 +14,18 @@
14
14
  "build/static/es15"
15
15
  ],
16
16
  "scripts": {
17
- "test": "node --test --import=./src/__tests__/setup.mjs 'src/**/__tests__/**/*.test.mjs'",
17
+ "test": "npm run test:unit && npm run test:integration && npm run test:size && npm run test:e2e",
18
+ "test:unit": "node --test --import=./src/__tests__/setup.mjs 'src/**/__tests__/**/*.test.mjs'",
18
19
  "test:watch": "node --test --watch --import=./src/__tests__/setup.mjs 'src/**/__tests__/**/*.test.mjs'",
20
+ "test:integration": "node --test --import=./src/__tests__/setup.mjs 'src/__integration__/**/*.integration.mjs'",
21
+ "test:size": "npm run build && node scripts/check-bundle-size.mjs",
22
+ "test:e2e": "playwright test",
23
+ "test:performance": "playwright test --project=performance",
19
24
  "lint": "eslint -c ./.eslintrc.js --ignore-path ./.prettierignore './**/*.{js,jsx}'",
20
25
  "types": "tsc -p tsconfig.types.json",
21
26
  "dev": "merkur dev",
22
27
  "build": "merkur build",
23
- "start": "merkur start",
24
- "test:e2e": "playwright test"
28
+ "start": "merkur start"
25
29
  },
26
30
  "author": "Miroslav Jancarik",
27
31
  "license": "UNLICENSED",
@@ -33,7 +37,7 @@
33
37
  "access": "public"
34
38
  },
35
39
  "dependencies": {
36
- "@esmj/dom": "^0.2.1",
40
+ "@esmj/dom": "^0.2.2",
37
41
  "@esmj/emitter": "^0.4.3",
38
42
  "@esmj/schema": "^0.9.0"
39
43
  },
@@ -48,6 +52,7 @@
48
52
  "@merkur/tools": "1.0.3",
49
53
  "@playwright/test": "^1.60.0",
50
54
  "@testing-library/dom": "^10.4.0",
55
+ "axe-core": "^4.13.0",
51
56
  "compression": "^1.7.4",
52
57
  "config": "^3.3.7",
53
58
  "cors": "^2.8.5",
@@ -55,6 +60,7 @@
55
60
  "easy-uid": "^2.0.2",
56
61
  "express": "^4.17.3",
57
62
  "express-static-gzip": "^2.1.5",
63
+ "fast-check": "^4.9.0",
58
64
  "global-jsdom": "^25.0.0",
59
65
  "helmet": "^5.0.2",
60
66
  "intersect-objects": "^2.0.0",
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../../src/style.css", "../../../src/plugin/linkEntity/LinkEntity.css", "../../../src/plugin/tts/TtsVoice.css"],
4
- "sourcesContent": ["\n.molecule__figure {\n padding: 12px 6px;\n background-color: #f0f0f0;\n\n}\n\n.molecule__figure .image {\n aspect-ratio: 16/9;\n background-color: lightgray;\n}\n\n.namespace-unknown-unknowncomponent {\n background-color: #f0f0f0;\n padding: 12px 0;\n margin-bottom: 8px;\n}\n\n.mrakomor-editor:focus-visible {\n outline: none;\n}\n\n\n\n.dialog[open] {\n background-color: white;\n border: 1px solid black;\n border-radius: 8px;\n box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);\n padding: 12px;\n\n display: flex;\n flex-flow: row wrap;\n\n justify-content: space-between;\n\n .dialog-controls {\n text-align: right;\n width: 100%;\n\n .dialog-button-close {\n background-color: #f0f0f0;\n border: 1px solid black;\n border-radius: 4px;\n color: black;\n cursor: pointer;\n display: inline-block;\n font-size: 14px;\n margin-right: 1px;\n padding: 4px 8px;\n text-align: center;\n }\n }\n\n .dialog-container {\n width: 100%;\n }\n}\n\n/* \u2500\u2500 Tooltip bubble toolbar \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n\n.mrakomor-tooltip {\n position: absolute;\n z-index: 9100;\n display: flex;\n flex-direction: row;\n align-items: center;\n gap: 2px;\n background: #1a1a1a;\n border-radius: 6px;\n padding: 4px 6px;\n box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);\n pointer-events: all;\n white-space: nowrap;\n}\n\n.mrakomor-tooltip__btn {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n background: transparent;\n border: none;\n border-radius: 4px;\n color: #fff;\n cursor: pointer;\n font-size: 13px;\n font-weight: 600;\n min-width: 28px;\n min-height: 28px;\n padding: 0 6px;\n transition: background 0.1s;\n}\n\n.mrakomor-tooltip__btn:hover {\n background: rgba(255, 255, 255, 0.15);\n}\n\n.mrakomor-tooltip__btn--active {\n background: rgba(255, 255, 255, 0.25);\n color: #7dd3fc;\n}\n\n.mrakomor-tooltip__separator {\n width: 1px;\n height: 18px;\n background: rgba(255, 255, 255, 0.2);\n margin: 0 4px;\n flex-shrink: 0;\n}\n\n/* \u2500\u2500 Block gutter chrome \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n\n.mrakomor-tools-container {\n position: relative;\n}\n\n.mrakomor-content {\n position: relative;\n}\n\n.mrakomor-content h1 {\n margin-top: 0;\n}\n\n.mrakomor-content h2 {\n margin-top: 0;\n}\n\n.mrakomor-content h3 {\n margin-top: 0;\n}\n\n.mrakomor-content h4 {\n margin-top: 0;\n}\n\n.mrakomor-content h5 {\n margin-top: 0;\n}\n\n.mrakomor-content p {\n margin-top:0;\n}\n\n.molecule-list-list {\n margin: 0 0 1em;\n padding-inline-start: 1.5em;\n}\n\n.molecule-list-list li {\n margin: 0.25em 0;\n outline: none;\n}\n\n.molecule-list-list li:focus {\n outline: none;\n}\n\n.molecule-list-list li[data-depth='1'] {\n margin-inline-start: 1.5em;\n}\n\n.molecule-list-list li[data-depth='2'] {\n margin-inline-start: 3em;\n}\n\n.molecule-list-list li[data-depth='3'] {\n margin-inline-start: 4.5em;\n}\n\n.mrakomor-block-element {\n position: relative;\n padding-left: 52px;\n margin-bottom: 12px;\n}\n\n.mrakomor-block-gutter {\n position: absolute;\n left: 0;\n top: 2px;\n display: flex;\n align-items: center;\n gap: 2px;\n opacity: 0;\n transition: opacity 0.15s ease;\n pointer-events: all;\n user-select: none;\n z-index: 1;\n}\n\n.mrakomor-block-element:hover .mrakomor-block-gutter,\n.mrakomor-block-element--active .mrakomor-block-gutter,\n.mrakomor-block-drag-active .mrakomor-block-gutter {\n opacity: 1;\n}\n\n.mrakomor-block-add,\n.mrakomor-block-drag {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n width: 24px;\n height: 24px;\n padding: 0;\n border: none;\n border-radius: 4px;\n background: transparent;\n color: #9ca3af;\n cursor: pointer;\n font-size: 18px;\n line-height: 1;\n transition: background 0.1s, color 0.1s;\n}\n\n.mrakomor-block-add:hover,\n.mrakomor-block-drag:hover {\n background: rgba(0, 0, 0, 0.06);\n color: #374151;\n}\n\n.mrakomor-block-drag {\n cursor: grab;\n}\n\n.mrakomor-block-element--dragging .mrakomor-block-drag,\n.mrakomor-block-drag-active .mrakomor-block-drag {\n cursor: grabbing;\n}\n\n.mrakomor-block-element--dragging {\n opacity: 0.5;\n}\n\n.mrakomor-block-body {\n min-width: 0;\n}\n\n.mrakomor-block-drop-indicator {\n position: absolute;\n left: 52px;\n right: 0;\n height: 2px;\n background: #3b82f6;\n border-radius: 1px;\n pointer-events: none;\n z-index: 2;\n}\n\n/* \u2500\u2500 Block insert menu \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n\n.mrakomor-block-insert-menu {\n position: absolute;\n z-index: 9200;\n display: flex;\n flex-direction: column;\n gap: 2px;\n min-width: 120px;\n background: #1a1a1a;\n border-radius: 6px;\n padding: 4px;\n box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);\n pointer-events: all;\n}\n\n.mrakomor-block-insert-menu__item {\n display: flex;\n align-items: center;\n width: 100%;\n padding: 6px 10px;\n border: none;\n border-radius: 4px;\n background: transparent;\n color: #fff;\n cursor: pointer;\n font-size: 13px;\n font-weight: 600;\n text-align: left;\n transition: background 0.1s;\n}\n\n.mrakomor-block-insert-menu__item:hover {\n background: rgba(255, 255, 255, 0.15);\n}", "/* \u2500\u2500 Link toolbar (dialog popover) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n.link-toolbar {\n display: flex;\n flex-direction: column;\n gap: 6px;\n}\n\n.link-toolbar__row {\n display: flex;\n align-items: center;\n gap: 4px;\n min-width: 0;\n}\n\n.link-toolbar__href {\n flex: 1;\n min-width: 0;\n font-size: 13px;\n color: #1a73e8;\n text-decoration: underline;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n max-width: 220px;\n}\n\n.link-toolbar__sep {\n width: 1px;\n height: 18px;\n background: #e0e0e0;\n flex-shrink: 0;\n margin: 0 2px;\n}\n\n.link-toolbar__btn {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n background: none;\n border: none;\n cursor: pointer;\n padding: 4px;\n border-radius: 4px;\n color: #555;\n\n &:hover {\n background: #f0f0f0;\n color: #222;\n }\n}\n\n.link-toolbar__btn--danger {\n &:hover {\n color: #d32f2f;\n background: #fdecea;\n }\n}\n\n.link-toolbar__input {\n flex: 1;\n min-width: 0;\n border: 1px solid #dadce0;\n border-radius: 4px;\n padding: 4px 8px;\n font-size: 13px;\n outline: none;\n\n &:focus {\n border-color: #1a73e8;\n box-shadow: 0 0 0 2px #1a73e833;\n }\n}\n\n.link-toolbar__select {\n flex-shrink: 0;\n border: 1px solid #dadce0;\n border-radius: 4px;\n padding: 4px 6px;\n font-size: 13px;\n background: #fff;\n cursor: pointer;\n}", "/* \u2500\u2500 TTS voice entity range \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n.atom-tts-voice {\n position: relative;\n border-radius: 2px;\n display: inline-block;\n}\n\n.atom-tts-voice::before {\n content: attr(data-voice-label);\n position: absolute;\n top: -1.1em;\n left: 0;\n font-size: 10px;\n line-height: 1;\n white-space: nowrap;\n padding: 1px 4px;\n border-radius: 3px;\n pointer-events: none;\n font-weight: 600;\n}\n\n.tts-voice--man {\n background: #e8f0fe;\n color: #174ea6;\n}\n\n.tts-voice--man::before {\n background: #1a73e8;\n color: #fff;\n}\n\n.tts-voice--woman {\n background: #f3e8fd;\n color: #5e35b1;\n}\n\n.tts-voice--woman::before {\n background: #7b1fa2;\n color: #fff;\n}\n\n/* \u2500\u2500 TTS voice toolbar (dialog popover) \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 */\n.tts-voice-toolbar {\n display: flex;\n flex-direction: column;\n gap: 6px;\n}\n\n.tts-voice-toolbar__row {\n display: flex;\n align-items: center;\n flex-wrap: wrap;\n gap: 4px;\n min-width: 0;\n}\n\n.tts-voice-toolbar__voice {\n flex-shrink: 0;\n border: 1px solid #dadce0;\n border-radius: 4px;\n padding: 4px 8px;\n font-size: 12px;\n background: #fff;\n color: #333;\n}\n\n.tts-voice-toolbar__voice--man {\n border-color: #1a73e8;\n color: #174ea6;\n}\n\n.tts-voice-toolbar__voice--woman {\n border-color: #7b1fa2;\n color: #5e35b1;\n}\n\n.tts-voice-toolbar__voice--active {\n font-weight: 600;\n}\n\n.tts-voice-toolbar__voice--man.tts-voice-toolbar__voice--active {\n background: #e8f0fe;\n}\n\n.tts-voice-toolbar__voice--woman.tts-voice-toolbar__voice--active {\n background: #f3e8fd;\n}\n\n.tts-voice-toolbar__sep {\n width: 1px;\n height: 18px;\n background: #e0e0e0;\n flex-shrink: 0;\n margin: 0 2px;\n}\n\n.tts-voice-toolbar__btn {\n display: flex;\n align-items: center;\n justify-content: center;\n flex-shrink: 0;\n background: none;\n border: none;\n cursor: pointer;\n padding: 4px;\n border-radius: 4px;\n color: #555;\n}\n\n.tts-voice-toolbar__btn:hover {\n background: #f0f0f0;\n color: #222;\n}\n\n.tts-voice-toolbar__btn--danger:hover {\n color: #d32f2f;\n background: #fdecea;\n}\n"],
5
- "mappings": "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",
6
- "names": []
7
- }