|
| 1 | +import ins01 from '../instances/instance/ins01.sciux?raw' |
| 2 | +import ins02 from '../instances/instance/ins02.sciux?raw' |
1 | 3 | import angle from '../instances/math/angle.sciux?raw' |
| 4 | +import axis from '../instances/math/axis.sciux?raw' |
| 5 | +import circle from '../instances/math/circle.sciux?raw' |
| 6 | +import dot from '../instances/math/dot.sciux?raw' |
| 7 | +import figure from '../instances/math/figure.sciux?raw' |
| 8 | + |
| 9 | +import parametric from '../instances/math/parametric.sciux?raw' |
| 10 | +import plane from '../instances/math/plane.sciux?raw' |
| 11 | +import mermaid from '../instances/mermaid.sciux?raw' |
| 12 | + |
| 13 | +import model from '../instances/model.sciux?raw' |
| 14 | +import widget from '../instances/widget.sciux?raw' |
2 | 15 |
|
3 | 16 | export interface InstanceItem { |
4 | 17 | name: string |
@@ -28,6 +41,90 @@ export default { |
28 | 41 | description: 'Angle components', |
29 | 42 | content: angle, |
30 | 43 | }, |
| 44 | + { |
| 45 | + name: 'Axis', |
| 46 | + id: 'axis', |
| 47 | + description: 'Axis components', |
| 48 | + content: axis, |
| 49 | + }, |
| 50 | + { |
| 51 | + name: 'Circle', |
| 52 | + id: 'circle', |
| 53 | + description: 'Circle components', |
| 54 | + content: circle, |
| 55 | + }, |
| 56 | + { |
| 57 | + name: 'Dot', |
| 58 | + id: 'dot', |
| 59 | + description: 'Dot components', |
| 60 | + content: dot, |
| 61 | + }, |
| 62 | + { |
| 63 | + name: 'Figure', |
| 64 | + id: 'figure', |
| 65 | + description: 'Figure components', |
| 66 | + content: figure, |
| 67 | + }, |
| 68 | + { |
| 69 | + name: 'Parametric', |
| 70 | + id: 'parametric', |
| 71 | + description: 'Parametric components', |
| 72 | + content: parametric, |
| 73 | + }, |
| 74 | + { |
| 75 | + name: 'Plane', |
| 76 | + id: 'plane', |
| 77 | + description: 'Plane components', |
| 78 | + content: plane, |
| 79 | + }, |
| 80 | + ], |
| 81 | + }, |
| 82 | + { |
| 83 | + name: '@sciux/widget', |
| 84 | + description: 'Widget components', |
| 85 | + children: [ |
| 86 | + { |
| 87 | + name: 'Widget', |
| 88 | + id: 'widget', |
| 89 | + description: 'Widget components', |
| 90 | + content: widget, |
| 91 | + }, |
| 92 | + { |
| 93 | + name: 'Mermaid', |
| 94 | + id: 'mermaid', |
| 95 | + description: 'Mermaid components', |
| 96 | + content: mermaid, |
| 97 | + }, |
| 98 | + ], |
| 99 | + }, |
| 100 | + { |
| 101 | + name: '@sciux/model', |
| 102 | + description: 'Model components', |
| 103 | + children: [ |
| 104 | + { |
| 105 | + name: 'Model', |
| 106 | + id: 'model', |
| 107 | + description: 'Model components', |
| 108 | + content: model, |
| 109 | + }, |
| 110 | + ], |
| 111 | + }, |
| 112 | + { |
| 113 | + name: 'Instances', |
| 114 | + description: 'Instances', |
| 115 | + children: [ |
| 116 | + { |
| 117 | + name: 'Ins01', |
| 118 | + id: 'ins01', |
| 119 | + description: 'Ins01 components', |
| 120 | + content: ins01, |
| 121 | + }, |
| 122 | + { |
| 123 | + name: 'Ins02', |
| 124 | + id: 'ins02', |
| 125 | + description: 'Ins02 components', |
| 126 | + content: ins02, |
| 127 | + }, |
31 | 128 | ], |
32 | 129 | }, |
33 | 130 | ], |
|
0 commit comments