@lcap/nasl 0.3.14-beta.0 → 1.0.0-alpha

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 (2078) hide show
  1. package/DEVELOPMENT.md +39 -55
  2. package/README.md +78 -5
  3. package/bak/basicTypes.ts +76 -0
  4. package/bak/dataTypeUtils.ts +429 -0
  5. package/bak/dataTypes.ts +51 -0
  6. package/bak/entityUtils.ts +660 -0
  7. package/bak/genericTypes.ts +131 -0
  8. package/bak/systemTypes.ts +1590 -0
  9. package/bak/tools.js +174 -0
  10. package/bak/translator.js +129 -0
  11. package/bak/translator_backup.js +601 -0
  12. package/bin/naslc +3 -0
  13. package/docs/.nojekyll +1 -0
  14. package/docs/assets/custom.css +3 -0
  15. package/docs/assets/highlight.css +78 -0
  16. package/docs/assets/icons.css +1043 -0
  17. package/docs/assets/icons.png +0 -0
  18. package/docs/assets/icons@2x.png +0 -0
  19. package/docs/assets/main.js +52 -0
  20. package/docs/assets/search.js +1 -0
  21. package/docs/assets/style.css +1414 -0
  22. package/docs/assets/widgets.png +0 -0
  23. package/docs/assets/widgets@2x.png +0 -0
  24. package/docs/classes/App.html +509 -0
  25. package/docs/classes/Argument.html +191 -0
  26. package/docs/classes/Assignment.html +195 -0
  27. package/docs/classes/Attribute.html +169 -0
  28. package/docs/classes/BaseNode.html +128 -0
  29. package/docs/classes/BinaryExpression.html +199 -0
  30. package/docs/classes/BindAttribute.html +209 -0
  31. package/docs/classes/BindDirective.html +161 -0
  32. package/docs/classes/BindEvent.html +173 -0
  33. package/docs/classes/BooleanLiteral.html +177 -0
  34. package/docs/classes/CallFunction.html +201 -0
  35. package/docs/classes/CallInterface.html +201 -0
  36. package/docs/classes/CallLogic.html +207 -0
  37. package/docs/classes/CallQueryComponent.html +301 -0
  38. package/docs/classes/Comment.html +175 -0
  39. package/docs/classes/CompletionProperty.html +165 -0
  40. package/docs/classes/Constant.html +161 -0
  41. package/docs/classes/DataElement.html +143 -0
  42. package/docs/classes/Destination.html +205 -0
  43. package/docs/classes/End.html +173 -0
  44. package/docs/classes/Entity.html +205 -0
  45. package/docs/classes/EntityIndex.html +153 -0
  46. package/docs/classes/EntityProperty.html +211 -0
  47. package/docs/classes/Enum.html +171 -0
  48. package/docs/classes/EnumItem.html +143 -0
  49. package/docs/classes/Event.html +173 -0
  50. package/docs/classes/ForEachStatement.html +253 -0
  51. package/docs/classes/Function.html +259 -0
  52. package/docs/classes/Identifier.html +181 -0
  53. package/docs/classes/IfStatement.html +229 -0
  54. package/docs/classes/Interface.html +211 -0
  55. package/docs/classes/InterfaceParam.html +171 -0
  56. package/docs/classes/JSBlock.html +179 -0
  57. package/docs/classes/Logic.html +327 -0
  58. package/docs/classes/LogicItem.html +175 -0
  59. package/docs/classes/MemberExpression.html +196 -0
  60. package/docs/classes/Module.html +386 -0
  61. package/docs/classes/Namespace.html +497 -0
  62. package/docs/classes/NullLiteral.html +175 -0
  63. package/docs/classes/NumericLiteral.html +187 -0
  64. package/docs/classes/Param.html +173 -0
  65. package/docs/classes/Point.html +131 -0
  66. package/docs/classes/Process.html +261 -0
  67. package/docs/classes/ProcessComponent.html +199 -0
  68. package/docs/classes/ProcessElement.html +333 -0
  69. package/docs/classes/ProcessOutcome.html +179 -0
  70. package/docs/classes/QueryAggregateExpression.html +185 -0
  71. package/docs/classes/QueryFieldExpression.html +185 -0
  72. package/docs/classes/QueryFromExpression.html +205 -0
  73. package/docs/classes/QueryGroupByExpression.html +187 -0
  74. package/docs/classes/QueryJoinExpression.html +237 -0
  75. package/docs/classes/QueryLimitExpression.html +199 -0
  76. package/docs/classes/QueryOrderByExpression.html +197 -0
  77. package/docs/classes/QuerySelectExpression.html +213 -0
  78. package/docs/classes/Rect.html +135 -0
  79. package/docs/classes/Return.html +169 -0
  80. package/docs/classes/Role.html +139 -0
  81. package/docs/classes/Slot.html +143 -0
  82. package/docs/classes/SqlQueryComponent.html +191 -0
  83. package/docs/classes/Start.html +173 -0
  84. package/docs/classes/StringLiteral.html +177 -0
  85. package/docs/classes/Structure.html +203 -0
  86. package/docs/classes/StructureProperty.html +171 -0
  87. package/docs/classes/SwitchCase.html +207 -0
  88. package/docs/classes/SwitchStatement.html +193 -0
  89. package/docs/classes/Theme.html +133 -0
  90. package/docs/classes/Transactional.html +151 -0
  91. package/docs/classes/TypeAnnotation.html +163 -0
  92. package/docs/classes/TypeParam.html +129 -0
  93. package/docs/classes/UnaryExpression.html +187 -0
  94. package/docs/classes/Unparsed.html +177 -0
  95. package/docs/classes/UseComponent.html +131 -0
  96. package/docs/classes/ValidationRule.html +201 -0
  97. package/docs/classes/Variable.html +167 -0
  98. package/docs/classes/View.html +366 -0
  99. package/docs/classes/ViewComponent.html +289 -0
  100. package/docs/classes/ViewElement.html +296 -0
  101. package/docs/classes/WhileStatement.html +207 -0
  102. package/docs/index.html +69 -313
  103. package/docs/modules.html +31 -377
  104. package/docs-theme/LICENSE +21 -0
  105. package/docs-theme/README.md +9 -0
  106. package/docs-theme/package.json +81 -0
  107. package/docs-theme/src/assets/common.js +2 -0
  108. package/docs-theme/src/assets/common.js.LICENSE.txt +61 -0
  109. package/docs-theme/src/assets/css/main.css +1 -0
  110. package/docs-theme/src/assets/images/icons.png +0 -0
  111. package/docs-theme/src/assets/images/icons@2x.png +0 -0
  112. package/docs-theme/src/config.json +25 -0
  113. package/docs-theme/src/index.js +45 -0
  114. package/docs-theme/src/layouts/default.js +88 -0
  115. package/docs-theme/src/partials/analytics.js +22 -0
  116. package/docs-theme/src/partials/breadcrumb.js +9 -0
  117. package/docs-theme/src/partials/footer.js +96 -0
  118. package/docs-theme/src/partials/header.js +25 -0
  119. package/docs-theme/src/partials/infrafoot.js +113 -0
  120. package/docs-theme/src/partials/infranav.js +187 -0
  121. package/docs-theme/src/partials/navigation.js +39 -0
  122. package/docs-theme/src/templates/index.js +7 -0
  123. package/docs-theme/src/templates/reflection.js +41 -0
  124. package/docs-theme/src/utils/lib.js +109 -0
  125. package/out/bak/translator.d.ts +1 -0
  126. package/out/bak/translator.js +117 -0
  127. package/out/bak/translator.js.map +1 -0
  128. package/out/baseService/index.d.ts +2 -0
  129. package/out/baseService/index.js +12 -0
  130. package/out/baseService/index.js.map +1 -0
  131. package/out/baseTypes/App__.d.ts +169 -0
  132. package/out/baseTypes/App__.js +344 -0
  133. package/out/baseTypes/App__.js.map +1 -0
  134. package/out/baseTypes/AssignmentExpression__.d.ts +42 -0
  135. package/out/baseTypes/AssignmentExpression__.js +112 -0
  136. package/out/baseTypes/AssignmentExpression__.js.map +1 -0
  137. package/out/baseTypes/Attr__.d.ts +96 -0
  138. package/out/baseTypes/Attr__.js +191 -0
  139. package/out/baseTypes/Attr__.js.map +1 -0
  140. package/out/baseTypes/BinaryExpression__.d.ts +40 -0
  141. package/out/baseTypes/BinaryExpression__.js +92 -0
  142. package/out/baseTypes/BinaryExpression__.js.map +1 -0
  143. package/out/baseTypes/BooleanLiteral__.d.ts +25 -0
  144. package/out/baseTypes/BooleanLiteral__.js +64 -0
  145. package/out/baseTypes/BooleanLiteral__.js.map +1 -0
  146. package/out/baseTypes/Comment__.d.ts +27 -0
  147. package/out/baseTypes/Comment__.js +60 -0
  148. package/out/baseTypes/Comment__.js.map +1 -0
  149. package/out/baseTypes/Directive__.d.ts +100 -0
  150. package/out/baseTypes/Directive__.js +198 -0
  151. package/out/baseTypes/Directive__.js.map +1 -0
  152. package/out/baseTypes/Element__.d.ts +303 -0
  153. package/out/baseTypes/Element__.js +555 -0
  154. package/out/baseTypes/Element__.js.map +1 -0
  155. package/out/baseTypes/End__.d.ts +24 -0
  156. package/out/baseTypes/End__.js +61 -0
  157. package/out/baseTypes/End__.js.map +1 -0
  158. package/out/baseTypes/EntityProperty__.d.ts +116 -0
  159. package/out/baseTypes/EntityProperty__.js +230 -0
  160. package/out/baseTypes/EntityProperty__.js.map +1 -0
  161. package/out/baseTypes/Entity__.d.ts +106 -0
  162. package/out/baseTypes/Entity__.js +222 -0
  163. package/out/baseTypes/Entity__.js.map +1 -0
  164. package/out/baseTypes/EnumItem__.d.ts +56 -0
  165. package/out/baseTypes/EnumItem__.js +125 -0
  166. package/out/baseTypes/EnumItem__.js.map +1 -0
  167. package/out/baseTypes/Enum__.d.ts +98 -0
  168. package/out/baseTypes/Enum__.js +211 -0
  169. package/out/baseTypes/Enum__.js.map +1 -0
  170. package/out/baseTypes/Event__.d.ts +93 -0
  171. package/out/baseTypes/Event__.js +181 -0
  172. package/out/baseTypes/Event__.js.map +1 -0
  173. package/out/baseTypes/ForEachStatement__.d.ts +89 -0
  174. package/out/baseTypes/ForEachStatement__.js +169 -0
  175. package/out/baseTypes/ForEachStatement__.js.map +1 -0
  176. package/out/baseTypes/Identifier__.d.ts +24 -0
  177. package/out/baseTypes/Identifier__.js +60 -0
  178. package/out/baseTypes/Identifier__.js.map +1 -0
  179. package/out/baseTypes/IfStatement__.d.ts +60 -0
  180. package/out/baseTypes/IfStatement__.js +109 -0
  181. package/out/baseTypes/IfStatement__.js.map +1 -0
  182. package/out/baseTypes/Lifecycle__.d.ts +89 -0
  183. package/out/baseTypes/Lifecycle__.js +175 -0
  184. package/out/baseTypes/Lifecycle__.js.map +1 -0
  185. package/out/baseTypes/LogicItem__.d.ts +103 -0
  186. package/out/baseTypes/LogicItem__.js +211 -0
  187. package/out/baseTypes/LogicItem__.js.map +1 -0
  188. package/out/baseTypes/Logic__.d.ts +280 -0
  189. package/out/baseTypes/Logic__.js +598 -0
  190. package/out/baseTypes/Logic__.js.map +1 -0
  191. package/out/baseTypes/Module__.d.ts +278 -0
  192. package/out/baseTypes/Module__.js +511 -0
  193. package/out/baseTypes/Module__.js.map +1 -0
  194. package/out/baseTypes/NullLiteral__.d.ts +20 -0
  195. package/out/baseTypes/NullLiteral__.js +53 -0
  196. package/out/baseTypes/NullLiteral__.js.map +1 -0
  197. package/out/baseTypes/Page__.d.ts +85 -0
  198. package/out/baseTypes/Page__.js +166 -0
  199. package/out/baseTypes/Page__.js.map +1 -0
  200. package/out/baseTypes/Param__.d.ts +88 -0
  201. package/out/baseTypes/Param__.js +194 -0
  202. package/out/baseTypes/Param__.js.map +1 -0
  203. package/out/baseTypes/ProcessComponent__.d.ts +67 -0
  204. package/out/baseTypes/ProcessComponent__.js +142 -0
  205. package/out/baseTypes/ProcessComponent__.js.map +1 -0
  206. package/out/baseTypes/Process__.d.ts +134 -0
  207. package/out/baseTypes/Process__.js +255 -0
  208. package/out/baseTypes/Process__.js.map +1 -0
  209. package/out/baseTypes/Return__.d.ts +88 -0
  210. package/out/baseTypes/Return__.js +194 -0
  211. package/out/baseTypes/Return__.js.map +1 -0
  212. package/out/baseTypes/Start__.d.ts +24 -0
  213. package/out/baseTypes/Start__.js +60 -0
  214. package/out/baseTypes/Start__.js.map +1 -0
  215. package/out/baseTypes/StringLiteral__.d.ts +25 -0
  216. package/out/baseTypes/StringLiteral__.js +73 -0
  217. package/out/baseTypes/StringLiteral__.js.map +1 -0
  218. package/out/baseTypes/StructureProperty__.d.ts +107 -0
  219. package/out/baseTypes/StructureProperty__.js +206 -0
  220. package/out/baseTypes/StructureProperty__.js.map +1 -0
  221. package/out/baseTypes/Structure__.d.ts +129 -0
  222. package/out/baseTypes/Structure__.js +296 -0
  223. package/out/baseTypes/Structure__.js.map +1 -0
  224. package/out/baseTypes/SwitchCase__.d.ts +56 -0
  225. package/out/baseTypes/SwitchCase__.js +105 -0
  226. package/out/baseTypes/SwitchCase__.js.map +1 -0
  227. package/out/baseTypes/SwitchStatement__.d.ts +49 -0
  228. package/out/baseTypes/SwitchStatement__.js +90 -0
  229. package/out/baseTypes/SwitchStatement__.js.map +1 -0
  230. package/out/baseTypes/TypeAnnotation__.d.ts +62 -0
  231. package/out/baseTypes/TypeAnnotation__.js +156 -0
  232. package/out/baseTypes/TypeAnnotation__.js.map +1 -0
  233. package/out/baseTypes/UnaryExpression__.d.ts +32 -0
  234. package/out/baseTypes/UnaryExpression__.js +76 -0
  235. package/out/baseTypes/UnaryExpression__.js.map +1 -0
  236. package/out/baseTypes/Variable__.d.ts +88 -0
  237. package/out/baseTypes/Variable__.js +194 -0
  238. package/out/baseTypes/Variable__.js.map +1 -0
  239. package/out/baseTypes/View__.d.ts +359 -0
  240. package/out/baseTypes/View__.js +644 -0
  241. package/out/baseTypes/View__.js.map +1 -0
  242. package/out/baseTypes/WhileStatement__.d.ts +56 -0
  243. package/out/baseTypes/WhileStatement__.js +105 -0
  244. package/out/baseTypes/WhileStatement__.js.map +1 -0
  245. package/out/baseTypes/basics/types/index.d.ts +8 -0
  246. package/out/baseTypes/basics/types/index.js +14 -0
  247. package/out/baseTypes/basics/types/index.js.map +1 -0
  248. package/out/baseTypes/basics/types/primitiveTypes.d.ts +2 -0
  249. package/out/baseTypes/basics/types/primitiveTypes.js +17 -0
  250. package/out/baseTypes/basics/types/primitiveTypes.js.map +1 -0
  251. package/out/baseTypes/basics/types/systemTypes.d.ts +2 -0
  252. package/out/baseTypes/basics/types/systemTypes.js +30 -0
  253. package/out/baseTypes/basics/types/systemTypes.js.map +1 -0
  254. package/out/baseTypes/index.d.ts +6 -0
  255. package/out/baseTypes/index.js +21 -0
  256. package/out/baseTypes/index.js.map +1 -0
  257. package/out/baseTypes/index__.d.ts +38 -0
  258. package/out/baseTypes/index__.js +51 -0
  259. package/out/baseTypes/index__.js.map +1 -0
  260. package/out/generator/debugInFileStorage.d.ts +3 -0
  261. package/out/generator/debugInFileStorage.js +15 -0
  262. package/out/generator/debugInFileStorage.js.map +1 -0
  263. package/out/generator/genAllEmbeddedTS.d.ts +7 -0
  264. package/out/generator/genAllEmbeddedTS.js +20 -0
  265. package/out/generator/genAllEmbeddedTS.js.map +1 -0
  266. package/out/generator/index.d.ts +2 -0
  267. package/out/generator/index.js +15 -0
  268. package/out/generator/index.js.map +1 -0
  269. package/out/index.d.ts +3 -0
  270. package/out/index.js +16 -0
  271. package/out/index.js.map +1 -0
  272. package/out/manager/diagnostic.d.ts +30 -0
  273. package/out/manager/diagnostic.js +82 -0
  274. package/out/manager/diagnostic.js.map +1 -0
  275. package/{analysis/mergeBlock/raw1.json → out/manager/history.d.ts} +0 -0
  276. package/out/manager/history.js +1 -0
  277. package/out/manager/history.js.map +1 -0
  278. package/out/manager/problem.d.ts +0 -0
  279. package/out/manager/problem.js +1 -0
  280. package/out/manager/problem.js.map +1 -0
  281. package/out/service/app/api.d.ts +1 -15
  282. package/out/service/app/api.js +1 -11
  283. package/out/service/app/api.js.map +1 -1
  284. package/out/service/create/index.js +2 -2
  285. package/out/service/create/index.js.map +1 -1
  286. package/out/service/debugger/debugger.d.ts +3 -0
  287. package/out/service/debugger/debugger.js +95 -0
  288. package/out/service/debugger/debugger.js.map +1 -0
  289. package/out/service/logic/index.d.ts +0 -3
  290. package/out/service/logic/index.js +1 -4
  291. package/out/service/logic/index.js.map +1 -1
  292. package/out/service/logic/logic.d.ts +0 -9
  293. package/out/service/logic/logic.js +0 -7
  294. package/out/service/logic/logic.js.map +1 -1
  295. package/out/service/page/api.d.ts +1 -1
  296. package/out/service/page/api.js +0 -15
  297. package/out/service/page/api.js.map +1 -1
  298. package/out/service/page/view.d.ts +1 -1
  299. package/out/service/page/view.js +0 -15
  300. package/out/service/page/view.js.map +1 -1
  301. package/out/src/bak/basicTypes.d.ts +25 -0
  302. package/out/src/bak/basicTypes.js +77 -0
  303. package/out/src/bak/basicTypes.js.map +1 -0
  304. package/out/src/bak/dataTypeUtils.d.ts +94 -0
  305. package/out/src/bak/dataTypeUtils.js +449 -0
  306. package/out/src/bak/dataTypeUtils.js.map +1 -0
  307. package/out/src/bak/dataTypes.d.ts +20 -0
  308. package/out/src/bak/dataTypes.js +47 -0
  309. package/out/src/bak/dataTypes.js.map +1 -0
  310. package/out/src/bak/entityUtils.d.ts +164 -0
  311. package/out/src/bak/entityUtils.js +621 -0
  312. package/out/src/bak/entityUtils.js.map +1 -0
  313. package/out/src/bak/genericTypes.d.ts +40 -0
  314. package/out/src/bak/genericTypes.js +134 -0
  315. package/out/src/bak/genericTypes.js.map +1 -0
  316. package/out/src/bak/systemTypes.d.ts +9 -0
  317. package/out/src/bak/systemTypes.js +1563 -0
  318. package/out/src/bak/systemTypes.js.map +1 -0
  319. package/out/src/baseService/index.d.ts +2 -0
  320. package/out/src/baseService/index.js +10 -0
  321. package/out/src/baseService/index.js.map +1 -0
  322. package/out/src/baseTypes/App__.d.ts +181 -0
  323. package/out/src/baseTypes/App__.js +381 -0
  324. package/out/src/baseTypes/App__.js.map +1 -0
  325. package/out/src/baseTypes/Argument__.d.ts +40 -0
  326. package/out/src/baseTypes/Argument__.js +147 -0
  327. package/out/src/baseTypes/Argument__.js.map +1 -0
  328. package/out/src/baseTypes/AssignmentExpression__.d.ts +45 -0
  329. package/out/src/baseTypes/AssignmentExpression__.js +172 -0
  330. package/out/src/baseTypes/AssignmentExpression__.js.map +1 -0
  331. package/out/src/baseTypes/Attr__.d.ts +79 -0
  332. package/out/src/baseTypes/Attr__.js +210 -0
  333. package/out/src/baseTypes/Attr__.js.map +1 -0
  334. package/out/src/baseTypes/BinaryExpression__.d.ts +43 -0
  335. package/out/src/baseTypes/BinaryExpression__.js +152 -0
  336. package/out/src/baseTypes/BinaryExpression__.js.map +1 -0
  337. package/out/src/baseTypes/BooleanLiteral__.d.ts +28 -0
  338. package/out/src/baseTypes/BooleanLiteral__.js +118 -0
  339. package/out/src/baseTypes/BooleanLiteral__.js.map +1 -0
  340. package/out/src/baseTypes/CallLogic__.d.ts +45 -0
  341. package/out/src/baseTypes/CallLogic__.js +162 -0
  342. package/out/src/baseTypes/CallLogic__.js.map +1 -0
  343. package/out/src/baseTypes/CallQueryComponent__.d.ts +83 -0
  344. package/out/src/baseTypes/CallQueryComponent__.js +235 -0
  345. package/out/src/baseTypes/CallQueryComponent__.js.map +1 -0
  346. package/out/src/baseTypes/Comment__.d.ts +30 -0
  347. package/out/src/baseTypes/Comment__.js +114 -0
  348. package/out/src/baseTypes/Comment__.js.map +1 -0
  349. package/out/src/baseTypes/Directive__.d.ts +83 -0
  350. package/out/src/baseTypes/Directive__.js +218 -0
  351. package/out/src/baseTypes/Directive__.js.map +1 -0
  352. package/out/src/baseTypes/Element__.d.ts +389 -0
  353. package/out/src/baseTypes/Element__.js +589 -0
  354. package/out/src/baseTypes/Element__.js.map +1 -0
  355. package/out/src/baseTypes/End__.d.ts +27 -0
  356. package/out/src/baseTypes/End__.js +115 -0
  357. package/out/src/baseTypes/End__.js.map +1 -0
  358. package/out/src/baseTypes/EntityProperty__.d.ts +99 -0
  359. package/out/src/baseTypes/EntityProperty__.js +254 -0
  360. package/out/src/baseTypes/EntityProperty__.js.map +1 -0
  361. package/out/src/baseTypes/Entity__.d.ts +121 -0
  362. package/out/src/baseTypes/Entity__.js +250 -0
  363. package/out/src/baseTypes/Entity__.js.map +1 -0
  364. package/out/src/baseTypes/EnumItem__.d.ts +131 -0
  365. package/out/src/baseTypes/EnumItem__.js +271 -0
  366. package/out/src/baseTypes/EnumItem__.js.map +1 -0
  367. package/out/src/baseTypes/Enum__.d.ts +114 -0
  368. package/out/src/baseTypes/Enum__.js +226 -0
  369. package/out/src/baseTypes/Enum__.js.map +1 -0
  370. package/out/src/baseTypes/Event__.d.ts +76 -0
  371. package/out/src/baseTypes/Event__.js +205 -0
  372. package/out/src/baseTypes/Event__.js.map +1 -0
  373. package/out/src/baseTypes/ForEachStatement__.d.ts +116 -0
  374. package/out/src/baseTypes/ForEachStatement__.js +242 -0
  375. package/out/src/baseTypes/ForEachStatement__.js.map +1 -0
  376. package/out/src/baseTypes/Identifier__.d.ts +29 -0
  377. package/out/src/baseTypes/Identifier__.js +121 -0
  378. package/out/src/baseTypes/Identifier__.js.map +1 -0
  379. package/out/src/baseTypes/IfStatement__.d.ts +87 -0
  380. package/out/src/baseTypes/IfStatement__.js +175 -0
  381. package/out/src/baseTypes/IfStatement__.js.map +1 -0
  382. package/out/src/baseTypes/Lifecycle__.d.ts +71 -0
  383. package/out/src/baseTypes/Lifecycle__.js +196 -0
  384. package/out/src/baseTypes/Lifecycle__.js.map +1 -0
  385. package/out/src/baseTypes/LogicItem__.d.ts +100 -0
  386. package/out/src/baseTypes/LogicItem__.js +265 -0
  387. package/out/src/baseTypes/LogicItem__.js.map +1 -0
  388. package/out/src/baseTypes/Logic__.d.ts +382 -0
  389. package/out/src/baseTypes/Logic__.js +622 -0
  390. package/out/src/baseTypes/Logic__.js.map +1 -0
  391. package/out/src/baseTypes/Module__.d.ts +521 -0
  392. package/out/src/baseTypes/Module__.js +728 -0
  393. package/out/src/baseTypes/Module__.js.map +1 -0
  394. package/out/src/baseTypes/NullLiteral__.d.ts +23 -0
  395. package/out/src/baseTypes/NullLiteral__.js +106 -0
  396. package/out/src/baseTypes/NullLiteral__.js.map +1 -0
  397. package/out/src/baseTypes/Page__.d.ts +65 -0
  398. package/out/src/baseTypes/Page__.js +186 -0
  399. package/out/src/baseTypes/Page__.js.map +1 -0
  400. package/out/src/baseTypes/Param__.d.ts +107 -0
  401. package/out/src/baseTypes/Param__.js +278 -0
  402. package/out/src/baseTypes/Param__.js.map +1 -0
  403. package/out/src/baseTypes/ProcessComponent__.d.ts +50 -0
  404. package/out/src/baseTypes/ProcessComponent__.js +153 -0
  405. package/out/src/baseTypes/ProcessComponent__.js.map +1 -0
  406. package/out/src/baseTypes/Process__.d.ts +285 -0
  407. package/out/src/baseTypes/Process__.js +450 -0
  408. package/out/src/baseTypes/Process__.js.map +1 -0
  409. package/out/src/baseTypes/QuerSelectExpression__.d.ts +39 -0
  410. package/out/src/baseTypes/QuerSelectExpression__.js +133 -0
  411. package/out/src/baseTypes/QuerSelectExpression__.js.map +1 -0
  412. package/out/src/baseTypes/QueryAggregateExpression__.d.ts +35 -0
  413. package/out/src/baseTypes/QueryAggregateExpression__.js +126 -0
  414. package/out/src/baseTypes/QueryAggregateExpression__.js.map +1 -0
  415. package/out/src/baseTypes/QueryFieldExpression__.d.ts +38 -0
  416. package/out/src/baseTypes/QueryFieldExpression__.js +131 -0
  417. package/out/src/baseTypes/QueryFieldExpression__.js.map +1 -0
  418. package/out/src/baseTypes/QueryFromExpression__.d.ts +40 -0
  419. package/out/src/baseTypes/QueryFromExpression__.js +136 -0
  420. package/out/src/baseTypes/QueryFromExpression__.js.map +1 -0
  421. package/out/src/baseTypes/QueryGroupByExpression__.d.ts +30 -0
  422. package/out/src/baseTypes/QueryGroupByExpression__.js +118 -0
  423. package/out/src/baseTypes/QueryGroupByExpression__.js.map +1 -0
  424. package/out/src/baseTypes/QueryJoinExpression__.d.ts +48 -0
  425. package/out/src/baseTypes/QueryJoinExpression__.js +155 -0
  426. package/out/src/baseTypes/QueryJoinExpression__.js.map +1 -0
  427. package/out/src/baseTypes/QueryLimitExpression__.d.ts +38 -0
  428. package/out/src/baseTypes/QueryLimitExpression__.js +137 -0
  429. package/out/src/baseTypes/QueryLimitExpression__.js.map +1 -0
  430. package/out/src/baseTypes/QueryOrderByExpression__.d.ts +38 -0
  431. package/out/src/baseTypes/QueryOrderByExpression__.js +137 -0
  432. package/out/src/baseTypes/QueryOrderByExpression__.js.map +1 -0
  433. package/out/src/baseTypes/Return__.d.ts +107 -0
  434. package/out/src/baseTypes/Return__.js +274 -0
  435. package/out/src/baseTypes/Return__.js.map +1 -0
  436. package/out/src/baseTypes/Start__.d.ts +27 -0
  437. package/out/src/baseTypes/Start__.js +114 -0
  438. package/out/src/baseTypes/Start__.js.map +1 -0
  439. package/out/src/baseTypes/StringLiteral__.d.ts +28 -0
  440. package/out/src/baseTypes/StringLiteral__.js +127 -0
  441. package/out/src/baseTypes/StringLiteral__.js.map +1 -0
  442. package/out/src/baseTypes/StructureProperty__.d.ts +97 -0
  443. package/out/src/baseTypes/StructureProperty__.js +253 -0
  444. package/out/src/baseTypes/StructureProperty__.js.map +1 -0
  445. package/out/src/baseTypes/Structure__.d.ts +153 -0
  446. package/out/src/baseTypes/Structure__.js +329 -0
  447. package/out/src/baseTypes/Structure__.js.map +1 -0
  448. package/out/src/baseTypes/SwitchCase__.d.ts +83 -0
  449. package/out/src/baseTypes/SwitchCase__.js +165 -0
  450. package/out/src/baseTypes/SwitchCase__.js.map +1 -0
  451. package/out/src/baseTypes/SwitchStatement__.d.ts +76 -0
  452. package/out/src/baseTypes/SwitchStatement__.js +147 -0
  453. package/out/src/baseTypes/SwitchStatement__.js.map +1 -0
  454. package/out/src/baseTypes/TypeAnnotation__.d.ts +60 -0
  455. package/out/src/baseTypes/TypeAnnotation__.js +201 -0
  456. package/out/src/baseTypes/TypeAnnotation__.js.map +1 -0
  457. package/out/src/baseTypes/UnaryExpression__.d.ts +35 -0
  458. package/out/src/baseTypes/UnaryExpression__.js +133 -0
  459. package/out/src/baseTypes/UnaryExpression__.js.map +1 -0
  460. package/out/src/baseTypes/Variable__.d.ts +107 -0
  461. package/out/src/baseTypes/Variable__.js +278 -0
  462. package/out/src/baseTypes/Variable__.js.map +1 -0
  463. package/out/src/baseTypes/View__.d.ts +472 -0
  464. package/out/src/baseTypes/View__.js +692 -0
  465. package/out/src/baseTypes/View__.js.map +1 -0
  466. package/out/src/baseTypes/WhileStatement__.d.ts +83 -0
  467. package/out/src/baseTypes/WhileStatement__.js +165 -0
  468. package/out/src/baseTypes/WhileStatement__.js.map +1 -0
  469. package/out/src/baseTypes/basics/types/collectionTypeList.d.ts +2 -0
  470. package/out/src/baseTypes/basics/types/collectionTypeList.js +30 -0
  471. package/out/src/baseTypes/basics/types/collectionTypeList.js.map +1 -0
  472. package/out/src/baseTypes/basics/types/coreTypes.d.ts +2 -0
  473. package/out/src/baseTypes/basics/types/coreTypes.js +17 -0
  474. package/out/src/baseTypes/basics/types/coreTypes.js.map +1 -0
  475. package/out/src/baseTypes/basics/types/index.d.ts +8 -0
  476. package/out/src/baseTypes/basics/types/index.js +14 -0
  477. package/out/src/baseTypes/basics/types/index.js.map +1 -0
  478. package/out/src/baseTypes/basics/types/stdlibModule.d.ts +7 -0
  479. package/out/src/baseTypes/basics/types/stdlibModule.js +48 -0
  480. package/out/src/baseTypes/basics/types/stdlibModule.js.map +1 -0
  481. package/out/src/baseTypes/index.d.ts +6 -0
  482. package/out/src/baseTypes/index.js +21 -0
  483. package/out/src/baseTypes/index.js.map +1 -0
  484. package/out/src/baseTypes/index__.d.ts +49 -0
  485. package/out/src/baseTypes/index__.js +62 -0
  486. package/out/src/baseTypes/index__.js.map +1 -0
  487. package/out/src/common/BaseNode.d.ts +231 -0
  488. package/out/src/common/BaseNode.js +683 -0
  489. package/out/src/common/BaseNode.js.map +1 -0
  490. package/out/src/common/Command.d.ts +8 -0
  491. package/out/src/common/Command.js +32 -0
  492. package/out/src/common/Command.js.map +1 -0
  493. package/out/src/common/ComponentAPI.d.ts +110 -0
  494. package/out/src/common/ComponentAPI.js +3 -0
  495. package/out/src/common/ComponentAPI.js.map +1 -0
  496. package/out/src/common/EventEmitter.d.ts +54 -0
  497. package/out/src/common/EventEmitter.js +68 -0
  498. package/out/src/common/EventEmitter.js.map +1 -0
  499. package/out/src/common/Messager.d.ts +86 -0
  500. package/out/src/common/Messager.js +187 -0
  501. package/out/src/common/Messager.js.map +1 -0
  502. package/out/src/common/classMap.d.ts +4 -0
  503. package/out/src/common/classMap.js +5 -0
  504. package/out/src/common/classMap.js.map +1 -0
  505. package/out/src/common/index.d.ts +4 -0
  506. package/out/src/common/index.js +21 -0
  507. package/out/src/common/index.js.map +1 -0
  508. package/out/src/concepts/App__.d.ts +1077 -0
  509. package/out/src/concepts/App__.js +1453 -0
  510. package/out/src/concepts/App__.js.map +1 -0
  511. package/out/src/concepts/Argument__.d.ts +56 -0
  512. package/out/src/concepts/Argument__.js +177 -0
  513. package/out/src/concepts/Argument__.js.map +1 -0
  514. package/out/src/concepts/Assignment__.d.ts +72 -0
  515. package/out/src/concepts/Assignment__.js +200 -0
  516. package/out/src/concepts/Assignment__.js.map +1 -0
  517. package/out/src/concepts/Attribute__.d.ts +101 -0
  518. package/out/src/concepts/Attribute__.js +221 -0
  519. package/out/src/concepts/Attribute__.js.map +1 -0
  520. package/out/src/concepts/BinaryExpression__.d.ts +66 -0
  521. package/out/src/concepts/BinaryExpression__.js +237 -0
  522. package/out/src/concepts/BinaryExpression__.js.map +1 -0
  523. package/out/src/concepts/BindAttribute__.d.ts +211 -0
  524. package/out/src/concepts/BindAttribute__.js +395 -0
  525. package/out/src/concepts/BindAttribute__.js.map +1 -0
  526. package/out/src/concepts/BindDirective__.d.ts +92 -0
  527. package/out/src/concepts/BindDirective__.js +221 -0
  528. package/out/src/concepts/BindDirective__.js.map +1 -0
  529. package/out/src/concepts/BindEvent__.d.ts +133 -0
  530. package/out/src/concepts/BindEvent__.js +258 -0
  531. package/out/src/concepts/BindEvent__.js.map +1 -0
  532. package/out/src/concepts/BooleanLiteral__.d.ts +27 -0
  533. package/out/src/concepts/BooleanLiteral__.js +74 -0
  534. package/out/src/concepts/BooleanLiteral__.js.map +1 -0
  535. package/out/src/concepts/CallFunction__.d.ts +100 -0
  536. package/out/src/concepts/CallFunction__.js +231 -0
  537. package/out/src/concepts/CallFunction__.js.map +1 -0
  538. package/out/src/concepts/CallInterface__.d.ts +100 -0
  539. package/out/src/concepts/CallInterface__.js +220 -0
  540. package/out/src/concepts/CallInterface__.js.map +1 -0
  541. package/out/src/concepts/CallLogic__.d.ts +116 -0
  542. package/out/src/concepts/CallLogic__.js +305 -0
  543. package/out/src/concepts/CallLogic__.js.map +1 -0
  544. package/out/src/concepts/CallQueryComponent__.d.ts +312 -0
  545. package/out/src/concepts/CallQueryComponent__.js +738 -0
  546. package/out/src/concepts/CallQueryComponent__.js.map +1 -0
  547. package/out/src/concepts/Comment__.d.ts +35 -0
  548. package/out/src/concepts/Comment__.js +99 -0
  549. package/out/src/concepts/Comment__.js.map +1 -0
  550. package/out/src/concepts/CompletionProperty__.d.ts +95 -0
  551. package/out/src/concepts/CompletionProperty__.js +231 -0
  552. package/out/src/concepts/CompletionProperty__.js.map +1 -0
  553. package/out/src/concepts/Constant__.d.ts +96 -0
  554. package/out/src/concepts/Constant__.js +220 -0
  555. package/out/src/concepts/Constant__.js.map +1 -0
  556. package/out/src/concepts/DataElement__.d.ts +45 -0
  557. package/out/src/concepts/DataElement__.js +114 -0
  558. package/out/src/concepts/DataElement__.js.map +1 -0
  559. package/out/src/concepts/Destination__.d.ts +106 -0
  560. package/out/src/concepts/Destination__.js +263 -0
  561. package/out/src/concepts/Destination__.js.map +1 -0
  562. package/out/src/concepts/End__.d.ts +28 -0
  563. package/out/src/concepts/End__.js +102 -0
  564. package/out/src/concepts/End__.js.map +1 -0
  565. package/out/src/concepts/EntityIndex__.d.ts +81 -0
  566. package/out/src/concepts/EntityIndex__.js +189 -0
  567. package/out/src/concepts/EntityIndex__.js.map +1 -0
  568. package/out/src/concepts/EntityProperty__.d.ts +207 -0
  569. package/out/src/concepts/EntityProperty__.js +472 -0
  570. package/out/src/concepts/EntityProperty__.js.map +1 -0
  571. package/out/src/concepts/Entity__.d.ts +282 -0
  572. package/out/src/concepts/Entity__.js +520 -0
  573. package/out/src/concepts/Entity__.js.map +1 -0
  574. package/out/src/concepts/EnumItem__.d.ts +60 -0
  575. package/out/src/concepts/EnumItem__.js +136 -0
  576. package/out/src/concepts/EnumItem__.js.map +1 -0
  577. package/out/src/concepts/Enum__.d.ts +130 -0
  578. package/out/src/concepts/Enum__.js +259 -0
  579. package/out/src/concepts/Enum__.js.map +1 -0
  580. package/out/src/concepts/Event__.d.ts +142 -0
  581. package/out/src/concepts/Event__.js +242 -0
  582. package/out/src/concepts/Event__.js.map +1 -0
  583. package/out/src/concepts/ForEachStatement__.d.ts +194 -0
  584. package/out/src/concepts/ForEachStatement__.js +410 -0
  585. package/out/src/concepts/ForEachStatement__.js.map +1 -0
  586. package/out/src/concepts/Function__.d.ts +387 -0
  587. package/out/src/concepts/Function__.js +557 -0
  588. package/out/src/concepts/Function__.js.map +1 -0
  589. package/out/src/concepts/Identifier__.d.ts +44 -0
  590. package/out/src/concepts/Identifier__.js +159 -0
  591. package/out/src/concepts/Identifier__.js.map +1 -0
  592. package/out/src/concepts/IfStatement__.d.ts +150 -0
  593. package/out/src/concepts/IfStatement__.js +310 -0
  594. package/out/src/concepts/IfStatement__.js.map +1 -0
  595. package/out/src/concepts/InterfaceParam__.d.ts +110 -0
  596. package/out/src/concepts/InterfaceParam__.js +273 -0
  597. package/out/src/concepts/InterfaceParam__.js.map +1 -0
  598. package/out/src/concepts/Interface__.d.ts +247 -0
  599. package/out/src/concepts/Interface__.js +441 -0
  600. package/out/src/concepts/Interface__.js.map +1 -0
  601. package/out/src/concepts/JSBlock__.d.ts +35 -0
  602. package/out/src/concepts/JSBlock__.js +106 -0
  603. package/out/src/concepts/JSBlock__.js.map +1 -0
  604. package/out/src/concepts/LogicItem__.d.ts +114 -0
  605. package/out/src/concepts/LogicItem__.js +216 -0
  606. package/out/src/concepts/LogicItem__.js.map +1 -0
  607. package/out/src/concepts/Logic__.d.ts +571 -0
  608. package/out/src/concepts/Logic__.js +951 -0
  609. package/out/src/concepts/Logic__.js.map +1 -0
  610. package/out/src/concepts/MemberExpression__.d.ts +69 -0
  611. package/out/src/concepts/MemberExpression__.js +204 -0
  612. package/out/src/concepts/MemberExpression__.js.map +1 -0
  613. package/out/src/concepts/Module__.d.ts +747 -0
  614. package/out/src/concepts/Module__.js +982 -0
  615. package/out/src/concepts/Module__.js.map +1 -0
  616. package/out/src/concepts/Namespace__.d.ts +1068 -0
  617. package/out/src/concepts/Namespace__.js +1397 -0
  618. package/out/src/concepts/Namespace__.js.map +1 -0
  619. package/out/src/concepts/NullLiteral__.d.ts +23 -0
  620. package/out/src/concepts/NullLiteral__.js +67 -0
  621. package/out/src/concepts/NullLiteral__.js.map +1 -0
  622. package/out/src/concepts/NumericLiteral__.d.ts +55 -0
  623. package/out/src/concepts/NumericLiteral__.js +164 -0
  624. package/out/src/concepts/NumericLiteral__.js.map +1 -0
  625. package/out/src/concepts/Param__.d.ts +143 -0
  626. package/out/src/concepts/Param__.js +327 -0
  627. package/out/src/concepts/Param__.js.map +1 -0
  628. package/out/src/concepts/Point__.d.ts +30 -0
  629. package/out/src/concepts/Point__.js +75 -0
  630. package/out/src/concepts/Point__.js.map +1 -0
  631. package/out/src/concepts/ProcessComponent__.d.ts +218 -0
  632. package/out/src/concepts/ProcessComponent__.js +333 -0
  633. package/out/src/concepts/ProcessComponent__.js.map +1 -0
  634. package/out/src/concepts/ProcessElement__.d.ts +557 -0
  635. package/out/src/concepts/ProcessElement__.js +889 -0
  636. package/out/src/concepts/ProcessElement__.js.map +1 -0
  637. package/out/src/concepts/ProcessOutcome__.d.ts +34 -0
  638. package/out/src/concepts/ProcessOutcome__.js +94 -0
  639. package/out/src/concepts/ProcessOutcome__.js.map +1 -0
  640. package/out/src/concepts/Process__.d.ts +425 -0
  641. package/out/src/concepts/Process__.js +736 -0
  642. package/out/src/concepts/Process__.js.map +1 -0
  643. package/out/src/concepts/QueryAggregateExpression__.d.ts +56 -0
  644. package/out/src/concepts/QueryAggregateExpression__.js +177 -0
  645. package/out/src/concepts/QueryAggregateExpression__.js.map +1 -0
  646. package/out/src/concepts/QueryFieldExpression__.d.ts +51 -0
  647. package/out/src/concepts/QueryFieldExpression__.js +129 -0
  648. package/out/src/concepts/QueryFieldExpression__.js.map +1 -0
  649. package/out/src/concepts/QueryFromExpression__.d.ts +95 -0
  650. package/out/src/concepts/QueryFromExpression__.js +188 -0
  651. package/out/src/concepts/QueryFromExpression__.js.map +1 -0
  652. package/out/src/concepts/QueryGroupByExpression__.d.ts +46 -0
  653. package/out/src/concepts/QueryGroupByExpression__.js +126 -0
  654. package/out/src/concepts/QueryGroupByExpression__.js.map +1 -0
  655. package/out/src/concepts/QueryJoinExpression__.d.ts +182 -0
  656. package/out/src/concepts/QueryJoinExpression__.js +308 -0
  657. package/out/src/concepts/QueryJoinExpression__.js.map +1 -0
  658. package/out/src/concepts/QueryLimitExpression__.d.ts +60 -0
  659. package/out/src/concepts/QueryLimitExpression__.js +163 -0
  660. package/out/src/concepts/QueryLimitExpression__.js.map +1 -0
  661. package/out/src/concepts/QueryOrderByExpression__.d.ts +71 -0
  662. package/out/src/concepts/QueryOrderByExpression__.js +176 -0
  663. package/out/src/concepts/QueryOrderByExpression__.js.map +1 -0
  664. package/out/src/concepts/QuerySelectExpression__.d.ts +118 -0
  665. package/out/src/concepts/QuerySelectExpression__.js +210 -0
  666. package/out/src/concepts/QuerySelectExpression__.js.map +1 -0
  667. package/out/src/concepts/Rect__.d.ts +38 -0
  668. package/out/src/concepts/Rect__.js +89 -0
  669. package/out/src/concepts/Rect__.js.map +1 -0
  670. package/out/src/concepts/Return__.d.ts +129 -0
  671. package/out/src/concepts/Return__.js +291 -0
  672. package/out/src/concepts/Return__.js.map +1 -0
  673. package/out/src/concepts/Role__.d.ts +52 -0
  674. package/out/src/concepts/Role__.js +131 -0
  675. package/out/src/concepts/Role__.js.map +1 -0
  676. package/out/src/concepts/Slot__.d.ts +57 -0
  677. package/out/src/concepts/Slot__.js +114 -0
  678. package/out/src/concepts/Slot__.js.map +1 -0
  679. package/out/src/concepts/SqlQueryComponent__.d.ts +49 -0
  680. package/out/src/concepts/SqlQueryComponent__.js +125 -0
  681. package/out/src/concepts/SqlQueryComponent__.js.map +1 -0
  682. package/out/src/concepts/Start__.d.ts +28 -0
  683. package/out/src/concepts/Start__.js +81 -0
  684. package/out/src/concepts/Start__.js.map +1 -0
  685. package/out/src/concepts/StringLiteral__.d.ts +37 -0
  686. package/out/src/concepts/StringLiteral__.js +135 -0
  687. package/out/src/concepts/StringLiteral__.js.map +1 -0
  688. package/out/src/concepts/StructureProperty__.d.ts +123 -0
  689. package/out/src/concepts/StructureProperty__.js +294 -0
  690. package/out/src/concepts/StructureProperty__.js.map +1 -0
  691. package/out/src/concepts/Structure__.d.ts +231 -0
  692. package/out/src/concepts/Structure__.js +386 -0
  693. package/out/src/concepts/Structure__.js.map +1 -0
  694. package/out/src/concepts/SwitchCase__.d.ts +97 -0
  695. package/out/src/concepts/SwitchCase__.js +270 -0
  696. package/out/src/concepts/SwitchCase__.js.map +1 -0
  697. package/out/src/concepts/SwitchStatement__.d.ts +86 -0
  698. package/out/src/concepts/SwitchStatement__.js +187 -0
  699. package/out/src/concepts/SwitchStatement__.js.map +1 -0
  700. package/out/src/concepts/Theme__.d.ts +36 -0
  701. package/out/src/concepts/Theme__.js +86 -0
  702. package/out/src/concepts/Theme__.js.map +1 -0
  703. package/out/src/concepts/Transactional__.d.ts +76 -0
  704. package/out/src/concepts/Transactional__.js +151 -0
  705. package/out/src/concepts/Transactional__.js.map +1 -0
  706. package/out/src/concepts/TypeAnnotation__.d.ts +125 -0
  707. package/out/src/concepts/TypeAnnotation__.js +305 -0
  708. package/out/src/concepts/TypeAnnotation__.js.map +1 -0
  709. package/out/src/concepts/TypeParam__.d.ts +20 -0
  710. package/out/src/concepts/TypeParam__.js +57 -0
  711. package/out/src/concepts/TypeParam__.js.map +1 -0
  712. package/out/src/concepts/UnaryExpression__.d.ts +48 -0
  713. package/out/src/concepts/UnaryExpression__.js +163 -0
  714. package/out/src/concepts/UnaryExpression__.js.map +1 -0
  715. package/out/src/concepts/Unparsed__.d.ts +32 -0
  716. package/out/src/concepts/Unparsed__.js +92 -0
  717. package/out/src/concepts/Unparsed__.js.map +1 -0
  718. package/out/src/concepts/UseComponent__.d.ts +30 -0
  719. package/out/src/concepts/UseComponent__.js +75 -0
  720. package/out/src/concepts/UseComponent__.js.map +1 -0
  721. package/out/src/concepts/ValidationRule__.d.ts +95 -0
  722. package/out/src/concepts/ValidationRule__.js +212 -0
  723. package/out/src/concepts/ValidationRule__.js.map +1 -0
  724. package/out/src/concepts/Variable__.d.ts +119 -0
  725. package/out/src/concepts/Variable__.js +277 -0
  726. package/out/src/concepts/Variable__.js.map +1 -0
  727. package/out/src/concepts/ViewComponent__.d.ts +472 -0
  728. package/out/src/concepts/ViewComponent__.js +644 -0
  729. package/out/src/concepts/ViewComponent__.js.map +1 -0
  730. package/out/src/concepts/ViewElement__.d.ts +483 -0
  731. package/out/src/concepts/ViewElement__.js +1167 -0
  732. package/out/src/concepts/ViewElement__.js.map +1 -0
  733. package/out/src/concepts/View__.d.ts +676 -0
  734. package/out/src/concepts/View__.js +1268 -0
  735. package/out/src/concepts/View__.js.map +1 -0
  736. package/out/src/concepts/WhileStatement__.d.ts +97 -0
  737. package/out/src/concepts/WhileStatement__.js +228 -0
  738. package/out/src/concepts/WhileStatement__.js.map +1 -0
  739. package/out/src/concepts/basics/stdlib/index.d.ts +4 -0
  740. package/out/src/concepts/basics/stdlib/index.js +23 -0
  741. package/out/src/concepts/basics/stdlib/index.js.map +1 -0
  742. package/out/src/concepts/basics/stdlib/nasl.collection.d.ts +5 -0
  743. package/out/src/concepts/basics/stdlib/nasl.collection.js +54 -0
  744. package/out/src/concepts/basics/stdlib/nasl.collection.js.map +1 -0
  745. package/out/src/concepts/basics/stdlib/nasl.core.d.ts +3 -0
  746. package/out/src/concepts/basics/stdlib/nasl.core.js +15 -0
  747. package/out/src/concepts/basics/stdlib/nasl.core.js.map +1 -0
  748. package/out/src/concepts/basics/stdlib/nasl.interface.d.ts +5 -0
  749. package/out/src/concepts/basics/stdlib/nasl.interface.js +43 -0
  750. package/out/src/concepts/basics/stdlib/nasl.interface.js.map +1 -0
  751. package/out/src/concepts/basics/stdlib/nasl.process.d.ts +3 -0
  752. package/out/src/concepts/basics/stdlib/nasl.process.js +43 -0
  753. package/out/src/concepts/basics/stdlib/nasl.process.js.map +1 -0
  754. package/out/src/concepts/basics/stdlib/nasl.ui.d.ts +5 -0
  755. package/out/src/concepts/basics/stdlib/nasl.ui.js +85 -0
  756. package/out/src/concepts/basics/stdlib/nasl.ui.js.map +1 -0
  757. package/out/src/concepts/basics/stdlib/nasl.util.d.ts +3 -0
  758. package/out/src/concepts/basics/stdlib/nasl.util.js +587 -0
  759. package/out/src/concepts/basics/stdlib/nasl.util.js.map +1 -0
  760. package/out/src/concepts/basics/stdlib/nasl.validate.d.ts +3 -0
  761. package/out/src/concepts/basics/stdlib/nasl.validate.js +527 -0
  762. package/out/src/concepts/basics/stdlib/nasl.validate.js.map +1 -0
  763. package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.d.ts +5 -0
  764. package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.js +26 -0
  765. package/out/src/concepts/basics/stdlib/reference2TypeAnnotationList.js.map +1 -0
  766. package/out/src/concepts/basics/types/coreTypeList.d.ts +2 -0
  767. package/out/src/concepts/basics/types/coreTypeList.js +17 -0
  768. package/out/src/concepts/basics/types/coreTypeList.js.map +1 -0
  769. package/out/src/concepts/basics/types/index.d.ts +11 -0
  770. package/out/src/concepts/basics/types/index.js +20 -0
  771. package/out/src/concepts/basics/types/index.js.map +1 -0
  772. package/out/src/concepts/index.d.ts +5 -0
  773. package/out/src/concepts/index.js +24 -0
  774. package/out/src/concepts/index.js.map +1 -0
  775. package/out/src/concepts/index__.d.ts +77 -0
  776. package/out/src/concepts/index__.js +94 -0
  777. package/out/src/concepts/index__.js.map +1 -0
  778. package/out/src/config.d.ts +43 -0
  779. package/out/src/config.js +72 -0
  780. package/out/src/config.js.map +1 -0
  781. package/out/src/decorators/index.d.ts +54 -0
  782. package/out/src/decorators/index.js +146 -0
  783. package/out/src/decorators/index.js.map +1 -0
  784. package/out/src/generator/compileComponent.d.ts +11 -0
  785. package/out/src/generator/compileComponent.js +12 -0
  786. package/out/src/generator/compileComponent.js.map +1 -0
  787. package/out/src/generator/debugInFileStorage.d.ts +3 -0
  788. package/out/src/generator/debugInFileStorage.js +15 -0
  789. package/out/src/generator/debugInFileStorage.js.map +1 -0
  790. package/out/src/generator/genAllEmbeddedTS.d.ts +7 -0
  791. package/out/src/generator/genAllEmbeddedTS.js +20 -0
  792. package/out/src/generator/genAllEmbeddedTS.js.map +1 -0
  793. package/out/src/generator/genBundleFiles.d.ts +38 -0
  794. package/out/src/generator/genBundleFiles.js +219 -0
  795. package/out/src/generator/genBundleFiles.js.map +1 -0
  796. package/out/src/generator/genHash.d.ts +7 -0
  797. package/out/src/generator/genHash.js +39 -0
  798. package/out/src/generator/genHash.js.map +1 -0
  799. package/out/src/generator/index.d.ts +4 -0
  800. package/out/src/generator/index.js +21 -0
  801. package/out/src/generator/index.js.map +1 -0
  802. package/out/src/generator/styleReplacer.d.ts +3 -0
  803. package/out/src/generator/styleReplacer.js +71 -0
  804. package/out/src/generator/styleReplacer.js.map +1 -0
  805. package/out/src/index.d.ts +9 -0
  806. package/out/src/index.js +48 -0
  807. package/out/src/index.js.map +1 -0
  808. package/out/src/init.d.ts +1 -0
  809. package/out/src/init.js +140 -0
  810. package/out/src/init.js.map +1 -0
  811. package/out/src/manager/diagnostic.d.ts +38 -0
  812. package/out/src/manager/diagnostic.js +84 -0
  813. package/out/src/manager/diagnostic.js.map +1 -0
  814. package/out/src/manager/history.d.ts +0 -0
  815. package/out/src/manager/history.js +1 -0
  816. package/out/src/manager/history.js.map +1 -0
  817. package/out/src/manager/problem.d.ts +0 -0
  818. package/out/src/manager/problem.js +1 -0
  819. package/out/src/manager/problem.js.map +1 -0
  820. package/out/src/map.d.ts +4 -0
  821. package/out/src/map.js +62 -0
  822. package/out/src/map.js.map +1 -0
  823. package/out/src/naslServer/index.d.ts +55 -0
  824. package/out/src/naslServer/index.js +296 -0
  825. package/out/src/naslServer/index.js.map +1 -0
  826. package/out/src/naslServer/translator.d.ts +3 -0
  827. package/out/src/naslServer/translator.js +78 -0
  828. package/out/src/naslServer/translator.js.map +1 -0
  829. package/out/src/server/entity2LogicNamespace.d.ts +2 -0
  830. package/out/src/server/entity2LogicNamespace.js +192 -0
  831. package/out/src/server/entity2LogicNamespace.js.map +1 -0
  832. package/out/src/server/getFunctions.d.ts +2 -0
  833. package/out/src/server/getFunctions.js +14 -0
  834. package/out/src/server/getFunctions.js.map +1 -0
  835. package/out/src/server/getInterfaces.d.ts +2 -0
  836. package/out/src/server/getInterfaces.js +48 -0
  837. package/out/src/server/getInterfaces.js.map +1 -0
  838. package/out/src/server/getLogics.d.ts +2 -0
  839. package/out/src/server/getLogics.js +83 -0
  840. package/out/src/server/getLogics.js.map +1 -0
  841. package/out/src/server/getMemberIdentifier.d.ts +5 -0
  842. package/out/src/server/getMemberIdentifier.js +102 -0
  843. package/out/src/server/getMemberIdentifier.js.map +1 -0
  844. package/out/src/server/getProcessComponents.d.ts +2 -0
  845. package/out/src/server/getProcessComponents.js +13 -0
  846. package/out/src/server/getProcessComponents.js.map +1 -0
  847. package/out/src/server/getProcesses.d.ts +19 -0
  848. package/out/src/server/getProcesses.js +106 -0
  849. package/out/src/server/getProcesses.js.map +1 -0
  850. package/out/src/server/getValidates.d.ts +3 -0
  851. package/out/src/server/getValidates.js +14 -0
  852. package/out/src/server/getValidates.js.map +1 -0
  853. package/out/src/server/index.d.ts +2 -0
  854. package/out/src/server/index.js +26 -0
  855. package/out/src/server/index.js.map +1 -0
  856. package/out/src/server/naslServer.d.ts +139 -0
  857. package/out/src/server/naslServer.js +1120 -0
  858. package/out/src/server/naslServer.js.map +1 -0
  859. package/out/src/server/process2LogicNamespace.d.ts +2 -0
  860. package/out/src/server/process2LogicNamespace.js +24 -0
  861. package/out/src/server/process2LogicNamespace.js.map +1 -0
  862. package/out/src/server/translator.d.ts +5 -0
  863. package/out/src/server/translator.js +150 -0
  864. package/out/src/server/translator.js.map +1 -0
  865. package/out/src/service/app/api.d.ts +61 -0
  866. package/out/src/service/app/api.js +77 -0
  867. package/out/src/service/app/api.js.map +1 -0
  868. package/out/src/service/app/index.d.ts +2 -0
  869. package/out/src/service/app/index.js +10 -0
  870. package/out/src/service/app/index.js.map +1 -0
  871. package/out/src/service/assets/asset.d.ts +104 -0
  872. package/out/src/service/assets/asset.js +78 -0
  873. package/out/src/service/assets/asset.js.map +1 -0
  874. package/out/src/service/assets/block.d.ts +9 -0
  875. package/out/src/service/assets/block.js +11 -0
  876. package/out/src/service/assets/block.js.map +1 -0
  877. package/out/src/service/assets/index.d.ts +2 -0
  878. package/out/src/service/assets/index.js +12 -0
  879. package/out/src/service/assets/index.js.map +1 -0
  880. package/out/src/service/common/findUsage.d.ts +9 -0
  881. package/out/src/service/common/findUsage.js +11 -0
  882. package/out/src/service/common/findUsage.js.map +1 -0
  883. package/out/src/service/common/index.d.ts +2 -0
  884. package/out/src/service/common/index.js +12 -0
  885. package/out/src/service/common/index.js.map +1 -0
  886. package/out/src/service/common/preprocess.d.ts +14 -0
  887. package/out/src/service/common/preprocess.js +75 -0
  888. package/out/src/service/common/preprocess.js.map +1 -0
  889. package/out/src/service/common/schema.d.ts +9 -0
  890. package/out/src/service/common/schema.js +12 -0
  891. package/out/src/service/common/schema.js.map +1 -0
  892. package/out/src/service/create/add.configs.d.ts +1 -0
  893. package/out/src/service/create/add.configs.js +68 -0
  894. package/out/src/service/create/add.configs.js.map +1 -0
  895. package/out/src/service/create/errHandles.d.ts +18 -0
  896. package/out/src/service/create/errHandles.js +57 -0
  897. package/out/src/service/create/errHandles.js.map +1 -0
  898. package/out/src/service/create/index.d.ts +1 -0
  899. package/out/src/service/create/index.js +77 -0
  900. package/out/src/service/create/index.js.map +1 -0
  901. package/out/src/service/data/api.d.ts +36 -0
  902. package/out/src/service/data/api.js +36 -0
  903. package/out/src/service/data/api.js.map +1 -0
  904. package/out/src/service/data/entity.d.ts +135 -0
  905. package/out/src/service/data/entity.js +103 -0
  906. package/out/src/service/data/entity.js.map +1 -0
  907. package/out/src/service/data/enum.d.ts +63 -0
  908. package/out/src/service/data/enum.js +55 -0
  909. package/out/src/service/data/enum.js.map +1 -0
  910. package/out/src/service/data/enumProperty.d.ts +28 -0
  911. package/out/src/service/data/enumProperty.js +23 -0
  912. package/out/src/service/data/enumProperty.js.map +1 -0
  913. package/out/src/service/data/generic.d.ts +9 -0
  914. package/out/src/service/data/generic.js +11 -0
  915. package/out/src/service/data/generic.js.map +1 -0
  916. package/out/src/service/data/index.d.ts +8 -0
  917. package/out/src/service/data/index.js +23 -0
  918. package/out/src/service/data/index.js.map +1 -0
  919. package/out/src/service/data/interface.d.ts +67 -0
  920. package/out/src/service/data/interface.js +58 -0
  921. package/out/src/service/data/interface.js.map +1 -0
  922. package/out/src/service/data/structure.d.ts +92 -0
  923. package/out/src/service/data/structure.js +77 -0
  924. package/out/src/service/data/structure.js.map +1 -0
  925. package/out/src/service/logic/index.d.ts +2 -0
  926. package/out/src/service/logic/index.js +14 -0
  927. package/out/src/service/logic/index.js.map +1 -0
  928. package/out/src/service/logic/logic.d.ts +157 -0
  929. package/out/src/service/logic/logic.js +116 -0
  930. package/out/src/service/logic/logic.js.map +1 -0
  931. package/out/src/service/logic/param.d.ts +37 -0
  932. package/out/src/service/logic/param.js +29 -0
  933. package/out/src/service/logic/param.js.map +1 -0
  934. package/out/src/service/nuims/api.d.ts +264 -0
  935. package/out/src/service/nuims/api.js +194 -0
  936. package/out/src/service/nuims/api.js.map +1 -0
  937. package/out/src/service/nuims/index.d.ts +2 -0
  938. package/out/src/service/nuims/index.js +17 -0
  939. package/out/src/service/nuims/index.js.map +1 -0
  940. package/out/src/service/page/api.d.ts +186 -0
  941. package/out/src/service/page/api.js +1361 -0
  942. package/out/src/service/page/api.js.map +1 -0
  943. package/out/src/service/page/attribute.d.ts +28 -0
  944. package/out/src/service/page/attribute.js +23 -0
  945. package/out/src/service/page/attribute.js.map +1 -0
  946. package/out/src/service/page/directive.d.ts +28 -0
  947. package/out/src/service/page/directive.js +23 -0
  948. package/out/src/service/page/directive.js.map +1 -0
  949. package/out/src/service/page/element.d.ts +45 -0
  950. package/out/src/service/page/element.js +42 -0
  951. package/out/src/service/page/element.js.map +1 -0
  952. package/out/src/service/page/event.d.ts +28 -0
  953. package/out/src/service/page/event.js +23 -0
  954. package/out/src/service/page/event.js.map +1 -0
  955. package/out/src/service/page/index.d.ts +8 -0
  956. package/out/src/service/page/index.js +23 -0
  957. package/out/src/service/page/index.js.map +1 -0
  958. package/out/src/service/page/lifecycle.d.ts +28 -0
  959. package/out/src/service/page/lifecycle.js +23 -0
  960. package/out/src/service/page/lifecycle.js.map +1 -0
  961. package/out/src/service/page/templates.d.ts +14 -0
  962. package/out/src/service/page/templates.js +70 -0
  963. package/out/src/service/page/templates.js.map +1 -0
  964. package/out/src/service/page/view.d.ts +130 -0
  965. package/out/src/service/page/view.js +101 -0
  966. package/out/src/service/page/view.js.map +1 -0
  967. package/out/src/service/permission/api.d.ts +57 -0
  968. package/out/src/service/permission/api.js +41 -0
  969. package/out/src/service/permission/api.js.map +1 -0
  970. package/out/src/service/permission/index.d.ts +2 -0
  971. package/out/src/service/permission/index.js +17 -0
  972. package/out/src/service/permission/index.js.map +1 -0
  973. package/out/src/service/process/api.d.ts +136 -0
  974. package/out/src/service/process/api.js +95 -0
  975. package/out/src/service/process/api.js.map +1 -0
  976. package/out/src/service/process/index.d.ts +2 -0
  977. package/out/src/service/process/index.js +10 -0
  978. package/out/src/service/process/index.js.map +1 -0
  979. package/out/src/service/storage/index.d.ts +2 -0
  980. package/out/src/service/storage/index.js +10 -0
  981. package/out/src/service/storage/index.js.map +1 -0
  982. package/out/src/service/storage/init.d.ts +7 -0
  983. package/out/src/service/storage/init.js +187 -0
  984. package/out/src/service/storage/init.js.map +1 -0
  985. package/out/src/service/storage/jsoner.d.ts +29 -0
  986. package/out/src/service/storage/jsoner.js +130 -0
  987. package/out/src/service/storage/jsoner.js.map +1 -0
  988. package/out/src/service/storage/map.d.ts +4 -0
  989. package/out/src/service/storage/map.js +54 -0
  990. package/out/src/service/storage/map.js.map +1 -0
  991. package/out/src/service/storage/storagePoint.d.ts +30 -0
  992. package/out/src/service/storage/storagePoint.js +76 -0
  993. package/out/src/service/storage/storagePoint.js.map +1 -0
  994. package/out/src/service/undoredo/api.d.ts +36 -0
  995. package/out/src/service/undoredo/api.js +29 -0
  996. package/out/src/service/undoredo/api.js.map +1 -0
  997. package/out/src/service/undoredo/index.d.ts +2 -0
  998. package/out/src/service/undoredo/index.js +10 -0
  999. package/out/src/service/undoredo/index.js.map +1 -0
  1000. package/out/src/service/webFile/api.d.ts +45 -0
  1001. package/out/src/service/webFile/api.js +35 -0
  1002. package/out/src/service/webFile/api.js.map +1 -0
  1003. package/out/src/service/webFile/index.d.ts +3 -0
  1004. package/out/src/service/webFile/index.js +32 -0
  1005. package/out/src/service/webFile/index.js.map +1 -0
  1006. package/out/src/service/webFile/loadCache.d.ts +18 -0
  1007. package/out/src/service/webFile/loadCache.js +17 -0
  1008. package/out/src/service/webFile/loadCache.js.map +1 -0
  1009. package/out/src/storagePoint.d.ts +16 -0
  1010. package/out/src/storagePoint.js +49 -0
  1011. package/out/src/storagePoint.js.map +1 -0
  1012. package/out/src/templator/genCallComponentLogic.d.ts +17 -0
  1013. package/out/src/templator/genCallComponentLogic.js +30 -0
  1014. package/out/src/templator/genCallComponentLogic.js.map +1 -0
  1015. package/out/src/templator/genCallInterface.d.ts +12 -0
  1016. package/out/src/templator/genCallInterface.js +20 -0
  1017. package/out/src/templator/genCallInterface.js.map +1 -0
  1018. package/out/src/templator/genCallLogic.d.ts +12 -0
  1019. package/out/src/templator/genCallLogic.js +26 -0
  1020. package/out/src/templator/genCallLogic.js.map +1 -0
  1021. package/out/src/templator/genCreateBlock.d.ts +10 -0
  1022. package/out/src/templator/genCreateBlock.js +304 -0
  1023. package/out/src/templator/genCreateBlock.js.map +1 -0
  1024. package/out/src/templator/genCurdEditMultipleKeyBlock.d.ts +2 -0
  1025. package/out/src/templator/genCurdEditMultipleKeyBlock.js +453 -0
  1026. package/out/src/templator/genCurdEditMultipleKeyBlock.js.map +1 -0
  1027. package/out/src/templator/genCurdMultipleKeyBlock.d.ts +3 -0
  1028. package/out/src/templator/genCurdMultipleKeyBlock.js +640 -0
  1029. package/out/src/templator/genCurdMultipleKeyBlock.js.map +1 -0
  1030. package/out/src/templator/genEditTableBlock.d.ts +51 -0
  1031. package/out/src/templator/genEditTableBlock.js +301 -0
  1032. package/out/src/templator/genEditTableBlock.js.map +1 -0
  1033. package/out/src/templator/genEnumSelectBlock.d.ts +10 -0
  1034. package/out/src/templator/genEnumSelectBlock.js +23 -0
  1035. package/out/src/templator/genEnumSelectBlock.js.map +1 -0
  1036. package/out/src/templator/genGetBlock.d.ts +6 -0
  1037. package/out/src/templator/genGetBlock.js +133 -0
  1038. package/out/src/templator/genGetBlock.js.map +1 -0
  1039. package/out/src/templator/genGridViewBlock.d.ts +53 -0
  1040. package/out/src/templator/genGridViewBlock.js +308 -0
  1041. package/out/src/templator/genGridViewBlock.js.map +1 -0
  1042. package/out/src/templator/genListViewBlock.d.ts +19 -0
  1043. package/out/src/templator/genListViewBlock.js +137 -0
  1044. package/out/src/templator/genListViewBlock.js.map +1 -0
  1045. package/out/src/templator/genQueryComponent.d.ts +32 -0
  1046. package/out/src/templator/genQueryComponent.js +307 -0
  1047. package/out/src/templator/genQueryComponent.js.map +1 -0
  1048. package/out/src/templator/genSelectBlock.d.ts +34 -0
  1049. package/out/src/templator/genSelectBlock.js +142 -0
  1050. package/out/src/templator/genSelectBlock.js.map +1 -0
  1051. package/out/src/templator/genTableBlock.d.ts +53 -0
  1052. package/out/src/templator/genTableBlock.js +295 -0
  1053. package/out/src/templator/genTableBlock.js.map +1 -0
  1054. package/out/src/templator/genUpdateBlock.d.ts +6 -0
  1055. package/out/src/templator/genUpdateBlock.js +347 -0
  1056. package/out/src/templator/genUpdateBlock.js.map +1 -0
  1057. package/out/src/templator/index.d.ts +15 -0
  1058. package/out/src/templator/index.js +33 -0
  1059. package/out/src/templator/index.js.map +1 -0
  1060. package/out/src/templator/utils.d.ts +634 -0
  1061. package/out/src/templator/utils.js +412 -0
  1062. package/out/src/templator/utils.js.map +1 -0
  1063. package/out/src/terms/LEVEL_NAME_MAP.d.ts +26 -0
  1064. package/out/src/terms/LEVEL_NAME_MAP.js +30 -0
  1065. package/out/src/terms/LEVEL_NAME_MAP.js.map +1 -0
  1066. package/out/src/test/fixtures/env.d.ts +5 -0
  1067. package/out/src/test/fixtures/env.js +21 -0
  1068. package/out/src/test/fixtures/env.js.map +1 -0
  1069. package/out/src/test/integration/connect-file.d.ts +1 -0
  1070. package/out/src/test/integration/connect-file.js +49 -0
  1071. package/out/src/test/integration/connect-file.js.map +1 -0
  1072. package/out/src/test/units/app/App.spec.d.ts +1 -0
  1073. package/out/src/test/units/app/App.spec.js +17 -0
  1074. package/out/src/test/units/app/App.spec.js.map +1 -0
  1075. package/out/src/test/units/app/Service.spec.d.ts +1 -0
  1076. package/out/src/test/units/app/Service.spec.js +24 -0
  1077. package/out/src/test/units/app/Service.spec.js.map +1 -0
  1078. package/out/src/test/units/baseTypes/Assignment.spec.d.ts +1 -0
  1079. package/out/src/test/units/baseTypes/Assignment.spec.js +43 -0
  1080. package/out/src/test/units/baseTypes/Assignment.spec.js.map +1 -0
  1081. package/out/src/test/units/baseTypes/AssignmentExpression.spec.d.ts +1 -0
  1082. package/out/src/test/units/baseTypes/AssignmentExpression.spec.js +39 -0
  1083. package/out/src/test/units/baseTypes/AssignmentExpression.spec.js.map +1 -0
  1084. package/out/src/test/units/baseTypes/CallLogic.spec.d.ts +1 -0
  1085. package/out/src/test/units/baseTypes/CallLogic.spec.js +44 -0
  1086. package/out/src/test/units/baseTypes/CallLogic.spec.js.map +1 -0
  1087. package/out/src/test/units/baseTypes/StringLiteral.spec.d.ts +1 -0
  1088. package/out/src/test/units/baseTypes/StringLiteral.spec.js +75 -0
  1089. package/out/src/test/units/baseTypes/StringLiteral.spec.js.map +1 -0
  1090. package/out/src/test/units/baseTypes/new.spec.d.ts +1 -0
  1091. package/out/src/test/units/baseTypes/new.spec.js +37 -0
  1092. package/out/src/test/units/baseTypes/new.spec.js.map +1 -0
  1093. package/out/src/test/units/common/Vertex.spec.d.ts +1 -0
  1094. package/out/src/test/units/common/Vertex.spec.js +22 -0
  1095. package/out/src/test/units/common/Vertex.spec.js.map +1 -0
  1096. package/out/src/test/units/data/Entity.spec.d.ts +1 -0
  1097. package/out/src/test/units/data/Entity.spec.js +12 -0
  1098. package/out/src/test/units/data/Entity.spec.js.map +1 -0
  1099. package/out/src/test/units/login.spec.d.ts +1 -0
  1100. package/out/src/test/units/login.spec.js +12 -0
  1101. package/out/src/test/units/login.spec.js.map +1 -0
  1102. package/out/src/test/units/page/Block.spec.d.ts +0 -0
  1103. package/out/src/test/units/page/Block.spec.js +13 -0
  1104. package/out/src/test/units/page/Block.spec.js.map +1 -0
  1105. package/out/src/test/units/page/Element.spec.d.ts +1 -0
  1106. package/out/src/test/units/page/Element.spec.js +44 -0
  1107. package/out/src/test/units/page/Element.spec.js.map +1 -0
  1108. package/out/src/test/units/temp/temp.spec.d.ts +1 -0
  1109. package/out/src/test/units/temp/temp.spec.js +68 -0
  1110. package/out/src/test/units/temp/temp.spec.js.map +1 -0
  1111. package/out/src/translator/index.d.ts +47 -0
  1112. package/out/src/translator/index.js +108 -0
  1113. package/out/src/translator/index.js.map +1 -0
  1114. package/out/src/translator/lsp.d.ts +45 -0
  1115. package/out/src/translator/lsp.js +6 -0
  1116. package/out/src/translator/lsp.js.map +1 -0
  1117. package/out/src/translator/tsp.d.ts +12 -0
  1118. package/out/src/translator/tsp.js +3 -0
  1119. package/out/src/translator/tsp.js.map +1 -0
  1120. package/out/src/types/app/App.d.ts +148 -0
  1121. package/out/src/types/app/App.js +358 -0
  1122. package/out/src/types/app/App.js.map +1 -0
  1123. package/out/src/types/app/History.d.ts +36 -0
  1124. package/out/src/types/app/History.js +366 -0
  1125. package/out/src/types/app/History.js.map +1 -0
  1126. package/out/src/types/app/Service.d.ts +220 -0
  1127. package/out/src/types/app/Service.js +831 -0
  1128. package/out/src/types/app/Service.js.map +1 -0
  1129. package/out/src/types/cache.d.ts +6 -0
  1130. package/out/src/types/cache.js +54 -0
  1131. package/out/src/types/cache.js.map +1 -0
  1132. package/out/src/types/cacheData.d.ts +4 -0
  1133. package/out/src/types/cacheData.js +34 -0
  1134. package/out/src/types/cacheData.js.map +1 -0
  1135. package/out/src/types/classMap.d.ts +4 -0
  1136. package/out/src/types/classMap.js +5 -0
  1137. package/out/src/types/classMap.js.map +1 -0
  1138. package/out/src/types/common/ComponentAPI.d.ts +110 -0
  1139. package/out/src/types/common/ComponentAPI.js +3 -0
  1140. package/out/src/types/common/ComponentAPI.js.map +1 -0
  1141. package/out/src/types/common/EventEmitter.d.ts +37 -0
  1142. package/out/src/types/common/EventEmitter.js +70 -0
  1143. package/out/src/types/common/EventEmitter.js.map +1 -0
  1144. package/out/src/types/common/PackageJSON.d.ts +32 -0
  1145. package/out/src/types/common/PackageJSON.js +3 -0
  1146. package/out/src/types/common/PackageJSON.js.map +1 -0
  1147. package/out/src/types/common/Vertex.d.ts +205 -0
  1148. package/out/src/types/common/Vertex.js +591 -0
  1149. package/out/src/types/common/Vertex.js.map +1 -0
  1150. package/out/src/types/config.d.ts +32 -0
  1151. package/out/src/types/config.js +30 -0
  1152. package/out/src/types/config.js.map +1 -0
  1153. package/out/src/types/data/DataNode.d.ts +24 -0
  1154. package/out/src/types/data/DataNode.js +52 -0
  1155. package/out/src/types/data/DataNode.js.map +1 -0
  1156. package/out/src/types/data/Entity.d.ts +124 -0
  1157. package/out/src/types/data/Entity.js +537 -0
  1158. package/out/src/types/data/Entity.js.map +1 -0
  1159. package/out/src/types/data/EntityIndex.d.ts +87 -0
  1160. package/out/src/types/data/EntityIndex.js +262 -0
  1161. package/out/src/types/data/EntityIndex.js.map +1 -0
  1162. package/out/src/types/data/EntityProperty.d.ts +196 -0
  1163. package/out/src/types/data/EntityProperty.js +584 -0
  1164. package/out/src/types/data/EntityProperty.js.map +1 -0
  1165. package/out/src/types/data/Enum.d.ts +97 -0
  1166. package/out/src/types/data/Enum.js +267 -0
  1167. package/out/src/types/data/Enum.js.map +1 -0
  1168. package/out/src/types/data/EnumItem.d.ts +57 -0
  1169. package/out/src/types/data/EnumItem.js +170 -0
  1170. package/out/src/types/data/EnumItem.js.map +1 -0
  1171. package/out/src/types/data/GlobalLogicNode.d.ts +44 -0
  1172. package/out/src/types/data/GlobalLogicNode.js +201 -0
  1173. package/out/src/types/data/GlobalLogicNode.js.map +1 -0
  1174. package/out/src/types/data/Interface.d.ts +153 -0
  1175. package/out/src/types/data/Interface.js +482 -0
  1176. package/out/src/types/data/Interface.js.map +1 -0
  1177. package/out/src/types/data/Schema.d.ts +121 -0
  1178. package/out/src/types/data/Schema.js +3 -0
  1179. package/out/src/types/data/Schema.js.map +1 -0
  1180. package/out/src/types/data/Structure.d.ts +104 -0
  1181. package/out/src/types/data/Structure.js +319 -0
  1182. package/out/src/types/data/Structure.js.map +1 -0
  1183. package/out/src/types/data/StructureProperty.d.ts +134 -0
  1184. package/out/src/types/data/StructureProperty.js +380 -0
  1185. package/out/src/types/data/StructureProperty.js.map +1 -0
  1186. package/out/src/types/data/basicTypes.d.ts +25 -0
  1187. package/out/src/types/data/basicTypes.js +77 -0
  1188. package/out/src/types/data/basicTypes.js.map +1 -0
  1189. package/out/src/types/data/dataTypeUtils.d.ts +94 -0
  1190. package/out/src/types/data/dataTypeUtils.js +441 -0
  1191. package/out/src/types/data/dataTypeUtils.js.map +1 -0
  1192. package/out/src/types/data/dataTypes.d.ts +20 -0
  1193. package/out/src/types/data/dataTypes.js +47 -0
  1194. package/out/src/types/data/dataTypes.js.map +1 -0
  1195. package/out/src/types/data/entityUtils.d.ts +164 -0
  1196. package/out/src/types/data/entityUtils.js +632 -0
  1197. package/out/src/types/data/entityUtils.js.map +1 -0
  1198. package/out/src/types/data/genBlock/builtInFunctions.json +545 -0
  1199. package/out/src/types/data/genBlock/genCallComponentLogic.d.ts +20 -0
  1200. package/out/src/types/data/genBlock/genCallComponentLogic.js +32 -0
  1201. package/out/src/types/data/genBlock/genCallComponentLogic.js.map +1 -0
  1202. package/out/src/types/data/genBlock/genCallInterface.d.ts +41 -0
  1203. package/out/src/types/data/genBlock/genCallInterface.js +86 -0
  1204. package/out/src/types/data/genBlock/genCallInterface.js.map +1 -0
  1205. package/out/src/types/data/genBlock/genCreateBlock.d.ts +10 -0
  1206. package/out/src/types/data/genBlock/genCreateBlock.js +313 -0
  1207. package/out/src/types/data/genBlock/genCreateBlock.js.map +1 -0
  1208. package/out/src/types/data/genBlock/genCurdBlock.d.ts +4 -0
  1209. package/out/src/types/data/genBlock/genCurdBlock.js +648 -0
  1210. package/out/src/types/data/genBlock/genCurdBlock.js.map +1 -0
  1211. package/out/src/types/data/genBlock/genCurdEditTableBlock.d.ts +3 -0
  1212. package/out/src/types/data/genBlock/genCurdEditTableBlock.js +578 -0
  1213. package/out/src/types/data/genBlock/genCurdEditTableBlock.js.map +1 -0
  1214. package/out/src/types/data/genBlock/genEditTableBlock.d.ts +234 -0
  1215. package/out/src/types/data/genBlock/genEditTableBlock.js +419 -0
  1216. package/out/src/types/data/genBlock/genEditTableBlock.js.map +1 -0
  1217. package/out/src/types/data/genBlock/genEnumSelectBlock.d.ts +10 -0
  1218. package/out/src/types/data/genBlock/genEnumSelectBlock.js +23 -0
  1219. package/out/src/types/data/genBlock/genEnumSelectBlock.js.map +1 -0
  1220. package/out/src/types/data/genBlock/genGetBlock.d.ts +6 -0
  1221. package/out/src/types/data/genBlock/genGetBlock.js +151 -0
  1222. package/out/src/types/data/genBlock/genGetBlock.js.map +1 -0
  1223. package/out/src/types/data/genBlock/genGridViewBlock.d.ts +136 -0
  1224. package/out/src/types/data/genBlock/genGridViewBlock.js +274 -0
  1225. package/out/src/types/data/genBlock/genGridViewBlock.js.map +1 -0
  1226. package/out/src/types/data/genBlock/genListViewBlock.d.ts +63 -0
  1227. package/out/src/types/data/genBlock/genListViewBlock.js +110 -0
  1228. package/out/src/types/data/genBlock/genListViewBlock.js.map +1 -0
  1229. package/out/src/types/data/genBlock/genQueryComponent.d.ts +336 -0
  1230. package/out/src/types/data/genBlock/genQueryComponent.js +526 -0
  1231. package/out/src/types/data/genBlock/genQueryComponent.js.map +1 -0
  1232. package/out/src/types/data/genBlock/genSelectBlock.d.ts +63 -0
  1233. package/out/src/types/data/genBlock/genSelectBlock.js +106 -0
  1234. package/out/src/types/data/genBlock/genSelectBlock.js.map +1 -0
  1235. package/out/src/types/data/genBlock/genTableBlock.d.ts +136 -0
  1236. package/out/src/types/data/genBlock/genTableBlock.js +270 -0
  1237. package/out/src/types/data/genBlock/genTableBlock.js.map +1 -0
  1238. package/out/src/types/data/genBlock/genUpdateBlock.d.ts +6 -0
  1239. package/out/src/types/data/genBlock/genUpdateBlock.js +384 -0
  1240. package/out/src/types/data/genBlock/genUpdateBlock.js.map +1 -0
  1241. package/out/src/types/data/genBlock/index.d.ts +17 -0
  1242. package/out/src/types/data/genBlock/index.js +31 -0
  1243. package/out/src/types/data/genBlock/index.js.map +1 -0
  1244. package/out/src/types/data/genBlock/utils.d.ts +99 -0
  1245. package/out/src/types/data/genBlock/utils.js +224 -0
  1246. package/out/src/types/data/genBlock/utils.js.map +1 -0
  1247. package/out/src/types/data/genericTypes.d.ts +40 -0
  1248. package/out/src/types/data/genericTypes.js +145 -0
  1249. package/out/src/types/data/genericTypes.js.map +1 -0
  1250. package/out/src/types/data/systemTypes.d.ts +9 -0
  1251. package/out/src/types/data/systemTypes.js +1563 -0
  1252. package/out/src/types/data/systemTypes.js.map +1 -0
  1253. package/out/src/types/decorators/index.d.ts +31 -0
  1254. package/out/src/types/decorators/index.js +121 -0
  1255. package/out/src/types/decorators/index.js.map +1 -0
  1256. package/out/src/types/enum.d.ts +6 -0
  1257. package/out/src/types/enum.js +11 -0
  1258. package/out/src/types/enum.js.map +1 -0
  1259. package/out/src/types/index.d.ts +145 -0
  1260. package/out/src/types/index.js +226 -0
  1261. package/out/src/types/index.js.map +1 -0
  1262. package/out/src/types/logic/BaseVariable.d.ts +75 -0
  1263. package/out/src/types/logic/BaseVariable.js +159 -0
  1264. package/out/src/types/logic/BaseVariable.js.map +1 -0
  1265. package/out/src/types/logic/Logic.d.ts +180 -0
  1266. package/out/src/types/logic/Logic.js +591 -0
  1267. package/out/src/types/logic/Logic.js.map +1 -0
  1268. package/out/src/types/logic/LogicItem.d.ts +320 -0
  1269. package/out/src/types/logic/LogicItem.js +1295 -0
  1270. package/out/src/types/logic/LogicItem.js.map +1 -0
  1271. package/out/src/types/logic/Param.d.ts +86 -0
  1272. package/out/src/types/logic/Param.js +367 -0
  1273. package/out/src/types/logic/Param.js.map +1 -0
  1274. package/out/src/types/logic/Return.d.ts +73 -0
  1275. package/out/src/types/logic/Return.js +313 -0
  1276. package/out/src/types/logic/Return.js.map +1 -0
  1277. package/out/src/types/logic/Variable.d.ts +72 -0
  1278. package/out/src/types/logic/Variable.js +309 -0
  1279. package/out/src/types/logic/Variable.js.map +1 -0
  1280. package/out/src/types/logic/expressions/MemberExpression.d.ts +23 -0
  1281. package/out/src/types/logic/expressions/MemberExpression.js +52 -0
  1282. package/out/src/types/logic/expressions/MemberExpression.js.map +1 -0
  1283. package/out/src/types/logic/expressions/NumericLiteral.d.ts +19 -0
  1284. package/out/src/types/logic/expressions/NumericLiteral.js +42 -0
  1285. package/out/src/types/logic/expressions/NumericLiteral.js.map +1 -0
  1286. package/out/src/types/logic/expressions/Unparsed.d.ts +19 -0
  1287. package/out/src/types/logic/expressions/Unparsed.js +42 -0
  1288. package/out/src/types/logic/expressions/Unparsed.js.map +1 -0
  1289. package/out/src/types/logic/nodes/BuiltInFuncParam.d.ts +27 -0
  1290. package/out/src/types/logic/nodes/BuiltInFuncParam.js +56 -0
  1291. package/out/src/types/logic/nodes/BuiltInFuncParam.js.map +1 -0
  1292. package/out/src/types/logic/nodes/BuiltInFunction.d.ts +24 -0
  1293. package/out/src/types/logic/nodes/BuiltInFunction.js +55 -0
  1294. package/out/src/types/logic/nodes/BuiltInFunction.js.map +1 -0
  1295. package/out/src/types/logic/nodes/CallConsoleLog.d.ts +19 -0
  1296. package/out/src/types/logic/nodes/CallConsoleLog.js +42 -0
  1297. package/out/src/types/logic/nodes/CallConsoleLog.js.map +1 -0
  1298. package/out/src/types/logic/nodes/CallInterParam.d.ts +23 -0
  1299. package/out/src/types/logic/nodes/CallInterParam.js +49 -0
  1300. package/out/src/types/logic/nodes/CallInterParam.js.map +1 -0
  1301. package/out/src/types/logic/nodes/CallInterface.d.ts +24 -0
  1302. package/out/src/types/logic/nodes/CallInterface.js +49 -0
  1303. package/out/src/types/logic/nodes/CallInterface.js.map +1 -0
  1304. package/out/src/types/logic/nodes/CallLogic.d.ts +24 -0
  1305. package/out/src/types/logic/nodes/CallLogic.js +55 -0
  1306. package/out/src/types/logic/nodes/CallLogic.js.map +1 -0
  1307. package/out/src/types/logic/nodes/CallMessageShow.d.ts +27 -0
  1308. package/out/src/types/logic/nodes/CallMessageShow.js +56 -0
  1309. package/out/src/types/logic/nodes/CallMessageShow.js.map +1 -0
  1310. package/out/src/types/logic/nodes/Destination.d.ts +32 -0
  1311. package/out/src/types/logic/nodes/Destination.js +73 -0
  1312. package/out/src/types/logic/nodes/Destination.js.map +1 -0
  1313. package/out/src/types/logic/nodes/DestinationParam.d.ts +24 -0
  1314. package/out/src/types/logic/nodes/DestinationParam.js +49 -0
  1315. package/out/src/types/logic/nodes/DestinationParam.js.map +1 -0
  1316. package/out/src/types/logic/nodes/JSBlock.d.ts +19 -0
  1317. package/out/src/types/logic/nodes/JSBlock.js +46 -0
  1318. package/out/src/types/logic/nodes/JSBlock.js.map +1 -0
  1319. package/out/src/types/logic/nodes/JSONDeserialize.d.ts +19 -0
  1320. package/out/src/types/logic/nodes/JSONDeserialize.js +42 -0
  1321. package/out/src/types/logic/nodes/JSONDeserialize.js.map +1 -0
  1322. package/out/src/types/logic/nodes/JSONSerialize.d.ts +19 -0
  1323. package/out/src/types/logic/nodes/JSONSerialize.js +42 -0
  1324. package/out/src/types/logic/nodes/JSONSerialize.js.map +1 -0
  1325. package/out/src/types/logic/nodes/ProcessOutcome.d.ts +27 -0
  1326. package/out/src/types/logic/nodes/ProcessOutcome.js +56 -0
  1327. package/out/src/types/logic/nodes/ProcessOutcome.js.map +1 -0
  1328. package/out/src/types/logic/tools.d.ts +15 -0
  1329. package/out/src/types/logic/tools.js +164 -0
  1330. package/out/src/types/logic/tools.js.map +1 -0
  1331. package/out/src/types/logic/translator.d.ts +1 -0
  1332. package/out/src/types/logic/translator.js +624 -0
  1333. package/out/src/types/logic/translator.js.map +1 -0
  1334. package/out/src/types/login.d.ts +7 -0
  1335. package/out/src/types/login.js +39 -0
  1336. package/out/src/types/login.js.map +1 -0
  1337. package/out/src/types/nuims/Nuims.d.ts +128 -0
  1338. package/out/src/types/nuims/Nuims.js +446 -0
  1339. package/out/src/types/nuims/Nuims.js.map +1 -0
  1340. package/out/src/types/page/Attr.d.ts +79 -0
  1341. package/out/src/types/page/Attr.js +217 -0
  1342. package/out/src/types/page/Attr.js.map +1 -0
  1343. package/out/src/types/page/Block.d.ts +65 -0
  1344. package/out/src/types/page/Block.js +82 -0
  1345. package/out/src/types/page/Block.js.map +1 -0
  1346. package/out/src/types/page/Directive.d.ts +78 -0
  1347. package/out/src/types/page/Directive.js +202 -0
  1348. package/out/src/types/page/Directive.js.map +1 -0
  1349. package/out/src/types/page/Element.d.ts +266 -0
  1350. package/out/src/types/page/Element.js +1418 -0
  1351. package/out/src/types/page/Element.js.map +1 -0
  1352. package/out/src/types/page/Event.d.ts +63 -0
  1353. package/out/src/types/page/Event.js +212 -0
  1354. package/out/src/types/page/Event.js.map +1 -0
  1355. package/out/src/types/page/Lifecycle.d.ts +58 -0
  1356. package/out/src/types/page/Lifecycle.js +192 -0
  1357. package/out/src/types/page/Lifecycle.js.map +1 -0
  1358. package/out/src/types/page/Page.d.ts +95 -0
  1359. package/out/src/types/page/Page.js +394 -0
  1360. package/out/src/types/page/Page.js.map +1 -0
  1361. package/out/src/types/page/View.d.ts +253 -0
  1362. package/out/src/types/page/View.js +1178 -0
  1363. package/out/src/types/page/View.js.map +1 -0
  1364. package/out/src/types/page/ViewParam.d.ts +73 -0
  1365. package/out/src/types/page/ViewParam.js +296 -0
  1366. package/out/src/types/page/ViewParam.js.map +1 -0
  1367. package/out/src/types/page/ViewVariable.d.ts +73 -0
  1368. package/out/src/types/page/ViewVariable.js +276 -0
  1369. package/out/src/types/page/ViewVariable.js.map +1 -0
  1370. package/out/src/types/permission/Permission.d.ts +41 -0
  1371. package/out/src/types/permission/Permission.js +122 -0
  1372. package/out/src/types/permission/Permission.js.map +1 -0
  1373. package/out/src/types/process/Process.d.ts +118 -0
  1374. package/out/src/types/process/Process.js +357 -0
  1375. package/out/src/types/process/Process.js.map +1 -0
  1376. package/out/src/types/process/ProcessComponent.d.ts +133 -0
  1377. package/out/src/types/process/ProcessComponent.js +339 -0
  1378. package/out/src/types/process/ProcessComponent.js.map +1 -0
  1379. package/out/src/types/process/ProcessComponentAttribute.d.ts +63 -0
  1380. package/out/src/types/process/ProcessComponentAttribute.js +163 -0
  1381. package/out/src/types/process/ProcessComponentAttribute.js.map +1 -0
  1382. package/out/src/types/process/ProcessComponentProperty.d.ts +37 -0
  1383. package/out/src/types/process/ProcessComponentProperty.js +81 -0
  1384. package/out/src/types/process/ProcessComponentProperty.js.map +1 -0
  1385. package/out/src/types/process/ProcessComponentReturn.d.ts +77 -0
  1386. package/out/src/types/process/ProcessComponentReturn.js +260 -0
  1387. package/out/src/types/process/ProcessComponentReturn.js.map +1 -0
  1388. package/out/src/types/process/ProcessComponentVariable.d.ts +78 -0
  1389. package/out/src/types/process/ProcessComponentVariable.js +252 -0
  1390. package/out/src/types/process/ProcessComponentVariable.js.map +1 -0
  1391. package/out/src/types/process/ProcessInterface.d.ts +112 -0
  1392. package/out/src/types/process/ProcessInterface.js +227 -0
  1393. package/out/src/types/process/ProcessInterface.js.map +1 -0
  1394. package/out/src/types/process/ProcessParam.d.ts +77 -0
  1395. package/out/src/types/process/ProcessParam.js +261 -0
  1396. package/out/src/types/process/ProcessParam.js.map +1 -0
  1397. package/out/src/types/process/ProcessProperty.d.ts +37 -0
  1398. package/out/src/types/process/ProcessProperty.js +81 -0
  1399. package/out/src/types/process/ProcessProperty.js.map +1 -0
  1400. package/out/src/types/process/ProcessReturn.d.ts +73 -0
  1401. package/out/src/types/process/ProcessReturn.js +237 -0
  1402. package/out/src/types/process/ProcessReturn.js.map +1 -0
  1403. package/out/src/types/utils/index.d.ts +26 -0
  1404. package/out/src/types/utils/index.js +90 -0
  1405. package/out/src/types/utils/index.js.map +1 -0
  1406. package/out/src/types/utils/logger.d.ts +3 -0
  1407. package/out/src/types/utils/logger.js +14 -0
  1408. package/out/src/types/utils/logger.js.map +1 -0
  1409. package/out/src/types/utils/string.d.ts +38 -0
  1410. package/out/src/types/utils/string.js +66 -0
  1411. package/out/src/types/utils/string.js.map +1 -0
  1412. package/out/src/types/utils/traverse.d.ts +35 -0
  1413. package/out/src/types/utils/traverse.js +126 -0
  1414. package/out/src/types/utils/traverse.js.map +1 -0
  1415. package/out/src/utils/index.d.ts +26 -0
  1416. package/out/src/utils/index.js +52 -0
  1417. package/out/src/utils/index.js.map +1 -0
  1418. package/out/src/utils/logger.d.ts +3 -0
  1419. package/out/src/utils/logger.js +11 -0
  1420. package/out/src/utils/logger.js.map +1 -0
  1421. package/out/src/utils/string.d.ts +38 -0
  1422. package/out/src/utils/string.js +66 -0
  1423. package/out/src/utils/string.js.map +1 -0
  1424. package/out/src/utils/traverse.d.ts +35 -0
  1425. package/out/src/utils/traverse.js +126 -0
  1426. package/out/src/utils/traverse.js.map +1 -0
  1427. package/out/test/units/baseTypes/StringLiteral.spec.d.ts +1 -0
  1428. package/out/test/units/baseTypes/StringLiteral.spec.js +71 -0
  1429. package/out/test/units/baseTypes/StringLiteral.spec.js.map +1 -0
  1430. package/out/test/units/baseTypes/new.spec.d.ts +1 -0
  1431. package/out/test/units/baseTypes/new.spec.js +33 -0
  1432. package/out/test/units/baseTypes/new.spec.js.map +1 -0
  1433. package/out/test/units/baseTypes/toEmbeddedTS.spec.d.ts +1 -0
  1434. package/out/test/units/baseTypes/toEmbeddedTS.spec.js +39 -0
  1435. package/out/test/units/baseTypes/toEmbeddedTS.spec.js.map +1 -0
  1436. package/out/test/units/config.spec.d.ts +1 -0
  1437. package/out/test/units/config.spec.js +12 -0
  1438. package/out/test/units/config.spec.js.map +1 -0
  1439. package/out/translator/index.d.ts +39 -0
  1440. package/out/translator/index.js +86 -0
  1441. package/out/translator/index.js.map +1 -0
  1442. package/out/translator/lsp.d.ts +45 -0
  1443. package/out/translator/lsp.js +6 -0
  1444. package/out/translator/lsp.js.map +1 -0
  1445. package/out/translator/tsp.d.ts +12 -0
  1446. package/out/translator/tsp.js +3 -0
  1447. package/out/translator/tsp.js.map +1 -0
  1448. package/out/types/app/App.d.ts +2 -5
  1449. package/out/types/app/App.js +2 -29
  1450. package/out/types/app/App.js.map +1 -1
  1451. package/out/types/app/Service.d.ts +0 -31
  1452. package/out/types/app/Service.js +4 -128
  1453. package/out/types/app/Service.js.map +1 -1
  1454. package/out/types/classMap.d.ts +4 -0
  1455. package/out/types/classMap.js +5 -0
  1456. package/out/types/classMap.js.map +1 -0
  1457. package/out/types/common/Vertex.d.ts +16 -34
  1458. package/out/types/common/Vertex.js +81 -63
  1459. package/out/types/common/Vertex.js.map +1 -1
  1460. package/out/types/config.d.ts +0 -1
  1461. package/out/types/config.js +0 -1
  1462. package/out/types/config.js.map +1 -1
  1463. package/out/types/data/Entity.d.ts +1 -19
  1464. package/out/types/data/Entity.js +2 -38
  1465. package/out/types/data/Entity.js.map +1 -1
  1466. package/out/types/data/EntityProperty.d.ts +0 -4
  1467. package/out/types/data/EntityProperty.js +0 -7
  1468. package/out/types/data/EntityProperty.js.map +1 -1
  1469. package/out/types/data/Enum.d.ts +0 -4
  1470. package/out/types/data/Enum.js +0 -7
  1471. package/out/types/data/Enum.js.map +1 -1
  1472. package/out/types/data/Interface.js +1 -2
  1473. package/out/types/data/Interface.js.map +1 -1
  1474. package/out/types/data/Structure.d.ts +0 -8
  1475. package/out/types/data/Structure.js +0 -19
  1476. package/out/types/data/Structure.js.map +1 -1
  1477. package/out/types/data/dataTypes.d.ts +1 -2
  1478. package/out/types/data/dataTypes.js +7 -41
  1479. package/out/types/data/dataTypes.js.map +1 -1
  1480. package/out/types/data/genBlock/builtInFunctions.json +0 -15
  1481. package/out/types/data/genBlock/genCreateBlock.js +5 -4
  1482. package/out/types/data/genBlock/genCreateBlock.js.map +1 -1
  1483. package/out/types/data/genBlock/genListViewBlock.js +1 -1
  1484. package/out/types/data/genBlock/genListViewBlock.js.map +1 -1
  1485. package/out/types/data/genBlock/genTableBlock.js +2 -2
  1486. package/out/types/data/genBlock/genTableBlock.js.map +1 -1
  1487. package/out/types/data/genBlock/genUpdateBlock.js +5 -4
  1488. package/out/types/data/genBlock/genUpdateBlock.js.map +1 -1
  1489. package/out/types/data/genBlock/index.d.ts +2 -2
  1490. package/out/types/data/genBlock/index.js +2 -2
  1491. package/out/types/data/genBlock/index.js.map +1 -1
  1492. package/out/types/data/genericTypes.d.ts +1 -1
  1493. package/out/types/data/genericTypes.js +2 -6
  1494. package/out/types/data/genericTypes.js.map +1 -1
  1495. package/out/types/data/systemTypes.js +0 -73
  1496. package/out/types/data/systemTypes.js.map +1 -1
  1497. package/out/types/decorators/index.d.ts +1 -1
  1498. package/out/types/decorators/index.js +7 -2
  1499. package/out/types/decorators/index.js.map +1 -1
  1500. package/out/types/index.d.ts +2 -5
  1501. package/out/types/index.js +5 -10
  1502. package/out/types/index.js.map +1 -1
  1503. package/out/types/logic/BreakPoint.d.ts +42 -0
  1504. package/out/types/logic/BreakPoint.js +155 -0
  1505. package/out/types/logic/BreakPoint.js.map +1 -0
  1506. package/out/types/logic/Debugger.d.ts +156 -0
  1507. package/out/types/logic/Debugger.js +912 -0
  1508. package/out/types/logic/Debugger.js.map +1 -0
  1509. package/out/types/logic/Logic.d.ts +0 -20
  1510. package/out/types/logic/Logic.js +1 -47
  1511. package/out/types/logic/Logic.js.map +1 -1
  1512. package/out/types/logic/LogicItem.d.ts +2 -2
  1513. package/out/types/logic/LogicItem.js +48 -112
  1514. package/out/types/logic/LogicItem.js.map +1 -1
  1515. package/out/types/logic/Param.js +1 -1
  1516. package/out/types/logic/Param.js.map +1 -1
  1517. package/out/types/logic/translator.js +51 -74
  1518. package/out/types/logic/translator.js.map +1 -1
  1519. package/out/types/page/Element.js +9 -21
  1520. package/out/types/page/Element.js.map +1 -1
  1521. package/out/types/page/Page.js +0 -7
  1522. package/out/types/page/Page.js.map +1 -1
  1523. package/out/types/page/View.d.ts +1 -1
  1524. package/out/types/page/View.js +1 -29
  1525. package/out/types/page/View.js.map +1 -1
  1526. package/out/types/process/Process.js +3 -3
  1527. package/out/types/process/Process.js.map +1 -1
  1528. package/out/types/process/ProcessComponent.js +1 -1
  1529. package/out/types/process/ProcessComponent.js.map +1 -1
  1530. package/out/types/process/ProcessParam.js +1 -1
  1531. package/out/types/process/ProcessParam.js.map +1 -1
  1532. package/out/types/typeCheck.js +2 -12
  1533. package/out/types/typeCheck.js.map +1 -1
  1534. package/out/types/utils/string.d.ts +4 -0
  1535. package/out/types/utils/string.js +4 -0
  1536. package/out/types/utils/string.js.map +1 -1
  1537. package/package.json +10 -14
  1538. package/src/automate/engine/index.js +308 -0
  1539. package/src/automate/engine/utils.js +312 -0
  1540. package/src/common/BaseNode.ts +635 -0
  1541. package/src/common/Command.ts +27 -0
  1542. package/src/common/ComponentAPI.ts +103 -0
  1543. package/src/common/EventEmitter.ts +86 -0
  1544. package/src/common/Messager.ts +225 -0
  1545. package/src/common/classMap.ts +3 -0
  1546. package/src/common/index.ts +4 -0
  1547. package/src/concepts/App__.ts +2492 -0
  1548. package/src/concepts/Argument__.ts +191 -0
  1549. package/src/concepts/Assignment__.ts +235 -0
  1550. package/src/concepts/Attribute__.ts +251 -0
  1551. package/src/concepts/BinaryExpression__.ts +270 -0
  1552. package/src/concepts/BindAttribute__.ts +500 -0
  1553. package/src/concepts/BindDirective__.ts +238 -0
  1554. package/src/concepts/BindEvent__.ts +339 -0
  1555. package/src/concepts/BooleanLiteral__.ts +82 -0
  1556. package/src/concepts/CallFunction__.ts +307 -0
  1557. package/src/concepts/CallInterface__.ts +295 -0
  1558. package/src/concepts/CallLogic__.ts +390 -0
  1559. package/src/concepts/CallQueryComponent__.ts +1006 -0
  1560. package/src/concepts/Comment__.ts +104 -0
  1561. package/src/concepts/CompletionProperty__.ts +244 -0
  1562. package/src/concepts/Constant__.ts +243 -0
  1563. package/src/concepts/DataElement__.ts +134 -0
  1564. package/src/concepts/Destination__.ts +316 -0
  1565. package/src/concepts/End__.ts +108 -0
  1566. package/src/concepts/EntityIndex__.ts +197 -0
  1567. package/src/concepts/EntityProperty__.ts +497 -0
  1568. package/src/concepts/Entity__.ts +695 -0
  1569. package/src/concepts/EnumItem__.ts +139 -0
  1570. package/src/concepts/Enum__.ts +337 -0
  1571. package/src/concepts/Event__.ts +316 -0
  1572. package/src/concepts/ForEachStatement__.ts +562 -0
  1573. package/src/concepts/Function__.ts +915 -0
  1574. package/src/concepts/Identifier__.ts +171 -0
  1575. package/src/concepts/IfStatement__.ts +478 -0
  1576. package/src/concepts/InterfaceParam__.ts +305 -0
  1577. package/src/concepts/Interface__.ts +610 -0
  1578. package/src/concepts/JSBlock__.ts +113 -0
  1579. package/src/concepts/LogicItem__.ts +232 -0
  1580. package/src/concepts/Logic__.ts +1487 -0
  1581. package/src/concepts/MemberExpression__.ts +240 -0
  1582. package/src/concepts/Module__.ts +1718 -0
  1583. package/src/concepts/Namespace__.ts +2517 -0
  1584. package/src/concepts/NullLiteral__.ts +78 -0
  1585. package/src/concepts/NumericLiteral__.ts +182 -0
  1586. package/src/concepts/Param__.ts +364 -0
  1587. package/src/concepts/Point__.ts +84 -0
  1588. package/src/concepts/ProcessComponent__.ts +502 -0
  1589. package/src/concepts/ProcessElement__.ts +1370 -0
  1590. package/src/concepts/ProcessOutcome__.ts +97 -0
  1591. package/src/concepts/Process__.ts +1113 -0
  1592. package/src/concepts/QueryAggregateExpression__.ts +197 -0
  1593. package/src/concepts/QueryFieldExpression__.ts +133 -0
  1594. package/src/concepts/QueryFromExpression__.ts +261 -0
  1595. package/src/concepts/QueryGroupByExpression__.ts +144 -0
  1596. package/src/concepts/QueryJoinExpression__.ts +448 -0
  1597. package/src/concepts/QueryLimitExpression__.ts +193 -0
  1598. package/src/concepts/QueryOrderByExpression__.ts +207 -0
  1599. package/src/concepts/QuerySelectExpression__.ts +285 -0
  1600. package/src/concepts/Rect__.ts +96 -0
  1601. package/src/concepts/Return__.ts +334 -0
  1602. package/src/concepts/Role__.ts +139 -0
  1603. package/src/concepts/Slot__.ts +121 -0
  1604. package/src/concepts/SqlQueryComponent__.ts +145 -0
  1605. package/src/concepts/Start__.ts +86 -0
  1606. package/src/concepts/StringLiteral__.ts +140 -0
  1607. package/src/concepts/StructureProperty__.ts +327 -0
  1608. package/src/concepts/Structure__.ts +559 -0
  1609. package/src/concepts/SwitchCase__.ts +363 -0
  1610. package/src/concepts/SwitchStatement__.ts +261 -0
  1611. package/src/concepts/Theme__.ts +94 -0
  1612. package/src/concepts/Transactional__.ts +164 -0
  1613. package/src/concepts/TypeAnnotation__.ts +373 -0
  1614. package/src/concepts/TypeParam__.ts +68 -0
  1615. package/src/concepts/UnaryExpression__.ts +177 -0
  1616. package/src/concepts/Unparsed__.ts +98 -0
  1617. package/src/concepts/UseComponent__.ts +84 -0
  1618. package/src/concepts/ValidationRule__.ts +292 -0
  1619. package/src/concepts/Variable__.ts +312 -0
  1620. package/src/concepts/ViewComponent__.ts +1098 -0
  1621. package/src/concepts/ViewElement__.ts +1562 -0
  1622. package/src/concepts/View__.ts +1842 -0
  1623. package/src/concepts/WhileStatement__.ts +323 -0
  1624. package/src/concepts/basics/stdlib/index.ts +20 -0
  1625. package/src/concepts/basics/stdlib/nasl.collection.ts +54 -0
  1626. package/src/concepts/basics/stdlib/nasl.core.ts +12 -0
  1627. package/src/concepts/basics/stdlib/nasl.interface.ts +43 -0
  1628. package/src/concepts/basics/stdlib/nasl.process.ts +47 -0
  1629. package/src/concepts/basics/stdlib/nasl.ui.ts +84 -0
  1630. package/src/concepts/basics/stdlib/nasl.util.ts +585 -0
  1631. package/src/concepts/basics/stdlib/nasl.validate.ts +523 -0
  1632. package/src/concepts/basics/stdlib/reference2TypeAnnotationList.ts +26 -0
  1633. package/src/concepts/basics/types/coreTypeList.ts +14 -0
  1634. package/src/concepts/basics/types/index.ts +20 -0
  1635. package/src/concepts/index.ts +5 -0
  1636. package/src/concepts/index__.ts +77 -0
  1637. package/src/config.ts +80 -0
  1638. package/src/decorators/index.ts +153 -0
  1639. package/src/generator/compileComponent.ts +19 -0
  1640. package/src/generator/genBundleFiles.ts +258 -0
  1641. package/src/generator/genHash.ts +13 -0
  1642. package/src/generator/index.ts +4 -0
  1643. package/src/generator/styleReplacer.ts +41 -0
  1644. package/src/index.ts +10 -0
  1645. package/src/manager/diagnostic.ts +129 -0
  1646. package/src/manager/history.ts +0 -0
  1647. package/src/manager/problem.ts +0 -0
  1648. package/src/server/entity2LogicNamespace.ts +188 -0
  1649. package/src/server/getFunctions.ts +10 -0
  1650. package/src/server/getInterfaces.ts +47 -0
  1651. package/src/server/getLogics.ts +94 -0
  1652. package/src/server/getMemberIdentifier.ts +110 -0
  1653. package/src/server/getProcessComponents.ts +9 -0
  1654. package/src/server/getProcesses.ts +129 -0
  1655. package/src/server/getValidates.ts +10 -0
  1656. package/src/server/index.ts +21 -0
  1657. package/src/server/naslServer.ts +1194 -0
  1658. package/src/server/process2LogicNamespace.ts +20 -0
  1659. package/src/server/translator.ts +148 -0
  1660. package/src/service/app/index.js +1 -1
  1661. package/src/service/assets/index.js +1 -1
  1662. package/src/service/{create → creator}/add.configs.js +0 -0
  1663. package/src/service/{create → creator}/errHandles.js +0 -0
  1664. package/src/service/creator/index.js +80 -0
  1665. package/src/service/storage/index.ts +6 -0
  1666. package/src/service/storage/init.ts +160 -0
  1667. package/src/service/storage/jsoner.ts +139 -0
  1668. package/src/service/storage/map.ts +57 -0
  1669. package/src/service/storage/storagePoint.ts +73 -0
  1670. package/src/service/video/BaseService.js +68 -0
  1671. package/src/service/video/MainCallbackService.js +207 -0
  1672. package/src/service/video/VideoTranscribe.js +102 -0
  1673. package/src/service/video/publishService.js +61 -0
  1674. package/src/templator/builtInFunctions.json +1 -0
  1675. package/src/templator/genCallComponentLogic.ts +27 -0
  1676. package/src/templator/genCreateBlock.ts +281 -0
  1677. package/src/templator/genCurdEditMultipleKeyBlock.ts +432 -0
  1678. package/src/templator/genCurdMultipleKeyBlock.ts +624 -0
  1679. package/src/templator/genEditTableBlock.ts +284 -0
  1680. package/src/templator/genEnumSelectBlock.ts +22 -0
  1681. package/src/templator/genGetBlock.ts +121 -0
  1682. package/src/templator/genGridViewBlock.ts +306 -0
  1683. package/src/templator/genListViewBlock.ts +122 -0
  1684. package/src/templator/genQueryComponent.ts +287 -0
  1685. package/src/templator/genSelectBlock.ts +125 -0
  1686. package/src/templator/genTableBlock.ts +295 -0
  1687. package/src/templator/genUpdateBlock.ts +324 -0
  1688. package/src/templator/index.ts +18 -0
  1689. package/src/templator/utils.ts +640 -0
  1690. package/src/terms/LEVEL_NAME_MAP.ts +31 -0
  1691. package/src/test/examples/app1.json +17 -0
  1692. package/src/test/fixtures/env.ts +4 -4
  1693. package/src/test/integration/connect-create-file.ts +14 -0
  1694. package/src/test/integration/connect-file.ts +24 -0
  1695. package/src/test/units/baseTypes/Assignment.spec.ts +20 -0
  1696. package/src/test/units/baseTypes/CallLogic.spec.ts +22 -0
  1697. package/src/test/units/baseTypes/StringLiteral.spec.ts +60 -0
  1698. package/src/test/units/baseTypes/new.spec.ts +13 -0
  1699. package/src/test/units/common/Vertex.spec.ts +17 -19
  1700. package/src/test/units/data/Entity.spec.ts +1 -1
  1701. package/src/test/units/login.spec.ts +3 -3
  1702. package/src/test/units/page/Block.spec.ts +12 -12
  1703. package/src/test/units/page/Element.spec.ts +11 -11
  1704. package/src/test/units/temp/temp.spec.ts +2 -2
  1705. package/src/translator/index.ts +131 -0
  1706. package/src/translator/lsp.ts +50 -0
  1707. package/src/translator/tsp.ts +14 -0
  1708. package/src/utils/index.ts +52 -0
  1709. package/src/utils/logger.ts +8 -0
  1710. package/src/utils/string.ts +60 -0
  1711. package/src/utils/traverse.ts +152 -0
  1712. package/tsconfig.json +6 -13
  1713. package/analysis/mergeBlock/README.md +0 -14
  1714. package/analysis/mergeBlock/raw2.json +0 -2522
  1715. package/analysis/mergeBlock/raw3.json +0 -505
  1716. package/analysis/mergeBlock/req2.json +0 -2219
  1717. package/analysis/mergeBlock/req3.json +0 -462
  1718. package/analysis/mergeBlock/script.js +0 -159
  1719. package/docs/assets/css/main.css +0 -2638
  1720. package/docs/assets/js/main.js +0 -248
  1721. package/docs/assets/js/search.js +0 -1
  1722. package/docs/classes/app_app.app.html +0 -1359
  1723. package/docs/classes/app_service.microservice.html +0 -1572
  1724. package/docs/classes/app_service.service.html +0 -1233
  1725. package/docs/classes/app_service.webservice.html +0 -1635
  1726. package/docs/classes/common_eventemitter.eventemitter.html +0 -387
  1727. package/docs/classes/common_vertex.vertex.html +0 -1086
  1728. package/docs/classes/data_datanode.datanode.html +0 -1157
  1729. package/docs/classes/data_entity.entity.html +0 -1656
  1730. package/docs/classes/data_entityproperty.entityproperty.html +0 -1903
  1731. package/docs/classes/data_enum.enum.html +0 -1402
  1732. package/docs/classes/data_enumitem.enumitem.html +0 -1252
  1733. package/docs/classes/data_interface.interface.html +0 -1673
  1734. package/docs/classes/data_structure.structure.html +0 -1427
  1735. package/docs/classes/data_structureproperty.structureproperty.html +0 -1656
  1736. package/docs/classes/logic_basevariable.basevariable.html +0 -1261
  1737. package/docs/classes/logic_logic.logic.html +0 -1639
  1738. package/docs/classes/logic_logicitem.expressionnode.html +0 -1982
  1739. package/docs/classes/logic_logicitem.logicitem.html +0 -1828
  1740. package/docs/classes/logic_logicitem.logicnode.html +0 -2229
  1741. package/docs/classes/logic_param.param.html +0 -1707
  1742. package/docs/classes/logic_return.return.html +0 -1605
  1743. package/docs/classes/logic_variable.variable.html +0 -1631
  1744. package/docs/classes/nuims_nuims.nuims.html +0 -596
  1745. package/docs/classes/page_attr.attr.html +0 -1335
  1746. package/docs/classes/page_block.block.html +0 -1272
  1747. package/docs/classes/page_directive.directive.html +0 -1350
  1748. package/docs/classes/page_element.element.html +0 -2118
  1749. package/docs/classes/page_event.event.html +0 -1284
  1750. package/docs/classes/page_lifecycle.lifecycle.html +0 -1286
  1751. package/docs/classes/page_page.page.html +0 -1389
  1752. package/docs/classes/page_view.view.html +0 -2299
  1753. package/docs/classes/page_viewparam.viewparam.html +0 -1727
  1754. package/docs/classes/page_viewvariable.viewvariable.html +0 -1668
  1755. package/docs/classes/process_process.process.html +0 -1532
  1756. package/docs/classes/process_processcomponent.processcomponent.html +0 -1589
  1757. package/docs/classes/process_processcomponentattribute.processcomponentattribute.html +0 -1236
  1758. package/docs/classes/process_processcomponentproperty.processcomponentproperty.html +0 -1727
  1759. package/docs/classes/process_processcomponentreturn.processcomponentreturn.html +0 -1704
  1760. package/docs/classes/process_processcomponentvariable.processcomponentvariable.html +0 -1679
  1761. package/docs/classes/process_processinterface.processinterface.html +0 -1462
  1762. package/docs/classes/process_processparam.processparam.html +0 -1778
  1763. package/docs/classes/process_processproperty.processproperty.html +0 -1727
  1764. package/docs/classes/process_processreturn.processreturn.html +0 -1678
  1765. package/docs/enums/app_service.service_type.html +0 -186
  1766. package/docs/enums/data_basictypes.basic_type.html +0 -312
  1767. package/docs/enums/index.level_enum.html +0 -655
  1768. package/docs/enums/logic_logicitem.logic_type.html +0 -441
  1769. package/docs/interfaces/app_service.assetsinfo.html +0 -209
  1770. package/docs/interfaces/common_packagejson.default.html +0 -431
  1771. package/docs/interfaces/data_entity.resolver.html +0 -228
  1772. package/docs/interfaces/data_entityproperty.display.html +0 -214
  1773. package/docs/interfaces/data_schema.arrayschema.html +0 -306
  1774. package/docs/interfaces/data_schema.baseschema.html +0 -361
  1775. package/docs/interfaces/data_schema.basicrefschema.html +0 -362
  1776. package/docs/interfaces/data_schema.basicschema.html +0 -334
  1777. package/docs/interfaces/data_schema.booleanschema.html +0 -306
  1778. package/docs/interfaces/data_schema.enumitemschema.html +0 -225
  1779. package/docs/interfaces/data_schema.enumschema.html +0 -306
  1780. package/docs/interfaces/data_schema.integerschema.html +0 -334
  1781. package/docs/interfaces/data_schema.mapschema.html +0 -320
  1782. package/docs/interfaces/data_schema.numberschema.html +0 -334
  1783. package/docs/interfaces/data_schema.objectschema.html +0 -313
  1784. package/docs/interfaces/data_schema.refschema.html +0 -332
  1785. package/docs/interfaces/data_schema.schema.html +0 -511
  1786. package/docs/interfaces/data_schema.setschema.html +0 -306
  1787. package/docs/interfaces/data_schema.stringschema.html +0 -334
  1788. package/docs/interfaces/history.historyrecord.html +0 -183
  1789. package/docs/interfaces/index.arrayschema.html +0 -261
  1790. package/docs/interfaces/index.baseschema.html +0 -236
  1791. package/docs/interfaces/index.basicrefschema.html +0 -317
  1792. package/docs/interfaces/index.basicschema.html +0 -289
  1793. package/docs/interfaces/index.booleanschema.html +0 -261
  1794. package/docs/interfaces/index.enumitemschema.html +0 -180
  1795. package/docs/interfaces/index.enumschema.html +0 -261
  1796. package/docs/interfaces/index.integerschema.html +0 -289
  1797. package/docs/interfaces/index.mapschema.html +0 -275
  1798. package/docs/interfaces/index.numberschema.html +0 -289
  1799. package/docs/interfaces/index.objectschema.html +0 -261
  1800. package/docs/interfaces/index.refschema.html +0 -287
  1801. package/docs/interfaces/index.schema.html +0 -459
  1802. package/docs/interfaces/index.setschema.html +0 -261
  1803. package/docs/interfaces/index.stringschema.html +0 -289
  1804. package/docs/interfaces/page_element.elementtovueoptions.html +0 -283
  1805. package/docs/interfaces/typecheck.typecheckrecord.html +0 -211
  1806. package/docs/interfaces/utils.inode.html +0 -212
  1807. package/docs/interfaces/utils.inodeinfo.html +0 -295
  1808. package/docs/interfaces/utils_traverse.inode.html +0 -191
  1809. package/docs/interfaces/utils_traverse.inodeinfo.html +0 -274
  1810. package/docs/modules/app_app.html +0 -149
  1811. package/docs/modules/app_service.html +0 -175
  1812. package/docs/modules/cachedata.html +0 -198
  1813. package/docs/modules/common_eventemitter.html +0 -192
  1814. package/docs/modules/common_packagejson.html +0 -132
  1815. package/docs/modules/common_vertex.html +0 -149
  1816. package/docs/modules/config.html +0 -168
  1817. package/docs/modules/data_basictypes.html +0 -271
  1818. package/docs/modules/data_datanode.html +0 -149
  1819. package/docs/modules/data_datatypes.html +0 -196
  1820. package/docs/modules/data_datatypeutils.html +0 -430
  1821. package/docs/modules/data_entity.html +0 -158
  1822. package/docs/modules/data_entityproperty.html +0 -158
  1823. package/docs/modules/data_entityutils.html +0 -342
  1824. package/docs/modules/data_enum.html +0 -149
  1825. package/docs/modules/data_enumitem.html +0 -149
  1826. package/docs/modules/data_interface.html +0 -149
  1827. package/docs/modules/data_schema.html +0 -205
  1828. package/docs/modules/data_structure.html +0 -149
  1829. package/docs/modules/data_structureproperty.html +0 -149
  1830. package/docs/modules/data_systemtypes.html +0 -167
  1831. package/docs/modules/decorators.html +0 -333
  1832. package/docs/modules/eventbus.html +0 -116
  1833. package/docs/modules/generator.html +0 -749
  1834. package/docs/modules/generator_data.html +0 -495
  1835. package/docs/modules/generator_hotreload.html +0 -200
  1836. package/docs/modules/generator_load.html +0 -247
  1837. package/docs/modules/generator_page.html +0 -200
  1838. package/docs/modules/history.html +0 -200
  1839. package/docs/modules/index.html +0 -1163
  1840. package/docs/modules/logic_basevariable.html +0 -238
  1841. package/docs/modules/logic_callinterface.html +0 -116
  1842. package/docs/modules/logic_logic.html +0 -149
  1843. package/docs/modules/logic_logicitem.html +0 -220
  1844. package/docs/modules/logic_param.html +0 -149
  1845. package/docs/modules/logic_return.html +0 -149
  1846. package/docs/modules/logic_tools.html +0 -326
  1847. package/docs/modules/logic_translator.html +0 -158
  1848. package/docs/modules/logic_variable.html +0 -149
  1849. package/docs/modules/nuims_nuims.html +0 -149
  1850. package/docs/modules/page_attr.html +0 -149
  1851. package/docs/modules/page_block.html +0 -149
  1852. package/docs/modules/page_directive.html +0 -149
  1853. package/docs/modules/page_element.html +0 -158
  1854. package/docs/modules/page_event.html +0 -149
  1855. package/docs/modules/page_lifecycle.html +0 -149
  1856. package/docs/modules/page_page.html +0 -149
  1857. package/docs/modules/page_view.html +0 -149
  1858. package/docs/modules/page_viewparam.html +0 -149
  1859. package/docs/modules/page_viewvariable.html +0 -149
  1860. package/docs/modules/process_process.html +0 -149
  1861. package/docs/modules/process_processcomponent.html +0 -149
  1862. package/docs/modules/process_processcomponentattribute.html +0 -149
  1863. package/docs/modules/process_processcomponentproperty.html +0 -149
  1864. package/docs/modules/process_processcomponentreturn.html +0 -149
  1865. package/docs/modules/process_processcomponentvariable.html +0 -149
  1866. package/docs/modules/process_processinterface.html +0 -149
  1867. package/docs/modules/process_processparam.html +0 -149
  1868. package/docs/modules/process_processproperty.html +0 -149
  1869. package/docs/modules/process_processreturn.html +0 -149
  1870. package/docs/modules/typecheck.html +0 -269
  1871. package/docs/modules/utils.html +0 -536
  1872. package/docs/modules/utils_logger.html +0 -172
  1873. package/docs/modules/utils_string.html +0 -347
  1874. package/docs/modules/utils_traverse.html +0 -248
  1875. package/index.js +0 -12
  1876. package/module/base.js +0 -11
  1877. package/out/service/logic/checktypeSocket.d.ts +0 -5
  1878. package/out/service/logic/checktypeSocket.js +0 -55
  1879. package/out/service/logic/checktypeSocket.js.map +0 -1
  1880. package/out/types/data/Module.d.ts +0 -34
  1881. package/out/types/data/Module.js +0 -53
  1882. package/out/types/data/Module.js.map +0 -1
  1883. package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.d.ts +0 -7
  1884. package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.js +0 -470
  1885. package/out/types/data/genBlock/genCurdEditMultipleKeyBlock.js.map +0 -1
  1886. package/out/types/data/genBlock/genCurdMultipleKeyBlock.d.ts +0 -9
  1887. package/out/types/data/genBlock/genCurdMultipleKeyBlock.js +0 -662
  1888. package/out/types/data/genBlock/genCurdMultipleKeyBlock.js.map +0 -1
  1889. package/spec/conceptMap.json +0 -3310
  1890. package/spec/spec.yaml +0 -416
  1891. package/spec-build/index.ts +0 -98
  1892. package/src/routes.map.js +0 -5
  1893. package/src/service/common/findUsage.js +0 -8
  1894. package/src/service/common/index.js +0 -6
  1895. package/src/service/common/preprocess.js +0 -54
  1896. package/src/service/common/schema.js +0 -9
  1897. package/src/service/config/api.js +0 -32
  1898. package/src/service/config/index.js +0 -6
  1899. package/src/service/create/index.js +0 -80
  1900. package/src/service/data/api.js +0 -33
  1901. package/src/service/data/entity.js +0 -101
  1902. package/src/service/data/enum.js +0 -53
  1903. package/src/service/data/enumProperty.js +0 -20
  1904. package/src/service/data/generic.js +0 -8
  1905. package/src/service/data/index.js +0 -18
  1906. package/src/service/data/interface.js +0 -56
  1907. package/src/service/data/structure.js +0 -75
  1908. package/src/service/developPermission/api.js +0 -37
  1909. package/src/service/developPermission/index.js +0 -13
  1910. package/src/service/logic/checktypeSocket.js +0 -49
  1911. package/src/service/logic/index.js +0 -14
  1912. package/src/service/logic/logic.js +0 -121
  1913. package/src/service/logic/param.js +0 -26
  1914. package/src/service/modules/api.js +0 -20
  1915. package/src/service/modules/index.js +0 -6
  1916. package/src/service/nuims/api.js +0 -192
  1917. package/src/service/nuims/index.js +0 -13
  1918. package/src/service/page/api.js +0 -1374
  1919. package/src/service/page/attribute.js +0 -20
  1920. package/src/service/page/directive.js +0 -20
  1921. package/src/service/page/element.js +0 -40
  1922. package/src/service/page/event.js +0 -20
  1923. package/src/service/page/index.js +0 -19
  1924. package/src/service/page/lifecycle.js +0 -20
  1925. package/src/service/page/templates.ts +0 -72
  1926. package/src/service/page/view.js +0 -116
  1927. package/src/service/permission/api.js +0 -38
  1928. package/src/service/permission/index.js +0 -13
  1929. package/src/service/process/api.js +0 -92
  1930. package/src/service/process/index.js +0 -6
  1931. package/src/service/undoredo/api.js +0 -26
  1932. package/src/service/undoredo/index.js +0 -6
  1933. package/src/service/webFile/api.js +0 -32
  1934. package/src/service/webFile/index.d.tmp +0 -62
  1935. package/src/service/webFile/index.js +0 -28
  1936. package/src/service/webFile/loadCache.js +0 -14
  1937. package/src/test/units/app/App.spec.ts +0 -16
  1938. package/src/test/units/app/Service.spec.ts +0 -31
  1939. package/src/types/app/App.ts +0 -349
  1940. package/src/types/app/History.ts +0 -389
  1941. package/src/types/app/Service.ts +0 -1036
  1942. package/src/types/cache.ts +0 -50
  1943. package/src/types/cacheData.ts +0 -33
  1944. package/src/types/common/ComponentAPI.ts +0 -103
  1945. package/src/types/common/EventEmitter.ts +0 -56
  1946. package/src/types/common/PackageJSON.ts +0 -22
  1947. package/src/types/common/Vertex.ts +0 -296
  1948. package/src/types/config.ts +0 -23
  1949. package/src/types/data/DataNode.ts +0 -37
  1950. package/src/types/data/Entity.ts +0 -556
  1951. package/src/types/data/EntityIndex.ts +0 -238
  1952. package/src/types/data/EntityProperty.ts +0 -524
  1953. package/src/types/data/Enum.ts +0 -245
  1954. package/src/types/data/EnumItem.ts +0 -156
  1955. package/src/types/data/GlobalLogicNode.ts +0 -208
  1956. package/src/types/data/Interface.ts +0 -438
  1957. package/src/types/data/Module.ts +0 -51
  1958. package/src/types/data/Schema.ts +0 -133
  1959. package/src/types/data/Structure.ts +0 -315
  1960. package/src/types/data/StructureProperty.ts +0 -332
  1961. package/src/types/data/basicTypes.ts +0 -76
  1962. package/src/types/data/dataTypeUtils.ts +0 -426
  1963. package/src/types/data/dataTypes.ts +0 -88
  1964. package/src/types/data/entityUtils.ts +0 -681
  1965. package/src/types/data/genBlock/builtInFunctions.json +0 -560
  1966. package/src/types/data/genBlock/genCallComponentLogic.ts +0 -28
  1967. package/src/types/data/genBlock/genCallInterface.ts +0 -87
  1968. package/src/types/data/genBlock/genCreateBlock.ts +0 -305
  1969. package/src/types/data/genBlock/genCurdEditMultipleKeyBlock.ts +0 -468
  1970. package/src/types/data/genBlock/genCurdMultipleKeyBlock.ts +0 -665
  1971. package/src/types/data/genBlock/genEditTableBlock.ts +0 -470
  1972. package/src/types/data/genBlock/genEnumSelectBlock.ts +0 -21
  1973. package/src/types/data/genBlock/genGetBlock.ts +0 -160
  1974. package/src/types/data/genBlock/genGridViewBlock.ts +0 -316
  1975. package/src/types/data/genBlock/genListViewBlock.ts +0 -130
  1976. package/src/types/data/genBlock/genQueryComponent.ts +0 -548
  1977. package/src/types/data/genBlock/genSelectBlock.ts +0 -123
  1978. package/src/types/data/genBlock/genTableBlock.ts +0 -315
  1979. package/src/types/data/genBlock/genUpdateBlock.ts +0 -389
  1980. package/src/types/data/genBlock/index.ts +0 -20
  1981. package/src/types/data/genBlock/utils.ts +0 -252
  1982. package/src/types/data/genericTypes.ts +0 -151
  1983. package/src/types/data/systemTypes.ts +0 -1635
  1984. package/src/types/decorators/index.ts +0 -52
  1985. package/src/types/enum.ts +0 -6
  1986. package/src/types/generator/data.ts +0 -206
  1987. package/src/types/generator/hotReload.ts +0 -41
  1988. package/src/types/generator/index.ts +0 -4
  1989. package/src/types/generator/load.ts +0 -97
  1990. package/src/types/generator/page.ts +0 -37
  1991. package/src/types/history.ts +0 -14
  1992. package/src/types/index.ts +0 -167
  1993. package/src/types/logic/BaseVariable.ts +0 -130
  1994. package/src/types/logic/Logic.ts +0 -591
  1995. package/src/types/logic/LogicItem.ts +0 -1370
  1996. package/src/types/logic/Param.ts +0 -336
  1997. package/src/types/logic/Return.ts +0 -292
  1998. package/src/types/logic/Variable.ts +0 -288
  1999. package/src/types/logic/expressions/BinaryExpression.ts +0 -35
  2000. package/src/types/logic/expressions/BooleanLiteral.ts +0 -25
  2001. package/src/types/logic/expressions/Identifier.ts +0 -36
  2002. package/src/types/logic/expressions/LogicalExpression.ts +0 -35
  2003. package/src/types/logic/expressions/MemberExpression.ts +0 -33
  2004. package/src/types/logic/expressions/NullLiteral.ts +0 -20
  2005. package/src/types/logic/expressions/NumericLiteral.ts +0 -25
  2006. package/src/types/logic/expressions/StringLiteral.ts +0 -25
  2007. package/src/types/logic/expressions/UnaryExpression.ts +0 -30
  2008. package/src/types/logic/expressions/Unparsed.ts +0 -25
  2009. package/src/types/logic/nodes/AssignmentExpression.ts +0 -30
  2010. package/src/types/logic/nodes/BuiltInFuncParam.ts +0 -35
  2011. package/src/types/logic/nodes/BuiltInFunction.ts +0 -39
  2012. package/src/types/logic/nodes/CallConsoleLog.ts +0 -25
  2013. package/src/types/logic/nodes/CallGraphQL.ts +0 -36
  2014. package/src/types/logic/nodes/CallInterParam.ts +0 -30
  2015. package/src/types/logic/nodes/CallInterface.ts +0 -31
  2016. package/src/types/logic/nodes/CallLogic.ts +0 -39
  2017. package/src/types/logic/nodes/CallMessageShow.ts +0 -35
  2018. package/src/types/logic/nodes/Comment.ts +0 -25
  2019. package/src/types/logic/nodes/CronJob.ts +0 -25
  2020. package/src/types/logic/nodes/DBQuery.ts +0 -25
  2021. package/src/types/logic/nodes/Destination.ts +0 -52
  2022. package/src/types/logic/nodes/DestinationParam.ts +0 -31
  2023. package/src/types/logic/nodes/End.ts +0 -21
  2024. package/src/types/logic/nodes/ForEachStatement.ts +0 -52
  2025. package/src/types/logic/nodes/IfStatement.ts +0 -35
  2026. package/src/types/logic/nodes/JSBlock.ts +0 -29
  2027. package/src/types/logic/nodes/JSONDeserialize.ts +0 -25
  2028. package/src/types/logic/nodes/JSONSerialize.ts +0 -25
  2029. package/src/types/logic/nodes/ProcessOutcome.ts +0 -35
  2030. package/src/types/logic/nodes/Start.ts +0 -20
  2031. package/src/types/logic/nodes/SwitchCase.ts +0 -30
  2032. package/src/types/logic/nodes/SwitchStatement.ts +0 -26
  2033. package/src/types/logic/nodes/TypeNote.ts +0 -25
  2034. package/src/types/logic/nodes/WhileStatement.ts +0 -30
  2035. package/src/types/logic/tools.js +0 -170
  2036. package/src/types/logic/translator.js +0 -684
  2037. package/src/types/logic/translator_backup.js +0 -632
  2038. package/src/types/login.ts +0 -36
  2039. package/src/types/nuims/Nuims.ts +0 -499
  2040. package/src/types/page/Attr.ts +0 -217
  2041. package/src/types/page/Block.ts +0 -103
  2042. package/src/types/page/Directive.ts +0 -208
  2043. package/src/types/page/Element.ts +0 -1444
  2044. package/src/types/page/Event.ts +0 -188
  2045. package/src/types/page/Lifecycle.ts +0 -172
  2046. package/src/types/page/Page.ts +0 -414
  2047. package/src/types/page/View.ts +0 -1236
  2048. package/src/types/page/ViewParam.ts +0 -284
  2049. package/src/types/page/ViewVariable.ts +0 -264
  2050. package/src/types/page/dist/View.js +0 -727
  2051. package/src/types/permission/Permission.ts +0 -112
  2052. package/src/types/process/Process.ts +0 -306
  2053. package/src/types/process/ProcessComponent.ts +0 -276
  2054. package/src/types/process/ProcessComponentAttribute.ts +0 -131
  2055. package/src/types/process/ProcessComponentProperty.ts +0 -68
  2056. package/src/types/process/ProcessComponentReturn.ts +0 -235
  2057. package/src/types/process/ProcessComponentVariable.ts +0 -225
  2058. package/src/types/process/ProcessInterface.ts +0 -175
  2059. package/src/types/process/ProcessParam.ts +0 -237
  2060. package/src/types/process/ProcessProperty.ts +0 -69
  2061. package/src/types/process/ProcessReturn.ts +0 -210
  2062. package/src/types/typeCheck.ts +0 -120
  2063. package/src/types/utils/index.ts +0 -91
  2064. package/src/types/utils/logger.ts +0 -8
  2065. package/src/types/utils/string.ts +0 -56
  2066. package/src/types/utils/traverse.ts +0 -160
  2067. package/src/views/components/lcap-json-view/README.md +0 -80
  2068. package/src/views/components/lcap-json-view/index.js +0 -9
  2069. package/src/views/components/lcap-json-view/index.vue +0 -61
  2070. package/src/views/components/lcap-json-view/node.vue +0 -328
  2071. package/src/views/components/lcap-json-view/utils.js +0 -41
  2072. package/src/views/examples/index.vue +0 -44
  2073. package/src/views/examples/logic.json +0 -1576
  2074. package/src/views/index.vue +0 -28
  2075. package/src/views/specification/README.md +0 -10
  2076. package/src/views/specification/conceptTree.js +0 -1179
  2077. package/src/views/specification/index.vue +0 -255
  2078. package/src/views/theme.css +0 -138
