@teipublisher/pb-components 3.3.1 → 3.4.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.
- package/.github/dependabot.yml +105 -5
- package/CHANGELOG.md +19 -0
- package/dist/pb-components-bundle.js +279 -258
- package/dist/pb-elements.json +1 -1
- package/dist/pb-odd-editor.js +37 -37
- package/dist/{vaadin-element-mixin-e6a38937.js → vaadin-element-mixin-5b332881.js} +37 -23
- package/package.json +1 -1
- package/pb-elements.json +1 -1
- package/src/pb-navigation.js +59 -10
- package/src/pb-view-annotate.js +106 -23
- package/src/pb-view.js +49 -6
package/.github/dependabot.yml
CHANGED
|
@@ -1,11 +1,111 @@
|
|
|
1
|
+
# Separate entries per branch — Dependabot has no shorthand for multi-branch PR targets.
|
|
2
|
+
#
|
|
3
|
+
# Groups are evaluated in order: first matching group wins. Specific toolchains come first,
|
|
4
|
+
# then broad dependency-type buckets.
|
|
5
|
+
|
|
1
6
|
version: 2
|
|
2
7
|
updates:
|
|
3
|
-
#
|
|
4
|
-
- package-ecosystem:
|
|
8
|
+
# ─── GitHub Actions → default branch (main) ─────────────────────────────────
|
|
9
|
+
- package-ecosystem: github-actions
|
|
5
10
|
directory: "/"
|
|
6
11
|
schedule:
|
|
7
|
-
interval:
|
|
8
|
-
|
|
12
|
+
interval: weekly
|
|
13
|
+
groups:
|
|
14
|
+
actions:
|
|
15
|
+
patterns:
|
|
16
|
+
- "*"
|
|
17
|
+
|
|
18
|
+
# ─── GitHub Actions → next-4 ────────────────────────────────────────────────
|
|
19
|
+
- package-ecosystem: github-actions
|
|
9
20
|
directory: "/"
|
|
10
21
|
schedule:
|
|
11
|
-
interval:
|
|
22
|
+
interval: weekly
|
|
23
|
+
target-branch: next-4
|
|
24
|
+
groups:
|
|
25
|
+
actions:
|
|
26
|
+
patterns:
|
|
27
|
+
- "*"
|
|
28
|
+
|
|
29
|
+
# ─── npm → default branch (main) ────────────────────────────────────────────
|
|
30
|
+
- package-ecosystem: npm
|
|
31
|
+
directory: "/"
|
|
32
|
+
schedule:
|
|
33
|
+
interval: daily
|
|
34
|
+
versioning-strategy: increase-if-necessary
|
|
35
|
+
groups:
|
|
36
|
+
rollup-and-vite:
|
|
37
|
+
patterns:
|
|
38
|
+
- "rollup"
|
|
39
|
+
- "vite"
|
|
40
|
+
- "@rollup/*"
|
|
41
|
+
- "rollup-plugin-*"
|
|
42
|
+
babel:
|
|
43
|
+
patterns:
|
|
44
|
+
- "@babel/*"
|
|
45
|
+
cypress-and-test-tooling:
|
|
46
|
+
patterns:
|
|
47
|
+
- "cypress"
|
|
48
|
+
- "concurrently"
|
|
49
|
+
- "eslint-plugin-cypress"
|
|
50
|
+
- "eslint-plugin-chai-friendly"
|
|
51
|
+
- "web-component-analyzer"
|
|
52
|
+
eslint-prettier-and-lint:
|
|
53
|
+
patterns:
|
|
54
|
+
- "eslint"
|
|
55
|
+
- "@eslint/*"
|
|
56
|
+
- "eslint-*"
|
|
57
|
+
- "globals"
|
|
58
|
+
- "lint-staged"
|
|
59
|
+
- "@open-wc/eslint-config"
|
|
60
|
+
- "@open-wc/prettier-config"
|
|
61
|
+
semantic-release:
|
|
62
|
+
patterns:
|
|
63
|
+
- "semantic-release"
|
|
64
|
+
- "@semantic-release/*"
|
|
65
|
+
production-dependencies:
|
|
66
|
+
dependency-type: production
|
|
67
|
+
development-dependencies:
|
|
68
|
+
dependency-type: development
|
|
69
|
+
|
|
70
|
+
# ─── npm → next-4 (identical grouping) ──────────────────────────────────────
|
|
71
|
+
- package-ecosystem: npm
|
|
72
|
+
directory: "/"
|
|
73
|
+
schedule:
|
|
74
|
+
interval: daily
|
|
75
|
+
versioning-strategy: increase-if-necessary
|
|
76
|
+
target-branch: next-4
|
|
77
|
+
groups:
|
|
78
|
+
rollup-and-vite:
|
|
79
|
+
patterns:
|
|
80
|
+
- "rollup"
|
|
81
|
+
- "vite"
|
|
82
|
+
- "@rollup/*"
|
|
83
|
+
- "rollup-plugin-*"
|
|
84
|
+
babel:
|
|
85
|
+
patterns:
|
|
86
|
+
- "@babel/*"
|
|
87
|
+
cypress-and-test-tooling:
|
|
88
|
+
patterns:
|
|
89
|
+
- "cypress"
|
|
90
|
+
- "concurrently"
|
|
91
|
+
- "eslint-plugin-cypress"
|
|
92
|
+
- "eslint-plugin-chai-friendly"
|
|
93
|
+
- "web-component-analyzer"
|
|
94
|
+
eslint-prettier-and-lint:
|
|
95
|
+
patterns:
|
|
96
|
+
- "prettier"
|
|
97
|
+
- "eslint"
|
|
98
|
+
- "@eslint/*"
|
|
99
|
+
- "eslint-*"
|
|
100
|
+
- "globals"
|
|
101
|
+
- "lint-staged"
|
|
102
|
+
- "@open-wc/eslint-config"
|
|
103
|
+
- "@open-wc/prettier-config"
|
|
104
|
+
semantic-release:
|
|
105
|
+
patterns:
|
|
106
|
+
- "semantic-release"
|
|
107
|
+
- "@semantic-release/*"
|
|
108
|
+
production-dependencies:
|
|
109
|
+
dependency-type: production
|
|
110
|
+
development-dependencies:
|
|
111
|
+
dependency-type: development
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [3.4.0](https://github.com/eeditiones/tei-publisher-components/compare/v3.3.2...v3.4.0) (2026-06-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **pb-navigation:** output canonical URL for crawlers to follow ([0d75d73](https://github.com/eeditiones/tei-publisher-components/commit/0d75d73ae2401d4df98c72364f2b4dbb58e96b4c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **pb-view:** implement client-side hydration if prerendered fragment exists in light DOM ([2a01ff5](https://github.com/eeditiones/tei-publisher-components/commit/2a01ff531cfd5f818a988165a3358ddcd1571c53))
|
|
12
|
+
|
|
13
|
+
## [3.3.2](https://github.com/eeditiones/tei-publisher-components/compare/v3.3.1...v3.3.2) (2026-06-02)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **pb-view-annotate:** fix marker display issues when switching pages ([ef8efb6](https://github.com/eeditiones/tei-publisher-components/commit/ef8efb625d943067be26f6defcc792f912bf1eb7))
|
|
19
|
+
|
|
1
20
|
## [3.3.1](https://github.com/eeditiones/tei-publisher-components/compare/v3.3.0...v3.3.1) (2026-05-07)
|
|
2
21
|
|
|
3
22
|
|