-
Notifications
You must be signed in to change notification settings - Fork 2
/
sidebarsOpenVideoUI.ts
150 lines (148 loc) · 4.52 KB
/
sidebarsOpenVideoUI.ts
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
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
web: [
'web/index',
{ type: 'doc', id: 'external/web-ui/docs/getting-started' },
{
type: 'category',
label: 'How-to guides',
description: 'Learn how to integrate our rich set of features into your own UI.',
customProps: {
icon: '📖',
},
link: { type: 'generated-index', slug: 'web/guides' },
items: [{ type: 'autogenerated', dirName: 'external/web-ui/docs/guides' }],
},
{
type: 'category',
label: 'Examples',
description: 'Find inspiration for your UI from our live demos!',
customProps: {
icon: '🛝',
},
link: { type: 'generated-index', slug: 'web/examples' },
items: [{ type: 'autogenerated', dirName: 'external/web-ui/docs/examples' }],
},
{ type: 'doc', id: 'external/web-ui/CHANGELOG' },
{
type: 'link',
label: 'API reference',
description: 'Discover all components provided by Open Video UI for Web.',
customProps: {
icon: '*️⃣',
},
href: 'https://theoplayer.github.io/web-ui/api/',
},
{
type: 'link',
label: 'GitHub',
description: 'Browse the source code or report issues on GitHub.',
customProps: {
icon: 'github',
},
href: 'https://github.com/THEOplayer/web-ui/',
},
],
android: [
'android/index',
{ type: 'doc', id: 'android/getting-started' },
{
type: 'category',
label: 'How-to guides',
description: 'Learn how to integrate our rich set of features into your own UI.',
customProps: {
icon: '📖',
},
link: { type: 'generated-index', slug: 'android/guides' },
items: [{ type: 'autogenerated', dirName: 'external/android-ui/docs/guides' }],
},
{ type: 'doc', id: 'external/android-ui/CHANGELOG' },
{
type: 'link',
label: 'API reference',
description: 'Discover all components provided by Open Video UI for Android.',
customProps: {
icon: '*️⃣',
},
href: 'https://theoplayer.github.io/android-ui/api/',
},
{
type: 'link',
label: 'GitHub',
description: 'Browse the source code or report issues on GitHub.',
customProps: {
icon: 'github',
},
href: 'https://github.com/THEOplayer/android-ui/',
},
],
react: [
'react/index',
{ type: 'doc', id: 'external/web-ui/docs/react/getting-started' },
{
type: 'category',
label: 'How-to guides',
description: 'Learn how to integrate our rich set of features into your own UI.',
customProps: {
icon: '📖',
},
link: { type: 'generated-index', slug: 'react/guides' },
items: [
// { type: 'autogenerated', dirName: 'external/web-ui/docs/guides' }
],
},
{
type: 'category',
label: 'Examples',
description: 'Find inspiration for your UI from our live demos!',
customProps: {
icon: '🛝',
},
link: { type: 'generated-index', slug: 'react/examples' },
items: [{ type: 'autogenerated', dirName: 'external/web-ui/docs/react/examples' }],
},
{ type: 'doc', id: 'external/web-ui/react/CHANGELOG' },
{
type: 'link',
label: 'API reference',
description: 'Discover all components and hooks provided by Open Video UI for React.',
customProps: {
icon: '*️⃣',
},
href: 'https://theoplayer.github.io/web-ui/react-api/',
},
{
type: 'link',
label: 'GitHub',
description: 'Browse the source code or report issues on GitHub.',
customProps: {
icon: 'github',
},
href: 'https://github.com/THEOplayer/web-ui/tree/main/react/',
},
],
'react-native': [
'react-native/index',
{ type: 'autogenerated', dirName: 'external/react-native-theoplayer-ui/doc' },
{ type: 'doc', id: 'external/react-native-theoplayer-ui/CHANGELOG' },
{
type: 'link',
label: 'API reference',
description: 'Discover all components and functions provided by the React Native UI.',
customProps: {
icon: '*️⃣',
},
href: 'https://theoplayer.github.io/react-native-theoplayer-ui/api/',
},
{
type: 'link',
label: 'GitHub',
description: 'Browse the source code or report issues on GitHub.',
customProps: {
icon: 'github',
},
href: 'https://github.com/THEOplayer/react-native-theoplayer-ui/',
},
],
};
export default sidebars;