@docsector/docsector-reader 4.5.0 → 4.5.2
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/bin/docsector.js +1 -1
- package/package.json +1 -1
- package/src/components/DFooter.vue +18 -3
- package/src/components/DPage.vue +2 -0
package/bin/docsector.js
CHANGED
|
@@ -24,7 +24,7 @@ const packageRoot = resolve(__dirname, '..')
|
|
|
24
24
|
const args = process.argv.slice(2)
|
|
25
25
|
const command = args[0]
|
|
26
26
|
|
|
27
|
-
const VERSION = '4.5.
|
|
27
|
+
const VERSION = '4.5.2'
|
|
28
28
|
const AUTHORING_SKILL_NAME = 'docsector-documentation-authoring'
|
|
29
29
|
const AUTHORING_SKILL_DESCRIPTION = 'Author Docsector documentation with Markdown, custom blocks, MCP, and WebMCP.'
|
|
30
30
|
const AUTHORING_SKILL_PUBLIC_PATH = `/.well-known/agent-skills/${AUTHORING_SKILL_NAME}/SKILL.md`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docsector/docsector-reader",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.2",
|
|
4
4
|
"description": "A documentation rendering engine built with Vue 3, Quasar v2 and Vite. Transform Markdown into beautiful, navigable documentation sites.",
|
|
5
5
|
"productName": "Docsector Reader",
|
|
6
6
|
"author": "Rodrigo de Araujo Vieira",
|
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
<footer class="d-footer" role="contentinfo">
|
|
3
3
|
<div class="d-footer__content">
|
|
4
4
|
<span class="d-footer__label">Powered by</span>
|
|
5
|
-
<
|
|
5
|
+
<q-btn
|
|
6
|
+
class="d-footer__brand"
|
|
7
|
+
unelevated
|
|
8
|
+
dense
|
|
9
|
+
no-caps
|
|
10
|
+
color="white"
|
|
11
|
+
text-color="dark"
|
|
12
|
+
label="Docsector"
|
|
13
|
+
href="https://docsector.com"
|
|
14
|
+
target="_blank"
|
|
15
|
+
rel="noopener noreferrer"
|
|
16
|
+
aria-label="Open Docsector website"
|
|
17
|
+
/>
|
|
6
18
|
</div>
|
|
7
19
|
</footer>
|
|
8
20
|
</template>
|
|
@@ -15,7 +27,7 @@ defineOptions({ name: 'DFooter' })
|
|
|
15
27
|
.d-footer
|
|
16
28
|
width: 100%
|
|
17
29
|
background: var(--q-primary, #655529)
|
|
18
|
-
color: #ffffff
|
|
30
|
+
color: #ffffff !important
|
|
19
31
|
|
|
20
32
|
.d-footer__content
|
|
21
33
|
max-width: 1200px
|
|
@@ -33,7 +45,10 @@ defineOptions({ name: 'DFooter' })
|
|
|
33
45
|
opacity: 0.84
|
|
34
46
|
|
|
35
47
|
.d-footer__brand
|
|
36
|
-
|
|
48
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1)
|
|
49
|
+
|
|
50
|
+
.q-btn__content
|
|
51
|
+
font-weight: 700
|
|
37
52
|
|
|
38
53
|
@media (max-width: 599px)
|
|
39
54
|
.d-footer
|
package/src/components/DPage.vue
CHANGED
|
@@ -639,6 +639,8 @@ watch(() => route.fullPath, () => {
|
|
|
639
639
|
overflow: auto
|
|
640
640
|
box-shadow: -16px 0 40px rgba(15, 23, 42, 0.22)
|
|
641
641
|
|
|
642
|
+
.d-mobile-anchor-dialog__panel
|
|
643
|
+
opacity: 0.8
|
|
642
644
|
body.body--dark
|
|
643
645
|
.d-mobile-anchor-dialog__panel
|
|
644
646
|
background: rgba(15, 23, 42, 0.9)
|