pict-section-inlinedocumentation 1.0.1 → 1.0.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/LICENSE +21 -0
- package/README.md +11 -13
- package/diagrams/four-levels-of-embeddedness.excalidraw +717 -0
- package/diagrams/four-levels-of-embeddedness.mmd +4 -0
- package/diagrams/four-levels-of-embeddedness.svg +2 -0
- package/docs/README.md +10 -19
- package/docs/_cover.md +6 -0
- package/docs/_sidebar.md +8 -4
- package/docs/_version.json +3 -3
- package/docs/architecture.md +2 -44
- package/docs/diagrams/component-diagram.excalidraw +3546 -0
- package/docs/diagrams/component-diagram.mmd +42 -0
- package/docs/diagrams/component-diagram.svg +2 -0
- package/docs/diagrams/four-levels-of-embeddedness.excalidraw +717 -0
- package/docs/diagrams/four-levels-of-embeddedness.mmd +9 -0
- package/docs/diagrams/four-levels-of-embeddedness.svg +2 -0
- package/docs/diagrams/project-layout.excalidraw +6082 -0
- package/docs/diagrams/project-layout.mmd +25 -0
- package/docs/diagrams/project-layout.svg +2 -0
- package/docs/embedding-level2-routes.md +1 -1
- package/docs/embedding-level4-autogen.md +1 -1
- package/docs/examples/README.md +9 -0
- package/docs/examples/bookshop/README.md +582 -0
- package/docs/examples/bookshop/bookshop_example.js +4519 -0
- package/docs/examples/bookshop/index.html +236 -0
- package/docs/index.html +6 -5
- package/docs/overview.md +4 -4
- package/docs/reference.md +2 -27
- package/docs/retold-catalog.json +77 -178
- package/docs/retold-keyword-index.json +14134 -1917
- package/example_applications/bookshop/package.json +9 -1
- package/package.json +9 -9
- package/source/providers/Pict-Provider-InlineDocumentation.js +27 -3
- package/source/views/Pict-View-InlineDocumentation-Layout.js +115 -3
- package/source/views/Pict-View-InlineDocumentation-Nav.js +91 -10
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
6
|
+
<title>Bookshop - Pict Example</title>
|
|
7
|
+
<!-- PICT Dynamic View CSS Container -->
|
|
8
|
+
<style id="PICT-CSS"></style>
|
|
9
|
+
<!-- Red Rock Mesa Theme -->
|
|
10
|
+
<style>
|
|
11
|
+
*, *::before, *::after { box-sizing: border-box; }
|
|
12
|
+
body { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; background: #FAEDCD; color: #264653; }
|
|
13
|
+
|
|
14
|
+
/* --- Header Bar --- */
|
|
15
|
+
.pict-example-header { display: flex; align-items: stretch; background: #264653; border-bottom: 3px solid #E76F51; position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
|
|
16
|
+
.pict-example-badge { background: #E76F51; color: var(--theme-color-background-panel, #fff); padding: 0.6rem 1rem; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.5rem; }
|
|
17
|
+
.pict-example-badge svg { width: 14px; height: 14px; fill: var(--theme-color-background-panel, #fff); flex-shrink: 0; }
|
|
18
|
+
.pict-example-app-name { padding: 0.6rem 1rem; color: #FAEDCD; font-size: 1.1rem; font-weight: 600; display: flex; align-items: center; }
|
|
19
|
+
.pict-example-module { margin-left: auto; padding: 0.6rem 1rem; color: #D4A373; font-size: 0.75rem; display: flex; align-items: center; letter-spacing: 0.03em; }
|
|
20
|
+
.pict-example-header-help-btn {
|
|
21
|
+
display: flex; align-items: center; justify-content: center;
|
|
22
|
+
padding: 0 1rem; cursor: pointer; color: #D4A373;
|
|
23
|
+
font-size: 0.85rem; font-weight: 600; gap: 0.4em;
|
|
24
|
+
transition: color 0.15s; border: none; background: transparent;
|
|
25
|
+
}
|
|
26
|
+
.pict-example-header-help-btn:hover { color: #FAEDCD; }
|
|
27
|
+
.pict-example-header-help-btn .help-icon {
|
|
28
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
29
|
+
width: 20px; height: 20px; border-radius: 50%;
|
|
30
|
+
border: 2px solid currentColor; font-size: 0.75em; font-weight: 800;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* --- Layout --- */
|
|
34
|
+
.pict-example-layout { display: flex; margin-top: 44px; min-height: calc(100vh - 44px); }
|
|
35
|
+
|
|
36
|
+
/* --- Content Area --- */
|
|
37
|
+
.pict-example-content {
|
|
38
|
+
flex: 1; padding: 1.5rem; transition: margin-right 0.25s ease;
|
|
39
|
+
}
|
|
40
|
+
.pict-example-content.help-open {
|
|
41
|
+
margin-right: 380px;
|
|
42
|
+
}
|
|
43
|
+
#Bookshop-Content-Container {
|
|
44
|
+
background: var(--theme-color-background-panel, #fff);
|
|
45
|
+
border: 1px solid #D4A373;
|
|
46
|
+
border-top: 4px solid #E76F51;
|
|
47
|
+
border-radius: 6px;
|
|
48
|
+
padding: 1.25rem;
|
|
49
|
+
box-shadow: 0 2px 8px rgba(38,70,83,0.08);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* --- Help Panel (slide-in from right) --- */
|
|
53
|
+
#Bookshop-Help-Panel {
|
|
54
|
+
position: fixed;
|
|
55
|
+
top: 44px;
|
|
56
|
+
right: 0;
|
|
57
|
+
bottom: 0;
|
|
58
|
+
width: 380px;
|
|
59
|
+
min-width: 320px;
|
|
60
|
+
background: var(--theme-color-background-panel, #FDFCFA);
|
|
61
|
+
border-left: 1px solid #D4A373;
|
|
62
|
+
box-shadow: -2px 0 12px rgba(38,70,83,0.08);
|
|
63
|
+
transform: translateX(100%);
|
|
64
|
+
transition: transform 0.25s ease;
|
|
65
|
+
z-index: 50;
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
}
|
|
70
|
+
#Bookshop-Help-Panel.visible {
|
|
71
|
+
transform: translateX(0);
|
|
72
|
+
}
|
|
73
|
+
.bookshop-help-panel-header {
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: center;
|
|
76
|
+
padding: 0.6em 1em;
|
|
77
|
+
background: #264653;
|
|
78
|
+
color: #FAEDCD;
|
|
79
|
+
font-weight: 600;
|
|
80
|
+
font-size: 0.9em;
|
|
81
|
+
flex-shrink: 0;
|
|
82
|
+
}
|
|
83
|
+
.bookshop-help-panel-header span { flex: 1; }
|
|
84
|
+
.bookshop-help-panel-close {
|
|
85
|
+
background: transparent;
|
|
86
|
+
border: none;
|
|
87
|
+
color: #D4A373;
|
|
88
|
+
font-size: 1.2em;
|
|
89
|
+
cursor: pointer;
|
|
90
|
+
padding: 0 0.3em;
|
|
91
|
+
line-height: 1;
|
|
92
|
+
}
|
|
93
|
+
.bookshop-help-panel-close:hover { color: #FAEDCD; }
|
|
94
|
+
#InlineDoc-Container {
|
|
95
|
+
flex: 1;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
min-height: 0;
|
|
98
|
+
}
|
|
99
|
+
/* Override the inline doc border/background within the help panel */
|
|
100
|
+
#Bookshop-Help-Panel .pict-inline-doc {
|
|
101
|
+
border: none;
|
|
102
|
+
border-radius: 0;
|
|
103
|
+
height: 100%;
|
|
104
|
+
}
|
|
105
|
+
/* Force compact (horizontal nav) mode inside the narrow help panel */
|
|
106
|
+
#Bookshop-Help-Panel .pict-inline-doc {
|
|
107
|
+
flex-direction: column;
|
|
108
|
+
}
|
|
109
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-container {
|
|
110
|
+
width: 100%;
|
|
111
|
+
min-width: 0;
|
|
112
|
+
max-width: none;
|
|
113
|
+
border-right: none;
|
|
114
|
+
border-bottom: 1px solid #E5DED4;
|
|
115
|
+
overflow-y: visible;
|
|
116
|
+
overflow-x: auto;
|
|
117
|
+
max-height: none;
|
|
118
|
+
}
|
|
119
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav {
|
|
120
|
+
padding: 0.4em 0.5em;
|
|
121
|
+
display: flex;
|
|
122
|
+
flex-wrap: wrap;
|
|
123
|
+
align-items: center;
|
|
124
|
+
gap: 0.15em 0.3em;
|
|
125
|
+
}
|
|
126
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-group {
|
|
127
|
+
display: flex;
|
|
128
|
+
flex-wrap: wrap;
|
|
129
|
+
align-items: center;
|
|
130
|
+
margin-bottom: 0;
|
|
131
|
+
gap: 0.1em 0.2em;
|
|
132
|
+
}
|
|
133
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-group-header {
|
|
134
|
+
padding: 0.2em 0.5em;
|
|
135
|
+
font-size: 0.75em;
|
|
136
|
+
white-space: nowrap;
|
|
137
|
+
}
|
|
138
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-group-toggle {
|
|
139
|
+
display: none;
|
|
140
|
+
}
|
|
141
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-group-items {
|
|
142
|
+
display: flex !important;
|
|
143
|
+
flex-wrap: wrap;
|
|
144
|
+
gap: 0.1em;
|
|
145
|
+
}
|
|
146
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-item {
|
|
147
|
+
padding: 0.2em 0.5em;
|
|
148
|
+
font-size: 0.8em;
|
|
149
|
+
border-left: none;
|
|
150
|
+
border-radius: 3px;
|
|
151
|
+
white-space: nowrap;
|
|
152
|
+
}
|
|
153
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-item.active {
|
|
154
|
+
border-left: none;
|
|
155
|
+
background: #2E7D74;
|
|
156
|
+
color: var(--theme-color-background-panel, #fff);
|
|
157
|
+
}
|
|
158
|
+
#Bookshop-Help-Panel .pict-inline-doc-nav-topic-badge {
|
|
159
|
+
margin: 0 0.3em;
|
|
160
|
+
padding: 0.15em 0.5em;
|
|
161
|
+
font-size: 0.75em;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/* --- F1 hint --- */
|
|
165
|
+
.bookshop-f1-hint {
|
|
166
|
+
position: fixed;
|
|
167
|
+
bottom: 1em;
|
|
168
|
+
right: 1em;
|
|
169
|
+
background: #264653;
|
|
170
|
+
color: #D4A373;
|
|
171
|
+
padding: 0.3em 0.7em;
|
|
172
|
+
border-radius: 4px;
|
|
173
|
+
font-size: 0.75em;
|
|
174
|
+
opacity: 0.7;
|
|
175
|
+
z-index: 10;
|
|
176
|
+
}
|
|
177
|
+
</style>
|
|
178
|
+
<script src="https://cdn.jsdelivr.net/npm/pict@1/dist/pict.min.js" type="text/javascript"></script>
|
|
179
|
+
<script type="text/javascript">Pict.safeOnDocumentReady(() => { Pict.safeLoadPictApplication(BookshopExample, 2)});</script>
|
|
180
|
+
</head>
|
|
181
|
+
<body>
|
|
182
|
+
<!-- Header Bar -->
|
|
183
|
+
<div class="pict-example-header">
|
|
184
|
+
<div class="pict-example-badge">
|
|
185
|
+
<svg viewBox="0 0 16 16"><polygon points="8,1 10,6 16,6 11,9.5 13,15 8,11.5 3,15 5,9.5 0,6 6,6"/></svg>
|
|
186
|
+
Pict Example
|
|
187
|
+
</div>
|
|
188
|
+
<div class="pict-example-app-name">Bookshop</div>
|
|
189
|
+
<div class="pict-example-module">pict-section-inlinedocumentation</div>
|
|
190
|
+
<button class="pict-example-header-help-btn" id="Bookshop-Header-HelpBtn">
|
|
191
|
+
<span class="help-icon">?</span>
|
|
192
|
+
Help
|
|
193
|
+
</button>
|
|
194
|
+
</div>
|
|
195
|
+
|
|
196
|
+
<!-- Layout -->
|
|
197
|
+
<div class="pict-example-layout">
|
|
198
|
+
<div class="pict-example-content" id="Bookshop-Content-Area">
|
|
199
|
+
<div id="Bookshop-Content-Container"></div>
|
|
200
|
+
</div>
|
|
201
|
+
</div>
|
|
202
|
+
|
|
203
|
+
<!-- Help Panel (slide-in from right) -->
|
|
204
|
+
<div id="Bookshop-Help-Panel">
|
|
205
|
+
<div class="bookshop-help-panel-header">
|
|
206
|
+
<span>Help</span>
|
|
207
|
+
<button class="bookshop-help-panel-close" id="Bookshop-Help-CloseBtn">✕</button>
|
|
208
|
+
</div>
|
|
209
|
+
<div id="InlineDoc-Container"></div>
|
|
210
|
+
</div>
|
|
211
|
+
|
|
212
|
+
<!-- F1 hint -->
|
|
213
|
+
<div class="bookshop-f1-hint">Press F1 for help</div>
|
|
214
|
+
|
|
215
|
+
<!-- Load the Application -->
|
|
216
|
+
<script src="./bookshop_example.js" type="text/javascript"></script>
|
|
217
|
+
|
|
218
|
+
<!-- Wire header help button and close button -->
|
|
219
|
+
<script>
|
|
220
|
+
document.getElementById('Bookshop-Header-HelpBtn').addEventListener('click', function ()
|
|
221
|
+
{
|
|
222
|
+
if (window._Pict && window._Pict.PictApplication)
|
|
223
|
+
{
|
|
224
|
+
window._Pict.PictApplication.toggleHelp();
|
|
225
|
+
}
|
|
226
|
+
});
|
|
227
|
+
document.getElementById('Bookshop-Help-CloseBtn').addEventListener('click', function ()
|
|
228
|
+
{
|
|
229
|
+
if (window._Pict && window._Pict.PictApplication)
|
|
230
|
+
{
|
|
231
|
+
window._Pict.PictApplication.toggleHelp();
|
|
232
|
+
}
|
|
233
|
+
});
|
|
234
|
+
</script>
|
|
235
|
+
</body>
|
|
236
|
+
</html>
|
package/docs/index.html
CHANGED
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
<meta charset="utf-8">
|
|
5
5
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
7
|
-
<meta name="description" content="pict-section-inlinedocumentation
|
|
7
|
+
<meta name="description" content="pict-section-inlinedocumentation v1.0.1 Documentation — Pict embeddable inline documentation browser with topic support">
|
|
8
8
|
|
|
9
|
-
<title>pict-section-inlinedocumentation
|
|
9
|
+
<title>pict-section-inlinedocumentation v1.0.1 Documentation</title>
|
|
10
10
|
|
|
11
11
|
<!-- KaTeX stylesheet for LaTeX equation rendering -->
|
|
12
12
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.css">
|
|
@@ -26,12 +26,13 @@
|
|
|
26
26
|
<!-- The root container for the Pict application -->
|
|
27
27
|
<div id="Docuserve-Application-Container"></div>
|
|
28
28
|
|
|
29
|
-
<!-- Mermaid diagram rendering
|
|
29
|
+
<!-- Mermaid diagram rendering. pict-section-content (v0.1.8+) drives
|
|
30
|
+
initialization with theme: 'base' + themeVariables sourced
|
|
31
|
+
from --theme-color-* so diagrams follow the active theme. -->
|
|
30
32
|
<script src="https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.min.js"></script>
|
|
31
|
-
<script>mermaid.initialize({ startOnLoad: false, theme: 'default' });</script>
|
|
32
33
|
<!-- KaTeX for LaTeX equation rendering -->
|
|
33
34
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.21/dist/katex.min.js"></script>
|
|
34
35
|
<!-- Load the Docuserve PICT Application Bundle from jsDelivr CDN -->
|
|
35
|
-
<script src="https://cdn.jsdelivr.net/npm/pict-docuserve@
|
|
36
|
+
<script src="https://cdn.jsdelivr.net/npm/pict-docuserve@1/dist/pict-docuserve.min.js" type="text/javascript"></script>
|
|
36
37
|
</body>
|
|
37
38
|
</html>
|
package/docs/overview.md
CHANGED
|
@@ -36,7 +36,7 @@ Each level is a strict superset of the one before it. You can start at level 1 a
|
|
|
36
36
|
|
|
37
37
|
## Relationship to Other Modules
|
|
38
38
|
|
|
39
|
-
- Uses [`pict-view`](/pict
|
|
40
|
-
- Optionally consumes catalogs produced by [`pict-docuserve`](/pict
|
|
41
|
-
- Uses [`manyfest`](/
|
|
42
|
-
- Uses [`pict-template-markdown`](/pict
|
|
39
|
+
- Uses [`pict-view`](https://fable-retold.github.io/pict-view/) as its base class.
|
|
40
|
+
- Optionally consumes catalogs produced by [`pict-docuserve`](https://fable-retold.github.io/pict-docuserve/).
|
|
41
|
+
- Uses [`manyfest`](https://fable-retold.github.io/manyfest/) descriptors to enumerate controls at level 4.
|
|
42
|
+
- Uses [`pict-template-markdown`](https://fable-retold.github.io/pict-template-markdown/) or an equivalent renderer to turn Markdown into HTML at runtime.
|
package/docs/reference.md
CHANGED
|
@@ -4,33 +4,8 @@ A tour of the source tree for contributors.
|
|
|
4
4
|
|
|
5
5
|
## Project Layout
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
├── package.json
|
|
10
|
-
├── source/
|
|
11
|
-
│ ├── Pict-Section-InlineDocumentation.js // Main section class
|
|
12
|
-
│ ├── services/
|
|
13
|
-
│ │ ├── TopicStore.js
|
|
14
|
-
│ │ ├── TopicRenderer.js
|
|
15
|
-
│ │ ├── TooltipBinder.js
|
|
16
|
-
│ │ └── AutoTooltipGenerator.js
|
|
17
|
-
│ ├── views/
|
|
18
|
-
│ │ ├── SidebarView.js
|
|
19
|
-
│ │ ├── ReadingPaneView.js
|
|
20
|
-
│ │ └── TooltipView.js
|
|
21
|
-
│ ├── templates/
|
|
22
|
-
│ │ ├── sidebar.tpl
|
|
23
|
-
│ │ ├── reading-pane.tpl
|
|
24
|
-
│ │ └── tooltip.tpl
|
|
25
|
-
│ └── util/
|
|
26
|
-
│ ├── routeMatch.js
|
|
27
|
-
│ └── topicKey.js
|
|
28
|
-
└── test/
|
|
29
|
-
├── TopicStore.tests.js
|
|
30
|
-
├── TooltipBinder.tests.js
|
|
31
|
-
├── AutoTooltipGenerator.tests.js
|
|
32
|
-
└── Section.tests.js
|
|
33
|
-
```
|
|
7
|
+
<!-- bespoke diagram: edit diagrams/project-layout.mmd or .hints.json, then: npx pict-renderer-graph build modules/pict/pict-section-inlinedocumentation/docs -->
|
|
8
|
+

|
|
34
9
|
|
|
35
10
|
## Class Summary
|
|
36
11
|
|
package/docs/retold-catalog.json
CHANGED
|
@@ -1,181 +1,80 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Generated": "2026-
|
|
3
|
-
"
|
|
2
|
+
"Generated": "2026-06-01T03:48:26.729Z",
|
|
3
|
+
"Mode": "module",
|
|
4
|
+
"GitHubOrg": "fable-retold",
|
|
4
5
|
"DefaultBranch": "master",
|
|
5
|
-
"
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
{
|
|
80
|
-
"Title": "Guide",
|
|
81
|
-
"Children": [
|
|
82
|
-
{
|
|
83
|
-
"Title": "Getting Started",
|
|
84
|
-
"Path": "getting-started.md"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"Title": "Advanced Topics",
|
|
88
|
-
"Path": "advanced-topics.md"
|
|
89
|
-
}
|
|
90
|
-
]
|
|
91
|
-
}
|
|
92
|
-
],
|
|
93
|
-
"DocFiles": [
|
|
94
|
-
"README.md",
|
|
95
|
-
"_sidebar.md",
|
|
96
|
-
"_topics.json",
|
|
97
|
-
"advanced-topics.md",
|
|
98
|
-
"getting-started.md"
|
|
99
|
-
]
|
|
100
|
-
},
|
|
101
|
-
{
|
|
102
|
-
"Name": "bookshop",
|
|
103
|
-
"Repo": "bookshop",
|
|
104
|
-
"Group": "example_applications",
|
|
105
|
-
"Branch": "master",
|
|
106
|
-
"HasDocs": true,
|
|
107
|
-
"HasCover": false,
|
|
108
|
-
"Sidebar": [
|
|
109
|
-
{
|
|
110
|
-
"Title": "Welcome",
|
|
111
|
-
"Path": "welcome.md"
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
"Title": "Using the Bookshop",
|
|
115
|
-
"Children": [
|
|
116
|
-
{
|
|
117
|
-
"Title": "Book Catalog",
|
|
118
|
-
"Path": "book-list.md"
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
"Title": "Book Details",
|
|
122
|
-
"Path": "book-detail.md"
|
|
123
|
-
},
|
|
124
|
-
{
|
|
125
|
-
"Title": "Store Page",
|
|
126
|
-
"Path": "store.md"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"Title": "Search & Filter",
|
|
130
|
-
"Path": "search-filter.md"
|
|
131
|
-
}
|
|
132
|
-
]
|
|
133
|
-
}
|
|
134
|
-
],
|
|
135
|
-
"DocFiles": [
|
|
136
|
-
"_sidebar.md",
|
|
137
|
-
"book-detail.md",
|
|
138
|
-
"book-list.md",
|
|
139
|
-
"pict_documentation_topics.json",
|
|
140
|
-
"search-filter.md",
|
|
141
|
-
"store.md",
|
|
142
|
-
"welcome.md",
|
|
143
|
-
"_sidebar.md",
|
|
144
|
-
"book-detail.md",
|
|
145
|
-
"book-list.md",
|
|
146
|
-
"search-filter.md",
|
|
147
|
-
"store.md",
|
|
148
|
-
"welcome.md"
|
|
149
|
-
]
|
|
150
|
-
}
|
|
151
|
-
]
|
|
152
|
-
},
|
|
153
|
-
{
|
|
154
|
-
"Name": "Source",
|
|
155
|
-
"Key": "source",
|
|
156
|
-
"Description": "",
|
|
157
|
-
"Modules": [
|
|
158
|
-
{
|
|
159
|
-
"Name": "providers",
|
|
160
|
-
"Repo": "providers",
|
|
161
|
-
"Group": "source",
|
|
162
|
-
"Branch": "master",
|
|
163
|
-
"HasDocs": false,
|
|
164
|
-
"HasCover": false,
|
|
165
|
-
"Sidebar": [],
|
|
166
|
-
"DocFiles": []
|
|
167
|
-
},
|
|
168
|
-
{
|
|
169
|
-
"Name": "views",
|
|
170
|
-
"Repo": "views",
|
|
171
|
-
"Group": "source",
|
|
172
|
-
"Branch": "master",
|
|
173
|
-
"HasDocs": false,
|
|
174
|
-
"HasCover": false,
|
|
175
|
-
"Sidebar": [],
|
|
176
|
-
"DocFiles": []
|
|
177
|
-
}
|
|
178
|
-
]
|
|
179
|
-
}
|
|
180
|
-
]
|
|
6
|
+
"Module": {
|
|
7
|
+
"Name": "pict-section-inlinedocumentation",
|
|
8
|
+
"Repo": "pict-section-inlinedocumentation",
|
|
9
|
+
"Group": "",
|
|
10
|
+
"Branch": "master",
|
|
11
|
+
"HasDocs": true,
|
|
12
|
+
"HasCover": true,
|
|
13
|
+
"Sidebar": [
|
|
14
|
+
{
|
|
15
|
+
"Title": "Welcome",
|
|
16
|
+
"Path": "welcome.md"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"Title": "Using the Bookshop",
|
|
20
|
+
"Children": [
|
|
21
|
+
{
|
|
22
|
+
"Title": "Book Catalog",
|
|
23
|
+
"Path": "book-list.md"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"Title": "Book Details",
|
|
27
|
+
"Path": "book-detail.md"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"Title": "Store Page",
|
|
31
|
+
"Path": "store.md"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"Title": "Search & Filter",
|
|
35
|
+
"Path": "search-filter.md"
|
|
36
|
+
}
|
|
37
|
+
]
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"DocFiles": [
|
|
41
|
+
".nojekyll",
|
|
42
|
+
"README.md",
|
|
43
|
+
"_brand.json",
|
|
44
|
+
"_cover.md",
|
|
45
|
+
"_sidebar.md",
|
|
46
|
+
"_topbar.md",
|
|
47
|
+
"_version.json",
|
|
48
|
+
"api-reference.md",
|
|
49
|
+
"architecture.md",
|
|
50
|
+
"embedding-level1-sidebar.md",
|
|
51
|
+
"embedding-level2-routes.md",
|
|
52
|
+
"embedding-level3-tooltips.md",
|
|
53
|
+
"embedding-level4-autogen.md",
|
|
54
|
+
"examples/README.md",
|
|
55
|
+
"examples/bookshop/README.md",
|
|
56
|
+
"examples/bookshop/bookshop_example.js",
|
|
57
|
+
"examples/bookshop/index.html",
|
|
58
|
+
"index.html",
|
|
59
|
+
"overview.md",
|
|
60
|
+
"quickstart.md",
|
|
61
|
+
"reference.md",
|
|
62
|
+
"retold-catalog.json",
|
|
63
|
+
"retold-keyword-index.json",
|
|
64
|
+
"README.md",
|
|
65
|
+
"_brand.json",
|
|
66
|
+
"_sidebar.md",
|
|
67
|
+
"_topics.json",
|
|
68
|
+
"advanced-topics.md",
|
|
69
|
+
"getting-started.md",
|
|
70
|
+
"_brand.json",
|
|
71
|
+
"_sidebar.md",
|
|
72
|
+
"book-detail.md",
|
|
73
|
+
"book-list.md",
|
|
74
|
+
"search-filter.md",
|
|
75
|
+
"store.md",
|
|
76
|
+
"welcome.md"
|
|
77
|
+
]
|
|
78
|
+
},
|
|
79
|
+
"Groups": []
|
|
181
80
|
}
|