forked from dphfox/Fusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
158 lines (152 loc) · 5.36 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
site_name: Fusion
site_url: https://elttob.uk/Fusion/
repo_name: Elttob/Fusion
repo_url: https://github.com/Elttob/Fusion
extra:
version:
provider: mike
theme:
name: material
custom_dir: docs/assets/overrides
logo: assets/logo
favicon: assets/logo-dark.svg
palette:
- media: "(prefers-color-scheme: dark)"
scheme: fusiondoc-dark
toggle:
icon: octicons/sun-24
title: Switch to light theme
- media: "(prefers-color-scheme: light)"
scheme: fusiondoc-light
toggle:
icon: octicons/moon-24
title: Switch to dark theme
font:
text: Inter
code: JetBrains Mono
features:
- navigation.tabs
- navigation.top
- navigation.sections
- navigation.instant
- navigation.indexes
- search.suggest
- search.highlight
icon:
repo: octicons/mark-github-16
extra_css:
- assets/theme/fusiondoc.css
- assets/theme/colours.css
- assets/theme/code.css
- assets/theme/paragraph.css
- assets/theme/page.css
- assets/theme/admonition.css
- assets/theme/404.css
- assets/theme/api-reference.css
extra_javascript:
- assets/scripts/smooth-scroll.js
nav:
- Home: index.md
- Tutorials:
- Get Started: tutorials/index.md
- State Objects:
- Values: tutorials/fundamentals/values.md
- Observers: tutorials/fundamentals/observers.md
- Computeds: tutorials/fundamentals/computeds.md
- Destructors: tutorials/fundamentals/destructors.md
- Instances:
- Hydration: tutorials/instances/hydration.md
- New Instances: tutorials/instances/new-instances.md
- Parenting: tutorials/instances/parenting.md
- Events: tutorials/instances/events.md
- Change Events: tutorials/instances/change-events.md
- Outputs: tutorials/instances/outputs.md
- Cleanup: tutorials/instances/cleanup.md
- References: tutorials/instances/references.md
- Lists & Tables:
- The For Objects: tutorials/lists-and-tables/the-for-objects.md
- ForValues: tutorials/lists-and-tables/forvalues.md
- ForKeys: tutorials/lists-and-tables/forkeys.md
- ForPairs: tutorials/lists-and-tables/forpairs.md
- Components:
- Reusing UI: tutorials/components/reusing-ui.md
- Children: tutorials/components/children.md
- Callbacks: tutorials/components/callbacks.md
- State: tutorials/components/state.md
- Animation:
- Tweens: tutorials/animation/tweens.md
- Springs: tutorials/animation/springs.md
- Examples:
- Home: examples/index.md
- Cookbook:
- examples/cookbook/index.md
- Player List: examples/cookbook/player-list.md
- Animated Computed: examples/cookbook/animated-computed.md
- Fetch Data From Server: examples/cookbook/fetch-data-from-server.md
- Light & Dark Theme: examples/cookbook/light-and-dark-theme.md
- Button Component: examples/cookbook/button-component.md
- Loading Spinner: examples/cookbook/loading-spinner.md
- Drag & Drop: examples/cookbook/drag-and-drop.md
- API Reference:
- Home: api-reference/index.md
- Errors:
- api-reference/errors/index.md
- State:
- api-reference/state/index.md
- CanBeState: api-reference/state/canbestate.md
- Computed: api-reference/state/computed.md
- cleanup: api-reference/state/cleanup.md
- Dependency: api-reference/state/dependency.md
- Dependent: api-reference/state/dependent.md
- doNothing: api-reference/state/donothing.md
- ForKeys: api-reference/state/forkeys.md
- ForPairs: api-reference/state/forpairs.md
- ForValues: api-reference/state/forvalues.md
- Observer: api-reference/state/observer.md
- peek: api-reference/state/peek.md
- StateObject: api-reference/state/stateobject.md
- Use: api-reference/state/use.md
- Value: api-reference/state/value.md
- Instances:
- api-reference/instances/index.md
- Attribute: api-reference/instances/attribute.md
- AttributeChange: api-reference/instances/attributechange.md
- AttributeOut: api-reference/instances/attributeout.md
- Child: api-reference/instances/child.md
- Children: api-reference/instances/children.md
- Cleanup: api-reference/instances/cleanup.md
- Component: api-reference/instances/component.md
- Hydrate: api-reference/instances/hydrate.md
- New: api-reference/instances/new.md
- OnChange: api-reference/instances/onchange.md
- OnEvent: api-reference/instances/onevent.md
- Out: api-reference/instances/out.md
- Ref: api-reference/instances/ref.md
- SpecialKey: api-reference/instances/specialkey.md
- Animation:
- api-reference/animation/index.md
- Animatable: api-reference/animation/animatable.md
- Tween: api-reference/animation/tween.md
- Spring: api-reference/animation/spring.md
- Extras:
- Home: extras/index.md
- Backgrounds: extras/backgrounds.md
- Brand Guidelines: extras/brand-guidelines.md
markdown_extensions:
- admonition
- attr_list
- meta
- md_in_html
- pymdownx.superfences
- pymdownx.betterem
- pymdownx.details
- pymdownx.tabbed:
alternate_style: true
- pymdownx.inlinehilite
- toc:
permalink: true
- pymdownx.highlight:
guess_lang: false
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg