ketcher-react 2.2.0 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (200) hide show
  1. package/LICENSE +1 -1
  2. package/dist/Editor.d.ts +3 -0
  3. package/dist/contexts/appContext.d.ts +6 -0
  4. package/dist/contexts/index.d.ts +3 -2
  5. package/dist/hooks/index.d.ts +1 -0
  6. package/dist/hooks/useAppContext.d.ts +1 -0
  7. package/dist/hooks/useResizeObserver.d.ts +1 -1
  8. package/dist/hooks/useSettingsContext.d.ts +1 -1
  9. package/dist/index.css +3 -2
  10. package/dist/index.css.map +1 -1
  11. package/dist/index.d.ts +2 -0
  12. package/dist/index.js +16256 -21706
  13. package/dist/index.js.map +1 -1
  14. package/dist/index.modern.js +16169 -21618
  15. package/dist/index.modern.js.map +1 -1
  16. package/dist/script/api.d.ts +2 -2
  17. package/dist/script/builders/ketcher/KetcherBuilder.d.ts +1 -1
  18. package/dist/script/editor/Editor.d.ts +11 -4
  19. package/dist/script/editor/actions/bond.d.ts +24 -24
  20. package/dist/script/editor/actions/reaction.d.ts +1 -1
  21. package/dist/script/editor/actions/text.d.ts +6 -0
  22. package/dist/script/editor/actions/utils.d.ts +1 -2
  23. package/dist/script/editor/operations/CanvasLoad.d.ts +1 -1
  24. package/dist/script/editor/operations/EnhancedFlagMove.d.ts +1 -1
  25. package/dist/script/editor/operations/FragmentStereoFlag.d.ts +3 -5
  26. package/dist/script/editor/operations/LoopMove.d.ts +1 -1
  27. package/dist/script/editor/operations/OperationType.d.ts +5 -0
  28. package/dist/script/editor/operations/Text/TextCreateDelete.d.ts +41 -0
  29. package/dist/script/{chem/struct/simpleObject.d.ts → editor/operations/Text/TextMove.d.ts} +12 -15
  30. package/dist/script/{util/pool.d.ts → editor/operations/Text/TextUpdate.d.ts} +14 -10
  31. package/dist/script/editor/operations/Text/index.d.ts +3 -0
  32. package/dist/script/editor/operations/atom/AtomAttr.d.ts +1 -1
  33. package/dist/script/editor/operations/atom/AtomMove.d.ts +1 -1
  34. package/dist/script/editor/operations/base.d.ts +2 -2
  35. package/dist/script/editor/operations/bond/BondAttr.d.ts +1 -1
  36. package/dist/script/editor/operations/bond/BondMove.d.ts +1 -1
  37. package/dist/script/editor/operations/bond/index.d.ts +15 -0
  38. package/dist/script/{util/pile.d.ts → editor/operations/calcimplicitH.d.ts} +8 -10
  39. package/dist/script/editor/operations/fragment.d.ts +1 -1
  40. package/dist/script/editor/operations/fragmentStereoAtom.d.ts +1 -1
  41. package/dist/script/editor/operations/index.d.ts +2 -0
  42. package/dist/script/editor/operations/rxn/index.d.ts +18 -1
  43. package/dist/script/editor/operations/rxn/plus/RxnPlusMove.d.ts +1 -1
  44. package/dist/script/editor/operations/sgroup/index.d.ts +1 -1
  45. package/dist/script/editor/operations/sgroup/sgroupHierarchy.d.ts +0 -2
  46. package/dist/script/editor/operations/simpleObject.d.ts +9 -11
  47. package/dist/script/editor/shared/action.d.ts +2 -2
  48. package/dist/script/editor/shared/utils.d.ts +2 -2
  49. package/dist/script/editor/tool/attach.d.ts +4 -1
  50. package/dist/script/editor/tool/enhanced-stereo.d.ts +2 -1
  51. package/dist/script/editor/tool/helper/lasso.d.ts +3 -0
  52. package/dist/script/editor/tool/helper/locate.d.ts +2 -0
  53. package/dist/script/editor/tool/index.d.ts +2 -0
  54. package/dist/script/editor/tool/reactionarrow.d.ts +4 -4
  55. package/dist/script/editor/tool/rotate.d.ts +1 -1
  56. package/dist/script/editor/tool/text.d.ts +27 -0
  57. package/dist/script/editor/utils/elementOffset.d.ts +1 -1
  58. package/dist/script/index.d.ts +1 -1
  59. package/dist/script/ketcher.d.ts +1 -2
  60. package/dist/script/render/draw.d.ts +13 -7
  61. package/dist/script/render/index.d.ts +5 -5
  62. package/dist/script/render/restruct/GeneralEnumTypes.d.ts +35 -0
  63. package/dist/script/render/restruct/ReEnhancedFlag.d.ts +28 -0
  64. package/dist/script/render/restruct/ReObject.d.ts +32 -0
  65. package/dist/script/render/restruct/ReSimpleObject.d.ts +40 -0
  66. package/dist/script/render/restruct/ReStruct.d.ts +110 -0
  67. package/dist/script/render/restruct/ReText.d.ts +38 -0
  68. package/dist/script/render/restruct/index.d.ts +5 -84
  69. package/dist/script/render/restruct/reatom.d.ts +41 -17
  70. package/dist/script/render/restruct/rebond.d.ts +36 -26
  71. package/dist/script/render/restruct/redatasgroupdata.d.ts +3 -7
  72. package/dist/script/render/restruct/refrag.d.ts +3 -7
  73. package/dist/script/render/restruct/reloop.d.ts +4 -8
  74. package/dist/script/render/restruct/rergroup.d.ts +4 -7
  75. package/dist/script/render/restruct/rerxnarrow.d.ts +3 -7
  76. package/dist/script/render/restruct/rerxnplus.d.ts +3 -7
  77. package/dist/script/render/restruct/resgroup.d.ts +3 -6
  78. package/dist/script/render/restruct/visel.d.ts +1 -2
  79. package/dist/script/render/util.d.ts +1 -1
  80. package/dist/script/ui/action/action.types.d.ts +1 -1
  81. package/dist/script/ui/action/atoms.d.ts +1 -1
  82. package/dist/script/ui/action/debug.d.ts +2 -2
  83. package/dist/script/ui/action/index.d.ts +392 -2
  84. package/dist/script/ui/action/templates.d.ts +10 -1
  85. package/dist/script/ui/action/tools.d.ts +16 -1
  86. package/dist/script/ui/component/form/colorPicker/ColorPicker.d.ts +12 -0
  87. package/dist/script/{chem/molfile/molfile.test.d.ts → ui/component/form/colorPicker/ColorPicker.test.d.ts} +0 -0
  88. package/dist/script/ui/component/view/savebutton.d.ts +1 -5
  89. package/dist/script/ui/data/convert/structConverter.d.ts +3 -3
  90. package/dist/script/ui/data/convert/structconv.d.ts +6 -4
  91. package/dist/script/ui/data/schema/options-schema.d.ts +25 -167
  92. package/dist/script/ui/data/schema/struct-schema.d.ts +20 -2
  93. package/dist/script/ui/data/templates.d.ts +1 -1
  94. package/dist/script/ui/dialog/index.d.ts +43 -7
  95. package/dist/script/ui/dialog/template/TemplateLib.d.ts +1 -1
  96. package/dist/script/ui/dialog/template/TemplateTable.d.ts +1 -1
  97. package/dist/script/ui/dialog/toolbox/enhancedStereo.d.ts +2 -0
  98. package/dist/script/ui/state/constants.d.ts +7 -0
  99. package/dist/script/ui/state/editor/index.d.ts +1 -2
  100. package/dist/script/ui/state/modal/form.d.ts +10 -2
  101. package/dist/script/ui/state/options/index.d.ts +4 -3
  102. package/dist/script/ui/state/shared.d.ts +1 -1
  103. package/dist/script/ui/views/components/Dialog/Dialog.d.ts +6 -8
  104. package/dist/script/ui/views/components/Dialog/index.d.ts +1 -1
  105. package/dist/script/ui/views/components/index.d.ts +1 -2
  106. package/dist/script/ui/views/modal/Modal.d.ts +4 -7
  107. package/dist/script/{format/chemGraph/toGraph/simpleObjectToGraph.d.ts → ui/views/modal/components/Text/Text.d.ts} +4 -5
  108. package/dist/script/ui/views/modal/components/Text/TextButton/TextButton.d.ts +14 -0
  109. package/dist/script/ui/views/modal/components/Text/TextButton/index.d.ts +1 -0
  110. package/dist/script/{util/scale.d.ts → ui/views/modal/components/Text/index.d.ts} +2 -8
  111. package/dist/script/ui/views/modal/components/document/Open/Open.container.d.ts +18 -0
  112. package/dist/script/ui/views/modal/components/document/Open/Open.d.ts +24 -2
  113. package/dist/script/ui/views/modal/components/document/Open/index.d.ts +1 -1
  114. package/dist/script/ui/views/modal/components/document/Save/SaveImageTab.d.ts +4 -0
  115. package/dist/script/ui/views/modal/components/meta/Settings/Settings.d.ts +16 -1
  116. package/dist/script/ui/views/modal/components/meta/Settings/components/Accordion/Accordion.d.ts +35 -13
  117. package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.container.d.ts +20 -0
  118. package/dist/script/ui/views/modal/components/toolbox/Atom/Atom.d.ts +36 -0
  119. package/dist/script/ui/views/modal/components/toolbox/Atom/ElementNumber/ElementNumber.d.ts +6 -0
  120. package/dist/script/ui/views/modal/components/toolbox/Atom/ElementNumber/index.d.ts +16 -0
  121. package/dist/script/ui/views/modal/components/toolbox/Atom/index.d.ts +16 -0
  122. package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.container.d.ts +20 -0
  123. package/dist/script/ui/views/modal/components/toolbox/Attach/Attach.d.ts +24 -0
  124. package/dist/script/ui/views/modal/components/toolbox/Attach/index.d.ts +16 -0
  125. package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.container.d.ts +20 -0
  126. package/dist/script/ui/views/modal/components/toolbox/Automap/Automap.d.ts +32 -0
  127. package/dist/script/ui/views/modal/components/toolbox/Automap/index.d.ts +16 -0
  128. package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.container.d.ts +20 -0
  129. package/dist/script/ui/views/modal/components/toolbox/Bond/Bond.d.ts +10 -0
  130. package/dist/script/ui/views/modal/components/toolbox/Bond/index.d.ts +16 -0
  131. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.container.d.ts +20 -0
  132. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/RgroupLogic.d.ts +28 -0
  133. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/IfThenSelect.d.ts +19 -0
  134. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/IfThenSelect/index.d.ts +16 -0
  135. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/components/index.d.ts +16 -0
  136. package/dist/script/ui/views/modal/components/toolbox/RgroupLogic/index.d.ts +16 -0
  137. package/dist/script/ui/views/modal/components/toolbox/index.d.ts +21 -0
  138. package/dist/script/ui/views/modal/modal.types.d.ts +28 -0
  139. package/dist/script/ui/views/toolbars/LeftToolbar/Bond/options.d.ts +2 -1
  140. package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.container.d.ts +1 -1
  141. package/dist/script/ui/views/toolbars/LeftToolbar/LeftToolbar.d.ts +15 -1
  142. package/dist/script/ui/views/toolbars/LeftToolbar/RGroup/RGroup.d.ts +15 -0
  143. package/dist/script/ui/views/toolbars/LeftToolbar/Shape/Shape.d.ts +15 -0
  144. package/dist/script/ui/views/toolbars/mediaSizes.d.ts +0 -1
  145. package/dist/script/ui/views/toolbars/toolbar.types.d.ts +3 -3
  146. package/package.json +7 -3
  147. package/dist/script/chem/element-color.d.ts +0 -2
  148. package/dist/script/chem/element.d.ts +0 -57
  149. package/dist/script/chem/generics.d.ts +0 -5
  150. package/dist/script/chem/molfile/common.d.ts +0 -34
  151. package/dist/script/chem/molfile/index.d.ts +0 -10
  152. package/dist/script/chem/molfile/molfile.d.ts +0 -47
  153. package/dist/script/chem/molfile/molfileFormat.d.ts +0 -1
  154. package/dist/script/chem/molfile/parseSGroup.d.ts +0 -42
  155. package/dist/script/chem/molfile/utils.d.ts +0 -66
  156. package/dist/script/chem/molfile/v2000.d.ts +0 -10
  157. package/dist/script/chem/molfile/v3000.d.ts +0 -10
  158. package/dist/script/chem/sdf.d.ts +0 -10
  159. package/dist/script/chem/smiles/cis_trans.d.ts +0 -25
  160. package/dist/script/chem/smiles/dfs.d.ts +0 -53
  161. package/dist/script/chem/smiles/index.d.ts +0 -5
  162. package/dist/script/chem/smiles/stereocenters.d.ts +0 -26
  163. package/dist/script/chem/struct/atom.d.ts +0 -66
  164. package/dist/script/chem/struct/atomlist.d.ts +0 -10
  165. package/dist/script/chem/struct/bond.d.ts +0 -72
  166. package/dist/script/chem/struct/fragment.d.ts +0 -50
  167. package/dist/script/chem/struct/index.d.ts +0 -137
  168. package/dist/script/chem/struct/rgroup.d.ts +0 -19
  169. package/dist/script/chem/struct/sgforest.d.ts +0 -42
  170. package/dist/script/chem/struct/sgroup.d.ts +0 -68
  171. package/dist/script/format/chemGraph/convertStruct.d.ts +0 -2
  172. package/dist/script/format/chemGraph/fromGraph/moleculeToStruct.d.ts +0 -10
  173. package/dist/script/format/chemGraph/fromGraph/rgroupToStruct.d.ts +0 -3
  174. package/dist/script/format/chemGraph/fromGraph/rxnToStruct.d.ts +0 -1
  175. package/dist/script/format/chemGraph/fromGraph/simpleObjectToStruct.d.ts +0 -1
  176. package/dist/script/format/chemGraph/index.d.ts +0 -13
  177. package/dist/script/format/chemGraph/toGraph/headerToGraph.d.ts +0 -1
  178. package/dist/script/format/chemGraph/toGraph/moleculeToGraph.d.ts +0 -4
  179. package/dist/script/format/chemGraph/toGraph/prepare.d.ts +0 -14
  180. package/dist/script/format/chemGraph/toGraph/rgroupToGraph.d.ts +0 -5
  181. package/dist/script/format/chemGraph/toGraph/rxnToGraph.d.ts +0 -10
  182. package/dist/script/format/graphValidator.d.ts +0 -1
  183. package/dist/script/format/schemes/moleculeSchema.d.ts +0 -596
  184. package/dist/script/format/schemes/rgroupSchema.d.ts +0 -60
  185. package/dist/script/format/schemes/rootSchema.d.ts +0 -102
  186. package/dist/script/format/schemes/rxnSchemas.d.ts +0 -58
  187. package/dist/script/format/schemes/simpleObjectSchema.d.ts +0 -45
  188. package/dist/script/format/utils.d.ts +0 -1
  189. package/dist/script/render/restruct/reenhancedflag.d.ts +0 -15
  190. package/dist/script/render/restruct/reobject.d.ts +0 -15
  191. package/dist/script/render/restruct/resimpleobject.d.ts +0 -23
  192. package/dist/script/ui/dialog/toolbox/atom.d.ts +0 -2
  193. package/dist/script/ui/dialog/toolbox/attach.d.ts +0 -2
  194. package/dist/script/ui/dialog/toolbox/automap.d.ts +0 -18
  195. package/dist/script/ui/dialog/toolbox/bond.d.ts +0 -2
  196. package/dist/script/ui/dialog/toolbox/enhanced-stereo.d.ts +0 -2
  197. package/dist/script/ui/dialog/toolbox/rgroup-logic.d.ts +0 -2
  198. package/dist/script/util/banner.d.ts +0 -0
  199. package/dist/script/util/box2abs.d.ts +0 -23
  200. package/dist/script/util/vec2.d.ts +0 -75
