jsf.js_next_gen 4.0.1-beta.9 → 4.0.2-beta.10

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 (241) hide show
  1. package/dist/docs/assets/main.js +3 -3
  2. package/dist/docs/assets/search.js +1 -1
  3. package/dist/docs/assets/style.css +450 -362
  4. package/dist/docs/functions/faces.ajax.addOnError.html +41 -32
  5. package/dist/docs/functions/faces.ajax.addOnEvent.html +41 -32
  6. package/dist/docs/functions/faces.ajax.request.html +41 -32
  7. package/dist/docs/functions/faces.ajax.response.html +42 -32
  8. package/dist/docs/functions/faces.getClientWindow.html +32 -34
  9. package/dist/docs/functions/faces.getProjectStage.html +31 -34
  10. package/dist/docs/functions/faces.getViewState.html +33 -35
  11. package/dist/docs/functions/faces.push.close.html +40 -31
  12. package/dist/docs/functions/faces.push.init.html +62 -45
  13. package/dist/docs/functions/faces.push.open.html +40 -31
  14. package/dist/docs/functions/faces.util.chain.html +39 -31
  15. package/dist/docs/functions/myfaces.ab.html +40 -39
  16. package/dist/docs/functions/myfaces.onDomReady.html +25 -29
  17. package/dist/docs/index.html +45 -72
  18. package/dist/docs/modules/faces.ajax.html +36 -29
  19. package/dist/docs/modules/faces.html +35 -38
  20. package/dist/docs/modules/faces.push.html +34 -27
  21. package/dist/docs/modules/faces.util.html +30 -23
  22. package/dist/docs/modules/myfaces.html +21 -27
  23. package/dist/docs/modules.html +15 -23
  24. package/dist/docs/variables/faces.contextpath.html +28 -30
  25. package/dist/docs/variables/faces.implversion.html +29 -31
  26. package/dist/docs/variables/faces.separatorchar.html +28 -30
  27. package/dist/docs/variables/faces.specversion.html +29 -31
  28. package/dist/docs/variables/myfaces.oam.html +21 -26
  29. package/dist/window/faces-development.js +167 -61
  30. package/dist/window/faces-development.js.map +1 -1
  31. package/dist/window/faces.js +1 -1
  32. package/dist/window/faces.js.map +1 -1
  33. package/dist/window/jsf-development.js +167 -61
  34. package/dist/window/jsf-development.js.map +1 -1
  35. package/dist/window/jsf.js +1 -1
  36. package/dist/window/jsf.js.map +1 -1
  37. package/faulty_response.html +167 -0
  38. package/package.json +17 -18
  39. package/src/main/typescript/impl/AjaxImpl.ts +22 -19
  40. package/src/main/typescript/impl/PushImpl.ts +1 -1
  41. package/src/main/typescript/impl/util/FileUtils.ts +3 -2
  42. package/src/main/typescript/impl/util/HiddenInputBuilder.ts +2 -2
  43. package/src/main/typescript/impl/xhrCore/XhrRequest.ts +30 -1
  44. package/src/main/typescript/test/frameworkBase/_ext/shared/StandardInits.ts +50 -0
  45. package/src/main/typescript/test/impl/ImplTest.spec.ts +85 -0
  46. package/src/main/typescript/test/xhrCore/RequestParamsTest.spec.ts +301 -2
  47. package/src/main/typescript/test/xhrCore/RequestTest.spec.ts +245 -1
  48. package/src/main/typescript/test/xhrCore/ResponseTest.spec.ts +3 -3
  49. package/target/api/_api.js +2 -2
  50. package/target/api/_api.js.map +1 -1
  51. package/target/impl/AjaxImpl.js +22 -20
  52. package/target/impl/AjaxImpl.js.map +1 -1
  53. package/target/impl/PushImpl.js +4 -4
  54. package/target/impl/PushImpl.js.map +1 -1
  55. package/target/impl/util/Assertions.js +1 -1
  56. package/target/impl/util/Assertions.js.map +1 -1
  57. package/target/impl/util/FileUtils.js +3 -2
  58. package/target/impl/util/FileUtils.js.map +1 -1
  59. package/target/impl/util/HiddenInputBuilder.js +2 -2
  60. package/target/impl/util/HiddenInputBuilder.js.map +1 -1
  61. package/target/impl/util/Lang.js +1 -1
  62. package/target/impl/util/Lang.js.map +1 -1
  63. package/target/impl/xhrCore/ErrorData.js +1 -1
  64. package/target/impl/xhrCore/ErrorData.js.map +1 -1
  65. package/target/impl/xhrCore/Response.js +1 -1
  66. package/target/impl/xhrCore/Response.js.map +1 -1
  67. package/target/impl/xhrCore/XhrRequest.js +26 -0
  68. package/target/impl/xhrCore/XhrRequest.js.map +1 -1
  69. package/target/myfaces/OamSubmit.js +1 -1
  70. package/target/myfaces/OamSubmit.js.map +1 -1
  71. package/target/test/frameworkBase/_ext/shared/StandardInits.js +47 -1
  72. package/target/test/frameworkBase/_ext/shared/StandardInits.js.map +1 -1
  73. package/target/test/frameworkBase/_ext/shared/XmlResponses.js +1 -1
  74. package/target/test/frameworkBase/_ext/shared/XmlResponses.js.map +1 -1
  75. package/target/test/impl/ImplTest.spec.js +64 -0
  76. package/target/test/impl/ImplTest.spec.js.map +1 -1
  77. package/target/test/xhrCore/RequestParamsTest.spec.js +285 -1
  78. package/target/test/xhrCore/RequestParamsTest.spec.js.map +1 -1
  79. package/target/test/xhrCore/RequestTest.spec.js +212 -0
  80. package/target/test/xhrCore/RequestTest.spec.js.map +1 -1
  81. package/target/test/xhrCore/ResponseTest.spec.js +3 -3
  82. package/webpack.config.ts +1 -23
  83. package/dist/window/faces-development.js.br +0 -0
  84. package/dist/window/faces-development.js.gz +0 -0
  85. package/dist/window/faces.js.br +0 -0
  86. package/dist/window/faces.js.gz +0 -0
  87. package/dist/window/jsf-development.js.br +0 -0
  88. package/dist/window/jsf-development.js.gz +0 -0
  89. package/dist/window/jsf.js.br +0 -0
  90. package/dist/window/jsf.js.gz +0 -0
  91. package/target/AssocArray.js +0 -281
  92. package/target/AssocArray.js.map +0 -1
  93. package/target/Config.js +0 -235
  94. package/target/Config.js.map +0 -1
  95. package/target/CryptoExtensions.js +0 -112
  96. package/target/CryptoExtensions.js.map +0 -1
  97. package/target/DomQuery.js +0 -1963
  98. package/target/DomQuery.js.map +0 -1
  99. package/target/Es2019Array.js +0 -117
  100. package/target/Es2019Array.js.map +0 -1
  101. package/target/Global.js +0 -38
  102. package/target/Global.js.map +0 -1
  103. package/target/IDomQuery.js +0 -3
  104. package/target/IDomQuery.js.map +0 -1
  105. package/target/Lang.js +0 -183
  106. package/target/Lang.js.map +0 -1
  107. package/target/Messaging.js +0 -645
  108. package/target/Messaging.js.map +0 -1
  109. package/target/Monad.js +0 -330
  110. package/target/Monad.js.map +0 -1
  111. package/target/Promise.js +0 -296
  112. package/target/Promise.js.map +0 -1
  113. package/target/PromiseShim.js +0 -30
  114. package/target/PromiseShim.js.map +0 -1
  115. package/target/SourcesCollectors.js +0 -444
  116. package/target/SourcesCollectors.js.map +0 -1
  117. package/target/Stream.js +0 -562
  118. package/target/Stream.js.map +0 -1
  119. package/target/TagBuilder.js +0 -178
  120. package/target/TagBuilder.js.map +0 -1
  121. package/target/XmlQuery.js +0 -84
  122. package/target/XmlQuery.js.map +0 -1
  123. package/target/impl/core/Context.js +0 -10
  124. package/target/impl/core/Context.js.map +0 -1
  125. package/target/impl/util/AsyncQueue.js +0 -109
  126. package/target/impl/util/AsyncQueue.js.map +0 -1
  127. package/target/impl/util/HiddenElementBuilder.js +0 -7
  128. package/target/impl/util/HiddenElementBuilder.js.map +0 -1
  129. package/target/impl/util/IAsyncRunnable.js +0 -27
  130. package/target/impl/util/IAsyncRunnable.js.map +0 -1
  131. package/target/impl/util/URLCodec.js +0 -77
  132. package/target/impl/util/URLCodec.js.map +0 -1
  133. package/target/impl/xhrCore/RequestContext.js +0 -11
  134. package/target/impl/xhrCore/RequestContext.js.map +0 -1
  135. package/target/impl/xhrCore/XhrQueHandler.js +0 -11
  136. package/target/impl/xhrCore/XhrQueHandler.js.map +0 -1
  137. package/target/impl/xhrCore/XhrQueueController.js +0 -62
  138. package/target/impl/xhrCore/XhrQueueController.js.map +0 -1
  139. package/target/index.js +0 -80
  140. package/target/index.js.map +0 -1
  141. package/target/index_core.js +0 -76
  142. package/target/index_core.js.map +0 -1
  143. package/target/test/frameworkBase/_ext/monadish/ExtendedArrayTest.spec.js +0 -76
  144. package/target/test/frameworkBase/_ext/monadish/ExtendedArrayTest.spec.js.map +0 -1
  145. package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js +0 -178
  146. package/target/test/frameworkBase/_ext/monadish/StreamTest.spec.js.map +0 -1
  147. package/target/test/myfaces/OnLoadSpec.js +0 -57
  148. package/target/test/myfaces/OnLoadSpec.js.map +0 -1
  149. package/target/types/main/typescript/AssocArray.d.ts +0 -86
  150. package/target/types/main/typescript/Config.d.ts +0 -94
  151. package/target/types/main/typescript/CryptoExtensions.d.ts +0 -87
  152. package/target/types/main/typescript/DomQuery.d.ts +0 -587
  153. package/target/types/main/typescript/Es2019Array.d.ts +0 -30
  154. package/target/types/main/typescript/Global.d.ts +0 -23
  155. package/target/types/main/typescript/IDomQuery.d.ts +0 -480
  156. package/target/types/main/typescript/Lang.d.ts +0 -97
  157. package/target/types/main/typescript/Messaging.d.ts +0 -285
  158. package/target/types/main/typescript/Monad.d.ts +0 -161
  159. package/target/types/main/typescript/Promise.d.ts +0 -58
  160. package/target/types/main/typescript/PromiseShim.d.ts +0 -22
  161. package/target/types/main/typescript/SourcesCollectors.d.ts +0 -280
  162. package/target/types/main/typescript/Stream.d.ts +0 -284
  163. package/target/types/main/typescript/TagBuilder.d.ts +0 -50
  164. package/target/types/main/typescript/XmlQuery.d.ts +0 -31
  165. package/target/types/main/typescript/api/_api.d.ts +0 -182
  166. package/target/types/main/typescript/api/faces.d.ts +0 -17
  167. package/target/types/main/typescript/api/jsf.d.ts +0 -17
  168. package/target/types/main/typescript/impl/AjaxImpl.d.ts +0 -164
  169. package/target/types/main/typescript/impl/PushImpl.d.ts +0 -38
  170. package/target/types/main/typescript/impl/core/Const.d.ts +0 -138
  171. package/target/types/main/typescript/impl/core/ImplTypes.d.ts +0 -16
  172. package/target/types/main/typescript/impl/i18n/Messages.d.ts +0 -102
  173. package/target/types/main/typescript/impl/util/Assertions.d.ts +0 -46
  174. package/target/types/main/typescript/impl/util/AsyncRunnable.d.ts +0 -112
  175. package/target/types/main/typescript/impl/util/ExtDomQuery.d.ts +0 -100
  176. package/target/types/main/typescript/impl/util/FileUtils.d.ts +0 -25
  177. package/target/types/main/typescript/impl/util/HiddenInputBuilder.d.ts +0 -37
  178. package/target/types/main/typescript/impl/util/IListener.d.ts +0 -18
  179. package/target/types/main/typescript/impl/util/Lang.d.ts +0 -138
  180. package/target/types/main/typescript/impl/util/XhrQueueController.d.ts +0 -51
  181. package/target/types/main/typescript/impl/xhrCore/ErrorData.d.ts +0 -37
  182. package/target/types/main/typescript/impl/xhrCore/EventData.d.ts +0 -25
  183. package/target/types/main/typescript/impl/xhrCore/IResponseProcessor.d.ts +0 -136
  184. package/target/types/main/typescript/impl/xhrCore/RequestDataResolver.d.ts +0 -84
  185. package/target/types/main/typescript/impl/xhrCore/ResonseDataResolver.d.ts +0 -60
  186. package/target/types/main/typescript/impl/xhrCore/Response.d.ts +0 -29
  187. package/target/types/main/typescript/impl/xhrCore/ResponseProcessor.d.ts +0 -208
  188. package/target/types/main/typescript/impl/xhrCore/XhrFormData.d.ts +0 -83
  189. package/target/types/main/typescript/impl/xhrCore/XhrRequest.d.ts +0 -102
  190. package/target/types/main/typescript/index.d.ts +0 -34
  191. package/target/types/main/typescript/index_core.d.ts +0 -29
  192. package/target/types/main/typescript/myfaces/OamSubmit.d.ts +0 -53
  193. package/target/types/main/typescript/test/frameworkBase/LangTest.spec.d.ts +0 -1
  194. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/DomQueryTest.spec.d.ts +0 -1
  195. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/LangTest.spec.d.ts +0 -16
  196. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MappingProbes.d.ts +0 -39
  197. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MappingTest.spec.d.ts +0 -16
  198. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/MonadTest.spec.d.ts +0 -16
  199. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/XmlQueryTest.spec.d.ts +0 -0
  200. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-with-header.d.ts +0 -1
  201. package/target/types/main/typescript/test/frameworkBase/_ext/monadish/markups/tobago-without-header.d.ts +0 -1
  202. package/target/types/main/typescript/test/frameworkBase/_ext/shared/StandardInits.d.ts +0 -63
  203. package/target/types/main/typescript/test/frameworkBase/_ext/shared/XmlResponses.d.ts +0 -23
  204. package/target/types/main/typescript/test/impl/ImplTest.spec.d.ts +0 -16
  205. package/target/types/main/typescript/test/impl/ImplTest_23.spec.d.ts +0 -16
  206. package/target/types/main/typescript/test/impl/SeparatorCharsTest.spec.d.ts +0 -16
  207. package/target/types/main/typescript/test/myfaces/OamSubmit.spec.d.ts +0 -16
  208. package/target/types/main/typescript/test/myfaces/OnLoad.spec.d.ts +0 -16
  209. package/target/types/main/typescript/test/queue/AsynchronousProbe.d.ts +0 -38
  210. package/target/types/main/typescript/test/queue/AsynchronousQueueTest.spec.d.ts +0 -16
  211. package/target/types/main/typescript/test/xhrCore/ClientWindow.spec.d.ts +0 -1
  212. package/target/types/main/typescript/test/xhrCore/ErrorChainTest.spec.d.ts +0 -16
  213. package/target/types/main/typescript/test/xhrCore/EventTests.spec.d.ts +0 -16
  214. package/target/types/main/typescript/test/xhrCore/FakeWebsocket.d.ts +0 -24
  215. package/target/types/main/typescript/test/xhrCore/FileUploadTest.spec.d.ts +0 -1
  216. package/target/types/main/typescript/test/xhrCore/NamespacesRequestTest.spec.d.ts +0 -16
  217. package/target/types/main/typescript/test/xhrCore/OamSubmitTest.spec.d.ts +0 -16
  218. package/target/types/main/typescript/test/xhrCore/RequestParamsTest.spec.d.ts +0 -1
  219. package/target/types/main/typescript/test/xhrCore/RequestTest.spec.d.ts +0 -16
  220. package/target/types/main/typescript/test/xhrCore/RequestTest_23.spec.d.ts +0 -16
  221. package/target/types/main/typescript/test/xhrCore/ResponseTest.spec.d.ts +0 -16
  222. package/target/types/main/typescript/test/xhrCore/ResponseTest23.spec.d.ts +0 -16
  223. package/target/types/main/typescript/test/xhrCore/ShadowDomTest.spec.d.ts +0 -16
  224. package/target/types/main/typescript/test/xhrCore/TobagoFileUploadTest.spec.d.ts +0 -1
  225. package/target/types/main/typescript/test/xhrCore/WebsocketTest.d.ts +0 -1
  226. package/target/types/main/typescript/test/xhrCore/XhrFormDataTest.spec.d.ts +0 -16
  227. package/target/types/test/typescript/AssocArrayTest.spec.d.ts +0 -1
  228. package/target/types/test/typescript/DomQueryTest.spec.d.ts +0 -1
  229. package/target/types/test/typescript/ExtendedArrayTest.spec.d.ts +0 -1
  230. package/target/types/test/typescript/LangTest.spec.d.ts +0 -1
  231. package/target/types/test/typescript/MappingProbes.d.ts +0 -24
  232. package/target/types/test/typescript/MappingTest.spec.d.ts +0 -1
  233. package/target/types/test/typescript/MessagingTest.spec.d.ts +0 -1
  234. package/target/types/test/typescript/MonadTest.spec.d.ts +0 -16
  235. package/target/types/test/typescript/PromiseTest.spec.d.ts +0 -1
  236. package/target/types/test/typescript/StreamTest.spec.d.ts +0 -1
  237. package/target/types/test/typescript/XmlQueryTest.spec.d.ts +0 -1
  238. package/target/types/test/typescript/markups/tobago-with-header.d.ts +0 -1
  239. package/target/types/test/typescript/markups/tobago-without-header.d.ts +0 -1
  240. package/webpack.config.js +0 -71
  241. package/webpack.config.js.map +0 -1
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,38 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- /**
17
- * we need a probe to test our asynchronous behavior
18
- * the asynchronous behavior needs to be in an asynchronous runnable
19
- */
20
- import { IAsyncRunnable } from "../../impl/util/AsyncRunnable";
21
- import { IValueHolder } from "mona-dish";
22
- export declare class ProbeClass implements IAsyncRunnable<Promise<any>>, IValueHolder<Promise<any>> {
23
- private $timeout;
24
- private resolveIt;
25
- value: Promise<any>;
26
- fCatch: (data: any) => any;
27
- fThen: (data: any) => any;
28
- fFinally: () => any;
29
- thenPerformed: boolean;
30
- catchPerformed: boolean;
31
- finallyPerformed: boolean;
32
- constructor($timeout: Function, resolveIt?: boolean);
33
- catch(func: (data: any) => any): IAsyncRunnable<boolean>;
34
- finally(func: () => void): IAsyncRunnable<boolean>;
35
- start(): void;
36
- cancel(): void;
37
- then(func: (data: any) => any): IAsyncRunnable<boolean>;
38
- }
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,24 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export declare class FakeWebsocket {
17
- onopen: Function;
18
- onmessage: Function;
19
- onclose: Function;
20
- constructor();
21
- send(): void;
22
- _respond(response: any): void;
23
- close(): void;
24
- }
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
-
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export declare const window: any;
@@ -1,24 +0,0 @@
1
- export interface Probe1 {
2
- val1: string;
3
- val2: Date;
4
- val3: any;
5
- val4: Probe2[];
6
- val5: Probe2;
7
- val6: any;
8
- }
9
- export interface Probe2 {
10
- val1: string;
11
- }
12
- export declare class Probe2Impl implements Probe2 {
13
- val1: string;
14
- constructor(data: Probe2);
15
- }
16
- export declare class Probe1Impl implements Probe1 {
17
- val1: string;
18
- val2: Date;
19
- val3: any;
20
- val4: Probe2[];
21
- val5: Probe2;
22
- val6: any;
23
- constructor(data: Probe1, mixin?: any);
24
- }
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1,16 +0,0 @@
1
- /*! Licensed to the Apache Software Foundation (ASF) under one or more
2
- * contributor license agreements. See the NOTICE file distributed with
3
- * this work for additional information regarding copyright ownership.
4
- * The ASF licenses this file to you under the Apache License, Version 2.0
5
- * (the "License"); you may not use this file except in compliance with
6
- * the License. You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export declare const tobagoSheetWithHeader = "<tobago-sheet id=\"page:mainForm:s1\" data-tobago-selection-mode=\"multi\" data-tobago-first=\"0\" rows=\"0\" row-count=\"88\" data-tobago-layout=\"{&quot;columns&quot;:[1.0]}\">\n <style nonce=\"\" id=\"page:mainForm:s1:j_id_2n\">#page\\:mainForm\\:s1{max-height:486px;}\n </style>\n <input id=\"page:mainForm:s1::widths\" name=\"page:mainForm:s1::widths\" type=\"hidden\" value=\"[]\">\n <input id=\"page:mainForm:s1::rendered\" name=\"page:mainForm:s1::rendered\" type=\"hidden\" value=\"[true]\">\n <input id=\"page:mainForm:s1::scrollPosition\" name=\"page:mainForm:s1::scrollPosition\" type=\"hidden\" value=\"[0,0]\">\n <input id=\"page:mainForm:s1::selected\" name=\"page:mainForm:s1::selected\" type=\"hidden\" value=\"[]\">\n <header>\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col width=\"385\">\n <col>\n <col width=\"15\">\n </colgroup>\n <thead>\n <tr>\n <th>\n <span><tobago-out id=\"page:mainForm:s1:_col0\"><span class=\"form-control-plaintext\">Name</span></tobago-out></span>\n <span class=\"tobago-resize\" data-tobago-column-index=\"0\">&nbsp;&nbsp;</span>\n </th>\n <th>\n <span></span>\n </th>\n <th>\n <span></span>\n </th>\n </tr>\n </thead>\n </table>\n </header>\n <div class=\"tobago-body\">\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col width=\"385\">\n <col>\n </colgroup>\n <tbody>\n <tr row-index=\"0\" id=\"page:mainForm:s1:0:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:0:t_name\"><span class=\"form-control-plaintext\">Sun</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:0:sample0\" execute=\"page:mainForm:s1:0:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"1\" id=\"page:mainForm:s1:1:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:1:t_name\"><span class=\"form-control-plaintext\">Mercury</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:1:sample0\" execute=\"page:mainForm:s1:1:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"2\" id=\"page:mainForm:s1:2:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:2:t_name\"><span class=\"form-control-plaintext\">Venus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:2:sample0\" execute=\"page:mainForm:s1:2:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"3\" id=\"page:mainForm:s1:3:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:3:t_name\"><span class=\"form-control-plaintext\">Earth</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:3:sample0\" execute=\"page:mainForm:s1:3:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"4\" id=\"page:mainForm:s1:4:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:4:t_name\"><span class=\"form-control-plaintext\">Mars</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:4:sample0\" execute=\"page:mainForm:s1:4:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"5\" id=\"page:mainForm:s1:5:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:5:t_name\"><span class=\"form-control-plaintext\">Jupiter</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:5:sample0\" execute=\"page:mainForm:s1:5:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"6\" id=\"page:mainForm:s1:6:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:6:t_name\"><span class=\"form-control-plaintext\">Saturn</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:6:sample0\" execute=\"page:mainForm:s1:6:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"7\" id=\"page:mainForm:s1:7:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:7:t_name\"><span class=\"form-control-plaintext\">Uranus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:7:sample0\" execute=\"page:mainForm:s1:7:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"8\" id=\"page:mainForm:s1:8:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:8:t_name\"><span class=\"form-control-plaintext\">Neptune</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:8:sample0\" execute=\"page:mainForm:s1:8:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"9\" id=\"page:mainForm:s1:9:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:9:t_name\"><span class=\"form-control-plaintext\">Pluto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:9:sample0\" execute=\"page:mainForm:s1:9:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"10\" id=\"page:mainForm:s1:10:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:10:t_name\"><span class=\"form-control-plaintext\">Moon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:10:sample0\" execute=\"page:mainForm:s1:10:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"11\" id=\"page:mainForm:s1:11:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:11:t_name\"><span class=\"form-control-plaintext\">Phobos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:11:sample0\" execute=\"page:mainForm:s1:11:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"12\" id=\"page:mainForm:s1:12:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:12:t_name\"><span class=\"form-control-plaintext\">Deimos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:12:sample0\" execute=\"page:mainForm:s1:12:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"13\" id=\"page:mainForm:s1:13:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:13:t_name\"><span class=\"form-control-plaintext\">Metis</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:13:sample0\" execute=\"page:mainForm:s1:13:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"14\" id=\"page:mainForm:s1:14:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:14:t_name\"><span class=\"form-control-plaintext\">Adrastea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:14:sample0\" execute=\"page:mainForm:s1:14:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"15\" id=\"page:mainForm:s1:15:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:15:t_name\"><span class=\"form-control-plaintext\">Amalthea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:15:sample0\" execute=\"page:mainForm:s1:15:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"16\" id=\"page:mainForm:s1:16:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:16:t_name\"><span class=\"form-control-plaintext\">Thebe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:16:sample0\" execute=\"page:mainForm:s1:16:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"17\" id=\"page:mainForm:s1:17:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:17:t_name\"><span class=\"form-control-plaintext\">Io</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:17:sample0\" execute=\"page:mainForm:s1:17:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"18\" id=\"page:mainForm:s1:18:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:18:t_name\"><span class=\"form-control-plaintext\">Europa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:18:sample0\" execute=\"page:mainForm:s1:18:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"19\" id=\"page:mainForm:s1:19:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:19:t_name\"><span class=\"form-control-plaintext\">Ganymede</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:19:sample0\" execute=\"page:mainForm:s1:19:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"20\" id=\"page:mainForm:s1:20:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:20:t_name\"><span class=\"form-control-plaintext\">Callisto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:20:sample0\" execute=\"page:mainForm:s1:20:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"21\" id=\"page:mainForm:s1:21:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:21:t_name\"><span class=\"form-control-plaintext\">Themisto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:21:sample0\" execute=\"page:mainForm:s1:21:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"22\" id=\"page:mainForm:s1:22:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:22:t_name\"><span class=\"form-control-plaintext\">Leda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:22:sample0\" execute=\"page:mainForm:s1:22:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"23\" id=\"page:mainForm:s1:23:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:23:t_name\"><span class=\"form-control-plaintext\">Himalia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:23:sample0\" execute=\"page:mainForm:s1:23:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"24\" id=\"page:mainForm:s1:24:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:24:t_name\"><span class=\"form-control-plaintext\">Lysithea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:24:sample0\" execute=\"page:mainForm:s1:24:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"25\" id=\"page:mainForm:s1:25:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:25:t_name\"><span class=\"form-control-plaintext\">Elara</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:25:sample0\" execute=\"page:mainForm:s1:25:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"26\" id=\"page:mainForm:s1:26:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:26:t_name\"><span class=\"form-control-plaintext\">Ananke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:26:sample0\" execute=\"page:mainForm:s1:26:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"27\" id=\"page:mainForm:s1:27:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:27:t_name\"><span class=\"form-control-plaintext\">Carme</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:27:sample0\" execute=\"page:mainForm:s1:27:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"28\" id=\"page:mainForm:s1:28:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:28:t_name\"><span class=\"form-control-plaintext\">Pasiphae</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:28:sample0\" execute=\"page:mainForm:s1:28:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"29\" id=\"page:mainForm:s1:29:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:29:t_name\"><span class=\"form-control-plaintext\">Sinope</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:29:sample0\" execute=\"page:mainForm:s1:29:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"30\" id=\"page:mainForm:s1:30:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:30:t_name\"><span class=\"form-control-plaintext\">Iocaste</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:30:sample0\" execute=\"page:mainForm:s1:30:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"31\" id=\"page:mainForm:s1:31:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:31:t_name\"><span class=\"form-control-plaintext\">Harpalyke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:31:sample0\" execute=\"page:mainForm:s1:31:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"32\" id=\"page:mainForm:s1:32:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:32:t_name\"><span class=\"form-control-plaintext\">Praxidike</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:32:sample0\" execute=\"page:mainForm:s1:32:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"33\" id=\"page:mainForm:s1:33:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:33:t_name\"><span class=\"form-control-plaintext\">Taygete</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:33:sample0\" execute=\"page:mainForm:s1:33:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"34\" id=\"page:mainForm:s1:34:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:34:t_name\"><span class=\"form-control-plaintext\">Chaldene</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:34:sample0\" execute=\"page:mainForm:s1:34:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"35\" id=\"page:mainForm:s1:35:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:35:t_name\"><span class=\"form-control-plaintext\">Kalyke</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:35:sample0\" execute=\"page:mainForm:s1:35:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"36\" id=\"page:mainForm:s1:36:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:36:t_name\"><span class=\"form-control-plaintext\">Callirrhoe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:36:sample0\" execute=\"page:mainForm:s1:36:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"37\" id=\"page:mainForm:s1:37:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:37:t_name\"><span class=\"form-control-plaintext\">Megaclite</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:37:sample0\" execute=\"page:mainForm:s1:37:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"38\" id=\"page:mainForm:s1:38:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:38:t_name\"><span class=\"form-control-plaintext\">Isonoe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:38:sample0\" execute=\"page:mainForm:s1:38:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"39\" id=\"page:mainForm:s1:39:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:39:t_name\"><span class=\"form-control-plaintext\">Erinome</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:39:sample0\" execute=\"page:mainForm:s1:39:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"40\" id=\"page:mainForm:s1:40:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:40:t_name\"><span class=\"form-control-plaintext\">Pan</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:40:sample0\" execute=\"page:mainForm:s1:40:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"41\" id=\"page:mainForm:s1:41:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:41:t_name\"><span class=\"form-control-plaintext\">Atlas</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:41:sample0\" execute=\"page:mainForm:s1:41:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"42\" id=\"page:mainForm:s1:42:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:42:t_name\"><span class=\"form-control-plaintext\">Prometheus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:42:sample0\" execute=\"page:mainForm:s1:42:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"43\" id=\"page:mainForm:s1:43:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:43:t_name\"><span class=\"form-control-plaintext\">Pandora</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:43:sample0\" execute=\"page:mainForm:s1:43:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"44\" id=\"page:mainForm:s1:44:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:44:t_name\"><span class=\"form-control-plaintext\">Epimetheus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:44:sample0\" execute=\"page:mainForm:s1:44:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"45\" id=\"page:mainForm:s1:45:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:45:t_name\"><span class=\"form-control-plaintext\">Janus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:45:sample0\" execute=\"page:mainForm:s1:45:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"46\" id=\"page:mainForm:s1:46:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:46:t_name\"><span class=\"form-control-plaintext\">Mimas</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:46:sample0\" execute=\"page:mainForm:s1:46:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"47\" id=\"page:mainForm:s1:47:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:47:t_name\"><span class=\"form-control-plaintext\">Enceladus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:47:sample0\" execute=\"page:mainForm:s1:47:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"48\" id=\"page:mainForm:s1:48:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:48:t_name\"><span class=\"form-control-plaintext\">Tethys</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:48:sample0\" execute=\"page:mainForm:s1:48:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"49\" id=\"page:mainForm:s1:49:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:49:t_name\"><span class=\"form-control-plaintext\">Telesto</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:49:sample0\" execute=\"page:mainForm:s1:49:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"50\" id=\"page:mainForm:s1:50:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:50:t_name\"><span class=\"form-control-plaintext\">Calypso</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:50:sample0\" execute=\"page:mainForm:s1:50:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"51\" id=\"page:mainForm:s1:51:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:51:t_name\"><span class=\"form-control-plaintext\">Dione</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:51:sample0\" execute=\"page:mainForm:s1:51:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"52\" id=\"page:mainForm:s1:52:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:52:t_name\"><span class=\"form-control-plaintext\">Helene</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:52:sample0\" execute=\"page:mainForm:s1:52:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"53\" id=\"page:mainForm:s1:53:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:53:t_name\"><span class=\"form-control-plaintext\">Rhea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:53:sample0\" execute=\"page:mainForm:s1:53:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"54\" id=\"page:mainForm:s1:54:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:54:t_name\"><span class=\"form-control-plaintext\">Titan</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:54:sample0\" execute=\"page:mainForm:s1:54:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"55\" id=\"page:mainForm:s1:55:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:55:t_name\"><span class=\"form-control-plaintext\">Hyperion</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:55:sample0\" execute=\"page:mainForm:s1:55:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"56\" id=\"page:mainForm:s1:56:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:56:t_name\"><span class=\"form-control-plaintext\">Iapetus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:56:sample0\" execute=\"page:mainForm:s1:56:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"57\" id=\"page:mainForm:s1:57:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:57:t_name\"><span class=\"form-control-plaintext\">Phoebe</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:57:sample0\" execute=\"page:mainForm:s1:57:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"58\" id=\"page:mainForm:s1:58:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:58:t_name\"><span class=\"form-control-plaintext\">Cordelia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:58:sample0\" execute=\"page:mainForm:s1:58:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"59\" id=\"page:mainForm:s1:59:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:59:t_name\"><span class=\"form-control-plaintext\">Ophelia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:59:sample0\" execute=\"page:mainForm:s1:59:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"60\" id=\"page:mainForm:s1:60:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:60:t_name\"><span class=\"form-control-plaintext\">Bianca</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:60:sample0\" execute=\"page:mainForm:s1:60:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"61\" id=\"page:mainForm:s1:61:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:61:t_name\"><span class=\"form-control-plaintext\">Cressida</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:61:sample0\" execute=\"page:mainForm:s1:61:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"62\" id=\"page:mainForm:s1:62:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:62:t_name\"><span class=\"form-control-plaintext\">Desdemona</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:62:sample0\" execute=\"page:mainForm:s1:62:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"63\" id=\"page:mainForm:s1:63:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:63:t_name\"><span class=\"form-control-plaintext\">Juliet</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:63:sample0\" execute=\"page:mainForm:s1:63:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"64\" id=\"page:mainForm:s1:64:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:64:t_name\"><span class=\"form-control-plaintext\">Portia</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:64:sample0\" execute=\"page:mainForm:s1:64:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"65\" id=\"page:mainForm:s1:65:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:65:t_name\"><span class=\"form-control-plaintext\">Rosalind</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:65:sample0\" execute=\"page:mainForm:s1:65:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"66\" id=\"page:mainForm:s1:66:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:66:t_name\"><span class=\"form-control-plaintext\">Belinda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:66:sample0\" execute=\"page:mainForm:s1:66:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"67\" id=\"page:mainForm:s1:67:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:67:t_name\"><span class=\"form-control-plaintext\">1986U10</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:67:sample0\" execute=\"page:mainForm:s1:67:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"68\" id=\"page:mainForm:s1:68:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:68:t_name\"><span class=\"form-control-plaintext\">Puck</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:68:sample0\" execute=\"page:mainForm:s1:68:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"69\" id=\"page:mainForm:s1:69:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:69:t_name\"><span class=\"form-control-plaintext\">Miranda</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:69:sample0\" execute=\"page:mainForm:s1:69:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"70\" id=\"page:mainForm:s1:70:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:70:t_name\"><span class=\"form-control-plaintext\">Ariel</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:70:sample0\" execute=\"page:mainForm:s1:70:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"71\" id=\"page:mainForm:s1:71:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:71:t_name\"><span class=\"form-control-plaintext\">Umbriel</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:71:sample0\" execute=\"page:mainForm:s1:71:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"72\" id=\"page:mainForm:s1:72:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:72:t_name\"><span class=\"form-control-plaintext\">Titania</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:72:sample0\" execute=\"page:mainForm:s1:72:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"73\" id=\"page:mainForm:s1:73:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:73:t_name\"><span class=\"form-control-plaintext\">Oberon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:73:sample0\" execute=\"page:mainForm:s1:73:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"74\" id=\"page:mainForm:s1:74:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:74:t_name\"><span class=\"form-control-plaintext\">Caliban</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:74:sample0\" execute=\"page:mainForm:s1:74:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"75\" id=\"page:mainForm:s1:75:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:75:t_name\"><span class=\"form-control-plaintext\">Stephano</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:75:sample0\" execute=\"page:mainForm:s1:75:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"76\" id=\"page:mainForm:s1:76:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:76:t_name\"><span class=\"form-control-plaintext\">Sycorax</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:76:sample0\" execute=\"page:mainForm:s1:76:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"77\" id=\"page:mainForm:s1:77:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:77:t_name\"><span class=\"form-control-plaintext\">Prospero</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:77:sample0\" execute=\"page:mainForm:s1:77:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"78\" id=\"page:mainForm:s1:78:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:78:t_name\"><span class=\"form-control-plaintext\">Setebos</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:78:sample0\" execute=\"page:mainForm:s1:78:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"79\" id=\"page:mainForm:s1:79:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:79:t_name\"><span class=\"form-control-plaintext\">Naiad</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:79:sample0\" execute=\"page:mainForm:s1:79:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"80\" id=\"page:mainForm:s1:80:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:80:t_name\"><span class=\"form-control-plaintext\">Thalassa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:80:sample0\" execute=\"page:mainForm:s1:80:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"81\" id=\"page:mainForm:s1:81:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:81:t_name\"><span class=\"form-control-plaintext\">Despina</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:81:sample0\" execute=\"page:mainForm:s1:81:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"82\" id=\"page:mainForm:s1:82:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:82:t_name\"><span class=\"form-control-plaintext\">Galatea</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:82:sample0\" execute=\"page:mainForm:s1:82:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"83\" id=\"page:mainForm:s1:83:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:83:t_name\"><span class=\"form-control-plaintext\">Larissa</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:83:sample0\" execute=\"page:mainForm:s1:83:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"84\" id=\"page:mainForm:s1:84:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:84:t_name\"><span class=\"form-control-plaintext\">Proteus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:84:sample0\" execute=\"page:mainForm:s1:84:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"85\" id=\"page:mainForm:s1:85:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:85:t_name\"><span class=\"form-control-plaintext\">Triton</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:85:sample0\" execute=\"page:mainForm:s1:85:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"86\" id=\"page:mainForm:s1:86:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:86:t_name\"><span class=\"form-control-plaintext\">Nereid</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:86:sample0\" execute=\"page:mainForm:s1:86:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"87\" id=\"page:mainForm:s1:87:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:87:t_name\"><span class=\"form-control-plaintext\">Charon</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:87:sample0\" execute=\"page:mainForm:s1:87:sample0\"></tobago-behavior>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n </tobago-sheet>";
@@ -1 +0,0 @@
1
- export declare const tobagoSheetWithoutHeader = "<tobago-sheet id=\"page:mainForm:s1\" data-tobago-selection-mode=\"multi\" data-tobago-first=\"0\" rows=\"0\" row-count=\"88\" data-tobago-layout=\"{&quot;columns&quot;:[1.0]}\">\n <style nonce=\"\" id=\"page:mainForm:s1:j_id_2n\">#page\\:mainForm\\:s1{max-height:486px;}\n </style>\n <input id=\"page:mainForm:s1::widths\" name=\"page:mainForm:s1::widths\" type=\"hidden\" value=\"[]\">\n <input id=\"page:mainForm:s1::rendered\" name=\"page:mainForm:s1::rendered\" type=\"hidden\" value=\"[true]\">\n <input id=\"page:mainForm:s1::scrollPosition\" name=\"page:mainForm:s1::scrollPosition\" type=\"hidden\" value=\"[0,0]\">\n <input id=\"page:mainForm:s1::selected\" name=\"page:mainForm:s1::selected\" type=\"hidden\" value=\"[]\">\n <div class=\"tobago-body\">\n <table cellspacing=\"0\" cellpadding=\"0\" summary=\"\" class=\"table table-sm tobago-tableLayout-fixed\">\n <colgroup>\n <col>\n <col>\n </colgroup>\n <tbody>\n <tr row-index=\"0\" id=\"page:mainForm:s1:0:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:0:t_name\"><span class=\"form-control-plaintext\">Sun</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:0:sample0\" execute=\"page:mainForm:s1:0:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"1\" id=\"page:mainForm:s1:1:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:1:t_name\"><span class=\"form-control-plaintext\">Mercury</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:1:sample0\" execute=\"page:mainForm:s1:1:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"2\" id=\"page:mainForm:s1:2:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:2:t_name\"><span class=\"form-control-plaintext\">Venus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:2:sample0\" execute=\"page:mainForm:s1:2:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"3\" id=\"page:mainForm:s1:3:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:3:t_name\"><span class=\"form-control-plaintext\">Earth</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:3:sample0\" execute=\"page:mainForm:s1:3:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"4\" id=\"page:mainForm:s1:4:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:4:t_name\"><span class=\"form-control-plaintext\">Mars</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:4:sample0\" execute=\"page:mainForm:s1:4:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"5\" id=\"page:mainForm:s1:5:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:5:t_name\"><span class=\"form-control-plaintext\">Jupiter</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:5:sample0\" execute=\"page:mainForm:s1:5:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"6\" id=\"page:mainForm:s1:6:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:6:t_name\"><span class=\"form-control-plaintext\">Saturn</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:6:sample0\" execute=\"page:mainForm:s1:6:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"7\" id=\"page:mainForm:s1:7:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:7:t_name\"><span class=\"form-control-plaintext\">Uranus</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:7:sample0\" execute=\"page:mainForm:s1:7:sample0\"></tobago-behavior>\n </td>\n </tr>\n <tr row-index=\"8\" id=\"page:mainForm:s1:8:sample0\">\n <td>\n <tobago-out id=\"page:mainForm:s1:8:t_name\"><span class=\"form-control-plaintext\">Neptune</span></tobago-out>\n </td>\n <td>\n <div>\n </div>\n <tobago-behavior event=\"click\" client-id=\"page:mainForm:s1:8:sample0\" execute=\"page:mainForm:s1:8:sample0\"></tobago-behavior>\n </td>\n </tr>\n </tbody>\n </table>\n </div>\n</tobago-sheet>";