@docsector/docsector-reader 3.5.0 → 4.0.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/README.md +11 -11
- package/bin/docsector.js +1 -283
- package/package.json +1 -1
- package/public/images/cards/getting-started-cover.svg +60 -0
- package/public/images/cards/quick-links-cover.svg +71 -0
- package/src/components/{DPageBlockquote.vue → DBlockBlockquote.vue} +4 -0
- package/src/components/DBlockCards.vue +223 -0
- package/src/components/{DPageEmbeddedUrl.vue → DBlockEmbeddedUrl.vue} +1 -1
- package/src/components/{DPageExpandable.vue → DBlockExpandable.vue} +4 -0
- package/src/components/{DPageFile.vue → DBlockFile.vue} +1 -1
- package/src/components/{DPageImage.vue → DBlockImage.vue} +1 -1
- package/src/components/{DMermaidDiagram.vue → DBlockMermaidDiagram.vue} +4 -0
- package/src/components/{DQuickLinks.vue → DBlockQuickLinks.vue} +4 -0
- package/src/components/{DPageSourceCode.vue → DBlockSourceCode.vue} +6 -1
- package/src/components/DBlockStepper.vue +210 -0
- package/src/components/DBlockTimeline.vue +319 -0
- package/src/components/DPageTokens.vue +51 -18
- package/src/components/page-section-tokens.js +334 -9
- package/src/i18n/languages/en-US.hjson +5 -0
- package/src/i18n/languages/pt-BR.hjson +5 -0
- package/src/pages/guide/i18n-and-markdown.overview.en-US.md +6 -6
- package/src/pages/guide/i18n-and-markdown.overview.pt-BR.md +6 -6
- package/src/pages/guide/theming.overview.en-US.md +1 -1
- package/src/pages/guide/theming.overview.pt-BR.md +1 -1
- package/src/pages/manual/content/blocks/cards.overview.en-US.md +32 -0
- package/src/pages/manual/content/blocks/cards.overview.pt-BR.md +32 -0
- package/src/pages/manual/content/blocks/cards.showcase.en-US.md +39 -0
- package/src/pages/manual/content/blocks/cards.showcase.pt-BR.md +39 -0
- package/src/pages/manual/content/blocks/embedded-urls.overview.en-US.md +3 -3
- package/src/pages/manual/content/blocks/embedded-urls.overview.pt-BR.md +3 -3
- package/src/pages/manual/content/blocks/embedded-urls.showcase.en-US.md +8 -8
- package/src/pages/manual/content/blocks/embedded-urls.showcase.pt-BR.md +8 -8
- package/src/pages/manual/content/blocks/expandable.overview.en-US.md +8 -8
- package/src/pages/manual/content/blocks/expandable.overview.pt-BR.md +8 -8
- package/src/pages/manual/content/blocks/expandable.showcase.en-US.md +6 -6
- package/src/pages/manual/content/blocks/expandable.showcase.pt-BR.md +6 -6
- package/src/pages/manual/content/blocks/files.overview.en-US.md +3 -3
- package/src/pages/manual/content/blocks/files.overview.pt-BR.md +3 -3
- package/src/pages/manual/content/blocks/files.showcase.en-US.md +5 -5
- package/src/pages/manual/content/blocks/files.showcase.pt-BR.md +5 -5
- package/src/pages/manual/content/blocks/quick-links.overview.en-US.md +4 -4
- package/src/pages/manual/content/blocks/quick-links.overview.pt-BR.md +4 -4
- package/src/pages/manual/content/blocks/quick-links.showcase.en-US.md +9 -9
- package/src/pages/manual/content/blocks/quick-links.showcase.pt-BR.md +9 -9
- package/src/pages/manual/content/blocks/stepper.overview.en-US.md +59 -0
- package/src/pages/manual/content/blocks/stepper.overview.pt-BR.md +59 -0
- package/src/pages/manual/content/blocks/stepper.showcase.en-US.md +115 -0
- package/src/pages/manual/content/blocks/stepper.showcase.pt-BR.md +115 -0
- package/src/pages/manual/content/blocks/timeline.overview.en-US.md +47 -0
- package/src/pages/manual/content/blocks/timeline.overview.pt-BR.md +47 -0
- package/src/pages/manual/content/blocks/timeline.showcase.en-US.md +170 -0
- package/src/pages/manual/content/blocks/timeline.showcase.pt-BR.md +170 -0
- package/src/pages/manual.index.js +84 -0
|
@@ -683,6 +683,62 @@ export default {
|
|
|
683
683
|
}
|
|
684
684
|
},
|
|
685
685
|
|
|
686
|
+
'/content/blocks/stepper': {
|
|
687
|
+
config: {
|
|
688
|
+
icon: 'format_list_numbered',
|
|
689
|
+
status: 'new',
|
|
690
|
+
meta: {
|
|
691
|
+
description: {
|
|
692
|
+
'en-US': 'Stepper — Documentation of Docsector Reader',
|
|
693
|
+
'pt-BR': 'Stepper — Documentação do Docsector Reader'
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
book: 'manual',
|
|
697
|
+
menu: {},
|
|
698
|
+
subpages: {
|
|
699
|
+
showcase: true
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
data: {
|
|
703
|
+
'en-US': { title: 'Stepper' },
|
|
704
|
+
'pt-BR': { title: 'Stepper' }
|
|
705
|
+
},
|
|
706
|
+
metadata: {
|
|
707
|
+
tags: {
|
|
708
|
+
'en-US': 'stepper steps walkthrough tutorial numbered sequence guide process gitbook',
|
|
709
|
+
'pt-BR': 'stepper etapas passo a passo tutorial sequência numerada guia processo gitbook'
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
|
|
714
|
+
'/content/blocks/timeline': {
|
|
715
|
+
config: {
|
|
716
|
+
icon: 'timeline',
|
|
717
|
+
status: 'new',
|
|
718
|
+
meta: {
|
|
719
|
+
description: {
|
|
720
|
+
'en-US': 'Timeline — Documentation of Docsector Reader',
|
|
721
|
+
'pt-BR': 'Timeline — Documentação do Docsector Reader'
|
|
722
|
+
}
|
|
723
|
+
},
|
|
724
|
+
book: 'manual',
|
|
725
|
+
menu: {},
|
|
726
|
+
subpages: {
|
|
727
|
+
showcase: true
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
data: {
|
|
731
|
+
'en-US': { title: 'Timeline' },
|
|
732
|
+
'pt-BR': { title: 'Linha do tempo' }
|
|
733
|
+
},
|
|
734
|
+
metadata: {
|
|
735
|
+
tags: {
|
|
736
|
+
'en-US': 'timeline updates changelog release notes chronology tags anchor gitbook',
|
|
737
|
+
'pt-BR': 'timeline linha do tempo atualizações changelog notas de versão cronologia tags âncora gitbook'
|
|
738
|
+
}
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
|
|
686
742
|
'/content/blocks/tables': {
|
|
687
743
|
config: {
|
|
688
744
|
icon: 'table_chart',
|
|
@@ -767,6 +823,34 @@ export default {
|
|
|
767
823
|
}
|
|
768
824
|
},
|
|
769
825
|
|
|
826
|
+
'/content/blocks/cards': {
|
|
827
|
+
config: {
|
|
828
|
+
icon: 'view_module',
|
|
829
|
+
status: 'done',
|
|
830
|
+
meta: {
|
|
831
|
+
description: {
|
|
832
|
+
'en-US': 'Cards — Documentation of Docsector Reader',
|
|
833
|
+
'pt-BR': 'Cartões — Documentacao do Docsector Reader'
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
book: 'manual',
|
|
837
|
+
menu: {},
|
|
838
|
+
subpages: {
|
|
839
|
+
showcase: true
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
data: {
|
|
843
|
+
'en-US': { title: 'Cards' },
|
|
844
|
+
'pt-BR': { title: 'Cartões' }
|
|
845
|
+
},
|
|
846
|
+
metadata: {
|
|
847
|
+
tags: {
|
|
848
|
+
'en-US': 'cards grid cover image navigation content links layout',
|
|
849
|
+
'pt-BR': 'cartões grade imagem capa navegação conteúdo links layout'
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
},
|
|
853
|
+
|
|
770
854
|
'/content/structures': {
|
|
771
855
|
config: null,
|
|
772
856
|
data: {
|