@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.
- package/CHANGELOG.md +20 -0
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +4 -4
- package/src/cell-renderer.ts +5 -4
- package/src/helm-helper.ts +6 -6
- package/src/helm-monomer-placer.ts +1 -1
- package/src/helm-web-editor.ts +5 -5
- package/src/package-test.ts +0 -1
- package/src/package-utils.ts +211 -69
- package/src/package.ts +10 -71
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- package/src/tests/helm-input-tests.ts +31 -20
- package/src/utils/get-monomer.ts +49 -1
- package/src/utils/helm-grid-cell-renderer.ts +8 -9
- package/src/utils/index.ts +2 -3
- package/src/widgets/helm-input.ts +4 -4
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js +63 -0
- package/vendor/dojo-1.10.10/dijit/BackgroundIframe.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js +35 -0
- package/vendor/dojo-1.10.10/dijit/Destroyable.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js +240 -0
- package/vendor/dojo-1.10.10/dijit/Tooltip.js.uncompressed.js +612 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js +44 -0
- package/vendor/dojo-1.10.10/dijit/Viewport.js.uncompressed.js +87 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js +76 -0
- package/vendor/dojo-1.10.10/dijit/WidgetSet.js.uncompressed.js +247 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js +94 -0
- package/vendor/dojo-1.10.10/dijit/_AttachMixin.js.uncompressed.js +238 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js +17 -0
- package/vendor/dojo-1.10.10/dijit/_Contained.js.uncompressed.js +56 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js +47 -0
- package/vendor/dojo-1.10.10/dijit/_Container.js.uncompressed.js +108 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js +198 -0
- package/vendor/dojo-1.10.10/dijit/_CssStateMixin.js.uncompressed.js +372 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js +11 -0
- package/vendor/dojo-1.10.10/dijit/_FocusMixin.js.uncompressed.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js +188 -0
- package/vendor/dojo-1.10.10/dijit/_HasDropDown.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js +8 -0
- package/vendor/dojo-1.10.10/dijit/_OnDijitClickMixin.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js +90 -0
- package/vendor/dojo-1.10.10/dijit/_TemplatedMixin.js.uncompressed.js +205 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js +66 -0
- package/vendor/dojo-1.10.10/dijit/_Widget.js.uncompressed.js +352 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js +353 -0
- package/vendor/dojo-1.10.10/dijit/_WidgetBase.js.uncompressed.js +1200 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js +68 -0
- package/vendor/dojo-1.10.10/dijit/_base/focus.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/manager.js.uncompressed.js +35 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js +52 -0
- package/vendor/dojo-1.10.10/dijit/_base/place.js.uncompressed.js +131 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js +23 -0
- package/vendor/dojo-1.10.10/dijit/_base/popup.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/scroll.js.uncompressed.js +22 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/sniff.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js +3 -0
- package/vendor/dojo-1.10.10/dijit/_base/typematic.js.uncompressed.js +10 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js +32 -0
- package/vendor/dojo-1.10.10/dijit/_base/wai.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js +6 -0
- package/vendor/dojo-1.10.10/dijit/_base/window.js.uncompressed.js +18 -0
- package/vendor/dojo-1.10.10/dijit/_base.js +4 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js +109 -0
- package/vendor/dojo-1.10.10/dijit/a11y.js.uncompressed.js +191 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js +66 -0
- package/vendor/dojo-1.10.10/dijit/a11yclick.js.uncompressed.js +139 -0
- package/vendor/dojo-1.10.10/dijit/focus.js +188 -0
- package/vendor/dojo-1.10.10/dijit/focus.js.uncompressed.js +371 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js +49 -0
- package/vendor/dojo-1.10.10/dijit/form/Button.js.uncompressed.js +130 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js +4 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboBox.js.uncompressed.js +27 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js +21 -0
- package/vendor/dojo-1.10.10/dijit/form/ComboButton.js.uncompressed.js +86 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js +38 -0
- package/vendor/dojo-1.10.10/dijit/form/DropDownButton.js.uncompressed.js +102 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js +7 -0
- package/vendor/dojo-1.10.10/dijit/form/ToggleButton.js.uncompressed.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js +50 -0
- package/vendor/dojo-1.10.10/dijit/form/_ButtonMixin.js.uncompressed.js +116 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js +26 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueMixin.js.uncompressed.js +81 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js +24 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormValueWidget.js.uncompressed.js +51 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js +22 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidget.js.uncompressed.js +67 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js +111 -0
- package/vendor/dojo-1.10.10/dijit/form/_FormWidgetMixin.js.uncompressed.js +254 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js +32 -0
- package/vendor/dojo-1.10.10/dijit/form/_ToggleButtonMixin.js.uncompressed.js +69 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js +9 -0
- package/vendor/dojo-1.10.10/dijit/hccss.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js +215 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionContainer.js.uncompressed.js +550 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js +7 -0
- package/vendor/dojo-1.10.10/dijit/layout/AccordionPane.js.uncompressed.js +25 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js +235 -0
- package/vendor/dojo-1.10.10/dijit/layout/ContentPane.js.uncompressed.js +653 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js +171 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackContainer.js.uncompressed.js +411 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js +194 -0
- package/vendor/dojo-1.10.10/dijit/layout/StackController.js.uncompressed.js +410 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js +99 -0
- package/vendor/dojo-1.10.10/dijit/layout/_ContentPaneResizeMixin.js.uncompressed.js +236 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js +47 -0
- package/vendor/dojo-1.10.10/dijit/layout/_LayoutWidget.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js +77 -0
- package/vendor/dojo-1.10.10/dijit/layout/utils.js.uncompressed.js +151 -0
- package/vendor/dojo-1.10.10/dijit/main.js +4 -0
- package/vendor/dojo-1.10.10/dijit/main.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/dijit-all_en-us.js.uncompressed.js +21 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js +2 -0
- package/vendor/dojo-1.10.10/dijit/nls/loading.js.uncompressed.js +47 -0
- package/vendor/dojo-1.10.10/dijit/place.js +142 -0
- package/vendor/dojo-1.10.10/dijit/place.js.uncompressed.js +407 -0
- package/vendor/dojo-1.10.10/dijit/popup.js +162 -0
- package/vendor/dojo-1.10.10/dijit/popup.js.uncompressed.js +441 -0
- package/vendor/dojo-1.10.10/dijit/registry.js +79 -0
- package/vendor/dojo-1.10.10/dijit/registry.js.uncompressed.js +159 -0
- package/vendor/dojo-1.10.10/dijit/selection.js +364 -0
- package/vendor/dojo-1.10.10/dijit/selection.js.uncompressed.js +525 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js +96 -0
- package/vendor/dojo-1.10.10/dijit/typematic.js.uncompressed.js +211 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js +195 -0
- package/vendor/dojo-1.10.10/dojo/NodeList-manipulate.js.uncompressed.js +761 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js +90 -0
- package/vendor/dojo-1.10.10/dojo/Stateful.js.uncompressed.js +218 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js +87 -0
- package/vendor/dojo-1.10.10/dojo/_base/url.js.uncompressed.js +109 -0
- package/vendor/dojo-1.10.10/dojo/cache.js +9 -0
- package/vendor/dojo-1.10.10/dojo/cache.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/colors.js +74 -0
- package/vendor/dojo-1.10.10/dojo/colors.js.uncompressed.js +232 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js +48 -0
- package/vendor/dojo-1.10.10/dojo/cookie.js.uncompressed.js +98 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js +82 -0
- package/vendor/dojo-1.10.10/dojo/date/stamp.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js +7 -0
- package/vendor/dojo-1.10.10/dojo/dojo.js.uncompressed.js +18680 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js +27 -0
- package/vendor/dojo-1.10.10/dojo/fx/Toggler.js.uncompressed.js +101 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js +165 -0
- package/vendor/dojo-1.10.10/dojo/fx/easing.js.uncompressed.js +276 -0
- package/vendor/dojo-1.10.10/dojo/fx.js +271 -0
- package/vendor/dojo-1.10.10/dojo/fx.js.uncompressed.js +443 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js +26 -0
- package/vendor/dojo-1.10.10/dojo/hccss.js.uncompressed.js +52 -0
- package/vendor/dojo-1.10.10/dojo/html.js +161 -0
- package/vendor/dojo-1.10.10/dojo/html.js.uncompressed.js +370 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js +71 -0
- package/vendor/dojo-1.10.10/dojo/io/iframe.js.uncompressed.js +190 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js +112 -0
- package/vendor/dojo-1.10.10/dojo/io/script.js.uncompressed.js +280 -0
- package/vendor/dojo-1.10.10/dojo/parser.js +437 -0
- package/vendor/dojo-1.10.10/dojo/parser.js.uncompressed.js +915 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js +59 -0
- package/vendor/dojo-1.10.10/dojo/promise/all.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js +32 -0
- package/vendor/dojo-1.10.10/dojo/regexp.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js +291 -0
- package/vendor/dojo-1.10.10/dojo/request/iframe.js.uncompressed.js +438 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js +129 -0
- package/vendor/dojo-1.10.10/dojo/request/script.js.uncompressed.js +237 -0
- package/vendor/dojo-1.10.10/dojo/require.js +11 -0
- package/vendor/dojo-1.10.10/dojo/require.js.uncompressed.js +7 -0
- package/vendor/dojo-1.10.10/dojo/resources/blank.gif +0 -0
- package/vendor/dojo-1.10.10/dojo/string.js +67 -0
- package/vendor/dojo-1.10.10/dojo/string.js.uncompressed.js +181 -0
- package/vendor/dojo-1.10.10/dojo/touch.js +191 -0
- package/vendor/dojo-1.10.10/dojo/touch.js.uncompressed.js +468 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js +36 -0
- package/vendor/dojo-1.10.10/dojo/uacss.js.uncompressed.js +85 -0
- package/vendor/dojo-1.10.10/dojo/window.js +141 -0
- package/vendor/dojo-1.10.10/dojo/window.js.uncompressed.js +241 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js +626 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart.js.uncompressed.js +1220 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/Chart2D.js.uncompressed.js +16 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js +247 -0
- package/vendor/dojo-1.10.10/dojox/charting/Element.js.uncompressed.js +402 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/Series.js.uncompressed.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js +191 -0
- package/vendor/dojo-1.10.10/dojox/charting/SimpleTheme.js.uncompressed.js +577 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js +42 -0
- package/vendor/dojo-1.10.10/dojox/charting/Theme.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js +11 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Base.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Highlight.js.uncompressed.js +144 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js +58 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Magnify.js.uncompressed.js +123 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js +54 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/MoveSlice.js.uncompressed.js +124 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js +28 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/PlotAction.js.uncompressed.js +74 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js +116 -0
- package/vendor/dojo-1.10.10/dojox/charting/action2d/Tooltip.js.uncompressed.js +178 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Base.js.uncompressed.js +83 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js +557 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Default.js.uncompressed.js +980 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js +65 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/Invisible.js.uncompressed.js +224 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js +91 -0
- package/vendor/dojo-1.10.10/dojox/charting/axis2d/common.js.uncompressed.js +164 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Areas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js +168 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bars.js.uncompressed.js +311 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js +61 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Base.js.uncompressed.js +161 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js +141 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Bubble.js.uncompressed.js +242 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js +126 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Candlesticks.js.uncompressed.js +243 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js +108 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/CartesianBase.js.uncompressed.js +290 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredBars.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/ClusteredColumns.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js +153 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Columns.js.uncompressed.js +249 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js +253 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Default.js.uncompressed.js +472 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js +182 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Grid.js.uncompressed.js +356 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Lines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Markers.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/MarkersOnly.js.uncompressed.js +13 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js +110 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/OHLC.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js +303 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Pie.js.uncompressed.js +547 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js +134 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Scatter.js.uncompressed.js +207 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js +299 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Spider.js.uncompressed.js +537 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js +24 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/Stacked.js.uncompressed.js +44 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js +7 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedAreas.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js +22 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedBars.js.uncompressed.js +33 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js +20 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedColumns.js.uncompressed.js +31 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js +6 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/StackedLines.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js +68 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/_PlotEvents.js.uncompressed.js +120 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js +209 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/common.js.uncompressed.js +214 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js +76 -0
- package/vendor/dojo-1.10.10/dojox/charting/plot2d/commonStacked.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js +59 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/common.js.uncompressed.js +70 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js +220 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/linear.js.uncompressed.js +262 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js +23 -0
- package/vendor/dojo-1.10.10/dojox/charting/scaler/primitive.js.uncompressed.js +36 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js +39 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Claro.js.uncompressed.js +106 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js +5 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/Wetland.js.uncompressed.js +12 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js +4 -0
- package/vendor/dojo-1.10.10/dojox/charting/themes/common.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js +102 -0
- package/vendor/dojo-1.10.10/dojox/charting/widget/Legend.js.uncompressed.js +165 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js +163 -0
- package/vendor/dojo-1.10.10/dojox/color/Palette.js.uncompressed.js +460 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js +174 -0
- package/vendor/dojo-1.10.10/dojox/color/_base.js.uncompressed.js +196 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js +297 -0
- package/vendor/dojo-1.10.10/dojox/gfx/fx.js.uncompressed.js +350 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js +63 -0
- package/vendor/dojo-1.10.10/dojox/gfx/gradutils.js.uncompressed.js +91 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js +170 -0
- package/vendor/dojo-1.10.10/dojox/gfx/matrix.js.uncompressed.js +501 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js +319 -0
- package/vendor/dojo-1.10.10/dojox/gfx/path.js.uncompressed.js +478 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js +459 -0
- package/vendor/dojo-1.10.10/dojox/gfx/shape.js.uncompressed.js +1091 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js +662 -0
- package/vendor/dojo-1.10.10/dojox/gfx/svg.js.uncompressed.js +1023 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js +199 -0
- package/vendor/dojo-1.10.10/dojox/gfx/utils.js.uncompressed.js +322 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js +2 -0
- package/vendor/dojo-1.10.10/dojox/gfx.js.uncompressed.js +1136 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js +151 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/array.js.uncompressed.js +169 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js +93 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/fold.js.uncompressed.js +125 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js +81 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/lambda.js.uncompressed.js +132 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js +54 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/object.js.uncompressed.js +78 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js +61 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/reversed.js.uncompressed.js +77 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js +87 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional/scan.js.uncompressed.js +107 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js +4 -0
- package/vendor/dojo-1.10.10/dojox/lang/functional.js.uncompressed.js +3 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js +86 -0
- package/vendor/dojo-1.10.10/dojox/lang/utils.js.uncompressed.js +121 -0
- package/vendor/dojo-1.10.10/dojox/main.js +4 -0
- package/vendor/dojo-1.10.10/dojox/main.js.uncompressed.js +14 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js +112 -0
- package/vendor/dojo-1.10.10/dojox/storage/LocalStorageProvider.js.uncompressed.js +208 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js +62 -0
- package/vendor/dojo-1.10.10/dojox/storage/Provider.js.uncompressed.js +344 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js +110 -0
- package/vendor/dojo-1.10.10/dojox/storage/manager.js.uncompressed.js +263 -0
|
@@ -0,0 +1,550 @@
|
|
|
1
|
+
require({cache:{
|
|
2
|
+
'url:dijit/layout/templates/AccordionButton.html':"<div data-dojo-attach-event='ondijitclick:_onTitleClick' class='dijitAccordionTitle' role=\"presentation\">\n\t<div data-dojo-attach-point='titleNode,focusNode' data-dojo-attach-event='onkeydown:_onTitleKeyDown'\n\t\t\tclass='dijitAccordionTitleFocus' role=\"tab\" aria-expanded=\"false\"\n\t\t><span class='dijitInline dijitAccordionArrow' role=\"presentation\"></span\n\t\t><span class='arrowTextUp' role=\"presentation\">+</span\n\t\t><span class='arrowTextDown' role=\"presentation\">-</span\n\t\t><span role=\"presentation\" class=\"dijitInline dijitIcon\" data-dojo-attach-point=\"iconNode\"></span>\n\t\t<span role=\"presentation\" data-dojo-attach-point='titleTextNode, textDirNode' class='dijitAccordionText'></span>\n\t</div>\n</div>\n"}});
|
|
3
|
+
define("dijit/layout/AccordionContainer", [
|
|
4
|
+
"require",
|
|
5
|
+
"dojo/_base/array", // array.forEach array.map
|
|
6
|
+
"dojo/_base/declare", // declare
|
|
7
|
+
"dojo/_base/fx", // fx.Animation
|
|
8
|
+
"dojo/dom", // dom.setSelectable
|
|
9
|
+
"dojo/dom-attr", // domAttr.attr
|
|
10
|
+
"dojo/dom-class", // domClass.remove
|
|
11
|
+
"dojo/dom-construct", // domConstruct.place
|
|
12
|
+
"dojo/dom-geometry",
|
|
13
|
+
"dojo/keys", // keys
|
|
14
|
+
"dojo/_base/lang", // lang.getObject lang.hitch
|
|
15
|
+
"dojo/sniff", // has("ie") has("dijit-legacy-requires")
|
|
16
|
+
"dojo/topic", // publish
|
|
17
|
+
"../focus", // focus.focus()
|
|
18
|
+
"../_base/manager", // manager.defaultDuration
|
|
19
|
+
"dojo/ready",
|
|
20
|
+
"../_Widget",
|
|
21
|
+
"../_Container",
|
|
22
|
+
"../_TemplatedMixin",
|
|
23
|
+
"../_CssStateMixin",
|
|
24
|
+
"./StackContainer",
|
|
25
|
+
"./ContentPane",
|
|
26
|
+
"dojo/text!./templates/AccordionButton.html",
|
|
27
|
+
"../a11yclick" // AccordionButton template uses ondijitclick; not for keyboard, but for responsive touch.
|
|
28
|
+
], function(require, array, declare, fx, dom, domAttr, domClass, domConstruct, domGeometry, keys, lang, has, topic,
|
|
29
|
+
focus, manager, ready, _Widget, _Container, _TemplatedMixin, _CssStateMixin, StackContainer, ContentPane, template){
|
|
30
|
+
|
|
31
|
+
// module:
|
|
32
|
+
// dijit/layout/AccordionContainer
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
// Design notes:
|
|
36
|
+
//
|
|
37
|
+
// An AccordionContainer is a StackContainer, but each child (typically ContentPane)
|
|
38
|
+
// is wrapped in a _AccordionInnerContainer. This is hidden from the caller.
|
|
39
|
+
//
|
|
40
|
+
// The resulting markup will look like:
|
|
41
|
+
//
|
|
42
|
+
// <div class=dijitAccordionContainer>
|
|
43
|
+
// <div class=dijitAccordionInnerContainer> (one pane)
|
|
44
|
+
// <div class=dijitAccordionTitle> (title bar) ... </div>
|
|
45
|
+
// <div class=dijtAccordionChildWrapper> (content pane) </div>
|
|
46
|
+
// </div>
|
|
47
|
+
// </div>
|
|
48
|
+
//
|
|
49
|
+
// Normally the dijtAccordionChildWrapper is hidden for all but one child (the shown
|
|
50
|
+
// child), so the space for the content pane is all the title bars + the one dijtAccordionChildWrapper,
|
|
51
|
+
// which on claro has a 1px border plus a 2px bottom margin.
|
|
52
|
+
//
|
|
53
|
+
// During animation there are two dijtAccordionChildWrapper's shown, so we need
|
|
54
|
+
// to compensate for that.
|
|
55
|
+
|
|
56
|
+
var AccordionButton = declare("dijit.layout._AccordionButton", [_Widget, _TemplatedMixin, _CssStateMixin], {
|
|
57
|
+
// summary:
|
|
58
|
+
// The title bar to click to open up an accordion pane.
|
|
59
|
+
// Internal widget used by AccordionContainer.
|
|
60
|
+
// tags:
|
|
61
|
+
// private
|
|
62
|
+
|
|
63
|
+
templateString: template,
|
|
64
|
+
|
|
65
|
+
// label: String
|
|
66
|
+
// Title of the pane
|
|
67
|
+
label: "",
|
|
68
|
+
_setLabelAttr: {node: "titleTextNode", type: "innerHTML" },
|
|
69
|
+
|
|
70
|
+
// title: String
|
|
71
|
+
// Tooltip that appears on hover
|
|
72
|
+
title: "",
|
|
73
|
+
_setTitleAttr: {node: "titleTextNode", type: "attribute", attribute: "title"},
|
|
74
|
+
|
|
75
|
+
// iconClassAttr: String
|
|
76
|
+
// CSS class for icon to left of label
|
|
77
|
+
iconClassAttr: "",
|
|
78
|
+
_setIconClassAttr: { node: "iconNode", type: "class" },
|
|
79
|
+
|
|
80
|
+
baseClass: "dijitAccordionTitle",
|
|
81
|
+
|
|
82
|
+
getParent: function(){
|
|
83
|
+
// summary:
|
|
84
|
+
// Returns the AccordionContainer parent.
|
|
85
|
+
// tags:
|
|
86
|
+
// private
|
|
87
|
+
return this.parent;
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
buildRendering: function(){
|
|
91
|
+
this.inherited(arguments);
|
|
92
|
+
var titleTextNodeId = this.id.replace(' ', '_');
|
|
93
|
+
domAttr.set(this.titleTextNode, "id", titleTextNodeId + "_title");
|
|
94
|
+
this.focusNode.setAttribute("aria-labelledby", domAttr.get(this.titleTextNode, "id"));
|
|
95
|
+
dom.setSelectable(this.domNode, false);
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
getTitleHeight: function(){
|
|
99
|
+
// summary:
|
|
100
|
+
// Returns the height of the title dom node.
|
|
101
|
+
return domGeometry.getMarginSize(this.domNode).h; // Integer
|
|
102
|
+
},
|
|
103
|
+
|
|
104
|
+
// TODO: maybe the parent should set these methods directly rather than forcing the code
|
|
105
|
+
// into the button widget?
|
|
106
|
+
_onTitleClick: function(){
|
|
107
|
+
// summary:
|
|
108
|
+
// Callback when someone clicks my title.
|
|
109
|
+
var parent = this.getParent();
|
|
110
|
+
parent.selectChild(this.contentWidget, true);
|
|
111
|
+
focus.focus(this.focusNode);
|
|
112
|
+
},
|
|
113
|
+
|
|
114
|
+
_onTitleKeyDown: function(/*Event*/ evt){
|
|
115
|
+
return this.getParent()._onKeyDown(evt, this.contentWidget);
|
|
116
|
+
},
|
|
117
|
+
|
|
118
|
+
_setSelectedAttr: function(/*Boolean*/ isSelected){
|
|
119
|
+
this._set("selected", isSelected);
|
|
120
|
+
this.focusNode.setAttribute("aria-expanded", isSelected ? "true" : "false");
|
|
121
|
+
this.focusNode.setAttribute("aria-selected", isSelected ? "true" : "false");
|
|
122
|
+
this.focusNode.setAttribute("tabIndex", isSelected ? "0" : "-1");
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
if(has("dojo-bidi")){
|
|
127
|
+
AccordionButton.extend({
|
|
128
|
+
_setLabelAttr: function(label){
|
|
129
|
+
this._set("label", label);
|
|
130
|
+
domAttr.set(this.titleTextNode, "innerHTML", label);
|
|
131
|
+
this.applyTextDir(this.titleTextNode);
|
|
132
|
+
},
|
|
133
|
+
|
|
134
|
+
_setTitleAttr: function(title){
|
|
135
|
+
this._set("title", title);
|
|
136
|
+
domAttr.set(this.titleTextNode, "title", title);
|
|
137
|
+
this.applyTextDir(this.titleTextNode);
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
var AccordionInnerContainer = declare("dijit.layout._AccordionInnerContainer" + (has("dojo-bidi") ? "_NoBidi" : ""), [_Widget, _CssStateMixin], {
|
|
143
|
+
// summary:
|
|
144
|
+
// Internal widget placed as direct child of AccordionContainer.containerNode.
|
|
145
|
+
// When other widgets are added as children to an AccordionContainer they are wrapped in
|
|
146
|
+
// this widget.
|
|
147
|
+
|
|
148
|
+
/*=====
|
|
149
|
+
// buttonWidget: Function|String
|
|
150
|
+
// Class to use to instantiate title
|
|
151
|
+
// (Wish we didn't have a separate widget for just the title but maintaining it
|
|
152
|
+
// for backwards compatibility, is it worth it?)
|
|
153
|
+
buttonWidget: null,
|
|
154
|
+
=====*/
|
|
155
|
+
|
|
156
|
+
/*=====
|
|
157
|
+
// contentWidget: dijit/_WidgetBase
|
|
158
|
+
// Pointer to the real child widget
|
|
159
|
+
contentWidget: null,
|
|
160
|
+
=====*/
|
|
161
|
+
|
|
162
|
+
baseClass: "dijitAccordionInnerContainer",
|
|
163
|
+
|
|
164
|
+
// tell nested layout widget that we will take care of sizing
|
|
165
|
+
isLayoutContainer: true,
|
|
166
|
+
|
|
167
|
+
buildRendering: function(){
|
|
168
|
+
// Builds a template like:
|
|
169
|
+
// <div class=dijitAccordionInnerContainer>
|
|
170
|
+
// Button
|
|
171
|
+
// <div class=dijitAccordionChildWrapper>
|
|
172
|
+
// ContentPane
|
|
173
|
+
// </div>
|
|
174
|
+
// </div>
|
|
175
|
+
|
|
176
|
+
// Create wrapper div, placed where the child is now
|
|
177
|
+
this.domNode = domConstruct.place("<div class='" + this.baseClass +
|
|
178
|
+
"' role='presentation'>", this.contentWidget.domNode, "after");
|
|
179
|
+
|
|
180
|
+
// wrapper div's first child is the button widget (ie, the title bar)
|
|
181
|
+
var child = this.contentWidget,
|
|
182
|
+
cls = lang.isString(this.buttonWidget) ? lang.getObject(this.buttonWidget) : this.buttonWidget;
|
|
183
|
+
this.button = child._buttonWidget = (new cls({
|
|
184
|
+
contentWidget: child,
|
|
185
|
+
label: child.title,
|
|
186
|
+
title: child.tooltip,
|
|
187
|
+
dir: child.dir,
|
|
188
|
+
lang: child.lang,
|
|
189
|
+
textDir: child.textDir || this.textDir,
|
|
190
|
+
iconClass: child.iconClass,
|
|
191
|
+
id: child.id + "_button",
|
|
192
|
+
parent: this.parent
|
|
193
|
+
})).placeAt(this.domNode);
|
|
194
|
+
|
|
195
|
+
// and then the actual content widget (changing it from prior-sibling to last-child),
|
|
196
|
+
// wrapped by a <div class=dijitAccordionChildWrapper>
|
|
197
|
+
this.containerNode = domConstruct.place("<div class='dijitAccordionChildWrapper' role='tabpanel' style='display:none'>", this.domNode);
|
|
198
|
+
this.containerNode.setAttribute("aria-labelledby", this.button.id);
|
|
199
|
+
|
|
200
|
+
domConstruct.place(this.contentWidget.domNode, this.containerNode);
|
|
201
|
+
},
|
|
202
|
+
|
|
203
|
+
postCreate: function(){
|
|
204
|
+
this.inherited(arguments);
|
|
205
|
+
|
|
206
|
+
// Map changes in content widget's title etc. to changes in the button
|
|
207
|
+
var button = this.button,
|
|
208
|
+
cw = this.contentWidget;
|
|
209
|
+
this._contentWidgetWatches = [
|
|
210
|
+
cw.watch('title', lang.hitch(this, function(name, oldValue, newValue){
|
|
211
|
+
button.set("label", newValue);
|
|
212
|
+
})),
|
|
213
|
+
cw.watch('tooltip', lang.hitch(this, function(name, oldValue, newValue){
|
|
214
|
+
button.set("title", newValue);
|
|
215
|
+
})),
|
|
216
|
+
cw.watch('iconClass', lang.hitch(this, function(name, oldValue, newValue){
|
|
217
|
+
button.set("iconClass", newValue);
|
|
218
|
+
}))
|
|
219
|
+
];
|
|
220
|
+
},
|
|
221
|
+
|
|
222
|
+
_setSelectedAttr: function(/*Boolean*/ isSelected){
|
|
223
|
+
this._set("selected", isSelected);
|
|
224
|
+
this.button.set("selected", isSelected);
|
|
225
|
+
if(isSelected){
|
|
226
|
+
var cw = this.contentWidget;
|
|
227
|
+
if(cw.onSelected){
|
|
228
|
+
cw.onSelected();
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
|
|
233
|
+
startup: function(){
|
|
234
|
+
// Called by _Container.addChild()
|
|
235
|
+
this.contentWidget.startup();
|
|
236
|
+
},
|
|
237
|
+
|
|
238
|
+
destroy: function(){
|
|
239
|
+
this.button.destroyRecursive();
|
|
240
|
+
|
|
241
|
+
array.forEach(this._contentWidgetWatches || [], function(w){
|
|
242
|
+
w.unwatch();
|
|
243
|
+
});
|
|
244
|
+
|
|
245
|
+
delete this.contentWidget._buttonWidget;
|
|
246
|
+
delete this.contentWidget._wrapperWidget;
|
|
247
|
+
|
|
248
|
+
this.inherited(arguments);
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
destroyDescendants: function(/*Boolean*/ preserveDom){
|
|
252
|
+
// since getChildren isn't working for me, have to code this manually
|
|
253
|
+
this.contentWidget.destroyRecursive(preserveDom);
|
|
254
|
+
}
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
if(has("dojo-bidi")){
|
|
258
|
+
AccordionInnerContainer = declare("dijit.layout._AccordionInnerContainer", AccordionInnerContainer, {
|
|
259
|
+
postCreate: function(){
|
|
260
|
+
this.inherited(arguments);
|
|
261
|
+
|
|
262
|
+
// Map changes in content widget's textdir to changes in the button
|
|
263
|
+
var button = this.button;
|
|
264
|
+
this._contentWidgetWatches.push(
|
|
265
|
+
this.contentWidget.watch("textDir", function(name, oldValue, newValue){
|
|
266
|
+
button.set("textDir", newValue);
|
|
267
|
+
})
|
|
268
|
+
);
|
|
269
|
+
}
|
|
270
|
+
});
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
var AccordionContainer = declare("dijit.layout.AccordionContainer", StackContainer, {
|
|
274
|
+
// summary:
|
|
275
|
+
// Holds a set of panes where every pane's title is visible, but only one pane's content is visible at a time,
|
|
276
|
+
// and switching between panes is visualized by sliding the other panes up/down.
|
|
277
|
+
// example:
|
|
278
|
+
// | <div data-dojo-type="dijit/layout/AccordionContainer">
|
|
279
|
+
// | <div data-dojo-type="dijit/layout/ContentPane" title="pane 1">
|
|
280
|
+
// | </div>
|
|
281
|
+
// | <div data-dojo-type="dijit/layout/ContentPane" title="pane 2">
|
|
282
|
+
// | <p>This is some text</p>
|
|
283
|
+
// | </div>
|
|
284
|
+
// | </div>
|
|
285
|
+
|
|
286
|
+
// duration: Integer
|
|
287
|
+
// Amount of time (in ms) it takes to slide panes
|
|
288
|
+
duration: manager.defaultDuration,
|
|
289
|
+
|
|
290
|
+
// buttonWidget: [const] String
|
|
291
|
+
// The name of the widget used to display the title of each pane
|
|
292
|
+
buttonWidget: AccordionButton,
|
|
293
|
+
|
|
294
|
+
/*=====
|
|
295
|
+
// _verticalSpace: Number
|
|
296
|
+
// Pixels of space available for the open pane
|
|
297
|
+
// (my content box size minus the cumulative size of all the title bars)
|
|
298
|
+
_verticalSpace: 0,
|
|
299
|
+
=====*/
|
|
300
|
+
baseClass: "dijitAccordionContainer",
|
|
301
|
+
|
|
302
|
+
buildRendering: function(){
|
|
303
|
+
this.inherited(arguments);
|
|
304
|
+
this.domNode.style.overflow = "hidden"; // TODO: put this in dijit.css
|
|
305
|
+
this.domNode.setAttribute("role", "tablist");
|
|
306
|
+
},
|
|
307
|
+
|
|
308
|
+
startup: function(){
|
|
309
|
+
if(this._started){
|
|
310
|
+
return;
|
|
311
|
+
}
|
|
312
|
+
this.inherited(arguments);
|
|
313
|
+
if(this.selectedChildWidget){
|
|
314
|
+
this.selectedChildWidget._wrapperWidget.set("selected", true);
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
|
|
318
|
+
layout: function(){
|
|
319
|
+
// Implement _LayoutWidget.layout() virtual method.
|
|
320
|
+
// Set the height of the open pane based on what room remains.
|
|
321
|
+
|
|
322
|
+
var openPane = this.selectedChildWidget;
|
|
323
|
+
|
|
324
|
+
if(!openPane){
|
|
325
|
+
return;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// space taken up by title, plus wrapper div (with border/margin) for open pane
|
|
329
|
+
var wrapperDomNode = openPane._wrapperWidget.domNode,
|
|
330
|
+
wrapperDomNodeMargin = domGeometry.getMarginExtents(wrapperDomNode),
|
|
331
|
+
wrapperDomNodePadBorder = domGeometry.getPadBorderExtents(wrapperDomNode),
|
|
332
|
+
wrapperContainerNode = openPane._wrapperWidget.containerNode,
|
|
333
|
+
wrapperContainerNodeMargin = domGeometry.getMarginExtents(wrapperContainerNode),
|
|
334
|
+
wrapperContainerNodePadBorder = domGeometry.getPadBorderExtents(wrapperContainerNode),
|
|
335
|
+
mySize = this._contentBox;
|
|
336
|
+
|
|
337
|
+
// get cumulative height of all the unselected title bars
|
|
338
|
+
var totalCollapsedHeight = 0;
|
|
339
|
+
array.forEach(this.getChildren(), function(child){
|
|
340
|
+
if(child != openPane){
|
|
341
|
+
// Using domGeometry.getMarginSize() rather than domGeometry.position() since claro has 1px bottom margin
|
|
342
|
+
// to separate accordion panes. Not sure that works perfectly, it's probably putting a 1px
|
|
343
|
+
// margin below the bottom pane (even though we don't want one).
|
|
344
|
+
totalCollapsedHeight += domGeometry.getMarginSize(child._wrapperWidget.domNode).h;
|
|
345
|
+
}
|
|
346
|
+
});
|
|
347
|
+
this._verticalSpace = mySize.h - totalCollapsedHeight - wrapperDomNodeMargin.h
|
|
348
|
+
- wrapperDomNodePadBorder.h - wrapperContainerNodeMargin.h - wrapperContainerNodePadBorder.h
|
|
349
|
+
- openPane._buttonWidget.getTitleHeight();
|
|
350
|
+
|
|
351
|
+
// Memo size to make displayed child
|
|
352
|
+
this._containerContentBox = {
|
|
353
|
+
h: this._verticalSpace,
|
|
354
|
+
w: this._contentBox.w - wrapperDomNodeMargin.w - wrapperDomNodePadBorder.w
|
|
355
|
+
- wrapperContainerNodeMargin.w - wrapperContainerNodePadBorder.w
|
|
356
|
+
};
|
|
357
|
+
|
|
358
|
+
if(openPane){
|
|
359
|
+
openPane.resize(this._containerContentBox);
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
|
|
363
|
+
_setupChild: function(child){
|
|
364
|
+
// Overrides _LayoutWidget._setupChild().
|
|
365
|
+
// Put wrapper widget around the child widget, showing title
|
|
366
|
+
|
|
367
|
+
child._wrapperWidget = AccordionInnerContainer({
|
|
368
|
+
contentWidget: child,
|
|
369
|
+
buttonWidget: this.buttonWidget,
|
|
370
|
+
id: child.id + "_wrapper",
|
|
371
|
+
dir: child.dir,
|
|
372
|
+
lang: child.lang,
|
|
373
|
+
textDir: child.textDir || this.textDir,
|
|
374
|
+
parent: this
|
|
375
|
+
});
|
|
376
|
+
|
|
377
|
+
this.inherited(arguments);
|
|
378
|
+
|
|
379
|
+
// Since we are wrapping children in AccordionInnerContainer, replace the default
|
|
380
|
+
// wrapper that we created in StackContainer.
|
|
381
|
+
domConstruct.place(child.domNode, child._wrapper, "replace");
|
|
382
|
+
},
|
|
383
|
+
|
|
384
|
+
removeChild: function(child){
|
|
385
|
+
// Overrides _LayoutWidget.removeChild().
|
|
386
|
+
|
|
387
|
+
// Destroy wrapper widget first, before StackContainer.getChildren() call.
|
|
388
|
+
// Replace wrapper widget with true child widget (ContentPane etc.).
|
|
389
|
+
// This step only happens if the AccordionContainer has been started; otherwise there's no wrapper.
|
|
390
|
+
// (TODO: since StackContainer destroys child._wrapper, maybe it can do this step too?)
|
|
391
|
+
if(child._wrapperWidget){
|
|
392
|
+
domConstruct.place(child.domNode, child._wrapperWidget.domNode, "after");
|
|
393
|
+
child._wrapperWidget.destroy();
|
|
394
|
+
delete child._wrapperWidget;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
domClass.remove(child.domNode, "dijitHidden");
|
|
398
|
+
|
|
399
|
+
this.inherited(arguments);
|
|
400
|
+
},
|
|
401
|
+
|
|
402
|
+
getChildren: function(){
|
|
403
|
+
// Overrides _Container.getChildren() to return content panes rather than internal AccordionInnerContainer panes
|
|
404
|
+
return array.map(this.inherited(arguments), function(child){
|
|
405
|
+
return child.declaredClass == "dijit.layout._AccordionInnerContainer" ? child.contentWidget : child;
|
|
406
|
+
}, this);
|
|
407
|
+
},
|
|
408
|
+
|
|
409
|
+
destroy: function(){
|
|
410
|
+
if(this._animation){
|
|
411
|
+
this._animation.stop();
|
|
412
|
+
}
|
|
413
|
+
array.forEach(this.getChildren(), function(child){
|
|
414
|
+
// If AccordionContainer has been started, then each child has a wrapper widget which
|
|
415
|
+
// also needs to be destroyed.
|
|
416
|
+
if(child._wrapperWidget){
|
|
417
|
+
child._wrapperWidget.destroy();
|
|
418
|
+
}else{
|
|
419
|
+
child.destroyRecursive();
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
this.inherited(arguments);
|
|
423
|
+
},
|
|
424
|
+
|
|
425
|
+
_showChild: function(child){
|
|
426
|
+
// Override StackContainer._showChild() to set visibility of _wrapperWidget.containerNode
|
|
427
|
+
child._wrapperWidget.containerNode.style.display = "block";
|
|
428
|
+
return this.inherited(arguments);
|
|
429
|
+
},
|
|
430
|
+
|
|
431
|
+
_hideChild: function(child){
|
|
432
|
+
// Override StackContainer._showChild() to set visibility of _wrapperWidget.containerNode
|
|
433
|
+
child._wrapperWidget.containerNode.style.display = "none";
|
|
434
|
+
this.inherited(arguments);
|
|
435
|
+
},
|
|
436
|
+
|
|
437
|
+
_transition: function(/*dijit/_WidgetBase?*/ newWidget, /*dijit/_WidgetBase?*/ oldWidget, /*Boolean*/ animate){
|
|
438
|
+
// Overrides StackContainer._transition() to provide sliding of title bars etc.
|
|
439
|
+
|
|
440
|
+
if(has("ie") < 8){
|
|
441
|
+
// workaround animation bugs by not animating; not worth supporting animation for IE6 & 7
|
|
442
|
+
animate = false;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
if(this._animation){
|
|
446
|
+
// there's an in-progress animation. speedily end it so we can do the newly requested one
|
|
447
|
+
this._animation.stop(true);
|
|
448
|
+
delete this._animation;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
var self = this;
|
|
452
|
+
|
|
453
|
+
if(newWidget){
|
|
454
|
+
newWidget._wrapperWidget.set("selected", true);
|
|
455
|
+
|
|
456
|
+
var d = this._showChild(newWidget); // prepare widget to be slid in
|
|
457
|
+
|
|
458
|
+
// Size the new widget, in case this is the first time it's being shown,
|
|
459
|
+
// or I have been resized since the last time it was shown.
|
|
460
|
+
// Note that page must be visible for resizing to work.
|
|
461
|
+
if(this.doLayout && newWidget.resize){
|
|
462
|
+
newWidget.resize(this._containerContentBox);
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
if(oldWidget){
|
|
467
|
+
oldWidget._wrapperWidget.set("selected", false);
|
|
468
|
+
if(!animate){
|
|
469
|
+
this._hideChild(oldWidget);
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
if(animate){
|
|
474
|
+
var newContents = newWidget._wrapperWidget.containerNode,
|
|
475
|
+
oldContents = oldWidget._wrapperWidget.containerNode;
|
|
476
|
+
|
|
477
|
+
// During the animation we will be showing two dijitAccordionChildWrapper nodes at once,
|
|
478
|
+
// which on claro takes up 4px extra space (compared to stable AccordionContainer).
|
|
479
|
+
// Have to compensate for that by immediately shrinking the pane being closed.
|
|
480
|
+
var wrapperContainerNode = newWidget._wrapperWidget.containerNode,
|
|
481
|
+
wrapperContainerNodeMargin = domGeometry.getMarginExtents(wrapperContainerNode),
|
|
482
|
+
wrapperContainerNodePadBorder = domGeometry.getPadBorderExtents(wrapperContainerNode),
|
|
483
|
+
animationHeightOverhead = wrapperContainerNodeMargin.h + wrapperContainerNodePadBorder.h;
|
|
484
|
+
|
|
485
|
+
oldContents.style.height = (self._verticalSpace - animationHeightOverhead) + "px";
|
|
486
|
+
|
|
487
|
+
this._animation = new fx.Animation({
|
|
488
|
+
node: newContents,
|
|
489
|
+
duration: this.duration,
|
|
490
|
+
curve: [1, this._verticalSpace - animationHeightOverhead - 1],
|
|
491
|
+
onAnimate: function(value){
|
|
492
|
+
value = Math.floor(value); // avoid fractional values
|
|
493
|
+
newContents.style.height = value + "px";
|
|
494
|
+
oldContents.style.height = (self._verticalSpace - animationHeightOverhead - value) + "px";
|
|
495
|
+
},
|
|
496
|
+
onEnd: function(){
|
|
497
|
+
delete self._animation;
|
|
498
|
+
newContents.style.height = "auto";
|
|
499
|
+
oldWidget._wrapperWidget.containerNode.style.display = "none";
|
|
500
|
+
oldContents.style.height = "auto";
|
|
501
|
+
self._hideChild(oldWidget);
|
|
502
|
+
}
|
|
503
|
+
});
|
|
504
|
+
this._animation.onStop = this._animation.onEnd;
|
|
505
|
+
this._animation.play();
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
return d; // If child has an href, promise that fires when the widget has finished loading
|
|
509
|
+
},
|
|
510
|
+
|
|
511
|
+
// note: we are treating the container as controller here
|
|
512
|
+
_onKeyDown: function(/*Event*/ e, /*dijit/_WidgetBase*/ fromTitle){
|
|
513
|
+
// summary:
|
|
514
|
+
// Handle keydown events
|
|
515
|
+
// description:
|
|
516
|
+
// This is called from a handler on AccordionContainer.domNode
|
|
517
|
+
// (setup in StackContainer), and is also called directly from
|
|
518
|
+
// the click handler for accordion labels
|
|
519
|
+
if(this.disabled || e.altKey || !(fromTitle || e.ctrlKey)){
|
|
520
|
+
return;
|
|
521
|
+
}
|
|
522
|
+
var c = e.keyCode;
|
|
523
|
+
if((fromTitle && (c == keys.LEFT_ARROW || c == keys.UP_ARROW)) ||
|
|
524
|
+
(e.ctrlKey && c == keys.PAGE_UP)){
|
|
525
|
+
this._adjacent(false)._buttonWidget._onTitleClick();
|
|
526
|
+
e.stopPropagation();
|
|
527
|
+
e.preventDefault();
|
|
528
|
+
}else if((fromTitle && (c == keys.RIGHT_ARROW || c == keys.DOWN_ARROW)) ||
|
|
529
|
+
(e.ctrlKey && (c == keys.PAGE_DOWN || c == keys.TAB))){
|
|
530
|
+
this._adjacent(true)._buttonWidget._onTitleClick();
|
|
531
|
+
e.stopPropagation();
|
|
532
|
+
e.preventDefault();
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
});
|
|
536
|
+
|
|
537
|
+
// Back compat w/1.6, remove for 2.0
|
|
538
|
+
if(has("dijit-legacy-requires")){
|
|
539
|
+
ready(0, function(){
|
|
540
|
+
var requires = ["dijit/layout/AccordionPane"];
|
|
541
|
+
require(requires); // use indirection so modules not rolled into a build
|
|
542
|
+
});
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
// For monkey patching
|
|
546
|
+
AccordionContainer._InnerContainer = AccordionInnerContainer;
|
|
547
|
+
AccordionContainer._Button = AccordionButton;
|
|
548
|
+
|
|
549
|
+
return AccordionContainer;
|
|
550
|
+
});
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dijit/layout/AccordionPane",["dojo/_base/declare","dojo/_base/kernel","./ContentPane"],function(_1,_2,_3){
|
|
3
|
+
return _1("dijit.layout.AccordionPane",_3,{constructor:function(){
|
|
4
|
+
_2.deprecated("dijit.layout.AccordionPane deprecated, use ContentPane instead","","2.0");
|
|
5
|
+
},onSelected:function(){
|
|
6
|
+
}});
|
|
7
|
+
});
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
define("dijit/layout/AccordionPane", [
|
|
2
|
+
"dojo/_base/declare", // declare
|
|
3
|
+
"dojo/_base/kernel", // kernel.deprecated
|
|
4
|
+
"./ContentPane"
|
|
5
|
+
], function(declare, kernel, ContentPane){
|
|
6
|
+
|
|
7
|
+
// module:
|
|
8
|
+
// dijit/layout/AccordionPane
|
|
9
|
+
|
|
10
|
+
return declare("dijit.layout.AccordionPane", ContentPane, {
|
|
11
|
+
// summary:
|
|
12
|
+
// Deprecated widget. Use `dijit/layout/ContentPane` instead.
|
|
13
|
+
// tags:
|
|
14
|
+
// deprecated
|
|
15
|
+
|
|
16
|
+
constructor: function(){
|
|
17
|
+
kernel.deprecated("dijit.layout.AccordionPane deprecated, use ContentPane instead", "", "2.0");
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
onSelected: function(){
|
|
21
|
+
// summary:
|
|
22
|
+
// called when this pane is selected
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
});
|