-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
62 lines (54 loc) · 3.87 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Examples Index</title>
<style>
* {
margin: 0;
}
html {
font-family: sans-serif;
}
body {
padding: 1rem;
}
</style>
</head>
<body>
<div style="display: flex; flex-direction: column; gap: 1rem;">
<h3>Choose an example</h3>
<a style="width: fit-content;" href="./packages\obc\src\core\World2D\example.html">obc/World2D</a>
<a style="width: fit-content;" href="./packages\obc\src\core\World\example.html">obc/World</a>
<a style="width: fit-content;" href="./packages\obc\src\core\ViewCube\example.html">obc/ViewCube</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\WorldsConfiguration\example.html">obc/WorldsConfiguration</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\TopicsList\example.html">obc/TopicsList</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\RelationsTree\example.html">obc/RelationsTree</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\ModelsList\example.html">obc/ModelsList</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\EntityAttributes\example.html">obc/EntityAttributes</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\ElementProperties\example.html">obc/ElementProperties</a>
<a style="width: fit-content;" href="./packages\obc\src\components\tables\ClassificationsTree\example.html">obc/ClassificationsTree</a>
<a style="width: fit-content;" href="./packages\obc\src\components\forms\TopicForm\example.html">obc/TopicForm</a>
<a style="width: fit-content;" href="./packages\core\src\core\Component\example.html">core/Component</a>
<a style="width: fit-content;" href="./packages\core\src\components\Toolbar\example.html">core/Toolbar</a>
<a style="width: fit-content;" href="./packages\core\src\components\TextInput\example.html">core/TextInput</a>
<a style="width: fit-content;" href="./packages\core\src\components\Tabs\example.html">core/Tabs</a>
<a style="width: fit-content;" href="./packages\core\src\components\Table\example.html">core/Table</a>
<a style="width: fit-content;" href="./packages\core\src\components\Table\examples\Searching\example.html">core/Searching</a>
<a style="width: fit-content;" href="./packages\core\src\components\Table\examples\LoadFunction\example.html">core/LoadFunction</a>
<a style="width: fit-content;" href="./packages\core\src\components\Table\examples\ExportingData\example.html">core/ExportingData</a>
<a style="width: fit-content;" href="./packages\core\src\components\Table\examples\DataTransform\example.html">core/DataTransform</a>
<a style="width: fit-content;" href="./packages\core\src\components\Selector\example.html">core/Selector</a>
<a style="width: fit-content;" href="./packages\core\src\components\Panel\example.html">core/Panel</a>
<a style="width: fit-content;" href="./packages\core\src\components\NumberInput\example.html">core/NumberInput</a>
<a style="width: fit-content;" href="./packages\core\src\components\Label\example.html">core/Label</a>
<a style="width: fit-content;" href="./packages\core\src\components\Grid\example.html">core/Grid</a>
<a style="width: fit-content;" href="./packages\core\src\components\Dropdown\example.html">core/Dropdown</a>
<a style="width: fit-content;" href="./packages\core\src\components\ContextMenu\example.html">core/ContextMenu</a>
<a style="width: fit-content;" href="./packages\core\src\components\ColorInput\example.html">core/ColorInput</a>
<a style="width: fit-content;" href="./packages\core\src\components\Checkbox\example.html">core/Checkbox</a>
<a style="width: fit-content;" href="./packages\core\src\components\Button\example.html">core/Button</a>
</div>
</body>
</html>