-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocs.constants.ts
More file actions
303 lines (240 loc) · 6.59 KB
/
docs.constants.ts
File metadata and controls
303 lines (240 loc) · 6.59 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
export interface ComponentRoute {
path: string;
title: string;
description: string;
}
export const COMPONENT_ROUTES: ComponentRoute[] = [
{
path: "/components/bottom-sheet",
title: "Bottom Sheet",
description:
"A dialog containing supplementary content anchored to the bottom of the screen.",
},
{
path: "/components/busy-screen",
title: "Busy Screen",
description: "A screen that indicates busy loading.",
},
{
path: "/components/card",
title: "Card",
description:
"Cards are surfaces that display content and optionally actions on a single topic.",
},
{
path: "/components/checkbox",
title: "Checkbox",
description:
"Checkboxes allow the selection of multiple options from a set of options.",
},
{
path: "/components/collapsible",
title: "Collapsible",
description: "A Collapsible toggle summary.",
},
{
path: "/components/content",
title: "Content",
description: "The detail of the layout where your content finds place.",
},
{
path: "/components/copy",
title: "Copy",
description: "Copy component that copies selection.",
},
{
path: "/components/dropdown",
title: "Dropdown",
description: "Dropdown displays a list of selectable options for a user.",
},
{
path: "/components/external-link",
title: "External Link",
description: "A wrapper to render quickly external link.",
},
{
path: "/components/header-title",
title: "Header Title",
description: "An opinionated title for the dapp.",
},
{
path: "/components/html",
title: "Html",
description: "A component for safe (sanitized) html content rendering.",
},
{
path: "/components/infinite-scroll",
title: "Infinite Scroll",
description:
"Calls an action when the user scrolls a specified distance in a list.",
},
{
path: "/components/input",
title: "Input",
description: "A styled input field where the user can enter data.",
},
{
path: "/components/input-range",
title: "Input Range",
description:
"An input of type range to let the user specify a numeric value which must be no less than a given value, and no more than another given value.",
},
{
path: "/components/island",
title: "Island",
description: "Scope your content within an island.",
},
{
path: "/components/item-action",
title: "Item Action",
description: "Opinionated compoment to render items with icon and buttons.",
},
{
path: "/components/key-value",
title: "Key Value",
description: "Render a label and its value.",
},
{
path: "/components/key-value-info",
title: "Key Value Info",
description: "Render a label, its value and an information.",
},
{
path: "/components/layout",
title: "Layout",
description: "Header, menu and content. The structure of your dapp.",
},
{
path: "/components/markdown",
title: "Markdown",
description:
"A component for safe (sanitized) Markdown to HTML content rendering.",
},
{
path: "/components/modal",
title: "Modal",
description:
"Modal component is used to display content that temporarily blocks interactions with the main view of an application.",
},
{
path: "/components/nav",
title: "Nav",
description: "A navigation column.",
},
{
path: "/components/page-banner",
title: "Page Banner",
description: "A main banner for landing pages.",
},
{
path: "/components/popover",
title: "Popover",
description:
"A popover is a floating container that is rendered over the content next to an anchor — commonly a button — which initiates its display.",
},
{
path: "/components/progress-bar",
title: "Progress Bar",
description: "An indicator showing the completion progress of a task.",
},
{
path: "/components/progress-steps",
title: "Progress Steps",
description:
"Display the progression of a long-lasting task with various steps.",
},
{
path: "/components/qr-code-generator",
title: "QR Code Generator",
description: "Generates a QR Code.",
},
{
path: "/components/qr-code-reader",
title: "QR Code Reader",
description: "Read a QR Code with the camera.",
},
{
path: "/components/section",
title: "Section",
description:
"A component to render a section with a title, value and description.",
},
{
path: "/components/segment",
title: "Segment",
description: "A segment controls.",
},
{
path: "/components/skeleton-text",
title: "Skeleton Text",
description: "A component for rendering placeholder content.",
},
{
path: "/components/spinner",
title: "Spinner",
description:
"A spinner component is used to indicate users that their action is being processed.",
},
{
path: "/components/split-content",
title: "Split Content",
description:
"The detail of the layout where the content finds place in two columns.",
},
{
path: "/components/split-block",
title: "Split Block",
description:
"Displays content in a column on mobile devices and in a row on desktops.",
},
{
path: "/components/system-theme-listener",
title: "System Theme Listener",
description:
"A component that listens to changes in the users system/OS theme..",
},
{
path: "/components/tag",
title: "Tag",
description:
"Tags are used to inform users of the status of an object or of an action that’s been taken.",
},
{
path: "/components/toasts",
title: "Toasts",
description:
"Toasts are non-disruptive messages that appear in the interface to provide quick, at-a-glance feedback on the outcome of an action.",
},
{
path: "/components/theme-toggle",
title: "Theme Toggle",
description: "An opinionated theme toggle.",
},
{
path: "/components/theme-toggle-button",
title: "Theme Toggle Button",
description: "An opinionated theme toggle button.",
},
{
path: "/components/tooltip",
title: "Tooltip",
description: "Tooltips provide extra information on hover or tap.",
},
{
path: "/components/toggle",
title: "Toggle",
description:
"Toggles are switches that change the state of a single option.",
},
{
path: "/components/value",
title: "Value",
description: "Shorthand to render a value.",
},
{
path: "/components/wizard-modal",
title: "Wizard Modal",
description:
"A particular type of Modal component used to present several steps in form of a wizard.",
},
];