@datagrok/helm 2.3.2 → 2.3.3

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 (323) hide show
  1. package/CHANGELOG.md +12 -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 +228 -69
  13. package/src/package.ts +7 -69
  14. package/src/tests/findMonomers-tests.ts +2 -1
  15. package/src/tests/get-monomer-tests.ts +1 -49
  16. package/src/utils/get-monomer.ts +49 -1
  17. package/src/utils/helm-grid-cell-renderer.ts +8 -9
  18. package/src/utils/index.ts +2 -3
  19. package/src/widgets/helm-input.ts +4 -4
  20. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
  21. package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
  22. package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
  23. package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
  24. package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
  25. package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
  26. package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
  27. package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
  28. package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
  29. package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
  30. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
  31. package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
  32. package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
  33. package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
  34. package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
  35. package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
  36. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
  37. package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
  38. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
  39. package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
  40. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
  41. package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
  42. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
  43. package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
  44. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
  45. package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
  46. package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
  47. package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
  48. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
  49. package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
  50. package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
  51. package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
  52. package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
  53. package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
  54. package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
  55. package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
  56. package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
  57. package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
  58. package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
  59. package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
  60. package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
  61. package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
  62. package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
  63. package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
  64. package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
  65. package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
  66. package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
  67. package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
  68. package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
  69. package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
  70. package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
  71. package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
  72. package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
  73. package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
  74. package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
  75. package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
  76. package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
  77. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
  78. package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
  79. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
  80. package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
  81. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
  82. package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
  83. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
  84. package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
  85. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
  86. package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
  87. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
  88. package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
  89. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
  90. package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
  91. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
  92. package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
  93. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
  94. package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
  95. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
  96. package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
  97. package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
  98. package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
  99. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
  100. package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
  101. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
  102. package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
  103. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
  104. package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
  105. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
  106. package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
  107. package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
  108. package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
  109. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
  110. package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
  111. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
  112. package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
  113. package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
  114. package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
  115. package/vendor/dojo-1.10.10/dijit/main.js +4 -0
  116. package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
  117. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
  118. package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
  119. package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
  120. package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
  121. package/vendor/dojo-1.10.10/dijit/place.js +142 -0
  122. package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
  123. package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
  124. package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
  125. package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
  126. package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
  127. package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
  128. package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
  129. package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
  130. package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
  131. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
  132. package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
  133. package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
  134. package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
  135. package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
  136. package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
  137. package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
  138. package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
  139. package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
  140. package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
  141. package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
  142. package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
  143. package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
  144. package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
  145. package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
  146. package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
  147. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
  148. package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
  149. package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
  150. package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
  151. package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
  152. package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
  153. package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
  154. package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
  155. package/vendor/dojo-1.10.10/dojo/html.js +161 -0
  156. package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
  157. package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
  158. package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
  159. package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
  160. package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
  161. package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
  162. package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
  163. package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
  164. package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
  165. package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
  166. package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
  167. package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
  168. package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
  169. package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
  170. package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
  171. package/vendor/dojo-1.10.10/dojo/require.js +11 -0
  172. package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
  173. package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
  174. package/vendor/dojo-1.10.10/dojo/string.js +67 -0
  175. package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
  176. package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
  177. package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
  178. package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
  179. package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
  180. package/vendor/dojo-1.10.10/dojo/window.js +141 -0
  181. package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
  182. package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
  183. package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
  184. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
  185. package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
  186. package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
  187. package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
  188. package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
  189. package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
  190. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
  191. package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
  192. package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
  193. package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
  194. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
  195. package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
  196. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
  197. package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
  198. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
  199. package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
  200. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
  201. package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
  202. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
  203. package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
  204. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
  205. package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
  206. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
  207. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
  208. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
  209. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
  210. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
  211. package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
  212. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
  213. package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
  214. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
  215. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
  216. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
  217. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
  218. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
  219. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
  220. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
  221. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
  222. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
  223. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
  224. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
  225. package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
  226. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
  227. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
  228. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
  229. package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
  230. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
  231. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
  232. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
  233. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
  234. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
  235. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
  236. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
  237. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
  238. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
  239. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
  240. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
  241. package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
  242. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
  243. package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
  244. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
  245. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
  246. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
  247. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
  248. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
  249. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
  250. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
  251. package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
  252. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
  253. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
  254. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
  255. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
  256. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
  257. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
  258. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
  259. package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
  260. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
  261. package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
  262. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
  263. package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
  264. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
  265. package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
  266. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
  267. package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
  268. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
  269. package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
  270. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
  271. package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
  272. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
  273. package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
  274. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
  275. package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
  276. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
  277. package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
  278. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
  279. package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
  280. package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
  281. package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
  282. package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
  283. package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
  284. package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
  285. package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
  286. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
  287. package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
  288. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
  289. package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
  290. package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
  291. package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
  292. package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
  293. package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
  294. package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
  295. package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
  296. package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
  297. package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
  298. package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
  299. package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
  300. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
  301. package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
  302. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
  303. package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
  304. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
  305. package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
  306. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
  307. package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
  308. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
  309. package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
  310. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
  311. package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
  312. package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
  313. package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
  314. package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
  315. package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
  316. package/vendor/dojo-1.10.10/dojox/main.js +4 -0
  317. package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
  318. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
  319. package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
  320. package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
  321. package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
  322. package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
  323. package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
@@ -0,0 +1,171 @@
1
+ //>>built
2
+ define("dijit/layout/StackContainer",["dojo/_base/array","dojo/cookie","dojo/_base/declare","dojo/dom-class","dojo/dom-construct","dojo/has","dojo/_base/lang","dojo/on","dojo/ready","dojo/topic","dojo/when","../registry","../_WidgetBase","./_LayoutWidget"],function(_1,_2,_3,_4,_5,_6,_7,on,_8,_9,_a,_b,_c,_d){
3
+ if(_6("dijit-legacy-requires")){
4
+ _8(0,function(){
5
+ var _e=["dijit/layout/StackController"];
6
+ require(_e);
7
+ });
8
+ }
9
+ var _f=_3("dijit.layout.StackContainer",_d,{doLayout:true,persist:false,baseClass:"dijitStackContainer",buildRendering:function(){
10
+ this.inherited(arguments);
11
+ _4.add(this.domNode,"dijitLayoutContainer");
12
+ },postCreate:function(){
13
+ this.inherited(arguments);
14
+ this.own(on(this.domNode,"keydown",_7.hitch(this,"_onKeyDown")));
15
+ },startup:function(){
16
+ if(this._started){
17
+ return;
18
+ }
19
+ var _10=this.getChildren();
20
+ _1.forEach(_10,this._setupChild,this);
21
+ if(this.persist){
22
+ this.selectedChildWidget=_b.byId(_2(this.id+"_selectedChild"));
23
+ }else{
24
+ _1.some(_10,function(_11){
25
+ if(_11.selected){
26
+ this.selectedChildWidget=_11;
27
+ }
28
+ return _11.selected;
29
+ },this);
30
+ }
31
+ var _12=this.selectedChildWidget;
32
+ if(!_12&&_10[0]){
33
+ _12=this.selectedChildWidget=_10[0];
34
+ _12.selected=true;
35
+ }
36
+ _9.publish(this.id+"-startup",{children:_10,selected:_12,textDir:this.textDir});
37
+ this.inherited(arguments);
38
+ },resize:function(){
39
+ if(!this._hasBeenShown){
40
+ this._hasBeenShown=true;
41
+ var _13=this.selectedChildWidget;
42
+ if(_13){
43
+ this._showChild(_13);
44
+ }
45
+ }
46
+ this.inherited(arguments);
47
+ },_setupChild:function(_14){
48
+ var _15=_14.domNode,_16=_5.place("<div role='tabpanel' class='"+this.baseClass+"ChildWrapper dijitHidden'>",_14.domNode,"replace"),_17=_14["aria-label"]||_14.title||_14.label;
49
+ if(_17){
50
+ _16.setAttribute("aria-label",_17);
51
+ }
52
+ _5.place(_15,_16);
53
+ _14._wrapper=_16;
54
+ this.inherited(arguments);
55
+ if(_15.style.display=="none"){
56
+ _15.style.display="block";
57
+ }
58
+ _14.domNode.removeAttribute("title");
59
+ },addChild:function(_18,_19){
60
+ this.inherited(arguments);
61
+ if(this._started){
62
+ _9.publish(this.id+"-addChild",_18,_19);
63
+ this.layout();
64
+ if(!this.selectedChildWidget){
65
+ this.selectChild(_18);
66
+ }
67
+ }
68
+ },removeChild:function(_1a){
69
+ var idx=_1.indexOf(this.getChildren(),_1a);
70
+ this.inherited(arguments);
71
+ _5.destroy(_1a._wrapper);
72
+ delete _1a._wrapper;
73
+ if(this._started){
74
+ _9.publish(this.id+"-removeChild",_1a);
75
+ }
76
+ if(this._descendantsBeingDestroyed){
77
+ return;
78
+ }
79
+ if(this.selectedChildWidget===_1a){
80
+ this.selectedChildWidget=undefined;
81
+ if(this._started){
82
+ var _1b=this.getChildren();
83
+ if(_1b.length){
84
+ this.selectChild(_1b[Math.max(idx-1,0)]);
85
+ }
86
+ }
87
+ }
88
+ if(this._started){
89
+ this.layout();
90
+ }
91
+ },selectChild:function(_1c,_1d){
92
+ var d;
93
+ _1c=_b.byId(_1c);
94
+ if(this.selectedChildWidget!=_1c){
95
+ d=this._transition(_1c,this.selectedChildWidget,_1d);
96
+ this._set("selectedChildWidget",_1c);
97
+ _9.publish(this.id+"-selectChild",_1c,this._focused);
98
+ if(this.persist){
99
+ _2(this.id+"_selectedChild",this.selectedChildWidget.id);
100
+ }
101
+ }
102
+ return _a(d||true);
103
+ },_transition:function(_1e,_1f){
104
+ if(_1f){
105
+ this._hideChild(_1f);
106
+ }
107
+ var d=this._showChild(_1e);
108
+ if(_1e.resize){
109
+ if(this.doLayout){
110
+ _1e.resize(this._containerContentBox||this._contentBox);
111
+ }else{
112
+ _1e.resize();
113
+ }
114
+ }
115
+ return d;
116
+ },_adjacent:function(_20){
117
+ var _21=this.getChildren();
118
+ var _22=_1.indexOf(_21,this.selectedChildWidget);
119
+ _22+=_20?1:_21.length-1;
120
+ return _21[_22%_21.length];
121
+ },forward:function(){
122
+ return this.selectChild(this._adjacent(true),true);
123
+ },back:function(){
124
+ return this.selectChild(this._adjacent(false),true);
125
+ },_onKeyDown:function(e){
126
+ _9.publish(this.id+"-containerKeyDown",{e:e,page:this});
127
+ },layout:function(){
128
+ var _23=this.selectedChildWidget;
129
+ if(_23&&_23.resize){
130
+ if(this.doLayout){
131
+ _23.resize(this._containerContentBox||this._contentBox);
132
+ }else{
133
+ _23.resize();
134
+ }
135
+ }
136
+ },_showChild:function(_24){
137
+ var _25=this.getChildren();
138
+ _24.isFirstChild=(_24==_25[0]);
139
+ _24.isLastChild=(_24==_25[_25.length-1]);
140
+ _24._set("selected",true);
141
+ if(_24._wrapper){
142
+ _4.replace(_24._wrapper,"dijitVisible","dijitHidden");
143
+ }
144
+ return (_24._onShow&&_24._onShow())||true;
145
+ },_hideChild:function(_26){
146
+ _26._set("selected",false);
147
+ if(_26._wrapper){
148
+ _4.replace(_26._wrapper,"dijitHidden","dijitVisible");
149
+ }
150
+ _26.onHide&&_26.onHide();
151
+ },closeChild:function(_27){
152
+ var _28=_27.onClose&&_27.onClose(this,_27);
153
+ if(_28){
154
+ this.removeChild(_27);
155
+ _27.destroyRecursive();
156
+ }
157
+ },destroyDescendants:function(_29){
158
+ this._descendantsBeingDestroyed=true;
159
+ this.selectedChildWidget=undefined;
160
+ _1.forEach(this.getChildren(),function(_2a){
161
+ if(!_29){
162
+ this.removeChild(_2a);
163
+ }
164
+ _2a.destroyRecursive(_29);
165
+ },this);
166
+ this._descendantsBeingDestroyed=false;
167
+ }});
168
+ _f.ChildWidgetProperties={selected:false,disabled:false,closable:false,iconClass:"dijitNoIcon",showTitle:true};
169
+ _7.extend(_c,_f.ChildWidgetProperties);
170
+ return _f;
171
+ });
@@ -0,0 +1,411 @@
1
+ define("dijit/layout/StackContainer", [
2
+ "dojo/_base/array", // array.forEach array.indexOf array.some
3
+ "dojo/cookie", // cookie
4
+ "dojo/_base/declare", // declare
5
+ "dojo/dom-class", // domClass.add domClass.replace
6
+ "dojo/dom-construct",
7
+ "dojo/has", // has("dijit-legacy-requires")
8
+ "dojo/_base/lang", // lang.extend
9
+ "dojo/on",
10
+ "dojo/ready",
11
+ "dojo/topic", // publish
12
+ "dojo/when",
13
+ "../registry", // registry.byId
14
+ "../_WidgetBase",
15
+ "./_LayoutWidget"
16
+ ], function(array, cookie, declare, domClass, domConstruct, has, lang, on, ready, topic, when, registry, _WidgetBase, _LayoutWidget){
17
+
18
+ // module:
19
+ // dijit/layout/StackContainer
20
+
21
+ // Back compat w/1.6, remove for 2.0
22
+ if(has("dijit-legacy-requires")){
23
+ ready(0, function(){
24
+ var requires = ["dijit/layout/StackController"];
25
+ require(requires); // use indirection so modules not rolled into a build
26
+ });
27
+ }
28
+
29
+ var StackContainer = declare("dijit.layout.StackContainer", _LayoutWidget, {
30
+ // summary:
31
+ // A container that has multiple children, but shows only
32
+ // one child at a time
33
+ //
34
+ // description:
35
+ // A container for widgets (ContentPanes, for example) That displays
36
+ // only one Widget at a time.
37
+ //
38
+ // Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild
39
+ //
40
+ // Can be base class for container, Wizard, Show, etc.
41
+ //
42
+ // See `StackContainer.ChildWidgetProperties` for details on the properties that can be set on
43
+ // children of a `StackContainer`.
44
+
45
+ // doLayout: Boolean
46
+ // If true, change the size of my currently displayed child to match my size
47
+ doLayout: true,
48
+
49
+ // persist: Boolean
50
+ // Remembers the selected child across sessions
51
+ persist: false,
52
+
53
+ baseClass: "dijitStackContainer",
54
+
55
+ /*=====
56
+ // selectedChildWidget: [readonly] dijit._Widget
57
+ // References the currently selected child widget, if any.
58
+ // Adjust selected child with selectChild() method.
59
+ selectedChildWidget: null,
60
+ =====*/
61
+
62
+ buildRendering: function(){
63
+ this.inherited(arguments);
64
+ domClass.add(this.domNode, "dijitLayoutContainer");
65
+ },
66
+
67
+ postCreate: function(){
68
+ this.inherited(arguments);
69
+ this.own(
70
+ on(this.domNode, "keydown", lang.hitch(this, "_onKeyDown"))
71
+ );
72
+ },
73
+
74
+ startup: function(){
75
+ if(this._started){
76
+ return;
77
+ }
78
+
79
+ var children = this.getChildren();
80
+
81
+ // Setup each page panel to be initially hidden
82
+ array.forEach(children, this._setupChild, this);
83
+
84
+ // Figure out which child to initially display, defaulting to first one
85
+ if(this.persist){
86
+ this.selectedChildWidget = registry.byId(cookie(this.id + "_selectedChild"));
87
+ }else{
88
+ array.some(children, function(child){
89
+ if(child.selected){
90
+ this.selectedChildWidget = child;
91
+ }
92
+ return child.selected;
93
+ }, this);
94
+ }
95
+ var selected = this.selectedChildWidget;
96
+ if(!selected && children[0]){
97
+ selected = this.selectedChildWidget = children[0];
98
+ selected.selected = true;
99
+ }
100
+
101
+ // Publish information about myself so any StackControllers can initialize.
102
+ // This needs to happen before this.inherited(arguments) so that for
103
+ // TabContainer, this._contentBox doesn't include the space for the tab labels.
104
+ topic.publish(this.id + "-startup", {children: children, selected: selected, textDir: this.textDir});
105
+
106
+ // Startup each child widget, and do initial layout like setting this._contentBox,
107
+ // then calls this.resize() which does the initial sizing on the selected child.
108
+ this.inherited(arguments);
109
+ },
110
+
111
+ resize: function(){
112
+ // Overrides _LayoutWidget.resize()
113
+ // Resize is called when we are first made visible (it's called from startup()
114
+ // if we are initially visible). If this is the first time we've been made
115
+ // visible then show our first child.
116
+ if(!this._hasBeenShown){
117
+ this._hasBeenShown = true;
118
+ var selected = this.selectedChildWidget;
119
+ if(selected){
120
+ this._showChild(selected);
121
+ }
122
+ }
123
+ this.inherited(arguments);
124
+ },
125
+
126
+ _setupChild: function(/*dijit/_WidgetBase*/ child){
127
+ // Overrides _LayoutWidget._setupChild()
128
+
129
+ // For aria support, wrap child widget in a <div role="tabpanel">
130
+ var childNode = child.domNode,
131
+ wrapper = domConstruct.place(
132
+ "<div role='tabpanel' class='" + this.baseClass + "ChildWrapper dijitHidden'>",
133
+ child.domNode,
134
+ "replace"),
135
+ label = child["aria-label"] || child.title || child.label;
136
+ if(label){
137
+ // setAttribute() escapes special chars, and if() statement avoids setting aria-label="undefined"
138
+ wrapper.setAttribute("aria-label", label);
139
+ }
140
+ domConstruct.place(childNode, wrapper);
141
+ child._wrapper = wrapper; // to set the aria-labelledby in StackController
142
+
143
+ this.inherited(arguments);
144
+
145
+ // child may have style="display: none" (at least our test cases do), so remove that
146
+ if(childNode.style.display == "none"){
147
+ childNode.style.display = "block";
148
+ }
149
+
150
+ // remove the title attribute so it doesn't show up when i hover over a node
151
+ child.domNode.removeAttribute("title");
152
+ },
153
+
154
+ addChild: function(/*dijit/_WidgetBase*/ child, /*Integer?*/ insertIndex){
155
+ // Overrides _Container.addChild() to do layout and publish events
156
+
157
+ this.inherited(arguments);
158
+
159
+ if(this._started){
160
+ topic.publish(this.id + "-addChild", child, insertIndex); // publish
161
+
162
+ // in case the tab titles have overflowed from one line to two lines
163
+ // (or, if this if first child, from zero lines to one line)
164
+ // TODO: w/ScrollingTabController this is no longer necessary, although
165
+ // ScrollTabController.resize() does need to get called to show/hide
166
+ // the navigation buttons as appropriate, but that's handled in ScrollingTabController.onAddChild().
167
+ // If this is updated to not layout [except for initial child added / last child removed], update
168
+ // "childless startup" test in StackContainer.html to check for no resize event after second addChild()
169
+ this.layout();
170
+
171
+ // if this is the first child, then select it
172
+ if(!this.selectedChildWidget){
173
+ this.selectChild(child);
174
+ }
175
+ }
176
+ },
177
+
178
+ removeChild: function(/*dijit/_WidgetBase*/ page){
179
+ // Overrides _Container.removeChild() to do layout and publish events
180
+
181
+ var idx = array.indexOf(this.getChildren(), page);
182
+
183
+ this.inherited(arguments);
184
+
185
+ // Remove the child widget wrapper we use to set aria roles. This won't affect the page itself since it's
186
+ // already been detached from page._wrapper via the this.inherited(arguments) call above.
187
+ domConstruct.destroy(page._wrapper);
188
+ delete page._wrapper;
189
+
190
+ if(this._started){
191
+ // This will notify any tablists to remove a button; do this first because it may affect sizing.
192
+ topic.publish(this.id + "-removeChild", page);
193
+ }
194
+
195
+ // If all our children are being destroyed than don't run the code below (to select another page),
196
+ // because we are deleting every page one by one
197
+ if(this._descendantsBeingDestroyed){
198
+ return;
199
+ }
200
+
201
+ // Select new page to display, also updating TabController to show the respective tab.
202
+ // Do this before layout call because it can affect the height of the TabController.
203
+ if(this.selectedChildWidget === page){
204
+ this.selectedChildWidget = undefined;
205
+ if(this._started){
206
+ var children = this.getChildren();
207
+ if(children.length){
208
+ this.selectChild(children[Math.max(idx - 1, 0)]);
209
+ }
210
+ }
211
+ }
212
+
213
+ if(this._started){
214
+ // In case the tab titles now take up one line instead of two lines
215
+ // (note though that ScrollingTabController never overflows to multiple lines),
216
+ // or the height has changed slightly because of addition/removal of tab which close icon
217
+ this.layout();
218
+ }
219
+ },
220
+
221
+ selectChild: function(/*dijit/_WidgetBase|String*/ page, /*Boolean*/ animate){
222
+ // summary:
223
+ // Show the given widget (which must be one of my children)
224
+ // page:
225
+ // Reference to child widget or id of child widget
226
+
227
+ var d;
228
+
229
+ page = registry.byId(page);
230
+
231
+ if(this.selectedChildWidget != page){
232
+ // Deselect old page and select new one
233
+ d = this._transition(page, this.selectedChildWidget, animate);
234
+ this._set("selectedChildWidget", page);
235
+ topic.publish(this.id + "-selectChild", page, this._focused); // publish
236
+
237
+ if(this.persist){
238
+ cookie(this.id + "_selectedChild", this.selectedChildWidget.id);
239
+ }
240
+ }
241
+
242
+ // d may be null, or a scalar like true. Return a promise in all cases
243
+ return when(d || true); // Promise
244
+ },
245
+
246
+ _transition: function(newWidget, oldWidget /*===== , animate =====*/){
247
+ // summary:
248
+ // Hide the old widget and display the new widget.
249
+ // Subclasses should override this.
250
+ // newWidget: dijit/_WidgetBase
251
+ // The newly selected widget.
252
+ // oldWidget: dijit/_WidgetBase
253
+ // The previously selected widget.
254
+ // animate: Boolean
255
+ // Used by AccordionContainer to turn on/off slide effect.
256
+ // tags:
257
+ // protected extension
258
+ if(oldWidget){
259
+ this._hideChild(oldWidget);
260
+ }
261
+ var d = this._showChild(newWidget);
262
+
263
+ // Size the new widget, in case this is the first time it's being shown,
264
+ // or I have been resized since the last time it was shown.
265
+ // Note that page must be visible for resizing to work.
266
+ if(newWidget.resize){
267
+ if(this.doLayout){
268
+ newWidget.resize(this._containerContentBox || this._contentBox);
269
+ }else{
270
+ // the child should pick it's own size but we still need to call resize()
271
+ // (with no arguments) to let the widget lay itself out
272
+ newWidget.resize();
273
+ }
274
+ }
275
+
276
+ return d; // If child has an href, promise that fires when the child's href finishes loading
277
+ },
278
+
279
+ _adjacent: function(/*Boolean*/ forward){
280
+ // summary:
281
+ // Gets the next/previous child widget in this container from the current selection.
282
+
283
+ // TODO: remove for 2.0 if this isn't being used. Otherwise, fix to skip disabled tabs.
284
+
285
+ var children = this.getChildren();
286
+ var index = array.indexOf(children, this.selectedChildWidget);
287
+ index += forward ? 1 : children.length - 1;
288
+ return children[ index % children.length ]; // dijit/_WidgetBase
289
+ },
290
+
291
+ forward: function(){
292
+ // summary:
293
+ // Advance to next page.
294
+ return this.selectChild(this._adjacent(true), true);
295
+ },
296
+
297
+ back: function(){
298
+ // summary:
299
+ // Go back to previous page.
300
+ return this.selectChild(this._adjacent(false), true);
301
+ },
302
+
303
+ _onKeyDown: function(e){
304
+ topic.publish(this.id + "-containerKeyDown", { e: e, page: this}); // publish
305
+ },
306
+
307
+ layout: function(){
308
+ // Implement _LayoutWidget.layout() virtual method.
309
+ var child = this.selectedChildWidget;
310
+ if(child && child.resize){
311
+ if(this.doLayout){
312
+ child.resize(this._containerContentBox || this._contentBox);
313
+ }else{
314
+ child.resize();
315
+ }
316
+ }
317
+ },
318
+
319
+ _showChild: function(/*dijit/_WidgetBase*/ page){
320
+ // summary:
321
+ // Show the specified child by changing it's CSS, and call _onShow()/onShow() so
322
+ // it can do any updates it needs regarding loading href's etc.
323
+ // returns:
324
+ // Promise that fires when page has finished showing, or true if there's no href
325
+ var children = this.getChildren();
326
+ page.isFirstChild = (page == children[0]);
327
+ page.isLastChild = (page == children[children.length - 1]);
328
+ page._set("selected", true);
329
+
330
+ if(page._wrapper){ // false if not started yet
331
+ domClass.replace(page._wrapper, "dijitVisible", "dijitHidden");
332
+ }
333
+
334
+ return (page._onShow && page._onShow()) || true;
335
+ },
336
+
337
+ _hideChild: function(/*dijit/_WidgetBase*/ page){
338
+ // summary:
339
+ // Hide the specified child by changing it's CSS, and call _onHide() so
340
+ // it's notified.
341
+ page._set("selected", false);
342
+
343
+ if(page._wrapper){ // false if not started yet
344
+ domClass.replace(page._wrapper, "dijitHidden", "dijitVisible");
345
+ }
346
+
347
+ page.onHide && page.onHide();
348
+ },
349
+
350
+ closeChild: function(/*dijit/_WidgetBase*/ page){
351
+ // summary:
352
+ // Callback when user clicks the [X] to remove a page.
353
+ // If onClose() returns true then remove and destroy the child.
354
+ // tags:
355
+ // private
356
+ var remove = page.onClose && page.onClose(this, page);
357
+ if(remove){
358
+ this.removeChild(page);
359
+ // makes sure we can clean up executeScripts in ContentPane onUnLoad
360
+ page.destroyRecursive();
361
+ }
362
+ },
363
+
364
+ destroyDescendants: function(/*Boolean*/ preserveDom){
365
+ this._descendantsBeingDestroyed = true;
366
+ this.selectedChildWidget = undefined;
367
+ array.forEach(this.getChildren(), function(child){
368
+ if(!preserveDom){
369
+ this.removeChild(child);
370
+ }
371
+ child.destroyRecursive(preserveDom);
372
+ }, this);
373
+ this._descendantsBeingDestroyed = false;
374
+ }
375
+ });
376
+
377
+ StackContainer.ChildWidgetProperties = {
378
+ // summary:
379
+ // These properties can be specified for the children of a StackContainer.
380
+
381
+ // selected: Boolean
382
+ // Specifies that this widget should be the initially displayed pane.
383
+ // Note: to change the selected child use `dijit/layout/StackContainer.selectChild`
384
+ selected: false,
385
+
386
+ // disabled: Boolean
387
+ // Specifies that the button to select this pane should be disabled.
388
+ // Doesn't affect programmatic selection of the pane, nor does it deselect the pane if it is currently selected.
389
+ disabled: false,
390
+
391
+ // closable: Boolean
392
+ // True if user can close (destroy) this child, such as (for example) clicking the X on the tab.
393
+ closable: false,
394
+
395
+ // iconClass: String
396
+ // CSS Class specifying icon to use in label associated with this pane.
397
+ iconClass: "dijitNoIcon",
398
+
399
+ // showTitle: Boolean
400
+ // When true, display title of this widget as tab label etc., rather than just using
401
+ // icon specified in iconClass
402
+ showTitle: true
403
+ };
404
+
405
+ // Since any widget can be specified as a StackContainer child, mix them
406
+ // into the base widget class. (This is a hack, but it's effective.)
407
+ // This is for the benefit of the parser. Remove for 2.0. Also, hide from doc viewer.
408
+ lang.extend(_WidgetBase, /*===== {} || =====*/ StackContainer.ChildWidgetProperties);
409
+
410
+ return StackContainer;
411
+ });