@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,211 @@
|
|
|
1
|
+
define("dijit/typematic", [
|
|
2
|
+
"dojo/_base/array", // array.forEach
|
|
3
|
+
"dojo/_base/connect", // connect._keyPress
|
|
4
|
+
"dojo/_base/lang", // lang.mixin, lang.hitch
|
|
5
|
+
"dojo/on",
|
|
6
|
+
"dojo/sniff", // has("ie")
|
|
7
|
+
"./main" // setting dijit.typematic global
|
|
8
|
+
], function(array, connect, lang, on, has, dijit){
|
|
9
|
+
|
|
10
|
+
// module:
|
|
11
|
+
// dijit/typematic
|
|
12
|
+
|
|
13
|
+
var typematic = (dijit.typematic = {
|
|
14
|
+
// summary:
|
|
15
|
+
// These functions are used to repetitively call a user specified callback
|
|
16
|
+
// method when a specific key or mouse click over a specific DOM node is
|
|
17
|
+
// held down for a specific amount of time.
|
|
18
|
+
// Only 1 such event is allowed to occur on the browser page at 1 time.
|
|
19
|
+
|
|
20
|
+
_fireEventAndReload: function(){
|
|
21
|
+
this._timer = null;
|
|
22
|
+
this._callback(++this._count, this._node, this._evt);
|
|
23
|
+
|
|
24
|
+
// Schedule next event, timer is at most minDelay (default 10ms) to avoid
|
|
25
|
+
// browser overload (particularly avoiding starving DOH robot so it never gets to send a mouseup)
|
|
26
|
+
this._currentTimeout = Math.max(
|
|
27
|
+
this._currentTimeout < 0 ? this._initialDelay :
|
|
28
|
+
(this._subsequentDelay > 1 ? this._subsequentDelay : Math.round(this._currentTimeout * this._subsequentDelay)),
|
|
29
|
+
this._minDelay);
|
|
30
|
+
this._timer = setTimeout(lang.hitch(this, "_fireEventAndReload"), this._currentTimeout);
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
trigger: function(/*Event*/ evt, /*Object*/ _this, /*DOMNode*/ node, /*Function*/ callback, /*Object*/ obj, /*Number?*/ subsequentDelay, /*Number?*/ initialDelay, /*Number?*/ minDelay){
|
|
34
|
+
// summary:
|
|
35
|
+
// Start a timed, repeating callback sequence.
|
|
36
|
+
// If already started, the function call is ignored.
|
|
37
|
+
// This method is not normally called by the user but can be
|
|
38
|
+
// when the normal listener code is insufficient.
|
|
39
|
+
// evt:
|
|
40
|
+
// key or mouse event object to pass to the user callback
|
|
41
|
+
// _this:
|
|
42
|
+
// pointer to the user's widget space.
|
|
43
|
+
// node:
|
|
44
|
+
// the DOM node object to pass the the callback function
|
|
45
|
+
// callback:
|
|
46
|
+
// function to call until the sequence is stopped called with 3 parameters:
|
|
47
|
+
// count:
|
|
48
|
+
// integer representing number of repeated calls (0..n) with -1 indicating the iteration has stopped
|
|
49
|
+
// node:
|
|
50
|
+
// the DOM node object passed in
|
|
51
|
+
// evt:
|
|
52
|
+
// key or mouse event object
|
|
53
|
+
// obj:
|
|
54
|
+
// user space object used to uniquely identify each typematic sequence
|
|
55
|
+
// subsequentDelay:
|
|
56
|
+
// if > 1, the number of milliseconds until the 3->n events occur
|
|
57
|
+
// or else the fractional time multiplier for the next event's delay, default=0.9
|
|
58
|
+
// initialDelay:
|
|
59
|
+
// the number of milliseconds until the 2nd event occurs, default=500ms
|
|
60
|
+
// minDelay:
|
|
61
|
+
// the maximum delay in milliseconds for event to fire, default=10ms
|
|
62
|
+
if(obj != this._obj){
|
|
63
|
+
this.stop();
|
|
64
|
+
this._initialDelay = initialDelay || 500;
|
|
65
|
+
this._subsequentDelay = subsequentDelay || 0.90;
|
|
66
|
+
this._minDelay = minDelay || 10;
|
|
67
|
+
this._obj = obj;
|
|
68
|
+
this._node = node;
|
|
69
|
+
this._currentTimeout = -1;
|
|
70
|
+
this._count = -1;
|
|
71
|
+
this._callback = lang.hitch(_this, callback);
|
|
72
|
+
this._evt = { faux: true };
|
|
73
|
+
for(var attr in evt){
|
|
74
|
+
if(attr != "layerX" && attr != "layerY"){ // prevent WebKit warnings
|
|
75
|
+
var v = evt[attr];
|
|
76
|
+
if(typeof v != "function" && typeof v != "undefined"){
|
|
77
|
+
this._evt[attr] = v
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
this._fireEventAndReload();
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
|
|
85
|
+
stop: function(){
|
|
86
|
+
// summary:
|
|
87
|
+
// Stop an ongoing timed, repeating callback sequence.
|
|
88
|
+
if(this._timer){
|
|
89
|
+
clearTimeout(this._timer);
|
|
90
|
+
this._timer = null;
|
|
91
|
+
}
|
|
92
|
+
if(this._obj){
|
|
93
|
+
this._callback(-1, this._node, this._evt);
|
|
94
|
+
this._obj = null;
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
addKeyListener: function(/*DOMNode*/ node, /*Object*/ keyObject, /*Object*/ _this, /*Function*/ callback, /*Number*/ subsequentDelay, /*Number*/ initialDelay, /*Number?*/ minDelay){
|
|
99
|
+
// summary:
|
|
100
|
+
// Start listening for a specific typematic key.
|
|
101
|
+
// See also the trigger method for other parameters.
|
|
102
|
+
// keyObject:
|
|
103
|
+
// an object defining the key to listen for:
|
|
104
|
+
//
|
|
105
|
+
// - keyCode: the keyCode (number) to listen for, used for non-printable keys
|
|
106
|
+
// - charCode: the charCode (number) to listen for, used for printable keys
|
|
107
|
+
// - charOrCode: deprecated, use keyCode or charCode
|
|
108
|
+
// - ctrlKey: desired ctrl key state to initiate the callback sequence:
|
|
109
|
+
// - pressed (true)
|
|
110
|
+
// - released (false)
|
|
111
|
+
// - either (unspecified)
|
|
112
|
+
// - altKey: same as ctrlKey but for the alt key
|
|
113
|
+
// - shiftKey: same as ctrlKey but for the shift key
|
|
114
|
+
// returns:
|
|
115
|
+
// a connection handle
|
|
116
|
+
|
|
117
|
+
// Setup keydown or keypress listener depending on whether keyCode or charCode was specified.
|
|
118
|
+
// If charOrCode is specified use deprecated connect._keypress synthetic event (remove for 2.0)
|
|
119
|
+
var type = "keyCode" in keyObject ? "keydown" : "charCode" in keyObject ? "keypress" : connect._keypress,
|
|
120
|
+
attr = "keyCode" in keyObject ? "keyCode" : "charCode" in keyObject ? "charCode" : "charOrCode";
|
|
121
|
+
|
|
122
|
+
var handles = [
|
|
123
|
+
on(node, type, lang.hitch(this, function(evt){
|
|
124
|
+
if(evt[attr] == keyObject[attr] &&
|
|
125
|
+
(keyObject.ctrlKey === undefined || keyObject.ctrlKey == evt.ctrlKey) &&
|
|
126
|
+
(keyObject.altKey === undefined || keyObject.altKey == evt.altKey) &&
|
|
127
|
+
(keyObject.metaKey === undefined || keyObject.metaKey == (evt.metaKey || false)) && // IE doesn't even set metaKey
|
|
128
|
+
(keyObject.shiftKey === undefined || keyObject.shiftKey == evt.shiftKey)){
|
|
129
|
+
evt.stopPropagation();
|
|
130
|
+
evt.preventDefault();
|
|
131
|
+
typematic.trigger(evt, _this, node, callback, keyObject, subsequentDelay, initialDelay, minDelay);
|
|
132
|
+
}else if(typematic._obj == keyObject){
|
|
133
|
+
typematic.stop();
|
|
134
|
+
}
|
|
135
|
+
})),
|
|
136
|
+
on(node, "keyup", lang.hitch(this, function(){
|
|
137
|
+
if(typematic._obj == keyObject){
|
|
138
|
+
typematic.stop();
|
|
139
|
+
}
|
|
140
|
+
}))
|
|
141
|
+
];
|
|
142
|
+
return { remove: function(){
|
|
143
|
+
array.forEach(handles, function(h){
|
|
144
|
+
h.remove();
|
|
145
|
+
});
|
|
146
|
+
} };
|
|
147
|
+
},
|
|
148
|
+
|
|
149
|
+
addMouseListener: function(/*DOMNode*/ node, /*Object*/ _this, /*Function*/ callback, /*Number*/ subsequentDelay, /*Number*/ initialDelay, /*Number?*/ minDelay){
|
|
150
|
+
// summary:
|
|
151
|
+
// Start listening for a typematic mouse click.
|
|
152
|
+
// See the trigger method for other parameters.
|
|
153
|
+
// returns:
|
|
154
|
+
// a connection handle
|
|
155
|
+
var handles = [
|
|
156
|
+
on(node, "mousedown", lang.hitch(this, function(evt){
|
|
157
|
+
evt.preventDefault();
|
|
158
|
+
typematic.trigger(evt, _this, node, callback, node, subsequentDelay, initialDelay, minDelay);
|
|
159
|
+
})),
|
|
160
|
+
on(node, "mouseup", lang.hitch(this, function(evt){
|
|
161
|
+
if(this._obj){
|
|
162
|
+
evt.preventDefault();
|
|
163
|
+
}
|
|
164
|
+
typematic.stop();
|
|
165
|
+
})),
|
|
166
|
+
on(node, "mouseout", lang.hitch(this, function(evt){
|
|
167
|
+
if(this._obj){
|
|
168
|
+
evt.preventDefault();
|
|
169
|
+
}
|
|
170
|
+
typematic.stop();
|
|
171
|
+
})),
|
|
172
|
+
on(node, "dblclick", lang.hitch(this, function(evt){
|
|
173
|
+
evt.preventDefault();
|
|
174
|
+
if(has("ie") < 9){
|
|
175
|
+
typematic.trigger(evt, _this, node, callback, node, subsequentDelay, initialDelay, minDelay);
|
|
176
|
+
setTimeout(lang.hitch(this, typematic.stop), 50);
|
|
177
|
+
}
|
|
178
|
+
}))
|
|
179
|
+
];
|
|
180
|
+
return { remove: function(){
|
|
181
|
+
array.forEach(handles, function(h){
|
|
182
|
+
h.remove();
|
|
183
|
+
});
|
|
184
|
+
} };
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
addListener: function(/*Node*/ mouseNode, /*Node*/ keyNode, /*Object*/ keyObject, /*Object*/ _this, /*Function*/ callback, /*Number*/ subsequentDelay, /*Number*/ initialDelay, /*Number?*/ minDelay){
|
|
188
|
+
// summary:
|
|
189
|
+
// Start listening for a specific typematic key and mouseclick.
|
|
190
|
+
// This is a thin wrapper to addKeyListener and addMouseListener.
|
|
191
|
+
// See the addMouseListener and addKeyListener methods for other parameters.
|
|
192
|
+
// mouseNode:
|
|
193
|
+
// the DOM node object to listen on for mouse events.
|
|
194
|
+
// keyNode:
|
|
195
|
+
// the DOM node object to listen on for key events.
|
|
196
|
+
// returns:
|
|
197
|
+
// a connection handle
|
|
198
|
+
var handles = [
|
|
199
|
+
this.addKeyListener(keyNode, keyObject, _this, callback, subsequentDelay, initialDelay, minDelay),
|
|
200
|
+
this.addMouseListener(mouseNode, _this, callback, subsequentDelay, initialDelay, minDelay)
|
|
201
|
+
];
|
|
202
|
+
return { remove: function(){
|
|
203
|
+
array.forEach(handles, function(h){
|
|
204
|
+
h.remove();
|
|
205
|
+
});
|
|
206
|
+
} };
|
|
207
|
+
}
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
return typematic;
|
|
211
|
+
});
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright (c) 2004-2017, The JS Foundation All Rights Reserved.
|
|
3
|
+
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
|
4
|
+
see: http://dojotoolkit.org/license for details
|
|
5
|
+
*/
|
|
6
|
+
//>>built
|
|
7
|
+
define("dojo/NodeList-manipulate",["./query","./_base/lang","./_base/array","./dom-construct","./dom-attr","./NodeList-dom"],function(_1,_2,_3,_4,_5){
|
|
8
|
+
var _6=_1.NodeList;
|
|
9
|
+
function _7(_8){
|
|
10
|
+
while(_8.childNodes[0]&&_8.childNodes[0].nodeType==1){
|
|
11
|
+
_8=_8.childNodes[0];
|
|
12
|
+
}
|
|
13
|
+
return _8;
|
|
14
|
+
};
|
|
15
|
+
function _9(_a,_b){
|
|
16
|
+
if(typeof _a=="string"){
|
|
17
|
+
_a=_4.toDom(_a,(_b&&_b.ownerDocument));
|
|
18
|
+
if(_a.nodeType==11){
|
|
19
|
+
_a=_a.childNodes[0];
|
|
20
|
+
}
|
|
21
|
+
}else{
|
|
22
|
+
if(_a.nodeType==1&&_a.parentNode){
|
|
23
|
+
_a=_a.cloneNode(false);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
return _a;
|
|
27
|
+
};
|
|
28
|
+
_2.extend(_6,{_placeMultiple:function(_c,_d){
|
|
29
|
+
var _e=typeof _c=="string"||_c.nodeType?_1(_c):_c;
|
|
30
|
+
var _f=[];
|
|
31
|
+
for(var i=0;i<_e.length;i++){
|
|
32
|
+
var _10=_e[i];
|
|
33
|
+
var _11=this.length;
|
|
34
|
+
for(var j=_11-1,_12;_12=this[j];j--){
|
|
35
|
+
if(i>0){
|
|
36
|
+
_12=this._cloneNode(_12);
|
|
37
|
+
_f.unshift(_12);
|
|
38
|
+
}
|
|
39
|
+
if(j==_11-1){
|
|
40
|
+
_4.place(_12,_10,_d);
|
|
41
|
+
}else{
|
|
42
|
+
_10.parentNode.insertBefore(_12,_10);
|
|
43
|
+
}
|
|
44
|
+
_10=_12;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
if(_f.length){
|
|
48
|
+
_f.unshift(0);
|
|
49
|
+
_f.unshift(this.length-1);
|
|
50
|
+
Array.prototype.splice.apply(this,_f);
|
|
51
|
+
}
|
|
52
|
+
return this;
|
|
53
|
+
},innerHTML:function(_13){
|
|
54
|
+
if(arguments.length){
|
|
55
|
+
return this.addContent(_13,"only");
|
|
56
|
+
}else{
|
|
57
|
+
return this[0].innerHTML;
|
|
58
|
+
}
|
|
59
|
+
},text:function(_14){
|
|
60
|
+
if(arguments.length){
|
|
61
|
+
for(var i=0,_15;_15=this[i];i++){
|
|
62
|
+
if(_15.nodeType==1){
|
|
63
|
+
_5.set(_15,"textContent",_14);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
return this;
|
|
67
|
+
}else{
|
|
68
|
+
var _16="";
|
|
69
|
+
for(i=0;_15=this[i];i++){
|
|
70
|
+
_16+=_5.get(_15,"textContent");
|
|
71
|
+
}
|
|
72
|
+
return _16;
|
|
73
|
+
}
|
|
74
|
+
},val:function(_17){
|
|
75
|
+
if(arguments.length){
|
|
76
|
+
var _18=_2.isArray(_17);
|
|
77
|
+
for(var _19=0,_1a;_1a=this[_19];_19++){
|
|
78
|
+
var _1b=_1a.nodeName.toUpperCase();
|
|
79
|
+
var _1c=_1a.type;
|
|
80
|
+
var _1d=_18?_17[_19]:_17;
|
|
81
|
+
if(_1b=="SELECT"){
|
|
82
|
+
var _1e=_1a.options;
|
|
83
|
+
for(var i=0;i<_1e.length;i++){
|
|
84
|
+
var opt=_1e[i];
|
|
85
|
+
if(_1a.multiple){
|
|
86
|
+
opt.selected=(_3.indexOf(_17,opt.value)!=-1);
|
|
87
|
+
}else{
|
|
88
|
+
opt.selected=(opt.value==_1d);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}else{
|
|
92
|
+
if(_1c=="checkbox"||_1c=="radio"){
|
|
93
|
+
_1a.checked=(_1a.value==_1d);
|
|
94
|
+
}else{
|
|
95
|
+
_1a.value=_1d;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
return this;
|
|
100
|
+
}else{
|
|
101
|
+
_1a=this[0];
|
|
102
|
+
if(!_1a||_1a.nodeType!=1){
|
|
103
|
+
return undefined;
|
|
104
|
+
}
|
|
105
|
+
_17=_1a.value||"";
|
|
106
|
+
if(_1a.nodeName.toUpperCase()=="SELECT"&&_1a.multiple){
|
|
107
|
+
_17=[];
|
|
108
|
+
_1e=_1a.options;
|
|
109
|
+
for(i=0;i<_1e.length;i++){
|
|
110
|
+
opt=_1e[i];
|
|
111
|
+
if(opt.selected){
|
|
112
|
+
_17.push(opt.value);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
if(!_17.length){
|
|
116
|
+
_17=null;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
return _17;
|
|
120
|
+
}
|
|
121
|
+
},append:function(_1f){
|
|
122
|
+
return this.addContent(_1f,"last");
|
|
123
|
+
},appendTo:function(_20){
|
|
124
|
+
return this._placeMultiple(_20,"last");
|
|
125
|
+
},prepend:function(_21){
|
|
126
|
+
return this.addContent(_21,"first");
|
|
127
|
+
},prependTo:function(_22){
|
|
128
|
+
return this._placeMultiple(_22,"first");
|
|
129
|
+
},after:function(_23){
|
|
130
|
+
return this.addContent(_23,"after");
|
|
131
|
+
},insertAfter:function(_24){
|
|
132
|
+
return this._placeMultiple(_24,"after");
|
|
133
|
+
},before:function(_25){
|
|
134
|
+
return this.addContent(_25,"before");
|
|
135
|
+
},insertBefore:function(_26){
|
|
136
|
+
return this._placeMultiple(_26,"before");
|
|
137
|
+
},remove:_6.prototype.orphan,wrap:function(_27){
|
|
138
|
+
if(this[0]){
|
|
139
|
+
_27=_9(_27,this[0]);
|
|
140
|
+
for(var i=0,_28;_28=this[i];i++){
|
|
141
|
+
var _29=this._cloneNode(_27);
|
|
142
|
+
if(_28.parentNode){
|
|
143
|
+
_28.parentNode.replaceChild(_29,_28);
|
|
144
|
+
}
|
|
145
|
+
var _2a=_7(_29);
|
|
146
|
+
_2a.appendChild(_28);
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
return this;
|
|
150
|
+
},wrapAll:function(_2b){
|
|
151
|
+
if(this[0]){
|
|
152
|
+
_2b=_9(_2b,this[0]);
|
|
153
|
+
this[0].parentNode.replaceChild(_2b,this[0]);
|
|
154
|
+
var _2c=_7(_2b);
|
|
155
|
+
for(var i=0,_2d;_2d=this[i];i++){
|
|
156
|
+
_2c.appendChild(_2d);
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
return this;
|
|
160
|
+
},wrapInner:function(_2e){
|
|
161
|
+
if(this[0]){
|
|
162
|
+
_2e=_9(_2e,this[0]);
|
|
163
|
+
for(var i=0;i<this.length;i++){
|
|
164
|
+
var _2f=this._cloneNode(_2e);
|
|
165
|
+
this._wrap(_2._toArray(this[i].childNodes),null,this._NodeListCtor).wrapAll(_2f);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
return this;
|
|
169
|
+
},replaceWith:function(_30){
|
|
170
|
+
_30=this._normalize(_30,this[0]);
|
|
171
|
+
for(var i=0,_31;_31=this[i];i++){
|
|
172
|
+
this._place(_30,_31,"before",i>0);
|
|
173
|
+
_31.parentNode.removeChild(_31);
|
|
174
|
+
}
|
|
175
|
+
return this;
|
|
176
|
+
},replaceAll:function(_32){
|
|
177
|
+
var nl=_1(_32);
|
|
178
|
+
var _33=this._normalize(this,this[0]);
|
|
179
|
+
for(var i=0,_34;_34=nl[i];i++){
|
|
180
|
+
this._place(_33,_34,"before",i>0);
|
|
181
|
+
_34.parentNode.removeChild(_34);
|
|
182
|
+
}
|
|
183
|
+
return this;
|
|
184
|
+
},clone:function(){
|
|
185
|
+
var ary=[];
|
|
186
|
+
for(var i=0;i<this.length;i++){
|
|
187
|
+
ary.push(this._cloneNode(this[i]));
|
|
188
|
+
}
|
|
189
|
+
return this._wrap(ary,this,this._NodeListCtor);
|
|
190
|
+
}});
|
|
191
|
+
if(!_6.prototype.html){
|
|
192
|
+
_6.prototype.html=_6.prototype.innerHTML;
|
|
193
|
+
}
|
|
194
|
+
return _6;
|
|
195
|
+
});
|