@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,199 @@
1
+ //>>built
2
+ define("dojox/gfx/utils",["dojo/_base/kernel","dojo/_base/lang","./_base","dojo/_base/html","dojo/_base/array","dojo/_base/window","dojo/_base/json","dojo/_base/Deferred","dojo/_base/sniff","require","dojo/_base/config"],function(_1,_2,g,_3,_4,_5,_6,_7,_8,_9,_a){
3
+ var gu=g.utils={};
4
+ _2.mixin(gu,{forEach:function(_b,f,o){
5
+ o=o||_1.global;
6
+ f.call(o,_b);
7
+ if(_b instanceof g.Surface||_b instanceof g.Group){
8
+ _4.forEach(_b.children,function(_c){
9
+ gu.forEach(_c,f,o);
10
+ });
11
+ }
12
+ },serialize:function(_d){
13
+ var t={},v,_e=_d instanceof g.Surface;
14
+ if(_e||_d instanceof g.Group){
15
+ t.children=_4.map(_d.children,gu.serialize);
16
+ if(_e){
17
+ return t.children;
18
+ }
19
+ }else{
20
+ t.shape=_d.getShape();
21
+ }
22
+ if(_d.getTransform){
23
+ v=_d.getTransform();
24
+ if(v){
25
+ t.transform=v;
26
+ }
27
+ }
28
+ if(_d.getStroke){
29
+ v=_d.getStroke();
30
+ if(v){
31
+ t.stroke=v;
32
+ }
33
+ }
34
+ if(_d.getFill){
35
+ v=_d.getFill();
36
+ if(v){
37
+ t.fill=v;
38
+ }
39
+ }
40
+ if(_d.getFont){
41
+ v=_d.getFont();
42
+ if(v){
43
+ t.font=v;
44
+ }
45
+ }
46
+ return t;
47
+ },toJson:function(_f,_10){
48
+ return _6.toJson(gu.serialize(_f),_10);
49
+ },deserialize:function(_11,_12){
50
+ if(_12 instanceof Array){
51
+ return _4.map(_12,_2.hitch(null,gu.deserialize,_11));
52
+ }
53
+ var _13=("shape" in _12)?_11.createShape(_12.shape):_11.createGroup();
54
+ if("transform" in _12){
55
+ _13.setTransform(_12.transform);
56
+ }
57
+ if("stroke" in _12){
58
+ _13.setStroke(_12.stroke);
59
+ }
60
+ if("fill" in _12){
61
+ _13.setFill(_12.fill);
62
+ }
63
+ if("font" in _12){
64
+ _13.setFont(_12.font);
65
+ }
66
+ if("children" in _12){
67
+ _4.forEach(_12.children,_2.hitch(null,gu.deserialize,_13));
68
+ }
69
+ return _13;
70
+ },fromJson:function(_14,_15){
71
+ return gu.deserialize(_14,_6.fromJson(_15));
72
+ },toSvg:function(_16){
73
+ var _17=new _7();
74
+ if(g.renderer==="svg"){
75
+ try{
76
+ var svg=gu._cleanSvg(gu._innerXML(_16.rawNode));
77
+ _17.callback(svg);
78
+ }
79
+ catch(e){
80
+ _17.errback(e);
81
+ }
82
+ }else{
83
+ if(!gu._initSvgSerializerDeferred){
84
+ gu._initSvgSerializer();
85
+ }
86
+ var _18=gu.toJson(_16);
87
+ var _19=function(){
88
+ try{
89
+ var _1a=_16.getDimensions();
90
+ var _1b=_1a.width;
91
+ var _1c=_1a.height;
92
+ var _1d=gu._gfxSvgProxy.document.createElement("div");
93
+ gu._gfxSvgProxy.document.body.appendChild(_1d);
94
+ _5.withDoc(gu._gfxSvgProxy.document,function(){
95
+ _3.style(_1d,"width",_1b);
96
+ _3.style(_1d,"height",_1c);
97
+ },this);
98
+ var ts=gu._gfxSvgProxy[dojox._scopeName].gfx.createSurface(_1d,_1b,_1c);
99
+ var _1e=function(_1f){
100
+ try{
101
+ gu._gfxSvgProxy[dojox._scopeName].gfx.utils.fromJson(_1f,_18);
102
+ var svg=gu._cleanSvg(_1d.innerHTML);
103
+ _1f.clear();
104
+ _1f.destroy();
105
+ gu._gfxSvgProxy.document.body.removeChild(_1d);
106
+ _17.callback(svg);
107
+ }
108
+ catch(e){
109
+ _17.errback(e);
110
+ }
111
+ };
112
+ ts.whenLoaded(null,_1e);
113
+ }
114
+ catch(ex){
115
+ _17.errback(ex);
116
+ }
117
+ };
118
+ if(gu._initSvgSerializerDeferred.fired>0){
119
+ _19();
120
+ }else{
121
+ gu._initSvgSerializerDeferred.addCallback(_19);
122
+ }
123
+ }
124
+ return _17;
125
+ },_gfxSvgProxy:null,_initSvgSerializerDeferred:null,_svgSerializerInitialized:function(){
126
+ gu._initSvgSerializerDeferred.callback(true);
127
+ },_initSvgSerializer:function(){
128
+ if(!gu._initSvgSerializerDeferred){
129
+ gu._initSvgSerializerDeferred=new _7();
130
+ var f=_5.doc.createElement("iframe");
131
+ _3.style(f,{display:"none",position:"absolute",width:"1em",height:"1em",top:"-10000px"});
132
+ var _20;
133
+ if(_8("ie")){
134
+ f.onreadystatechange=function(){
135
+ if(f.contentWindow.document.readyState=="complete"){
136
+ f.onreadystatechange=function(){
137
+ };
138
+ _20=setInterval(function(){
139
+ if(f.contentWindow[_1.scopeMap["dojo"][1]._scopeName]&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx.utils){
140
+ clearInterval(_20);
141
+ f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy=f.contentWindow;
142
+ f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
143
+ }
144
+ },50);
145
+ }
146
+ };
147
+ }else{
148
+ f.onload=function(){
149
+ f.onload=function(){
150
+ };
151
+ _20=setInterval(function(){
152
+ if(f.contentWindow[_1.scopeMap["dojo"][1]._scopeName]&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx&&f.contentWindow[_1.scopeMap["dojox"][1]._scopeName].gfx.utils){
153
+ clearInterval(_20);
154
+ f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy=f.contentWindow;
155
+ f.contentWindow.parent[_1.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
156
+ }
157
+ },50);
158
+ };
159
+ }
160
+ var uri=(_a["dojoxGfxSvgProxyFrameUrl"]||_9.toUrl("dojox/gfx/resources/gfxSvgProxyFrame.html"));
161
+ f.setAttribute("src",uri.toString());
162
+ _5.body().appendChild(f);
163
+ }
164
+ },_innerXML:function(_21){
165
+ if(_21.innerXML){
166
+ return _21.innerXML;
167
+ }else{
168
+ if(_21.xml){
169
+ return _21.xml;
170
+ }else{
171
+ if(typeof XMLSerializer!="undefined"){
172
+ return (new XMLSerializer()).serializeToString(_21);
173
+ }
174
+ }
175
+ }
176
+ return null;
177
+ },_cleanSvg:function(svg){
178
+ if(svg){
179
+ if(svg.indexOf("xmlns=\"http://www.w3.org/2000/svg\"")==-1){
180
+ svg=svg.substring(4,svg.length);
181
+ svg="<svg xmlns=\"http://www.w3.org/2000/svg\""+svg;
182
+ }
183
+ if(svg.indexOf("xmlns:xlink=\"http://www.w3.org/1999/xlink\"")==-1){
184
+ svg=svg.substring(4,svg.length);
185
+ svg="<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\""+svg;
186
+ }
187
+ if(svg.indexOf("xlink:href")===-1){
188
+ svg=svg.replace(/href\s*=/g,"xlink:href=");
189
+ }
190
+ svg=svg.replace(/<img\b([^>]*)>/gi,"<image $1 />");
191
+ svg=svg.replace(/\bdojoGfx\w*\s*=\s*(['"])\w*\1/g,"");
192
+ svg=svg.replace(/\b__gfxObject__\s*=\s*(['"])\w*\1/g,"");
193
+ svg=svg.replace(/[=]([^"']+?)(\s|>)/g,"=\"$1\"$2");
194
+ svg=svg.replace(/\bstroke-opacity\w*\s*=\s*(['"])undefined\1/g,"");
195
+ }
196
+ return svg;
197
+ }});
198
+ return gu;
199
+ });
@@ -0,0 +1,322 @@
1
+ define("dojox/gfx/utils", ["dojo/_base/kernel","dojo/_base/lang","./_base", "dojo/_base/html","dojo/_base/array", "dojo/_base/window", "dojo/_base/json",
2
+ "dojo/_base/Deferred", "dojo/_base/sniff", "require","dojo/_base/config"],
3
+ function(kernel, lang, g, html, arr, win, jsonLib, Deferred, has, require, config){
4
+ var gu = g.utils = {};
5
+
6
+ lang.mixin(gu, {
7
+ forEach: function(
8
+ /*dojox/gfx/shape.Surface|dojox/gfx/shape.Shape*/ object,
9
+ /*Function|String|Array*/ f, /*Object?*/ o
10
+ ){
11
+ // summary:
12
+ // Takes a shape or a surface and applies a function "f" to in the context of "o"
13
+ // (or global, if missing). If "shape" was a surface or a group, it applies the same
14
+ // function to all children recursively effectively visiting all shapes of the underlying scene graph.
15
+ // object:
16
+ // The gfx container to iterate.
17
+ // f:
18
+ // The function to apply.
19
+ // o:
20
+ // The scope.
21
+ o = o || kernel.global;
22
+ f.call(o, object);
23
+ if(object instanceof g.Surface || object instanceof g.Group){
24
+ arr.forEach(object.children, function(shape){
25
+ gu.forEach(shape, f, o);
26
+ });
27
+ }
28
+ },
29
+
30
+ serialize: function(object){
31
+ // summary:
32
+ // Takes a shape or a surface and returns an object, which describes underlying shapes.
33
+ // object: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
34
+ // The container to serialize.
35
+
36
+ var t = {}, v, isSurface = object instanceof g.Surface;
37
+ if(isSurface || object instanceof g.Group){
38
+ t.children = arr.map(object.children, gu.serialize);
39
+ if(isSurface){
40
+ return t.children; // Array
41
+ }
42
+ }else{
43
+ t.shape = object.getShape();
44
+ }
45
+ if(object.getTransform){
46
+ v = object.getTransform();
47
+ if(v){ t.transform = v; }
48
+ }
49
+ if(object.getStroke){
50
+ v = object.getStroke();
51
+ if(v){ t.stroke = v; }
52
+ }
53
+ if(object.getFill){
54
+ v = object.getFill();
55
+ if(v){ t.fill = v; }
56
+ }
57
+ if(object.getFont){
58
+ v = object.getFont();
59
+ if(v){ t.font = v; }
60
+ }
61
+ return t; // Object
62
+ },
63
+
64
+ toJson: function(object, prettyPrint){
65
+ // summary:
66
+ // Works just like serialize() but returns a JSON string. If prettyPrint is true, the string is pretty-printed to make it more human-readable.
67
+ // object: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
68
+ // The container to serialize.
69
+ // prettyPrint: Boolean?
70
+ // Indicates whether the output string should be formatted.
71
+ // returns: String
72
+
73
+ return jsonLib.toJson(gu.serialize(object), prettyPrint); // String
74
+ },
75
+
76
+ deserialize: function(parent, object){
77
+ // summary:
78
+ // Takes a surface or a shape and populates it with an object produced by serialize().
79
+ // parent: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
80
+ // The destination container for the deserialized shapes.
81
+ // object: dojox/gfx/shape.Shape|Array
82
+ // The shapes to deserialize.
83
+
84
+ if(object instanceof Array){
85
+ return arr.map(object, lang.hitch(null, gu.deserialize, parent)); // Array
86
+ }
87
+ var shape = ("shape" in object) ? parent.createShape(object.shape) : parent.createGroup();
88
+ if("transform" in object){
89
+ shape.setTransform(object.transform);
90
+ }
91
+ if("stroke" in object){
92
+ shape.setStroke(object.stroke);
93
+ }
94
+ if("fill" in object){
95
+ shape.setFill(object.fill);
96
+ }
97
+ if("font" in object){
98
+ shape.setFont(object.font);
99
+ }
100
+ if("children" in object){
101
+ arr.forEach(object.children, lang.hitch(null, gu.deserialize, shape));
102
+ }
103
+ return shape; // dojox/gfx/shape.Shape
104
+ },
105
+
106
+ fromJson: function(parent, json){
107
+ // summary:
108
+ // Works just like deserialize() but takes a JSON representation of the object.
109
+ // parent: dojox/gfx/shape.Surface|dojox/gfx/shape.Shape
110
+ // The destination container for the deserialized shapes.
111
+ // json: String
112
+ // The shapes to deserialize.
113
+
114
+ return gu.deserialize(parent, jsonLib.fromJson(json)); // Array|dojox/gfx/shape.Shape
115
+ },
116
+
117
+ toSvg: function(/*dojox/gfx/shape.Surface*/surface){
118
+ // summary:
119
+ // Function to serialize a GFX surface to SVG text.
120
+ // description:
121
+ // Function to serialize a GFX surface to SVG text. The value of this output
122
+ // is that there are numerous serverside parser libraries that can render
123
+ // SVG into images in various formats. This provides a way that GFX objects
124
+ // can be captured in a known format and sent serverside for serialization
125
+ // into an image.
126
+ // surface:
127
+ // The GFX surface to serialize.
128
+ // returns:
129
+ // Deferred object that will be called when SVG serialization is complete.
130
+
131
+ //Since the init and even surface creation can be async, we need to
132
+ //return a deferred that will be called when content has serialized.
133
+ var deferred = new Deferred();
134
+
135
+ if(g.renderer === "svg"){
136
+ //If we're already in SVG mode, this is easy and quick.
137
+ try{
138
+ var svg = gu._cleanSvg(gu._innerXML(surface.rawNode));
139
+ deferred.callback(svg);
140
+ }catch(e){
141
+ deferred.errback(e);
142
+ }
143
+ }else{
144
+ //Okay, now we have to get creative with hidden iframes and the like to
145
+ //serialize SVG.
146
+ if (!gu._initSvgSerializerDeferred) {
147
+ gu._initSvgSerializer();
148
+ }
149
+ var jsonForm = gu.toJson(surface);
150
+ var serializer = function(){
151
+ try{
152
+ var sDim = surface.getDimensions();
153
+ var width = sDim.width;
154
+ var height = sDim.height;
155
+
156
+ //Create an attach point in the iframe for the contents.
157
+ var node = gu._gfxSvgProxy.document.createElement("div");
158
+ gu._gfxSvgProxy.document.body.appendChild(node);
159
+ //Set the node scaling.
160
+ win.withDoc(gu._gfxSvgProxy.document, function() {
161
+ html.style(node, "width", width);
162
+ html.style(node, "height", height);
163
+ }, this);
164
+
165
+ //Create temp surface to render object to and render.
166
+ var ts = gu._gfxSvgProxy[dojox._scopeName].gfx.createSurface(node, width, height);
167
+
168
+ //It's apparently possible that a suface creation is async, so we need to use
169
+ //the whenLoaded function. Probably not needed for SVG, but making it common
170
+ var draw = function(surface) {
171
+ try{
172
+ gu._gfxSvgProxy[dojox._scopeName].gfx.utils.fromJson(surface, jsonForm);
173
+
174
+ //Get contents and remove temp surface.
175
+ var svg = gu._cleanSvg(node.innerHTML);
176
+ surface.clear();
177
+ surface.destroy();
178
+ gu._gfxSvgProxy.document.body.removeChild(node);
179
+ deferred.callback(svg);
180
+ }catch(e){
181
+ deferred.errback(e);
182
+ }
183
+ };
184
+ ts.whenLoaded(null,draw);
185
+ }catch (ex) {
186
+ deferred.errback(ex);
187
+ }
188
+ };
189
+ //See if we can call it directly or pass it to the deferred to be
190
+ //called on initialization.
191
+ if(gu._initSvgSerializerDeferred.fired > 0){
192
+ serializer();
193
+ }else{
194
+ gu._initSvgSerializerDeferred.addCallback(serializer);
195
+ }
196
+ }
197
+ return deferred; //dojo.Deferred that will be called when serialization finishes.
198
+ },
199
+
200
+ //iFrame document used for handling SVG serialization.
201
+ _gfxSvgProxy: null,
202
+
203
+ //Serializer loaded.
204
+ _initSvgSerializerDeferred: null,
205
+
206
+ _svgSerializerInitialized: function() {
207
+ // summary:
208
+ // Internal function to call when the serializer init completed.
209
+ // tags:
210
+ // private
211
+ gu._initSvgSerializerDeferred.callback(true);
212
+ },
213
+
214
+ _initSvgSerializer: function(){
215
+ // summary:
216
+ // Internal function to initialize the hidden iframe where SVG rendering
217
+ // will occur.
218
+ // tags:
219
+ // private
220
+ if(!gu._initSvgSerializerDeferred){
221
+ gu._initSvgSerializerDeferred = new Deferred();
222
+ var f = win.doc.createElement("iframe");
223
+ html.style(f, {
224
+ display: "none",
225
+ position: "absolute",
226
+ width: "1em",
227
+ height: "1em",
228
+ top: "-10000px"
229
+ });
230
+ var intv;
231
+ if(has("ie")){
232
+ f.onreadystatechange = function(){
233
+ if(f.contentWindow.document.readyState == "complete"){
234
+ f.onreadystatechange = function() {};
235
+ intv = setInterval(function() {
236
+ if(f.contentWindow[kernel.scopeMap["dojo"][1]._scopeName] &&
237
+ f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx &&
238
+ f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils){
239
+ clearInterval(intv);
240
+ f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy = f.contentWindow;
241
+ f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
242
+ }
243
+ }, 50);
244
+ }
245
+ };
246
+ }else{
247
+ f.onload = function(){
248
+ f.onload = function() {};
249
+ intv = setInterval(function() {
250
+ if(f.contentWindow[kernel.scopeMap["dojo"][1]._scopeName] &&
251
+ f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx &&
252
+ f.contentWindow[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils){
253
+ clearInterval(intv);
254
+ f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._gfxSvgProxy = f.contentWindow;
255
+ f.contentWindow.parent[kernel.scopeMap["dojox"][1]._scopeName].gfx.utils._svgSerializerInitialized();
256
+ }
257
+ }, 50);
258
+ };
259
+ }
260
+ //We have to load the GFX SVG proxy frame. Default is to use the one packaged in dojox.
261
+ var uri = (config["dojoxGfxSvgProxyFrameUrl"]||require.toUrl("dojox/gfx/resources/gfxSvgProxyFrame.html"));
262
+ f.setAttribute("src", uri.toString());
263
+ win.body().appendChild(f);
264
+ }
265
+ },
266
+
267
+ _innerXML: function(/*Node*/node){
268
+ // summary:
269
+ // Implementation of MS's innerXML function, borrowed from dojox.xml.parser.
270
+ // node:
271
+ // The node from which to generate the XML text representation.
272
+ // tags:
273
+ // private
274
+ if(node.innerXML){
275
+ return node.innerXML; //String
276
+ }else if(node.xml){
277
+ return node.xml; //String
278
+ }else if(typeof XMLSerializer != "undefined"){
279
+ return (new XMLSerializer()).serializeToString(node); //String
280
+ }
281
+ return null;
282
+ },
283
+
284
+ _cleanSvg: function(svg) {
285
+ // summary:
286
+ // Internal function that cleans up artifacts in extracted SVG content.
287
+ // tags:
288
+ // private
289
+ if(svg){
290
+ //Make sure the namespace is set.
291
+ if(svg.indexOf("xmlns=\"http://www.w3.org/2000/svg\"") == -1){
292
+ svg = svg.substring(4, svg.length);
293
+ svg = "<svg xmlns=\"http://www.w3.org/2000/svg\"" + svg;
294
+ }
295
+ //Same for xmlns:xlink (missing in Chrome and Safari)
296
+ if(svg.indexOf("xmlns:xlink=\"http://www.w3.org/1999/xlink\"") == -1){
297
+ svg = svg.substring(4, svg.length);
298
+ svg = "<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\"" + svg;
299
+ }
300
+ //and add namespace to href attribute if not done yet
301
+ //(FF 5+ adds xlink:href but not the xmlns def)
302
+ if(svg.indexOf("xlink:href") === -1){
303
+ svg = svg.replace(/href\s*=/g, "xlink:href=");
304
+ }
305
+ // in IE, <image are serialized as <img>
306
+ svg = svg.replace(/<img\b([^>]*)>/gi,"<image $1 />");
307
+ //Do some other cleanup, like stripping out the
308
+ //dojoGfx attributes and quoting ids.
309
+ svg = svg.replace(/\bdojoGfx\w*\s*=\s*(['"])\w*\1/g, "");
310
+ svg = svg.replace(/\b__gfxObject__\s*=\s*(['"])\w*\1/g, "");
311
+ svg = svg.replace(/[=]([^"']+?)(\s|>)/g,'="$1"$2');
312
+
313
+ // Undefined strokes (IE 8 seralization weirdness) should be removed to
314
+ // allow default. 'undefined' is not a valid value.
315
+ svg = svg.replace(/\bstroke-opacity\w*\s*=\s*(['"])undefined\1/g, "");
316
+ }
317
+ return svg; //Cleaned SVG text.
318
+ }
319
+ });
320
+
321
+ return gu;
322
+ });
@@ -0,0 +1,2 @@
1
+ //>>built
2
+ require({cache:{"dojox/gfx/_base":function(){define(["dojo/_base/kernel","dojo/_base/lang","dojo/_base/Color","dojo/_base/sniff","dojo/_base/window","dojo/_base/array","dojo/dom","dojo/dom-construct","dojo/dom-geometry"],function(_1,_2,_3,_4,_5,_6,_7,_8,_9){var g=_2.getObject("dojox.gfx",true),b=g._base={};g._hasClass=function(_a,_b){var _c=_a.getAttribute("className");return _c&&(" "+_c+" ").indexOf(" "+_b+" ")>=0;};g._addClass=function(_d,_e){var _f=_d.getAttribute("className")||"";if(!_f||(" "+_f+" ").indexOf(" "+_e+" ")<0){_d.setAttribute("className",_f+(_f?" ":"")+_e);}};g._removeClass=function(_10,_11){var cls=_10.getAttribute("className");if(cls){_10.setAttribute("className",cls.replace(new RegExp("(^|\\s+)"+_11+"(\\s+|$)"),"$1$2"));}};b._getFontMeasurements=function(){var _12={"1em":0,"1ex":0,"100%":0,"12pt":0,"16px":0,"xx-small":0,"x-small":0,"small":0,"medium":0,"large":0,"x-large":0,"xx-large":0};var p,_13;if(_4("ie")){_13=_5.doc.documentElement.style.fontSize||"";if(!_13){_5.doc.documentElement.style.fontSize="100%";}}var div=_8.create("div",{style:{position:"absolute",left:"0",top:"-100px",width:"30px",height:"1000em",borderWidth:"0",margin:"0",padding:"0",outline:"none",lineHeight:"1",overflow:"hidden"}},_5.body());for(p in _12){div.style.fontSize=p;_12[p]=Math.round(div.offsetHeight*12/16)*16/12/1000;}if(_4("ie")){_5.doc.documentElement.style.fontSize=_13;}_5.body().removeChild(div);return _12;};var _14=null;b._getCachedFontMeasurements=function(_15){if(_15||!_14){_14=b._getFontMeasurements();}return _14;};var _16=null,_17={};b._getTextBox=function(_18,_19,_1a){var m,s,al=arguments.length;var i,box;if(!_16){_16=_8.create("div",{style:{position:"absolute",top:"-10000px",left:"0",visibility:"hidden"}},_5.body());}m=_16;m.className="";s=m.style;s.borderWidth="0";s.margin="0";s.padding="0";s.outline="0";if(al>1&&_19){for(i in _19){if(i in _17){continue;}s[i]=_19[i];}}if(al>2&&_1a){m.className=_1a;}m.innerHTML=_18;if(m.getBoundingClientRect){var bcr=m.getBoundingClientRect();box={l:bcr.left,t:bcr.top,w:bcr.width||(bcr.right-bcr.left),h:bcr.height||(bcr.bottom-bcr.top)};}else{box=_9.getMarginBox(m);}m.innerHTML="";return box;};b._computeTextLocation=function(_1b,_1c,_1d,_1e){var loc={},_1f=_1b.align;switch(_1f){case "end":loc.x=_1b.x-_1c;break;case "middle":loc.x=_1b.x-_1c/2;break;default:loc.x=_1b.x;break;}var c=_1e?0.75:1;loc.y=_1b.y-_1d*c;return loc;};b._computeTextBoundingBox=function(s){if(!g._base._isRendered(s)){return {x:0,y:0,width:0,height:0};}var loc,_20=s.getShape(),_21=s.getFont()||g.defaultFont,w=s.getTextWidth(),h=g.normalizedLength(_21.size);loc=b._computeTextLocation(_20,w,h,true);return {x:loc.x,y:loc.y,width:w,height:h};};b._isRendered=function(s){var p=s.parent;while(p&&p.getParent){p=p.parent;}return p!==null;};var _22=0;b._getUniqueId=function(){var id;do{id=_1._scopeName+"xUnique"+(++_22);}while(_7.byId(id));return id;};var _23=_4("pointer-events")?"touchAction":_4("MSPointer")?"msTouchAction":null;b._fixMsTouchAction=_23?function(_24){_24.rawNode.style[_23]="none";}:function(){};_2.mixin(g,{defaultPath:{type:"path",path:""},defaultPolyline:{type:"polyline",points:[]},defaultRect:{type:"rect",x:0,y:0,width:100,height:100,r:0},defaultEllipse:{type:"ellipse",cx:0,cy:0,rx:200,ry:100},defaultCircle:{type:"circle",cx:0,cy:0,r:100},defaultLine:{type:"line",x1:0,y1:0,x2:100,y2:100},defaultImage:{type:"image",x:0,y:0,width:0,height:0,src:""},defaultText:{type:"text",x:0,y:0,text:"",align:"start",decoration:"none",rotated:false,kerning:true},defaultTextPath:{type:"textpath",text:"",align:"start",decoration:"none",rotated:false,kerning:true},defaultStroke:{type:"stroke",color:"black",style:"solid",width:1,cap:"butt",join:4},defaultLinearGradient:{type:"linear",x1:0,y1:0,x2:100,y2:100,colors:[{offset:0,color:"black"},{offset:1,color:"white"}]},defaultRadialGradient:{type:"radial",cx:0,cy:0,r:100,colors:[{offset:0,color:"black"},{offset:1,color:"white"}]},defaultPattern:{type:"pattern",x:0,y:0,width:0,height:0,src:""},defaultFont:{type:"font",style:"normal",variant:"normal",weight:"normal",size:"10pt",family:"serif"},getDefault:(function(){var _25={};return function(_26){var t=_25[_26];if(t){return new t();}t=_25[_26]=new Function();t.prototype=g["default"+_26];return new t();};})(),normalizeColor:function(_27){return (_27 instanceof _3)?_27:new _3(_27);},normalizeParameters:function(_28,_29){var x;if(_29){var _2a={};for(x in _28){if(x in _29&&!(x in _2a)){_28[x]=_29[x];}}}return _28;},makeParameters:function(_2b,_2c){var i=null;if(!_2c){return _2.delegate(_2b);}var _2d={};for(i in _2b){if(!(i in _2d)){_2d[i]=_2.clone((i in _2c)?_2c[i]:_2b[i]);}}return _2d;},formatNumber:function(x,_2e){var val=x.toString();if(val.indexOf("e")>=0){val=x.toFixed(4);}else{var _2f=val.indexOf(".");if(_2f>=0&&val.length-_2f>5){val=x.toFixed(4);}}if(x<0){return val;}return _2e?" "+val:val;},makeFontString:function(_30){return _30.style+" "+_30.variant+" "+_30.weight+" "+_30.size+" "+_30.family;},splitFontString:function(str){var _31=g.getDefault("Font");var t=str.split(/\s+/);do{if(t.length<5){break;}_31.style=t[0];_31.variant=t[1];_31.weight=t[2];var i=t[3].indexOf("/");_31.size=i<0?t[3]:t[3].substring(0,i);var j=4;if(i<0){if(t[4]=="/"){j=6;}else{if(t[4].charAt(0)=="/"){j=5;}}}if(j<t.length){_31.family=t.slice(j).join(" ");}}while(false);return _31;},cm_in_pt:72/2.54,mm_in_pt:7.2/2.54,px_in_pt:function(){return g._base._getCachedFontMeasurements()["12pt"]/12;},pt2px:function(len){return len*g.px_in_pt();},px2pt:function(len){return len/g.px_in_pt();},normalizedLength:function(len){if(len.length===0){return 0;}if(len.length>2){var _32=g.px_in_pt();var val=parseFloat(len);switch(len.slice(-2)){case "px":return val;case "pt":return val*_32;case "in":return val*72*_32;case "pc":return val*12*_32;case "mm":return val*g.mm_in_pt*_32;case "cm":return val*g.cm_in_pt*_32;}}return parseFloat(len);},pathVmlRegExp:/([A-Za-z]+)|(\d+(\.\d+)?)|(\.\d+)|(-\d+(\.\d+)?)|(-\.\d+)/g,pathSvgRegExp:/([A-DF-Za-df-z])|([-+]?\d*[.]?\d+(?:[eE][-+]?\d+)?)/g,equalSources:function(a,b){return a&&b&&a===b;},switchTo:function(_33){var ns=typeof _33=="string"?g[_33]:_33;if(ns){_6.forEach(["Group","Rect","Ellipse","Circle","Line","Polyline","Image","Text","Path","TextPath","Surface","createSurface","fixTarget"],function(_34){g[_34]=ns[_34];});if(typeof _33=="string"){g.renderer=_33;}else{_6.some(["svg","vml","canvas","canvasWithEvents","silverlight"],function(r){return (g.renderer=g[r]&&g[r].Surface===g.Surface?r:null);});}}}});return g;});},"dojox/gfx/renderer":function(){define(["./_base","dojo/_base/lang","dojo/_base/sniff","dojo/_base/window","dojo/_base/config"],function(g,_35,has,win,_36){var _37=null;has.add("vml",function(_38,_39,_3a){_3a.innerHTML="<v:shape adj=\"1\"/>";var _3b=("adj" in _3a.firstChild);_3a.innerHTML="";return _3b;});return {load:function(id,_3c,_3d){if(_37&&id!="force"){_3d(_37);return;}var _3e=_36.forceGfxRenderer,_3f=!_3e&&(_35.isString(_36.gfxRenderer)?_36.gfxRenderer:"svg,vml,canvas,silverlight").split(","),_40,_41;while(!_3e&&_3f.length){switch(_3f.shift()){case "svg":if("SVGAngle" in win.global){_3e="svg";}break;case "vml":if(has("vml")){_3e="vml";}break;case "silverlight":try{if(has("ie")){_40=new ActiveXObject("AgControl.AgControl");if(_40&&_40.IsVersionSupported("1.0")){_41=true;}}else{if(navigator.plugins["Silverlight Plug-In"]){_41=true;}}}catch(e){_41=false;}finally{_40=null;}if(_41){_3e="silverlight";}break;case "canvas":if(win.global.CanvasRenderingContext2D){_3e="canvas";}break;}}if(_3e==="canvas"&&_36.canvasEvents!==false){_3e="canvasWithEvents";}if(_36.isDebug){}function _42(){_3c(["dojox/gfx/"+_3e],function(_43){g.renderer=_3e;_37=_43;_3d(_43);});};if(_3e=="svg"&&typeof window.svgweb!="undefined"){window.svgweb.addOnLoad(_42);}else{_42();}}};});}}});define("dojox/gfx",["dojo/_base/lang","./gfx/_base","./gfx/renderer!"],function(_44,_45,_46){_45.switchTo(_46);return _45;});