-
Notifications
You must be signed in to change notification settings - Fork 269
/
mkdocs.yml
207 lines (201 loc) · 6.64 KB
/
mkdocs.yml
1
2
3
4
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
site_name: Mesop
repo_url: https://github.com/google/mesop
repo_name: google/mesop
strict: true
nav:
- index.md
- Getting Started:
- Installing: getting-started/installing.md
- Quickstart: getting-started/quickstart.md
- Core Concepts: getting-started/core-concepts.md
- Codelabs:
- DuoChat Codelab:
- 1 - Overview & setup: codelab/index.md
- 2 - Building the basic UI: codelab/2.md
- 3 - Managing state & dialogs: codelab/3.md
- 4 - Integrating AI APIs: codelab/4.md
- 5 - Wrapping it up: codelab/5.md
- Guides:
- Fundamentals:
- State Management: guides/state-management.md
- Event Handlers: guides/event-handlers.md
- Interactivity: guides/interactivity.md
- Layouts: guides/layouts.md
- Enhancements:
- Multi-Pages: guides/multi-pages.md
- Auth: guides/auth.md
- Theming: guides/theming.md
- Static assets: guides/static-assets.md
- Server integration: guides/server-integration.md
- Development:
- Debugging: guides/debugging.md
- Testing: guides/testing.md
- Labs: guides/labs.md
- Production:
- Deployment: guides/deployment.md
- Performance: guides/performance.md
- Web Security: guides/web-security.md
- Components:
- Types:
- Overview: components/index.md
- Web Components:
- Overview: web-components/index.md
- Quickstart: web-components/quickstart.md
- API: web-components/api.md
- Troubleshooting: web-components/troubleshooting.md
- High-level:
- Chat: components/chat.md
- Text to Text: components/text-to-text.md
- Text to Image: components/text-to-image.md
- Layout:
- Box: components/box.md
- Sidenav: components/sidenav.md
- Text:
- Text: components/text.md
- Markdown: components/markdown.md
- Code: components/code.md
- Media:
- Image: components/image.md
- Audio: components/audio.md
- Video: components/video.md
- Form controls:
- Autocomplete: components/autocomplete.md
- Button: components/button.md
- Button toggle: components/button_toggle.md
- Checkbox: components/checkbox.md
- Date picker: components/date_picker.md
- Date range picker: components/date_range_picker.md
- Input: components/input.md
- Textarea: components/textarea.md
- Radio: components/radio.md
- Select: components/select.md
- Slide toggle: components/slide-toggle.md
- Slider: components/slider.md
- Uploader: components/uploader.md
- Visual:
- Badge: components/badge.md
- Card: components/card.md
- Divider: components/divider.md
- Expansion panel: components/expansion-panel.md
- Icon: components/icon.md
- Progress bar: components/progress-bar.md
- Progress spinner: components/progress-spinner.md
- Table: components/table.md
- Tooltip: components/tooltip.md
- Web:
- Embed: components/embed.md
- HTML: components/html.md
- Link: components/link.md
- Others:
- Plot: components/plot.md
- API:
- Page: api/page.md
- URLs & Navigation:
- Navigate: api/commands/navigate.md
- Query params: api/query-params.md
- UI Customization:
- Style: api/style.md
- Viewport Size: api/viewport-size.md
- Commands:
- Scroll into view: api/commands/scroll-into-view.md
- Focus component: api/commands/focus-component.md
- Set page title: api/commands/set-page-title.md
- Config: api/config.md
- FAQ:
- FAQ: faq.md
- Comparison: comparison.md
- Demo 🌐: demo.md
- Showcase 🌐: showcase.md
- Blog:
- blog/index.md
- Contributing:
- How-to Contribute: internal/contributing.md
- Development:
- Main: internal/development.md
- Github Codespaces: internal/codespaces.md
- VS Code Remote Container: internal/vs-code-remote-container.md
- Architecture: internal/architecture.md
- Goals: goals.md
- New component: internal/new-component.md
- Hot reload: internal/hot-reload.md
- Modes: internal/modes.md
- Testing: internal/testing.md
- Type checking: internal/type-checking.md
- CI: internal/ci.md
- Build / Toolchain: internal/toolchain.md
- Publishing: internal/publishing.md
theme:
name: material
custom_dir: docs/theme
logo: assets/logo.png
favicon: assets/favicon.ico
font:
text: Inter
palette:
# Palette toggle for light mode
- media: '(prefers-color-scheme: light)'
scheme: mesop-light
toggle:
icon: material/brightness-7
name: Switch to light mode
# Palette toggle for dark mode
- media: '(prefers-color-scheme: dark)'
scheme: mesop-dark
toggle:
icon: material/brightness-4
name: Switch to system preference
features:
- content.code.copy
- navigation.path
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.prune
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- search.highlight
extra_javascript:
- javascript/docbot.js
extra_css:
- stylesheets/extra.css
markdown_extensions:
- attr_list
- sane_lists
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences
- pymdownx.snippets
- admonition
- pymdownx.details
plugins:
- blog
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: spacy
heading_level: 3
inherited_members: true
merge_init_into_class: true
separate_signature: false
show_signature: false
show_root_heading: true
show_root_full_path: false
show_source: false
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
summary: true