@docsector/docsector-reader 4.4.0 → 4.4.1
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
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.4.
|
|
27
|
+
const VERSION = '4.4.1'
|
|
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.4.
|
|
3
|
+
"version": "4.4.1",
|
|
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",
|
|
@@ -340,6 +340,19 @@ watch(assistant.sources, scrollToBottom, { deep: true })
|
|
|
340
340
|
overflow: hidden
|
|
341
341
|
position: relative
|
|
342
342
|
|
|
343
|
+
&.d-mobile-assistant-panel
|
|
344
|
+
width: 100vw
|
|
345
|
+
max-width: 100vw
|
|
346
|
+
height: 100dvh
|
|
347
|
+
max-height: 100dvh
|
|
348
|
+
|
|
349
|
+
.d-assistant-panel__header
|
|
350
|
+
padding-top: env(safe-area-inset-top, 0px)
|
|
351
|
+
min-height: calc(54px + env(safe-area-inset-top, 0px))
|
|
352
|
+
|
|
353
|
+
.d-assistant-panel__composer
|
|
354
|
+
padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px))
|
|
355
|
+
|
|
343
356
|
&__resizer
|
|
344
357
|
position: absolute
|
|
345
358
|
top: 0
|
package/src/components/DPage.vue
CHANGED
|
@@ -470,8 +470,9 @@ watch(() => route.fullPath, () => {
|
|
|
470
470
|
</div>
|
|
471
471
|
</q-drawer>
|
|
472
472
|
|
|
473
|
-
<q-dialog v-if="assistantEnabled" v-model="mobileAssistantOpen" maximized>
|
|
473
|
+
<q-dialog v-if="assistantEnabled" v-model="mobileAssistantOpen" maximized class="d-mobile-assistant-dialog">
|
|
474
474
|
<d-assistant-panel
|
|
475
|
+
class="d-mobile-assistant-panel"
|
|
475
476
|
:context-title="currentPageTitle"
|
|
476
477
|
:markdown-url="currentMarkdownUrl"
|
|
477
478
|
@close="closeAssistant"
|
|
@@ -518,6 +519,19 @@ watch(() => route.fullPath, () => {
|
|
|
518
519
|
width: 40px
|
|
519
520
|
height: 40px
|
|
520
521
|
|
|
522
|
+
.d-mobile-assistant-dialog
|
|
523
|
+
.q-dialog__inner
|
|
524
|
+
padding: 0
|
|
525
|
+
align-items: stretch
|
|
526
|
+
justify-content: stretch
|
|
527
|
+
|
|
528
|
+
.d-mobile-assistant-panel
|
|
529
|
+
width: 100vw
|
|
530
|
+
max-width: 100vw
|
|
531
|
+
height: 100dvh
|
|
532
|
+
max-height: 100dvh
|
|
533
|
+
margin: 0
|
|
534
|
+
|
|
521
535
|
#scroll-container
|
|
522
536
|
width: 100%
|
|
523
537
|
max-width: 1200px
|