@jinntec/jinntap 1.30.0 → 1.32.0

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.
@@ -362,7 +362,11 @@ tei-quote{
362
362
  }
363
363
 
364
364
  .ProseMirror-selectednode {
365
- outline: 2px solid var(--pico-primary);
365
+ /* --pico-primary only exists where pico is loaded (e.g. the workbench). In
366
+ the standalone docs it is undefined, which makes the whole `outline`
367
+ invalid and reverts it to `none` — so a node selected via the breadcrumb
368
+ shows no highlight. Fall back to the docs accent, then a fixed colour. */
369
+ outline: 2px solid var(--pico-primary, var(--accent, #047878));
366
370
  }
367
371
 
368
372
  .table-menu {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jinntec/jinntap",
3
- "version": "1.30.0",
3
+ "version": "1.32.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.es.js",
6
6
  "module": "./dist/index.es.js",
@@ -29,7 +29,7 @@
29
29
  "dist/index.es.js",
30
30
  "dist/index.es.js.map",
31
31
  "dist/index.d.ts",
32
- "dist/editor-styles.css",
32
+ "dist/tei-editor-styles.css",
33
33
  "dist/jinn-tap.css",
34
34
  "dist/jinntap-logo.png",
35
35
  "dist/jinntap-logo-128.png"
@@ -38,8 +38,10 @@
38
38
  "dev": "vite",
39
39
  "build": "vite build",
40
40
  "postbuild": "node scripts/copy-assets.js",
41
- "build:demo": "vite build --config vite.demo.config.js",
42
- "preview": "vite preview",
41
+ "clean": "node scripts/clean.js",
42
+ "build:site": "npm run build && node scripts/copy-site-assets.js && npx @11ty/eleventy",
43
+ "docs:dev": "npm run build && node scripts/copy-site-assets.js && npx @11ty/eleventy --serve --watch",
44
+ "docs:build": "npx @11ty/eleventy",
43
45
  "cypress:open": "cypress open",
44
46
  "cypress:run": "cypress run",
45
47
  "test": "cypress run",
@@ -60,23 +62,25 @@
60
62
  "@tiptap/starter-kit": "^3.22.5",
61
63
  "fontoxpath": "^3.33.2",
62
64
  "prettier-plugin-xquery": "^1.2.5",
63
- "rollup": "^4.60.2",
65
+ "rollup": "^4.62.2",
64
66
  "unique-username-generator": "^1.4.0",
65
67
  "xml-formatter": "^3.6.5",
66
68
  "y-prosemirror": "^1.3.4"
67
69
  },
68
70
  "devDependencies": {
71
+ "@11ty/eleventy": "^3.1.6",
72
+ "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
69
73
  "@hocuspocus/extension-logger": "^4.0.0",
70
74
  "@hocuspocus/server": "^4.0.0",
71
75
  "@semantic-release/changelog": "^6.0.3",
72
76
  "@semantic-release/git": "^10.0.1",
73
- "@semantic-release/github": "^9.2.6",
74
- "@semantic-release/npm": "^10.0.4",
77
+ "@semantic-release/github": "^12.0.9",
78
+ "@semantic-release/npm": "^13.1.5",
75
79
  "chai-xml": "^0.4.1",
76
80
  "cypress": "^15.9.0",
77
81
  "jsonwebtoken": "^9.0.2",
78
82
  "prettier": "^3.6.2",
79
- "semantic-release": "^22.0.8",
83
+ "semantic-release": "^25.0.8",
80
84
  "vite": "^5.1.0"
81
85
  },
82
86
  "keywords": [
@@ -106,6 +110,10 @@
106
110
  ]
107
111
  },
108
112
  "peerDependencies": {
109
- "@teipublisher/pb-components": "^3.0.5"
113
+ "@teipublisher/pb-components": "^3.6.6"
114
+ },
115
+ "publishConfig": {
116
+ "access": "public",
117
+ "registry": "https://registry.npmjs.org/"
110
118
  }
111
119
  }