@@ -1,596 +0,0 @@
1
- export default moleculeSchema;
2
- declare namespace moleculeSchema {
3
- export const id: string;
4
- export const type: string;
5
- export namespace properties {
6
- namespace stereoFlag {
7
- export const title: string;
8
- const type_1: (string | null)[];
9
- export { type_1 as type };
10
- const _enum: (string | null)[];
11
- export { _enum as enum };
12
- const _default: null;
13
- export { _default as default };
14
- }
15
- namespace atoms {
16
- const title_1: string;
17
- export { title_1 as title };
18
- const type_2: string;
19
- export { type_2 as type };
20
- export namespace items {
21
- const oneOf: {
22
- $ref: string;
23
- }[];
24
- }
25
- }
26
- namespace bonds {
27
- const title_2: string;
28
- export { title_2 as title };
29
- const type_3: string;
30
- export { type_3 as type };
31
- export namespace items_1 {
32
- const $ref: string;
33
- }
34
- export { items_1 as items };
35
- }
36
- namespace sgroups {
37
- const title_3: string;
38
- export { title_3 as title };
39
- const type_4: string;
40
- export { type_4 as type };
41
- export namespace items_2 {
42
- const $ref_1: string;
43
- export { $ref_1 as $ref };
44
- }
45
- export { items_2 as items };
46
- }
47
- }
48
- export { atom };
49
- export { atomlist };
50
- export { rgatom };
51
- export { bond };
52
- export { sgroup };
53
- }
54
- declare namespace atom {
55
- const title_4: string;
56
- export { title_4 as title };
57
- const type_5: string;
58
- export { type_5 as type };
59
- export const required: string[];
60
- export namespace properties_1 {
61
- namespace label {
62
- const title_5: string;
63
- export { title_5 as title };
64
- const type_6: string;
65
- export { type_6 as type };
66
- export const maxLength: number;
67
- }
68
- namespace alias {
69
- const title_6: string;
70
- export { title_6 as title };
71
- const type_7: string;
72
- export { type_7 as type };
73
- }
74
- namespace location {
75
- const title_7: string;
76
- export { title_7 as title };
77
- const type_8: string;
78
- export { type_8 as type };
79
- export namespace items_3 {
80
- const type_9: string;
81
- export { type_9 as type };
82
- export const precision: number;
83
- }
84
- export { items_3 as items };
85
- }
86
- namespace rgroups {
87
- const title_8: string;
88
- export { title_8 as title };
89
- const type_10: string;
90
- export { type_10 as type };
91
- export namespace items_4 {
92
- const type_11: string;
93
- export { type_11 as type };
94
- }
95
- export { items_4 as items };
96
- }
97
- namespace charge {
98
- const title_9: string;
99
- export { title_9 as title };
100
- const type_12: string;
101
- export { type_12 as type };
102
- export const minimum: number;
103
- export const maximum: number;
104
- const _default_1: number;
105
- export { _default_1 as default };
106
- }
107
- namespace explicitValence {
108
- const title_10: string;
109
- export { title_10 as title };
110
- const _enum_1: number[];
111
- export { _enum_1 as enum };
112
- export const enumNames: string[];
113
- const _default_2: number;
114
- export { _default_2 as default };
115
- }
116
- namespace isotope {
117
- const title_11: string;
118
- export { title_11 as title };
119
- const type_13: string;
120
- export { type_13 as type };
121
- const minimum_1: number;
122
- export { minimum_1 as minimum };
123
- const _default_3: number;
124
- export { _default_3 as default };
125
- }
126
- namespace radical {
127
- const title_12: string;
128
- export { title_12 as title };
129
- const _enum_2: number[];
130
- export { _enum_2 as enum };
131
- const enumNames_1: string[];
132
- export { enumNames_1 as enumNames };
133
- const _default_4: number;
134
- export { _default_4 as default };
135
- }
136
- namespace attachmentPoints {
137
- const title_13: string;
138
- export { title_13 as title };
139
- const _enum_3: number[];
140
- export { _enum_3 as enum };
141
- const enumNames_2: string[];
142
- export { enumNames_2 as enumNames };
143
- const _default_5: number;
144
- export { _default_5 as default };
145
- }
146
- namespace stereoLabel {
147
- const title_14: string;
148
- export { title_14 as title };
149
- const type_14: string[];
150
- export { type_14 as type };
151
- export const pattern: RegExp;
152
- const _default_6: null;
153
- export { _default_6 as default };
154
- }
155
- namespace stereoParity {
156
- const title_15: string;
157
- export { title_15 as title };
158
- const _enum_4: number[];
159
- export { _enum_4 as enum };
160
- const enumNames_3: string[];
161
- export { enumNames_3 as enumNames };
162
- const _default_7: number;
163
- export { _default_7 as default };
164
- }
165
- namespace weight {
166
- const title_16: string;
167
- export { title_16 as title };
168
- const type_15: string;
169
- export { type_15 as type };
170
- const _default_8: number;
171
- export { _default_8 as default };
172
- }
173
- namespace ringBondCount {
174
- const title_17: string;
175
- export { title_17 as title };
176
- const _enum_5: number[];
177
- export { _enum_5 as enum };
178
- const enumNames_4: string[];
179
- export { enumNames_4 as enumNames };
180
- const _default_9: number;
181
- export { _default_9 as default };
182
- }
183
- namespace substitutionCount {
184
- const title_18: string;
185
- export { title_18 as title };
186
- const _enum_6: number[];
187
- export { _enum_6 as enum };
188
- const enumNames_5: string[];
189
- export { enumNames_5 as enumNames };
190
- const _default_10: number;
191
- export { _default_10 as default };
192
- }
193
- namespace unsaturatedAtom {
194
- const title_19: string;
195
- export { title_19 as title };
196
- const type_16: string;
197
- export { type_16 as type };
198
- const _default_11: boolean;
199
- export { _default_11 as default };
200
- }
201
- namespace hCount {
202
- const title_20: string;
203
- export { title_20 as title };
204
- const _enum_7: number[];
205
- export { _enum_7 as enum };
206
- const enumNames_6: string[];
207
- export { enumNames_6 as enumNames };
208
- const _default_12: number;
209
- export { _default_12 as default };
210
- }
211
- namespace mapping {
212
- const title_21: string;
213
- export { title_21 as title };
214
- const type_17: string;
215
- export { type_17 as type };
216
- const _default_13: number;
217
- export { _default_13 as default };
218
- }
219
- namespace invRet {
220
- const title_22: string;
221
- export { title_22 as title };
222
- const _enum_8: number[];
223
- export { _enum_8 as enum };
224
- const enumNames_7: string[];
225
- export { enumNames_7 as enumNames };
226
- const _default_14: number;
227
- export { _default_14 as default };
228
- }
229
- namespace exactChangeFlag {
230
- const title_23: string;
231
- export { title_23 as title };
232
- const type_18: string;
233
- export { type_18 as type };
234
- const _default_15: boolean;
235
- export { _default_15 as default };
236
- }
237
- }
238
- export { properties_1 as properties };
239
- }
240
- declare namespace atomlist {
241
- const title_24: string;
242
- export { title_24 as title };
243
- const type_19: string;
244
- export { type_19 as type };
245
- const required_1: string[];
246
- export { required_1 as required };
247
- export namespace properties_2 {
248
- export namespace type_20 {
249
- const _enum_9: string[];
250
- export { _enum_9 as enum };
251
- }
252
- export { type_20 as type };
253
- export namespace notList {
254
- const type_21: string;
255
- export { type_21 as type };
256
- const _default_16: boolean;
257
- export { _default_16 as default };
258
- }
259
- export namespace location_1 {
260
- const title_25: string;
261
- export { title_25 as title };
262
- const type_22: string;
263
- export { type_22 as type };
264
- export namespace items_5 {
265
- const type_23: string;
266
- export { type_23 as type };
267
- const precision_1: number;
268
- export { precision_1 as precision };
269
- }
270
- export { items_5 as items };
271
- }
272
- export { location_1 as location };
273
- export namespace elements {
274
- const type_24: string;
275
- export { type_24 as type };
276
- export const minItems: number;
277
- export namespace items_6 {
278
- const type_25: string;
279
- export { type_25 as type };
280
- const maxLength_1: number;
281
- export { maxLength_1 as maxLength };
282
- }
283
- export { items_6 as items };
284
- }
285
- export namespace attachmentPoints_1 {
286
- const title_26: string;
287
- export { title_26 as title };
288
- const _enum_10: number[];
289
- export { _enum_10 as enum };
290
- const enumNames_8: string[];
291
- export { enumNames_8 as enumNames };
292
- const _default_17: number;
293
- export { _default_17 as default };
294
- }
295
- export { attachmentPoints_1 as attachmentPoints };
296
- }
297
- export { properties_2 as properties };
298
- }
299
- declare namespace rgatom {
300
- const title_27: string;
301
- export { title_27 as title };
302
- const type_26: string;
303
- export { type_26 as type };
304
- const required_2: string[];
305
- export { required_2 as required };
306
- export namespace properties_3 {
307
- export namespace type_27 {
308
- const _enum_11: string[];
309
- export { _enum_11 as enum };
310
- }
311
- export { type_27 as type };
312
- export namespace location_2 {
313
- const title_28: string;
314
- export { title_28 as title };
315
- const type_28: string;
316
- export { type_28 as type };
317
- export namespace items_7 {
318
- const type_29: string;
319
- export { type_29 as type };
320
- const precision_2: number;
321
- export { precision_2 as precision };
322
- }
323
- export { items_7 as items };
324
- }
325
- export { location_2 as location };
326
- export namespace $refs {
327
- const type_30: string;
328
- export { type_30 as type };
329
- export namespace items_8 {
330
- const type_31: string;
331
- export { type_31 as type };
332
- const pattern_1: string;
333
- export { pattern_1 as pattern };
334
- const maxLength_2: number;
335
- export { maxLength_2 as maxLength };
336
- }
337
- export { items_8 as items };
338
- }
339
- export namespace rgroups_1 {
340
- const type_32: string;
341
- export { type_32 as type };
342
- export namespace items_9 {
343
- const $ref_2: string;
344
- export { $ref_2 as $ref };
345
- }
346
- export { items_9 as items };
347
- }
348
- export { rgroups_1 as rgroups };
349
- export namespace attachmentPoints_2 {
350
- const title_29: string;
351
- export { title_29 as title };
352
- const _enum_12: number[];
353
- export { _enum_12 as enum };
354
- const enumNames_9: string[];
355
- export { enumNames_9 as enumNames };
356
- const _default_18: number;
357
- export { _default_18 as default };
358
- }
359
- export { attachmentPoints_2 as attachmentPoints };
360
- }
361
- export { properties_3 as properties };
362
- }
363
- declare namespace bond {
364
- const title_30: string;
365
- export { title_30 as title };
366
- const type_33: string;
367
- export { type_33 as type };
368
- const required_3: string[];
369
- export { required_3 as required };
370
- export namespace properties_4 {
371
- export namespace type_34 {
372
- const title_31: string;
373
- export { title_31 as title };
374
- const _enum_13: number[];
375
- export { _enum_13 as enum };
376
- const enumNames_10: string[];
377
- export { enumNames_10 as enumNames };
378
- const _default_19: number;
379
- export { _default_19 as default };
380
- }
381
- export { type_34 as type };
382
- export namespace atoms_1 {
383
- const title_32: string;
384
- export { title_32 as title };
385
- const type_35: string;
386
- export { type_35 as type };
387
- const minItems_1: number;
388
- export { minItems_1 as minItems };
389
- export const maxItems: number;
390
- export namespace items_10 {
391
- const type_36: string;
392
- export { type_36 as type };
393
- }
394
- export { items_10 as items };
395
- }
396
- export { atoms_1 as atoms };
397
- export namespace stereo {
398
- const title_33: string;
399
- export { title_33 as title };
400
- const _enum_14: number[];
401
- export { _enum_14 as enum };
402
- const enumNames_11: string[];
403
- export { enumNames_11 as enumNames };
404
- const _default_20: number;
405
- export { _default_20 as default };
406
- }
407
- export namespace topology {
408
- const title_34: string;
409
- export { title_34 as title };
410
- const _enum_15: number[];
411
- export { _enum_15 as enum };
412
- const enumNames_12: string[];
413
- export { enumNames_12 as enumNames };
414
- const _default_21: number;
415
- export { _default_21 as default };
416
- }
417
- export namespace center {
418
- const title_35: string;
419
- export { title_35 as title };
420
- const _enum_16: number[];
421
- export { _enum_16 as enum };
422
- const enumNames_13: string[];
423
- export { enumNames_13 as enumNames };
424
- const _default_22: number;
425
- export { _default_22 as default };
426
- }
427
- export namespace stereobox {
428
- const title_36: string;
429
- export { title_36 as title };
430
- const _enum_17: number[];
431
- export { _enum_17 as enum };
432
- const _default_23: number;
433
- export { _default_23 as default };
434
- }
435
- }
436
- export { properties_4 as properties };
437
- }
438
- declare namespace sgroup {
439
- const title_37: string;
440
- export { title_37 as title };
441
- export const allOf: ({
442
- required: string[];
443
- properties: {
444
- atoms: {
445
- type: string;
446
- };
447
- };
448
- oneOf?: undefined;
449
- } | {
450
- oneOf: ({
451
- key: string;
452
- title: string;
453
- properties: {
454
- type: {
455
- enum: string[];
456
- };
457
- mul?: undefined;
458
- subscript?: undefined;
459
- connectivity?: undefined;
460
- name?: undefined;
461
- context?: undefined;
462
- fieldName?: undefined;
463
- fieldValue?: undefined;
464
- display?: undefined;
465
- placement?: undefined;
466
- };
467
- type?: undefined;
468
- required?: undefined;
469
- } | {
470
- key: string;
471
- title: string;
472
- type: string;
473
- properties: {
474
- type: {
475
- enum: string[];
476
- };
477
- mul: {
478
- title: string;
479
- type: string;
480
- default: number;
481
- minimum: number;
482
- maximum: number;
483
- };
484
- subscript?: undefined;
485
- connectivity?: undefined;
486
- name?: undefined;
487
- context?: undefined;
488
- fieldName?: undefined;
489
- fieldValue?: undefined;
490
- display?: undefined;
491
- placement?: undefined;
492
- };
493
- required: string[];
494
- } | {
495
- key: string;
496
- title: string;
497
- properties: {
498
- type: {
499
- enum: string[];
500
- };
501
- subscript: {
502
- title: string;
503
- type: string;
504
- default: string;
505
- pattern: string;
506
- invalidMessage: string;
507
- };
508
- connectivity: {
509
- title: string;
510
- enum: string[];
511
- enumNames: string[];
512
- default: string;
513
- };
514
- mul?: undefined;
515
- name?: undefined;
516
- context?: undefined;
517
- fieldName?: undefined;
518
- fieldValue?: undefined;
519
- display?: undefined;
520
- placement?: undefined;
521
- };
522
- required: string[];
523
- type?: undefined;
524
- } | {
525
- key: string;
526
- title: string;
527
- properties: {
528
- type: {
529
- enum: string[];
530
- };
531
- name: {
532
- title: string;
533
- type: string;
534
- default: string;
535
- minLength: number;
536
- invalidMessage: string;
537
- };
538
- mul?: undefined;
539
- subscript?: undefined;
540
- connectivity?: undefined;
541
- context?: undefined;
542
- fieldName?: undefined;
543
- fieldValue?: undefined;
544
- display?: undefined;
545
- placement?: undefined;
546
- };
547
- type?: undefined;
548
- required?: undefined;
549
- } | {
550
- key: string;
551
- title: string;
552
- properties: {
553
- type: {
554
- enum: string[];
555
- };
556
- context: {
557
- title: string;
558
- enum: string[];
559
- default: string;
560
- };
561
- fieldName: {
562
- title: string;
563
- type: string;
564
- default: string;
565
- minLength: number;
566
- invalidMessage: string;
567
- };
568
- fieldValue: {
569
- title: string;
570
- type: string;
571
- default: string;
572
- minLength: number;
573
- invalidMessage: string;
574
- };
575
- display: {
576
- title: string;
577
- type: string;
578
- default: boolean;
579
- };
580
- placement: {
581
- title: string;
582
- type: string;
583
- default: boolean;
584
- };
585
- mul?: undefined;
586
- subscript?: undefined;
587
- connectivity?: undefined;
588
- name?: undefined;
589
- };
590
- required: string[];
591
- type?: undefined;
592
- })[];
593
- required?: undefined;
594
- properties?: undefined;
595
- })[];
596
- }
@@ -1,60 +0,0 @@
1
- export default rgroupSchema;
2
- declare namespace rgroupSchema {
3
- export const id: string;
4
- export const type: string;
5
- export const allOf: ({
6
- required: string[];
7
- properties: {
8
- type: {
9
- enum: string[];
10
- };
11
- rlogic: {
12
- $ref: string;
13
- };
14
- };
15
- $ref?: undefined;
16
- } | {
17
- $ref: string;
18
- required?: undefined;
19
- properties?: undefined;
20
- })[];
21
- export { rgroupLogic as logic };
22
- }
23
- declare namespace rgroupLogic {
24
- export const title: string;
25
- const type_1: string;
26
- export { type_1 as type };
27
- export const required: string[];
28
- export namespace properties {
29
- namespace number {
30
- const type_2: string;
31
- export { type_2 as type };
32
- }
33
- namespace range {
34
- const title_1: string;
35
- export { title_1 as title };
36
- const type_3: string;
37
- export { type_3 as type };
38
- export const maxLength: number;
39
- const _default: string;
40
- export { _default as default };
41
- }
42
- namespace resth {
43
- const title_2: string;
44
- export { title_2 as title };
45
- const type_4: string;
46
- export { type_4 as type };
47
- const _default_1: boolean;
48
- export { _default_1 as default };
49
- }
50
- namespace ifthen {
51
- const title_3: string;
52
- export { title_3 as title };
53
- const type_5: string;
54
- export { type_5 as type };
55
- export const minimum: number;
56
- const _default_2: number;
57
- export { _default_2 as default };
58
- }
59
- }
60
- }