@datagrok/helm 2.3.2 → 2.3.4

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 (324) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/package-test.js +1 -1
  3. package/dist/package-test.js.map +1 -1
  4. package/dist/package.js +1 -1
  5. package/dist/package.js.map +1 -1
  6. package/package.json +4 -4
  7. package/src/cell-renderer.ts +5 -4
  8. package/src/helm-helper.ts +6 -6
  9. package/src/helm-monomer-placer.ts +1 -1
  10. package/src/helm-web-editor.ts +5 -5
  11. package/src/package-test.ts +0 -1
  12. package/src/package-utils.ts +211 -69
  13. package/src/package.ts +10 -71
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/tests/helm-input-tests.ts +31 -20
  17. package/src/utils/get-monomer.ts +49 -1
  18. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  19. package/src/utils/index.ts +2 -3
  20. package/src/widgets/helm-input.ts +4 -4
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  22. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  24. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  26. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  28. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  30. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  32. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  34. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  36. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  38. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  40. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  42. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  44. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  46. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  48. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  50. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  68. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  69. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  71. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  73. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  75. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  77. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  81. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  83. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  85. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  97. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  99. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  115. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  117. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  121. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  123. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  125. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  127. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  129. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  131. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  133. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  135. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  137. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  139. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  141. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  143. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  145. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  147. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  151. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  153. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  155. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  157. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  159. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  161. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  163. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  165. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  167. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  169. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  171. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  173. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  174. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  176. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  178. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  180. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  182. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  280. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  282. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  284. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  300. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  316. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  318. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  324. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,59 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/promise/all",["../_base/array","../_base/lang","../Deferred","../when"],function(_1,_2,_3,_4){
8
+ "use strict";
9
+ var _5=_1.some;
10
+ return function all(_6){
11
+ var _7,_1;
12
+ if(_2.isArray(_6)){
13
+ _1=_6;
14
+ }else{
15
+ if(_6&&typeof _6==="object"){
16
+ _7=_6;
17
+ }
18
+ }
19
+ var _8;
20
+ var _9=[];
21
+ if(_7){
22
+ _1=[];
23
+ for(var _a in _7){
24
+ if(Object.hasOwnProperty.call(_7,_a)){
25
+ _9.push(_a);
26
+ _1.push(_7[_a]);
27
+ }
28
+ }
29
+ _8={};
30
+ }else{
31
+ if(_1){
32
+ _8=[];
33
+ }
34
+ }
35
+ if(!_1||!_1.length){
36
+ return new _3().resolve(_8);
37
+ }
38
+ var _b=new _3();
39
+ _b.promise.always(function(){
40
+ _8=_9=null;
41
+ });
42
+ var _c=_1.length;
43
+ _5(_1,function(_d,_e){
44
+ if(!_7){
45
+ _9.push(_e);
46
+ }
47
+ _4(_d,function(_f){
48
+ if(!_b.isFulfilled()){
49
+ _8[_9[_e]]=_f;
50
+ if(--_c===0){
51
+ _b.resolve(_8);
52
+ }
53
+ }
54
+ },_b.reject);
55
+ return _b.isFulfilled();
56
+ });
57
+ return _b.promise;
58
+ };
59
+ });
@@ -0,0 +1,77 @@
1
+ define("dojo/promise/all", [
2
+ "../_base/array",
3
+ "../_base/lang",
4
+ "../Deferred",
5
+ "../when"
6
+ ], function(array, lang, Deferred, when){
7
+ "use strict";
8
+
9
+ // module:
10
+ // dojo/promise/all
11
+
12
+ var some = array.some;
13
+
14
+ return function all(objectOrArray){
15
+ // summary:
16
+ // Takes multiple promises and returns a new promise that is fulfilled
17
+ // when all promises have been resolved or one has been rejected.
18
+ // description:
19
+ // Takes multiple promises and returns a new promise that is fulfilled
20
+ // when all promises have been resolved or one has been rejected. If one of
21
+ // the promises is rejected, the returned promise is also rejected. Canceling
22
+ // the returned promise will *not* cancel any passed promises.
23
+ // objectOrArray: Object|Array?
24
+ // The promise will be fulfilled with a list of results if invoked with an
25
+ // array, or an object of results when passed an object (using the same
26
+ // keys). If passed neither an object or array it is resolved with an
27
+ // undefined value.
28
+ // returns: dojo/promise/Promise
29
+
30
+ var object, array;
31
+ if(lang.isArray(objectOrArray)){
32
+ array = objectOrArray;
33
+ }else if(objectOrArray && typeof objectOrArray === "object"){
34
+ object = objectOrArray;
35
+ }
36
+
37
+ var results;
38
+ var keyLookup = [];
39
+ if(object){
40
+ array = [];
41
+ for(var key in object){
42
+ if(Object.hasOwnProperty.call(object, key)){
43
+ keyLookup.push(key);
44
+ array.push(object[key]);
45
+ }
46
+ }
47
+ results = {};
48
+ }else if(array){
49
+ results = [];
50
+ }
51
+
52
+ if(!array || !array.length){
53
+ return new Deferred().resolve(results);
54
+ }
55
+
56
+ var deferred = new Deferred();
57
+ deferred.promise.always(function(){
58
+ results = keyLookup = null;
59
+ });
60
+ var waiting = array.length;
61
+ some(array, function(valueOrPromise, index){
62
+ if(!object){
63
+ keyLookup.push(index);
64
+ }
65
+ when(valueOrPromise, function(value){
66
+ if(!deferred.isFulfilled()){
67
+ results[keyLookup[index]] = value;
68
+ if(--waiting === 0){
69
+ deferred.resolve(results);
70
+ }
71
+ }
72
+ }, deferred.reject);
73
+ return deferred.isFulfilled();
74
+ });
75
+ return deferred.promise; // dojo/promise/Promise
76
+ };
77
+ });
@@ -0,0 +1,32 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/regexp",["./_base/kernel","./_base/lang"],function(_1,_2){
8
+ var _3={};
9
+ _2.setObject("dojo.regexp",_3);
10
+ _3.escapeString=function(_4,_5){
11
+ return _4.replace(/([\.$?*|{}\(\)\[\]\\\/\+\-^])/g,function(ch){
12
+ if(_5&&_5.indexOf(ch)!=-1){
13
+ return ch;
14
+ }
15
+ return "\\"+ch;
16
+ });
17
+ };
18
+ _3.buildGroupRE=function(_6,re,_7){
19
+ if(!(_6 instanceof Array)){
20
+ return re(_6);
21
+ }
22
+ var b=[];
23
+ for(var i=0;i<_6.length;i++){
24
+ b.push(re(_6[i]));
25
+ }
26
+ return _3.group(b.join("|"),_7);
27
+ };
28
+ _3.group=function(_8,_9){
29
+ return "("+(_9?"?:":"")+_8+")";
30
+ };
31
+ return _3;
32
+ });
@@ -0,0 +1,70 @@
1
+ define("dojo/regexp", ["./_base/kernel", "./_base/lang"], function(dojo, lang){
2
+
3
+ // module:
4
+ // dojo/regexp
5
+
6
+ var regexp = {
7
+ // summary:
8
+ // Regular expressions and Builder resources
9
+ };
10
+ lang.setObject("dojo.regexp", regexp);
11
+
12
+ regexp.escapeString = function(/*String*/str, /*String?*/except){
13
+ // summary:
14
+ // Adds escape sequences for special characters in regular expressions
15
+ // except:
16
+ // a String with special characters to be left unescaped
17
+
18
+ return str.replace(/([\.$?*|{}\(\)\[\]\\\/\+\-^])/g, function(ch){
19
+ if(except && except.indexOf(ch) != -1){
20
+ return ch;
21
+ }
22
+ return "\\" + ch;
23
+ }); // String
24
+ };
25
+
26
+ regexp.buildGroupRE = function(/*Object|Array*/arr, /*Function*/re, /*Boolean?*/nonCapture){
27
+ // summary:
28
+ // Builds a regular expression that groups subexpressions
29
+ // description:
30
+ // A utility function used by some of the RE generators. The
31
+ // subexpressions are constructed by the function, re, in the second
32
+ // parameter. re builds one subexpression for each elem in the array
33
+ // a, in the first parameter. Returns a string for a regular
34
+ // expression that groups all the subexpressions.
35
+ // arr:
36
+ // A single value or an array of values.
37
+ // re:
38
+ // A function. Takes one parameter and converts it to a regular
39
+ // expression.
40
+ // nonCapture:
41
+ // If true, uses non-capturing match, otherwise matches are retained
42
+ // by regular expression. Defaults to false
43
+
44
+ // case 1: a is a single value.
45
+ if(!(arr instanceof Array)){
46
+ return re(arr); // String
47
+ }
48
+
49
+ // case 2: a is an array
50
+ var b = [];
51
+ for(var i = 0; i < arr.length; i++){
52
+ // convert each elem to a RE
53
+ b.push(re(arr[i]));
54
+ }
55
+
56
+ // join the REs as alternatives in a RE group.
57
+ return regexp.group(b.join("|"), nonCapture); // String
58
+ };
59
+
60
+ regexp.group = function(/*String*/expression, /*Boolean?*/nonCapture){
61
+ // summary:
62
+ // adds group match to expression
63
+ // nonCapture:
64
+ // If true, uses non-capturing match, otherwise matches are retained
65
+ // by regular expression.
66
+ return "(" + (nonCapture ? "?:":"") + expression + ")"; // String
67
+ };
68
+
69
+ return regexp;
70
+ });
@@ -0,0 +1,291 @@
1
+ /*
2
+ Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
3
+ Available via Academic Free License >= 2.1 OR the modified BSD license.
4
+ see: http://dojotoolkit.org/license for details
5
+ */
6
+ //>>built
7
+ define("dojo/request/iframe",["module","require","./watch","./util","./handlers","../_base/lang","../io-query","../query","../has","../dom","../dom-construct","../_base/window","../NodeList-dom","../NodeList-manipulate"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9,_a,_b,_c){
8
+ var _d=_1.id.replace(/[\/\.\-]/g,"_"),_e=_d+"_onload";
9
+ if(!_c.global[_e]){
10
+ _c.global[_e]=function(){
11
+ var _f=_10._currentDfd;
12
+ if(!_f){
13
+ _10._fireNextRequest();
14
+ return;
15
+ }
16
+ var _11=_f.response,_12=_11.options,_13=_a.byId(_12.form)||_f._tmpForm;
17
+ if(_13){
18
+ var _14=_f._contentToClean;
19
+ for(var i=0;i<_14.length;i++){
20
+ var key=_14[i];
21
+ for(var j=0;j<_13.childNodes.length;j++){
22
+ var _15=_13.childNodes[j];
23
+ if(_15.name===key){
24
+ _b.destroy(_15);
25
+ break;
26
+ }
27
+ }
28
+ }
29
+ _f._originalAction&&_13.setAttribute("action",_f._originalAction);
30
+ if(_f._originalMethod){
31
+ _13.setAttribute("method",_f._originalMethod);
32
+ _13.method=_f._originalMethod;
33
+ }
34
+ if(_f._originalTarget){
35
+ _13.setAttribute("target",_f._originalTarget);
36
+ _13.target=_f._originalTarget;
37
+ }
38
+ }
39
+ if(_f._tmpForm){
40
+ _b.destroy(_f._tmpForm);
41
+ delete _f._tmpForm;
42
+ }
43
+ _f._finished=true;
44
+ };
45
+ }
46
+ function _16(_17,_18,uri){
47
+ if(_c.global[_17]){
48
+ return _c.global[_17];
49
+ }
50
+ if(_c.global.frames[_17]){
51
+ return _c.global.frames[_17];
52
+ }
53
+ if(!uri){
54
+ if(_9("config-useXDomain")&&!_9("config-dojoBlankHtmlUrl")){
55
+ console.warn("dojo/request/iframe: When using cross-domain Dojo builds,"+" please save dojo/resources/blank.html to your domain and set dojoConfig.dojoBlankHtmlUrl"+" to the path on your domain to blank.html");
56
+ }
57
+ uri=(_9("config-dojoBlankHtmlUrl")||_2.toUrl("dojo/resources/blank.html"));
58
+ }
59
+ var _19=_b.place("<iframe id=\""+_17+"\" name=\""+_17+"\" src=\""+uri+"\" onload=\""+_18+"\" style=\"position: absolute; left: 1px; top: 1px; height: 1px; width: 1px; visibility: hidden\">",_c.body());
60
+ _c.global[_17]=_19;
61
+ return _19;
62
+ };
63
+ function _1a(_1b,src,_1c){
64
+ var _1d=_c.global.frames[_1b.name];
65
+ if(_1d.contentWindow){
66
+ _1d=_1d.contentWindow;
67
+ }
68
+ try{
69
+ if(!_1c){
70
+ _1d.location=src;
71
+ }else{
72
+ _1d.location.replace(src);
73
+ }
74
+ }
75
+ catch(e){
76
+ }
77
+ };
78
+ function doc(_1e){
79
+ if(_1e.contentDocument){
80
+ return _1e.contentDocument;
81
+ }
82
+ var _1f=_1e.name;
83
+ if(_1f){
84
+ var _20=_c.doc.getElementsByTagName("iframe");
85
+ if(_1e.document&&_20[_1f].contentWindow&&_20[_1f].contentWindow.document){
86
+ return _20[_1f].contentWindow.document;
87
+ }else{
88
+ if(_c.doc.frames[_1f]&&_c.doc.frames[_1f].document){
89
+ return _c.doc.frames[_1f].document;
90
+ }
91
+ }
92
+ }
93
+ return null;
94
+ };
95
+ function _21(){
96
+ return _b.create("form",{name:_d+"_form",style:{position:"absolute",top:"-1000px",left:"-1000px"}},_c.body());
97
+ };
98
+ function _22(){
99
+ var dfd;
100
+ try{
101
+ if(_10._currentDfd||!_10._dfdQueue.length){
102
+ return;
103
+ }
104
+ do{
105
+ dfd=_10._currentDfd=_10._dfdQueue.shift();
106
+ }while(dfd&&(dfd.canceled||(dfd.isCanceled&&dfd.isCanceled()))&&_10._dfdQueue.length);
107
+ if(!dfd||dfd.canceled||(dfd.isCanceled&&dfd.isCanceled())){
108
+ _10._currentDfd=null;
109
+ return;
110
+ }
111
+ var _23=dfd.response,_24=_23.options,c2c=dfd._contentToClean=[],_25=_a.byId(_24.form),_26=_4.notify,_27=_24.data||null,_28;
112
+ if(!dfd._legacy&&_24.method==="POST"&&!_25){
113
+ _25=dfd._tmpForm=_21();
114
+ }else{
115
+ if(_24.method==="GET"&&_25&&_23.url.indexOf("?")>-1){
116
+ _28=_23.url.slice(_23.url.indexOf("?")+1);
117
+ _27=_6.mixin(_7.queryToObject(_28),_27);
118
+ }
119
+ }
120
+ if(_25){
121
+ if(!dfd._legacy){
122
+ var _29=_25;
123
+ do{
124
+ _29=_29.parentNode;
125
+ }while(_29&&_29!==_c.doc.documentElement);
126
+ if(!_29){
127
+ _25.style.position="absolute";
128
+ _25.style.left="-1000px";
129
+ _25.style.top="-1000px";
130
+ _c.body().appendChild(_25);
131
+ }
132
+ if(!_25.name){
133
+ _25.name=_d+"_form";
134
+ }
135
+ }
136
+ if(_27){
137
+ var _2a=function(_2b,_2c){
138
+ _b.create("input",{type:"hidden",name:_2b,value:_2c},_25);
139
+ c2c.push(_2b);
140
+ };
141
+ for(var x in _27){
142
+ var val=_27[x];
143
+ if(_6.isArray(val)&&val.length>1){
144
+ for(var i=0;i<val.length;i++){
145
+ _2a(x,val[i]);
146
+ }
147
+ }else{
148
+ var n=_8("input[name='"+x+"']",_25);
149
+ if(n.indexOf()==-1){
150
+ _2a(x,val);
151
+ }else{
152
+ n.val(val);
153
+ }
154
+ }
155
+ }
156
+ }
157
+ var _2d=_25.getAttributeNode("action"),_2e=_25.getAttributeNode("method"),_2f=_25.getAttributeNode("target");
158
+ if(_23.url){
159
+ dfd._originalAction=_2d?_2d.value:null;
160
+ if(_2d){
161
+ _2d.value=_23.url;
162
+ }else{
163
+ _25.setAttribute("action",_23.url);
164
+ }
165
+ }
166
+ if(!dfd._legacy){
167
+ dfd._originalMethod=_2e?_2e.value:null;
168
+ if(_2e){
169
+ _2e.value=_24.method;
170
+ }else{
171
+ _25.setAttribute("method",_24.method);
172
+ }
173
+ }else{
174
+ if(!_2e||!_2e.value){
175
+ if(_2e){
176
+ _2e.value=_24.method;
177
+ }else{
178
+ _25.setAttribute("method",_24.method);
179
+ }
180
+ }
181
+ }
182
+ dfd._originalTarget=_2f?_2f.value:null;
183
+ if(_2f){
184
+ _2f.value=_10._iframeName;
185
+ }else{
186
+ _25.setAttribute("target",_10._iframeName);
187
+ }
188
+ _25.target=_10._iframeName;
189
+ _26&&_26.emit("send",_23,dfd.promise.cancel);
190
+ _10._notifyStart(_23);
191
+ _25.submit();
192
+ }else{
193
+ var _30="";
194
+ if(_23.options.data){
195
+ _30=_23.options.data;
196
+ if(typeof _30!=="string"){
197
+ _30=_7.objectToQuery(_30);
198
+ }
199
+ }
200
+ var _31=_23.url+(_23.url.indexOf("?")>-1?"&":"?")+_30;
201
+ _26&&_26.emit("send",_23,dfd.promise.cancel);
202
+ _10._notifyStart(_23);
203
+ _10.setSrc(_10._frame,_31,true);
204
+ }
205
+ }
206
+ catch(e){
207
+ dfd.reject(e);
208
+ }
209
+ };
210
+ function _32(_33){
211
+ return !this.isFulfilled();
212
+ };
213
+ function _34(_35){
214
+ return !!this._finished;
215
+ };
216
+ function _36(_37,_38){
217
+ if(!_38){
218
+ try{
219
+ var _39=_37.options,doc=_10.doc(_10._frame),_3a=_39.handleAs;
220
+ if(_3a!=="html"){
221
+ if(_3a==="xml"){
222
+ if(doc.documentElement.tagName.toLowerCase()==="html"){
223
+ _8("a",doc.documentElement).orphan();
224
+ var _3b=doc.documentElement.innerText||doc.documentElement.textContent;
225
+ _3b=_3b.replace(/>\s+</g,"><");
226
+ _37.text=_6.trim(_3b);
227
+ }else{
228
+ _37.data=doc;
229
+ }
230
+ }else{
231
+ _37.text=doc.getElementsByTagName("textarea")[0].value;
232
+ }
233
+ _5(_37);
234
+ }else{
235
+ _37.data=doc;
236
+ }
237
+ }
238
+ catch(e){
239
+ _38=e;
240
+ }
241
+ }
242
+ if(_38){
243
+ this.reject(_38);
244
+ }else{
245
+ if(this._finished){
246
+ this.resolve(_37);
247
+ }else{
248
+ this.reject(new Error("Invalid dojo/request/iframe request state"));
249
+ }
250
+ }
251
+ };
252
+ function _3c(_3d){
253
+ this._callNext();
254
+ };
255
+ var _3e={method:"POST"};
256
+ function _10(url,_3f,_40){
257
+ var _41=_4.parseArgs(url,_4.deepCreate(_3e,_3f),true);
258
+ url=_41.url;
259
+ _3f=_41.options;
260
+ if(_3f.method!=="GET"&&_3f.method!=="POST"){
261
+ throw new Error(_3f.method+" not supported by dojo/request/iframe");
262
+ }
263
+ if(!_10._frame){
264
+ _10._frame=_10.create(_10._iframeName,_e+"();");
265
+ }
266
+ var dfd=_4.deferred(_41,null,_32,_34,_36,_3c);
267
+ dfd._callNext=function(){
268
+ if(!this._calledNext){
269
+ this._calledNext=true;
270
+ _10._currentDfd=null;
271
+ _10._fireNextRequest();
272
+ }
273
+ };
274
+ dfd._legacy=_40;
275
+ _10._dfdQueue.push(dfd);
276
+ _10._fireNextRequest();
277
+ _3(dfd);
278
+ return _40?dfd:dfd.promise;
279
+ };
280
+ _10.create=_16;
281
+ _10.doc=doc;
282
+ _10.setSrc=_1a;
283
+ _10._iframeName=_d+"_IoIframe";
284
+ _10._notifyStart=function(){
285
+ };
286
+ _10._dfdQueue=[];
287
+ _10._currentDfd=null;
288
+ _10._fireNextRequest=_22;
289
+ _4.addCommonMethods(_10,["GET","POST"]);
290
+ return _10;
291
+ });