@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.
- package/CHANGELOG.md +12 -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 +228 -69
- package/src/package.ts +7 -69
- package/src/tests/findMonomers-tests.ts +2 -1
- package/src/tests/get-monomer-tests.ts +1 -49
- 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,151 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/lang/functional/array",["dojo/_base/kernel","dojo/_base/lang","dojo/_base/array","./lambda"],function(_1,_2,_3,df){
|
|
3
|
+
var _4={};
|
|
4
|
+
_2.mixin(df,{filter:function(a,f,o){
|
|
5
|
+
if(typeof a=="string"){
|
|
6
|
+
a=a.split("");
|
|
7
|
+
}
|
|
8
|
+
o=o||_1.global;
|
|
9
|
+
f=df.lambda(f);
|
|
10
|
+
var t=[],v,i,n;
|
|
11
|
+
if(_2.isArray(a)){
|
|
12
|
+
for(i=0,n=a.length;i<n;++i){
|
|
13
|
+
v=a[i];
|
|
14
|
+
if(f.call(o,v,i,a)){
|
|
15
|
+
t.push(v);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}else{
|
|
19
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
20
|
+
for(i=0;a.hasNext();){
|
|
21
|
+
v=a.next();
|
|
22
|
+
if(f.call(o,v,i++,a)){
|
|
23
|
+
t.push(v);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}else{
|
|
27
|
+
for(i in a){
|
|
28
|
+
if(!(i in _4)){
|
|
29
|
+
v=a[i];
|
|
30
|
+
if(f.call(o,v,i,a)){
|
|
31
|
+
t.push(v);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return t;
|
|
38
|
+
},forEach:function(a,f,o){
|
|
39
|
+
if(typeof a=="string"){
|
|
40
|
+
a=a.split("");
|
|
41
|
+
}
|
|
42
|
+
o=o||_1.global;
|
|
43
|
+
f=df.lambda(f);
|
|
44
|
+
var i,n;
|
|
45
|
+
if(_2.isArray(a)){
|
|
46
|
+
for(i=0,n=a.length;i<n;f.call(o,a[i],i,a),++i){
|
|
47
|
+
}
|
|
48
|
+
}else{
|
|
49
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
50
|
+
for(i=0;a.hasNext();f.call(o,a.next(),i++,a)){
|
|
51
|
+
}
|
|
52
|
+
}else{
|
|
53
|
+
for(i in a){
|
|
54
|
+
if(!(i in _4)){
|
|
55
|
+
f.call(o,a[i],i,a);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return o;
|
|
61
|
+
},map:function(a,f,o){
|
|
62
|
+
if(typeof a=="string"){
|
|
63
|
+
a=a.split("");
|
|
64
|
+
}
|
|
65
|
+
o=o||_1.global;
|
|
66
|
+
f=df.lambda(f);
|
|
67
|
+
var t,n,i;
|
|
68
|
+
if(_2.isArray(a)){
|
|
69
|
+
t=new Array(n=a.length);
|
|
70
|
+
for(i=0;i<n;t[i]=f.call(o,a[i],i,a),++i){
|
|
71
|
+
}
|
|
72
|
+
}else{
|
|
73
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
74
|
+
t=[];
|
|
75
|
+
for(i=0;a.hasNext();t.push(f.call(o,a.next(),i++,a))){
|
|
76
|
+
}
|
|
77
|
+
}else{
|
|
78
|
+
t=[];
|
|
79
|
+
for(i in a){
|
|
80
|
+
if(!(i in _4)){
|
|
81
|
+
t.push(f.call(o,a[i],i,a));
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
return t;
|
|
87
|
+
},every:function(a,f,o){
|
|
88
|
+
if(typeof a=="string"){
|
|
89
|
+
a=a.split("");
|
|
90
|
+
}
|
|
91
|
+
o=o||_1.global;
|
|
92
|
+
f=df.lambda(f);
|
|
93
|
+
var i,n;
|
|
94
|
+
if(_2.isArray(a)){
|
|
95
|
+
for(i=0,n=a.length;i<n;++i){
|
|
96
|
+
if(!f.call(o,a[i],i,a)){
|
|
97
|
+
return false;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}else{
|
|
101
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
102
|
+
for(i=0;a.hasNext();){
|
|
103
|
+
if(!f.call(o,a.next(),i++,a)){
|
|
104
|
+
return false;
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}else{
|
|
108
|
+
for(i in a){
|
|
109
|
+
if(!(i in _4)){
|
|
110
|
+
if(!f.call(o,a[i],i,a)){
|
|
111
|
+
return false;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
return true;
|
|
118
|
+
},some:function(a,f,o){
|
|
119
|
+
if(typeof a=="string"){
|
|
120
|
+
a=a.split("");
|
|
121
|
+
}
|
|
122
|
+
o=o||_1.global;
|
|
123
|
+
f=df.lambda(f);
|
|
124
|
+
var i,n;
|
|
125
|
+
if(_2.isArray(a)){
|
|
126
|
+
for(i=0,n=a.length;i<n;++i){
|
|
127
|
+
if(f.call(o,a[i],i,a)){
|
|
128
|
+
return true;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}else{
|
|
132
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
133
|
+
for(i=0;a.hasNext();){
|
|
134
|
+
if(f.call(o,a.next(),i++,a)){
|
|
135
|
+
return true;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}else{
|
|
139
|
+
for(i in a){
|
|
140
|
+
if(!(i in _4)){
|
|
141
|
+
if(f.call(o,a[i],i,a)){
|
|
142
|
+
return true;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
return false;
|
|
149
|
+
}});
|
|
150
|
+
return df;
|
|
151
|
+
});
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
define("dojox/lang/functional/array", ["dojo/_base/kernel", "dojo/_base/lang", "dojo/_base/array", "./lambda"],
|
|
2
|
+
function(kernel, lang, arr, df){
|
|
3
|
+
|
|
4
|
+
// This module adds high-level functions and related constructs:
|
|
5
|
+
// - array-processing functions similar to standard JS functions
|
|
6
|
+
|
|
7
|
+
// Notes:
|
|
8
|
+
// - this module provides JS standard methods similar to high-level functions in dojo/_base/array.js:
|
|
9
|
+
// forEach, map, filter, every, some
|
|
10
|
+
|
|
11
|
+
// Defined methods:
|
|
12
|
+
// - take any valid lambda argument as the functional argument
|
|
13
|
+
// - operate on dense arrays
|
|
14
|
+
// - take a string as the array argument
|
|
15
|
+
// - take an iterator objects as the array argument
|
|
16
|
+
|
|
17
|
+
var empty = {};
|
|
18
|
+
|
|
19
|
+
lang.mixin(df, {
|
|
20
|
+
// JS 1.6 standard array functions, which can take a lambda as a parameter.
|
|
21
|
+
// Consider using dojo._base.array functions, if you don't need the lambda support.
|
|
22
|
+
filter: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
23
|
+
// summary:
|
|
24
|
+
// creates a new array with all elements that pass the test
|
|
25
|
+
// implemented by the provided function.
|
|
26
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
27
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
28
|
+
var t = [], v, i, n;
|
|
29
|
+
if(lang.isArray(a)){
|
|
30
|
+
// array
|
|
31
|
+
for(i = 0, n = a.length; i < n; ++i){
|
|
32
|
+
v = a[i];
|
|
33
|
+
if(f.call(o, v, i, a)){ t.push(v); }
|
|
34
|
+
}
|
|
35
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
36
|
+
// iterator
|
|
37
|
+
for(i = 0; a.hasNext();){
|
|
38
|
+
v = a.next();
|
|
39
|
+
if(f.call(o, v, i++, a)){ t.push(v); }
|
|
40
|
+
}
|
|
41
|
+
}else{
|
|
42
|
+
// object/dictionary
|
|
43
|
+
for(i in a){
|
|
44
|
+
if(!(i in empty)){
|
|
45
|
+
v = a[i];
|
|
46
|
+
if(f.call(o, v, i, a)){ t.push(v); }
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return t; // Array
|
|
51
|
+
},
|
|
52
|
+
forEach: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
53
|
+
// summary:
|
|
54
|
+
// executes a provided function once per array element.
|
|
55
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
56
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
57
|
+
var i, n;
|
|
58
|
+
if(lang.isArray(a)){
|
|
59
|
+
// array
|
|
60
|
+
for(i = 0, n = a.length; i < n; f.call(o, a[i], i, a), ++i);
|
|
61
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
62
|
+
// iterator
|
|
63
|
+
for(i = 0; a.hasNext(); f.call(o, a.next(), i++, a));
|
|
64
|
+
}else{
|
|
65
|
+
// object/dictionary
|
|
66
|
+
for(i in a){
|
|
67
|
+
if(!(i in empty)){
|
|
68
|
+
f.call(o, a[i], i, a);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
return o; // Object
|
|
73
|
+
},
|
|
74
|
+
map: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
75
|
+
// summary:
|
|
76
|
+
// creates a new array with the results of calling
|
|
77
|
+
// a provided function on every element in this array.
|
|
78
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
79
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
80
|
+
var t, n, i;
|
|
81
|
+
if(lang.isArray(a)){
|
|
82
|
+
// array
|
|
83
|
+
t = new Array(n = a.length);
|
|
84
|
+
for(i = 0; i < n; t[i] = f.call(o, a[i], i, a), ++i);
|
|
85
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
86
|
+
// iterator
|
|
87
|
+
t = [];
|
|
88
|
+
for(i = 0; a.hasNext(); t.push(f.call(o, a.next(), i++, a)));
|
|
89
|
+
}else{
|
|
90
|
+
// object/dictionary
|
|
91
|
+
t = [];
|
|
92
|
+
for(i in a){
|
|
93
|
+
if(!(i in empty)){
|
|
94
|
+
t.push(f.call(o, a[i], i, a));
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
return t; // Array
|
|
99
|
+
},
|
|
100
|
+
every: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
101
|
+
// summary:
|
|
102
|
+
// tests whether all elements in the array pass the test
|
|
103
|
+
// implemented by the provided function.
|
|
104
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
105
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
106
|
+
var i, n;
|
|
107
|
+
if(lang.isArray(a)){
|
|
108
|
+
// array
|
|
109
|
+
for(i = 0, n = a.length; i < n; ++i){
|
|
110
|
+
if(!f.call(o, a[i], i, a)){
|
|
111
|
+
return false; // Boolean
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
115
|
+
// iterator
|
|
116
|
+
for(i = 0; a.hasNext();){
|
|
117
|
+
if(!f.call(o, a.next(), i++, a)){
|
|
118
|
+
return false; // Boolean
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}else{
|
|
122
|
+
// object/dictionary
|
|
123
|
+
for(i in a){
|
|
124
|
+
if(!(i in empty)){
|
|
125
|
+
if(!f.call(o, a[i], i, a)){
|
|
126
|
+
return false; // Boolean
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
return true; // Boolean
|
|
132
|
+
},
|
|
133
|
+
some: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
134
|
+
// summary:
|
|
135
|
+
// tests whether some element in the array passes the test
|
|
136
|
+
// implemented by the provided function.
|
|
137
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
138
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
139
|
+
var i, n;
|
|
140
|
+
if(lang.isArray(a)){
|
|
141
|
+
// array
|
|
142
|
+
for(i = 0, n = a.length; i < n; ++i){
|
|
143
|
+
if(f.call(o, a[i], i, a)){
|
|
144
|
+
return true; // Boolean
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
148
|
+
// iterator
|
|
149
|
+
for(i = 0; a.hasNext();){
|
|
150
|
+
if(f.call(o, a.next(), i++, a)){
|
|
151
|
+
return true; // Boolean
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}else{
|
|
155
|
+
// object/dictionary
|
|
156
|
+
for(i in a){
|
|
157
|
+
if(!(i in empty)){
|
|
158
|
+
if(f.call(o, a[i], i, a)){
|
|
159
|
+
return true; // Boolean
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
return false; // Boolean
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
return df;
|
|
169
|
+
});
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/lang/functional/fold",["dojo/_base/lang","dojo/_base/array","dojo/_base/kernel","./lambda"],function(_1,_2,_3,df){
|
|
3
|
+
var _4={};
|
|
4
|
+
_1.mixin(df,{foldl:function(a,f,z,o){
|
|
5
|
+
if(typeof a=="string"){
|
|
6
|
+
a=a.split("");
|
|
7
|
+
}
|
|
8
|
+
o=o||_3.global;
|
|
9
|
+
f=df.lambda(f);
|
|
10
|
+
var i,n;
|
|
11
|
+
if(_1.isArray(a)){
|
|
12
|
+
for(i=0,n=a.length;i<n;z=f.call(o,z,a[i],i,a),++i){
|
|
13
|
+
}
|
|
14
|
+
}else{
|
|
15
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
16
|
+
for(i=0;a.hasNext();z=f.call(o,z,a.next(),i++,a)){
|
|
17
|
+
}
|
|
18
|
+
}else{
|
|
19
|
+
for(i in a){
|
|
20
|
+
if(!(i in _4)){
|
|
21
|
+
z=f.call(o,z,a[i],i,a);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return z;
|
|
27
|
+
},foldl1:function(a,f,o){
|
|
28
|
+
if(typeof a=="string"){
|
|
29
|
+
a=a.split("");
|
|
30
|
+
}
|
|
31
|
+
o=o||_3.global;
|
|
32
|
+
f=df.lambda(f);
|
|
33
|
+
var z,i,n;
|
|
34
|
+
if(_1.isArray(a)){
|
|
35
|
+
z=a[0];
|
|
36
|
+
for(i=1,n=a.length;i<n;z=f.call(o,z,a[i],i,a),++i){
|
|
37
|
+
}
|
|
38
|
+
}else{
|
|
39
|
+
if(typeof a.hasNext=="function"&&typeof a.next=="function"){
|
|
40
|
+
if(a.hasNext()){
|
|
41
|
+
z=a.next();
|
|
42
|
+
for(i=1;a.hasNext();z=f.call(o,z,a.next(),i++,a)){
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}else{
|
|
46
|
+
var _5=true;
|
|
47
|
+
for(i in a){
|
|
48
|
+
if(!(i in _4)){
|
|
49
|
+
if(_5){
|
|
50
|
+
z=a[i];
|
|
51
|
+
_5=false;
|
|
52
|
+
}else{
|
|
53
|
+
z=f.call(o,z,a[i],i,a);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return z;
|
|
60
|
+
},foldr:function(a,f,z,o){
|
|
61
|
+
if(typeof a=="string"){
|
|
62
|
+
a=a.split("");
|
|
63
|
+
}
|
|
64
|
+
o=o||_3.global;
|
|
65
|
+
f=df.lambda(f);
|
|
66
|
+
for(var i=a.length;i>0;--i,z=f.call(o,z,a[i],i,a)){
|
|
67
|
+
}
|
|
68
|
+
return z;
|
|
69
|
+
},foldr1:function(a,f,o){
|
|
70
|
+
if(typeof a=="string"){
|
|
71
|
+
a=a.split("");
|
|
72
|
+
}
|
|
73
|
+
o=o||_3.global;
|
|
74
|
+
f=df.lambda(f);
|
|
75
|
+
var n=a.length,z=a[n-1],i=n-1;
|
|
76
|
+
for(;i>0;--i,z=f.call(o,z,a[i],i,a)){
|
|
77
|
+
}
|
|
78
|
+
return z;
|
|
79
|
+
},reduce:function(a,f,z){
|
|
80
|
+
return arguments.length<3?df.foldl1(a,f):df.foldl(a,f,z);
|
|
81
|
+
},reduceRight:function(a,f,z){
|
|
82
|
+
return arguments.length<3?df.foldr1(a,f):df.foldr(a,f,z);
|
|
83
|
+
},unfold:function(pr,f,g,z,o){
|
|
84
|
+
o=o||_3.global;
|
|
85
|
+
f=df.lambda(f);
|
|
86
|
+
g=df.lambda(g);
|
|
87
|
+
pr=df.lambda(pr);
|
|
88
|
+
var t=[];
|
|
89
|
+
for(;!pr.call(o,z);t.push(f.call(o,z)),z=g.call(o,z)){
|
|
90
|
+
}
|
|
91
|
+
return t;
|
|
92
|
+
}});
|
|
93
|
+
});
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
define("dojox/lang/functional/fold", ["dojo/_base/lang", "dojo/_base/array", "dojo/_base/kernel", "./lambda"],
|
|
2
|
+
function(lang, arr, kernel, df){
|
|
3
|
+
|
|
4
|
+
// This module adds high-level functions and related constructs:
|
|
5
|
+
// - "fold" family of functions
|
|
6
|
+
|
|
7
|
+
// Notes:
|
|
8
|
+
// - missing high-level functions are provided with the compatible API:
|
|
9
|
+
// foldl, foldl1, foldr, foldr1
|
|
10
|
+
// - missing JS standard functions are provided with the compatible API:
|
|
11
|
+
// reduce, reduceRight
|
|
12
|
+
// - the fold's counterpart: unfold
|
|
13
|
+
|
|
14
|
+
// Defined methods:
|
|
15
|
+
// - take any valid lambda argument as the functional argument
|
|
16
|
+
// - operate on dense arrays
|
|
17
|
+
// - take a string as the array argument
|
|
18
|
+
// - take an iterator objects as the array argument (only foldl, foldl1, and reduce)
|
|
19
|
+
|
|
20
|
+
var empty = {};
|
|
21
|
+
|
|
22
|
+
lang.mixin(df, {
|
|
23
|
+
// classic reduce-class functions
|
|
24
|
+
foldl: function(/*Array|String|Object*/ a, /*Function*/ f, /*Object*/ z, /*Object?*/ o){
|
|
25
|
+
// summary:
|
|
26
|
+
// repeatedly applies a binary function to an array from left
|
|
27
|
+
// to right using a seed value as a starting point; returns the final
|
|
28
|
+
// value.
|
|
29
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
30
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
31
|
+
var i, n;
|
|
32
|
+
if(lang.isArray(a)){
|
|
33
|
+
// array
|
|
34
|
+
for(i = 0, n = a.length; i < n; z = f.call(o, z, a[i], i, a), ++i);
|
|
35
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
36
|
+
// iterator
|
|
37
|
+
for(i = 0; a.hasNext(); z = f.call(o, z, a.next(), i++, a));
|
|
38
|
+
}else{
|
|
39
|
+
// object/dictionary
|
|
40
|
+
for(i in a){
|
|
41
|
+
if(!(i in empty)){
|
|
42
|
+
z = f.call(o, z, a[i], i, a);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return z; // Object
|
|
47
|
+
},
|
|
48
|
+
foldl1: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
49
|
+
// summary:
|
|
50
|
+
// repeatedly applies a binary function to an array from left
|
|
51
|
+
// to right; returns the final value.
|
|
52
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
53
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
54
|
+
var z, i, n;
|
|
55
|
+
if(lang.isArray(a)){
|
|
56
|
+
// array
|
|
57
|
+
z = a[0];
|
|
58
|
+
for(i = 1, n = a.length; i < n; z = f.call(o, z, a[i], i, a), ++i);
|
|
59
|
+
}else if(typeof a.hasNext == "function" && typeof a.next == "function"){
|
|
60
|
+
// iterator
|
|
61
|
+
if(a.hasNext()){
|
|
62
|
+
z = a.next();
|
|
63
|
+
for(i = 1; a.hasNext(); z = f.call(o, z, a.next(), i++, a));
|
|
64
|
+
}
|
|
65
|
+
}else{
|
|
66
|
+
// object/dictionary
|
|
67
|
+
var first = true;
|
|
68
|
+
for(i in a){
|
|
69
|
+
if(!(i in empty)){
|
|
70
|
+
if(first){
|
|
71
|
+
z = a[i];
|
|
72
|
+
first = false;
|
|
73
|
+
}else{
|
|
74
|
+
z = f.call(o, z, a[i], i, a);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
return z; // Object
|
|
80
|
+
},
|
|
81
|
+
foldr: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object*/ z, /*Object?*/ o){
|
|
82
|
+
// summary:
|
|
83
|
+
// repeatedly applies a binary function to an array from right
|
|
84
|
+
// to left using a seed value as a starting point; returns the final
|
|
85
|
+
// value.
|
|
86
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
87
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
88
|
+
for(var i = a.length; i > 0; --i, z = f.call(o, z, a[i], i, a));
|
|
89
|
+
return z; // Object
|
|
90
|
+
},
|
|
91
|
+
foldr1: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ o){
|
|
92
|
+
// summary:
|
|
93
|
+
// repeatedly applies a binary function to an array from right
|
|
94
|
+
// to left; returns the final value.
|
|
95
|
+
if(typeof a == "string"){ a = a.split(""); }
|
|
96
|
+
o = o || kernel.global; f = df.lambda(f);
|
|
97
|
+
var n = a.length, z = a[n - 1], i = n - 1;
|
|
98
|
+
for(; i > 0; --i, z = f.call(o, z, a[i], i, a));
|
|
99
|
+
return z; // Object
|
|
100
|
+
},
|
|
101
|
+
// JS 1.8 standard array functions, which can take a lambda as a parameter.
|
|
102
|
+
reduce: function(/*Array|String|Object*/ a, /*Function|String|Array*/ f, /*Object?*/ z){
|
|
103
|
+
// summary:
|
|
104
|
+
// apply a function simultaneously against two values of the array
|
|
105
|
+
// (from left-to-right) as to reduce it to a single value.
|
|
106
|
+
return arguments.length < 3 ? df.foldl1(a, f) : df.foldl(a, f, z); // Object
|
|
107
|
+
},
|
|
108
|
+
reduceRight: function(/*Array|String*/ a, /*Function|String|Array*/ f, /*Object?*/ z){
|
|
109
|
+
// summary:
|
|
110
|
+
// apply a function simultaneously against two values of the array
|
|
111
|
+
// (from right-to-left) as to reduce it to a single value.
|
|
112
|
+
return arguments.length < 3 ? df.foldr1(a, f) : df.foldr(a, f, z); // Object
|
|
113
|
+
},
|
|
114
|
+
// the fold's counterpart: unfold
|
|
115
|
+
unfold: function(/*Function|String|Array*/ pr, /*Function|String|Array*/ f,
|
|
116
|
+
/*Function|String|Array*/ g, /*Object*/ z, /*Object?*/ o){
|
|
117
|
+
// summary:
|
|
118
|
+
// builds an array by unfolding a value
|
|
119
|
+
o = o || kernel.global; f = df.lambda(f); g = df.lambda(g); pr = df.lambda(pr);
|
|
120
|
+
var t = [];
|
|
121
|
+
for(; !pr.call(o, z); t.push(f.call(o, z)), z = g.call(o, z));
|
|
122
|
+
return t; // Array
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
});
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
//>>built
|
|
2
|
+
define("dojox/lang/functional/lambda",["../..","dojo/_base/lang","dojo/_base/array"],function(_1,_2,_3){
|
|
3
|
+
var df=_2.getObject("lang.functional",true,_1);
|
|
4
|
+
var _4={};
|
|
5
|
+
var _5="ab".split(/a*/).length>1?String.prototype.split:function(_6){
|
|
6
|
+
var r=this.split.call(this,_6),m=_6.exec(this);
|
|
7
|
+
if(m&&m.index==0){
|
|
8
|
+
r.unshift("");
|
|
9
|
+
}
|
|
10
|
+
return r;
|
|
11
|
+
};
|
|
12
|
+
var _7=function(s){
|
|
13
|
+
var _8=[],_9=_5.call(s,/\s*->\s*/m);
|
|
14
|
+
if(_9.length>1){
|
|
15
|
+
while(_9.length){
|
|
16
|
+
s=_9.pop();
|
|
17
|
+
_8=_9.pop().split(/\s*,\s*|\s+/m);
|
|
18
|
+
if(_9.length){
|
|
19
|
+
_9.push("(function("+_8.join(", ")+"){ return ("+s+"); })");
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}else{
|
|
23
|
+
if(s.match(/\b_\b/)){
|
|
24
|
+
_8=["_"];
|
|
25
|
+
}else{
|
|
26
|
+
var l=s.match(/^\s*(?:[+*\/%&|\^\.=<>]|!=)/m),r=s.match(/[+\-*\/%&|\^\.=<>!]\s*$/m);
|
|
27
|
+
if(l||r){
|
|
28
|
+
if(l){
|
|
29
|
+
_8.push("$1");
|
|
30
|
+
s="$1"+s;
|
|
31
|
+
}
|
|
32
|
+
if(r){
|
|
33
|
+
_8.push("$2");
|
|
34
|
+
s=s+"$2";
|
|
35
|
+
}
|
|
36
|
+
}else{
|
|
37
|
+
var _a=s.replace(/(?:\b[A-Z]|\.[a-zA-Z_$])[a-zA-Z_$\d]*|[a-zA-Z_$][a-zA-Z_$\d]*:|this|true|false|null|undefined|typeof|instanceof|in|delete|new|void|arguments|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|escape|eval|isFinite|isNaN|parseFloat|parseInt|unescape|dojo|dijit|dojox|window|document|'(?:[^'\\]|\\.)*'|"(?:[^"\\]|\\.)*"/g,"").match(/([a-z_$][a-z_$\d]*)/gi)||[],t={};
|
|
38
|
+
_3.forEach(_a,function(v){
|
|
39
|
+
if(!t.hasOwnProperty(v)){
|
|
40
|
+
_8.push(v);
|
|
41
|
+
t[v]=1;
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return {args:_8,body:s};
|
|
48
|
+
};
|
|
49
|
+
var _b=function(a){
|
|
50
|
+
return a.length?function(){
|
|
51
|
+
var i=a.length-1,x=df.lambda(a[i]).apply(this,arguments);
|
|
52
|
+
for(--i;i>=0;--i){
|
|
53
|
+
x=df.lambda(a[i]).call(this,x);
|
|
54
|
+
}
|
|
55
|
+
return x;
|
|
56
|
+
}:function(x){
|
|
57
|
+
return x;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
_2.mixin(df,{rawLambda:function(s){
|
|
61
|
+
return _7(s);
|
|
62
|
+
},buildLambda:function(s){
|
|
63
|
+
var l=_7(s);
|
|
64
|
+
return "function("+l.args.join(",")+"){return ("+l.body+");}";
|
|
65
|
+
},lambda:function(s){
|
|
66
|
+
if(typeof s=="function"){
|
|
67
|
+
return s;
|
|
68
|
+
}
|
|
69
|
+
if(s instanceof Array){
|
|
70
|
+
return _b(s);
|
|
71
|
+
}
|
|
72
|
+
if(_4.hasOwnProperty(s)){
|
|
73
|
+
return _4[s];
|
|
74
|
+
}
|
|
75
|
+
var l=_7(s);
|
|
76
|
+
return _4[s]=new Function(l.args,"return ("+l.body+");");
|
|
77
|
+
},clearLambdaCache:function(){
|
|
78
|
+
_4={};
|
|
79
|
+
}});
|
|
80
|
+
return df;
|
|
81
|
+
});
|