@@ -0,0 +1,81 @@
1
+ {
2
+ "_from": "nasl-typedoc-theme@^3.1.0",
3
+ "_id": "nasl-typedoc-theme@3.1.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-IaqD1W4ddgYLCCxaqGrPhbZkKXYinS7TKSBDJpO85qQGJoZ73B4gPNmtnpJfCKoSJamnbVPJ6ZhGkpz6El2szg==",
6
+ "_location": "/nasl-typedoc-theme",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "nasl-typedoc-theme@^3.1.0",
12
+ "name": "nasl-typedoc-theme",
13
+ "escapedName": "nasl-typedoc-theme",
14
+ "rawSpec": "^3.1.0",
15
+ "saveSpec": null,
16
+ "fetchSpec": "^3.1.0"
17
+ },
18
+ "_requiredBy": [
19
+ "#DEV:/"
20
+ ],
21
+ "_resolved": "https://registry.npmjs.org/nasl-typedoc-theme/-/nasl-typedoc-theme-3.1.0.tgz",
22
+ "_shasum": "d0d84c1caccc2e34908441cd7a298ddc428001ea",
23
+ "_spec": "nasl-typedoc-theme@^3.1.0",
24
+ "_where": "/Users/forrest/Projects/LCAP/low-code-fe-next/packages/nasl",
25
+ "author": {
26
+ "name": "Infragistics"
27
+ },
28
+ "bugs": {
29
+ "url": "https://github.com/IgniteUI/nasl-typedoc-theme/issues"
30
+ },
31
+ "bundleDependencies": false,
32
+ "deprecated": false,
33
+ "description": "infragistics theme for typedoc API documentation",
34
+ "devDependencies": {
35
+ "@types/fs-extra": "^9.0.13",
36
+ "@types/lunr": "^2.3.3",
37
+ "@types/node": "^17.0.21",
38
+ "@types/react": "^17.0.40",
39
+ "clean-webpack-plugin": "^3.0.0",
40
+ "copy-webpack-plugin": "^7.0.0",
41
+ "css-loader": "^5.0.1",
42
+ "file-loader": "^6.2.0",
43
+ "lunr": "^2.3.9",
44
+ "mini-css-extract-plugin": "^1.3.3",
45
+ "prettier": "^2.2.1",
46
+ "resolve-url-loader": "^3.1.2",
47
+ "sass": "^1.30.0",
48
+ "sass-loader": "^10.1.0",
49
+ "style-loader": "^3.3.1",
50
+ "ts-loader": "^8.0.12",
51
+ "typedoc": "^0.22.13",
52
+ "typescript": "^4.4.4",
53
+ "url-loader": "^4.1.1",
54
+ "webpack": "^5.11.1",
55
+ "webpack-cli": "^4.3.0",
56
+ "webpack-merge": "^5.7.3"
57
+ },
58
+ "files": [
59
+ "src",
60
+ "LICENSE"
61
+ ],
62
+ "homepage": "https://github.com/IgniteUI/nasl-typedoc-theme#readme",
63
+ "keywords": [
64
+ "typedoc-theme",
65
+ "theme",
66
+ "api",
67
+ "custom"
68
+ ],
69
+ "license": "MIT",
70
+ "main": "src/index.js",
71
+ "name": "nasl-typedoc-theme",
72
+ "repository": {
73
+ "type": "git",
74
+ "url": "git+https://github.com/IgniteUI/nasl-typedoc-theme.git"
75
+ },
76
+ "scripts": {
77
+ "build": "tsc && webpack --mode=production --node-env=production",
78
+ "docs": "typedoc src --plugin src/index.js"
79
+ },
80
+ "version": "3.1.0"
81
+ }
@@ -0,0 +1,2 @@
1
+ /*! For license information please see common.js.LICENSE.txt */
2
+ !function(){var e,t={230:function(e,t,r){var i,n;!function(){var s,o,a,l,c,u,d,h,p,f,m,g,y,v,x,w,L,b,E,S,P,k,Q,T,I,O,C=function(e){var t=new C.Builder;return t.pipeline.add(C.trimmer,C.stopWordFilter,C.stemmer),t.searchPipeline.add(C.stemmer),e.call(t,t),t.build()};C.version="2.3.9",C.utils={},C.utils.warn=(s=this,function(e){s.console&&console.warn&&console.warn(e)}),C.utils.asString=function(e){return null==e?"":e.toString()},C.utils.clone=function(e){if(null==e)return e;for(var t=Object.create(null),r=Object.keys(e),i=0;i<r.length;i++){var n=r[i],s=e[n];if(Array.isArray(s))t[n]=s.slice();else{if("string"!=typeof s&&"number"!=typeof s&&"boolean"!=typeof s)throw new TypeError("clone is not deep and does not support nested objects");t[n]=s}}return t},C.FieldRef=function(e,t,r){this.docRef=e,this.fieldName=t,this._stringValue=r},C.FieldRef.joiner="/",C.FieldRef.fromString=function(e){var t=e.indexOf(C.FieldRef.joiner);if(-1===t)throw"malformed field ref string";var r=e.slice(0,t),i=e.slice(t+1);return new C.FieldRef(i,r,e)},C.FieldRef.prototype.toString=function(){return null==this._stringValue&&(this._stringValue=this.fieldName+C.FieldRef.joiner+this.docRef),this._stringValue},C.Set=function(e){if(this.elements=Object.create(null),e){this.length=e.length;for(var t=0;t<this.length;t++)this.elements[e[t]]=!0}else this.length=0},C.Set.complete={intersect:function(e){return e},union:function(){return this},contains:function(){return!0}},C.Set.empty={intersect:function(){return this},union:function(e){return e},contains:function(){return!1}},C.Set.prototype.contains=function(e){return!!this.elements[e]},C.Set.prototype.intersect=function(e){var t,r,i,n=[];if(e===C.Set.complete)return this;if(e===C.Set.empty)return e;this.length<e.length?(t=this,r=e):(t=e,r=this),i=Object.keys(t.elements);for(var s=0;s<i.length;s++){var o=i[s];o in r.elements&&n.push(o)}return new C.Set(n)},C.Set.prototype.union=function(e){return e===C.Set.complete?C.Set.complete:e===C.Set.empty?this:new C.Set(Object.keys(this.elements).concat(Object.keys(e.elements)))},C.idf=function(e,t){var r=0;for(var i in e)"_index"!=i&&(r+=Object.keys(e[i]).length);var n=(t-r+.5)/(r+.5);return Math.log(1+Math.abs(n))},C.Token=function(e,t){this.str=e||"",this.metadata=t||{}},C.Token.prototype.toString=function(){return this.str},C.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},C.Token.prototype.clone=function(e){return e=e||function(e){return e},new C.Token(e(this.str,this.metadata),this.metadata)},C.tokenizer=function(e,t){if(null==e||null==e)return[];if(Array.isArray(e))return e.map((function(e){return new C.Token(C.utils.asString(e).toLowerCase(),C.utils.clone(t))}));for(var r=e.toString().toLowerCase(),i=r.length,n=[],s=0,o=0;s<=i;s++){var a=s-o;if(r.charAt(s).match(C.tokenizer.separator)||s==i){if(a>0){var l=C.utils.clone(t)||{};l.position=[o,a],l.index=n.length,n.push(new C.Token(r.slice(o,s),l))}o=s+1}}return n},C.tokenizer.separator=/[\s\-]+/,C.Pipeline=function(){this._stack=[]},C.Pipeline.registeredFunctions=Object.create(null),C.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&C.utils.warn("Overwriting existing registered function: "+t),e.label=t,C.Pipeline.registeredFunctions[e.label]=e},C.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||C.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},C.Pipeline.load=function(e){var t=new C.Pipeline;return e.forEach((function(e){var r=C.Pipeline.registeredFunctions[e];if(!r)throw new Error("Cannot load unregistered function: "+e);t.add(r)})),t},C.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach((function(e){C.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)}),this)},C.Pipeline.prototype.after=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");r+=1,this._stack.splice(r,0,t)},C.Pipeline.prototype.before=function(e,t){C.Pipeline.warnIfFunctionNotRegistered(t);var r=this._stack.indexOf(e);if(-1==r)throw new Error("Cannot find existingFn");this._stack.splice(r,0,t)},C.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},C.Pipeline.prototype.run=function(e){for(var t=this._stack.length,r=0;r<t;r++){for(var i=this._stack[r],n=[],s=0;s<e.length;s++){var o=i(e[s],s,e);if(null!=o&&""!==o)if(Array.isArray(o))for(var a=0;a<o.length;a++)n.push(o[a]);else n.push(o)}e=n}return e},C.Pipeline.prototype.runString=function(e,t){var r=new C.Token(e,t);return this.run([r]).map((function(e){return e.toString()}))},C.Pipeline.prototype.reset=function(){this._stack=[]},C.Pipeline.prototype.toJSON=function(){return this._stack.map((function(e){return C.Pipeline.warnIfFunctionNotRegistered(e),e.label}))},C.Vector=function(e){this._magnitude=0,this.elements=e||[]},C.Vector.prototype.positionForIndex=function(e){if(0==this.elements.length)return 0;for(var t=0,r=this.elements.length/2,i=r-t,n=Math.floor(i/2),s=this.elements[2*n];i>1&&(s<e&&(t=n),s>e&&(r=n),s!=e);)i=r-t,n=t+Math.floor(i/2),s=this.elements[2*n];return s==e||s>e?2*n:s<e?2*(n+1):void 0},C.Vector.prototype.insert=function(e,t){this.upsert(e,t,(function(){throw"duplicate index"}))},C.Vector.prototype.upsert=function(e,t,r){this._magnitude=0;var i=this.positionForIndex(e);this.elements[i]==e?this.elements[i+1]=r(this.elements[i+1],t):this.elements.splice(i,0,e,t)},C.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,t=this.elements.length,r=1;r<t;r+=2){var i=this.elements[r];e+=i*i}return this._magnitude=Math.sqrt(e)},C.Vector.prototype.dot=function(e){for(var t=0,r=this.elements,i=e.elements,n=r.length,s=i.length,o=0,a=0,l=0,c=0;l<n&&c<s;)(o=r[l])<(a=i[c])?l+=2:o>a?c+=2:o==a&&(t+=r[l+1]*i[c+1],l+=2,c+=2);return t},C.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},C.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,r=0;t<this.elements.length;t+=2,r++)e[r]=this.elements[t];return e},C.Vector.prototype.toJSON=function(){return this.elements},C.stemmer=(o={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},a={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},l="[aeiouy]",c="[^aeiou][^aeiouy]*",u=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*"),d=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*[aeiouy][aeiou]*[^aeiou][^aeiouy]*"),h=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*([aeiouy][aeiou]*)?$"),p=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy]"),f=/^(.+?)(ss|i)es$/,m=/^(.+?)([^s])s$/,g=/^(.+?)eed$/,y=/^(.+?)(ed|ing)$/,v=/.$/,x=/(at|bl|iz)$/,w=new RegExp("([^aeiouylsz])\\1$"),L=new RegExp("^"+c+l+"[^aeiouwxy]$"),b=/^(.+?[^aeiou])y$/,E=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,S=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,P=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,k=/^(.+?)(s|t)(ion)$/,Q=/^(.+?)e$/,T=/ll$/,I=new RegExp("^"+c+l+"[^aeiouwxy]$"),O=function(e){var t,r,i,n,s,l,c;if(e.length<3)return e;if("y"==(i=e.substr(0,1))&&(e=i.toUpperCase()+e.substr(1)),s=m,(n=f).test(e)?e=e.replace(n,"$1$2"):s.test(e)&&(e=e.replace(s,"$1$2")),s=y,(n=g).test(e)){var O=n.exec(e);(n=u).test(O[1])&&(n=v,e=e.replace(n,""))}else s.test(e)&&(t=(O=s.exec(e))[1],(s=p).test(t)&&(l=w,c=L,(s=x).test(e=t)?e+="e":l.test(e)?(n=v,e=e.replace(n,"")):c.test(e)&&(e+="e")));return(n=b).test(e)&&(e=(t=(O=n.exec(e))[1])+"i"),(n=E).test(e)&&(t=(O=n.exec(e))[1],r=O[2],(n=u).test(t)&&(e=t+o[r])),(n=S).test(e)&&(t=(O=n.exec(e))[1],r=O[2],(n=u).test(t)&&(e=t+a[r])),s=k,(n=P).test(e)?(t=(O=n.exec(e))[1],(n=d).test(t)&&(e=t)):s.test(e)&&(t=(O=s.exec(e))[1]+O[2],(s=d).test(t)&&(e=t)),(n=Q).test(e)&&(t=(O=n.exec(e))[1],s=h,l=I,((n=d).test(t)||s.test(t)&&!l.test(t))&&(e=t)),s=d,(n=T).test(e)&&s.test(e)&&(n=v,e=e.replace(n,"")),"y"==i&&(e=i.toLowerCase()+e.substr(1)),e},function(e){return e.update(O)}),C.Pipeline.registerFunction(C.stemmer,"stemmer"),C.generateStopWordFilter=function(e){var t=e.reduce((function(e,t){return e[t]=t,e}),{});return function(e){if(e&&t[e.toString()]!==e.toString())return e}},C.stopWordFilter=C.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),C.Pipeline.registerFunction(C.stopWordFilter,"stopWordFilter"),C.trimmer=function(e){return e.update((function(e){return e.replace(/^\W+/,"").replace(/\W+$/,"")}))},C.Pipeline.registerFunction(C.trimmer,"trimmer"),C.TokenSet=function(){this.final=!1,this.edges={},this.id=C.TokenSet._nextId,C.TokenSet._nextId+=1},C.TokenSet._nextId=1,C.TokenSet.fromArray=function(e){for(var t=new C.TokenSet.Builder,r=0,i=e.length;r<i;r++)t.insert(e[r]);return t.finish(),t.root},C.TokenSet.fromClause=function(e){return"editDistance"in e?C.TokenSet.fromFuzzyString(e.term,e.editDistance):C.TokenSet.fromString(e.term)},C.TokenSet.fromFuzzyString=function(e,t){for(var r=new C.TokenSet,i=[{node:r,editsRemaining:t,str:e}];i.length;){var n=i.pop();if(n.str.length>0){var s,o=n.str.charAt(0);o in n.node.edges?s=n.node.edges[o]:(s=new C.TokenSet,n.node.edges[o]=s),1==n.str.length&&(s.final=!0),i.push({node:s,editsRemaining:n.editsRemaining,str:n.str.slice(1)})}if(0!=n.editsRemaining){if("*"in n.node.edges)var a=n.node.edges["*"];else a=new C.TokenSet,n.node.edges["*"]=a;if(0==n.str.length&&(a.final=!0),i.push({node:a,editsRemaining:n.editsRemaining-1,str:n.str}),n.str.length>1&&i.push({node:n.node,editsRemaining:n.editsRemaining-1,str:n.str.slice(1)}),1==n.str.length&&(n.node.final=!0),n.str.length>=1){if("*"in n.node.edges)var l=n.node.edges["*"];else l=new C.TokenSet,n.node.edges["*"]=l;1==n.str.length&&(l.final=!0),i.push({node:l,editsRemaining:n.editsRemaining-1,str:n.str.slice(1)})}if(n.str.length>1){var c,u=n.str.charAt(0),d=n.str.charAt(1);d in n.node.edges?c=n.node.edges[d]:(c=new C.TokenSet,n.node.edges[d]=c),1==n.str.length&&(c.final=!0),i.push({node:c,editsRemaining:n.editsRemaining-1,str:u+n.str.slice(2)})}}}return r},C.TokenSet.fromString=function(e){for(var t=new C.TokenSet,r=t,i=0,n=e.length;i<n;i++){var s=e[i],o=i==n-1;if("*"==s)t.edges[s]=t,t.final=o;else{var a=new C.TokenSet;a.final=o,t.edges[s]=a,t=a}}return r},C.TokenSet.prototype.toArray=function(){for(var e=[],t=[{prefix:"",node:this}];t.length;){var r=t.pop(),i=Object.keys(r.node.edges),n=i.length;r.node.final&&(r.prefix.charAt(0),e.push(r.prefix));for(var s=0;s<n;s++){var o=i[s];t.push({prefix:r.prefix.concat(o),node:r.node.edges[o]})}}return e},C.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var e=this.final?"1":"0",t=Object.keys(this.edges).sort(),r=t.length,i=0;i<r;i++){var n=t[i];e=e+n+this.edges[n].id}return e},C.TokenSet.prototype.intersect=function(e){for(var t=new C.TokenSet,r=void 0,i=[{qNode:e,output:t,node:this}];i.length;){r=i.pop();for(var n=Object.keys(r.qNode.edges),s=n.length,o=Object.keys(r.node.edges),a=o.length,l=0;l<s;l++)for(var c=n[l],u=0;u<a;u++){var d=o[u];if(d==c||"*"==c){var h=r.node.edges[d],p=r.qNode.edges[c],f=h.final&&p.final,m=void 0;d in r.output.edges?(m=r.output.edges[d]).final=m.final||f:((m=new C.TokenSet).final=f,r.output.edges[d]=m),i.push({qNode:p,output:m,node:h})}}}return t},C.TokenSet.Builder=function(){this.previousWord="",this.root=new C.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},C.TokenSet.Builder.prototype.insert=function(e){var t,r=0;if(e<this.previousWord)throw new Error("Out of order word insertion");for(var i=0;i<e.length&&i<this.previousWord.length&&e[i]==this.previousWord[i];i++)r++;for(this.minimize(r),t=0==this.uncheckedNodes.length?this.root:this.uncheckedNodes[this.uncheckedNodes.length-1].child,i=r;i<e.length;i++){var n=new C.TokenSet,s=e[i];t.edges[s]=n,this.uncheckedNodes.push({parent:t,char:s,child:n}),t=n}t.final=!0,this.previousWord=e},C.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},C.TokenSet.Builder.prototype.minimize=function(e){for(var t=this.uncheckedNodes.length-1;t>=e;t--){var r=this.uncheckedNodes[t],i=r.child.toString();i in this.minimizedNodes?r.parent.edges[r.char]=this.minimizedNodes[i]:(r.child._str=i,this.minimizedNodes[i]=r.child),this.uncheckedNodes.pop()}},C.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},C.Index.prototype.search=function(e){return this.query((function(t){new C.QueryParser(e,t).parse()}))},C.Index.prototype.query=function(e){for(var t=new C.Query(this.fields),r=Object.create(null),i=Object.create(null),n=Object.create(null),s=Object.create(null),o=Object.create(null),a=0;a<this.fields.length;a++)i[this.fields[a]]=new C.Vector;for(e.call(t,t),a=0;a<t.clauses.length;a++){var l,c=t.clauses[a],u=C.Set.empty;l=c.usePipeline?this.pipeline.runString(c.term,{fields:c.fields}):[c.term];for(var d=0;d<l.length;d++){var h=l[d];c.term=h;var p=C.TokenSet.fromClause(c),f=this.tokenSet.intersect(p).toArray();if(0===f.length&&c.presence===C.Query.presence.REQUIRED){for(var m=0;m<c.fields.length;m++)s[R=c.fields[m]]=C.Set.empty;break}for(var g=0;g<f.length;g++){var y=f[g],v=this.invertedIndex[y],x=v._index;for(m=0;m<c.fields.length;m++){var w=v[R=c.fields[m]],L=Object.keys(w),b=y+"/"+R,E=new C.Set(L);if(c.presence==C.Query.presence.REQUIRED&&(u=u.union(E),void 0===s[R]&&(s[R]=C.Set.complete)),c.presence!=C.Query.presence.PROHIBITED){if(i[R].upsert(x,c.boost,(function(e,t){return e+t})),!n[b]){for(var S=0;S<L.length;S++){var P,k=L[S],Q=new C.FieldRef(k,R),T=w[k];void 0===(P=r[Q])?r[Q]=new C.MatchData(y,R,T):P.add(y,R,T)}n[b]=!0}}else void 0===o[R]&&(o[R]=C.Set.empty),o[R]=o[R].union(E)}}}if(c.presence===C.Query.presence.REQUIRED)for(m=0;m<c.fields.length;m++)s[R=c.fields[m]]=s[R].intersect(u)}var I=C.Set.complete,O=C.Set.empty;for(a=0;a<this.fields.length;a++){var R;s[R=this.fields[a]]&&(I=I.intersect(s[R])),o[R]&&(O=O.union(o[R]))}var D=Object.keys(r),_=[],j=Object.create(null);if(t.isNegated())for(D=Object.keys(this.fieldVectors),a=0;a<D.length;a++){Q=D[a];var N=C.FieldRef.fromString(Q);r[Q]=new C.MatchData}for(a=0;a<D.length;a++){var F=(N=C.FieldRef.fromString(D[a])).docRef;if(I.contains(F)&&!O.contains(F)){var M,A=this.fieldVectors[N],V=i[N.fieldName].similarity(A);if(void 0!==(M=j[F]))M.score+=V,M.matchData.combine(r[N]);else{var z={ref:F,score:V,matchData:r[N]};j[F]=z,_.push(z)}}}return _.sort((function(e,t){return t.score-e.score}))},C.Index.prototype.toJSON=function(){var e=Object.keys(this.invertedIndex).sort().map((function(e){return[e,this.invertedIndex[e]]}),this),t=Object.keys(this.fieldVectors).map((function(e){return[e,this.fieldVectors[e].toJSON()]}),this);return{version:C.version,fields:this.fields,fieldVectors:t,invertedIndex:e,pipeline:this.pipeline.toJSON()}},C.Index.load=function(e){var t={},r={},i=e.fieldVectors,n=Object.create(null),s=e.invertedIndex,o=new C.TokenSet.Builder,a=C.Pipeline.load(e.pipeline);e.version!=C.version&&C.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+C.version+"' does not match serialized index '"+e.version+"'");for(var l=0;l<i.length;l++){var c=(d=i[l])[0],u=d[1];r[c]=new C.Vector(u)}for(l=0;l<s.length;l++){var d,h=(d=s[l])[0],p=d[1];o.insert(h),n[h]=p}return o.finish(),t.fields=e.fields,t.fieldVectors=r,t.invertedIndex=n,t.tokenSet=o.root,t.pipeline=a,new C.Index(t)},C.Builder=function(){this._ref="id",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=C.tokenizer,this.pipeline=new C.Pipeline,this.searchPipeline=new C.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},C.Builder.prototype.ref=function(e){this._ref=e},C.Builder.prototype.field=function(e,t){if(/\//.test(e))throw new RangeError("Field '"+e+"' contains illegal character '/'");this._fields[e]=t||{}},C.Builder.prototype.b=function(e){this._b=e<0?0:e>1?1:e},C.Builder.prototype.k1=function(e){this._k1=e},C.Builder.prototype.add=function(e,t){var r=e[this._ref],i=Object.keys(this._fields);this._documents[r]=t||{},this.documentCount+=1;for(var n=0;n<i.length;n++){var s=i[n],o=this._fields[s].extractor,a=o?o(e):e[s],l=this.tokenizer(a,{fields:[s]}),c=this.pipeline.run(l),u=new C.FieldRef(r,s),d=Object.create(null);this.fieldTermFrequencies[u]=d,this.fieldLengths[u]=0,this.fieldLengths[u]+=c.length;for(var h=0;h<c.length;h++){var p=c[h];if(null==d[p]&&(d[p]=0),d[p]+=1,null==this.invertedIndex[p]){var f=Object.create(null);f._index=this.termIndex,this.termIndex+=1;for(var m=0;m<i.length;m++)f[i[m]]=Object.create(null);this.invertedIndex[p]=f}null==this.invertedIndex[p][s][r]&&(this.invertedIndex[p][s][r]=Object.create(null));for(var g=0;g<this.metadataWhitelist.length;g++){var y=this.metadataWhitelist[g],v=p.metadata[y];null==this.invertedIndex[p][s][r][y]&&(this.invertedIndex[p][s][r][y]=[]),this.invertedIndex[p][s][r][y].push(v)}}}},C.Builder.prototype.calculateAverageFieldLengths=function(){for(var e=Object.keys(this.fieldLengths),t=e.length,r={},i={},n=0;n<t;n++){var s=C.FieldRef.fromString(e[n]),o=s.fieldName;i[o]||(i[o]=0),i[o]+=1,r[o]||(r[o]=0),r[o]+=this.fieldLengths[s]}var a=Object.keys(this._fields);for(n=0;n<a.length;n++){var l=a[n];r[l]=r[l]/i[l]}this.averageFieldLength=r},C.Builder.prototype.createFieldVectors=function(){for(var e={},t=Object.keys(this.fieldTermFrequencies),r=t.length,i=Object.create(null),n=0;n<r;n++){for(var s=C.FieldRef.fromString(t[n]),o=s.fieldName,a=this.fieldLengths[s],l=new C.Vector,c=this.fieldTermFrequencies[s],u=Object.keys(c),d=u.length,h=this._fields[o].boost||1,p=this._documents[s.docRef].boost||1,f=0;f<d;f++){var m,g,y,v=u[f],x=c[v],w=this.invertedIndex[v]._index;void 0===i[v]?(m=C.idf(this.invertedIndex[v],this.documentCount),i[v]=m):m=i[v],g=m*((this._k1+1)*x)/(this._k1*(1-this._b+this._b*(a/this.averageFieldLength[o]))+x),g*=h,g*=p,y=Math.round(1e3*g)/1e3,l.insert(w,y)}e[s]=l}this.fieldVectors=e},C.Builder.prototype.createTokenSet=function(){this.tokenSet=C.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},C.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new C.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},C.Builder.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},C.MatchData=function(e,t,r){for(var i=Object.create(null),n=Object.keys(r||{}),s=0;s<n.length;s++){var o=n[s];i[o]=r[o].slice()}this.metadata=Object.create(null),void 0!==e&&(this.metadata[e]=Object.create(null),this.metadata[e][t]=i)},C.MatchData.prototype.combine=function(e){for(var t=Object.keys(e.metadata),r=0;r<t.length;r++){var i=t[r],n=Object.keys(e.metadata[i]);null==this.metadata[i]&&(this.metadata[i]=Object.create(null));for(var s=0;s<n.length;s++){var o=n[s],a=Object.keys(e.metadata[i][o]);null==this.metadata[i][o]&&(this.metadata[i][o]=Object.create(null));for(var l=0;l<a.length;l++){var c=a[l];null==this.metadata[i][o][c]?this.metadata[i][o][c]=e.metadata[i][o][c]:this.metadata[i][o][c]=this.metadata[i][o][c].concat(e.metadata[i][o][c])}}}},C.MatchData.prototype.add=function(e,t,r){if(!(e in this.metadata))return this.metadata[e]=Object.create(null),void(this.metadata[e][t]=r);if(t in this.metadata[e])for(var i=Object.keys(r),n=0;n<i.length;n++){var s=i[n];s in this.metadata[e][t]?this.metadata[e][t][s]=this.metadata[e][t][s].concat(r[s]):this.metadata[e][t][s]=r[s]}else this.metadata[e][t]=r},C.Query=function(e){this.clauses=[],this.allFields=e},C.Query.wildcard=new String("*"),C.Query.wildcard.NONE=0,C.Query.wildcard.LEADING=1,C.Query.wildcard.TRAILING=2,C.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},C.Query.prototype.clause=function(e){return"fields"in e||(e.fields=this.allFields),"boost"in e||(e.boost=1),"usePipeline"in e||(e.usePipeline=!0),"wildcard"in e||(e.wildcard=C.Query.wildcard.NONE),e.wildcard&C.Query.wildcard.LEADING&&e.term.charAt(0)!=C.Query.wildcard&&(e.term="*"+e.term),e.wildcard&C.Query.wildcard.TRAILING&&e.term.slice(-1)!=C.Query.wildcard&&(e.term=e.term+"*"),"presence"in e||(e.presence=C.Query.presence.OPTIONAL),this.clauses.push(e),this},C.Query.prototype.isNegated=function(){for(var e=0;e<this.clauses.length;e++)if(this.clauses[e].presence!=C.Query.presence.PROHIBITED)return!1;return!0},C.Query.prototype.term=function(e,t){if(Array.isArray(e))return e.forEach((function(e){this.term(e,C.utils.clone(t))}),this),this;var r=t||{};return r.term=e.toString(),this.clause(r),this},C.QueryParseError=function(e,t,r){this.name="QueryParseError",this.message=e,this.start=t,this.end=r},C.QueryParseError.prototype=new Error,C.QueryLexer=function(e){this.lexemes=[],this.str=e,this.length=e.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},C.QueryLexer.prototype.run=function(){for(var e=C.QueryLexer.lexText;e;)e=e(this)},C.QueryLexer.prototype.sliceString=function(){for(var e=[],t=this.start,r=this.pos,i=0;i<this.escapeCharPositions.length;i++)r=this.escapeCharPositions[i],e.push(this.str.slice(t,r)),t=r+1;return e.push(this.str.slice(t,this.pos)),this.escapeCharPositions.length=0,e.join("")},C.QueryLexer.prototype.emit=function(e){this.lexemes.push({type:e,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},C.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},C.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return C.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},C.QueryLexer.prototype.width=function(){return this.pos-this.start},C.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},C.QueryLexer.prototype.backup=function(){this.pos-=1},C.QueryLexer.prototype.acceptDigitRun=function(){var e,t;do{t=(e=this.next()).charCodeAt(0)}while(t>47&&t<58);e!=C.QueryLexer.EOS&&this.backup()},C.QueryLexer.prototype.more=function(){return this.pos<this.length},C.QueryLexer.EOS="EOS",C.QueryLexer.FIELD="FIELD",C.QueryLexer.TERM="TERM",C.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE",C.QueryLexer.BOOST="BOOST",C.QueryLexer.PRESENCE="PRESENCE",C.QueryLexer.lexField=function(e){return e.backup(),e.emit(C.QueryLexer.FIELD),e.ignore(),C.QueryLexer.lexText},C.QueryLexer.lexTerm=function(e){if(e.width()>1&&(e.backup(),e.emit(C.QueryLexer.TERM)),e.ignore(),e.more())return C.QueryLexer.lexText},C.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.EDIT_DISTANCE),C.QueryLexer.lexText},C.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(C.QueryLexer.BOOST),C.QueryLexer.lexText},C.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(C.QueryLexer.TERM)},C.QueryLexer.termSeparator=C.tokenizer.separator,C.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==C.QueryLexer.EOS)return C.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return C.QueryLexer.lexField;if("~"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),e.width()>0&&e.emit(C.QueryLexer.TERM),C.QueryLexer.lexBoost;if("+"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if("-"==t&&1===e.width())return e.emit(C.QueryLexer.PRESENCE),C.QueryLexer.lexText;if(t.match(C.QueryLexer.termSeparator))return C.QueryLexer.lexTerm}else e.escapeCharacter()}},C.QueryParser=function(e,t){this.lexer=new C.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},C.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=C.QueryParser.parseClause;e;)e=e(this);return this.query},C.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},C.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},C.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},C.QueryParser.parseClause=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case C.QueryLexer.PRESENCE:return C.QueryParser.parsePresence;case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:var r="expected either a field or a term, found "+t.type;throw t.str.length>=1&&(r+=" with value '"+t.str+"'"),new C.QueryParseError(r,t.start,t.end)}},C.QueryParser.parsePresence=function(e){var t=e.consumeLexeme();if(null!=t){switch(t.str){case"-":e.currentClause.presence=C.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=C.Query.presence.REQUIRED;break;default:var r="unrecognised presence operator'"+t.str+"'";throw new C.QueryParseError(r,t.start,t.end)}var i=e.peekLexeme();if(null==i)throw r="expecting term or field, found nothing",new C.QueryParseError(r,t.start,t.end);switch(i.type){case C.QueryLexer.FIELD:return C.QueryParser.parseField;case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:throw r="expecting term or field, found '"+i.type+"'",new C.QueryParseError(r,i.start,i.end)}}},C.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var r=e.query.allFields.map((function(e){return"'"+e+"'"})).join(", "),i="unrecognised field '"+t.str+"', possible fields: "+r;throw new C.QueryParseError(i,t.start,t.end)}e.currentClause.fields=[t.str];var n=e.peekLexeme();if(null==n)throw i="expecting term, found nothing",new C.QueryParseError(i,t.start,t.end);switch(n.type){case C.QueryLexer.TERM:return C.QueryParser.parseTerm;default:throw i="expecting term, found '"+n.type+"'",new C.QueryParseError(i,n.start,n.end)}}},C.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var r=e.peekLexeme();if(null!=r)switch(r.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+r.type+"'";throw new C.QueryParseError(i,r.start,r.end)}else e.nextClause()}},C.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var i="edit distance must be numeric";throw new C.QueryParseError(i,t.start,t.end)}e.currentClause.editDistance=r;var n=e.peekLexeme();if(null!=n)switch(n.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:throw i="Unexpected lexeme type '"+n.type+"'",new C.QueryParseError(i,n.start,n.end)}else e.nextClause()}},C.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var r=parseInt(t.str,10);if(isNaN(r)){var i="boost must be numeric";throw new C.QueryParseError(i,t.start,t.end)}e.currentClause.boost=r;var n=e.peekLexeme();if(null!=n)switch(n.type){case C.QueryLexer.TERM:return e.nextClause(),C.QueryParser.parseTerm;case C.QueryLexer.FIELD:return e.nextClause(),C.QueryParser.parseField;case C.QueryLexer.EDIT_DISTANCE:return C.QueryParser.parseEditDistance;case C.QueryLexer.BOOST:return C.QueryParser.parseBoost;case C.QueryLexer.PRESENCE:return e.nextClause(),C.QueryParser.parsePresence;default:throw i="Unexpected lexeme type '"+n.type+"'",new C.QueryParseError(i,n.start,n.end)}else e.nextClause()}},void 0===(n="function"==typeof(i=function(){return C})?i.call(t,r,t,e):i)||(e.exports=n)}()},556:function(e,t,r){"use strict";r.r(t)},603:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Application=t.registerComponent=void 0;const r=[];t.registerComponent=function(e,t){r.push({selector:t,constructor:e})},t.Application=class{constructor(){this.createComponents(document.body)}createComponents(e){r.forEach((t=>{e.querySelectorAll(t.selector).forEach((e=>{e.dataset.hasInstance||(new t.constructor({el:e}),e.dataset.hasInstance=String(!0))}))}))}}},53:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Component=void 0,t.Component=class{constructor(e){this.el=e.el}}},909:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EventTarget=void 0,t.EventTarget=class{constructor(){this.listeners={}}addEventListener(e,t){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(t)}removeEventListener(e,t){if(!(e in this.listeners))return;const r=this.listeners[e];for(let e=0,i=r.length;e<i;e++)if(r[e]===t)return void r.splice(e,1)}dispatchEvent(e){if(!(e.type in this.listeners))return!0;const t=this.listeners[e.type].slice();for(let r=0,i=t.length;r<i;r++)t[r].call(this,e);return!e.defaultPrevented}}},867:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Filter=void 0;const i=r(53),n=r(102);class s{constructor(e,t){this.key=e,this.value=t,this.defaultValue=t,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;const t=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(t,e)}}class o extends s{initialize(){const e=document.querySelector("#tsd-filter-"+this.key);e&&(this.checkbox=e,this.checkbox.addEventListener("change",(()=>{this.setValue(this.checkbox.checked)})))}handleValueChange(e,t){this.checkbox&&(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return"true"==e}toLocalStorage(e){return e?"true":"false"}}class a extends s{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);const e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;const t=()=>{this.select.classList.add("active")};this.select.addEventListener(n.pointerDown,t),this.select.addEventListener("mouseover",t),this.select.addEventListener("mouseleave",(()=>{this.select.classList.remove("active")})),this.select.querySelectorAll("li").forEach((t=>{t.addEventListener(n.pointerUp,(t=>{e.classList.remove("active"),this.setValue(t.target.dataset.value||"")}))})),document.addEventListener(n.pointerDown,(e=>{this.select.contains(e.target)||this.select.classList.remove("active")}))}handleValueChange(e,t){this.select.querySelectorAll("li.selected").forEach((e=>{e.classList.remove("selected")}));const r=this.select.querySelector('li[data-value="'+t+'"]'),i=this.select.querySelector(".tsd-select-label");r&&i&&(r.classList.add("selected"),i.textContent=r.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+t)}fromLocalStorage(e){return e}toLocalStorage(e){return e}}class l extends i.Component{constructor(e){super(e),this.optionVisibility=new a("visibility","private"),this.optionInherited=new o("inherited",!0),this.optionExternals=new o("externals",!0)}static isSupported(){try{return void 0!==window.localStorage}catch(e){return!1}}}t.Filter=l},73:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.MenuHighlight=void 0;const i=r(53),n=r(901);class s extends i.Component{constructor(e){super(e),this.anchors=[],this.index=-1,n.Viewport.instance.addEventListener("resize",(()=>this.onResize())),n.Viewport.instance.addEventListener("scroll",(e=>this.onScroll(e))),this.createAnchors()}createAnchors(){let e=window.location.href;-1!=e.indexOf("#")&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach((t=>{const r=t.href;if(-1==r.indexOf("#"))return;if(r.substr(0,e.length)!=e)return;const i=r.substr(r.indexOf("#")+1),n=document.querySelector("a.tsd-anchor[name="+i+"]"),s=t.parentNode;n&&s&&this.anchors.push({link:s,anchor:n,position:0})})),this.onResize()}onResize(){let e;for(let t=0,r=this.anchors.length;t<r;t++){e=this.anchors[t];const r=e.anchor.getBoundingClientRect();e.position=r.top+document.body.scrollTop}this.anchors.sort(((e,t)=>e.position-t.position));const t=new CustomEvent("scroll",{detail:{scrollTop:n.Viewport.instance.scrollTop}});this.onScroll(t)}onScroll(e){const t=e.detail.scrollTop+5,r=this.anchors,i=r.length-1;let n=this.index;for(;n>-1&&r[n].position>t;)n-=1;for(;n<i&&r[n+1].position<t;)n+=1;this.index!=n&&(this.index>-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=n,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}}t.MenuHighlight=s},845:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.initSearch=void 0;const i=r(80),n=r(230);function s(e,t){let r=e.querySelector(".current");if(r){const e=1==t?r.nextElementSibling:r.previousElementSibling;e&&(r.classList.remove("current"),e.classList.add("current"))}else r=e.querySelector(1==t?"li:first-child":"li:last-child"),r&&r.classList.add("current")}function o(e,t){if(""===t)return e;const r=e.toLocaleLowerCase(),i=t.toLocaleLowerCase(),n=[];let s=0,o=r.indexOf(i);for(;-1!=o;)n.push(l(e.substring(s,o)),`<b>${l(e.substring(o,o+i.length))}</b>`),s=o+i.length,o=r.indexOf(i,s);return n.push(l(e.substring(s))),n.join("")}t.initSearch=function(){const e=document.getElementById("tsd-search");if(!e)return;const t=document.getElementById("search-script");e.classList.add("loading"),t&&(t.addEventListener("error",(()=>{e.classList.remove("loading"),e.classList.add("failure")})),t.addEventListener("load",(()=>{e.classList.remove("loading"),e.classList.add("ready")})),window.searchData&&e.classList.remove("loading"));const r=document.querySelector("#tsd-search-field"),a=document.querySelector(".results");if(!r||!a)throw new Error("The input field or the result list wrapper was not found");let l=!1;a.addEventListener("mousedown",(()=>l=!0)),a.addEventListener("mouseup",(()=>{l=!1,e.classList.remove("has-focus")})),r.addEventListener("focus",(()=>e.classList.add("has-focus"))),r.addEventListener("blur",(()=>{l||(l=!1,e.classList.remove("has-focus"))}));const c={base:e.dataset.base+"/"};!function(e,t,r,a){r.addEventListener("input",(0,i.debounce)((()=>{!function(e,t,r,i){if(function(e,t){e.index||window.searchData&&(t.classList.remove("loading"),t.classList.add("ready"),e.data=window.searchData,e.index=n.Index.load(window.searchData.index))}(i,e),!i.index||!i.data)return;t.textContent="";const s=r.value.trim();let a=i.index.search(`*${s}*`);for(let e=0,r=Math.min(10,a.length);e<r;e++){const r=i.data.rows[Number(a[e].ref)];let n=o(r.name,s);r.parent&&(n=`<span class="parent">${o(r.parent,s)}.</span>${n}`);const l=document.createElement("li");l.classList.value=r.classes;const c=document.createElement("a");c.href=i.base+r.url,c.classList.add("tsd-kind-icon"),c.innerHTML=n,l.append(c),t.appendChild(l)}}(e,t,r,a)}),200));let l=!1;r.addEventListener("keydown",(e=>{l=!0,"Enter"==e.key?function(e,t){let r=e.querySelector(".current");if(r||(r=e.querySelector("li:first-child")),r){const e=r.querySelector("a");e&&(window.location.href=e.href),t.blur()}}(t,r):"Escape"==e.key?r.blur():"ArrowUp"==e.key?s(t,-1):"ArrowDown"===e.key?s(t,1):l=!1})),r.addEventListener("keypress",(e=>{l&&e.preventDefault()})),document.body.addEventListener("keydown",(e=>{e.altKey||e.ctrlKey||e.metaKey||r.matches(":focus")||"/"!==e.key||(r.focus(),e.preventDefault())}))}(e,a,r,c)};const a={"&":"&amp;","<":"&lt;",">":"&gt;","'":"&#039;",'"':"&quot;"};function l(e){return e.replace(/[&<>"'"]/g,(e=>a[e]))}},768:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Signature=void 0;const i=r(53),n=r(901);class s{constructor(e,t){this.signature=e,this.description=t}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}}class o extends i.Component{constructor(e){super(e),this.groups=[],this.index=-1,this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach((e=>{e.addEventListener("touchstart",(e=>this.onClick(e))),e.addEventListener("click",(e=>this.onClick(e)))})),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;const t=this.groups[e];if(this.index>-1){const e=this.groups[this.index];e.removeClass("current").addClass("fade-out"),t.addClass("current"),t.addClass("fade-in"),n.Viewport.instance.triggerResize(),setTimeout((()=>{e.removeClass("fade-out"),t.removeClass("fade-in")}),300)}else t.addClass("current"),n.Viewport.instance.triggerResize();this.index=e}createGroups(){const e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;const t=this.container.children;this.groups=[];for(let r=0;r<e.length;r++)this.groups.push(new s(e[r],t[r]))}onClick(e){this.groups.forEach(((t,r)=>{t.signature===e.currentTarget&&this.setIndex(r)}))}}t.Signature=o},366:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Toggle=void 0;const i=r(53),n=r(102);class s extends i.Component{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(n.pointerUp,(e=>this.onPointerUp(e))),this.el.addEventListener("click",(e=>e.preventDefault())),document.addEventListener(n.pointerDown,(e=>this.onDocumentPointerDown(e))),document.addEventListener(n.pointerUp,(e=>this.onDocumentPointerUp(e)))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);const t=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(t),setTimeout((()=>document.documentElement.classList.remove(t)),500)}onPointerUp(e){n.hasPointerMoved||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!n.hasPointerMoved&&this.active&&e.target.closest(".col-menu")){const t=e.target.closest("a");if(t){let e=window.location.href;-1!=e.indexOf("#")&&(e=e.substr(0,e.indexOf("#"))),t.href.substr(0,e.length)==e&&setTimeout((()=>this.setActive(!1)),250)}}}}t.Toggle=s},901:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Viewport=void 0;const i=r(909),n=r(637);class s extends i.EventTarget{constructor(){super(),this.scrollTop=0,this.lastY=0,this.width=0,this.height=0,this.showToolbar=!0,this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",(0,n.throttle)((()=>this.onScroll()),10)),window.addEventListener("resize",(0,n.throttle)((()=>this.onResize()),10)),this.onResize(),this.onScroll()}triggerResize(){const e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;const e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;const e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e)}}t.Viewport=s,s.instance=new s},80:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.debounce=void 0,t.debounce=(e,t=100)=>{let r;return(...i)=>{clearTimeout(r),r=setTimeout((()=>e(i)),t)}}},102:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isMobile=t.hasPointerMoved=t.isPointerTouch=t.isPointerDown=t.preventNextClick=t.pointerDownPosition=t.pointerUp=t.pointerMove=t.pointerDown=void 0,t.pointerDown="mousedown",t.pointerMove="mousemove",t.pointerUp="mouseup",t.pointerDownPosition={x:0,y:0},t.preventNextClick=!1,t.isPointerDown=!1,t.isPointerTouch=!1,t.hasPointerMoved=!1,t.isMobile=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent),document.documentElement.classList.add(t.isMobile?"is-mobile":"not-mobile"),t.isMobile&&"ontouchstart"in document.documentElement&&(t.isPointerTouch=!0,t.pointerDown="touchstart",t.pointerMove="touchmove",t.pointerUp="touchend"),document.addEventListener(t.pointerDown,(e=>{t.isPointerDown=!0,t.hasPointerMoved=!1;const r="touchstart"==t.pointerDown?e.targetTouches[0]:e;t.pointerDownPosition.y=r.pageY||0,t.pointerDownPosition.x=r.pageX||0})),document.addEventListener(t.pointerMove,(e=>{if(t.isPointerDown&&!t.hasPointerMoved){const r="touchstart"==t.pointerDown?e.targetTouches[0]:e,i=t.pointerDownPosition.x-(r.pageX||0),n=t.pointerDownPosition.y-(r.pageY||0);t.hasPointerMoved=Math.sqrt(i*i+n*n)>10}})),document.addEventListener(t.pointerUp,(()=>{t.isPointerDown=!1})),document.addEventListener("click",(e=>{t.preventNextClick&&(e.preventDefault(),e.stopImmediatePropagation(),t.preventNextClick=!1)}))},637:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.throttle=void 0,t.throttle=(e,t=100)=>{let r=Date.now();return(...i)=>{r+t-Date.now()<0&&(e(...i),r=Date.now())}}}},r={};function i(e){var n=r[e];if(void 0!==n)return n.exports;var s=r[e]={exports:{}};return t[e](s,s.exports,i),s.exports}i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(e,t,r,i){var n,s,o,a={addImgResponsiveClass:function(t){t.find("img").each((function(t,r){var i=e(r);i.attr("class")?-1===i.attr("class").indexOf("img-responsive")&&i.addClass("img-responsive"):i.addClass("img-responsive")}))}};e((function(){var t,l=e(".main-box");n=e(r),o=e("#nav-button"),s=e("#nav-container"),1===l.length&&a.addImgResponsiveClass(l);var c=function(){e(r).width()==t||(t=n.width(),r.matchMedia&&r.matchMedia("print").matches)||(i.common.isSmallDeviceWidth(),i.common.syncSidebarHeight())};c(),n.on("resize",c),o.click((function(e){var t=0===parseInt(s.height())?i.locale.navHideLabel:i.locale.navShowLabel;o.text(t).blur(),t===i.locale.navShowLabel&&i.common.scrollToTop()}))})),(i=i||{}).renderingService=a}(jQuery,Modernizr,window,window.igViewer),function(e,t,r){Array.prototype.clean=function(e){for(var t=0;t<this.length;t++)this[t]==e&&(this.splice(t,1),t--);return this};var i,n=t(e),s=t("#top-button"),o=t(".nav-sidebar"),a=t("body"),l={currentPageInfo:{}},c={contentContainerId:"#document-content-container",contentElementId:"#document-content",$errorPublishedMessage:t("#error-published-message"),contentFolderName:"help",homePages:["index","home-page"],topicAPI:"",isOnline:!1,baseURI:e.baseURI||"",footer:t("#footer-container"),currentPageInfo:function(e){return e?(l.currentPageInfo.pageName,e.pageName,void(l.currentPageInfo=e)):l.currentPageInfo},versionQuery:function(t){var r=(t||e.location.search).match(/[\?&]v=(\d\d\.\d)/);return r&&r[1]?"?v="+r[1]:""},isContentPage:function(){return!(!c.path||!c.path.length)||!!c.isOnIndexPage()},getPageInfo:function(e,t){var r=e.replace(/\.html(?=\?|$)/i,"").toLowerCase();c.isOnIndexPage(r)&&!c.isOnline&&c.baseURI&&(c.baseURI="../");var i=c.baseURI+e,n=c.baseURI+r,s=c.topicAPI+r;return{title:t,fileName:e,pageName:r,path:{navigation:c.isOnline?n:i,service:c.isOnline?s:i,noExt:n,api:s,ext:i},isContentPage:c.isContentPage()}},getPageNameFromLocation:function(){var t=e.location.pathname.split("/");t=t.clean("");var r=c.isOnline?"":c.homePages[2];return t.length>1&&(r=c.isOnline?t.pop().toLowerCase():t.pop()),r+=c.versionQuery(),decodeURIComponent(r)},isOnIndexPage:function(e){if(!e){var t=location.protocol+"//"+location.host+location.pathname;if(t===c.baseURI)return!0;e=t.replace(c.baseURI,"")}return-1!==jQuery.inArray(e,c.homePages)},isCurrentPage:function(t,r){return t=t||e.location.protocol+"//"+e.location.host+e.location.pathname,t+=c.versionQuery(r),c.currentPageInfo().path.navigation==t},isUsingWebServer:function(){var t=e.location.protocol;return"http:"===t||"https:"===t},isSmallDeviceWidth:function(){return n.width()<768},shouldUsePushState:function(){return!!r.history&&c.isUsingWebServer()},hasLocationHash:function(){return e.location.hash&&e.location.hash.length>0},refreshHash:function(){c.hasLocationHash()&&e.location.assign(e.location.href)},scrollToTop:function(){t("html, body").animate({scrollTop:0},"fast")},adjustTopLinkPos:function(){n.height()+n.scrollTop()>c.footer.offset().top?s.css({position:"absolute"}):s.css({position:"fixed"})},publishErrorToServer:function(r){var i;r.message&&(i=" Message: "+r.message),r.stack&&(i+=" Stack: "+r.stack);var n={errorText:i,url:e.document.location.href};t.post("api/error",n),c.$errorPublishedMessage.fadeIn()},syncSidebarHeight:function(){var e=void 0,r=o.height();void 0===(e=(i=i||t(c.contentContainerId).parent()).data("defaultMinHeight"))&&(e=parseInt(i.css("minHeight"),10),i.data("defaultMinHeight",e)),r>e?i.css("minHeight",r):i.css("minHeight",e)},toAbsoluteURL:function(t){var r=e.document.createElement("a");return r.href=t,r.href},getProductList:function(){var e=a.attr("data-product-list"),t=[];return void 0!==e&&(t=e.split("|")),t}};s.children("button").click((function(e){c.scrollToTop(),this.blur()})),c.$errorPublishedMessage.on("click",".close",(function(e){c.$errorPublishedMessage.fadeOut()})),c.isOnline="online"===t("body").attr("data-mode"),c.baseURI=c.toAbsoluteURL(c.baseURI),c.currentPageInfo(c.getPageInfo(c.getPageNameFromLocation())),c.adjustTopLinkPos(),c.refreshHash(),n.scroll(c.adjustTopLinkPos),n.one("load",(function(){c.syncSidebarHeight()})),e.igViewer=e.igViewer||{},e.igViewer.common=c}(window,jQuery,Modernizr),e=$("body").data("base-url")+"/navigation",$.ajax({url:e,type:"get",xhrFields:{withCredentials:!1}}).done((function(e){var t=$(e),r=t.find("#header")[0].outerHTML;$("#header").replaceWith(r);var i=$("#logOutLink");if(0!==i.length){var n=i.attr("href").split("?")[0];i.attr("href",n)}var s=t.find("footer.ui-footer")[0].outerHTML;$("footer.ui-footer").replaceWith(s);var o=t.find("#footer")[0].outerHTML;$("#footer").replaceWith(o),window.igViewer.common.footer=$("#footer-container"),igNavigation.init()})),window.igViewer.common.footer=$("#footer-container"),igNavigation.init(),$(document).ready((function(){window.igViewer.common.adjustTopLinkPos()})),function(){"use strict";const e=i(603),t=i(73),r=i(845),n=i(768),s=i(366),o=i(867);i(556),(0,r.initSearch)(),(0,e.registerComponent)(t.MenuHighlight,".menu-highlight"),(0,e.registerComponent)(n.Signature,".tsd-signatures"),(0,e.registerComponent)(s.Toggle,"a[data-toggle]"),o.Filter.isSupported()?(0,e.registerComponent)(o.Filter,"#tsd-filter"):document.documentElement.classList.add("no-filter");const a=new e.Application;Object.defineProperty(window,"app",{value:a})}()}();
@@ -0,0 +1,61 @@
1
+ /*!
2
+ * lunr.Builder
3
+ * Copyright (C) 2020 Oliver Nightingale
4
+ */
5
+
6
+ /*!
7
+ * lunr.Index
8
+ * Copyright (C) 2020 Oliver Nightingale
9
+ */
10
+
11
+ /*!
12
+ * lunr.Pipeline
13
+ * Copyright (C) 2020 Oliver Nightingale
14
+ */
15
+
16
+ /*!
17
+ * lunr.Set
18
+ * Copyright (C) 2020 Oliver Nightingale
19
+ */
20
+
21
+ /*!
22
+ * lunr.TokenSet
23
+ * Copyright (C) 2020 Oliver Nightingale
24
+ */
25
+
26
+ /*!
27
+ * lunr.Vector
28
+ * Copyright (C) 2020 Oliver Nightingale
29
+ */
30
+
31
+ /*!
32
+ * lunr.stemmer
33
+ * Copyright (C) 2020 Oliver Nightingale
34
+ * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt
35
+ */
36
+
37
+ /*!
38
+ * lunr.stopWordFilter
39
+ * Copyright (C) 2020 Oliver Nightingale
40
+ */
41
+
42
+ /*!
43
+ * lunr.tokenizer
44
+ * Copyright (C) 2020 Oliver Nightingale
45
+ */
46
+
47
+ /*!
48
+ * lunr.trimmer
49
+ * Copyright (C) 2020 Oliver Nightingale
50
+ */
51
+
52
+ /*!
53
+ * lunr.utils
54
+ * Copyright (C) 2020 Oliver Nightingale
55
+ */
56
+
57
+ /**
58
+ * lunr - http://lunrjs.com - A bit like Solr, but much smaller and not as bright - 2.3.9
59
+ * Copyright (C) 2020 Oliver Nightingale
60
+ * @license MIT
61
+ */
@@ -0,0 +1 @@
1
+ /*! normalize.css v1.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;font-family:sans-serif}button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:80%}sub{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;top:-0.5em}sub{bottom:-0.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure,form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button]{-webkit-appearance:button;cursor:pointer;*overflow:visible}input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}pre{position:relative;opacity:1;background:#fff;color:#777;border:1px solid #ededed;box-shadow:none}pre:hover{box-shadow:0 0 8px 0 rgba(0,0,0,.15)}pre+pre{margin-top:10px}.hljs{display:block;overflow-x:auto;background:inherit;position:relative}.hljs-lang-name{position:absolute;padding:8px;top:0;right:0;text-transform:uppercase;font-size:12px;font-weight:600;opacity:.7}.hljs-code-copy{position:absolute;display:flex;align-items:center;padding:8px;font-size:12px;color:rgba(255,255,255,.6);background:#09f;font-weight:600;border:0;top:0;right:0;outline-style:none;transition:color .25s ease-in-out}.hljs-code-copy:hover{color:#fff}.hljs-code-copy::before{font-family:"Material Icons",sans-serif;font-size:inherit;content:"";color:inherit;margin-right:8px}.hljs-code-copy.hidden{display:none}.hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-keyword,.hljs-formula{color:#fb9a00}.hljs-section,.hljs-name,.hljs-selector-tag,.hljs-deletion,.hljs-subst{color:#e06c75}.hljs-literal{color:#e32659}.hljs-string,.hljs-regexp,.hljs-addition,.hljs-attribute,.hljs-meta-string{color:#68b400}.hljs-built_in,.hljs-class .hljs-title{color:#dc65ff}.hljs-attr,.hljs-variable,.hljs-template-variable,.hljs-type,.hljs-selector-class,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-number{color:#d19a66}.hljs-symbol,.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-title{color:#0072be}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:600}.hljs-link{text-decoration:underline}ul.tsd-descriptions>li>:first-child,.tsd-panel>:first-child,.col>:first-child,.col-11>:first-child,.col-10>:first-child,.col-9>:first-child,.col-8>:first-child,.col-7>:first-child,.col-6>:first-child,.col-5>:first-child,.col-4>:first-child,.col-3>:first-child,.col-2>:first-child,.col-1>:first-child,ul.tsd-descriptions>li>:first-child>:first-child,.tsd-panel>:first-child>:first-child,.col>:first-child>:first-child,.col-11>:first-child>:first-child,.col-10>:first-child>:first-child,.col-9>:first-child>:first-child,.col-8>:first-child>:first-child,.col-7>:first-child>:first-child,.col-6>:first-child>:first-child,.col-5>:first-child>:first-child,.col-4>:first-child>:first-child,.col-3>:first-child>:first-child,.col-2>:first-child>:first-child,.col-1>:first-child>:first-child,ul.tsd-descriptions>li>:first-child>:first-child>:first-child,.tsd-panel>:first-child>:first-child>:first-child,.col>:first-child>:first-child>:first-child,.col-11>:first-child>:first-child>:first-child,.col-10>:first-child>:first-child>:first-child,.col-9>:first-child>:first-child>:first-child,.col-8>:first-child>:first-child>:first-child,.col-7>:first-child>:first-child>:first-child,.col-6>:first-child>:first-child>:first-child,.col-5>:first-child>:first-child>:first-child,.col-4>:first-child>:first-child>:first-child,.col-3>:first-child>:first-child>:first-child,.col-2>:first-child>:first-child>:first-child,.col-1>:first-child>:first-child>:first-child{margin-top:0}ul.tsd-descriptions>li>:last-child,.tsd-panel>:last-child,.col>:last-child,.col-11>:last-child,.col-10>:last-child,.col-9>:last-child,.col-8>:last-child,.col-7>:last-child,.col-6>:last-child,.col-5>:last-child,.col-4>:last-child,.col-3>:last-child,.col-2>:last-child,.col-1>:last-child,ul.tsd-descriptions>li>:last-child>:last-child,.tsd-panel>:last-child>:last-child,.col>:last-child>:last-child,.col-11>:last-child>:last-child,.col-10>:last-child>:last-child,.col-9>:last-child>:last-child,.col-8>:last-child>:last-child,.col-7>:last-child>:last-child,.col-6>:last-child>:last-child,.col-5>:last-child>:last-child,.col-4>:last-child>:last-child,.col-3>:last-child>:last-child,.col-2>:last-child>:last-child,.col-1>:last-child>:last-child,ul.tsd-descriptions>li>:last-child>:last-child>:last-child,.tsd-panel>:last-child>:last-child>:last-child,.col>:last-child>:last-child>:last-child,.col-11>:last-child>:last-child>:last-child,.col-10>:last-child>:last-child>:last-child,.col-9>:last-child>:last-child>:last-child,.col-8>:last-child>:last-child>:last-child,.col-7>:last-child>:last-child>:last-child,.col-6>:last-child>:last-child>:last-child,.col-5>:last-child>:last-child>:last-child,.col-4>:last-child>:last-child>:last-child,.col-3>:last-child>:last-child>:last-child,.col-2>:last-child>:last-child>:last-child,.col-1>:last-child>:last-child>:last-child{margin-bottom:0}.container{margin:0 auto}@media(max-width: 640px){.container{padding:0 20px}}.container-main{padding-top:126px}@media only screen and (max-width: 961px){.container-main{padding-top:110px}}.row{position:relative;display:flex}.row:after{visibility:hidden;display:block;content:"";clear:both;height:0}.col,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{box-sizing:border-box;float:left}.col-1{width:8.3333333333%}.offset-1{margin-left:8.3333333333%}.col-2{width:16.6666666667%}.offset-2{margin-left:16.6666666667%}.col-3{width:25%}.offset-3{margin-left:25%}.col-4{width:33.3333333333%}.offset-4{margin-left:33.3333333333%}.col-5{width:41.6666666667%}.offset-5{margin-left:41.6666666667%}.col-6{width:50%}.offset-6{margin-left:50%}.col-7{width:58.3333333333%}.offset-7{margin-left:58.3333333333%}.col-8{width:66.6666666667%}.offset-8{margin-left:66.6666666667%}.col-9{width:75%}.offset-9{margin-left:75%}.col-10{width:83.3333333333%}.offset-10{margin-left:83.3333333333%}.col-11{width:91.6666666667%}.offset-11{margin-left:91.6666666667%}.tsd-kind-icon{display:block;position:relative}.tsd-kind-icon::before{content:"";display:inline-block;vertical-align:sub;width:17px;height:17px;margin-right:8px;background-image:url(../images/icons.png)}@media(-webkit-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5),(min-resolution: 144dpi){.tsd-kind-icon::before{background-image:url(../images/icons@2x.png);background-size:238px 204px}}.tsd-signature.tsd-kind-icon:before{background-position:0 -153px}.tsd-kind-object-literal>.tsd-kind-icon:before{background-position:0px -17px}.tsd-kind-object-literal.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -17px}.tsd-kind-object-literal.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -17px}.tsd-kind-class>.tsd-kind-icon:before{background-position:0px -34px}.tsd-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -34px}.tsd-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -34px}.tsd-kind-class.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -51px}.tsd-kind-class.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -51px}.tsd-kind-interface>.tsd-kind-icon:before{background-position:0px -68px}.tsd-kind-interface.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -68px}.tsd-kind-interface.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -68px}.tsd-kind-interface.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -85px}.tsd-kind-interface.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -85px}.tsd-kind-module>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-module.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-module.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-external-module>.tsd-kind-icon:before{background-position:0px -102px}.tsd-kind-external-module.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -102px}.tsd-kind-external-module.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -102px}.tsd-kind-enum>.tsd-kind-icon:before{background-position:0px -119px}.tsd-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -119px}.tsd-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -119px}.tsd-kind-enum-member>.tsd-kind-icon:before{background-position:0px -136px}.tsd-kind-enum-member.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -136px}.tsd-kind-enum-member.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -136px}.tsd-kind-signature>.tsd-kind-icon:before{background-position:0px -153px}.tsd-kind-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -153px}.tsd-kind-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -153px}.tsd-kind-type-alias>.tsd-kind-icon:before{background-position:0px -170px}.tsd-kind-type-alias.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -170px}.tsd-kind-type-alias.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -170px}.tsd-kind-type-alias.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:0px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-17px -187px}.tsd-kind-type-alias.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-34px -187px}.tsd-kind-variable>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-variable.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-variable.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-variable.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-variable.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-variable.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-variable.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-property>.tsd-kind-icon:before{background-position:-136px -0px}.tsd-kind-property.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -0px}.tsd-kind-property.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -0px}.tsd-kind-property.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -0px}.tsd-kind-property.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -0px}.tsd-kind-property.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -0px}.tsd-kind-property.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -0px}.tsd-kind-get-signature>.tsd-kind-icon:before{background-position:-136px -17px}.tsd-kind-get-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -17px}.tsd-kind-get-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -17px}.tsd-kind-get-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -17px}.tsd-kind-get-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -17px}.tsd-kind-get-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -17px}.tsd-kind-set-signature>.tsd-kind-icon:before{background-position:-136px -34px}.tsd-kind-set-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -34px}.tsd-kind-set-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -34px}.tsd-kind-set-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -34px}.tsd-kind-set-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -34px}.tsd-kind-set-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -34px}.tsd-kind-accessor>.tsd-kind-icon:before{background-position:-136px -51px}.tsd-kind-accessor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -51px}.tsd-kind-accessor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -51px}.tsd-kind-accessor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -51px}.tsd-kind-accessor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -51px}.tsd-kind-accessor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -51px}.tsd-kind-accessor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -51px}.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -68px}.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -68px}.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -68px}.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -68px}.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -68px}.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -68px}.tsd-kind-function.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-function.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-method.tsd-has-type-parameter>.tsd-kind-icon:before{background-position:-136px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -85px}.tsd-kind-method.tsd-has-type-parameter.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -85px}.tsd-kind-constructor>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-constructor-signature>.tsd-kind-icon:before{background-position:-136px -102px}.tsd-kind-constructor-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -102px}.tsd-kind-constructor-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -102px}.tsd-kind-constructor-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -102px}.tsd-kind-index-signature>.tsd-kind-icon:before{background-position:-136px -119px}.tsd-kind-index-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -119px}.tsd-kind-index-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -119px}.tsd-kind-index-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -119px}.tsd-kind-index-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -119px}.tsd-kind-index-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -119px}.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -136px}.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -136px}.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -136px}.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -136px}.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -136px}.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -136px}.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -136px}.tsd-is-static>.tsd-kind-icon:before{background-position:-136px -153px}.tsd-is-static.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -153px}.tsd-is-static.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -153px}.tsd-is-static.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -153px}.tsd-is-static.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -153px}.tsd-is-static.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -153px}.tsd-is-static.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -153px}.tsd-is-static.tsd-kind-function>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-function.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-function.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-function.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-method>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-method.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-method.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-method.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-call-signature>.tsd-kind-icon:before{background-position:-136px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -170px}.tsd-is-static.tsd-kind-call-signature.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -170px}.tsd-is-static.tsd-kind-event>.tsd-kind-icon:before{background-position:-136px -187px}.tsd-is-static.tsd-kind-event.tsd-is-protected>.tsd-kind-icon:before{background-position:-153px -187px}.tsd-is-static.tsd-kind-event.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class>.tsd-kind-icon:before{background-position:-51px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-inherited>.tsd-kind-icon:before{background-position:-68px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected>.tsd-kind-icon:before{background-position:-85px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-protected.tsd-is-inherited>.tsd-kind-icon:before{background-position:-102px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-class.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum>.tsd-kind-icon:before{background-position:-170px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-protected>.tsd-kind-icon:before{background-position:-187px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-enum.tsd-is-private>.tsd-kind-icon:before{background-position:-119px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface>.tsd-kind-icon:before{background-position:-204px -187px}.tsd-is-static.tsd-kind-event.tsd-parent-kind-interface.tsd-is-inherited>.tsd-kind-icon:before{background-position:-221px -187px}.no-transition{transition:none !important}@keyframes fade-in{from{opacity:0}to{opacity:1}}@keyframes fade-out{from{opacity:1;visibility:visible}to{opacity:0}}@keyframes fade-in-delayed{0%{opacity:0}33%{opacity:0}100%{opacity:1}}@keyframes fade-out-delayed{0%{opacity:1;visibility:visible}66%{opacity:0}100%{opacity:0}}@keyframes shift-to-left{from{transform:translate(0, 0)}to{transform:translate(-25%, 0)}}@keyframes unshift-to-left{from{transform:translate(-25%, 0)}to{transform:translate(0, 0)}}@keyframes pop-in-from-right{from{transform:translate(100%, 0)}to{transform:translate(0, 0)}}@keyframes pop-out-to-right{from{transform:translate(0, 0);visibility:visible}to{transform:translate(100%, 0)}}body{background:#fff;font-family:"aktiv-grotesk",sans-serif;font-size:16px;color:#666;-webkit-font-smoothing:antialiased}a{color:#4da6ff;text-decoration:none}a:hover{text-decoration:underline}code,pre{font-family:Menlo,Monaco,Consolas,"Courier New",monospace;padding:.2em;margin:0;font-size:14px;background-color:#fff}pre{padding:10px}pre code{padding:0;font-size:100%;background-color:transparent}.tsd-typography{line-height:2rem}.tsd-typography ul{list-style:square;padding:0 0 0 20px;margin:0}.tsd-typography h1{font-size:2rem;line-height:3rem;font-weight:300;margin:0}.tsd-typography h4,.tsd-typography h5,.tsd-typography h6{font-size:1rem;margin:0}.tsd-typography h5,.tsd-typography h6{font-weight:normal}.tsd-typography p,.tsd-typography ul,.tsd-typography ol{margin:1em 0}@media(min-width: 901px)and (max-width: 1024px){html.default .col-content{width:72%}html.default .col-menu{width:28%}}@media(max-width: 900px){html.default .col-content{float:none;width:100%}html.default .col-menu{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;overflow-scrolling:touch;z-index:1024;top:0 !important;bottom:0 !important;left:auto !important;right:0 !important;width:100%;padding:20px 20px 0 0;max-width:450px;visibility:hidden;background-color:#fff;transform:translate(100%, 0)}html.default .col-menu>*:last-child{padding-bottom:20px}html.default .overlay{content:"";display:block;position:fixed;z-index:1023;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.75);visibility:hidden}html.default.to-has-menu .overlay{animation:fade-in .4s}html.default.to-has-menu header,html.default.to-has-menu footer,html.default.to-has-menu .col-content{animation:shift-to-left .4s}html.default.to-has-menu .col-menu{animation:pop-in-from-right .4s}html.default.from-has-menu .overlay{animation:fade-out .4s}html.default.from-has-menu header,html.default.from-has-menu footer,html.default.from-has-menu .col-content{animation:unshift-to-left .4s}html.default.from-has-menu .col-menu{animation:pop-out-to-right .4s}html.default.has-menu body{overflow:hidden}html.default.has-menu .overlay{visibility:visible}html.default.has-menu header,html.default.has-menu footer,html.default.has-menu .col-content{transform:translate(-25%, 0)}html.default.has-menu .col-menu{visibility:visible;transform:translate(0, 0)}}.tsd-page-title{font-size:14px;padding:24px;margin-top:1rem !important}.tsd-page-title h1{color:#000;font-size:2.625rem;line-height:3rem;font-weight:300;margin:0}.tsd-breadcrumb{margin:0;padding:0;color:gray}.tsd-breadcrumb a{color:gray;text-decoration:none}.tsd-breadcrumb a:hover{text-decoration:underline}.tsd-breadcrumb li{display:inline}.tsd-breadcrumb li:after{content:" / "}.tsd-anchor-icon{display:none}html.minimal .container{margin:0}html.minimal .container-main{padding-top:50px;padding-bottom:0}html.minimal .content-wrap{padding-left:300px}html.minimal .tsd-navigation{position:fixed !important;overflow:auto;-webkit-overflow-scrolling:touch;overflow-scrolling:touch;box-sizing:border-box;z-index:1;left:0;top:40px;bottom:0;width:300px;padding:20px;margin:0}html.minimal .tsd-member .tsd-member{margin-left:0}html.minimal .tsd-page-toolbar{position:fixed;z-index:2}html.minimal #tsd-filter .tsd-filter-group{right:0;transform:none}html.minimal footer{background-color:transparent}html.minimal footer .container{padding:0}html.minimal .tsd-generator{padding:0}@media(max-width: 900px){html.minimal .tsd-navigation{display:none}html.minimal .content-wrap{padding-left:0}}.tsd-header{position:fixed;display:flex;flex-flow:column nowrap;width:100%;z-index:99}.tsd-header .tsd-header-content{display:flex;flex-direction:column;flex-wrap:nowrap;background:#222;justify-content:space-between;padding:0 15px;align-items:center;border-bottom:1px solid rgba(255,255,255,.1)}@media(min-width: 961px){.tsd-header .tsd-header-content{flex-direction:row;justify-content:space-between;height:50px}}.tsd-header .tsd-header-group{display:flex;width:100%;align-items:center;justify-content:space-between}.tsd-header-logo{display:inline-flex;align-items:center;align-self:flex-start;font-size:18px;font-weight:400;margin:0;height:50px}.tsd-header-logo>.title{color:#fff}.tsd-header-logo>.title:hover{text-decoration:none}.tsd-header-logo>.version{margin-left:12px}.tsd-header-logo>.version select{-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:0;border:none;min-width:64px;max-width:128px;font-size:13px;background-size:20px;color:#efefef;padding:4px 24px 4px 8px;outline-style:none}.tsd-header-logo>.version select::-ms-expand{display:none}.tsd-nav-toggle label{display:inline-flex;justify-content:center;align-items:center;background-color:#333;border:1px solid #333;color:#fff;padding:4px;outline-style:none;transition:background .25s ease-in-out}.tsd-nav-toggle label:hover{background:transparent}@media(min-width: 961px){.tsd-nav-toggle label{display:none}}.tsd-nav-toggle input[type=checkbox]{position:absolute;top:50%;left:50%;transform:translate3d(-50%, -50%, 0);z-index:-1}.tsd-nav-toggle input[type=checkbox]:checked~.tsd-nav{transform:translateY(0)}.tsd-nav{position:absolute;flex-flow:column nowrap;align-items:center;width:100%;flex:1;list-style:none;margin:0;padding:16px;background:#222;border-top:1px solid rgba(255,255,255,.1);box-shadow:0 -1px 0 #000;box-sizing:border-box;top:110px;left:0;right:0;transform:translateY(-110px);z-index:-1;transition:transform .25s ease-in-out}.tsd-nav-item{width:100%;text-align:center}.tsd-nav-item+.tsd-nav-item{margin-top:10px}@media(min-width: 961px){.tsd-nav{position:relative;display:flex;flex-flow:row nowrap;border:none;box-shadow:none;padding:0;width:auto;flex:0;top:initial;left:initial;right:initial;transform:translateY(0);z-index:initial;transition:none}.tsd-nav-item{width:initial}.tsd-nav-item+.tsd-nav-item{margin-top:0;margin-left:10px}}.tsd-comment-tags{align-items:center;overflow:hidden}.tsd-comment-tags dt{padding:0 8px;margin-right:8px;color:#09f;font-size:14px;font-weight:400;width:min-content}.tsd-comment-tags dd{margin:0 40px}.tsd-comment-tags dd:before,.tsd-comment-tags dd:after{display:table;content:" "}.tsd-comment-tags dd pre,.tsd-comment-tags dd:after{clear:both}.tsd-comment-tags p{margin:0}.tsd-panel.tsd-comment .lead{font-size:1.1em;line-height:2rem;margin-bottom:2em}.tsd-panel.tsd-comment .lead:last-child{margin-bottom:0}.toggle-protected .tsd-is-private{display:none}.toggle-public .tsd-is-private,.toggle-public .tsd-is-protected,.toggle-public .tsd-is-private-protected{display:none}.toggle-inherited .tsd-is-inherited{display:none}.toggle-only-exported .tsd-is-not-exported{display:none}.toggle-externals .tsd-is-external{display:none}#tsd-filter{position:relative;font-size:14px;padding:16px 0}.no-filter #tsd-filter{display:none}#tsd-filter .tsd-filter-group{display:flex;flex-flow:column nowrap}#tsd-filter input{display:none}#tsd-filter label,#tsd-filter .tsd-select-label{display:flex;align-items:center}#tsd-filter .tsd-select-list li{display:flex;align-items:center}@media(max-width: 900px){#tsd-filter .tsd-filter-group{display:block;position:absolute;top:50px;right:20px;height:auto;background-color:#fff;visibility:hidden;transform:translate(50%, 0);box-shadow:0 0 4px rgba(0,0,0,.25)}.has-options #tsd-filter .tsd-filter-group{visibility:visible}.to-has-options #tsd-filter .tsd-filter-group{animation:fade-in .2s}.from-has-options #tsd-filter .tsd-filter-group{animation:fade-out .2s}}footer{border-top:1px solid #dedede;background-color:#222;color:#fff;padding:15px}footer .tsd-legend-title{font-size:1.675rem;line-height:3rem;font-weight:300;margin:0}footer .tsd-legend-group{font-size:0}footer .tsd-legend{display:inline-block;width:25%;padding:0;font-size:14px;list-style:none;line-height:2rem;vertical-align:top}@media(max-width: 900px){footer .tsd-legend{width:50%}}footer .ui-footer{margin:auto -15px -15px}.tsd-hierarchy{font-size:15px;margin:0}.tsd-hierarchy .target{font-weight:500}.tsd-index-panel .tsd-index-content{margin-bottom:-30px !important}.tsd-index-panel .tsd-index-section{font-size:15px;margin-bottom:30px !important}.tsd-index-panel h3{color:#000;font-size:1rem;font-weight:400;padding:0 0 8px;border-bottom:1px solid #ededed}.tsd-index-panel ul.tsd-index-list{-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3;-webkit-column-gap:20px;-moz-column-gap:20px;-ms-column-gap:20px;-o-column-gap:20px;column-gap:20px;padding:0;list-style:none;line-height:2rem}@media(max-width: 900px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:1;-moz-column-count:1;-ms-column-count:1;-o-column-count:1;column-count:1}}@media(min-width: 901px)and (max-width: 1024px){.tsd-index-panel ul.tsd-index-list{-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}}.tsd-index-panel ul.tsd-index-list li{-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;-ms-column-break-inside:avoid;-o-column-break-inside:avoid;column-break-inside:avoid;-webkit-page-break-inside:avoid;-moz-page-break-inside:avoid;-ms-page-break-inside:avoid;-o-page-break-inside:avoid;page-break-inside:avoid}.tsd-index-panel a,.tsd-index-panel .tsd-parent-kind-module a{color:#9600ff}.tsd-index-panel .tsd-parent-kind-interface a{color:#7da01f}.tsd-index-panel .tsd-parent-kind-enum a{color:#f66604}.tsd-index-panel .tsd-parent-kind-class a{color:#4da6ff}.tsd-index-panel .tsd-kind-module a{color:#9600ff}.tsd-index-panel .tsd-kind-interface a{color:#7da01f}.tsd-index-panel .tsd-kind-enum a{color:#f66604}.tsd-index-panel .tsd-kind-class a{color:#4da6ff}.tsd-index-panel .tsd-is-private a{color:gray}.tsd-flag{display:inline-block;padding:1px 5px;border-radius:4px;color:#fff;background-color:#09f;text-indent:0;font-size:14px;font-weight:normal}.tsd-anchor{position:absolute;top:-100px}.tsd-member{position:relative}.tsd-member .tsd-anchor+h3{margin-top:0;margin-bottom:0;border-bottom:none}.tsd-navigation{padding:0}.tsd-navigation a{display:inline-block;padding-top:6px;font-size:13px;color:#666;text-decoration:none}.tsd-navigation a:hover{color:#09f}.tsd-navigation ul{margin:0;padding:0;list-style:none}.tsd-navigation li{padding:0}.tsd-navigation.primary a{display:block;padding-top:6px;padding-bottom:6px}.tsd-navigation.primary ul li a{padding-left:5px}.tsd-navigation.primary ul li li a{padding-left:25px}.tsd-navigation.primary ul li li li a{padding-left:45px}.tsd-navigation.primary ul li li li li a{padding-left:65px}.tsd-navigation.primary ul li li li li li a{padding-left:85px}.tsd-navigation.primary ul li li li li li li a{padding-left:105px}.tsd-navigation.primary li>a{color:#000;text-transform:uppercase;font-weight:bold}.tsd-navigation.primary li.label span{display:block;padding:16px 0 4px 5px;color:gray}.tsd-navigation.primary li.globals+li>span,.tsd-navigation.primary li.globals+li>a{padding-top:16px}.tsd-navigation.secondary ul{transition:opacity .2s}.tsd-navigation.secondary ul li a{padding-left:0px}.tsd-navigation.secondary ul li li a{padding-left:16px}.tsd-navigation.secondary ul li li li a{padding-left:32px}.tsd-navigation.secondary ul li li li li a{padding-left:48px}.tsd-navigation.secondary ul li li li li li a{padding-left:64px}.tsd-navigation.secondary ul.current a{border-left-color:#dedede}.tsd-navigation.secondary li.focus>a,.tsd-navigation.secondary ul.current li.focus>a{border-left-color:#000}.tsd-navigation.secondary li.current{border-left-color:#dedede}.tsd-navigation.secondary li.current>a{font-weight:bold}@media(min-width: 961px){.menu-sticky-wrap{position:static}.no-csspositionsticky .menu-sticky-wrap.sticky{position:fixed}.no-csspositionsticky .menu-sticky-wrap.sticky-current{position:fixed}.no-csspositionsticky .menu-sticky-wrap.sticky-current ul.before-current,.no-csspositionsticky .menu-sticky-wrap.sticky-current ul.after-current{opacity:0}.no-csspositionsticky .menu-sticky-wrap.sticky-bottom{position:absolute;top:auto !important;left:auto !important;bottom:0;right:0}.csspositionsticky .menu-sticky-wrap.sticky{position:sticky}.csspositionsticky .menu-sticky-wrap.sticky-current{position:sticky}}.menu-highlight{background:#f1f1f1;border-right:1px solid #dedede;padding:0 15px}.globalnav__brand{display:inline-block;max-width:200px;margin:8px 0;width:100%}.globalnav__brand img{width:100%;max-width:160px}.globalnav__logo{display:block}.globalnav__logo_abbr{display:none}.tsd-panel{padding:24px}.tsd-panel:empty{display:none}.tsd-panel>h1,.tsd-panel>h2,.tsd-panel>h3{color:#282828;font-size:1rem;font-weight:400;padding:0 0 8px;border-bottom:1px solid #ededed}.tsd-panel>h1.tsd-before-signature,.tsd-panel>h2.tsd-before-signature,.tsd-panel>h3.tsd-before-signature{margin-bottom:0;border-bottom:0}.tsd-panel table{display:block;width:100%;overflow:auto;margin-top:10px;word-break:normal;word-break:keep-all}.tsd-panel table th{font-weight:bold}.tsd-panel table th,.tsd-panel table td{padding:6px 13px;border:1px solid #ddd}.tsd-panel table tr{background-color:#fff;border-top:1px solid #ccc}.tsd-panel table tr:nth-child(2n){background-color:#f8f8f8}.tsd-panel-group{margin:0}.tsd-panel-group>h1,.tsd-panel-group>h2,.tsd-panel-group>h3{color:#282828;font-size:2rem;font-weight:300;line-height:3rem;margin-bottom:0;padding:0 24px}#tsd-search{margin:0 -15px;transition:background-color .2s}#tsd-search .field{position:relative;display:flex;background:#fff}#tsd-search .field input{position:relative;box-sizing:border-box;z-index:1;width:100%;height:36px;font-size:13px;outline:0;border:0;color:#666}#tsd-search .field label{position:relative;display:inline-flex;font-size:18px;width:36px;height:36px;justify-content:center;align-items:center;color:#09f;z-index:2}#tsd-search .results{position:absolute;visibility:hidden;font-size:15px;top:36px;margin:0;padding:0;list-style:none;border:1px solid #dedede;box-shadow:0 6px 24px rgba(0,0,0,.08);z-index:3;opacity:.94}#tsd-search .results li{padding:0;background-color:#fff}#tsd-search .results li:nth-child(even){background-color:#fff}#tsd-search .results li.state{display:none}#tsd-search .results li.current,#tsd-search .results li:hover{background-color:#dedede}#tsd-search .results a{display:block;padding:10px}#tsd-search .results a:before{top:10px}#tsd-search .results a:hover{text-decoration:none}#tsd-search .results span.parent{color:gray;font-weight:normal}#tsd-search.has-focus{background-color:#dedede}#tsd-search.has-focus .field input{top:0;opacity:1}#tsd-search.has-focus .title{z-index:0;opacity:0}#tsd-search.has-focus .results{visibility:visible}#tsd-search.loading .results li.state.loading{display:block}#tsd-search.failure .results li.state.failure{display:block}.tsd-signature{margin:0 0 1em 0;padding:10px;border-top:1px solid #ededed;border-bottom:1px solid #ededed;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:14px}.tsd-signature.tsd-kind-icon::before{top:10px;left:10px}.tsd-panel>.tsd-signature.tsd-kind-icon::before{left:20px}.tsd-signature-symbol{color:gray;font-weight:normal}.tsd-signature-type{font-style:italic;font-weight:normal}.tsd-signatures{padding:0;margin:0 0 1em 0;border:1px solid #dedede}.tsd-signatures .tsd-signature{margin:0;border-width:1px 0 0 0;transition:background-color .1s}.tsd-signatures .tsd-signature:first-child{border-top-width:0}.tsd-signatures .tsd-signature.current{background-color:rgba(0,0,0,.04)}.tsd-signatures.active>.tsd-signature{cursor:pointer}.tsd-panel>.tsd-signatures{border-width:1px 0}.tsd-panel>.tsd-signatures .tsd-signature.tsd-kind-icon:before{left:20px}.tsd-panel>a.anchor+.tsd-signatures{border-top-width:0;margin-top:-20px}ul.tsd-descriptions{position:relative;overflow:hidden;transition:height .3s;padding:0;list-style:none}ul.tsd-descriptions.active>.tsd-description{display:none}ul.tsd-descriptions.active>.tsd-description.current{display:block}ul.tsd-descriptions.active>.tsd-description.fade-in{animation:fade-in-delayed .3s}ul.tsd-descriptions.active>.tsd-description.fade-out{animation:fade-out-delayed .3s;position:absolute;display:block;top:0;left:0;right:0;opacity:0;visibility:hidden}ul.tsd-descriptions h4{font-size:16px;font-weight:500;margin:1em 0 .5em 0}ul.tsd-parameters,ul.tsd-type-parameters{margin:0}ul.tsd-parameters>li.tsd-parameter-siganture,ul.tsd-type-parameters>li.tsd-parameter-siganture{list-style:none;margin-left:-20px}ul.tsd-parameters h5,ul.tsd-type-parameters h5{font-size:16px;font-weight:500;margin:1em 0 .5em 0}ul.tsd-parameters .tsd-comment,ul.tsd-type-parameters .tsd-comment{margin-top:-0.5em}.tsd-sources{font-size:14px;color:gray;margin:0 0 1em 0}.tsd-sources a{text-decoration:underline}.tsd-sources ul,.tsd-sources p{margin:0 !important}.tsd-sources ul{list-style:none;padding:0}.tsd-page-toolbar{position:absolute;z-index:1;top:0;left:0;width:100%;color:#333}.tsd-page-toolbar a{color:#333;text-decoration:none}.tsd-page-toolbar a.title{font-weight:bold}.tsd-page-toolbar a.title:hover{text-decoration:underline}.tsd-page-toolbar .table-wrap{display:table;width:100%;height:50px}.tsd-page-toolbar .table-cell{display:table-cell;position:relative;white-space:nowrap;line-height:50px}.tsd-page-toolbar .table-cell:first-child{width:100%}.tsd-select .tsd-select-list li::before,.tsd-select .tsd-select-label::before,.tsd-widget::before{display:inline-flex;content:"";justify-content:center;align-items:center;font-family:"Material Icons";font-size:18px;width:24px;height:14px;margin-right:4px;color:#09f}.tsd-widget{display:inline-block;overflow:hidden;font-size:14px;cursor:pointer;user-select:none;padding:5px 0}.tsd-widget.active{opacity:1;background-color:#dedede}.tsd-widget.no-caption{width:40px}.tsd-widget.no-caption:before{margin:0}.tsd-widget.search:before{background-position:0 0}.tsd-widget.menu:before{background-position:-40px 0}.tsd-widget.options:before{background-position:-80px 0}.tsd-widget.options,.tsd-widget.menu{display:none}@media(max-width: 900px){.tsd-widget.options,.tsd-widget.menu{display:inline-block}}input[type=checkbox]+.tsd-widget:before{color:#484848;content:""}input[type=checkbox]:checked+.tsd-widget:before{color:#09f;content:""}.tsd-select{position:relative;display:inline-block;transition:opacity .1s,background-color .2s;vertical-align:bottom;cursor:pointer;z-index:2}.tsd-select .tsd-select-label{padding:5px 0}.tsd-select .tsd-select-label::before{content:""}.tsd-select.active .tsd-select-label{position:relative}.tsd-select.active .tsd-select-list{visibility:visible;opacity:1;transition-delay:0s}.tsd-select .tsd-select-list{position:absolute;visibility:hidden;top:0;left:0;right:0;margin:0;padding:0;opacity:0;list-style:none;transition:visibility 0s .2s,opacity .2s;border:1px solid #dedede}.tsd-select .tsd-select-list li{padding:5px 0;background-color:#fff}.tsd-select .tsd-select-list li:nth-child(even){background-color:#fff}.tsd-select .tsd-select-list li:hover{background-color:#dedede}.tsd-select .tsd-select-list li.selected:before{font-size:14px;content:""}@media(max-width: 900px){.tsd-select .tsd-select-list{top:0;left:auto;right:100%;margin-right:-5px}.tsd-select .tsd-select-label:before{background-position:-280px 0}}img{max-width:100%}.tsd-button--flat,.tsd-button{display:inline-flex;font-size:12px;text-align:center;justify-content:center;border:1px solid transparent;padding:9px 16px;outline:none;white-space:nowrap;transition:all .25s ease-in-out}.tsd-button--flat>a,.tsd-button>a{color:inherit;text-transform:inherit;text-decoration:none}.tsd-button{width:100%;color:#fff;background:#09f;border:1px solid #09f;font-weight:600;text-transform:uppercase}.tsd-button:hover{color:#09f;background:transparent}.tsd-button--flat{color:#9d9d9d;background:transparent;text-transform:none;font-weight:400}.tsd-button--flat:hover{color:#fff}.globalnav .gsib_a{padding:0 8px}.globalnav__wrapper{margin:0}.globalnav__search{height:49px}@media only screen and (max-width: 768px){.globalnav__search-toggle{right:80px}.globalnav__search-container{padding:0 15px !important}}@media only screen and (max-width: 960px){.globalnav__primary{min-height:61px;height:auto}.globalnav__mobile-menu{margin-right:15px}.globalnav__wrapper{padding:0}}@media only screen and (min-width: 961px){.globalnav__wrapper{max-width:100%;margin:auto 15px;padding:0}.globalnav__section{display:flex;justify-content:flex-end}.globalnav__search-toggle{right:0}}
@@ -0,0 +1,25 @@
1
+ {
2
+ "en": {
3
+ "development": {
4
+ "url": "https://dev.infragistics.com",
5
+ "gaID": "GTM-WLXLBZD",
6
+ "versions": "https://staging.infragistics.com/angular-docs/angular-api-docs-versions.json",
7
+ "typedoc_default_url": "https://staging.infragistics.com/products/ignite-ui-angular/docs/typescript/latest/",
8
+ "sassdoc_default_url": "https://staging.infragistics.com/products/ignite-ui-angular/docs/sass/latest/"
9
+ },
10
+ "staging": {
11
+ "url": "https://staging.infragistics.com",
12
+ "gaID": "GTM-NCKNPN",
13
+ "versions": "https://staging.infragistics.com/angular-docs/angular-api-docs-versions.json",
14
+ "typedoc_default_url": "https://staging.infragistics.com/products/ignite-ui-angular/docs/typescript/latest/",
15
+ "sassdoc_default_url": "https://staging.infragistics.com/products/ignite-ui-angular/docs/sass/latest/"
16
+ },
17
+ "production": {
18
+ "url": "https://www.infragistics.com",
19
+ "gaID": "GTM-T65CF7",
20
+ "versions": "https://www.infragistics.com/angular-docs/angular-api-docs-versions-prod.json",
21
+ "typedoc_default_url": "https://www.infragistics.com/products/ignite-ui-angular/docs/typescript/latest/",
22
+ "sassdoc_default_url": "https://www.infragistics.com/products/ignite-ui-angular/docs/sass/latest/"
23
+ }
24
+ }
25
+ }
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.load = exports.IgTheme = exports.IgThemeRenderContext = void 0;
7
+ const path_1 = __importDefault(require("path"));
8
+ const fs_extra_1 = require("fs-extra");
9
+ const typedoc_1 = require("typedoc");
10
+ const default_1 = require("./layouts/default");
11
+ const breadcrumb_1 = require("./partials/breadcrumb");
12
+ function bind(fn, first) {
13
+ return (...r) => fn(first, ...r);
14
+ }
15
+ class IgThemeRenderContext extends typedoc_1.DefaultThemeRenderContext {
16
+ constructor(theme, options) {
17
+ super(theme, options);
18
+ this.breadcrumb = bind(breadcrumb_1.breadcrumb, this);
19
+ this.defaultLayout = (props) => {
20
+ return ((0, default_1.defaultLayout)(this, props));
21
+ };
22
+ }
23
+ }
24
+ exports.IgThemeRenderContext = IgThemeRenderContext;
25
+ ;
26
+ class IgTheme extends typedoc_1.DefaultTheme {
27
+ constructor(renderer) {
28
+ super(renderer);
29
+ renderer.on(typedoc_1.RendererEvent.END, async () => {
30
+ const out = this.application.options.getValue('out');
31
+ await (0, fs_extra_1.copy)(path_1.default.join(process.cwd(), '/node_modules/igniteui-typedoc-theme/dist/assets'), path_1.default.join(out, '/assets'));
32
+ });
33
+ }
34
+ getRenderContext() {
35
+ this._ctx || (this._ctx = new IgThemeRenderContext(this, this.application.options));
36
+ return this._ctx;
37
+ }
38
+ }
39
+ exports.IgTheme = IgTheme;
40
+ function load(app) {
41
+ app.renderer.hooks.on('head.end', (context) => (typedoc_1.JSX.createElement("link", { rel: 'stylesheet', href: context.relativeURL('assets/css/main.css') })));
42
+ app.renderer.hooks.on('body.end', (context) => (typedoc_1.JSX.createElement("script", { src: context.relativeURL('assets/common.js') })));
43
+ app.renderer.defineTheme('igtheme', IgTheme);
44
+ }
45
+ exports.load = load;
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.defaultLayout = void 0;
4
+ const typedoc_1 = require("typedoc");
5
+ const analytics_1 = require("../partials/analytics");
6
+ const footer_1 = require("../partials/footer");
7
+ const header_1 = require("../partials/header");
8
+ const navigation_1 = require("../partials/navigation");
9
+ const lib_1 = require("../utils/lib");
10
+ const defaultLayout = (context, props) => {
11
+ var _a;
12
+ const searchPath = context.relativeURL("assets/js/search.json");
13
+ const gaID = (0, lib_1.getConfigData)(context, 'gaID');
14
+ return (typedoc_1.JSX.createElement("html", { class: "default no-js", lang: "en" },
15
+ typedoc_1.JSX.createElement("head", null,
16
+ typedoc_1.JSX.createElement("meta", { charSet: "utf-8" }),
17
+ context.hook("head.begin"),
18
+ typedoc_1.JSX.createElement("meta", { "http-equiv": "x-ua-compatible", content: "IE=edge" }),
19
+ typedoc_1.JSX.createElement("title", null, props.model.name === props.project.name ?
20
+ props.project.name :
21
+ `${props.model.name} | ${props.project.name}`),
22
+ typedoc_1.JSX.createElement("meta", { name: "description" }),
23
+ typedoc_1.JSX.createElement("meta", { name: "viewport", content: "width=device-width, initial-scale=1" }),
24
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://infragistics.com/assets/modern/css/layout.css" }),
25
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://infragistics.com/assets/modern/css/animate-custom.css" }),
26
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://infragistics.com/assets/modern/css/fontello.css" }),
27
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://infragistics.com/css/navigation.css" }),
28
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://infragistics.com/css/footer.css" }),
29
+ typedoc_1.JSX.createElement("link", { href: "https://fonts.googleapis.com/icon?family=Material+Icons", rel: "stylesheet" }),
30
+ typedoc_1.JSX.createElement("link", { rel: "stylesheet", href: "https://use.typekit.net/zhy2hpz.css" }),
31
+ typedoc_1.JSX.createElement("script", { async: true, src: context.relativeURL("assets/search.js"), id: "search-script" }),
32
+ (0, analytics_1.analytics)(context),
33
+ context.hook("head.end")),
34
+ typedoc_1.JSX.createElement("body", { id: "body" },
35
+ context.hook('body.begin'),
36
+ typedoc_1.JSX.createElement("noscript", null,
37
+ typedoc_1.JSX.createElement("iframe", { src: `https://www.googletagmanager.com/ns.html?id=${gaID}`, height: 0, width: 0, style: "display:none;visibility:hidden" })),
38
+ (0, header_1.header)(context, props),
39
+ typedoc_1.JSX.createElement("div", { class: "container container-main" },
40
+ typedoc_1.JSX.createElement("div", { class: "row" },
41
+ typedoc_1.JSX.createElement("div", { class: "col-2 col-menu menu-sticky-wrap menu-highlight" },
42
+ typedoc_1.JSX.createElement("div", { class: "table-cell", id: "tsd-search", "data-index": searchPath, "data-base": context.relativeURL("./") },
43
+ typedoc_1.JSX.createElement("div", { class: "field" },
44
+ typedoc_1.JSX.createElement("label", { for: "tsd-search-field", class: "material-icons" }, "search"),
45
+ typedoc_1.JSX.createElement("input", { id: "tsd-search-field", type: "text", placeholder: "Search API" })),
46
+ typedoc_1.JSX.createElement("ul", { class: "results" },
47
+ typedoc_1.JSX.createElement("li", { class: "state loading" }, "Preparing search index..."),
48
+ typedoc_1.JSX.createElement("li", { class: "state failure" }, "The search index is not available"))),
49
+ typedoc_1.JSX.createElement("div", { id: "tsd-filter" },
50
+ typedoc_1.JSX.createElement("div", { class: "tsd-filter-group" },
51
+ typedoc_1.JSX.createElement("div", { class: "tsd-select", id: "tsd-filter-visibility" },
52
+ typedoc_1.JSX.createElement("span", { class: "tsd-select-label" }, "All"),
53
+ typedoc_1.JSX.createElement("ul", { class: "tsd-select-list" },
54
+ typedoc_1.JSX.createElement("li", { "data-value": "public" }, "Public"),
55
+ typedoc_1.JSX.createElement("li", { "data-value": "protected" }, "Public/Protected"),
56
+ typedoc_1.JSX.createElement("li", { "data-value": "private", class: "selected" }, "All"))),
57
+ typedoc_1.JSX.createElement("input", { type: "checkbox", id: "tsd-filter-inherited", checked: true }),
58
+ typedoc_1.JSX.createElement("label", { class: "tsd-widget", for: "tsd-filter-inherited" }, "Inherited"),
59
+ !context.options.getValue("excludeExternals") && (typedoc_1.JSX.createElement(typedoc_1.JSX.Fragment, null,
60
+ typedoc_1.JSX.createElement("input", { type: "checkbox", id: "tsd-filter-externals", checked: true }),
61
+ typedoc_1.JSX.createElement("label", { class: "tsd-widget", for: "tsd-filter-externals" }, "Externals"))),
62
+ !context.options.getValue("excludeExternals") && (typedoc_1.JSX.createElement(typedoc_1.JSX.Fragment, null,
63
+ typedoc_1.JSX.createElement("input", { type: "checkbox", id: "tsd-filter-externals" }),
64
+ typedoc_1.JSX.createElement("label", { class: "tsd-widget", for: "tsd-filter-only-exported" }, "Only exported"))))),
65
+ (0, navigation_1.navigation)(context, props)),
66
+ typedoc_1.JSX.createElement("div", { class: "col-10 col-content" },
67
+ typedoc_1.JSX.createElement("div", { class: "tsd-page-title" },
68
+ typedoc_1.JSX.createElement("div", { class: "container" },
69
+ !!props.model.parent && typedoc_1.JSX.createElement("ul", { class: "tsd-breadcrumb" }, context.breadcrumb(props.model)),
70
+ typedoc_1.JSX.createElement("h1", null,
71
+ props.model.kindString !== "Project" && `${(_a = props.model.kindString) !== null && _a !== void 0 ? _a : ""} `,
72
+ props.model.name,
73
+ (0, lib_1.hasTypeParameters)(props.model) && (typedoc_1.JSX.createElement(typedoc_1.JSX.Fragment, null,
74
+ "<",
75
+ (0, lib_1.join)(", ", props.model.typeParameters, (item) => item.name),
76
+ ">"))))),
77
+ props.template(props)))),
78
+ (0, footer_1.footer)(context, props),
79
+ typedoc_1.JSX.createElement("div", { class: "overlay" }),
80
+ typedoc_1.JSX.createElement("script", { type: "text/javascript", src: "https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" }),
81
+ typedoc_1.JSX.createElement("script", { type: "text/javascript", src: "https://code.jquery.com/jquery-2.1.4.min.js", integrity: "sha256-8WqyJLuWKRBVhxXIL1jBDD7SDxU936oZkCnxQbWwJVw=", crossOrigin: "anonymous" }),
82
+ typedoc_1.JSX.createElement("script", { type: "text/javascript", src: "https://infragistics.com/assets/modern/scripts/jquery-migrate.min.js" }),
83
+ typedoc_1.JSX.createElement("script", { type: "text/javascript", src: "https://www.infragistics.com/assets/modern/scripts/plugins.nav.js" }),
84
+ typedoc_1.JSX.createElement("script", { type: "text/javascript", src: "https://www.infragistics.com/assets/modern/scripts/navigation.js" }),
85
+ typedoc_1.JSX.createElement("script", { src: "https://unpkg.com/lunr/lunr.js" }),
86
+ context.hook("body.end"))));
87
+ };
88
+ exports.defaultLayout = defaultLayout;
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.analytics = void 0;
4
+ const typedoc_1 = require("typedoc");
5
+ const lib_1 = require("../utils/lib");
6
+ function analytics(context) {
7
+ const gaID = (0, lib_1.getConfigData)(context, "gaID");
8
+ const gaSite = (0, lib_1.getConfigData)(context, "gaSite");
9
+ if (!gaID)
10
+ return;
11
+ const script = `
12
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
13
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
14
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
15
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
16
+ ga('create', '${gaID}', '${gaSite}');
17
+ ga('send', 'pageview');
18
+ `.trim();
19
+ return (typedoc_1.JSX.createElement("script", null,
20
+ typedoc_1.JSX.createElement(typedoc_1.JSX.Raw, { html: script })));
21
+ }
22
+ exports.analytics = analytics;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.breadcrumb = void 0;
4
+ const typedoc_1 = require("typedoc");
5
+ const breadcrumb = (context, props) => props.parent ? (typedoc_1.JSX.createElement(typedoc_1.JSX.Fragment, null,
6
+ context.breadcrumb(props.parent),
7
+ typedoc_1.JSX.createElement("li", null, props.url ? typedoc_1.JSX.createElement("a", { href: context.urlTo(props) }, props.name) : typedoc_1.JSX.createElement("span", null, props.name)))) : props.url ? (typedoc_1.JSX.createElement("li", null,
8
+ typedoc_1.JSX.createElement("a", { href: context.urlTo(props) }, "Globals"))) : undefined;
9
+ exports.breadcrumb = breadcrumb;