From 605d968f5c878dc44de196e4aeb75f1039a1c42f Mon Sep 17 00:00:00 2001 From: jrtechs Date: Sat, 4 Jan 2020 20:01:43 -0500 Subject: [PATCH] Upgraded version of the visjs timeline which fixed date inconsitencies at different scales. --- includes/js/vis/dist/vis-timeline-graph2d.css | 1215 + .../js/vis/dist/vis-timeline-graph2d.esm.js | 48797 ++++++++++++++++ .../vis/dist/vis-timeline-graph2d.esm.js.map | 1 + .../js/vis/dist/vis-timeline-graph2d.min.css | 2 +- .../js/vis/dist/vis-timeline-graph2d.min.js | 72 +- .../vis/dist/vis-timeline-graph2d.min.js.map | 1 + 6 files changed, 50057 insertions(+), 31 deletions(-) create mode 100644 includes/js/vis/dist/vis-timeline-graph2d.css create mode 100644 includes/js/vis/dist/vis-timeline-graph2d.esm.js create mode 100644 includes/js/vis/dist/vis-timeline-graph2d.esm.js.map create mode 100644 includes/js/vis/dist/vis-timeline-graph2d.min.js.map diff --git a/includes/js/vis/dist/vis-timeline-graph2d.css b/includes/js/vis/dist/vis-timeline-graph2d.css new file mode 100644 index 0000000..904c6d2 --- /dev/null +++ b/includes/js/vis/dist/vis-timeline-graph2d.css @@ -0,0 +1,1215 @@ +.vis-custom-time { + background-color: #6E94FF; + width: 2px; + cursor: move; + z-index: 1; +} + +.vis-custom-time > .vis-custom-time-marker { + background-color: inherit; + color: white; + font-size: 12px; + white-space: nowrap; + padding: 3px 5px; + top: 0px; + cursor: initial; + z-index: inherit; +} +.vis-time-axis { + position: relative; + overflow: hidden; +} + +.vis-time-axis.vis-foreground { + top: 0; + left: 0; + width: 100%; +} + +.vis-time-axis.vis-background { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.vis-time-axis .vis-text { + position: absolute; + color: #4d4d4d; + padding: 3px; + overflow: hidden; + box-sizing: border-box; + + white-space: nowrap; +} + +.vis-time-axis .vis-text.vis-measure { + position: absolute; + padding-left: 0; + padding-right: 0; + margin-left: 0; + margin-right: 0; + visibility: hidden; +} + +.vis-time-axis .vis-grid.vis-vertical { + position: absolute; + border-left: 1px solid; +} + +.vis-time-axis .vis-grid.vis-vertical-rtl { + position: absolute; + border-right: 1px solid; +} + +.vis-time-axis .vis-grid.vis-minor { + border-color: #e5e5e5; +} + +.vis-time-axis .vis-grid.vis-major { + border-color: #bfbfbf; +} + + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal { + position: absolute; + width: 100%; + height: 0; + border-bottom: 1px solid; +} + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor { + border-color: #e5e5e5; +} + +.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major { + border-color: #bfbfbf; +} + + +.vis-data-axis .vis-y-axis.vis-major { + width: 100%; + position: absolute; + color: #4d4d4d; + white-space: nowrap; +} + +.vis-data-axis .vis-y-axis.vis-major.vis-measure { + padding: 0; + margin: 0; + border: 0; + visibility: hidden; + width: auto; +} + + +.vis-data-axis .vis-y-axis.vis-minor { + position: absolute; + width: 100%; + color: #bebebe; + white-space: nowrap; +} + +.vis-data-axis .vis-y-axis.vis-minor.vis-measure { + padding: 0; + margin: 0; + border: 0; + visibility: hidden; + width: auto; +} + +.vis-data-axis .vis-y-axis.vis-title { + position: absolute; + color: #4d4d4d; + white-space: nowrap; + bottom: 20px; + text-align: center; +} + +.vis-data-axis .vis-y-axis.vis-title.vis-measure { + padding: 0; + margin: 0; + visibility: hidden; + width: auto; +} + +.vis-data-axis .vis-y-axis.vis-title.vis-left { + bottom: 0; + -webkit-transform-origin: left top; + -moz-transform-origin: left top; + -ms-transform-origin: left top; + -o-transform-origin: left top; + transform-origin: left bottom; + -webkit-transform: rotate(-90deg); + -moz-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + -o-transform: rotate(-90deg); + transform: rotate(-90deg); +} + +.vis-data-axis .vis-y-axis.vis-title.vis-right { + bottom: 0; + -webkit-transform-origin: right bottom; + -moz-transform-origin: right bottom; + -ms-transform-origin: right bottom; + -o-transform-origin: right bottom; + transform-origin: right bottom; + -webkit-transform: rotate(90deg); + -moz-transform: rotate(90deg); + -ms-transform: rotate(90deg); + -o-transform: rotate(90deg); + transform: rotate(90deg); +} + +.vis-legend { + background-color: rgba(247, 252, 255, 0.65); + padding: 5px; + border: 1px solid #b3b3b3; + box-shadow: 2px 2px 10px rgba(154, 154, 154, 0.55); +} + +.vis-legend-text { + /*font-size: 10px;*/ + white-space: nowrap; + display: inline-block +} +/* override some bootstrap styles screwing up the timelines css */ + +.vis [class*="span"] { + min-height: 0; + width: auto; +} + + +.vis-item { + position: absolute; + color: #1A1A1A; + border-color: #97B0F8; + border-width: 1px; + background-color: #D5DDF6; + display: inline-block; + z-index: 1; + /*overflow: hidden;*/ +} + +.vis-item.vis-selected { + border-color: #FFC200; + background-color: #FFF785; + + /* z-index must be higher than the z-index of custom time bar and current time bar */ + z-index: 2; +} + +.vis-editable.vis-selected { + cursor: move; +} + +.vis-item.vis-point.vis-selected { + background-color: #FFF785; +} + +.vis-item.vis-box { + text-align: center; + border-style: solid; + border-radius: 2px; +} + +.vis-item.vis-point { + background: none; +} + +.vis-item.vis-dot { + position: absolute; + padding: 0; + border-width: 4px; + border-style: solid; + border-radius: 4px; +} + +.vis-item.vis-range { + border-style: solid; + border-radius: 2px; + box-sizing: border-box; +} + +.vis-item.vis-background { + border: none; + background-color: rgba(213, 221, 246, 0.4); + box-sizing: border-box; + padding: 0; + margin: 0; +} + +.vis-item .vis-item-overflow { + position: relative; + width: 100%; + height: 100%; + padding: 0; + margin: 0; + overflow: hidden; +} + +.vis-item-visible-frame { + white-space: nowrap; +} + +.vis-item.vis-range .vis-item-content { + position: relative; + display: inline-block; +} + +.vis-item.vis-background .vis-item-content { + position: absolute; + display: inline-block; +} + +.vis-item.vis-line { + padding: 0; + position: absolute; + width: 0; + border-left-width: 1px; + border-left-style: solid; +} + +.vis-item .vis-item-content { + white-space: nowrap; + box-sizing: border-box; + padding: 5px; +} + +.vis-item .vis-onUpdateTime-tooltip { + position: absolute; + background: #4f81bd; + color: white; + width: 200px; + text-align: center; + white-space: nowrap; + padding: 5px; + border-radius: 1px; + transition: 0.4s; + -o-transition: 0.4s; + -moz-transition: 0.4s; + -webkit-transition: 0.4s; +} + +.vis-item .vis-delete, .vis-item .vis-delete-rtl { + position: absolute; + top: 0px; + width: 24px; + height: 24px; + box-sizing: border-box; + padding: 0px 5px; + cursor: pointer; + + -webkit-transition: background 0.2s linear; + -moz-transition: background 0.2s linear; + -ms-transition: background 0.2s linear; + -o-transition: background 0.2s linear; + transition: background 0.2s linear; +} + +.vis-item .vis-delete { + right: -24px; +} + +.vis-item .vis-delete-rtl { + left: -24px; +} + +.vis-item .vis-delete:after, .vis-item .vis-delete-rtl:after { + content: "\00D7"; /* MULTIPLICATION SIGN */ + color: red; + font-family: arial, sans-serif; + font-size: 22px; + font-weight: bold; + + -webkit-transition: color 0.2s linear; + -moz-transition: color 0.2s linear; + -ms-transition: color 0.2s linear; + -o-transition: color 0.2s linear; + transition: color 0.2s linear; +} + +.vis-item .vis-delete:hover, .vis-item .vis-delete-rtl:hover { + background: red; +} + +.vis-item .vis-delete:hover:after, .vis-item .vis-delete-rtl:hover:after { + color: white; +} + +.vis-item .vis-drag-center { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0px; + cursor: move; +} + +.vis-item.vis-range .vis-drag-left { + position: absolute; + width: 24px; + max-width: 20%; + min-width: 2px; + height: 100%; + top: 0; + left: -4px; + + cursor: w-resize; +} + +.vis-item.vis-range .vis-drag-right { + position: absolute; + width: 24px; + max-width: 20%; + min-width: 2px; + height: 100%; + top: 0; + right: -4px; + + cursor: e-resize; +} + +.vis-range.vis-item.vis-readonly .vis-drag-left, +.vis-range.vis-item.vis-readonly .vis-drag-right { + cursor: auto; +} + +.vis-item.vis-cluster { + vertical-align: center; + text-align: center; + border-style: solid; + border-radius: 2px; +} + +.vis-item.vis-cluster-line { + padding: 0; + position: absolute; + width: 0; + border-left-width: 1px; + border-left-style: solid; +} + +.vis-item.vis-cluster-dot { + position: absolute; + padding: 0; + border-width: 4px; + border-style: solid; + border-radius: 4px; +} +.vis-timeline { + /* + -webkit-transition: height .4s ease-in-out; + transition: height .4s ease-in-out; + */ +} + +.vis-panel { + /* + -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; + transition: height .4s ease-in-out, top .4s ease-in-out; + */ +} + +.vis-axis { + /* + -webkit-transition: top .4s ease-in-out; + transition: top .4s ease-in-out; + */ +} + +/* TODO: get animation working nicely + +.vis-item { + -webkit-transition: top .4s ease-in-out; + transition: top .4s ease-in-out; +} + +.vis-item.line { + -webkit-transition: height .4s ease-in-out, top .4s ease-in-out; + transition: height .4s ease-in-out, top .4s ease-in-out; +} +/**/ +.vis-current-time { + background-color: #FF7F6E; + width: 2px; + z-index: 1; + pointer-events: none; +} + +.vis-rolling-mode-btn { + height: 40px; + width: 40px; + position: absolute; + top: 7px; + right: 20px; + border-radius: 50%; + font-size: 28px; + cursor: pointer; + opacity: 0.8; + color: white; + font-weight: bold; + text-align: center; + background: #3876c2; +} +.vis-rolling-mode-btn:before { + content: "\26F6"; +} + +.vis-rolling-mode-btn:hover { + opacity: 1; +} +.vis-panel { + position: absolute; + + padding: 0; + margin: 0; + + box-sizing: border-box; +} + +.vis-panel.vis-center, +.vis-panel.vis-left, +.vis-panel.vis-right, +.vis-panel.vis-top, +.vis-panel.vis-bottom { + border: 1px #bfbfbf; +} + +.vis-panel.vis-center, +.vis-panel.vis-left, +.vis-panel.vis-right { + border-top-style: solid; + border-bottom-style: solid; + overflow: hidden; +} + +.vis-left.vis-panel.vis-vertical-scroll, .vis-right.vis-panel.vis-vertical-scroll { + height: 100%; + overflow-x: hidden; + overflow-y: scroll; +} + +.vis-left.vis-panel.vis-vertical-scroll { + direction: rtl; +} + +.vis-left.vis-panel.vis-vertical-scroll .vis-content { + direction: ltr; +} + +.vis-right.vis-panel.vis-vertical-scroll { + direction: ltr; +} + +.vis-right.vis-panel.vis-vertical-scroll .vis-content { + direction: rtl; +} + +.vis-panel.vis-center, +.vis-panel.vis-top, +.vis-panel.vis-bottom { + border-left-style: solid; + border-right-style: solid; +} + +.vis-background { + overflow: hidden; +} + +.vis-panel > .vis-content { + position: relative; +} + +.vis-panel .vis-shadow { + position: absolute; + width: 100%; + height: 1px; + box-shadow: 0 0 10px rgba(0,0,0,0.8); + /* TODO: find a nice way to ensure vis-shadows are drawn on top of items + z-index: 1; + */ +} + +.vis-panel .vis-shadow.vis-top { + top: -1px; + left: 0; +} + +.vis-panel .vis-shadow.vis-bottom { + bottom: -1px; + left: 0; +} +.vis-graph-group0 { + fill:#4f81bd; + fill-opacity:0; + stroke-width:2px; + stroke: #4f81bd; +} + +.vis-graph-group1 { + fill:#f79646; + fill-opacity:0; + stroke-width:2px; + stroke: #f79646; +} + +.vis-graph-group2 { + fill: #8c51cf; + fill-opacity:0; + stroke-width:2px; + stroke: #8c51cf; +} + +.vis-graph-group3 { + fill: #75c841; + fill-opacity:0; + stroke-width:2px; + stroke: #75c841; +} + +.vis-graph-group4 { + fill: #ff0100; + fill-opacity:0; + stroke-width:2px; + stroke: #ff0100; +} + +.vis-graph-group5 { + fill: #37d8e6; + fill-opacity:0; + stroke-width:2px; + stroke: #37d8e6; +} + +.vis-graph-group6 { + fill: #042662; + fill-opacity:0; + stroke-width:2px; + stroke: #042662; +} + +.vis-graph-group7 { + fill:#00ff26; + fill-opacity:0; + stroke-width:2px; + stroke: #00ff26; +} + +.vis-graph-group8 { + fill:#ff00ff; + fill-opacity:0; + stroke-width:2px; + stroke: #ff00ff; +} + +.vis-graph-group9 { + fill: #8f3938; + fill-opacity:0; + stroke-width:2px; + stroke: #8f3938; +} + +.vis-timeline .vis-fill { + fill-opacity:0.1; + stroke: none; +} + + +.vis-timeline .vis-bar { + fill-opacity:0.5; + stroke-width:1px; +} + +.vis-timeline .vis-point { + stroke-width:2px; + fill-opacity:1.0; +} + + +.vis-timeline .vis-legend-background { + stroke-width:1px; + fill-opacity:0.9; + fill: #ffffff; + stroke: #c2c2c2; +} + + +.vis-timeline .vis-outline { + stroke-width:1px; + fill-opacity:1; + fill: #ffffff; + stroke: #e5e5e5; +} + +.vis-timeline .vis-icon-fill { + fill-opacity:0.3; + stroke: none; +} + + +.vis-timeline { + position: relative; + border: 1px solid #bfbfbf; + overflow: hidden; + padding: 0; + margin: 0; + box-sizing: border-box; +} + +.vis-loading-screen { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; +} + +.vis-labelset { + position: relative; + + overflow: hidden; + + box-sizing: border-box; +} + +.vis-labelset .vis-label { + position: relative; + left: 0; + top: 0; + width: 100%; + color: #4d4d4d; + + box-sizing: border-box; +} + +.vis-labelset .vis-label { + border-bottom: 1px solid #bfbfbf; +} + +.vis-labelset .vis-label.draggable { + cursor: pointer; +} + +.vis-group-is-dragging { + background: rgba(0, 0, 0, .1); +} + +.vis-labelset .vis-label:last-child { + border-bottom: none; +} + +.vis-labelset .vis-label .vis-inner { + display: inline-block; + padding: 5px; +} + +.vis-labelset .vis-label .vis-inner.vis-hidden { + padding: 0; +} + + +.vis-itemset { + position: relative; + padding: 0; + margin: 0; + + box-sizing: border-box; +} + +.vis-itemset .vis-background, +.vis-itemset .vis-foreground { + position: absolute; + width: 100%; + height: 100%; + overflow: visible; +} + +.vis-axis { + position: absolute; + width: 100%; + height: 0; + left: 0; + z-index: 1; +} + +.vis-foreground .vis-group { + position: relative; + box-sizing: border-box; + border-bottom: 1px solid #bfbfbf; +} + +.vis-foreground .vis-group:last-child { + border-bottom: none; +} + +.vis-nesting-group { + cursor: pointer; +} + +.vis-label.vis-nested-group.vis-group-level-unknown-but-gte1 { + background: #f5f5f5; +} +.vis-label.vis-nested-group.vis-group-level-0 { + background-color: #ffffff; +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-0 .vis-inner { + padding-left: 0; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-0 .vis-inner { + padding-right: 0; +} +.vis-label.vis-nested-group.vis-group-level-1 { + background-color: rgba(0, 0, 0, 0.05); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-1 .vis-inner { + padding-left: 15px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-1 .vis-inner { + padding-right: 15px; +} +.vis-label.vis-nested-group.vis-group-level-2 { + background-color: rgba(0, 0, 0, 0.1); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-2 .vis-inner { + padding-left: 30px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-2 .vis-inner { + padding-right: 30px; +} +.vis-label.vis-nested-group.vis-group-level-3 { + background-color: rgba(0, 0, 0, 0.15); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-3 .vis-inner { + padding-left: 45px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-3 .vis-inner { + padding-right: 45px; +} +.vis-label.vis-nested-group.vis-group-level-4 { + background-color: rgba(0, 0, 0, 0.2); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-4 .vis-inner { + padding-left: 60px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-4 .vis-inner { + padding-right: 60px; +} +.vis-label.vis-nested-group.vis-group-level-5 { + background-color: rgba(0, 0, 0, 0.25); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-5 .vis-inner { + padding-left: 75px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-5 .vis-inner { + padding-right: 75px; +} +.vis-label.vis-nested-group.vis-group-level-6 { + background-color: rgba(0, 0, 0, 0.3); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-6 .vis-inner { + padding-left: 90px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-6 .vis-inner { + padding-right: 90px; +} +.vis-label.vis-nested-group.vis-group-level-7 { + background-color: rgba(0, 0, 0, 0.35); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-7 .vis-inner { + padding-left: 105px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-7 .vis-inner { + padding-right: 105px; +} +.vis-label.vis-nested-group.vis-group-level-8 { + background-color: rgba(0, 0, 0, 0.4); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-8 .vis-inner { + padding-left: 120px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-8 .vis-inner { + padding-right: 120px; +} +.vis-label.vis-nested-group.vis-group-level-9 { + background-color: rgba(0, 0, 0, 0.45); +} +.vis-ltr .vis-label.vis-nested-group.vis-group-level-9 .vis-inner { + padding-left: 135px; +} +.vis-rtl .vis-label.vis-nested-group.vis-group-level-9 .vis-inner { + padding-right: 135px; +} +/* default takes over beginning with level-10 (thats why we add .vis-nested-group + to the selectors above, to have higher specifity than these rules for the defaults) */ +.vis-label.vis-nested-group { + background-color: rgba(0, 0, 0, 0.5); +} +.vis-ltr .vis-label.vis-nested-group .vis-inner { + padding-left: 150px; +} +.vis-rtl .vis-label.vis-nested-group .vis-inner { + padding-right: 150px; +} + +.vis-group-level-unknown-but-gte1 { + border: 1px solid red; +} + +/* expanded/collapsed indicators */ +.vis-label.vis-nesting-group:before, +.vis-label.vis-nesting-group:before { + display: inline-block; + width: 15px; +} +.vis-label.vis-nesting-group.expanded:before { + content: "\25BC"; +} +.vis-label.vis-nesting-group.collapsed:before { + content: "\25B6"; +} +.vis-rtl .vis-label.vis-nesting-group.collapsed:before { + content: "\25C0"; +} +/* compensate missing expanded/collapsed indicator, but only at levels > 0 */ +.vis-ltr .vis-label:not(.vis-nesting-group):not(.vis-group-level-0) { + padding-left: 15px; +} +.vis-rtl .vis-label:not(.vis-nesting-group):not(.vis-group-level-0) { + padding-right: 15px; +} + +.vis-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + z-index: 10; +} +div.vis-configuration { + position:relative; + display:block; + float:left; + font-size:12px; +} + +div.vis-configuration-wrapper { + display:block; + width:700px; +} + +div.vis-configuration-wrapper::after { + clear: both; + content: ""; + display: block; +} + +div.vis-configuration.vis-config-option-container{ + display:block; + width:495px; + background-color: #ffffff; + border:2px solid #f7f8fa; + border-radius:4px; + margin-top:20px; + left:10px; + padding-left:5px; +} + +div.vis-configuration.vis-config-button{ + display:block; + width:495px; + height:25px; + vertical-align: middle; + line-height:25px; + background-color: #f7f8fa; + border:2px solid #ceced0; + border-radius:4px; + margin-top:20px; + left:10px; + padding-left:5px; + cursor: pointer; + margin-bottom:30px; +} + +div.vis-configuration.vis-config-button.hover{ + background-color: #4588e6; + border:2px solid #214373; + color:#ffffff; +} + +div.vis-configuration.vis-config-item{ + display:block; + float:left; + width:495px; + height:25px; + vertical-align: middle; + line-height:25px; +} + + +div.vis-configuration.vis-config-item.vis-config-s2{ + left:10px; + background-color: #f7f8fa; + padding-left:5px; + border-radius:3px; +} +div.vis-configuration.vis-config-item.vis-config-s3{ + left:20px; + background-color: #e4e9f0; + padding-left:5px; + border-radius:3px; +} +div.vis-configuration.vis-config-item.vis-config-s4{ + left:30px; + background-color: #cfd8e6; + padding-left:5px; + border-radius:3px; +} + +div.vis-configuration.vis-config-header{ + font-size:18px; + font-weight: bold; +} + +div.vis-configuration.vis-config-label{ + width:120px; + height:25px; + line-height: 25px; +} + +div.vis-configuration.vis-config-label.vis-config-s3{ + width:110px; +} +div.vis-configuration.vis-config-label.vis-config-s4{ + width:100px; +} + +div.vis-configuration.vis-config-colorBlock{ + top:1px; + width:30px; + height:19px; + border:1px solid #444444; + border-radius:2px; + padding:0px; + margin:0px; + cursor:pointer; +} + +input.vis-configuration.vis-config-checkbox { + left:-5px; +} + + +input.vis-configuration.vis-config-rangeinput{ + position:relative; + top:-5px; + width:60px; + /*height:13px;*/ + padding:1px; + margin:0; + pointer-events:none; +} + +input.vis-configuration.vis-config-range{ + /*removes default webkit styles*/ + -webkit-appearance: none; + + /*fix for FF unable to apply focus style bug */ + border: 0px solid white; + background-color:rgba(0,0,0,0); + + /*required for proper track sizing in FF*/ + width: 300px; + height:20px; +} +input.vis-configuration.vis-config-range::-webkit-slider-runnable-track { + width: 300px; + height: 5px; + background: #dedede; /* Old browsers */ + background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ + + border: 1px solid #999999; + box-shadow: #aaaaaa 0px 0px 3px 0px; + border-radius: 3px; +} +input.vis-configuration.vis-config-range::-webkit-slider-thumb { + -webkit-appearance: none; + border: 1px solid #14334b; + height: 17px; + width: 17px; + border-radius: 50%; + background: #3876c2; /* Old browsers */ + background: -moz-linear-gradient(top, #3876c2 0%, #385380 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3876c2), color-stop(100%,#385380)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #3876c2 0%,#385380 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #3876c2 0%,#385380 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #3876c2 0%,#385380 100%); /* IE10+ */ + background: linear-gradient(to bottom, #3876c2 0%,#385380 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3876c2', endColorstr='#385380',GradientType=0 ); /* IE6-9 */ + box-shadow: #111927 0px 0px 1px 0px; + margin-top: -7px; +} +input.vis-configuration.vis-config-range:focus { + outline: none; +} +input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track { + background: #9d9d9d; /* Old browsers */ + background: -moz-linear-gradient(top, #9d9d9d 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9d9d9d), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #9d9d9d 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #9d9d9d 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9d9d9d', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ +} + +input.vis-configuration.vis-config-range::-moz-range-track { + width: 300px; + height: 10px; + background: #dedede; /* Old browsers */ + background: -moz-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dedede), color-stop(99%,#c8c8c8)); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, #dedede 0%, #c8c8c8 99%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, #dedede 0%,#c8c8c8 99%); /* IE10+ */ + background: linear-gradient(to bottom, #dedede 0%,#c8c8c8 99%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dedede', endColorstr='#c8c8c8',GradientType=0 ); /* IE6-9 */ + + border: 1px solid #999999; + box-shadow: #aaaaaa 0px 0px 3px 0px; + border-radius: 3px; +} +input.vis-configuration.vis-config-range::-moz-range-thumb { + border: none; + height: 16px; + width: 16px; + + border-radius: 50%; + background: #385380; +} + +/*hide the outline behind the border*/ +input.vis-configuration.vis-config-range:-moz-focusring{ + outline: 1px solid white; + outline-offset: -1px; +} + +input.vis-configuration.vis-config-range::-ms-track { + width: 300px; + height: 5px; + + /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ + background: transparent; + + /*leave room for the larger thumb to overflow with a transparent border */ + border-color: transparent; + border-width: 6px 0; + + /*remove default tick marks*/ + color: transparent; +} +input.vis-configuration.vis-config-range::-ms-fill-lower { + background: #777; + border-radius: 10px; +} +input.vis-configuration.vis-config-range::-ms-fill-upper { + background: #ddd; + border-radius: 10px; +} +input.vis-configuration.vis-config-range::-ms-thumb { + border: none; + height: 16px; + width: 16px; + border-radius: 50%; + background: #385380; +} +input.vis-configuration.vis-config-range:focus::-ms-fill-lower { + background: #888; +} +input.vis-configuration.vis-config-range:focus::-ms-fill-upper { + background: #ccc; +} + +.vis-configuration-popup { + position: absolute; + background: rgba(57, 76, 89, 0.85); + border: 2px solid #f2faff; + line-height:30px; + height:30px; + width:150px; + text-align:center; + color: #ffffff; + font-size:14px; + border-radius:4px; + -webkit-transition: opacity 0.3s ease-in-out; + -moz-transition: opacity 0.3s ease-in-out; + transition: opacity 0.3s ease-in-out; +} +.vis-configuration-popup:after, .vis-configuration-popup:before { + left: 100%; + top: 50%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; +} + +.vis-configuration-popup:after { + border-color: rgba(136, 183, 213, 0); + border-left-color: rgba(57, 76, 89, 0.85); + border-width: 8px; + margin-top: -8px; +} +.vis-configuration-popup:before { + border-color: rgba(194, 225, 245, 0); + border-left-color: #f2faff; + border-width: 12px; + margin-top: -12px; +} +.vis .overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + + /* Must be displayed above for example selected Timeline items */ + z-index: 10; +} + +.vis-active { + box-shadow: 0 0 10px #86d5f8; +} + +div.vis-tooltip { + position: absolute; + visibility: hidden; + padding: 5px; + white-space: nowrap; + + font-family: verdana; + font-size:14px; + color:#000000; + background-color: #f5f4ed; + + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; + border: 1px solid #808074; + + box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2); + pointer-events: none; + + z-index: 5; +} diff --git a/includes/js/vis/dist/vis-timeline-graph2d.esm.js b/includes/js/vis/dist/vis-timeline-graph2d.esm.js new file mode 100644 index 0000000..4c59958 --- /dev/null +++ b/includes/js/vis/dist/vis-timeline-graph2d.esm.js @@ -0,0 +1,48797 @@ +/** + * vis-timeline and vis-graph2d + * https://visjs.github.io/vis-timeline/ + * + * Create a fully customizable, interactive timeline with items and ranges. + * + * @version 0.0.0-no-version + * @date 2020-01-04T00:10:26.063Z + * + * @copyright (c) 2011-2017 Almende B.V, http://almende.com + * @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs + * + * @license + * vis.js is dual licensed under both + * + * 1. The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 + * + * and + * + * 2. The MIT License + * http://opensource.org/licenses/MIT + * + * vis.js may be distributed under either license. + */ + +function _defineProperty(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; +} + +var defineProperty = _defineProperty; + +function _arrayWithoutHoles(arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { + arr2[i] = arr[i]; + } + + return arr2; + } +} + +var arrayWithoutHoles = _arrayWithoutHoles; + +function _iterableToArray(iter) { + if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); +} + +var iterableToArray = _iterableToArray; + +function _nonIterableSpread() { + throw new TypeError("Invalid attempt to spread non-iterable instance"); +} + +var nonIterableSpread = _nonIterableSpread; + +function _toConsumableArray(arr) { + return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread(); +} + +var toConsumableArray = _toConsumableArray; +var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire() { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function createCommonjsModule(fn, module) { + return module = { + exports: {} + }, fn(module, module.exports), module.exports; +} + +var _typeof_1 = createCommonjsModule(function (module) { + function _typeof2(obj) { + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof2 = function _typeof2(obj) { + return typeof obj; + }; + } else { + _typeof2 = function _typeof2(obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof2(obj); + } + + function _typeof(obj) { + if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") { + module.exports = _typeof = function _typeof(obj) { + return _typeof2(obj); + }; + } else { + module.exports = _typeof = function _typeof(obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj); + }; + } + + return _typeof(obj); + } + + module.exports = _typeof; +}); + +var moment = createCommonjsModule(function (module, exports) { + (function (global, factory) { + module.exports = factory(); + })(commonjsGlobal, function () { + var hookCallback; + + function hooks() { + return hookCallback.apply(null, arguments); + } // This is done to register the method called with moment() + // without creating circular dependencies. + + + function setHookCallback(callback) { + hookCallback = callback; + } + + function isArray(input) { + return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]'; + } + + function isObject(input) { + // IE8 will treat undefined and null as object if it wasn't for + // input != null + return input != null && Object.prototype.toString.call(input) === '[object Object]'; + } + + function isObjectEmpty(obj) { + if (Object.getOwnPropertyNames) { + return Object.getOwnPropertyNames(obj).length === 0; + } else { + var k; + + for (k in obj) { + if (obj.hasOwnProperty(k)) { + return false; + } + } + + return true; + } + } + + function isUndefined(input) { + return input === void 0; + } + + function isNumber(input) { + return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; + } + + function isDate(input) { + return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; + } + + function map(arr, fn) { + var res = [], + i; + + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + + return res; + } + + function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); + } + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function createUTC(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); + } + + function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty: false, + unusedTokens: [], + unusedInput: [], + overflow: -2, + charsLeftOver: 0, + nullInput: false, + invalidMonth: null, + invalidFormat: false, + userInvalidated: false, + iso: false, + parsedDateParts: [], + meridiem: null, + rfc2822: false, + weekdayMismatch: false + }; + } + + function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + + return m._pf; + } + + var some; + + if (Array.prototype.some) { + some = Array.prototype.some; + } else { + some = function (fun) { + var t = Object(this); + var len = t.length >>> 0; + + for (var i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; + } + + function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + var parsedParts = some.call(flags.parsedDateParts, function (i) { + return i != null; + }); + var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts); + + if (m._strict) { + isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } else { + return isNowValid; + } + } + + return m._isValid; + } + + function createInvalid(flags) { + var m = createUTC(NaN); + + if (flags != null) { + extend(getParsingFlags(m), flags); + } else { + getParsingFlags(m).userInvalidated = true; + } + + return m; + } // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + + + var momentProperties = hooks.momentProperties = []; + + function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + + if (!isUndefined(from._i)) { + to._i = from._i; + } + + if (!isUndefined(from._f)) { + to._f = from._f; + } + + if (!isUndefined(from._l)) { + to._l = from._l; + } + + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; + } + + var updateInProgress = false; // Moment prototype object + + function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + + if (!this.isValid()) { + this._d = new Date(NaN); + } // Prevent infinite loop in case updateOffset creates new moment + // objects. + + + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } + } + + function isMoment(obj) { + return obj instanceof Moment || obj != null && obj._isAMomentObject != null; + } + + function absFloor(number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; + } // compare two arrays, return the number of differences + + + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + + for (i = 0; i < len; i++) { + if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) { + diffs++; + } + } + + return diffs + lengthDiff; + } + + function warn(msg) { + if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + + if (firstTime) { + var args = []; + var arg; + + for (var i = 0; i < arguments.length; i++) { + arg = ''; + + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + + for (var key in arguments[0]) { + arg += key + ': ' + arguments[0][key] + ', '; + } + + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + + args.push(arg); + } + + warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + new Error().stack); + firstTime = false; + } + + return fn.apply(this, arguments); + }, fn); + } + + var deprecations = {}; + + function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } + } + + hooks.suppressDeprecationWarnings = false; + hooks.deprecationHandler = null; + + function isFunction(input) { + return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; + } + + function set(config) { + var prop, i; + + for (i in config) { + prop = config[i]; + + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + + this._config = config; // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + + this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\d{1,2}/.source); + } + + function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), + prop; + + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + + for (prop in parentConfig) { + if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + + return res; + } + + function Locale(config) { + if (config != null) { + this.set(config); + } + } + + var keys; + + if (Object.keys) { + keys = Object.keys; + } else { + keys = function (obj) { + var i, + res = []; + + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + + return res; + }; + } + + var defaultCalendar = { + sameDay: '[Today at] LT', + nextDay: '[Tomorrow at] LT', + nextWeek: 'dddd [at] LT', + lastDay: '[Yesterday at] LT', + lastWeek: '[Last] dddd [at] LT', + sameElse: 'L' + }; + + function calendar(key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; + } + + var defaultLongDateFormat = { + LTS: 'h:mm:ss A', + LT: 'h:mm A', + L: 'MM/DD/YYYY', + LL: 'MMMM D, YYYY', + LLL: 'MMMM D, YYYY h:mm A', + LLLL: 'dddd, MMMM D, YYYY h:mm A' + }; + + function longDateFormat(key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + return this._longDateFormat[key]; + } + + var defaultInvalidDate = 'Invalid date'; + + function invalidDate() { + return this._invalidDate; + } + + var defaultOrdinal = '%d'; + var defaultDayOfMonthOrdinalParse = /\d{1,2}/; + + function ordinal(number) { + return this._ordinal.replace('%d', number); + } + + var defaultRelativeTime = { + future: 'in %s', + past: '%s ago', + s: 'a few seconds', + ss: '%d seconds', + m: 'a minute', + mm: '%d minutes', + h: 'an hour', + hh: '%d hours', + d: 'a day', + dd: '%d days', + M: 'a month', + MM: '%d months', + y: 'a year', + yy: '%d years' + }; + + function relativeTime(number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number); + } + + function pastFuture(diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); + } + + var aliases = {}; + + function addUnitAlias(unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; + } + + function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + var priorities = {}; + + function addUnitPriority(unit, priority) { + priorities[unit] = priority; + } + + function getPrioritizedUnits(unitsObj) { + var units = []; + + for (var u in unitsObj) { + units.push({ + unit: u, + priority: priorities[u] + }); + } + + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; + } + + function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; + } + + var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + var formatFunctions = {}; + var formatTokenFunctions = {}; // token: 'M' + // padded: ['MM', 2] + // ordinal: 'Mo' + // callback: function () { this.month() + 1 } + + function addFormatToken(token, padded, ordinal, callback) { + var func = callback; + + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + + if (token) { + formatTokenFunctions[token] = func; + } + + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } + } + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), + i, + length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', + i; + + for (i = 0; i < length; i++) { + output += isFunction(array[i]) ? array[i].call(mom, format) : array[i]; + } + + return output; + }; + } // format date using native date object + + + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + var match1 = /\d/; // 0 - 9 + + var match2 = /\d\d/; // 00 - 99 + + var match3 = /\d{3}/; // 000 - 999 + + var match4 = /\d{4}/; // 0000 - 9999 + + var match6 = /[+-]?\d{6}/; // -999999 - 999999 + + var match1to2 = /\d\d?/; // 0 - 99 + + var match3to4 = /\d\d\d\d?/; // 999 - 9999 + + var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999 + + var match1to3 = /\d{1,3}/; // 0 - 999 + + var match1to4 = /\d{1,4}/; // 0 - 9999 + + var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + + var matchUnsigned = /\d+/; // 0 - inf + + var matchSigned = /[+-]?\d+/; // -inf - inf + + var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z + + var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z + + var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + // any word (or two) characters or numbers including two/three word month in arabic. + // includes scottish gaelic two word and hyphenated months + + var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i; + var regexes = {}; + + function addRegexToken(token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) { + return isStrict && strictRegex ? strictRegex : regex; + }; + } + + function getParseRegexForToken(token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); + } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + + + function unescapeFormat(s) { + return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + })); + } + + function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + var tokens = {}; + + function addParseToken(token, callback) { + var i, + func = callback; + + if (typeof token === 'string') { + token = [token]; + } + + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } + } + + function addWeekParseToken(token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); + } + + function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } + } + + var YEAR = 0; + var MONTH = 1; + var DATE = 2; + var HOUR = 3; + var MINUTE = 4; + var SECOND = 5; + var MILLISECOND = 6; + var WEEK = 7; + var WEEKDAY = 8; // FORMATTING + + addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? '' + y : '+' + y; + }); + addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; + }); + addFormatToken(0, ['YYYY', 4], 0, 'year'); + addFormatToken(0, ['YYYYY', 5], 0, 'year'); + addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES + + addUnitAlias('year', 'y'); // PRIORITIES + + addUnitPriority('year', 1); // PARSING + + addRegexToken('Y', matchSigned); + addRegexToken('YY', match1to2, match2); + addRegexToken('YYYY', match1to4, match4); + addRegexToken('YYYYY', match1to6, match6); + addRegexToken('YYYYYY', match1to6, match6); + addParseToken(['YYYYY', 'YYYYYY'], YEAR); + addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); + }); + addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); + }); + addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); + }); // HELPERS + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0; + } // HOOKS + + + hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; // MOMENTS + + + var getSetYear = makeGetSet('FullYear', true); + + function getIsLeapYear() { + return isLeapYear(this.year()); + } + + function makeGetSet(unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; + } + + function get(mom, unit) { + return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN; + } + + function set$1(mom, unit, value) { + if (mom.isValid() && !isNaN(value)) { + if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month())); + } else { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + } // MOMENTS + + + function stringGet(units) { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](); + } + + return this; + } + + function stringSet(units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units); + + for (var i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](value); + } + } + + return this; + } + + function mod(n, x) { + return (n % x + x) % x; + } + + var indexOf; + + if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; + } else { + indexOf = function (o) { + // I know + var i; + + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + + return -1; + }; + } + + function daysInMonth(year, month) { + if (isNaN(year) || isNaN(month)) { + return NaN; + } + + var modMonth = mod(month, 12); + year += (month - modMonth) / 12; + return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2; + } // FORMATTING + + + addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; + }); + addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); + }); + addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); + }); // ALIASES + + addUnitAlias('month', 'M'); // PRIORITY + + addUnitPriority('month', 8); // PARSING + + addRegexToken('M', match1to2); + addRegexToken('MM', match1to2, match2); + addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); + }); + addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); + }); + addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; + }); + addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid. + + + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } + }); // LOCALES + + var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/; + var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); + + function localeMonths(m, format) { + if (!m) { + return isArray(this._months) ? this._months : this._months['standalone']; + } + + return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()]; + } + + var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); + + function localeMonthsShort(m, format) { + if (!m) { + return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone']; + } + + return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()]; + } + + function handleStrictParse(monthName, format, strict) { + var i, + ii, + mom, + llc = monthName.toLocaleLowerCase(); + + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeMonthsParse(monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + } // MOMENTS + + + function setMonth(mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); // TODO: Another silent failure? + + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + + return mom; + } + + function getSetMonth(value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } + } + + function getDaysInMonth() { + return daysInMonth(this.year(), this.month()); + } + + var defaultMonthsShortRegex = matchWord; + + function monthsShortRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + + return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex; + } + } + + var defaultMonthsRegex = matchWord; + + function monthsRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + + return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex; + } + } + + function computeMonthsParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom; + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + + + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + } + + function createDate(y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date; // the date constructor remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + date = new Date(y + 400, m, d, h, M, s, ms); + + if (isFinite(date.getFullYear())) { + date.setFullYear(y); + } + } else { + date = new Date(y, m, d, h, M, s, ms); + } + + return date; + } + + function createUTCDate(y) { + var date; // the Date.UTC function remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + var args = Array.prototype.slice.call(arguments); // preserve leap years using a full 400 year cycle, then reset + + args[0] = y + 400; + date = new Date(Date.UTC.apply(null, args)); + + if (isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + } else { + date = new Date(Date.UTC.apply(null, arguments)); + } + + return date; + } // start-of-first-week - start-of-year + + + function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + return -fwdlw + fwd - 1; + } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + + + function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, + resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear + }; + } + + function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, + resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear + }; + } + + function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; + } // FORMATTING + + + addFormatToken('w', ['ww', 2], 'wo', 'week'); + addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES + + addUnitAlias('week', 'w'); + addUnitAlias('isoWeek', 'W'); // PRIORITIES + + addUnitPriority('week', 5); + addUnitPriority('isoWeek', 5); // PARSING + + addRegexToken('w', match1to2); + addRegexToken('ww', match1to2, match2); + addRegexToken('W', match1to2); + addRegexToken('WW', match1to2, match2); + addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); + }); // HELPERS + // LOCALES + + function localeWeek(mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + } + + var defaultLocaleWeek = { + dow: 0, + // Sunday is the first day of the week. + doy: 6 // The week that contains Jan 6th is the first week of the year. + + }; + + function localeFirstDayOfWeek() { + return this._week.dow; + } + + function localeFirstDayOfYear() { + return this._week.doy; + } // MOMENTS + + + function getSetWeek(input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + function getSetISOWeek(input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + } // FORMATTING + + + addFormatToken('d', 0, 'do', 'day'); + addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); + }); + addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); + }); + addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); + }); + addFormatToken('e', 0, 0, 'weekday'); + addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES + + addUnitAlias('day', 'd'); + addUnitAlias('weekday', 'e'); + addUnitAlias('isoWeekday', 'E'); // PRIORITY + + addUnitPriority('day', 11); + addUnitPriority('weekday', 11); + addUnitPriority('isoWeekday', 11); // PARSING + + addRegexToken('d', match1to2); + addRegexToken('e', match1to2); + addRegexToken('E', match1to2); + addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); + }); + addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); + }); + addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); + }); + addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid + + + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } + }); + addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); + }); // HELPERS + + function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + + if (typeof input === 'number') { + return input; + } + + return null; + } + + function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + + return isNaN(input) ? null : input; + } // LOCALES + + + function shiftWeekdays(ws, n) { + return ws.slice(n, 7).concat(ws.slice(0, n)); + } + + var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); + + function localeWeekdays(m, format) { + var weekdays = isArray(this._weekdays) ? this._weekdays : this._weekdays[m && m !== true && this._weekdays.isFormat.test(format) ? 'format' : 'standalone']; + return m === true ? shiftWeekdays(weekdays, this._week.dow) : m ? weekdays[m.day()] : weekdays; + } + + var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); + + function localeWeekdaysShort(m) { + return m === true ? shiftWeekdays(this._weekdaysShort, this._week.dow) : m ? this._weekdaysShort[m.day()] : this._weekdaysShort; + } + + var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); + + function localeWeekdaysMin(m) { + return m === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m ? this._weekdaysMin[m.day()] : this._weekdaysMin; + } + + function handleStrictParse$1(weekdayName, format, strict) { + var i, + ii, + mom, + llc = weekdayName.toLocaleLowerCase(); + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeWeekdaysParse(weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\.?') + '$', 'i'); + this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\.?') + '$', 'i'); + this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\.?') + '$', 'i'); + } + + if (!this._weekdaysParse[i]) { + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + } // MOMENTS + + + function getSetDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + } + + function getSetLocaleDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + } + + function getSetISODayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } + } + + var defaultWeekdaysRegex = matchWord; + + function weekdaysRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + + return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex; + } + } + + var defaultWeekdaysShortRegex = matchWord; + + function weekdaysShortRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + + return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex; + } + } + + var defaultWeekdaysMinRegex = matchWord; + + function weekdaysMinRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + + return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex; + } + } + + function computeWeekdaysParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], + shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom, + minp, + shortp, + longp; + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = this.weekdaysMin(mom, ''); + shortp = this.weekdaysShort(mom, ''); + longp = this.weekdays(mom, ''); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + + + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 7; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i'); + } // FORMATTING + + + function hFormat() { + return this.hours() % 12 || 12; + } + + function kFormat() { + return this.hours() || 24; + } + + addFormatToken('H', ['HH', 2], 0, 'hour'); + addFormatToken('h', ['hh', 2], 0, hFormat); + addFormatToken('k', ['kk', 2], 0, kFormat); + addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); + }); + addFormatToken('hmmss', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); + }); + addFormatToken('Hmmss', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + + function meridiem(token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); + } + + meridiem('a', true); + meridiem('A', false); // ALIASES + + addUnitAlias('hour', 'h'); // PRIORITY + + addUnitPriority('hour', 13); // PARSING + + function matchMeridiem(isStrict, locale) { + return locale._meridiemParse; + } + + addRegexToken('a', matchMeridiem); + addRegexToken('A', matchMeridiem); + addRegexToken('H', match1to2); + addRegexToken('h', match1to2); + addRegexToken('k', match1to2); + addRegexToken('HH', match1to2, match2); + addRegexToken('hh', match1to2, match2); + addRegexToken('kk', match1to2, match2); + addRegexToken('hmm', match3to4); + addRegexToken('hmmss', match5to6); + addRegexToken('Hmm', match3to4); + addRegexToken('Hmmss', match5to6); + addParseToken(['H', 'HH'], HOUR); + addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; + }); + addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; + }); + addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + }); + addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + }); // LOCALES + + function localeIsPM(input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return (input + '').toLowerCase().charAt(0) === 'p'; + } + + var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; + + function localeMeridiem(hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + } // MOMENTS + // Setting the hour should keep the time, because the user explicitly + // specified which hour they want. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + + + var getSetHour = makeGetSet('Hours', true); + var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + week: defaultLocaleWeek, + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + meridiemParse: defaultLocaleMeridiemParse + }; // internal storage for locale config files + + var locales = {}; + var localeFamilies = {}; + var globalLocale; + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + + + function chooseLocale(names) { + var i = 0, + j, + next, + locale, + split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + + if (locale) { + return locale; + } + + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + + j--; + } + + i++; + } + + return globalLocale; + } + + function loadLocale(name) { + var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node + + if (!locales[name] && 'object' !== 'undefined' && module && module.exports) { + try { + oldLocale = globalLocale._abbr; + var aliasedRequire = commonjsRequire; + aliasedRequire('./locale/' + name); + getSetGlobalLocale(oldLocale); + } catch (e) {} + } + + return locales[name]; + } // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + + + function getSetGlobalLocale(key, values) { + var data; + + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } else { + if (typeof console !== 'undefined' && console.warn) { + //warn user if arguments are passed but the locale could not be set + console.warn('Locale ' + key + ' not found. Did you forget to load it?'); + } + } + } + + return globalLocale._abbr; + } + + function defineLocale(name, config) { + if (config !== null) { + var locale, + parentConfig = baseConfig; + config.abbr = name; + + if (locales[name] != null) { + deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.'); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + locale = loadLocale(config.parentLocale); + + if (locale != null) { + parentConfig = locale._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + + localeFamilies[config.parentLocale].push({ + name: name, + config: config + }); + return null; + } + } + } + + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + + + getSetGlobalLocale(name); + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + } + + function updateLocale(name, config) { + if (config != null) { + var locale, + tmpLocale, + parentConfig = baseConfig; // MERGE + + tmpLocale = loadLocale(name); + + if (tmpLocale != null) { + parentConfig = tmpLocale._config; + } + + config = mergeConfigs(parentConfig, config); + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; // backwards compat for now: also set the locale + + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + + return locales[name]; + } // returns locale data + + + function getLocale(key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + + if (locale) { + return locale; + } + + key = [key]; + } + + return chooseLocale(key); + } + + function listLocales() { + return keys(locales); + } + + function checkOverflow(m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; + } // Pick the first defined of two or three arguments. + + + function defaults(a, b, c) { + if (a != null) { + return a; + } + + if (b != null) { + return b; + } + + return c; + } + + function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + + if (config._useUTC) { + return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()]; + } + + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; + } // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + + + function configFromArray(config) { + var i, + date, + input = [], + currentDate, + expectedWeekday, + yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays + + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } //if the day of the year is set, figure out what it is + + + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + + + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } // Zero out whatever was not defaulted, including time + + + for (; i < 7; i++) { + config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i]; + } // Check for 24:00:00.000 + + + if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } // check for mismatching day of week + + + if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) { + getParsingFlags(config).weekdayMismatch = true; + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow; + w = config._w; + + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + var curWeek = weekOfYear(createLocal(), dow, doy); + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week. + + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from beginning of week + weekday = w.e + dow; + + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to beginning of week + weekday = dow; + } + } + + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + } // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + + + var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/; + var isoDates = [['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], ['GGGG-[W]WW', /\d{4}-W\d\d/, false], ['YYYY-DDD', /\d{4}-\d{3}/], ['YYYY-MM', /\d{4}-\d\d/, false], ['YYYYYYMMDD', /[+-]\d{10}/], ['YYYYMMDD', /\d{8}/], // YYYYMM is NOT allowed by the standard + ['GGGG[W]WWE', /\d{4}W\d{3}/], ['GGGG[W]WW', /\d{4}W\d{2}/, false], ['YYYYDDD', /\d{7}/]]; // iso time formats and regexes + + var isoTimes = [['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], ['HH:mm:ss', /\d\d:\d\d:\d\d/], ['HH:mm', /\d\d:\d\d/], ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], ['HHmmss', /\d\d\d\d\d\d/], ['HHmm', /\d\d\d\d/], ['HH', /\d\d/]]; + var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; // date from iso format + + function configFromISO(config) { + var i, + l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, + dateFormat, + timeFormat, + tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + + if (dateFormat == null) { + config._isValid = false; + return; + } + + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + + if (timeFormat == null) { + config._isValid = false; + return; + } + } + + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } + } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 + + + var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/; + + function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { + var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)]; + + if (secondStr) { + result.push(parseInt(secondStr, 10)); + } + + return result; + } + + function untruncateYear(yearStr) { + var year = parseInt(yearStr, 10); + + if (year <= 49) { + return 2000 + year; + } else if (year <= 999) { + return 1900 + year; + } + + return year; + } + + function preprocessRFC2822(s) { + // Remove comments and folding whitespace and replace multiple-spaces with a single space + return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').replace(/^\s\s*/, '').replace(/\s\s*$/, ''); + } + + function checkWeekday(weekdayStr, parsedInput, config) { + if (weekdayStr) { + // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check. + var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr), + weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay(); + + if (weekdayProvided !== weekdayActual) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return false; + } + } + + return true; + } + + var obsOffsets = { + UT: 0, + GMT: 0, + EDT: -4 * 60, + EST: -5 * 60, + CDT: -5 * 60, + CST: -6 * 60, + MDT: -6 * 60, + MST: -7 * 60, + PDT: -7 * 60, + PST: -8 * 60 + }; + + function calculateOffset(obsOffset, militaryOffset, numOffset) { + if (obsOffset) { + return obsOffsets[obsOffset]; + } else if (militaryOffset) { + // the only allowed military tz is Z + return 0; + } else { + var hm = parseInt(numOffset, 10); + var m = hm % 100, + h = (hm - m) / 100; + return h * 60 + m; + } + } // date and time from ref 2822 format + + + function configFromRFC2822(config) { + var match = rfc2822.exec(preprocessRFC2822(config._i)); + + if (match) { + var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]); + + if (!checkWeekday(match[1], parsedArray, config)) { + return; + } + + config._a = parsedArray; + config._tzm = calculateOffset(match[8], match[9], match[10]); + config._d = createUTCDate.apply(null, config._a); + + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } + } // date from iso format or fallback + + + function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } // Final attempt, use Input Fallback + + + hooks.createFromInputFallback(config); + } + + hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + }); // constant that refers to the ISO standard + + hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form + + + hooks.RFC_2822 = function () {}; // date from string and format string + + + function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + + config._a = []; + getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC` + + var string = '' + config._i, + i, + parsedInput, + tokens, + token, + skipped, + stringLength = string.length, + totalParsedInputLength = 0; + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput, + // 'regex', getParseRegexForToken(token, config)); + + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } // don't parse if it's not a known token + + + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } else { + getParsingFlags(config).unusedTokens.push(token); + } + + addTimeToArrayFromToken(token, parsedInput, config); + } else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } // add remaining unparsed input length to the string + + + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } // clear _12h flag if hour is <= 12 + + + if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; // handle meridiem + + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + configFromArray(config); + checkOverflow(config); + } + + function meridiemFixWrap(locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + + if (isPm && hour < 12) { + hour += 12; + } + + if (!isPm && hour === 12) { + hour = 0; + } + + return hour; + } else { + // this is not supposed to happen + return hour; + } + } // date from string and array of format strings + + + function configFromStringAndArray(config) { + var tempConfig, bestMoment, scoreToBeat, i, currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } // if there is any input that was not parsed add a penalty for that format + + + currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens + + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { + return obj && parseInt(obj, 10); + }); + configFromArray(config); + } + + function createFromConfig(config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; + } + + function prepareConfig(config) { + var input = config._i, + format = config._f; + config._locale = config._locale || getLocale(config._l); + + if (input === null || format === undefined && input === '') { + return createInvalid({ + nullInput: true + }); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; + } + + function configFromInput(config) { + var input = config._i; + + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } + } + + function createLocalOrUTC(input, format, locale, strict, isUTC) { + var c = {}; + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) { + input = undefined; + } // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + + + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + return createFromConfig(c); + } + + function createLocal(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); + } + + var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + }); + var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + }); // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + + function pickBy(fn, moments) { + var res, i; + + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + + if (!moments.length) { + return createLocal(); + } + + res = moments[0]; + + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + + return res; + } // TODO: Use [].sort instead? + + + function min() { + var args = [].slice.call(arguments, 0); + return pickBy('isBefore', args); + } + + function max() { + var args = [].slice.call(arguments, 0); + return pickBy('isAfter', args); + } + + var now = function () { + return Date.now ? Date.now() : +new Date(); + }; + + var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond']; + + function isDurationValid(m) { + for (var key in m) { + if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) { + return false; + } + } + + var unitHasDecimal = false; + + for (var i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; + } + + function isValid$1() { + return this._isValid; + } + + function createInvalid$1() { + return createDuration(NaN); + } + + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || normalizedInput.isoWeek || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove + + this._milliseconds = +milliseconds + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + + this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + + this._months = +months + quarters * 3 + years * 12; + this._data = {}; + this._locale = getLocale(); + + this._bubble(); + } + + function isDuration(obj) { + return obj instanceof Duration; + } + + function absRound(number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } + } // FORMATTING + + + function offset(token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + + if (offset < 0) { + offset = -offset; + sign = '-'; + } + + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2); + }); + } + + offset('Z', ':'); + offset('ZZ', ''); // PARSING + + addRegexToken('Z', matchShortOffset); + addRegexToken('ZZ', matchShortOffset); + addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); + }); // HELPERS + // timezone chunker + // '+10:00' > ['10', '00'] + // '-1530' > ['-15', '30'] + + var chunkOffset = /([\+\-]|\d\d)/gi; + + function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher); + + if (matches === null) { + return null; + } + + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes; + } // Return a moment from input, that is local/utc/zone equivalent to model. + + + function cloneWithOffset(input, model) { + var res, diff; + + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api. + + res._d.setTime(res._d.valueOf() + diff); + + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } + } + + function getDateOffset(m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; + } // HOOKS + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + + + hooks.updateOffset = function () {}; // MOMENTS + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + + + function getSetOffset(input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + + if (!this.isValid()) { + return input != null ? this : NaN; + } + + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + + this._offset = input; + this._isUTC = true; + + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract(this, createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } + } + + function getSetZone(input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + return this; + } else { + return -this.utcOffset(); + } + } + + function setOffsetToUTC(keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + } + + function setOffsetToLocal(keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + + return this; + } + + function setOffsetToParsedOffset() { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + + if (tZone != null) { + this.utcOffset(tZone); + } else { + this.utcOffset(0, true); + } + } + + return this; + } + + function hasAlignedHourOffset(input) { + if (!this.isValid()) { + return false; + } + + input = input ? createLocal(input).utcOffset() : 0; + return (this.utcOffset() - input) % 60 === 0; + } + + function isDaylightSavingTime() { + return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset(); + } + + function isDaylightSavingTimeShifted() { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}; + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; + } + + function isLocal() { + return this.isValid() ? !this._isUTC : false; + } + + function isUtcOffset() { + return this.isValid() ? this._isUTC : false; + } + + function isUtc() { + return this.isValid() ? this._isUTC && this._offset === 0 : false; + } // ASP.NET json date format regex + + + var aspNetRegex = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/; // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + // and further modified to allow for strings containing both week and day + + var isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; + + function createDuration(input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (isNumber(input)) { + duration = {}; + + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match + + }; + } else if (!!(match = isoRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: parseIso(match[2], sign), + M: parseIso(match[3], sign), + w: parseIso(match[4], sign), + d: parseIso(match[5], sign), + h: parseIso(match[6], sign), + m: parseIso(match[7], sign), + s: parseIso(match[8], sign) + }; + } else if (duration == null) { + // checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to)); + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + } + + createDuration.fn = Duration.prototype; + createDuration.invalid = createInvalid$1; + + function parseIso(inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); // apply sign while we're at it + + return (isNaN(res) ? 0 : res) * sign; + } + + function positiveMomentsDifference(base, other) { + var res = {}; + res.months = other.month() - base.month() + (other.year() - base.year()) * 12; + + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +base.clone().add(res.months, 'M'); + return res; + } + + function momentsDifference(base, other) { + var res; + + if (!(base.isValid() && other.isValid())) { + return { + milliseconds: 0, + months: 0 + }; + } + + other = cloneWithOffset(other, base); + + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } // TODO: remove 'name' arg after deprecation is removed + + + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; //invert the arguments, but complain about it + + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'); + tmp = val; + val = period; + period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; + } + + function addSubtract(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } + } + + var add = createAdder(1, 'add'); + var subtract = createAdder(-1, 'subtract'); + + function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse'; + } + + function calendar$1(time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse'; + var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]); + return this.format(output || this.localeData().calendar(format, this, createLocal(now))); + } + + function clone() { + return new Moment(this); + } + + function isAfter(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } + } + + function isBefore(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } + } + + function isBetween(from, to, units, inclusivity) { + var localFrom = isMoment(from) ? from : createLocal(from), + localTo = isMoment(to) ? to : createLocal(to); + + if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) { + return false; + } + + inclusivity = inclusivity || '()'; + return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) && (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units)); + } + + function isSame(input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf(); + } + } + + function isSameOrAfter(input, units) { + return this.isSame(input, units) || this.isAfter(input, units); + } + + function isSameOrBefore(input, units) { + return this.isSame(input, units) || this.isBefore(input, units); + } + + function diff(input, units, asFloat) { + var that, zoneDelta, output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + units = normalizeUnits(units); + + switch (units) { + case 'year': + output = monthDiff(this, that) / 12; + break; + + case 'month': + output = monthDiff(this, that); + break; + + case 'quarter': + output = monthDiff(this, that) / 3; + break; + + case 'second': + output = (this - that) / 1e3; + break; + // 1000 + + case 'minute': + output = (this - that) / 6e4; + break; + // 1000 * 60 + + case 'hour': + output = (this - that) / 36e5; + break; + // 1000 * 60 * 60 + + case 'day': + output = (this - that - zoneDelta) / 864e5; + break; + // 1000 * 60 * 60 * 24, negate dst + + case 'week': + output = (this - that - zoneDelta) / 6048e5; + break; + // 1000 * 60 * 60 * 24 * 7, negate dst + + default: + output = this - that; + } + + return asFloat ? output : absFloor(output); + } + + function monthDiff(a, b) { + // difference in months + var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, + adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor2 - anchor); + } //check for negative zero, return zero if negative zero + + + return -(wholeMonthDiff + adjust) || 0; + } + + hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; + hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + + function toString() { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + } + + function toISOString(keepOffset) { + if (!this.isValid()) { + return null; + } + + var utc = keepOffset !== true; + var m = utc ? this.clone().utc() : this; + + if (m.year() < 0 || m.year() > 9999) { + return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + if (utc) { + return this.toDate().toISOString(); + } else { + return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z')); + } + } + + return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + /** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ + + + function inspect() { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + + var func = 'moment'; + var zone = ''; + + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + + var prefix = '[' + func + '("]'; + var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY'; + var datetime = '-MM-DD[T]HH:mm:ss.SSS'; + var suffix = zone + '[")]'; + return this.format(prefix + year + datetime + suffix); + } + + function format(inputString) { + if (!inputString) { + inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; + } + + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); + } + + function from(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + to: this, + from: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function fromNow(withoutSuffix) { + return this.from(createLocal(), withoutSuffix); + } + + function to(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + from: this, + to: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function toNow(withoutSuffix) { + return this.to(createLocal(), withoutSuffix); + } // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + + + function locale(key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + + if (newLocaleData != null) { + this._locale = newLocaleData; + } + + return this; + } + } + + var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + }); + + function localeData() { + return this._locale; + } + + var MS_PER_SECOND = 1000; + var MS_PER_MINUTE = 60 * MS_PER_SECOND; + var MS_PER_HOUR = 60 * MS_PER_MINUTE; + var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; // actual modulo - handles negative numbers (for dates before 1970): + + function mod$1(dividend, divisor) { + return (dividend % divisor + divisor) % divisor; + } + + function localStartOfDate(y, m, d) { + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return new Date(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return new Date(y, m, d).valueOf(); + } + } + + function utcStartOfDate(y, m, d) { + // Date.UTC remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return Date.UTC(y, m, d); + } + } + + function startOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year(), 0, 1); + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3, 1); + break; + + case 'month': + time = startOfDate(this.year(), this.month(), 1); + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday()); + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1)); + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date()); + break; + + case 'hour': + time = this._d.valueOf(); + time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR); + break; + + case 'minute': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_MINUTE); + break; + + case 'second': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_SECOND); + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function endOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year() + 1, 0, 1) - 1; + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1; + break; + + case 'month': + time = startOfDate(this.year(), this.month() + 1, 1) - 1; + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1; + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1; + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date() + 1) - 1; + break; + + case 'hour': + time = this._d.valueOf(); + time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1; + break; + + case 'minute': + time = this._d.valueOf(); + time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1; + break; + + case 'second': + time = this._d.valueOf(); + time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1; + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function valueOf() { + return this._d.valueOf() - (this._offset || 0) * 60000; + } + + function unix() { + return Math.floor(this.valueOf() / 1000); + } + + function toDate() { + return new Date(this.valueOf()); + } + + function toArray() { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; + } + + function toObject() { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; + } + + function toJSON() { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; + } + + function isValid$2() { + return isValid(this); + } + + function parsingFlags() { + return extend({}, getParsingFlags(this)); + } + + function invalidAt() { + return getParsingFlags(this).overflow; + } + + function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict + }; + } // FORMATTING + + + addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; + }); + addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; + }); + + function addWeekYearFormatToken(token, getter) { + addFormatToken(0, [token, token.length], 0, getter); + } + + addWeekYearFormatToken('gggg', 'weekYear'); + addWeekYearFormatToken('ggggg', 'weekYear'); + addWeekYearFormatToken('GGGG', 'isoWeekYear'); + addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES + + addUnitAlias('weekYear', 'gg'); + addUnitAlias('isoWeekYear', 'GG'); // PRIORITY + + addUnitPriority('weekYear', 1); + addUnitPriority('isoWeekYear', 1); // PARSING + + addRegexToken('G', matchSigned); + addRegexToken('g', matchSigned); + addRegexToken('GG', match1to2, match2); + addRegexToken('gg', match1to2, match2); + addRegexToken('GGGG', match1to4, match4); + addRegexToken('gggg', match1to4, match4); + addRegexToken('GGGGG', match1to6, match6); + addRegexToken('ggggg', match1to6, match6); + addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); + }); + addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); + }); // MOMENTS + + function getSetWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy); + } + + function getSetISOWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4); + } + + function getISOWeeksInYear() { + return weeksInYear(this.year(), 1, 4); + } + + function getWeeksInYear() { + var weekInfo = this.localeData()._week; + + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + } + + function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + + if (week > weeksTarget) { + week = weeksTarget; + } + + return setWeekAll.call(this, input, week, weekday, dow, doy); + } + } + + function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; + } // FORMATTING + + + addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES + + addUnitAlias('quarter', 'Q'); // PRIORITY + + addUnitPriority('quarter', 7); // PARSING + + addRegexToken('Q', match1); + addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; + }); // MOMENTS + + function getSetQuarter(input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + } // FORMATTING + + + addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES + + addUnitAlias('date', 'D'); // PRIORITY + + addUnitPriority('date', 9); // PARSING + + addRegexToken('D', match1to2); + addRegexToken('DD', match1to2, match2); + addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient; + }); + addParseToken(['D', 'DD'], DATE); + addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0]); + }); // MOMENTS + + var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING + + addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES + + addUnitAlias('dayOfYear', 'DDD'); // PRIORITY + + addUnitPriority('dayOfYear', 4); // PARSING + + addRegexToken('DDD', match1to3); + addRegexToken('DDDD', match3); + addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); + }); // HELPERS + // MOMENTS + + function getSetDayOfYear(input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add(input - dayOfYear, 'd'); + } // FORMATTING + + + addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES + + addUnitAlias('minute', 'm'); // PRIORITY + + addUnitPriority('minute', 14); // PARSING + + addRegexToken('m', match1to2); + addRegexToken('mm', match1to2, match2); + addParseToken(['m', 'mm'], MINUTE); // MOMENTS + + var getSetMinute = makeGetSet('Minutes', false); // FORMATTING + + addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES + + addUnitAlias('second', 's'); // PRIORITY + + addUnitPriority('second', 15); // PARSING + + addRegexToken('s', match1to2); + addRegexToken('ss', match1to2, match2); + addParseToken(['s', 'ss'], SECOND); // MOMENTS + + var getSetSecond = makeGetSet('Seconds', false); // FORMATTING + + addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); + }); + addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); + }); + addFormatToken(0, ['SSS', 3], 0, 'millisecond'); + addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; + }); + addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; + }); + addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; + }); + addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; + }); + addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; + }); + addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; + }); // ALIASES + + addUnitAlias('millisecond', 'ms'); // PRIORITY + + addUnitPriority('millisecond', 16); // PARSING + + addRegexToken('S', match1to3, match1); + addRegexToken('SS', match1to3, match2); + addRegexToken('SSS', match1to3, match3); + var token; + + for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); + } + + function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); + } + + for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); + } // MOMENTS + + + var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING + + addFormatToken('z', 0, 0, 'zoneAbbr'); + addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS + + function getZoneAbbr() { + return this._isUTC ? 'UTC' : ''; + } + + function getZoneName() { + return this._isUTC ? 'Coordinated Universal Time' : ''; + } + + var proto = Moment.prototype; + proto.add = add; + proto.calendar = calendar$1; + proto.clone = clone; + proto.diff = diff; + proto.endOf = endOf; + proto.format = format; + proto.from = from; + proto.fromNow = fromNow; + proto.to = to; + proto.toNow = toNow; + proto.get = stringGet; + proto.invalidAt = invalidAt; + proto.isAfter = isAfter; + proto.isBefore = isBefore; + proto.isBetween = isBetween; + proto.isSame = isSame; + proto.isSameOrAfter = isSameOrAfter; + proto.isSameOrBefore = isSameOrBefore; + proto.isValid = isValid$2; + proto.lang = lang; + proto.locale = locale; + proto.localeData = localeData; + proto.max = prototypeMax; + proto.min = prototypeMin; + proto.parsingFlags = parsingFlags; + proto.set = stringSet; + proto.startOf = startOf; + proto.subtract = subtract; + proto.toArray = toArray; + proto.toObject = toObject; + proto.toDate = toDate; + proto.toISOString = toISOString; + proto.inspect = inspect; + proto.toJSON = toJSON; + proto.toString = toString; + proto.unix = unix; + proto.valueOf = valueOf; + proto.creationData = creationData; + proto.year = getSetYear; + proto.isLeapYear = getIsLeapYear; + proto.weekYear = getSetWeekYear; + proto.isoWeekYear = getSetISOWeekYear; + proto.quarter = proto.quarters = getSetQuarter; + proto.month = getSetMonth; + proto.daysInMonth = getDaysInMonth; + proto.week = proto.weeks = getSetWeek; + proto.isoWeek = proto.isoWeeks = getSetISOWeek; + proto.weeksInYear = getWeeksInYear; + proto.isoWeeksInYear = getISOWeeksInYear; + proto.date = getSetDayOfMonth; + proto.day = proto.days = getSetDayOfWeek; + proto.weekday = getSetLocaleDayOfWeek; + proto.isoWeekday = getSetISODayOfWeek; + proto.dayOfYear = getSetDayOfYear; + proto.hour = proto.hours = getSetHour; + proto.minute = proto.minutes = getSetMinute; + proto.second = proto.seconds = getSetSecond; + proto.millisecond = proto.milliseconds = getSetMillisecond; + proto.utcOffset = getSetOffset; + proto.utc = setOffsetToUTC; + proto.local = setOffsetToLocal; + proto.parseZone = setOffsetToParsedOffset; + proto.hasAlignedHourOffset = hasAlignedHourOffset; + proto.isDST = isDaylightSavingTime; + proto.isLocal = isLocal; + proto.isUtcOffset = isUtcOffset; + proto.isUtc = isUtc; + proto.isUTC = isUtc; + proto.zoneAbbr = getZoneAbbr; + proto.zoneName = getZoneName; + proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); + proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); + proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); + proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone); + proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted); + + function createUnix(input) { + return createLocal(input * 1000); + } + + function createInZone() { + return createLocal.apply(null, arguments).parseZone(); + } + + function preParsePostFormat(string) { + return string; + } + + var proto$1 = Locale.prototype; + proto$1.calendar = calendar; + proto$1.longDateFormat = longDateFormat; + proto$1.invalidDate = invalidDate; + proto$1.ordinal = ordinal; + proto$1.preparse = preParsePostFormat; + proto$1.postformat = preParsePostFormat; + proto$1.relativeTime = relativeTime; + proto$1.pastFuture = pastFuture; + proto$1.set = set; + proto$1.months = localeMonths; + proto$1.monthsShort = localeMonthsShort; + proto$1.monthsParse = localeMonthsParse; + proto$1.monthsRegex = monthsRegex; + proto$1.monthsShortRegex = monthsShortRegex; + proto$1.week = localeWeek; + proto$1.firstDayOfYear = localeFirstDayOfYear; + proto$1.firstDayOfWeek = localeFirstDayOfWeek; + proto$1.weekdays = localeWeekdays; + proto$1.weekdaysMin = localeWeekdaysMin; + proto$1.weekdaysShort = localeWeekdaysShort; + proto$1.weekdaysParse = localeWeekdaysParse; + proto$1.weekdaysRegex = weekdaysRegex; + proto$1.weekdaysShortRegex = weekdaysShortRegex; + proto$1.weekdaysMinRegex = weekdaysMinRegex; + proto$1.isPM = localeIsPM; + proto$1.meridiem = localeMeridiem; + + function get$1(format, index, field, setter) { + var locale = getLocale(); + var utc = createUTC().set(setter, index); + return locale[field](utc, format); + } + + function listMonthsImpl(format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i; + var out = []; + + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + + return out; + } // () + // (5) + // (fmt, 5) + // (fmt) + // (true) + // (true, 5) + // (true, fmt, 5) + // (true, fmt) + + + function listWeekdaysImpl(localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + var i; + var out = []; + + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + + return out; + } + + function listMonths(format, index) { + return listMonthsImpl(format, index, 'months'); + } + + function listMonthsShort(format, index) { + return listMonthsImpl(format, index, 'monthsShort'); + } + + function listWeekdays(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); + } + + function listWeekdaysShort(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); + } + + function listWeekdaysMin(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); + } + + getSetGlobalLocale('en', { + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal: function (number) { + var b = number % 10, + output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th'; + return number + output; + } + }); // Side effect imports + + hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale); + hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale); + var mathAbs = Math.abs; + + function abs() { + var data = this._data; + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + return this; + } + + function addSubtract$1(duration, input, value, direction) { + var other = createDuration(input, value); + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + return duration._bubble(); + } // supports only 2.0-style add(1, 's') or add(duration) + + + function add$1(input, value) { + return addSubtract$1(this, input, value, 1); + } // supports only 2.0-style subtract(1, 's') or subtract(duration) + + + function subtract$1(input, value) { + return addSubtract$1(this, input, value, -1); + } + + function absCeil(number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } + } + + function bubble() { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + + if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } // The following code bubbles up values, see the tests for + // examples of what that means. + + + data.milliseconds = milliseconds % 1000; + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + hours = absFloor(minutes / 60); + data.hours = hours % 24; + days += absFloor(hours / 24); // convert days to months + + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; + data.days = days; + data.months = months; + data.years = years; + return this; + } + + function daysToMonths(days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; + } + + function monthsToDays(months) { + // the reverse of daysToMonths + return months * 146097 / 4800; + } + + function as(units) { + if (!this.isValid()) { + return NaN; + } + + var days; + var months; + var milliseconds = this._milliseconds; + units = normalizeUnits(units); + + if (units === 'month' || units === 'quarter' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + + switch (units) { + case 'month': + return months; + + case 'quarter': + return months / 3; + + case 'year': + return months / 12; + } + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + + switch (units) { + case 'week': + return days / 7 + milliseconds / 6048e5; + + case 'day': + return days + milliseconds / 864e5; + + case 'hour': + return days * 24 + milliseconds / 36e5; + + case 'minute': + return days * 1440 + milliseconds / 6e4; + + case 'second': + return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + + case 'millisecond': + return Math.floor(days * 864e5) + milliseconds; + + default: + throw new Error('Unknown unit ' + units); + } + } + } // TODO: Use this.as('ms')? + + + function valueOf$1() { + if (!this.isValid()) { + return NaN; + } + + return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6; + } + + function makeAs(alias) { + return function () { + return this.as(alias); + }; + } + + var asMilliseconds = makeAs('ms'); + var asSeconds = makeAs('s'); + var asMinutes = makeAs('m'); + var asHours = makeAs('h'); + var asDays = makeAs('d'); + var asWeeks = makeAs('w'); + var asMonths = makeAs('M'); + var asQuarters = makeAs('Q'); + var asYears = makeAs('y'); + + function clone$1() { + return createDuration(this); + } + + function get$2(units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; + } + + function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; + } + + var milliseconds = makeGetter('milliseconds'); + var seconds = makeGetter('seconds'); + var minutes = makeGetter('minutes'); + var hours = makeGetter('hours'); + var days = makeGetter('days'); + var months = makeGetter('months'); + var years = makeGetter('years'); + + function weeks() { + return absFloor(this.days() / 7); + } + + var round = Math.round; + var thresholds = { + ss: 44, + // a few seconds to seconds + s: 45, + // seconds to minute + m: 45, + // minutes to hour + h: 22, + // hours to day + d: 26, + // days to month + M: 11 // months to year + + }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime$1(posNegDuration, withoutSuffix, locale) { + var duration = createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years]; + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); + } // This function allows you to set the rounding function for relative time strings + + + function getSetRelativeTimeRounding(roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + + if (typeof roundingFunction === 'function') { + round = roundingFunction; + return true; + } + + return false; + } // This function allows you to set a threshold for relative time strings + + + function getSetRelativeTimeThreshold(threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + + if (limit === undefined) { + return thresholds[threshold]; + } + + thresholds[threshold] = limit; + + if (threshold === 's') { + thresholds.ss = limit - 1; + } + + return true; + } + + function humanize(withSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var locale = this.localeData(); + var output = relativeTime$1(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); + } + + var abs$1 = Math.abs; + + function sign(x) { + return (x > 0) - (x < 0) || +x; + } + + function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000; + var days = abs$1(this._days); + var months = abs$1(this._months); + var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour + + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : ''; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + var totalSign = total < 0 ? '-' : ''; + var ymSign = sign(this._months) !== sign(total) ? '-' : ''; + var daysSign = sign(this._days) !== sign(total) ? '-' : ''; + var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : ''; + return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : ''); + } + + var proto$2 = Duration.prototype; + proto$2.isValid = isValid$1; + proto$2.abs = abs; + proto$2.add = add$1; + proto$2.subtract = subtract$1; + proto$2.as = as; + proto$2.asMilliseconds = asMilliseconds; + proto$2.asSeconds = asSeconds; + proto$2.asMinutes = asMinutes; + proto$2.asHours = asHours; + proto$2.asDays = asDays; + proto$2.asWeeks = asWeeks; + proto$2.asMonths = asMonths; + proto$2.asQuarters = asQuarters; + proto$2.asYears = asYears; + proto$2.valueOf = valueOf$1; + proto$2._bubble = bubble; + proto$2.clone = clone$1; + proto$2.get = get$2; + proto$2.milliseconds = milliseconds; + proto$2.seconds = seconds; + proto$2.minutes = minutes; + proto$2.hours = hours; + proto$2.days = days; + proto$2.weeks = weeks; + proto$2.months = months; + proto$2.years = years; + proto$2.humanize = humanize; + proto$2.toISOString = toISOString$1; + proto$2.toString = toISOString$1; + proto$2.toJSON = toISOString$1; + proto$2.locale = locale; + proto$2.localeData = localeData; + proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1); + proto$2.lang = lang; // Side effect imports + // FORMATTING + + addFormatToken('X', 0, 0, 'unix'); + addFormatToken('x', 0, 0, 'valueOf'); // PARSING + + addRegexToken('x', matchSigned); + addRegexToken('X', matchTimestamp); + addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); + }); + addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); + }); // Side effect imports + + hooks.version = '2.24.0'; + setHookCallback(createLocal); + hooks.fn = proto; + hooks.min = min; + hooks.max = max; + hooks.now = now; + hooks.utc = createUTC; + hooks.unix = createUnix; + hooks.months = listMonths; + hooks.isDate = isDate; + hooks.locale = getSetGlobalLocale; + hooks.invalid = createInvalid; + hooks.duration = createDuration; + hooks.isMoment = isMoment; + hooks.weekdays = listWeekdays; + hooks.parseZone = createInZone; + hooks.localeData = getLocale; + hooks.isDuration = isDuration; + hooks.monthsShort = listMonthsShort; + hooks.weekdaysMin = listWeekdaysMin; + hooks.defineLocale = defineLocale; + hooks.updateLocale = updateLocale; + hooks.locales = listLocales; + hooks.weekdaysShort = listWeekdaysShort; + hooks.normalizeUnits = normalizeUnits; + hooks.relativeTimeRounding = getSetRelativeTimeRounding; + hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; + hooks.calendarFormat = getCalendarFormat; + hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats + + hooks.HTML5_FMT = { + DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', + // + DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', + // + DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', + // + DATE: 'YYYY-MM-DD', + // + TIME: 'HH:mm', + // + TIME_SECONDS: 'HH:mm:ss', + // + TIME_MS: 'HH:mm:ss.SSS', + // + WEEK: 'GGGG-[W]WW', + // + MONTH: 'YYYY-MM' // + + }; + return hooks; + }); +}); // Maps for number <-> hex string conversion + +var byteToHex = []; + +for (var i = 0; i < 256; i++) { + byteToHex[i] = (i + 0x100).toString(16).substr(1); +} +/** + * Represent binary UUID into it's string representation. + * + * @param buf - Buffer containing UUID bytes. + * @param offset - Offset from the start of the buffer where the UUID is saved (not needed if the buffer starts with the UUID). + * + * @returns String representation of the UUID. + */ + + +function stringifyUUID(buf, offset) { + var i = offset || 0; + var bth = byteToHex; + return bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]]; +} +/** + * Generate 16 random bytes to be used as a base for UUID. + * + * @ignore + */ + + +var random = function () { + if (typeof crypto !== 'undefined' && crypto.getRandomValues) { + // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto + // Moderately fast, high quality + var _rnds8 = new Uint8Array(16); + + return function whatwgRNG() { + crypto.getRandomValues(_rnds8); + return _rnds8; + }; + } // Math.random()-based (RNG) + // + // If all else fails, use Math.random(). + // It's fast, but is of unspecified quality. + + + var _rnds = new Array(16); + + return function () { + for (var i = 0, r; i < 16; i++) { + if ((i & 0x03) === 0) { + r = Math.random() * 0x100000000; + } + + _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff; + } + + return _rnds; + }; // uuid.js + // + // Copyright (c) 2010-2012 Robert Kieffer + // MIT License - http://opensource.org/licenses/mit-license.php + // Unique ID creation requires a high quality random # generator. We feature + // detect to determine the best RNG source, normalizing to a function that + // returns 128-bits of randomness, since that's what's usually required + // return require('./rng'); +}(); + +var byteToHex$1 = []; + +for (var i$1 = 0; i$1 < 256; i$1++) { + byteToHex$1[i$1] = (i$1 + 0x100).toString(16).substr(1); +} // **`v1()` - Generate time-based UUID** +// +// Inspired by https://github.com/LiosK/UUID.js +// and http://docs.python.org/library/uuid.html +// random #'s we need to init node and clockseq + + +var seedBytes = random(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + +var defaultNodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; // Per 4.2.2, randomize (14 bit) clockseq + +var defaultClockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; // Previous uuid creation time + +/** + * UUIDv4 options. + */ + +/** + * Generate UUIDv4 + * + * @param options - Options to be used instead of default generated values. + * String 'binary' is a shorthand for uuid4({}, new Array(16)). + * @param buf - If present the buffer will be filled with the generated UUID. + * @param offset - Offset of the UUID from the start of the buffer. + * + * @returns UUIDv4 + */ + +function uuid4() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var buf = arguments.length > 1 ? arguments[1] : undefined; + var offset = arguments.length > 2 ? arguments[2] : undefined; // Deprecated - 'format' argument, as supported in v1.2 + + var i = buf && offset || 0; + + if (typeof options === 'string') { + buf = options === 'binary' ? new Array(16) : undefined; + options = {}; + } + + var rnds = options.random || (options.rng || random)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided + + if (buf) { + for (var ii = 0; ii < 16; ii++) { + buf[i + ii] = rnds[ii]; + } + } + + return buf || stringifyUUID(rnds); +} // Rollup will complain about mixing default and named exports in UMD build, + + +function ownKeys(object, enumerableOnly) { + var keys = Object.keys(object); + + if (Object.getOwnPropertySymbols) { + keys.push.apply(keys, Object.getOwnPropertySymbols(object)); + } + + if (enumerableOnly) keys = keys.filter(function (sym) { + return Object.getOwnPropertyDescriptor(object, sym).enumerable; + }); + return keys; +} + +function _objectSpread(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + + if (i % 2) { + ownKeys(source, true).forEach(function (key) { + defineProperty(target, key, source[key]); + }); + } else if (Object.getOwnPropertyDescriptors) { + Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + } else { + ownKeys(source).forEach(function (key) { + Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); + }); + } + } + + return target; +} // for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/' +// code from http://momentjs.com/ + + +var ASPDateRegex = /^\/?Date\((-?\d+)/i; // Hex color + +var fullHexRE = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i; +var shortHexRE = /^#?([a-f\d])([a-f\d])([a-f\d])$/i; +/** + * Hue, Saturation, Value. + */ + +/** + * Test whether given object is a number + * + * @param value - Input value of unknown type. + * + * @returns True if number, false otherwise. + */ + +function isNumber(value) { + return value instanceof Number || typeof value === 'number'; +} +/** + * Remove everything in the DOM object + * + * @param DOMobject - Node whose child nodes will be recursively deleted. + */ + + +function recursiveDOMDelete(DOMobject) { + if (DOMobject) { + while (DOMobject.hasChildNodes() === true) { + var child = DOMobject.firstChild; + + if (child) { + recursiveDOMDelete(child); + DOMobject.removeChild(child); + } + } + } +} +/** + * Test whether given object is a string + * + * @param value - Input value of unknown type. + * + * @returns True if string, false otherwise. + */ + + +function isString(value) { + return value instanceof String || typeof value === 'string'; +} +/** + * Test whether given object is a object (not primitive or null). + * + * @param value - Input value of unknown type. + * + * @returns True if not null object, false otherwise. + */ + + +function isObject(value) { + return _typeof_1(value) === 'object' && value !== null; +} +/** + * Test whether given object is a Date, or a String containing a Date + * + * @param value - Input value of unknown type. + * + * @returns True if Date instance or string date representation, false otherwise. + */ + + +function isDate(value) { + if (value instanceof Date) { + return true; + } else if (isString(value)) { + // test whether this string contains a date + var match = ASPDateRegex.exec(value); + + if (match) { + return true; + } else if (!isNaN(Date.parse(value))) { + return true; + } + } + + return false; +} +/** + * Test whether given object is a Moment date. + * @TODO: This is basically a workaround, if Moment was imported property it wouldn't necessary as moment.isMoment is a TS type guard. + * + * @param value - Input value of unknown type. + * + * @returns True if Moment instance, false otherwise. + */ + + +function isMoment(value) { + return moment.isMoment(value); +} +/** + * Copy property from b to a if property present in a. + * If property in b explicitly set to null, delete it if `allowDeletion` set. + * + * Internal helper routine, should not be exported. Not added to `exports` for that reason. + * + * @param a - Target object. + * @param b - Source object. + * @param prop - Name of property to copy from b to a. + * @param allowDeletion if true, delete property in a if explicitly set to null in b + */ + + +function copyOrDelete(a, b, prop, allowDeletion) { + var doDeletion = false; + + if (allowDeletion === true) { + doDeletion = b[prop] === null && a[prop] !== undefined; + } + + if (doDeletion) { + delete a[prop]; + } else { + a[prop] = b[prop]; // Remember, this is a reference copy! + } +} +/** + * Fill an object with a possibly partially defined other object. + * + * Only copies values for the properties already present in a. + * That means an object is not created on a property if only the b object has it. + * + * @param a - The object that will have it's properties updated. + * @param b - The object with property updates. + * @param allowDeletion - if true, delete properties in a that are explicitly set to null in b + */ + + +function fillIfDefined(a, b) { + var allowDeletion = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; // NOTE: iteration of properties of a + // NOTE: prototype properties iterated over as well + + for (var prop in a) { + if (b[prop] !== undefined) { + if (b[prop] === null || _typeof_1(b[prop]) !== 'object') { + // Note: typeof null === 'object' + copyOrDelete(a, b, prop, allowDeletion); + } else { + var aProp = a[prop]; + var bProp = b[prop]; + + if (isObject(aProp) && isObject(bProp)) { + fillIfDefined(aProp, bProp, allowDeletion); + } + } + } + } +} +/** + * Copy the values of all of the enumerable own properties from one or more source objects to a + * target object. Returns the target object. + * + * @param target - The target object to copy to. + * @param source - The source object from which to copy properties. + * + * @return The target object. + */ + + +var extend = Object.assign; +/** + * Extend object a with selected properties of object b or a series of objects + * Only properties with defined values are copied + * + * @param props - Properties to be copied to a. + * @param a - The target. + * @param others - The sources. + * + * @returns Argument a. + */ + +function selectiveExtend(props, a) { + if (!Array.isArray(props)) { + throw new Error('Array with property names expected as first argument'); + } + + for (var _len = arguments.length, others = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) { + others[_key - 2] = arguments[_key]; + } + + for (var _i = 0, _others = others; _i < _others.length; _i++) { + var other = _others[_i]; + + for (var p = 0; p < props.length; p++) { + var prop = props[p]; + + if (other && Object.prototype.hasOwnProperty.call(other, prop)) { + a[prop] = other[prop]; + } + } + } + + return a; +} +/** + * Extend object a with selected properties of object b. + * Only properties with defined values are copied. + * + * **Note:** Previous version of this routine implied that multiple source objects + * could be used; however, the implementation was **wrong**. + * Since multiple (>1) sources weren't used anywhere in the `vis.js` code, + * this has been removed + * + * @param props - Names of first-level properties to copy over. + * @param a - Target object. + * @param b - Source object. + * @param allowDeletion - If true, delete property in a if explicitly set to null in b. + * + * @returns Argument a. + */ + + +function selectiveDeepExtend(props, a, b) { + var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; // TODO: add support for Arrays to deepExtend + + if (Array.isArray(b)) { + throw new TypeError('Arrays are not supported by deepExtend'); + } + + for (var p = 0; p < props.length; p++) { + var prop = props[p]; + + if (Object.prototype.hasOwnProperty.call(b, prop)) { + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + + if (a[prop].constructor === Object) { + deepExtend(a[prop], b[prop], false, allowDeletion); + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } else if (Array.isArray(b[prop])) { + throw new TypeError('Arrays are not supported by deepExtend'); + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } + } + + return a; +} +/** + * Extend object `a` with properties of object `b`, ignoring properties which are explicitly + * specified to be excluded. + * + * The properties of `b` are considered for copying. + * Properties which are themselves objects are are also extended. + * Only properties with defined values are copied + * + * @param propsToExclude - Names of properties which should *not* be copied. + * @param a - Object to extend. + * @param b - Object to take properties from for extension. + * @param allowDeletion - If true, delete properties in a that are explicitly set to null in b. + * + * @returns Argument a. + */ + + +function selectiveNotDeepExtend(propsToExclude, a, b) { + var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; // TODO: add support for Arrays to deepExtend + // NOTE: array properties have an else-below; apparently, there is a problem here. + + if (Array.isArray(b)) { + throw new TypeError('Arrays are not supported by deepExtend'); + } + + for (var prop in b) { + if (!Object.prototype.hasOwnProperty.call(b, prop)) { + continue; + } // Handle local properties only + + + if (propsToExclude.indexOf(prop) !== -1) { + continue; + } // In exclusion list, skip + + + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + + if (a[prop].constructor === Object) { + deepExtend(a[prop], b[prop]); // NOTE: allowDeletion not propagated! + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } else if (Array.isArray(b[prop])) { + a[prop] = []; + + for (var i = 0; i < b[prop].length; i++) { + a[prop].push(b[prop][i]); + } + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } + + return a; +} +/** + * Deep extend an object a with the properties of object b + * + * @param a - Target object. + * @param b - Source object. + * @param protoExtend - If true, the prototype values will also be extended + * (ie. the options objects that inherit from others will also get the inherited options). + * @param allowDeletion - If true, the values of fields that are null will be deleted. + * + * @returns Argument a. + */ + + +function deepExtend(a, b) { + var protoExtend = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; + + for (var prop in b) { + if (Object.prototype.hasOwnProperty.call(b, prop) || protoExtend === true) { + if (b[prop] && b[prop].constructor === Object) { + if (a[prop] === undefined) { + a[prop] = {}; + } + + if (a[prop].constructor === Object) { + deepExtend(a[prop], b[prop], protoExtend); // NOTE: allowDeletion not propagated! + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } else if (Array.isArray(b[prop])) { + a[prop] = []; + + for (var i = 0; i < b[prop].length; i++) { + a[prop].push(b[prop][i]); + } + } else { + copyOrDelete(a, b, prop, allowDeletion); + } + } + } + + return a; +} +/** + * Test whether all elements in two arrays are equal. + * + * @param a - First array. + * @param b - Second array. + * + * @returns True if both arrays have the same length and same elements (1 = '1'). + */ + + +function equalArray(a, b) { + if (a.length !== b.length) { + return false; + } + + for (var i = 0, len = a.length; i < len; i++) { + if (a[i] != b[i]) { + return false; + } + } + + return true; +} +/** + * Convert an object into another type + * + * @param object - Value of unknown type. + * @param type - Name of the desired type. + * + * @returns Object in the desired type. + * @throws Error + */ + + +function convert(object, type) { + var match; + + if (object === undefined) { + return undefined; + } + + if (object === null) { + return null; + } + + if (!type) { + return object; + } + + if (!(typeof type === 'string') && !(type instanceof String)) { + throw new Error('Type must be a string'); + } //noinspection FallthroughInSwitchStatementJS + + + switch (type) { + case 'boolean': + case 'Boolean': + return Boolean(object); + + case 'number': + case 'Number': + if (isString(object) && !isNaN(Date.parse(object))) { + return moment(object).valueOf(); + } else { + // @TODO: I don't think that Number and String constructors are a good idea. + // This could also fail if the object doesn't have valueOf method or if it's redefined. + // For example: Object.create(null) or { valueOf: 7 }. + return Number(object.valueOf()); + } + + case 'string': + case 'String': + return String(object); + + case 'Date': + if (isNumber(object)) { + return new Date(object); + } + + if (object instanceof Date) { + return new Date(object.valueOf()); + } else if (isMoment(object)) { + return new Date(object.valueOf()); + } + + if (isString(object)) { + match = ASPDateRegex.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])); // parse number + } else { + return moment(new Date(object)).toDate(); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date'); + } + + case 'Moment': + if (isNumber(object)) { + return moment(object); + } + + if (object instanceof Date) { + return moment(object.valueOf()); + } else if (isMoment(object)) { + return moment(object); + } + + if (isString(object)) { + match = ASPDateRegex.exec(object); + + if (match) { + // object is an ASP date + return moment(Number(match[1])); // parse number + } else { + return moment(object); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date'); + } + + case 'ISODate': + if (isNumber(object)) { + return new Date(object); + } else if (object instanceof Date) { + return object.toISOString(); + } else if (isMoment(object)) { + return object.toDate().toISOString(); + } else if (isString(object)) { + match = ASPDateRegex.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])).toISOString(); // parse number + } else { + return moment(object).format(); // ISO 8601 + } + } else { + throw new Error('Cannot convert object of type ' + getType(object) + ' to type ISODate'); + } + + case 'ASPDate': + if (isNumber(object)) { + return '/Date(' + object + ')/'; + } else if (object instanceof Date || isMoment(object)) { + return '/Date(' + object.valueOf() + ')/'; + } else if (isString(object)) { + match = ASPDateRegex.exec(object); + + var _value; + + if (match) { + // object is an ASP date + _value = new Date(Number(match[1])).valueOf(); // parse number + } else { + _value = new Date(object).valueOf(); // parse string + } + + return '/Date(' + _value + ')/'; + } else { + throw new Error('Cannot convert object of type ' + getType(object) + ' to type ASPDate'); + } + + default: + var never = type; + throw new Error("Unknown type ".concat(never)); + } +} +/** + * Get the type of an object, for example exports.getType([]) returns 'Array' + * + * @param object - Input value of unknown type. + * + * @returns Detected type. + */ + + +function getType(object) { + var type = _typeof_1(object); + + if (type === 'object') { + if (object === null) { + return 'null'; + } + + if (object instanceof Boolean) { + return 'Boolean'; + } + + if (object instanceof Number) { + return 'Number'; + } + + if (object instanceof String) { + return 'String'; + } + + if (Array.isArray(object)) { + return 'Array'; + } + + if (object instanceof Date) { + return 'Date'; + } + + return 'Object'; + } + + if (type === 'number') { + return 'Number'; + } + + if (type === 'boolean') { + return 'Boolean'; + } + + if (type === 'string') { + return 'String'; + } + + if (type === undefined) { + return 'undefined'; + } + + return type; +} +/** + * Used to extend an array and copy it. This is used to propagate paths recursively. + * + * @param arr - First part. + * @param newValue - The value to be aadded into the array. + * + * @returns A new array with all items from arr and newValue (which is last). + */ + + +function copyAndExtendArray(arr, newValue) { + return [].concat(toConsumableArray(arr), [newValue]); +} +/** + * Used to extend an array and copy it. This is used to propagate paths recursively. + * + * @param arr - The array to be copied. + * + * @returns Shallow copy of arr. + */ + + +function copyArray(arr) { + return arr.slice(); +} +/** + * Retrieve the absolute left value of a DOM element + * + * @param elem - A dom element, for example a div. + * + * @returns The absolute left position of this element in the browser page. + */ + + +function getAbsoluteLeft(elem) { + return elem.getBoundingClientRect().left; +} +/** + * Retrieve the absolute right value of a DOM element + * + * @param elem - A dom element, for example a div. + * + * @returns The absolute right position of this element in the browser page. + */ + + +function getAbsoluteRight(elem) { + return elem.getBoundingClientRect().right; +} +/** + * Retrieve the absolute top value of a DOM element + * + * @param elem - A dom element, for example a div. + * + * @returns The absolute top position of this element in the browser page. + */ + + +function getAbsoluteTop(elem) { + return elem.getBoundingClientRect().top; +} +/** + * Add a className to the given elements style. + * + * @param elem - The element to which the classes will be added. + * @param classNames - Space separated list of classes. + */ + + +function addClassName(elem, classNames) { + var classes = elem.className.split(' '); + var newClasses = classNames.split(' '); + classes = classes.concat(newClasses.filter(function (className) { + return classes.indexOf(className) < 0; + })); + elem.className = classes.join(' '); +} +/** + * Remove a className from the given elements style. + * + * @param elem - The element from which the classes will be removed. + * @param classNames - Space separated list of classes. + */ + + +function removeClassName(elem, classNames) { + var classes = elem.className.split(' '); + var oldClasses = classNames.split(' '); + classes = classes.filter(function (className) { + return oldClasses.indexOf(className) < 0; + }); + elem.className = classes.join(' '); +} +/** + * For each method for both arrays and objects. + * In case of an array, the built-in Array.forEach() is applied (**No, it's not!**). + * In case of an Object, the method loops over all properties of the object. + * + * @param object - An Object or Array to be iterated over. + * @param callback - Array.forEach-like callback. + */ + + +function forEach(object, callback) { + if (Array.isArray(object)) { + // array + var len = object.length; + + for (var i = 0; i < len; i++) { + callback(object[i], i, object); + } + } else { + // object + for (var _key2 in object) { + if (Object.prototype.hasOwnProperty.call(object, _key2)) { + callback(object[_key2], _key2, object); + } + } + } +} +/** + * Convert an object into an array: all objects properties are put into the array. The resulting array is unordered. + * + * @param o - Object that contains the properties and methods. + * + * @returns An array of unordered values. + */ + + +var toArray = Object.values; +/** + * Update a property in an object + * + * @param object - The object whose property will be updated. + * @param key - Name of the property to be updated. + * @param value - The new value to be assigned. + * + * @returns Whether the value was updated (true) or already strictly the same in the original object (false). + */ + +function updateProperty(object, key, value) { + if (object[key] !== value) { + object[key] = value; + return true; + } else { + return false; + } +} +/** + * Throttle the given function to be only executed once per animation frame. + * + * @param fn - The original function. + * + * @returns The throttled function. + */ + + +function throttle(fn) { + var scheduled = false; + return function () { + if (!scheduled) { + scheduled = true; + requestAnimationFrame(function () { + scheduled = false; + fn(); + }); + } + }; +} +/** + * Add and event listener. Works for all browsers. + * + * @param element - The element to bind the event listener to. + * @param action - Same as Element.addEventListener(action, —, —). + * @param listener - Same as Element.addEventListener(—, listener, —). + * @param useCapture - Same as Element.addEventListener(—, —, useCapture). + */ + + +function addEventListener(element, action, listener, useCapture) { + if (element.addEventListener) { + if (useCapture === undefined) { + useCapture = false; + } + + if (action === 'mousewheel' && navigator.userAgent.indexOf('Firefox') >= 0) { + action = 'DOMMouseScroll'; // For Firefox + } + + element.addEventListener(action, listener, useCapture); + } else { + element.attachEvent('on' + action, listener); // IE browsers + } +} +/** + * Remove an event listener from an element + * + * @param element - The element to bind the event listener to. + * @param action - Same as Element.removeEventListener(action, —, —). + * @param listener - Same as Element.removeEventListener(—, listener, —). + * @param useCapture - Same as Element.removeEventListener(—, —, useCapture). + */ + + +function removeEventListener(element, action, listener, useCapture) { + if (element.removeEventListener) { + // non-IE browsers + if (useCapture === undefined) { + useCapture = false; + } + + if (action === 'mousewheel' && navigator.userAgent.indexOf('Firefox') >= 0) { + action = 'DOMMouseScroll'; // For Firefox + } + + element.removeEventListener(action, listener, useCapture); + } else { + element.detachEvent('on' + action, listener); // IE browsers + } +} +/** + * Cancels the event's default action if it is cancelable, without stopping further propagation of the event. + * + * @param event - The event whose default action should be prevented. + */ + + +function preventDefault(event) { + if (!event) { + event = window.event; + } + + if (!event) ;else if (event.preventDefault) { + event.preventDefault(); // non-IE browsers + } else { + event.returnValue = false; // IE browsers + } +} +/** + * Get HTML element which is the target of the event. + * + * @param event - The event. + * + * @returns The element or null if not obtainable. + */ + + +function getTarget() { + var event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : window.event; // code from http://www.quirksmode.org/js/events_properties.html + // @TODO: EventTarget can be almost anything, is it okay to return only Elements? + + var target = null; + if (!event) ;else if (event.target) { + target = event.target; + } else if (event.srcElement) { + target = event.srcElement; + } + + if (!(target instanceof Element)) { + return null; + } + + if (target.nodeType != null && target.nodeType == 3) { + // defeat Safari bug + target = target.parentNode; + + if (!(target instanceof Element)) { + return null; + } + } + + return target; +} +/** + * Check if given element contains given parent somewhere in the DOM tree + * + * @param element - The element to be tested. + * @param parent - The ancestor (not necessarily parent) of the element. + * + * @returns True if parent is an ancestor of the element, false otherwise. + */ + + +function hasParent(element, parent) { + var elem = element; + + while (elem) { + if (elem === parent) { + return true; + } else if (elem.parentNode) { + elem = elem.parentNode; + } else { + return false; + } + } + + return false; +} + +var option = { + /** + * Convert a value into a boolean. + * + * @param value - Value to be converted intoboolean, a function will be executed as (() => unknown). + * @param defaultValue - If the value or the return value of the function == null then this will be returned. + * + * @returns Corresponding boolean value, if none then the default value, if none then null. + */ + asBoolean: function asBoolean(value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return value != false; + } + + return defaultValue || null; + }, + + /** + * Convert a value into a number. + * + * @param value - Value to be converted intonumber, a function will be executed as (() => unknown). + * @param defaultValue - If the value or the return value of the function == null then this will be returned. + * + * @returns Corresponding **boxed** number value, if none then the default value, if none then null. + */ + asNumber: function asNumber(value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return Number(value) || defaultValue || null; + } + + return defaultValue || null; + }, + + /** + * Convert a value into a string. + * + * @param value - Value to be converted intostring, a function will be executed as (() => unknown). + * @param defaultValue - If the value or the return value of the function == null then this will be returned. + * + * @returns Corresponding **boxed** string value, if none then the default value, if none then null. + */ + asString: function asString(value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (value != null) { + return String(value); + } + + return defaultValue || null; + }, + + /** + * Convert a value into a size. + * + * @param value - Value to be converted intosize, a function will be executed as (() => unknown). + * @param defaultValue - If the value or the return value of the function == null then this will be returned. + * + * @returns Corresponding string value (number + 'px'), if none then the default value, if none then null. + */ + asSize: function asSize(value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + if (isString(value)) { + return value; + } else if (isNumber(value)) { + return value + 'px'; + } else { + return defaultValue || null; + } + }, + + /** + * Convert a value into a DOM Element. + * + * @param value - Value to be converted into DOM Element, a function will be executed as (() => unknown). + * @param defaultValue - If the value or the return value of the function == null then this will be returned. + * + * @returns The DOM Element, if none then the default value, if none then null. + */ + asElement: function asElement(value, defaultValue) { + if (typeof value == 'function') { + value = value(); + } + + return value || defaultValue || null; + } +}; +/** + * Convert hex color string into RGB color object. + * http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb + * + * @param hex - Hex color string (3 or 6 digits, with or without #). + * + * @returns RGB color object. + */ + +function hexToRGB(hex) { + var result; + + switch (hex.length) { + case 3: + case 4: + result = shortHexRE.exec(hex); + return result ? { + r: parseInt(result[1] + result[1], 16), + g: parseInt(result[2] + result[2], 16), + b: parseInt(result[3] + result[3], 16) + } : null; + + case 6: + case 7: + result = fullHexRE.exec(hex); + return result ? { + r: parseInt(result[1], 16), + g: parseInt(result[2], 16), + b: parseInt(result[3], 16) + } : null; + + default: + return null; + } +} +/** + * This function takes string color in hex or RGB format and adds the opacity, RGBA is passed through unchanged. + * + * @param color - The color string (hex, RGB, RGBA). + * @param opacity - The new opacity. + * + * @returns RGBA string, for example 'rgba(255, 0, 127, 0.3)'. + */ + + +function overrideOpacity(color, opacity) { + if (color.indexOf('rgba') !== -1) { + return color; + } else if (color.indexOf('rgb') !== -1) { + var rgb = color.substr(color.indexOf('(') + 1).replace(')', '').split(','); + return 'rgba(' + rgb[0] + ',' + rgb[1] + ',' + rgb[2] + ',' + opacity + ')'; + } else { + var _rgb = hexToRGB(color); + + if (_rgb == null) { + return color; + } else { + return 'rgba(' + _rgb.r + ',' + _rgb.g + ',' + _rgb.b + ',' + opacity + ')'; + } + } +} +/** + * Convert RGB <0, 255> into hex color string. + * + * @param red - Red channel. + * @param green - Green channel. + * @param blue - Blue channel. + * + * @returns Hex color string (for example: '#0acdc0'). + */ + + +function RGBToHex(red, green, blue) { + return '#' + ((1 << 24) + (red << 16) + (green << 8) + blue).toString(16).slice(1); +} +/** + * Parse a color property into an object with border, background, and highlight colors + * + * @param inputColor - Shorthand color string or input color object. + * @param defaultColor - Full color object to fill in missing values in inputColor. + * + * @returns Color object. + */ + + +function parseColor(inputColor, defaultColor) { + if (isString(inputColor)) { + var colorStr = inputColor; + + if (isValidRGB(colorStr)) { + var rgb = colorStr.substr(4).substr(0, colorStr.length - 5).split(',').map(function (value) { + return parseInt(value); + }); + colorStr = RGBToHex(rgb[0], rgb[1], rgb[2]); + } + + if (isValidHex(colorStr) === true) { + var hsv = hexToHSV(colorStr); + var lighterColorHSV = { + h: hsv.h, + s: hsv.s * 0.8, + v: Math.min(1, hsv.v * 1.02) + }; + var darkerColorHSV = { + h: hsv.h, + s: Math.min(1, hsv.s * 1.25), + v: hsv.v * 0.8 + }; + var darkerColorHex = HSVToHex(darkerColorHSV.h, darkerColorHSV.s, darkerColorHSV.v); + var lighterColorHex = HSVToHex(lighterColorHSV.h, lighterColorHSV.s, lighterColorHSV.v); + return { + background: colorStr, + border: darkerColorHex, + highlight: { + background: lighterColorHex, + border: darkerColorHex + }, + hover: { + background: lighterColorHex, + border: darkerColorHex + } + }; + } else { + return { + background: colorStr, + border: colorStr, + highlight: { + background: colorStr, + border: colorStr + }, + hover: { + background: colorStr, + border: colorStr + } + }; + } + } else { + if (defaultColor) { + var color = { + background: inputColor.background || defaultColor.background, + border: inputColor.border || defaultColor.border, + highlight: isString(inputColor.highlight) ? { + border: inputColor.highlight, + background: inputColor.highlight + } : { + background: inputColor.highlight && inputColor.highlight.background || defaultColor.highlight.background, + border: inputColor.highlight && inputColor.highlight.border || defaultColor.highlight.border + }, + hover: isString(inputColor.hover) ? { + border: inputColor.hover, + background: inputColor.hover + } : { + border: inputColor.hover && inputColor.hover.border || defaultColor.hover.border, + background: inputColor.hover && inputColor.hover.background || defaultColor.hover.background + } + }; + return color; + } else { + var _color = { + background: inputColor.background || undefined, + border: inputColor.border || undefined, + highlight: isString(inputColor.highlight) ? { + border: inputColor.highlight, + background: inputColor.highlight + } : { + background: inputColor.highlight && inputColor.highlight.background || undefined, + border: inputColor.highlight && inputColor.highlight.border || undefined + }, + hover: isString(inputColor.hover) ? { + border: inputColor.hover, + background: inputColor.hover + } : { + border: inputColor.hover && inputColor.hover.border || undefined, + background: inputColor.hover && inputColor.hover.background || undefined + } + }; + return _color; + } + } +} +/** + * Convert RGB <0, 255> into HSV object. + * http://www.javascripter.net/faq/rgb2hsv.htm + * + * @param red - Red channel. + * @param green - Green channel. + * @param blue - Blue channel. + * + * @returns HSV color object. + */ + + +function RGBToHSV(red, green, blue) { + red = red / 255; + green = green / 255; + blue = blue / 255; + var minRGB = Math.min(red, Math.min(green, blue)); + var maxRGB = Math.max(red, Math.max(green, blue)); // Black-gray-white + + if (minRGB === maxRGB) { + return { + h: 0, + s: 0, + v: minRGB + }; + } // Colors other than black-gray-white: + + + var d = red === minRGB ? green - blue : blue === minRGB ? red - green : blue - red; + var h = red === minRGB ? 3 : blue === minRGB ? 1 : 5; + var hue = 60 * (h - d / (maxRGB - minRGB)) / 360; + var saturation = (maxRGB - minRGB) / maxRGB; + var value = maxRGB; + return { + h: hue, + s: saturation, + v: value + }; +} + +var cssUtil = { + // split a string with css styles into an object with key/values + split: function split(cssText) { + var styles = {}; + cssText.split(';').forEach(function (style) { + if (style.trim() != '') { + var parts = style.split(':'); + + var _key3 = parts[0].trim(); + + var _value2 = parts[1].trim(); + + styles[_key3] = _value2; + } + }); + return styles; + }, + // build a css text string from an object with key/values + join: function join(styles) { + return Object.keys(styles).map(function (key) { + return key + ': ' + styles[key]; + }).join('; '); + } +}; +/** + * Append a string with css styles to an element + * + * @param element - The element that will receive new styles. + * @param cssText - The styles to be appended. + */ + +function addCssText(element, cssText) { + var currentStyles = cssUtil.split(element.style.cssText); + var newStyles = cssUtil.split(cssText); + + var styles = _objectSpread({}, currentStyles, {}, newStyles); + + element.style.cssText = cssUtil.join(styles); +} +/** + * Remove a string with css styles from an element + * + * @param element - The element from which styles should be removed. + * @param cssText - The styles to be removed. + */ + + +function removeCssText(element, cssText) { + var styles = cssUtil.split(element.style.cssText); + var removeStyles = cssUtil.split(cssText); + + for (var _key4 in removeStyles) { + if (Object.prototype.hasOwnProperty.call(removeStyles, _key4)) { + delete styles[_key4]; + } + } + + element.style.cssText = cssUtil.join(styles); +} +/** + * Convert HSV <0, 1> into RGB color object. + * https://gist.github.com/mjijackson/5311256 + * + * @param h - Hue + * @param s - Saturation + * @param v - Value + * + * @returns RGB color object. + */ + + +function HSVToRGB(h, s, v) { + var r; + var g; + var b; + var i = Math.floor(h * 6); + var f = h * 6 - i; + var p = v * (1 - s); + var q = v * (1 - f * s); + var t = v * (1 - (1 - f) * s); + + switch (i % 6) { + case 0: + r = v, g = t, b = p; + break; + + case 1: + r = q, g = v, b = p; + break; + + case 2: + r = p, g = v, b = t; + break; + + case 3: + r = p, g = q, b = v; + break; + + case 4: + r = t, g = p, b = v; + break; + + case 5: + r = v, g = p, b = q; + break; + } + + return { + r: Math.floor(r * 255), + g: Math.floor(g * 255), + b: Math.floor(b * 255) + }; +} +/** + * Convert HSV <0, 1> into hex color string. + * + * @param h - Hue + * @param s - Saturation + * @param v - Value + * + * @returns Hex color string. + */ + + +function HSVToHex(h, s, v) { + var rgb = HSVToRGB(h, s, v); + return RGBToHex(rgb.r, rgb.g, rgb.b); +} +/** + * Convert hex color string into HSV <0, 1>. + * + * @param hex - Hex color string. + * + * @returns HSV color object. + */ + + +function hexToHSV(hex) { + var rgb = hexToRGB(hex); + + if (!rgb) { + throw new TypeError("'".concat(hex, "' is not a valid color.")); + } + + return RGBToHSV(rgb.r, rgb.g, rgb.b); +} +/** + * Validate hex color string. + * + * @param hex - Unknown string that may contain a color. + * + * @returns True if the string is valid, false otherwise. + */ + + +function isValidHex(hex) { + var isOk = /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(hex); + return isOk; +} +/** + * Validate RGB color string. + * + * @param rgb - Unknown string that may contain a color. + * + * @returns True if the string is valid, false otherwise. + */ + + +function isValidRGB(rgb) { + rgb = rgb.replace(' ', ''); + var isOk = /rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(rgb); + return isOk; +} +/** + * Validate RGBA color string. + * + * @param rgba - Unknown string that may contain a color. + * + * @returns True if the string is valid, false otherwise. + */ + + +function isValidRGBA(rgba) { + rgba = rgba.replace(' ', ''); + var isOk = /rgba\((\d{1,3}),(\d{1,3}),(\d{1,3}),(0?.{1,3})\)/i.test(rgba); + return isOk; +} +/** + * This recursively redirects the prototype of JSON objects to the referenceObject. + * This is used for default options. + * + * @param fields - Names of properties to be bridged. + * @param referenceObject - The original object. + * + * @returns A new object inheriting from the referenceObject. + */ + + +function selectiveBridgeObject(fields, referenceObject) { + if (referenceObject !== null && _typeof_1(referenceObject) === 'object') { + // !!! typeof null === 'object' + var objectTo = Object.create(referenceObject); + + for (var i = 0; i < fields.length; i++) { + if (Object.prototype.hasOwnProperty.call(referenceObject, fields[i])) { + if (_typeof_1(referenceObject[fields[i]]) == 'object') { + objectTo[fields[i]] = bridgeObject(referenceObject[fields[i]]); + } + } + } + + return objectTo; + } else { + return null; + } +} +/** + * This recursively redirects the prototype of JSON objects to the referenceObject. + * This is used for default options. + * + * @param referenceObject - The original object. + * + * @returns The Element if the referenceObject is an Element, or a new object inheriting from the referenceObject. + */ + + +function bridgeObject(referenceObject) { + if (referenceObject === null || _typeof_1(referenceObject) !== 'object') { + return null; + } + + if (referenceObject instanceof Element) { + // Avoid bridging DOM objects + return referenceObject; + } + + var objectTo = Object.create(referenceObject); + + for (var i in referenceObject) { + if (Object.prototype.hasOwnProperty.call(referenceObject, i)) { + if (_typeof_1(referenceObject[i]) == 'object') { + objectTo[i] = bridgeObject(referenceObject[i]); + } + } + } + + return objectTo; +} +/** + * This method provides a stable sort implementation, very fast for presorted data. + * + * @param a - The array to be sorted (in-place). + * @param compare - An order comparator. + * + * @returns The argument a. + */ + + +function insertSort(a, compare) { + for (var i = 0; i < a.length; i++) { + var k = a[i]; + var j = void 0; + + for (j = i; j > 0 && compare(k, a[j - 1]) < 0; j--) { + a[j] = a[j - 1]; + } + + a[j] = k; + } + + return a; +} +/** + * This is used to set the options of subobjects in the options object. + * + * A requirement of these subobjects is that they have an 'enabled' element + * which is optional for the user but mandatory for the program. + * + * The added value here of the merge is that option 'enabled' is set as required. + * + * @param mergeTarget - Either this.options or the options used for the groups. + * @param options - Options. + * @param option - Option key in the options argument. + * @param globalOptions - Global options, passed in to determine value of option 'enabled'. + */ + + +function mergeOptions(mergeTarget, options, option) { + var globalOptions = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {}; // Local helpers + + var isPresent = function isPresent(obj) { + return obj !== null && obj !== undefined; + }; + + var isObject = function isObject(obj) { + return obj !== null && _typeof_1(obj) === 'object'; + }; // https://stackoverflow.com/a/34491287/1223531 + + + var isEmpty = function isEmpty(obj) { + for (var x in obj) { + if (Object.prototype.hasOwnProperty.call(obj, x)) { + return false; + } + } + + return true; + }; // Guards + + + if (!isObject(mergeTarget)) { + throw new Error('Parameter mergeTarget must be an object'); + } + + if (!isObject(options)) { + throw new Error('Parameter options must be an object'); + } + + if (!isPresent(option)) { + throw new Error('Parameter option must have a value'); + } + + if (!isObject(globalOptions)) { + throw new Error('Parameter globalOptions must be an object'); + } // + // Actual merge routine, separated from main logic + // Only a single level of options is merged. Deeper levels are ref'd. This may actually be an issue. + // + + + var doMerge = function doMerge(target, options, option) { + if (!isObject(target[option])) { + target[option] = {}; + } + + var src = options[option]; + var dst = target[option]; + + for (var prop in src) { + if (Object.prototype.hasOwnProperty.call(src, prop)) { + dst[prop] = src[prop]; + } + } + }; // Local initialization + + + var srcOption = options[option]; + var globalPassed = isObject(globalOptions) && !isEmpty(globalOptions); + var globalOption = globalPassed ? globalOptions[option] : undefined; + var globalEnabled = globalOption ? globalOption.enabled : undefined; ///////////////////////////////////////// + // Main routine + ///////////////////////////////////////// + + if (srcOption === undefined) { + return; // Nothing to do + } + + if (typeof srcOption === 'boolean') { + if (!isObject(mergeTarget[option])) { + mergeTarget[option] = {}; + } + + mergeTarget[option].enabled = srcOption; + return; + } + + if (srcOption === null && !isObject(mergeTarget[option])) { + // If possible, explicit copy from globals + if (isPresent(globalOption)) { + mergeTarget[option] = Object.create(globalOption); + } else { + return; // Nothing to do + } + } + + if (!isObject(srcOption)) { + return; + } // + // Ensure that 'enabled' is properly set. It is required internally + // Note that the value from options will always overwrite the existing value + // + + + var enabled = true; // default value + + if (srcOption.enabled !== undefined) { + enabled = srcOption.enabled; + } else { + // Take from globals, if present + if (globalEnabled !== undefined) { + enabled = globalOption.enabled; + } + } + + doMerge(mergeTarget, options, option); + mergeTarget[option].enabled = enabled; +} +/** + * This function does a binary search for a visible item in a sorted list. If we find a visible item, the code that uses + * this function will then iterate in both directions over this sorted list to find all visible items. + * + * @param orderedItems - Items ordered by start + * @param comparator - -1 is lower, 0 is equal, 1 is higher + * @param field - Property name on an item (i.e. item[field]). + * @param field2 - Second property name on an item (i.e. item[field][field2]). + * + * @returns Index of the found item or -1 if nothing was found. + */ + + +function binarySearchCustom(orderedItems, comparator, field, field2) { + var maxIterations = 10000; + var iteration = 0; + var low = 0; + var high = orderedItems.length - 1; + + while (low <= high && iteration < maxIterations) { + var middle = Math.floor((low + high) / 2); + var item = orderedItems[middle]; + + var _value3 = field2 === undefined ? item[field] : item[field][field2]; + + var searchResult = comparator(_value3); + + if (searchResult == 0) { + // jihaa, found a visible item! + return middle; + } else if (searchResult == -1) { + // it is too small --> increase low + low = middle + 1; + } else { + // it is too big --> decrease high + high = middle - 1; + } + + iteration++; + } + + return -1; +} +/** + * This function does a binary search for a specific value in a sorted array. If it does not exist but is in between of + * two values, we return either the one before or the one after, depending on user input + * If it is found, we return the index, else -1. + * + * @param orderedItems - Sorted array. + * @param target - The searched value. + * @param field - Name of the property in items to be searched. + * @param sidePreference - If the target is between two values, should the index of the before or the after be returned? + * @param comparator - An optional comparator, returning -1, 0, 1 for <, ===, >. + * + * @returns The index of found value or -1 if nothing was found. + */ + + +function binarySearchValue(orderedItems, target, field, sidePreference, comparator) { + var maxIterations = 10000; + var iteration = 0; + var low = 0; + var high = orderedItems.length - 1; + var prevValue; + var value; + var nextValue; + var middle; + comparator = comparator != undefined ? comparator : function (a, b) { + return a == b ? 0 : a < b ? -1 : 1; + }; + + while (low <= high && iteration < maxIterations) { + // get a new guess + middle = Math.floor(0.5 * (high + low)); + prevValue = orderedItems[Math.max(0, middle - 1)][field]; + value = orderedItems[middle][field]; + nextValue = orderedItems[Math.min(orderedItems.length - 1, middle + 1)][field]; + + if (comparator(value, target) == 0) { + // we found the target + return middle; + } else if (comparator(prevValue, target) < 0 && comparator(value, target) > 0) { + // target is in between of the previous and the current + return sidePreference == 'before' ? Math.max(0, middle - 1) : middle; + } else if (comparator(value, target) < 0 && comparator(nextValue, target) > 0) { + // target is in between of the current and the next + return sidePreference == 'before' ? middle : Math.min(orderedItems.length - 1, middle + 1); + } else { + // didnt find the target, we need to change our boundaries. + if (comparator(value, target) < 0) { + // it is too small --> increase low + low = middle + 1; + } else { + // it is too big --> decrease high + high = middle - 1; + } + } + + iteration++; + } // didnt find anything. Return -1. + + + return -1; +} +/* + * Easing Functions. + * Only considering the t value for the range [0, 1] => [0, 1]. + * + * Inspiration: from http://gizma.com/easing/ + * https://gist.github.com/gre/1650294 + */ + + +var easingFunctions = { + /** + * no easing, no acceleration + * + * @param t - Time. + * + * @returns Value at time t. + */ + linear: function linear(t) { + return t; + }, + + /** + * accelerating from zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInQuad: function easeInQuad(t) { + return t * t; + }, + + /** + * decelerating to zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeOutQuad: function easeOutQuad(t) { + return t * (2 - t); + }, + + /** + * acceleration until halfway, then deceleration + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInOutQuad: function easeInOutQuad(t) { + return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t; + }, + + /** + * accelerating from zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInCubic: function easeInCubic(t) { + return t * t * t; + }, + + /** + * decelerating to zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeOutCubic: function easeOutCubic(t) { + return --t * t * t + 1; + }, + + /** + * acceleration until halfway, then deceleration + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInOutCubic: function easeInOutCubic(t) { + return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1; + }, + + /** + * accelerating from zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInQuart: function easeInQuart(t) { + return t * t * t * t; + }, + + /** + * decelerating to zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeOutQuart: function easeOutQuart(t) { + return 1 - --t * t * t * t; + }, + + /** + * acceleration until halfway, then deceleration + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInOutQuart: function easeInOutQuart(t) { + return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t; + }, + + /** + * accelerating from zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInQuint: function easeInQuint(t) { + return t * t * t * t * t; + }, + + /** + * decelerating to zero velocity + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeOutQuint: function easeOutQuint(t) { + return 1 + --t * t * t * t * t; + }, + + /** + * acceleration until halfway, then deceleration + * + * @param t - Time. + * + * @returns Value at time t. + */ + easeInOutQuint: function easeInOutQuint(t) { + return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t; + } +}; +/** + * Experimentaly compute the width of the scrollbar for this browser. + * + * @returns The width in pixels. + */ + +function getScrollBarWidth() { + var inner = document.createElement('p'); + inner.style.width = '100%'; + inner.style.height = '200px'; + var outer = document.createElement('div'); + outer.style.position = 'absolute'; + outer.style.top = '0px'; + outer.style.left = '0px'; + outer.style.visibility = 'hidden'; + outer.style.width = '200px'; + outer.style.height = '150px'; + outer.style.overflow = 'hidden'; + outer.appendChild(inner); + document.body.appendChild(outer); + var w1 = inner.offsetWidth; + outer.style.overflow = 'scroll'; + var w2 = inner.offsetWidth; + + if (w1 == w2) { + w2 = outer.clientWidth; + } + + document.body.removeChild(outer); + return w1 - w2; +} // @TODO: This doesn't work properly. +// It works only for single property objects, +// otherwise it combines all of the types in a union. +// export function topMost ( +// pile: Record[], +// accessors: K1 | [K1] +// ): undefined | V1 +// export function topMost ( +// pile: Record>[], +// accessors: [K1, K2] +// ): undefined | V1 | V2 +// export function topMost ( +// pile: Record>>[], +// accessors: [K1, K2, K3] +// ): undefined | V1 | V2 | V3 + +/** + * Get the top most property value from a pile of objects. + * + * @param pile - Array of objects, no required format. + * @param accessors - Array of property names (e.g. object['foo']['bar'] → ['foo', 'bar']). + * + * @returns Value of the property with given accessors path from the first pile item where it's not undefined. + */ + + +function topMost(pile, accessors) { + var candidate; + + if (!Array.isArray(accessors)) { + accessors = [accessors]; + } + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = pile[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var member = _step.value; + + if (member) { + candidate = member[accessors[0]]; + + for (var i = 1; i < accessors.length; i++) { + if (candidate) { + candidate = candidate[accessors[i]]; + } + } + + if (typeof candidate !== 'undefined') { + break; + } + } + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + return candidate; +} + +var util = +/*#__PURE__*/ +Object.freeze({ + isNumber: isNumber, + recursiveDOMDelete: recursiveDOMDelete, + isString: isString, + isObject: isObject, + isDate: isDate, + isMoment: isMoment, + fillIfDefined: fillIfDefined, + extend: extend, + selectiveExtend: selectiveExtend, + selectiveDeepExtend: selectiveDeepExtend, + selectiveNotDeepExtend: selectiveNotDeepExtend, + deepExtend: deepExtend, + equalArray: equalArray, + convert: convert, + getType: getType, + copyAndExtendArray: copyAndExtendArray, + copyArray: copyArray, + getAbsoluteLeft: getAbsoluteLeft, + getAbsoluteRight: getAbsoluteRight, + getAbsoluteTop: getAbsoluteTop, + addClassName: addClassName, + removeClassName: removeClassName, + forEach: forEach, + toArray: toArray, + updateProperty: updateProperty, + throttle: throttle, + addEventListener: addEventListener, + removeEventListener: removeEventListener, + preventDefault: preventDefault, + getTarget: getTarget, + hasParent: hasParent, + option: option, + hexToRGB: hexToRGB, + overrideOpacity: overrideOpacity, + RGBToHex: RGBToHex, + parseColor: parseColor, + RGBToHSV: RGBToHSV, + addCssText: addCssText, + removeCssText: removeCssText, + HSVToRGB: HSVToRGB, + HSVToHex: HSVToHex, + hexToHSV: hexToHSV, + isValidHex: isValidHex, + isValidRGB: isValidRGB, + isValidRGBA: isValidRGBA, + selectiveBridgeObject: selectiveBridgeObject, + bridgeObject: bridgeObject, + insertSort: insertSort, + mergeOptions: mergeOptions, + binarySearchCustom: binarySearchCustom, + binarySearchValue: binarySearchValue, + easingFunctions: easingFunctions, + getScrollBarWidth: getScrollBarWidth, + topMost: topMost, + randomUUID: uuid4 +}); // New API (tree shakeable). + +var util$1 = /*#__PURE__*/Object.freeze({ + 'default': util, + HSVToHex: HSVToHex, + HSVToRGB: HSVToRGB, + RGBToHSV: RGBToHSV, + RGBToHex: RGBToHex, + addClassName: addClassName, + addCssText: addCssText, + addEventListener: addEventListener, + binarySearchCustom: binarySearchCustom, + binarySearchValue: binarySearchValue, + bridgeObject: bridgeObject, + convert: convert, + copyAndExtendArray: copyAndExtendArray, + copyArray: copyArray, + deepExtend: deepExtend, + easingFunctions: easingFunctions, + equalArray: equalArray, + extend: extend, + fillIfDefined: fillIfDefined, + forEach: forEach, + getAbsoluteLeft: getAbsoluteLeft, + getAbsoluteRight: getAbsoluteRight, + getAbsoluteTop: getAbsoluteTop, + getScrollBarWidth: getScrollBarWidth, + getTarget: getTarget, + getType: getType, + hasParent: hasParent, + hexToHSV: hexToHSV, + hexToRGB: hexToRGB, + insertSort: insertSort, + isDate: isDate, + isMoment: isMoment, + isNumber: isNumber, + isObject: isObject, + isString: isString, + isValidHex: isValidHex, + isValidRGB: isValidRGB, + isValidRGBA: isValidRGBA, + mergeOptions: mergeOptions, + option: option, + overrideOpacity: overrideOpacity, + parseColor: parseColor, + preventDefault: preventDefault, + randomUUID: uuid4, + recursiveDOMDelete: recursiveDOMDelete, + removeClassName: removeClassName, + removeCssText: removeCssText, + removeEventListener: removeEventListener, + selectiveBridgeObject: selectiveBridgeObject, + selectiveDeepExtend: selectiveDeepExtend, + selectiveExtend: selectiveExtend, + selectiveNotDeepExtend: selectiveNotDeepExtend, + throttle: throttle, + toArray: toArray, + topMost: topMost, + updateProperty: updateProperty +}); + +// DOM utility methods + +/** + * this prepares the JSON container for allocating SVG elements + * @param {Object} JSONcontainer + * @private + */ +function prepareElements(JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + JSONcontainer[elementType].redundant = JSONcontainer[elementType].used; + JSONcontainer[elementType].used = []; + } + } +} +/** + * this cleans up all the unused SVG elements. By asking for the parentNode, we only need to supply the JSON container from + * which to remove the redundant elements. + * + * @param {Object} JSONcontainer + * @private + */ + +function cleanupElements(JSONcontainer) { + // cleanup the redundant svgElements; + for (var elementType in JSONcontainer) { + if (JSONcontainer.hasOwnProperty(elementType)) { + if (JSONcontainer[elementType].redundant) { + for (var i = 0; i < JSONcontainer[elementType].redundant.length; i++) { + JSONcontainer[elementType].redundant[i].parentNode.removeChild(JSONcontainer[elementType].redundant[i]); + } + + JSONcontainer[elementType].redundant = []; + } + } + } +} +/** + * Ensures that all elements are removed first up so they can be recreated cleanly + * @param {Object} JSONcontainer + */ + +function resetElements(JSONcontainer) { + prepareElements(JSONcontainer); + cleanupElements(JSONcontainer); + prepareElements(JSONcontainer); +} +/** + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param {string} elementType + * @param {Object} JSONcontainer + * @param {Object} svgContainer + * @returns {Element} + * @private + */ + +function getSVGElement(elementType, JSONcontainer, svgContainer) { + var element; // allocate SVG element, if it doesnt yet exist, create one. + + if (JSONcontainer.hasOwnProperty(elementType)) { + // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } else { + // create a new element and add it to the SVG + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + svgContainer.appendChild(element); + } + } else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElementNS('http://www.w3.org/2000/svg', elementType); + JSONcontainer[elementType] = { + used: [], + redundant: [] + }; + svgContainer.appendChild(element); + } + + JSONcontainer[elementType].used.push(element); + return element; +} +/** + * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer + * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this. + * + * @param {string} elementType + * @param {Object} JSONcontainer + * @param {Element} DOMContainer + * @param {Element} insertBefore + * @returns {*} + */ + +function getDOMElement(elementType, JSONcontainer, DOMContainer, insertBefore) { + var element; // allocate DOM element, if it doesnt yet exist, create one. + + if (JSONcontainer.hasOwnProperty(elementType)) { + // this element has been created before + // check if there is an redundant element + if (JSONcontainer[elementType].redundant.length > 0) { + element = JSONcontainer[elementType].redundant[0]; + JSONcontainer[elementType].redundant.shift(); + } else { + // create a new element and add it to the SVG + element = document.createElement(elementType); + + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + DOMContainer.appendChild(element); + } + } + } else { + // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it. + element = document.createElement(elementType); + JSONcontainer[elementType] = { + used: [], + redundant: [] + }; + + if (insertBefore !== undefined) { + DOMContainer.insertBefore(element, insertBefore); + } else { + DOMContainer.appendChild(element); + } + } + + JSONcontainer[elementType].used.push(element); + return element; +} +/** + * Draw a point object. This is a separate function because it can also be called by the legend. + * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions + * as well. + * + * @param {number} x + * @param {number} y + * @param {Object} groupTemplate: A template containing the necessary information to draw the datapoint e.g., {style: 'circle', size: 5, className: 'className' } + * @param {Object} JSONcontainer + * @param {Object} svgContainer + * @param {Object} labelObj + * @returns {vis.PointItem} + */ + +function drawPoint(x, y, groupTemplate, JSONcontainer, svgContainer, labelObj) { + var point; + + if (groupTemplate.style == 'circle') { + point = getSVGElement('circle', JSONcontainer, svgContainer); + point.setAttributeNS(null, "cx", x); + point.setAttributeNS(null, "cy", y); + point.setAttributeNS(null, "r", 0.5 * groupTemplate.size); + } else { + point = getSVGElement('rect', JSONcontainer, svgContainer); + point.setAttributeNS(null, "x", x - 0.5 * groupTemplate.size); + point.setAttributeNS(null, "y", y - 0.5 * groupTemplate.size); + point.setAttributeNS(null, "width", groupTemplate.size); + point.setAttributeNS(null, "height", groupTemplate.size); + } + + if (groupTemplate.styles !== undefined) { + point.setAttributeNS(null, "style", groupTemplate.styles); + } + + point.setAttributeNS(null, "class", groupTemplate.className + " vis-point"); //handle label + + if (labelObj) { + var label = getSVGElement('text', JSONcontainer, svgContainer); + + if (labelObj.xOffset) { + x = x + labelObj.xOffset; + } + + if (labelObj.yOffset) { + y = y + labelObj.yOffset; + } + + if (labelObj.content) { + label.textContent = labelObj.content; + } + + if (labelObj.className) { + label.setAttributeNS(null, "class", labelObj.className + " vis-label"); + } + + label.setAttributeNS(null, "x", x); + label.setAttributeNS(null, "y", y); + } + + return point; +} +/** + * draw a bar SVG element centered on the X coordinate + * + * @param {number} x + * @param {number} y + * @param {number} width + * @param {number} height + * @param {string} className + * @param {Object} JSONcontainer + * @param {Object} svgContainer + * @param {string} style + */ + +function drawBar(x, y, width, height, className, JSONcontainer, svgContainer, style) { + if (height != 0) { + if (height < 0) { + height *= -1; + y -= height; + } + + var rect = getSVGElement('rect', JSONcontainer, svgContainer); + rect.setAttributeNS(null, "x", x - 0.5 * width); + rect.setAttributeNS(null, "y", y); + rect.setAttributeNS(null, "width", width); + rect.setAttributeNS(null, "height", height); + rect.setAttributeNS(null, "class", className); + + if (style) { + rect.setAttributeNS(null, "style", style); + } + } +} +/** + * get default language + * @returns {string} + */ + +function getNavigatorLanguage() { + if (!navigator) return 'en'; + + if (navigator.languages && navigator.languages.length) { + return navigator.languages; + } else { + return navigator.userLanguage || navigator.language || navigator.browserLanguage || 'en'; + } +} + +var DOMutil = /*#__PURE__*/Object.freeze({ + prepareElements: prepareElements, + cleanupElements: cleanupElements, + resetElements: resetElements, + getSVGElement: getSVGElement, + getDOMElement: getDOMElement, + drawPoint: drawPoint, + drawBar: drawBar, + getNavigatorLanguage: getNavigatorLanguage +}); + +/** + * vis-data - data + * http://visjs.org/ + * + * Manage unstructured data using DataSet. Add, update, and remove data, and listen for changes in the data. + * + * @version 6.1.0 + * @date 2019-07-16T13:37:00Z + * + * @copyright (c) 2011-2017 Almende B.V, http://almende.com + * @copyright (c) 2018-2019 visjs contributors, https://github.com/visjs + * + * @license + * vis.js is dual licensed under both + * + * 1. The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 + * + * and + * + * 2. The MIT License + * http://opensource.org/licenses/MIT + * + * vis.js may be distributed under either license. + */ +function _defineProperty$1(obj, key, value) { + if (key in obj) { + Object.defineProperty(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; +} + +var defineProperty$1 = _defineProperty$1; + +function createCommonjsModule$1(fn, module) { + return module = { + exports: {} + }, fn(module, module.exports), module.exports; +} + +var _typeof_1$1 = createCommonjsModule$1(function (module) { + function _typeof2(obj) { + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof2 = function _typeof2(obj) { + return typeof obj; + }; + } else { + _typeof2 = function _typeof2(obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof2(obj); + } + + function _typeof(obj) { + if (typeof Symbol === "function" && _typeof2(Symbol.iterator) === "symbol") { + module.exports = _typeof = function _typeof(obj) { + return _typeof2(obj); + }; + } else { + module.exports = _typeof = function _typeof(obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : _typeof2(obj); + }; + } + + return _typeof(obj); + } + + module.exports = _typeof; +}); + +function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +} + +var classCallCheck = _classCallCheck; + +function _defineProperties(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + Object.defineProperty(target, descriptor.key, descriptor); + } +} + +function _createClass(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties(Constructor.prototype, protoProps); + if (staticProps) _defineProperties(Constructor, staticProps); + return Constructor; +} + +var createClass = _createClass; + +function _assertThisInitialized(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + } + + return self; +} + +var assertThisInitialized = _assertThisInitialized; + +function _possibleConstructorReturn(self, call) { + if (call && (_typeof_1$1(call) === "object" || typeof call === "function")) { + return call; + } + + return assertThisInitialized(self); +} + +var possibleConstructorReturn = _possibleConstructorReturn; +var getPrototypeOf = createCommonjsModule$1(function (module) { + function _getPrototypeOf(o) { + module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { + return o.__proto__ || Object.getPrototypeOf(o); + }; + return _getPrototypeOf(o); + } + + module.exports = _getPrototypeOf; +}); +var setPrototypeOf = createCommonjsModule$1(function (module) { + function _setPrototypeOf(o, p) { + module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { + o.__proto__ = p; + return o; + }; + + return _setPrototypeOf(o, p); + } + + module.exports = _setPrototypeOf; +}); + +function _inherits(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError("Super expression must either be null or a function"); + } + + subClass.prototype = Object.create(superClass && superClass.prototype, { + constructor: { + value: subClass, + writable: true, + configurable: true + } + }); + if (superClass) setPrototypeOf(subClass, superClass); +} + +var inherits = _inherits; // Maps for number <-> hex string conversion + +var byteToHex$2 = []; + +for (var i$2 = 0; i$2 < 256; i$2++) { + byteToHex$2[i$2] = (i$2 + 0x100).toString(16).substr(1); +} +/** + * Represent binary UUID into it's string representation. + * + * @param buf - Buffer containing UUID bytes. + * @param offset - Offset from the start of the buffer where the UUID is saved (not needed if the buffer starts with the UUID). + * + * @returns String representation of the UUID. + */ + + +function stringifyUUID$1(buf, offset) { + var i = offset || 0; + var bth = byteToHex$2; + return bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]]; +} +/** + * Generate 16 random bytes to be used as a base for UUID. + * + * @ignore + */ + + +var random$1 = function () { + if (typeof crypto !== 'undefined' && crypto.getRandomValues) { + // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto + // Moderately fast, high quality + var _rnds8 = new Uint8Array(16); + + return function whatwgRNG() { + crypto.getRandomValues(_rnds8); + return _rnds8; + }; + } // Math.random()-based (RNG) + // + // If all else fails, use Math.random(). + // It's fast, but is of unspecified quality. + + + var _rnds = new Array(16); + + return function () { + for (var i = 0, r; i < 16; i++) { + if ((i & 0x03) === 0) { + r = Math.random() * 0x100000000; + } + + _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff; + } + + return _rnds; + }; // uuid.js + // + // Copyright (c) 2010-2012 Robert Kieffer + // MIT License - http://opensource.org/licenses/mit-license.php + // Unique ID creation requires a high quality random # generator. We feature + // detect to determine the best RNG source, normalizing to a function that + // returns 128-bits of randomness, since that's what's usually required + // return require('./rng'); +}(); + +var byteToHex$1$1 = []; + +for (var i$1$1 = 0; i$1$1 < 256; i$1$1++) { + byteToHex$1$1[i$1$1] = (i$1$1 + 0x100).toString(16).substr(1); +} // **`v1()` - Generate time-based UUID** +// +// Inspired by https://github.com/LiosK/UUID.js +// and http://docs.python.org/library/uuid.html +// random #'s we need to init node and clockseq + + +var seedBytes$1 = random$1(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + +var defaultNodeId$1 = [seedBytes$1[0] | 0x01, seedBytes$1[1], seedBytes$1[2], seedBytes$1[3], seedBytes$1[4], seedBytes$1[5]]; // Per 4.2.2, randomize (14 bit) clockseq + +var defaultClockseq$1 = (seedBytes$1[6] << 8 | seedBytes$1[7]) & 0x3fff; // Previous uuid creation time + +/** + * UUIDv4 options. + */ + +/** + * Generate UUIDv4 + * + * @param options - Options to be used instead of default generated values. + * String 'binary' is a shorthand for uuid4({}, new Array(16)). + * @param buf - If present the buffer will be filled with the generated UUID. + * @param offset - Offset of the UUID from the start of the buffer. + * + * @returns UUIDv4 + */ + +function uuid4$1() { + var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}; + var buf = arguments.length > 1 ? arguments[1] : undefined; + var offset = arguments.length > 2 ? arguments[2] : undefined; // Deprecated - 'format' argument, as supported in v1.2 + + var i = buf && offset || 0; + + if (typeof options === 'string') { + buf = options === 'binary' ? new Array(16) : undefined; + options = {}; + } + + var rnds = options.random || (options.rng || random$1)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided + + if (buf) { + for (var ii = 0; ii < 16; ii++) { + buf[i + ii] = rnds[ii]; + } + } + + return buf || stringifyUUID$1(rnds); +} // Rollup will complain about mixing default and named exports in UMD build, + + +function _typeof(obj) { + if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { + _typeof = function (obj) { + return typeof obj; + }; + } else { + _typeof = function (obj) { + return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof(obj); +} + +var commonjsGlobal$1 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire$1() { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function createCommonjsModule$1$1(fn, module) { + return module = { + exports: {} + }, fn(module, module.exports), module.exports; +} + +var moment$1 = createCommonjsModule$1$1(function (module, exports) { + (function (global, factory) { + module.exports = factory(); + })(commonjsGlobal$1, function () { + var hookCallback; + + function hooks() { + return hookCallback.apply(null, arguments); + } // This is done to register the method called with moment() + // without creating circular dependencies. + + + function setHookCallback(callback) { + hookCallback = callback; + } + + function isArray(input) { + return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]'; + } + + function isObject(input) { + // IE8 will treat undefined and null as object if it wasn't for + // input != null + return input != null && Object.prototype.toString.call(input) === '[object Object]'; + } + + function isObjectEmpty(obj) { + if (Object.getOwnPropertyNames) { + return Object.getOwnPropertyNames(obj).length === 0; + } else { + var k; + + for (k in obj) { + if (obj.hasOwnProperty(k)) { + return false; + } + } + + return true; + } + } + + function isUndefined(input) { + return input === void 0; + } + + function isNumber(input) { + return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; + } + + function isDate(input) { + return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; + } + + function map(arr, fn) { + var res = [], + i; + + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + + return res; + } + + function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); + } + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function createUTC(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); + } + + function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty: false, + unusedTokens: [], + unusedInput: [], + overflow: -2, + charsLeftOver: 0, + nullInput: false, + invalidMonth: null, + invalidFormat: false, + userInvalidated: false, + iso: false, + parsedDateParts: [], + meridiem: null, + rfc2822: false, + weekdayMismatch: false + }; + } + + function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + + return m._pf; + } + + var some; + + if (Array.prototype.some) { + some = Array.prototype.some; + } else { + some = function (fun) { + var t = Object(this); + var len = t.length >>> 0; + + for (var i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; + } + + function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + var parsedParts = some.call(flags.parsedDateParts, function (i) { + return i != null; + }); + var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts); + + if (m._strict) { + isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } else { + return isNowValid; + } + } + + return m._isValid; + } + + function createInvalid(flags) { + var m = createUTC(NaN); + + if (flags != null) { + extend(getParsingFlags(m), flags); + } else { + getParsingFlags(m).userInvalidated = true; + } + + return m; + } // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + + + var momentProperties = hooks.momentProperties = []; + + function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + + if (!isUndefined(from._i)) { + to._i = from._i; + } + + if (!isUndefined(from._f)) { + to._f = from._f; + } + + if (!isUndefined(from._l)) { + to._l = from._l; + } + + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; + } + + var updateInProgress = false; // Moment prototype object + + function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + + if (!this.isValid()) { + this._d = new Date(NaN); + } // Prevent infinite loop in case updateOffset creates new moment + // objects. + + + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } + } + + function isMoment(obj) { + return obj instanceof Moment || obj != null && obj._isAMomentObject != null; + } + + function absFloor(number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; + } // compare two arrays, return the number of differences + + + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + + for (i = 0; i < len; i++) { + if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) { + diffs++; + } + } + + return diffs + lengthDiff; + } + + function warn(msg) { + if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + + if (firstTime) { + var args = []; + var arg; + + for (var i = 0; i < arguments.length; i++) { + arg = ''; + + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + + for (var key in arguments[0]) { + arg += key + ': ' + arguments[0][key] + ', '; + } + + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + + args.push(arg); + } + + warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + new Error().stack); + firstTime = false; + } + + return fn.apply(this, arguments); + }, fn); + } + + var deprecations = {}; + + function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } + } + + hooks.suppressDeprecationWarnings = false; + hooks.deprecationHandler = null; + + function isFunction(input) { + return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; + } + + function set(config) { + var prop, i; + + for (i in config) { + prop = config[i]; + + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + + this._config = config; // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + + this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\d{1,2}/.source); + } + + function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), + prop; + + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + + for (prop in parentConfig) { + if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + + return res; + } + + function Locale(config) { + if (config != null) { + this.set(config); + } + } + + var keys; + + if (Object.keys) { + keys = Object.keys; + } else { + keys = function (obj) { + var i, + res = []; + + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + + return res; + }; + } + + var defaultCalendar = { + sameDay: '[Today at] LT', + nextDay: '[Tomorrow at] LT', + nextWeek: 'dddd [at] LT', + lastDay: '[Yesterday at] LT', + lastWeek: '[Last] dddd [at] LT', + sameElse: 'L' + }; + + function calendar(key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; + } + + var defaultLongDateFormat = { + LTS: 'h:mm:ss A', + LT: 'h:mm A', + L: 'MM/DD/YYYY', + LL: 'MMMM D, YYYY', + LLL: 'MMMM D, YYYY h:mm A', + LLLL: 'dddd, MMMM D, YYYY h:mm A' + }; + + function longDateFormat(key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + return this._longDateFormat[key]; + } + + var defaultInvalidDate = 'Invalid date'; + + function invalidDate() { + return this._invalidDate; + } + + var defaultOrdinal = '%d'; + var defaultDayOfMonthOrdinalParse = /\d{1,2}/; + + function ordinal(number) { + return this._ordinal.replace('%d', number); + } + + var defaultRelativeTime = { + future: 'in %s', + past: '%s ago', + s: 'a few seconds', + ss: '%d seconds', + m: 'a minute', + mm: '%d minutes', + h: 'an hour', + hh: '%d hours', + d: 'a day', + dd: '%d days', + M: 'a month', + MM: '%d months', + y: 'a year', + yy: '%d years' + }; + + function relativeTime(number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number); + } + + function pastFuture(diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); + } + + var aliases = {}; + + function addUnitAlias(unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; + } + + function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + var priorities = {}; + + function addUnitPriority(unit, priority) { + priorities[unit] = priority; + } + + function getPrioritizedUnits(unitsObj) { + var units = []; + + for (var u in unitsObj) { + units.push({ + unit: u, + priority: priorities[u] + }); + } + + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; + } + + function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; + } + + var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + var formatFunctions = {}; + var formatTokenFunctions = {}; // token: 'M' + // padded: ['MM', 2] + // ordinal: 'Mo' + // callback: function () { this.month() + 1 } + + function addFormatToken(token, padded, ordinal, callback) { + var func = callback; + + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + + if (token) { + formatTokenFunctions[token] = func; + } + + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } + } + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), + i, + length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', + i; + + for (i = 0; i < length; i++) { + output += isFunction(array[i]) ? array[i].call(mom, format) : array[i]; + } + + return output; + }; + } // format date using native date object + + + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + var match1 = /\d/; // 0 - 9 + + var match2 = /\d\d/; // 00 - 99 + + var match3 = /\d{3}/; // 000 - 999 + + var match4 = /\d{4}/; // 0000 - 9999 + + var match6 = /[+-]?\d{6}/; // -999999 - 999999 + + var match1to2 = /\d\d?/; // 0 - 99 + + var match3to4 = /\d\d\d\d?/; // 999 - 9999 + + var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999 + + var match1to3 = /\d{1,3}/; // 0 - 999 + + var match1to4 = /\d{1,4}/; // 0 - 9999 + + var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + + var matchUnsigned = /\d+/; // 0 - inf + + var matchSigned = /[+-]?\d+/; // -inf - inf + + var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z + + var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z + + var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + // any word (or two) characters or numbers including two/three word month in arabic. + // includes scottish gaelic two word and hyphenated months + + var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i; + var regexes = {}; + + function addRegexToken(token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) { + return isStrict && strictRegex ? strictRegex : regex; + }; + } + + function getParseRegexForToken(token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); + } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + + + function unescapeFormat(s) { + return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + })); + } + + function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + var tokens = {}; + + function addParseToken(token, callback) { + var i, + func = callback; + + if (typeof token === 'string') { + token = [token]; + } + + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } + } + + function addWeekParseToken(token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); + } + + function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } + } + + var YEAR = 0; + var MONTH = 1; + var DATE = 2; + var HOUR = 3; + var MINUTE = 4; + var SECOND = 5; + var MILLISECOND = 6; + var WEEK = 7; + var WEEKDAY = 8; // FORMATTING + + addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? '' + y : '+' + y; + }); + addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; + }); + addFormatToken(0, ['YYYY', 4], 0, 'year'); + addFormatToken(0, ['YYYYY', 5], 0, 'year'); + addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES + + addUnitAlias('year', 'y'); // PRIORITIES + + addUnitPriority('year', 1); // PARSING + + addRegexToken('Y', matchSigned); + addRegexToken('YY', match1to2, match2); + addRegexToken('YYYY', match1to4, match4); + addRegexToken('YYYYY', match1to6, match6); + addRegexToken('YYYYYY', match1to6, match6); + addParseToken(['YYYYY', 'YYYYYY'], YEAR); + addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); + }); + addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); + }); + addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); + }); // HELPERS + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0; + } // HOOKS + + + hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; // MOMENTS + + + var getSetYear = makeGetSet('FullYear', true); + + function getIsLeapYear() { + return isLeapYear(this.year()); + } + + function makeGetSet(unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; + } + + function get(mom, unit) { + return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN; + } + + function set$1(mom, unit, value) { + if (mom.isValid() && !isNaN(value)) { + if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month())); + } else { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + } // MOMENTS + + + function stringGet(units) { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](); + } + + return this; + } + + function stringSet(units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units); + + for (var i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](value); + } + } + + return this; + } + + function mod(n, x) { + return (n % x + x) % x; + } + + var indexOf; + + if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; + } else { + indexOf = function (o) { + // I know + var i; + + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + + return -1; + }; + } + + function daysInMonth(year, month) { + if (isNaN(year) || isNaN(month)) { + return NaN; + } + + var modMonth = mod(month, 12); + year += (month - modMonth) / 12; + return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2; + } // FORMATTING + + + addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; + }); + addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); + }); + addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); + }); // ALIASES + + addUnitAlias('month', 'M'); // PRIORITY + + addUnitPriority('month', 8); // PARSING + + addRegexToken('M', match1to2); + addRegexToken('MM', match1to2, match2); + addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); + }); + addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); + }); + addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; + }); + addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid. + + + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } + }); // LOCALES + + var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/; + var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); + + function localeMonths(m, format) { + if (!m) { + return isArray(this._months) ? this._months : this._months['standalone']; + } + + return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()]; + } + + var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); + + function localeMonthsShort(m, format) { + if (!m) { + return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone']; + } + + return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()]; + } + + function handleStrictParse(monthName, format, strict) { + var i, + ii, + mom, + llc = monthName.toLocaleLowerCase(); + + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeMonthsParse(monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + } // MOMENTS + + + function setMonth(mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); // TODO: Another silent failure? + + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + + return mom; + } + + function getSetMonth(value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } + } + + function getDaysInMonth() { + return daysInMonth(this.year(), this.month()); + } + + var defaultMonthsShortRegex = matchWord; + + function monthsShortRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + + return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex; + } + } + + var defaultMonthsRegex = matchWord; + + function monthsRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + + return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex; + } + } + + function computeMonthsParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom; + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + + + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + } + + function createDate(y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date; // the date constructor remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + date = new Date(y + 400, m, d, h, M, s, ms); + + if (isFinite(date.getFullYear())) { + date.setFullYear(y); + } + } else { + date = new Date(y, m, d, h, M, s, ms); + } + + return date; + } + + function createUTCDate(y) { + var date; // the Date.UTC function remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + var args = Array.prototype.slice.call(arguments); // preserve leap years using a full 400 year cycle, then reset + + args[0] = y + 400; + date = new Date(Date.UTC.apply(null, args)); + + if (isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + } else { + date = new Date(Date.UTC.apply(null, arguments)); + } + + return date; + } // start-of-first-week - start-of-year + + + function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + return -fwdlw + fwd - 1; + } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + + + function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, + resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear + }; + } + + function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, + resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear + }; + } + + function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; + } // FORMATTING + + + addFormatToken('w', ['ww', 2], 'wo', 'week'); + addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES + + addUnitAlias('week', 'w'); + addUnitAlias('isoWeek', 'W'); // PRIORITIES + + addUnitPriority('week', 5); + addUnitPriority('isoWeek', 5); // PARSING + + addRegexToken('w', match1to2); + addRegexToken('ww', match1to2, match2); + addRegexToken('W', match1to2); + addRegexToken('WW', match1to2, match2); + addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); + }); // HELPERS + // LOCALES + + function localeWeek(mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + } + + var defaultLocaleWeek = { + dow: 0, + // Sunday is the first day of the week. + doy: 6 // The week that contains Jan 6th is the first week of the year. + + }; + + function localeFirstDayOfWeek() { + return this._week.dow; + } + + function localeFirstDayOfYear() { + return this._week.doy; + } // MOMENTS + + + function getSetWeek(input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + function getSetISOWeek(input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + } // FORMATTING + + + addFormatToken('d', 0, 'do', 'day'); + addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); + }); + addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); + }); + addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); + }); + addFormatToken('e', 0, 0, 'weekday'); + addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES + + addUnitAlias('day', 'd'); + addUnitAlias('weekday', 'e'); + addUnitAlias('isoWeekday', 'E'); // PRIORITY + + addUnitPriority('day', 11); + addUnitPriority('weekday', 11); + addUnitPriority('isoWeekday', 11); // PARSING + + addRegexToken('d', match1to2); + addRegexToken('e', match1to2); + addRegexToken('E', match1to2); + addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); + }); + addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); + }); + addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); + }); + addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid + + + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } + }); + addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); + }); // HELPERS + + function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + + if (typeof input === 'number') { + return input; + } + + return null; + } + + function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + + return isNaN(input) ? null : input; + } // LOCALES + + + function shiftWeekdays(ws, n) { + return ws.slice(n, 7).concat(ws.slice(0, n)); + } + + var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); + + function localeWeekdays(m, format) { + var weekdays = isArray(this._weekdays) ? this._weekdays : this._weekdays[m && m !== true && this._weekdays.isFormat.test(format) ? 'format' : 'standalone']; + return m === true ? shiftWeekdays(weekdays, this._week.dow) : m ? weekdays[m.day()] : weekdays; + } + + var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); + + function localeWeekdaysShort(m) { + return m === true ? shiftWeekdays(this._weekdaysShort, this._week.dow) : m ? this._weekdaysShort[m.day()] : this._weekdaysShort; + } + + var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); + + function localeWeekdaysMin(m) { + return m === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m ? this._weekdaysMin[m.day()] : this._weekdaysMin; + } + + function handleStrictParse$1(weekdayName, format, strict) { + var i, + ii, + mom, + llc = weekdayName.toLocaleLowerCase(); + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeWeekdaysParse(weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\.?') + '$', 'i'); + this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\.?') + '$', 'i'); + this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\.?') + '$', 'i'); + } + + if (!this._weekdaysParse[i]) { + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + } // MOMENTS + + + function getSetDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + } + + function getSetLocaleDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + } + + function getSetISODayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } + } + + var defaultWeekdaysRegex = matchWord; + + function weekdaysRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + + return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex; + } + } + + var defaultWeekdaysShortRegex = matchWord; + + function weekdaysShortRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + + return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex; + } + } + + var defaultWeekdaysMinRegex = matchWord; + + function weekdaysMinRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + + return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex; + } + } + + function computeWeekdaysParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], + shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom, + minp, + shortp, + longp; + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = this.weekdaysMin(mom, ''); + shortp = this.weekdaysShort(mom, ''); + longp = this.weekdays(mom, ''); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + + + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 7; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i'); + } // FORMATTING + + + function hFormat() { + return this.hours() % 12 || 12; + } + + function kFormat() { + return this.hours() || 24; + } + + addFormatToken('H', ['HH', 2], 0, 'hour'); + addFormatToken('h', ['hh', 2], 0, hFormat); + addFormatToken('k', ['kk', 2], 0, kFormat); + addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); + }); + addFormatToken('hmmss', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); + }); + addFormatToken('Hmmss', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + + function meridiem(token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); + } + + meridiem('a', true); + meridiem('A', false); // ALIASES + + addUnitAlias('hour', 'h'); // PRIORITY + + addUnitPriority('hour', 13); // PARSING + + function matchMeridiem(isStrict, locale) { + return locale._meridiemParse; + } + + addRegexToken('a', matchMeridiem); + addRegexToken('A', matchMeridiem); + addRegexToken('H', match1to2); + addRegexToken('h', match1to2); + addRegexToken('k', match1to2); + addRegexToken('HH', match1to2, match2); + addRegexToken('hh', match1to2, match2); + addRegexToken('kk', match1to2, match2); + addRegexToken('hmm', match3to4); + addRegexToken('hmmss', match5to6); + addRegexToken('Hmm', match3to4); + addRegexToken('Hmmss', match5to6); + addParseToken(['H', 'HH'], HOUR); + addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; + }); + addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; + }); + addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + }); + addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + }); // LOCALES + + function localeIsPM(input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return (input + '').toLowerCase().charAt(0) === 'p'; + } + + var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; + + function localeMeridiem(hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + } // MOMENTS + // Setting the hour should keep the time, because the user explicitly + // specified which hour they want. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + + + var getSetHour = makeGetSet('Hours', true); + var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + week: defaultLocaleWeek, + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + meridiemParse: defaultLocaleMeridiemParse + }; // internal storage for locale config files + + var locales = {}; + var localeFamilies = {}; + var globalLocale; + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + + + function chooseLocale(names) { + var i = 0, + j, + next, + locale, + split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + + if (locale) { + return locale; + } + + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + + j--; + } + + i++; + } + + return globalLocale; + } + + function loadLocale(name) { + var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node + + if (!locales[name] && 'object' !== 'undefined' && module && module.exports) { + try { + oldLocale = globalLocale._abbr; + var aliasedRequire = commonjsRequire$1; + aliasedRequire('./locale/' + name); + getSetGlobalLocale(oldLocale); + } catch (e) {} + } + + return locales[name]; + } // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + + + function getSetGlobalLocale(key, values) { + var data; + + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } else { + if (typeof console !== 'undefined' && console.warn) { + //warn user if arguments are passed but the locale could not be set + console.warn('Locale ' + key + ' not found. Did you forget to load it?'); + } + } + } + + return globalLocale._abbr; + } + + function defineLocale(name, config) { + if (config !== null) { + var locale, + parentConfig = baseConfig; + config.abbr = name; + + if (locales[name] != null) { + deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.'); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + locale = loadLocale(config.parentLocale); + + if (locale != null) { + parentConfig = locale._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + + localeFamilies[config.parentLocale].push({ + name: name, + config: config + }); + return null; + } + } + } + + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + + + getSetGlobalLocale(name); + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + } + + function updateLocale(name, config) { + if (config != null) { + var locale, + tmpLocale, + parentConfig = baseConfig; // MERGE + + tmpLocale = loadLocale(name); + + if (tmpLocale != null) { + parentConfig = tmpLocale._config; + } + + config = mergeConfigs(parentConfig, config); + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; // backwards compat for now: also set the locale + + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + + return locales[name]; + } // returns locale data + + + function getLocale(key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + + if (locale) { + return locale; + } + + key = [key]; + } + + return chooseLocale(key); + } + + function listLocales() { + return keys(locales); + } + + function checkOverflow(m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; + } // Pick the first defined of two or three arguments. + + + function defaults(a, b, c) { + if (a != null) { + return a; + } + + if (b != null) { + return b; + } + + return c; + } + + function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + + if (config._useUTC) { + return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()]; + } + + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; + } // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + + + function configFromArray(config) { + var i, + date, + input = [], + currentDate, + expectedWeekday, + yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays + + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } //if the day of the year is set, figure out what it is + + + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + + + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } // Zero out whatever was not defaulted, including time + + + for (; i < 7; i++) { + config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i]; + } // Check for 24:00:00.000 + + + if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } // check for mismatching day of week + + + if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) { + getParsingFlags(config).weekdayMismatch = true; + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow; + w = config._w; + + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + var curWeek = weekOfYear(createLocal(), dow, doy); + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week. + + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from beginning of week + weekday = w.e + dow; + + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to beginning of week + weekday = dow; + } + } + + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + } // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + + + var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/; + var isoDates = [['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], ['GGGG-[W]WW', /\d{4}-W\d\d/, false], ['YYYY-DDD', /\d{4}-\d{3}/], ['YYYY-MM', /\d{4}-\d\d/, false], ['YYYYYYMMDD', /[+-]\d{10}/], ['YYYYMMDD', /\d{8}/], // YYYYMM is NOT allowed by the standard + ['GGGG[W]WWE', /\d{4}W\d{3}/], ['GGGG[W]WW', /\d{4}W\d{2}/, false], ['YYYYDDD', /\d{7}/]]; // iso time formats and regexes + + var isoTimes = [['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], ['HH:mm:ss', /\d\d:\d\d:\d\d/], ['HH:mm', /\d\d:\d\d/], ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], ['HHmmss', /\d\d\d\d\d\d/], ['HHmm', /\d\d\d\d/], ['HH', /\d\d/]]; + var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; // date from iso format + + function configFromISO(config) { + var i, + l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, + dateFormat, + timeFormat, + tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + + if (dateFormat == null) { + config._isValid = false; + return; + } + + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + + if (timeFormat == null) { + config._isValid = false; + return; + } + } + + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } + } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 + + + var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/; + + function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { + var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)]; + + if (secondStr) { + result.push(parseInt(secondStr, 10)); + } + + return result; + } + + function untruncateYear(yearStr) { + var year = parseInt(yearStr, 10); + + if (year <= 49) { + return 2000 + year; + } else if (year <= 999) { + return 1900 + year; + } + + return year; + } + + function preprocessRFC2822(s) { + // Remove comments and folding whitespace and replace multiple-spaces with a single space + return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').replace(/^\s\s*/, '').replace(/\s\s*$/, ''); + } + + function checkWeekday(weekdayStr, parsedInput, config) { + if (weekdayStr) { + // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check. + var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr), + weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay(); + + if (weekdayProvided !== weekdayActual) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return false; + } + } + + return true; + } + + var obsOffsets = { + UT: 0, + GMT: 0, + EDT: -4 * 60, + EST: -5 * 60, + CDT: -5 * 60, + CST: -6 * 60, + MDT: -6 * 60, + MST: -7 * 60, + PDT: -7 * 60, + PST: -8 * 60 + }; + + function calculateOffset(obsOffset, militaryOffset, numOffset) { + if (obsOffset) { + return obsOffsets[obsOffset]; + } else if (militaryOffset) { + // the only allowed military tz is Z + return 0; + } else { + var hm = parseInt(numOffset, 10); + var m = hm % 100, + h = (hm - m) / 100; + return h * 60 + m; + } + } // date and time from ref 2822 format + + + function configFromRFC2822(config) { + var match = rfc2822.exec(preprocessRFC2822(config._i)); + + if (match) { + var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]); + + if (!checkWeekday(match[1], parsedArray, config)) { + return; + } + + config._a = parsedArray; + config._tzm = calculateOffset(match[8], match[9], match[10]); + config._d = createUTCDate.apply(null, config._a); + + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } + } // date from iso format or fallback + + + function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } // Final attempt, use Input Fallback + + + hooks.createFromInputFallback(config); + } + + hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + }); // constant that refers to the ISO standard + + hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form + + + hooks.RFC_2822 = function () {}; // date from string and format string + + + function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + + config._a = []; + getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC` + + var string = '' + config._i, + i, + parsedInput, + tokens, + token, + skipped, + stringLength = string.length, + totalParsedInputLength = 0; + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput, + // 'regex', getParseRegexForToken(token, config)); + + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } // don't parse if it's not a known token + + + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } else { + getParsingFlags(config).unusedTokens.push(token); + } + + addTimeToArrayFromToken(token, parsedInput, config); + } else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } // add remaining unparsed input length to the string + + + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } // clear _12h flag if hour is <= 12 + + + if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; // handle meridiem + + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + configFromArray(config); + checkOverflow(config); + } + + function meridiemFixWrap(locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + + if (isPm && hour < 12) { + hour += 12; + } + + if (!isPm && hour === 12) { + hour = 0; + } + + return hour; + } else { + // this is not supposed to happen + return hour; + } + } // date from string and array of format strings + + + function configFromStringAndArray(config) { + var tempConfig, bestMoment, scoreToBeat, i, currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } // if there is any input that was not parsed add a penalty for that format + + + currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens + + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { + return obj && parseInt(obj, 10); + }); + configFromArray(config); + } + + function createFromConfig(config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; + } + + function prepareConfig(config) { + var input = config._i, + format = config._f; + config._locale = config._locale || getLocale(config._l); + + if (input === null || format === undefined && input === '') { + return createInvalid({ + nullInput: true + }); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; + } + + function configFromInput(config) { + var input = config._i; + + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } + } + + function createLocalOrUTC(input, format, locale, strict, isUTC) { + var c = {}; + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) { + input = undefined; + } // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + + + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + return createFromConfig(c); + } + + function createLocal(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); + } + + var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + }); + var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + }); // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + + function pickBy(fn, moments) { + var res, i; + + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + + if (!moments.length) { + return createLocal(); + } + + res = moments[0]; + + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + + return res; + } // TODO: Use [].sort instead? + + + function min() { + var args = [].slice.call(arguments, 0); + return pickBy('isBefore', args); + } + + function max() { + var args = [].slice.call(arguments, 0); + return pickBy('isAfter', args); + } + + var now = function () { + return Date.now ? Date.now() : +new Date(); + }; + + var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond']; + + function isDurationValid(m) { + for (var key in m) { + if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) { + return false; + } + } + + var unitHasDecimal = false; + + for (var i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; + } + + function isValid$1() { + return this._isValid; + } + + function createInvalid$1() { + return createDuration(NaN); + } + + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || normalizedInput.isoWeek || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove + + this._milliseconds = +milliseconds + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + + this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + + this._months = +months + quarters * 3 + years * 12; + this._data = {}; + this._locale = getLocale(); + + this._bubble(); + } + + function isDuration(obj) { + return obj instanceof Duration; + } + + function absRound(number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } + } // FORMATTING + + + function offset(token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + + if (offset < 0) { + offset = -offset; + sign = '-'; + } + + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2); + }); + } + + offset('Z', ':'); + offset('ZZ', ''); // PARSING + + addRegexToken('Z', matchShortOffset); + addRegexToken('ZZ', matchShortOffset); + addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); + }); // HELPERS + // timezone chunker + // '+10:00' > ['10', '00'] + // '-1530' > ['-15', '30'] + + var chunkOffset = /([\+\-]|\d\d)/gi; + + function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher); + + if (matches === null) { + return null; + } + + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes; + } // Return a moment from input, that is local/utc/zone equivalent to model. + + + function cloneWithOffset(input, model) { + var res, diff; + + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api. + + res._d.setTime(res._d.valueOf() + diff); + + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } + } + + function getDateOffset(m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; + } // HOOKS + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + + + hooks.updateOffset = function () {}; // MOMENTS + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + + + function getSetOffset(input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + + if (!this.isValid()) { + return input != null ? this : NaN; + } + + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + + this._offset = input; + this._isUTC = true; + + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract(this, createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } + } + + function getSetZone(input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + return this; + } else { + return -this.utcOffset(); + } + } + + function setOffsetToUTC(keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + } + + function setOffsetToLocal(keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + + return this; + } + + function setOffsetToParsedOffset() { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + + if (tZone != null) { + this.utcOffset(tZone); + } else { + this.utcOffset(0, true); + } + } + + return this; + } + + function hasAlignedHourOffset(input) { + if (!this.isValid()) { + return false; + } + + input = input ? createLocal(input).utcOffset() : 0; + return (this.utcOffset() - input) % 60 === 0; + } + + function isDaylightSavingTime() { + return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset(); + } + + function isDaylightSavingTimeShifted() { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}; + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; + } + + function isLocal() { + return this.isValid() ? !this._isUTC : false; + } + + function isUtcOffset() { + return this.isValid() ? this._isUTC : false; + } + + function isUtc() { + return this.isValid() ? this._isUTC && this._offset === 0 : false; + } // ASP.NET json date format regex + + + var aspNetRegex = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/; // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + // and further modified to allow for strings containing both week and day + + var isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; + + function createDuration(input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (isNumber(input)) { + duration = {}; + + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match + + }; + } else if (!!(match = isoRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: parseIso(match[2], sign), + M: parseIso(match[3], sign), + w: parseIso(match[4], sign), + d: parseIso(match[5], sign), + h: parseIso(match[6], sign), + m: parseIso(match[7], sign), + s: parseIso(match[8], sign) + }; + } else if (duration == null) { + // checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to)); + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + } + + createDuration.fn = Duration.prototype; + createDuration.invalid = createInvalid$1; + + function parseIso(inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); // apply sign while we're at it + + return (isNaN(res) ? 0 : res) * sign; + } + + function positiveMomentsDifference(base, other) { + var res = {}; + res.months = other.month() - base.month() + (other.year() - base.year()) * 12; + + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +base.clone().add(res.months, 'M'); + return res; + } + + function momentsDifference(base, other) { + var res; + + if (!(base.isValid() && other.isValid())) { + return { + milliseconds: 0, + months: 0 + }; + } + + other = cloneWithOffset(other, base); + + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } // TODO: remove 'name' arg after deprecation is removed + + + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; //invert the arguments, but complain about it + + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'); + tmp = val; + val = period; + period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; + } + + function addSubtract(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } + } + + var add = createAdder(1, 'add'); + var subtract = createAdder(-1, 'subtract'); + + function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse'; + } + + function calendar$1(time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse'; + var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]); + return this.format(output || this.localeData().calendar(format, this, createLocal(now))); + } + + function clone() { + return new Moment(this); + } + + function isAfter(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } + } + + function isBefore(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } + } + + function isBetween(from, to, units, inclusivity) { + var localFrom = isMoment(from) ? from : createLocal(from), + localTo = isMoment(to) ? to : createLocal(to); + + if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) { + return false; + } + + inclusivity = inclusivity || '()'; + return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) && (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units)); + } + + function isSame(input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf(); + } + } + + function isSameOrAfter(input, units) { + return this.isSame(input, units) || this.isAfter(input, units); + } + + function isSameOrBefore(input, units) { + return this.isSame(input, units) || this.isBefore(input, units); + } + + function diff(input, units, asFloat) { + var that, zoneDelta, output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + units = normalizeUnits(units); + + switch (units) { + case 'year': + output = monthDiff(this, that) / 12; + break; + + case 'month': + output = monthDiff(this, that); + break; + + case 'quarter': + output = monthDiff(this, that) / 3; + break; + + case 'second': + output = (this - that) / 1e3; + break; + // 1000 + + case 'minute': + output = (this - that) / 6e4; + break; + // 1000 * 60 + + case 'hour': + output = (this - that) / 36e5; + break; + // 1000 * 60 * 60 + + case 'day': + output = (this - that - zoneDelta) / 864e5; + break; + // 1000 * 60 * 60 * 24, negate dst + + case 'week': + output = (this - that - zoneDelta) / 6048e5; + break; + // 1000 * 60 * 60 * 24 * 7, negate dst + + default: + output = this - that; + } + + return asFloat ? output : absFloor(output); + } + + function monthDiff(a, b) { + // difference in months + var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, + adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor2 - anchor); + } //check for negative zero, return zero if negative zero + + + return -(wholeMonthDiff + adjust) || 0; + } + + hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; + hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + + function toString() { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + } + + function toISOString(keepOffset) { + if (!this.isValid()) { + return null; + } + + var utc = keepOffset !== true; + var m = utc ? this.clone().utc() : this; + + if (m.year() < 0 || m.year() > 9999) { + return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + if (utc) { + return this.toDate().toISOString(); + } else { + return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z')); + } + } + + return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + /** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ + + + function inspect() { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + + var func = 'moment'; + var zone = ''; + + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + + var prefix = '[' + func + '("]'; + var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY'; + var datetime = '-MM-DD[T]HH:mm:ss.SSS'; + var suffix = zone + '[")]'; + return this.format(prefix + year + datetime + suffix); + } + + function format(inputString) { + if (!inputString) { + inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; + } + + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); + } + + function from(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + to: this, + from: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function fromNow(withoutSuffix) { + return this.from(createLocal(), withoutSuffix); + } + + function to(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + from: this, + to: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function toNow(withoutSuffix) { + return this.to(createLocal(), withoutSuffix); + } // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + + + function locale(key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + + if (newLocaleData != null) { + this._locale = newLocaleData; + } + + return this; + } + } + + var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + }); + + function localeData() { + return this._locale; + } + + var MS_PER_SECOND = 1000; + var MS_PER_MINUTE = 60 * MS_PER_SECOND; + var MS_PER_HOUR = 60 * MS_PER_MINUTE; + var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; // actual modulo - handles negative numbers (for dates before 1970): + + function mod$1(dividend, divisor) { + return (dividend % divisor + divisor) % divisor; + } + + function localStartOfDate(y, m, d) { + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return new Date(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return new Date(y, m, d).valueOf(); + } + } + + function utcStartOfDate(y, m, d) { + // Date.UTC remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return Date.UTC(y, m, d); + } + } + + function startOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year(), 0, 1); + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3, 1); + break; + + case 'month': + time = startOfDate(this.year(), this.month(), 1); + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday()); + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1)); + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date()); + break; + + case 'hour': + time = this._d.valueOf(); + time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR); + break; + + case 'minute': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_MINUTE); + break; + + case 'second': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_SECOND); + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function endOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year() + 1, 0, 1) - 1; + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1; + break; + + case 'month': + time = startOfDate(this.year(), this.month() + 1, 1) - 1; + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1; + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1; + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date() + 1) - 1; + break; + + case 'hour': + time = this._d.valueOf(); + time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1; + break; + + case 'minute': + time = this._d.valueOf(); + time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1; + break; + + case 'second': + time = this._d.valueOf(); + time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1; + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function valueOf() { + return this._d.valueOf() - (this._offset || 0) * 60000; + } + + function unix() { + return Math.floor(this.valueOf() / 1000); + } + + function toDate() { + return new Date(this.valueOf()); + } + + function toArray() { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; + } + + function toObject() { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; + } + + function toJSON() { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; + } + + function isValid$2() { + return isValid(this); + } + + function parsingFlags() { + return extend({}, getParsingFlags(this)); + } + + function invalidAt() { + return getParsingFlags(this).overflow; + } + + function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict + }; + } // FORMATTING + + + addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; + }); + addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; + }); + + function addWeekYearFormatToken(token, getter) { + addFormatToken(0, [token, token.length], 0, getter); + } + + addWeekYearFormatToken('gggg', 'weekYear'); + addWeekYearFormatToken('ggggg', 'weekYear'); + addWeekYearFormatToken('GGGG', 'isoWeekYear'); + addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES + + addUnitAlias('weekYear', 'gg'); + addUnitAlias('isoWeekYear', 'GG'); // PRIORITY + + addUnitPriority('weekYear', 1); + addUnitPriority('isoWeekYear', 1); // PARSING + + addRegexToken('G', matchSigned); + addRegexToken('g', matchSigned); + addRegexToken('GG', match1to2, match2); + addRegexToken('gg', match1to2, match2); + addRegexToken('GGGG', match1to4, match4); + addRegexToken('gggg', match1to4, match4); + addRegexToken('GGGGG', match1to6, match6); + addRegexToken('ggggg', match1to6, match6); + addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); + }); + addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); + }); // MOMENTS + + function getSetWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy); + } + + function getSetISOWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4); + } + + function getISOWeeksInYear() { + return weeksInYear(this.year(), 1, 4); + } + + function getWeeksInYear() { + var weekInfo = this.localeData()._week; + + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + } + + function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + + if (week > weeksTarget) { + week = weeksTarget; + } + + return setWeekAll.call(this, input, week, weekday, dow, doy); + } + } + + function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; + } // FORMATTING + + + addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES + + addUnitAlias('quarter', 'Q'); // PRIORITY + + addUnitPriority('quarter', 7); // PARSING + + addRegexToken('Q', match1); + addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; + }); // MOMENTS + + function getSetQuarter(input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + } // FORMATTING + + + addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES + + addUnitAlias('date', 'D'); // PRIORITY + + addUnitPriority('date', 9); // PARSING + + addRegexToken('D', match1to2); + addRegexToken('DD', match1to2, match2); + addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient; + }); + addParseToken(['D', 'DD'], DATE); + addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0]); + }); // MOMENTS + + var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING + + addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES + + addUnitAlias('dayOfYear', 'DDD'); // PRIORITY + + addUnitPriority('dayOfYear', 4); // PARSING + + addRegexToken('DDD', match1to3); + addRegexToken('DDDD', match3); + addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); + }); // HELPERS + // MOMENTS + + function getSetDayOfYear(input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add(input - dayOfYear, 'd'); + } // FORMATTING + + + addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES + + addUnitAlias('minute', 'm'); // PRIORITY + + addUnitPriority('minute', 14); // PARSING + + addRegexToken('m', match1to2); + addRegexToken('mm', match1to2, match2); + addParseToken(['m', 'mm'], MINUTE); // MOMENTS + + var getSetMinute = makeGetSet('Minutes', false); // FORMATTING + + addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES + + addUnitAlias('second', 's'); // PRIORITY + + addUnitPriority('second', 15); // PARSING + + addRegexToken('s', match1to2); + addRegexToken('ss', match1to2, match2); + addParseToken(['s', 'ss'], SECOND); // MOMENTS + + var getSetSecond = makeGetSet('Seconds', false); // FORMATTING + + addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); + }); + addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); + }); + addFormatToken(0, ['SSS', 3], 0, 'millisecond'); + addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; + }); + addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; + }); + addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; + }); + addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; + }); + addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; + }); + addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; + }); // ALIASES + + addUnitAlias('millisecond', 'ms'); // PRIORITY + + addUnitPriority('millisecond', 16); // PARSING + + addRegexToken('S', match1to3, match1); + addRegexToken('SS', match1to3, match2); + addRegexToken('SSS', match1to3, match3); + var token; + + for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); + } + + function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); + } + + for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); + } // MOMENTS + + + var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING + + addFormatToken('z', 0, 0, 'zoneAbbr'); + addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS + + function getZoneAbbr() { + return this._isUTC ? 'UTC' : ''; + } + + function getZoneName() { + return this._isUTC ? 'Coordinated Universal Time' : ''; + } + + var proto = Moment.prototype; + proto.add = add; + proto.calendar = calendar$1; + proto.clone = clone; + proto.diff = diff; + proto.endOf = endOf; + proto.format = format; + proto.from = from; + proto.fromNow = fromNow; + proto.to = to; + proto.toNow = toNow; + proto.get = stringGet; + proto.invalidAt = invalidAt; + proto.isAfter = isAfter; + proto.isBefore = isBefore; + proto.isBetween = isBetween; + proto.isSame = isSame; + proto.isSameOrAfter = isSameOrAfter; + proto.isSameOrBefore = isSameOrBefore; + proto.isValid = isValid$2; + proto.lang = lang; + proto.locale = locale; + proto.localeData = localeData; + proto.max = prototypeMax; + proto.min = prototypeMin; + proto.parsingFlags = parsingFlags; + proto.set = stringSet; + proto.startOf = startOf; + proto.subtract = subtract; + proto.toArray = toArray; + proto.toObject = toObject; + proto.toDate = toDate; + proto.toISOString = toISOString; + proto.inspect = inspect; + proto.toJSON = toJSON; + proto.toString = toString; + proto.unix = unix; + proto.valueOf = valueOf; + proto.creationData = creationData; + proto.year = getSetYear; + proto.isLeapYear = getIsLeapYear; + proto.weekYear = getSetWeekYear; + proto.isoWeekYear = getSetISOWeekYear; + proto.quarter = proto.quarters = getSetQuarter; + proto.month = getSetMonth; + proto.daysInMonth = getDaysInMonth; + proto.week = proto.weeks = getSetWeek; + proto.isoWeek = proto.isoWeeks = getSetISOWeek; + proto.weeksInYear = getWeeksInYear; + proto.isoWeeksInYear = getISOWeeksInYear; + proto.date = getSetDayOfMonth; + proto.day = proto.days = getSetDayOfWeek; + proto.weekday = getSetLocaleDayOfWeek; + proto.isoWeekday = getSetISODayOfWeek; + proto.dayOfYear = getSetDayOfYear; + proto.hour = proto.hours = getSetHour; + proto.minute = proto.minutes = getSetMinute; + proto.second = proto.seconds = getSetSecond; + proto.millisecond = proto.milliseconds = getSetMillisecond; + proto.utcOffset = getSetOffset; + proto.utc = setOffsetToUTC; + proto.local = setOffsetToLocal; + proto.parseZone = setOffsetToParsedOffset; + proto.hasAlignedHourOffset = hasAlignedHourOffset; + proto.isDST = isDaylightSavingTime; + proto.isLocal = isLocal; + proto.isUtcOffset = isUtcOffset; + proto.isUtc = isUtc; + proto.isUTC = isUtc; + proto.zoneAbbr = getZoneAbbr; + proto.zoneName = getZoneName; + proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); + proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); + proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); + proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone); + proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted); + + function createUnix(input) { + return createLocal(input * 1000); + } + + function createInZone() { + return createLocal.apply(null, arguments).parseZone(); + } + + function preParsePostFormat(string) { + return string; + } + + var proto$1 = Locale.prototype; + proto$1.calendar = calendar; + proto$1.longDateFormat = longDateFormat; + proto$1.invalidDate = invalidDate; + proto$1.ordinal = ordinal; + proto$1.preparse = preParsePostFormat; + proto$1.postformat = preParsePostFormat; + proto$1.relativeTime = relativeTime; + proto$1.pastFuture = pastFuture; + proto$1.set = set; + proto$1.months = localeMonths; + proto$1.monthsShort = localeMonthsShort; + proto$1.monthsParse = localeMonthsParse; + proto$1.monthsRegex = monthsRegex; + proto$1.monthsShortRegex = monthsShortRegex; + proto$1.week = localeWeek; + proto$1.firstDayOfYear = localeFirstDayOfYear; + proto$1.firstDayOfWeek = localeFirstDayOfWeek; + proto$1.weekdays = localeWeekdays; + proto$1.weekdaysMin = localeWeekdaysMin; + proto$1.weekdaysShort = localeWeekdaysShort; + proto$1.weekdaysParse = localeWeekdaysParse; + proto$1.weekdaysRegex = weekdaysRegex; + proto$1.weekdaysShortRegex = weekdaysShortRegex; + proto$1.weekdaysMinRegex = weekdaysMinRegex; + proto$1.isPM = localeIsPM; + proto$1.meridiem = localeMeridiem; + + function get$1(format, index, field, setter) { + var locale = getLocale(); + var utc = createUTC().set(setter, index); + return locale[field](utc, format); + } + + function listMonthsImpl(format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i; + var out = []; + + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + + return out; + } // () + // (5) + // (fmt, 5) + // (fmt) + // (true) + // (true, 5) + // (true, fmt, 5) + // (true, fmt) + + + function listWeekdaysImpl(localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + var i; + var out = []; + + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + + return out; + } + + function listMonths(format, index) { + return listMonthsImpl(format, index, 'months'); + } + + function listMonthsShort(format, index) { + return listMonthsImpl(format, index, 'monthsShort'); + } + + function listWeekdays(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); + } + + function listWeekdaysShort(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); + } + + function listWeekdaysMin(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); + } + + getSetGlobalLocale('en', { + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal: function (number) { + var b = number % 10, + output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th'; + return number + output; + } + }); // Side effect imports + + hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale); + hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale); + var mathAbs = Math.abs; + + function abs() { + var data = this._data; + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + return this; + } + + function addSubtract$1(duration, input, value, direction) { + var other = createDuration(input, value); + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + return duration._bubble(); + } // supports only 2.0-style add(1, 's') or add(duration) + + + function add$1(input, value) { + return addSubtract$1(this, input, value, 1); + } // supports only 2.0-style subtract(1, 's') or subtract(duration) + + + function subtract$1(input, value) { + return addSubtract$1(this, input, value, -1); + } + + function absCeil(number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } + } + + function bubble() { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + + if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } // The following code bubbles up values, see the tests for + // examples of what that means. + + + data.milliseconds = milliseconds % 1000; + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + hours = absFloor(minutes / 60); + data.hours = hours % 24; + days += absFloor(hours / 24); // convert days to months + + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; + data.days = days; + data.months = months; + data.years = years; + return this; + } + + function daysToMonths(days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; + } + + function monthsToDays(months) { + // the reverse of daysToMonths + return months * 146097 / 4800; + } + + function as(units) { + if (!this.isValid()) { + return NaN; + } + + var days; + var months; + var milliseconds = this._milliseconds; + units = normalizeUnits(units); + + if (units === 'month' || units === 'quarter' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + + switch (units) { + case 'month': + return months; + + case 'quarter': + return months / 3; + + case 'year': + return months / 12; + } + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + + switch (units) { + case 'week': + return days / 7 + milliseconds / 6048e5; + + case 'day': + return days + milliseconds / 864e5; + + case 'hour': + return days * 24 + milliseconds / 36e5; + + case 'minute': + return days * 1440 + milliseconds / 6e4; + + case 'second': + return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + + case 'millisecond': + return Math.floor(days * 864e5) + milliseconds; + + default: + throw new Error('Unknown unit ' + units); + } + } + } // TODO: Use this.as('ms')? + + + function valueOf$1() { + if (!this.isValid()) { + return NaN; + } + + return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6; + } + + function makeAs(alias) { + return function () { + return this.as(alias); + }; + } + + var asMilliseconds = makeAs('ms'); + var asSeconds = makeAs('s'); + var asMinutes = makeAs('m'); + var asHours = makeAs('h'); + var asDays = makeAs('d'); + var asWeeks = makeAs('w'); + var asMonths = makeAs('M'); + var asQuarters = makeAs('Q'); + var asYears = makeAs('y'); + + function clone$1() { + return createDuration(this); + } + + function get$2(units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; + } + + function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; + } + + var milliseconds = makeGetter('milliseconds'); + var seconds = makeGetter('seconds'); + var minutes = makeGetter('minutes'); + var hours = makeGetter('hours'); + var days = makeGetter('days'); + var months = makeGetter('months'); + var years = makeGetter('years'); + + function weeks() { + return absFloor(this.days() / 7); + } + + var round = Math.round; + var thresholds = { + ss: 44, + // a few seconds to seconds + s: 45, + // seconds to minute + m: 45, + // minutes to hour + h: 22, + // hours to day + d: 26, + // days to month + M: 11 // months to year + + }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime$1(posNegDuration, withoutSuffix, locale) { + var duration = createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years]; + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); + } // This function allows you to set the rounding function for relative time strings + + + function getSetRelativeTimeRounding(roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + + if (typeof roundingFunction === 'function') { + round = roundingFunction; + return true; + } + + return false; + } // This function allows you to set a threshold for relative time strings + + + function getSetRelativeTimeThreshold(threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + + if (limit === undefined) { + return thresholds[threshold]; + } + + thresholds[threshold] = limit; + + if (threshold === 's') { + thresholds.ss = limit - 1; + } + + return true; + } + + function humanize(withSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var locale = this.localeData(); + var output = relativeTime$1(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); + } + + var abs$1 = Math.abs; + + function sign(x) { + return (x > 0) - (x < 0) || +x; + } + + function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000; + var days = abs$1(this._days); + var months = abs$1(this._months); + var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour + + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : ''; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + var totalSign = total < 0 ? '-' : ''; + var ymSign = sign(this._months) !== sign(total) ? '-' : ''; + var daysSign = sign(this._days) !== sign(total) ? '-' : ''; + var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : ''; + return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : ''); + } + + var proto$2 = Duration.prototype; + proto$2.isValid = isValid$1; + proto$2.abs = abs; + proto$2.add = add$1; + proto$2.subtract = subtract$1; + proto$2.as = as; + proto$2.asMilliseconds = asMilliseconds; + proto$2.asSeconds = asSeconds; + proto$2.asMinutes = asMinutes; + proto$2.asHours = asHours; + proto$2.asDays = asDays; + proto$2.asWeeks = asWeeks; + proto$2.asMonths = asMonths; + proto$2.asQuarters = asQuarters; + proto$2.asYears = asYears; + proto$2.valueOf = valueOf$1; + proto$2._bubble = bubble; + proto$2.clone = clone$1; + proto$2.get = get$2; + proto$2.milliseconds = milliseconds; + proto$2.seconds = seconds; + proto$2.minutes = minutes; + proto$2.hours = hours; + proto$2.days = days; + proto$2.weeks = weeks; + proto$2.months = months; + proto$2.years = years; + proto$2.humanize = humanize; + proto$2.toISOString = toISOString$1; + proto$2.toString = toISOString$1; + proto$2.toJSON = toISOString$1; + proto$2.locale = locale; + proto$2.localeData = localeData; + proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1); + proto$2.lang = lang; // Side effect imports + // FORMATTING + + addFormatToken('X', 0, 0, 'unix'); + addFormatToken('x', 0, 0, 'valueOf'); // PARSING + + addRegexToken('x', matchSigned); + addRegexToken('X', matchTimestamp); + addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); + }); + addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); + }); // Side effect imports + + hooks.version = '2.24.0'; + setHookCallback(createLocal); + hooks.fn = proto; + hooks.min = min; + hooks.max = max; + hooks.now = now; + hooks.utc = createUTC; + hooks.unix = createUnix; + hooks.months = listMonths; + hooks.isDate = isDate; + hooks.locale = getSetGlobalLocale; + hooks.invalid = createInvalid; + hooks.duration = createDuration; + hooks.isMoment = isMoment; + hooks.weekdays = listWeekdays; + hooks.parseZone = createInZone; + hooks.localeData = getLocale; + hooks.isDuration = isDuration; + hooks.monthsShort = listMonthsShort; + hooks.weekdaysMin = listWeekdaysMin; + hooks.defineLocale = defineLocale; + hooks.updateLocale = updateLocale; + hooks.locales = listLocales; + hooks.weekdaysShort = listWeekdaysShort; + hooks.normalizeUnits = normalizeUnits; + hooks.relativeTimeRounding = getSetRelativeTimeRounding; + hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; + hooks.calendarFormat = getCalendarFormat; + hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats + + hooks.HTML5_FMT = { + DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', + // + DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', + // + DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', + // + DATE: 'YYYY-MM-DD', + // + TIME: 'HH:mm', + // + TIME_SECONDS: 'HH:mm:ss', + // + TIME_MS: 'HH:mm:ss.SSS', + // + WEEK: 'GGGG-[W]WW', + // + MONTH: 'YYYY-MM' // + + }; + return hooks; + }); +}); // Maps for number <-> hex string conversion + +var byteToHex$2$1 = []; + +for (var i$2$1 = 0; i$2$1 < 256; i$2$1++) { + byteToHex$2$1[i$2$1] = (i$2$1 + 0x100).toString(16).substr(1); +} +/** + * Generate 16 random bytes to be used as a base for UUID. + * + * @ignore + */ + + +var random$1$1 = function () { + if (typeof crypto !== 'undefined' && crypto.getRandomValues) { + // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto + // Moderately fast, high quality + var _rnds8 = new Uint8Array(16); + + return function whatwgRNG() { + crypto.getRandomValues(_rnds8); + return _rnds8; + }; + } // Math.random()-based (RNG) + // + // If all else fails, use Math.random(). + // It's fast, but is of unspecified quality. + + + var _rnds = new Array(16); + + return function () { + for (var i = 0, r; i < 16; i++) { + if ((i & 0x03) === 0) { + r = Math.random() * 0x100000000; + } + + _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff; + } + + return _rnds; + }; // uuid.js + // + // Copyright (c) 2010-2012 Robert Kieffer + // MIT License - http://opensource.org/licenses/mit-license.php + // Unique ID creation requires a high quality random # generator. We feature + // detect to determine the best RNG source, normalizing to a function that + // returns 128-bits of randomness, since that's what's usually required + // return require('./rng'); +}(); + +var byteToHex$1$1$1 = []; + +for (var i$1$1$1 = 0; i$1$1$1 < 256; i$1$1$1++) { + byteToHex$1$1$1[i$1$1$1] = (i$1$1$1 + 0x100).toString(16).substr(1); +} // **`v1()` - Generate time-based UUID** +// +// Inspired by https://github.com/LiosK/UUID.js +// and http://docs.python.org/library/uuid.html +// random #'s we need to init node and clockseq + + +var seedBytes$1$1 = random$1$1(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + +var defaultNodeId$1$1 = [seedBytes$1$1[0] | 0x01, seedBytes$1$1[1], seedBytes$1$1[2], seedBytes$1$1[3], seedBytes$1$1[4], seedBytes$1$1[5]]; // Per 4.2.2, randomize (14 bit) clockseq + +var defaultClockseq$1$1 = (seedBytes$1$1[6] << 8 | seedBytes$1$1[7]) & 0x3fff; // Previous uuid creation time +// for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/' +// code from http://momentjs.com/ + +var ASPDateRegex$1 = /^\/?Date\((-?\d+)/i; // Hex color + +/** + * Hue, Saturation, Value. + */ + +/** + * Test whether given object is a number + * + * @param value - Input value of unknown type. + * + * @returns True if number, false otherwise. + */ + +function isNumber$1(value) { + return value instanceof Number || typeof value === 'number'; +} +/** + * Test whether given object is a string + * + * @param value - Input value of unknown type. + * + * @returns True if string, false otherwise. + */ + + +function isString$1(value) { + return value instanceof String || typeof value === 'string'; +} +/** + * Test whether given object is a Moment date. + * @TODO: This is basically a workaround, if Moment was imported property it wouldn't necessary as moment.isMoment is a TS type guard. + * + * @param value - Input value of unknown type. + * + * @returns True if Moment instance, false otherwise. + */ + + +function isMoment$1(value) { + return moment$1.isMoment(value); +} +/** + * Convert an object into another type + * + * @param object - Value of unknown type. + * @param type - Name of the desired type. + * + * @returns Object in the desired type. + * @throws Error + */ + + +function convert$1(object, type) { + var match; + + if (object === undefined) { + return undefined; + } + + if (object === null) { + return null; + } + + if (!type) { + return object; + } + + if (!(typeof type === 'string') && !(type instanceof String)) { + throw new Error('Type must be a string'); + } //noinspection FallthroughInSwitchStatementJS + + + switch (type) { + case 'boolean': + case 'Boolean': + return Boolean(object); + + case 'number': + case 'Number': + if (isString$1(object) && !isNaN(Date.parse(object))) { + return moment$1(object).valueOf(); + } else { + // @TODO: I don't think that Number and String constructors are a good idea. + // This could also fail if the object doesn't have valueOf method or if it's redefined. + // For example: Object.create(null) or { valueOf: 7 }. + return Number(object.valueOf()); + } + + case 'string': + case 'String': + return String(object); + + case 'Date': + if (isNumber$1(object)) { + return new Date(object); + } + + if (object instanceof Date) { + return new Date(object.valueOf()); + } else if (isMoment$1(object)) { + return new Date(object.valueOf()); + } + + if (isString$1(object)) { + match = ASPDateRegex$1.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])); // parse number + } else { + return moment$1(new Date(object)).toDate(); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + getType$1(object) + ' to type Date'); + } + + case 'Moment': + if (isNumber$1(object)) { + return moment$1(object); + } + + if (object instanceof Date) { + return moment$1(object.valueOf()); + } else if (isMoment$1(object)) { + return moment$1(object); + } + + if (isString$1(object)) { + match = ASPDateRegex$1.exec(object); + + if (match) { + // object is an ASP date + return moment$1(Number(match[1])); // parse number + } else { + return moment$1(object); // parse string + } + } else { + throw new Error('Cannot convert object of type ' + getType$1(object) + ' to type Date'); + } + + case 'ISODate': + if (isNumber$1(object)) { + return new Date(object); + } else if (object instanceof Date) { + return object.toISOString(); + } else if (isMoment$1(object)) { + return object.toDate().toISOString(); + } else if (isString$1(object)) { + match = ASPDateRegex$1.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])).toISOString(); // parse number + } else { + return moment$1(object).format(); // ISO 8601 + } + } else { + throw new Error('Cannot convert object of type ' + getType$1(object) + ' to type ISODate'); + } + + case 'ASPDate': + if (isNumber$1(object)) { + return '/Date(' + object + ')/'; + } else if (object instanceof Date) { + return '/Date(' + object.valueOf() + ')/'; + } else if (isString$1(object)) { + match = ASPDateRegex$1.exec(object); + + var _value; + + if (match) { + // object is an ASP date + _value = new Date(Number(match[1])).valueOf(); // parse number + } else { + _value = new Date(object).valueOf(); // parse string + } + + return '/Date(' + _value + ')/'; + } else { + throw new Error('Cannot convert object of type ' + getType$1(object) + ' to type ASPDate'); + } + + default: + var never = type; + throw new Error("Unknown type ".concat(never)); + } +} +/** + * Get the type of an object, for example exports.getType([]) returns 'Array' + * + * @param object - Input value of unknown type. + * + * @returns Detected type. + */ + + +function getType$1(object) { + var type = _typeof(object); + + if (type === 'object') { + if (object === null) { + return 'null'; + } + + if (object instanceof Boolean) { + return 'Boolean'; + } + + if (object instanceof Number) { + return 'Number'; + } + + if (object instanceof String) { + return 'String'; + } + + if (Array.isArray(object)) { + return 'Array'; + } + + if (object instanceof Date) { + return 'Date'; + } + + return 'Object'; + } + + if (type === 'number') { + return 'Number'; + } + + if (type === 'boolean') { + return 'Boolean'; + } + + if (type === 'string') { + return 'String'; + } + + if (type === undefined) { + return 'undefined'; + } + + return type; +} +/** + * Determine whether a value can be used as an id. + * + * @param value - Input value of unknown type. + * + * @returns True if the value is valid id, false otherwise. + */ + + +function isId(value) { + return typeof value === 'string' || typeof value === 'number'; +} +/** + * A queue. + * + * @typeParam T - The type of method names to be replaced by queued versions. + */ + + +var Queue = +/*#__PURE__*/ +function () { + /** + * Construct a new Queue. + * + * @param options - Queue configuration. + */ + function Queue(options) { + classCallCheck(this, Queue); + this._queue = []; + this._timeout = null; + this._extended = null; // options + + this.delay = null; + this.max = Infinity; + this.setOptions(options); + } + /** + * Update the configuration of the queue. + * + * @param options - Queue configuration. + */ + + + createClass(Queue, [{ + key: "setOptions", + value: function setOptions(options) { + if (options && typeof options.delay !== 'undefined') { + this.delay = options.delay; + } + + if (options && typeof options.max !== 'undefined') { + this.max = options.max; + } + + this._flushIfNeeded(); + } + /** + * Extend an object with queuing functionality. + * The object will be extended with a function flush, and the methods provided in options.replace will be replaced with queued ones. + * + * @param object - The object to be extended. + * @param options - Additional options. + * + * @returns The created queue. + */ + + }, { + key: "destroy", + + /** + * Destroy the queue. The queue will first flush all queued actions, and in case it has extended an object, will restore the original object. + */ + value: function destroy() { + this.flush(); + + if (this._extended) { + var object = this._extended.object; + var methods = this._extended.methods; + + for (var i = 0; i < methods.length; i++) { + var method = methods[i]; + + if (method.original) { + object[method.name] = method.original; + } else { + // @TODO: better solution? + delete object[method.name]; + } + } + + this._extended = null; + } + } + /** + * Replace a method on an object with a queued version. + * + * @param object - Object having the method. + * @param method - The method name. + */ + + }, { + key: "replace", + value: function replace(object, method) { + var me = this; + var original = object[method]; + + if (!original) { + throw new Error('Method ' + method + ' undefined'); + } + + object[method] = function () { + for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { + args[_key] = arguments[_key]; + } // add this call to the queue + + + me.queue({ + args: args, + fn: original, + context: this + }); + }; + } + /** + * Queue a call. + * + * @param entry - The function or entry to be queued. + */ + + }, { + key: "queue", + value: function queue(entry) { + if (typeof entry === 'function') { + this._queue.push({ + fn: entry + }); + } else { + this._queue.push(entry); + } + + this._flushIfNeeded(); + } + /** + * Check whether the queue needs to be flushed. + */ + + }, { + key: "_flushIfNeeded", + value: function _flushIfNeeded() { + var _this = this; // flush when the maximum is exceeded. + + + if (this._queue.length > this.max) { + this.flush(); + } // flush after a period of inactivity when a delay is configured + + + if (this._timeout != null) { + clearTimeout(this._timeout); + this._timeout = null; + } + + if (this.queue.length > 0 && typeof this.delay === 'number') { + this._timeout = setTimeout(function () { + _this.flush(); + }, this.delay); + } + } + /** + * Flush all queued calls + */ + + }, { + key: "flush", + value: function flush() { + this._queue.splice(0).forEach(function (entry) { + entry.fn.apply(entry.context || entry.fn, entry.args || []); + }); + } + }], [{ + key: "extend", + value: function extend(object, options) { + var queue = new Queue(options); + + if (object.flush !== undefined) { + throw new Error('Target object already has a property flush'); + } + + object.flush = function () { + queue.flush(); + }; + + var methods = [{ + name: 'flush', + original: undefined + }]; + + if (options && options.replace) { + for (var i = 0; i < options.replace.length; i++) { + var name = options.replace[i]; + methods.push({ + name: name, + // @TODO: better solution? + original: object[name] + }); // @TODO: better solution? + + queue.replace(object, name); + } + } + + queue._extended = { + object: object, + methods: methods + }; + return queue; + } + }]); + return Queue; +}(); + +function _arrayWithoutHoles$1(arr) { + if (Array.isArray(arr)) { + for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { + arr2[i] = arr[i]; + } + + return arr2; + } +} + +var arrayWithoutHoles$1 = _arrayWithoutHoles$1; + +function _iterableToArray$1(iter) { + if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === "[object Arguments]") return Array.from(iter); +} + +var iterableToArray$1 = _iterableToArray$1; + +function _nonIterableSpread$1() { + throw new TypeError("Invalid attempt to spread non-iterable instance"); +} + +var nonIterableSpread$1 = _nonIterableSpread$1; + +function _toConsumableArray$1(arr) { + return arrayWithoutHoles$1(arr) || iterableToArray$1(arr) || nonIterableSpread$1(); +} + +var toConsumableArray$1 = _toConsumableArray$1; +/** + * [[DataSet]] code that can be reused in [[DataView]] or other similar implementations of [[DataInterface]]. + * + * @typeParam Item - Item type that may or may not have an id. + * @typeParam IdProp - Name of the property that contains the id. + */ + +var DataSetPart = +/*#__PURE__*/ +function () { + function DataSetPart() { + classCallCheck(this, DataSetPart); + this._subscribers = { + '*': [], + add: [], + remove: [], + update: [] + }; + /** + * @deprecated Use on instead (PS: DataView.subscribe === DataView.on). + */ + + this.subscribe = DataSetPart.prototype.on; + /** + * @deprecated Use off instead (PS: DataView.unsubscribe === DataView.off). + */ + + this.unsubscribe = DataSetPart.prototype.off; + } + /** + * Trigger an event + * + * @param event - Event name. + * @param payload - Event payload. + * @param senderId - Id of the sender. + */ + + + createClass(DataSetPart, [{ + key: "_trigger", + value: function _trigger(event, payload, senderId) { + if (event === '*') { + throw new Error('Cannot trigger event *'); + } + + var subscribers = [].concat(toConsumableArray$1(this._subscribers[event]), toConsumableArray$1(this._subscribers['*'])); + + for (var i = 0, len = subscribers.length; i < len; i++) { + var subscriber = subscribers[i]; + + if (subscriber.callback) { + subscriber.callback(event, payload, senderId != null ? senderId : null); + } + } + } + /** + * Subscribe to an event, add an event listener. + * + * @param event - Event name. + * @param callback - Callback method. + */ + + }, { + key: "on", + value: function on(event, callback) { + this._subscribers[event].push({ + callback: callback + }); + } + /** + * Unsubscribe from an event, remove an event listener. + * + * @remarks If the same callback was subscribed more than once **all** occurences will be removed. + * + * @param event - Event name. + * @param callback - Callback method. + */ + + }, { + key: "off", + value: function off(event, callback) { + this._subscribers[event] = this._subscribers[event].filter(function (listener) { + return listener.callback !== callback; + }); + } + }]); + return DataSetPart; +}(); + +function ownKeys$1(object, enumerableOnly) { + var keys = Object.keys(object); + + if (Object.getOwnPropertySymbols) { + keys.push.apply(keys, Object.getOwnPropertySymbols(object)); + } + + if (enumerableOnly) keys = keys.filter(function (sym) { + return Object.getOwnPropertyDescriptor(object, sym).enumerable; + }); + return keys; +} + +function _objectSpread$1(target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i] != null ? arguments[i] : {}; + + if (i % 2) { + ownKeys$1(source, true).forEach(function (key) { + defineProperty$1(target, key, source[key]); + }); + } else if (Object.getOwnPropertyDescriptors) { + Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); + } else { + ownKeys$1(source).forEach(function (key) { + Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); + }); + } + } + + return target; +} +/** + * # DataSet + * + * Vis.js comes with a flexible DataSet, which can be used to hold and manipulate unstructured data and listen for changes in the data. The DataSet is key/value based. Data items can be added, updated and removed from the DataSet, and one can subscribe to changes in the DataSet. The data in the DataSet can be filtered and ordered, and fields (like dates) can be converted to a specific type. Data can be normalized when appending it to the DataSet as well. + * + * ## Example + * + * The following example shows how to use a DataSet. + * + * ```javascript + * // create a DataSet + * var options = {}; + * var data = new vis.DataSet(options); + * + * // add items + * // note that the data items can contain different properties and data formats + * data.add([ + * {id: 1, text: 'item 1', date: new Date(2013, 6, 20), group: 1, first: true}, + * {id: 2, text: 'item 2', date: '2013-06-23', group: 2}, + * {id: 3, text: 'item 3', date: '2013-06-25', group: 2}, + * {id: 4, text: 'item 4'} + * ]); + * + * // subscribe to any change in the DataSet + * data.on('*', function (event, properties, senderId) { + * console.log('event', event, properties); + * }); + * + * // update an existing item + * data.update({id: 2, group: 1}); + * + * // remove an item + * data.remove(4); + * + * // get all ids + * var ids = data.getIds(); + * console.log('ids', ids); + * + * // get a specific item + * var item1 = data.get(1); + * console.log('item1', item1); + * + * // retrieve a filtered subset of the data + * var items = data.get({ + * filter: function (item) { + * return item.group == 1; + * } + * }); + * console.log('filtered items', items); + * + * // retrieve formatted items + * var items = data.get({ + * fields: ['id', 'date'], + * type: { + * date: 'ISODate' + * } + * }); + * console.log('formatted items', items); + * ``` + * + * @typeParam Item - Item type that may or may not have an id. + * @typeParam IdProp - Name of the property that contains the id. + */ + + +var DataSet = +/*#__PURE__*/ +function (_DataSetPart) { + inherits(DataSet, _DataSetPart); + /** + * Construct a new DataSet. + * + * @param data - Initial data or options. + * @param options - Options (type error if data is also options). + */ + + function DataSet(data, options) { + var _this; + + classCallCheck(this, DataSet); + _this = possibleConstructorReturn(this, getPrototypeOf(DataSet).call(this)); // correctly read optional arguments + + if (data && !Array.isArray(data)) { + options = data; + data = []; + } + + _this._options = options || {}; + _this._data = Object.create({}); // map with data indexed by id + + _this.length = 0; // number of items in the DataSet + + _this._idProp = _this._options.fieldId || 'id'; // name of the field containing id + + _this._type = {}; // internal field types (NOTE: this can differ from this._options.type) + // all variants of a Date are internally stored as Date, so we can convert + // from everything to everything (also from ISODate to Number for example) + + if (_this._options.type) { + var fields = Object.keys(_this._options.type); + + for (var i = 0, len = fields.length; i < len; i++) { + var field = fields[i]; + var value = _this._options.type[field]; + + if (value == 'Date' || value == 'ISODate' || value == 'ASPDate') { + _this._type[field] = 'Date'; + } else { + _this._type[field] = value; + } + } + } // add initial data when provided + + + if (data && data.length) { + _this.add(data); + } + + _this.setOptions(options); + + return _this; + } + /** + * Set new options. + * + * @param options - The new options. + */ + + + createClass(DataSet, [{ + key: "setOptions", + value: function setOptions(options) { + if (options && options.queue !== undefined) { + if (options.queue === false) { + // delete queue if loaded + if (this._queue) { + this._queue.destroy(); + + delete this._queue; + } + } else { + // create queue and update its options + if (!this._queue) { + this._queue = Queue.extend(this, { + replace: ['add', 'update', 'remove'] + }); + } + + if (options.queue && _typeof_1$1(options.queue) === 'object') { + this._queue.setOptions(options.queue); + } + } + } + } + /** + * Add a data item or an array with items. + * + * After the items are added to the DataSet, the DataSet will trigger an event `add`. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers. + * + * ## Example + * + * ```javascript + * // create a DataSet + * const data = new vis.DataSet() + * + * // add items + * const ids = data.add([ + * { id: 1, text: 'item 1' }, + * { id: 2, text: 'item 2' }, + * { text: 'item without an id' } + * ]) + * + * console.log(ids) // [1, 2, ''] + * ``` + * + * @param data - Items to be added (ids will be generated if missing). + * @param senderId - Sender id. + * + * @returns addedIds - Array with the ids (generated if not present) of the added items. + * + * @throws When an item with the same id as any of the added items already exists. + */ + + }, { + key: "add", + value: function add(data, senderId) { + var addedIds = []; + var id; + + if (Array.isArray(data)) { + // Array + for (var i = 0, len = data.length; i < len; i++) { + id = this._addItem(data[i]); + addedIds.push(id); + } + } else if (data && _typeof_1$1(data) === 'object') { + // Single item + id = this._addItem(data); + addedIds.push(id); + } else { + throw new Error('Unknown dataType'); + } + + if (addedIds.length) { + this._trigger('add', { + items: addedIds + }, senderId); + } + + return addedIds; + } + /** + * Update existing items. When an item does not exist, it will be created + * + * The provided properties will be merged in the existing item. When an item does not exist, it will be created. + * + * After the items are updated, the DataSet will trigger an event `add` for the added items, and an event `update`. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers. + * + * ## Example + * + * ```javascript + * // create a DataSet + * const data = new vis.DataSet([ + * { id: 1, text: 'item 1' }, + * { id: 2, text: 'item 2' }, + * { id: 3, text: 'item 3' } + * ]) + * + * // update items + * const ids = data.update([ + * { id: 2, text: 'item 2 (updated)' }, + * { id: 4, text: 'item 4 (new)' } + * ]) + * + * console.log(ids) // [2, 4] + * ``` + * + * @param data - Items to be updated (if the id is already present) or added (if the id is missing). + * @param senderId - Sender id. + * + * @returns updatedIds - The ids of the added (these may be newly generated if there was no id in the item from the data) or updated items. + * + * @throws When the supplied data is neither an item nor an array of items. + */ + + }, { + key: "update", + value: function update(data, senderId) { + var _this2 = this; + + var addedIds = []; + var updatedIds = []; + var oldData = []; + var updatedData = []; + var idProp = this._idProp; + + var addOrUpdate = function addOrUpdate(item) { + var origId = item[idProp]; + + if (origId != null && _this2._data[origId]) { + var fullItem = item; // it has an id, therefore it is a fullitem + + var oldItem = Object.assign({}, _this2._data[origId]); // update item + + var id = _this2._updateItem(fullItem); + + updatedIds.push(id); + updatedData.push(fullItem); + oldData.push(oldItem); + } else { + // add new item + var _id = _this2._addItem(item); + + addedIds.push(_id); + } + }; + + if (Array.isArray(data)) { + // Array + for (var i = 0, len = data.length; i < len; i++) { + if (data[i] && _typeof_1$1(data[i]) === 'object') { + addOrUpdate(data[i]); + } else { + console.warn('Ignoring input item, which is not an object at index ' + i); + } + } + } else if (data && _typeof_1$1(data) === 'object') { + // Single item + addOrUpdate(data); + } else { + throw new Error('Unknown dataType'); + } + + if (addedIds.length) { + this._trigger('add', { + items: addedIds + }, senderId); + } + + if (updatedIds.length) { + var props = { + items: updatedIds, + oldData: oldData, + data: updatedData + }; // TODO: remove deprecated property 'data' some day + //Object.defineProperty(props, 'data', { + // 'get': (function() { + // console.warn('Property data is deprecated. Use DataSet.get(ids) to retrieve the new data, use the oldData property on this object to get the old data'); + // return updatedData; + // }).bind(this) + //}); + + this._trigger('update', props, senderId); + } + + return addedIds.concat(updatedIds); + } + /** @inheritdoc */ + + }, { + key: "get", + value: function get(first, second) { + // @TODO: Woudn't it be better to split this into multiple methods? + // parse the arguments + var id = undefined; + var ids = undefined; + var options = undefined; + + if (isId(first)) { + // get(id [, options]) + id = first; + options = second; + } else if (Array.isArray(first)) { + // get(ids [, options]) + ids = first; + options = second; + } else { + // get([, options]) + options = first; + } // determine the return type + + + var returnType = options && options.returnType === 'Object' ? 'Object' : 'Array'; // @TODO: WTF is this? Or am I missing something? + // var returnType + // if (options && options.returnType) { + // var allowedValues = ['Array', 'Object'] + // returnType = + // allowedValues.indexOf(options.returnType) == -1 + // ? 'Array' + // : options.returnType + // } else { + // returnType = 'Array' + // } + // build options + + var type = options && options.type || this._options.type; + var filter = options && options.filter; + var items = []; + var item = null; + var itemIds = null; + var itemId = null; // convert items + + if (id != null) { + // return a single item + item = this._getItem(id, type); + + if (item && filter && !filter(item)) { + item = null; + } + } else if (ids != null) { + // return a subset of items + for (var i = 0, len = ids.length; i < len; i++) { + item = this._getItem(ids[i], type); + + if (item != null && (!filter || filter(item))) { + items.push(item); + } + } + } else { + // return all items + itemIds = Object.keys(this._data); + + for (var _i = 0, _len = itemIds.length; _i < _len; _i++) { + itemId = itemIds[_i]; + item = this._getItem(itemId, type); + + if (item != null && (!filter || filter(item))) { + items.push(item); + } + } + } // order the results + + + if (options && options.order && id == undefined) { + this._sort(items, options.order); + } // filter fields of the items + + + if (options && options.fields) { + var fields = options.fields; + + if (id != undefined && item != null) { + item = this._filterFields(item, fields); + } else { + for (var _i2 = 0, _len2 = items.length; _i2 < _len2; _i2++) { + items[_i2] = this._filterFields(items[_i2], fields); + } + } + } // return the results + + + if (returnType == 'Object') { + var result = {}; + + for (var _i3 = 0, _len3 = items.length; _i3 < _len3; _i3++) { + var resultant = items[_i3]; // @TODO: Shoudn't this be this._fieldId? + // result[resultant.id] = resultant + + var _id2 = resultant[this._idProp]; + result[_id2] = resultant; + } + + return result; + } else { + if (id != null) { + // a single item + return item; + } else { + // just return our array + return items; + } + } + } + /** @inheritdoc */ + + }, { + key: "getIds", + value: function getIds(options) { + var data = this._data; + var filter = options && options.filter; + var order = options && options.order; + var type = options && options.type || this._options.type; + var itemIds = Object.keys(data); + var ids = []; + var item; + var items; + + if (filter) { + // get filtered items + if (order) { + // create ordered list + items = []; + + for (var i = 0, len = itemIds.length; i < len; i++) { + var id = itemIds[i]; + item = this._getItem(id, type); + + if (filter(item)) { + items.push(item); + } + } + + this._sort(items, order); + + for (var _i4 = 0, _len4 = items.length; _i4 < _len4; _i4++) { + ids.push(items[_i4][this._idProp]); + } + } else { + // create unordered list + for (var _i5 = 0, _len5 = itemIds.length; _i5 < _len5; _i5++) { + var _id3 = itemIds[_i5]; + item = this._getItem(_id3, type); + + if (filter(item)) { + ids.push(item[this._idProp]); + } + } + } + } else { + // get all items + if (order) { + // create an ordered list + items = []; + + for (var _i6 = 0, _len6 = itemIds.length; _i6 < _len6; _i6++) { + var _id4 = itemIds[_i6]; + items.push(data[_id4]); + } + + this._sort(items, order); + + for (var _i7 = 0, _len7 = items.length; _i7 < _len7; _i7++) { + ids.push(items[_i7][this._idProp]); + } + } else { + // create unordered list + for (var _i8 = 0, _len8 = itemIds.length; _i8 < _len8; _i8++) { + var _id5 = itemIds[_i8]; + item = data[_id5]; + ids.push(item[this._idProp]); + } + } + } + + return ids; + } + /** @inheritdoc */ + + }, { + key: "getDataSet", + value: function getDataSet() { + return this; + } + /** @inheritdoc */ + + }, { + key: "forEach", + value: function forEach(callback, options) { + var filter = options && options.filter; + var type = options && options.type || this._options.type; + var data = this._data; + var itemIds = Object.keys(data); + + if (options && options.order) { + // execute forEach on ordered list + var items = this.get(options); + + for (var i = 0, len = items.length; i < len; i++) { + var item = items[i]; + var id = item[this._idProp]; + callback(item, id); + } + } else { + // unordered + for (var _i9 = 0, _len9 = itemIds.length; _i9 < _len9; _i9++) { + var _id6 = itemIds[_i9]; + + var _item = this._getItem(_id6, type); + + if (!filter || filter(_item)) { + callback(_item, _id6); + } + } + } + } + /** @inheritdoc */ + + }, { + key: "map", + value: function map(callback, options) { + var filter = options && options.filter; + var type = options && options.type || this._options.type; + var mappedItems = []; + var data = this._data; + var itemIds = Object.keys(data); // convert and filter items + + for (var i = 0, len = itemIds.length; i < len; i++) { + var id = itemIds[i]; + + var item = this._getItem(id, type); + + if (!filter || filter(item)) { + mappedItems.push(callback(item, id)); + } + } // order items + + + if (options && options.order) { + this._sort(mappedItems, options.order); + } + + return mappedItems; + } + /** + * Filter the fields of an item. + * + * @param item - The item whose fields should be filtered. + * @param fields - The names of the fields that will be kept. + * + * @typeParam K - Field name type. + * + * @returns The item without any additional fields. + */ + + }, { + key: "_filterFields", + value: function _filterFields(item, fields) { + if (!item) { + // item is null + return item; + } + + return (Array.isArray(fields) ? // Use the supplied array + fields : // Use the keys of the supplied object + Object.keys(fields)).reduce(function (filteredItem, field) { + filteredItem[field] = item[field]; + return filteredItem; + }, {}); + } + /** + * Sort the provided array with items. + * + * @param items - Items to be sorted in place. + * @param order - A field name or custom sort function. + * + * @typeParam T - The type of the items in the items array. + */ + + }, { + key: "_sort", + value: function _sort(items, order) { + if (typeof order === 'string') { + // order by provided field name + var name = order; // field name + + items.sort(function (a, b) { + // @TODO: How to treat missing properties? + var av = a[name]; + var bv = b[name]; + return av > bv ? 1 : av < bv ? -1 : 0; + }); + } else if (typeof order === 'function') { + // order by sort function + items.sort(order); + } else { + // TODO: extend order by an Object {field:string, direction:string} + // where direction can be 'asc' or 'desc' + throw new TypeError('Order must be a function or a string'); + } + } + /** + * Remove an item or multiple items by “reference” (only the id is used) or by id. + * + * The method ignores removal of non-existing items, and returns an array containing the ids of the items which are actually removed from the DataSet. + * + * After the items are removed, the DataSet will trigger an event `remove` for the removed items. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers. + * + * ## Example + * ```javascript + * // create a DataSet + * const data = new vis.DataSet([ + * { id: 1, text: 'item 1' }, + * { id: 2, text: 'item 2' }, + * { id: 3, text: 'item 3' } + * ]) + * + * // remove items + * const ids = data.remove([2, { id: 3 }, 4]) + * + * console.log(ids) // [2, 3] + * ``` + * + * @param id - One or more items or ids of items to be removed. + * @param senderId - Sender id. + * + * @returns The ids of the removed items. + */ + + }, { + key: "remove", + value: function remove(id, senderId) { + var removedIds = []; + var removedItems = []; // force everything to be an array for simplicity + + var ids = Array.isArray(id) ? id : [id]; + + for (var i = 0, len = ids.length; i < len; i++) { + var item = this._remove(ids[i]); + + if (item) { + var itemId = item[this._idProp]; + + if (itemId != null) { + removedIds.push(itemId); + removedItems.push(item); + } + } + } + + if (removedIds.length) { + this._trigger('remove', { + items: removedIds, + oldData: removedItems + }, senderId); + } + + return removedIds; + } + /** + * Remove an item by its id or reference. + * + * @param id - Id of an item or the item itself. + * + * @returns The removed item if removed, null otherwise. + */ + + }, { + key: "_remove", + value: function _remove(id) { + // @TODO: It origianlly returned the item although the docs say id. + // The code expects the item, so probably an error in the docs. + var ident; // confirm the id to use based on the args type + + if (isId(id)) { + ident = id; + } else if (id && _typeof_1$1(id) === 'object') { + ident = id[this._idProp]; // look for the identifier field using ._idProp + } // do the removing if the item is found + + + if (ident != null && this._data[ident]) { + var item = this._data[ident]; + delete this._data[ident]; + --this.length; + return item; + } + + return null; + } + /** + * Clear the entire data set. + * + * After the items are removed, the [[DataSet]] will trigger an event `remove` for all removed items. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers. + * + * @param senderId - Sender id. + * + * @returns removedIds - The ids of all removed items. + */ + + }, { + key: "clear", + value: function clear(senderId) { + var ids = Object.keys(this._data); + var items = []; + + for (var i = 0, len = ids.length; i < len; i++) { + items.push(this._data[ids[i]]); + } + + this._data = {}; + this.length = 0; + + this._trigger('remove', { + items: ids, + oldData: items + }, senderId); + + return ids; + } + /** + * Find the item with maximum value of a specified field. + * + * @param field - Name of the property that should be searched for max value. + * + * @returns Item containing max value, or null if no items. + */ + + }, { + key: "max", + value: function max(field) { + var data = this._data; + var itemIds = Object.keys(data); + var max = null; + var maxField = null; + + for (var i = 0, len = itemIds.length; i < len; i++) { + var id = itemIds[i]; + var item = data[id]; + var itemField = item[field]; + + if (itemField != null && (maxField == null || itemField > maxField)) { + max = item; + maxField = itemField; + } + } + + return max; + } + /** + * Find the item with minimum value of a specified field. + * + * @param field - Name of the property that should be searched for min value. + * + * @returns Item containing min value, or null if no items. + */ + + }, { + key: "min", + value: function min(field) { + var data = this._data; + var itemIds = Object.keys(data); + var min = null; + var minField = null; + + for (var i = 0, len = itemIds.length; i < len; i++) { + var id = itemIds[i]; + var item = data[id]; + var itemField = item[field]; + + if (itemField != null && (minField == null || itemField < minField)) { + min = item; + minField = itemField; + } + } + + return min; + } + /** + * Find all distinct values of a specified field + * + * @param prop - The property name whose distinct values should be returned. + * + * @returns Unordered array containing all distinct values. Items without specified property are ignored. + */ + + }, { + key: "distinct", + value: function distinct(prop) { + var data = this._data; + var itemIds = Object.keys(data); + var values = []; + var fieldType = this._options.type && this._options.type[prop] || null; + var count = 0; + + for (var i = 0, len = itemIds.length; i < len; i++) { + var id = itemIds[i]; + var item = data[id]; + var value = item[prop]; + var exists = false; + + for (var j = 0; j < count; j++) { + if (values[j] == value) { + exists = true; + break; + } + } + + if (!exists && value !== undefined) { + values[count] = value; + count++; + } + } + + if (fieldType) { + for (var _i10 = 0, _len10 = values.length; _i10 < _len10; _i10++) { + values[_i10] = convert$1(values[_i10], fieldType); + } + } + + return values; + } + /** + * Add a single item. Will fail when an item with the same id already exists. + * + * @param item - A new item to be added. + * + * @returns Added item's id. An id is generated when it is not present in the item. + */ + + }, { + key: "_addItem", + value: function _addItem(item) { + var id = item[this._idProp]; + + if (id != null) { + // check whether this id is already taken + if (this._data[id]) { + // item already exists + throw new Error('Cannot add item: item with id ' + id + ' already exists'); + } + } else { + // generate an id + id = uuid4$1(); + item[this._idProp] = id; + } + + var d = {}; + var fields = Object.keys(item); + + for (var i = 0, len = fields.length; i < len; i++) { + var field = fields[i]; + var fieldType = this._type[field]; // type may be undefined + + d[field] = convert$1(item[field], fieldType); + } + + this._data[id] = d; + this.length++; + return id; + } + /** + * Get an item. Fields can be converted to a specific type + * + * @param id - Id of the requested item. + * @param types - Property name to type name object map of type converstions. + * + * @returns The item, optionally after type conversion. + */ + + }, { + key: "_getItem", + value: function _getItem(id, types) { + // @TODO: I have no idea how to type this. + // get the item from the dataset + var raw = this._data[id]; + + if (!raw) { + return null; + } // convert the items field types + + + var converted; + var fields = Object.keys(raw); + + if (types) { + converted = {}; + + for (var i = 0, len = fields.length; i < len; i++) { + var field = fields[i]; + var value = raw[field]; + converted[field] = convert$1(value, types[field]); + } + } else { + // no field types specified, no converting needed + converted = _objectSpread$1({}, raw); + } + + if (converted[this._idProp] == null) { + converted[this._idProp] = raw.id; + } + + return converted; + } + /** + * Update a single item: merge with existing item. + * Will fail when the item has no id, or when there does not exist an item with the same id. + * + * @param item - The new item + * + * @returns The id of the updated item. + */ + + }, { + key: "_updateItem", + value: function _updateItem(item) { + var id = item[this._idProp]; + + if (id == null) { + throw new Error('Cannot update item: item has no id (item: ' + JSON.stringify(item) + ')'); + } + + var d = this._data[id]; + + if (!d) { + // item doesn't exist + throw new Error('Cannot update item: no item with id ' + id + ' found'); + } // merge with current item + + + var fields = Object.keys(item); + + for (var i = 0, len = fields.length; i < len; i++) { + var field = fields[i]; + var fieldType = this._type[field] // type may be undefined + ; + d[field] = convert$1(item[field], fieldType); + } + + return id; + } + }]); + return DataSet; +}(DataSetPart); +/** + * DataView + * + * A DataView offers a filtered and/or formatted view on a DataSet. One can subscribe to changes in a DataView, and easily get filtered or formatted data without having to specify filters and field types all the time. + * + * ## Example + * ```javascript + * // create a DataSet + * var data = new vis.DataSet(); + * data.add([ + * {id: 1, text: 'item 1', date: new Date(2013, 6, 20), group: 1, first: true}, + * {id: 2, text: 'item 2', date: '2013-06-23', group: 2}, + * {id: 3, text: 'item 3', date: '2013-06-25', group: 2}, + * {id: 4, text: 'item 4'} + * ]); + * + * // create a DataView + * // the view will only contain items having a property group with value 1, + * // and will only output fields id, text, and date. + * var view = new vis.DataView(data, { + * filter: function (item) { + * return (item.group == 1); + * }, + * fields: ['id', 'text', 'date'] + * }); + * + * // subscribe to any change in the DataView + * view.on('*', function (event, properties, senderId) { + * console.log('event', event, properties); + * }); + * + * // update an item in the data set + * data.update({id: 2, group: 1}); + * + * // get all ids in the view + * var ids = view.getIds(); + * console.log('ids', ids); // will output [1, 2] + * + * // get all items in the view + * var items = view.get(); + * ``` + * + * @typeParam Item - Item type that may or may not have an id. + * @typeParam IdProp - Name of the property that contains the id. + */ + + +var DataView = +/*#__PURE__*/ +function (_DataSetPart) { + inherits(DataView, _DataSetPart); + /** + * Create a DataView. + * + * @param data - The instance containing data (directly or indirectly). + * @param options - Options to configure this data view. + */ + + function DataView(data, options) { + var _this; + + classCallCheck(this, DataView); + _this = possibleConstructorReturn(this, getPrototypeOf(DataView).call(this)); + /** @inheritdoc */ + + _this.length = 0; + _this._ids = {}; // ids of the items currently in memory (just contains a boolean true) + + _this._options = options || {}; + _this.listener = _this._onEvent.bind(assertThisInitialized(_this)); + + _this.setData(data); + + return _this; + } // TODO: implement a function .config() to dynamically update things like configured filter + // and trigger changes accordingly + + /** + * Set a data source for the view. + * + * @param data - The instance containing data (directly or indirectly). + */ + + + createClass(DataView, [{ + key: "setData", + value: function setData(data) { + if (this._data) { + // unsubscribe from current dataset + if (this._data.off) { + this._data.off('*', this.listener); + } // trigger a remove of all items in memory + + + var ids = this._data.getIds({ + filter: this._options.filter + }); + + var items = this._data.get(ids); + + this._ids = {}; + this.length = 0; + + this._trigger('remove', { + items: ids, + oldData: items + }); + } + + if (data != null) { + this._data = data; // trigger an add of all added items + + var _ids = this._data.getIds({ + filter: this._options.filter + }); + + for (var i = 0, len = _ids.length; i < len; i++) { + var id = _ids[i]; + this._ids[id] = true; + } + + this.length = _ids.length; + + this._trigger('add', { + items: _ids + }); + } else { + this._data = new DataSet(); + } // subscribe to new dataset + + + if (this._data.on) { + this._data.on('*', this.listener); + } + } + /** + * Refresh the DataView. + * Useful when the DataView has a filter function containing a variable parameter. + */ + + }, { + key: "refresh", + value: function refresh() { + var ids = this._data.getIds({ + filter: this._options.filter + }); + + var oldIds = Object.keys(this._ids); + var newIds = {}; + var addedIds = []; + var removedIds = []; + var removedItems = []; // check for additions + + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + newIds[id] = true; + + if (!this._ids[id]) { + addedIds.push(id); + this._ids[id] = true; + } + } // check for removals + + + for (var _i = 0, _len = oldIds.length; _i < _len; _i++) { + var _id = oldIds[_i]; + + var item = this._data.get(_id); + + if (item == null) { + // @TODO: Investigate. + // Doesn't happen during tests or examples. + // Is it really impossible or could it eventually happen? + // How to handle it if it does? The types guarantee non-nullable items. + console.error('If you see this, report it please.'); + } else if (!newIds[_id]) { + removedIds.push(_id); + removedItems.push(item); + delete this._ids[_id]; + } + } + + this.length += addedIds.length - removedIds.length; // trigger events + + if (addedIds.length) { + this._trigger('add', { + items: addedIds + }); + } + + if (removedIds.length) { + this._trigger('remove', { + items: removedIds, + oldData: removedItems + }); + } + } + /** @inheritdoc */ + + }, { + key: "get", + value: function get(first, second) { + if (this._data == null) { + return null; + } // parse the arguments + + + var ids = null; + var options; + + if (isId(first) || Array.isArray(first)) { + ids = first; + options = second; + } else { + options = first; + } // extend the options with the default options and provided options + + + var viewOptions = Object.assign({}, this._options, options); // create a combined filter method when needed + + var thisFilter = this._options.filter; + var optionsFilter = options && options.filter; + + if (thisFilter && optionsFilter) { + viewOptions.filter = function (item) { + return thisFilter(item) && optionsFilter(item); + }; + } + + if (ids == null) { + return this._data.get(viewOptions); + } else { + return this._data.get(ids, viewOptions); + } + } + /** @inheritdoc */ + + }, { + key: "getIds", + value: function getIds(options) { + if (this._data.length) { + var defaultFilter = this._options.filter; + var optionsFilter = options != null ? options.filter : null; + var filter; + + if (optionsFilter) { + if (defaultFilter) { + filter = function filter(item) { + return defaultFilter(item) && optionsFilter(item); + }; + } else { + filter = optionsFilter; + } + } else { + filter = defaultFilter; + } + + return this._data.getIds({ + filter: filter, + order: options && options.order + }); + } else { + return []; + } + } + /** @inheritdoc */ + + }, { + key: "forEach", + value: function forEach(callback, options) { + if (this._data) { + var defaultFilter = this._options.filter; + var optionsFilter = options && options.filter; + var filter; + + if (optionsFilter) { + if (defaultFilter) { + filter = function filter(item) { + return defaultFilter(item) && optionsFilter(item); + }; + } else { + filter = optionsFilter; + } + } else { + filter = defaultFilter; + } + + this._data.forEach(callback, { + filter: filter, + order: options && options.order + }); + } + } + /** @inheritdoc */ + + }, { + key: "map", + value: function map(callback, options) { + if (this._data) { + var defaultFilter = this._options.filter; + var optionsFilter = options && options.filter; + var filter; + + if (optionsFilter) { + if (defaultFilter) { + filter = function filter(item) { + return defaultFilter(item) && optionsFilter(item); + }; + } else { + filter = optionsFilter; + } + } else { + filter = defaultFilter; + } + + return this._data.map(callback, { + filter: filter, + order: options && options.order + }); + } else { + return []; + } + } + /** @inheritdoc */ + + }, { + key: "getDataSet", + value: function getDataSet() { + return this._data.getDataSet(); + } + /** + * Event listener. Will propagate all events from the connected data set to the subscribers of the DataView, but will filter the items and only trigger when there are changes in the filtered data set. + * + * @param event - The name of the event. + * @param params - Parameters of the event. + * @param senderId - Id supplied by the sender. + */ + + }, { + key: "_onEvent", + value: function _onEvent(event, params, senderId) { + if (!params || !params.items || !this._data) { + return; + } + + var ids = params.items; + var addedIds = []; + var updatedIds = []; + var removedIds = []; + var oldItems = []; + var updatedItems = []; + var removedItems = []; + + switch (event) { + case 'add': + // filter the ids of the added items + for (var i = 0, len = ids.length; i < len; i++) { + var id = ids[i]; + var item = this.get(id); + + if (item) { + this._ids[id] = true; + addedIds.push(id); + } + } + + break; + + case 'update': + // determine the event from the views viewpoint: an updated + // item can be added, updated, or removed from this view. + for (var _i2 = 0, _len2 = ids.length; _i2 < _len2; _i2++) { + var _id2 = ids[_i2]; + + var _item = this.get(_id2); + + if (_item) { + if (this._ids[_id2]) { + updatedIds.push(_id2); + updatedItems.push(params.data[_i2]); + oldItems.push(params.oldData[_i2]); + } else { + this._ids[_id2] = true; + addedIds.push(_id2); + } + } else { + if (this._ids[_id2]) { + delete this._ids[_id2]; + removedIds.push(_id2); + removedItems.push(params.oldData[_i2]); + } + } + } + + break; + + case 'remove': + // filter the ids of the removed items + for (var _i3 = 0, _len3 = ids.length; _i3 < _len3; _i3++) { + var _id3 = ids[_i3]; + + if (this._ids[_id3]) { + delete this._ids[_id3]; + removedIds.push(_id3); + removedItems.push(params.oldData[_i3]); + } + } + + break; + } + + this.length += addedIds.length - removedIds.length; + + if (addedIds.length) { + this._trigger('add', { + items: addedIds + }, senderId); + } + + if (updatedIds.length) { + this._trigger('update', { + items: updatedIds, + oldData: oldItems, + data: updatedItems + }, senderId); + } + + if (removedIds.length) { + this._trigger('remove', { + items: removedIds, + oldData: removedItems + }, senderId); + } + } + }]); + return DataView; +}(DataSetPart); + +var fails = function (exec) { + try { + return !!exec(); + } catch (error) { + return true; + } +}; + +var toString = {}.toString; + +var classofRaw = function (it) { + return toString.call(it).slice(8, -1); +}; + +var split = ''.split; // fallback for non-array-like ES3 and non-enumerable old V8 strings + +var indexedObject = fails(function () { + // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346 + // eslint-disable-next-line no-prototype-builtins + return !Object('z').propertyIsEnumerable(0); +}) ? function (it) { + return classofRaw(it) == 'String' ? split.call(it, '') : Object(it); +} : Object; + +// `RequireObjectCoercible` abstract operation +// https://tc39.github.io/ecma262/#sec-requireobjectcoercible +var requireObjectCoercible = function (it) { + if (it == undefined) throw TypeError("Can't call method on " + it); + return it; +}; + +var toIndexedObject = function (it) { + return indexedObject(requireObjectCoercible(it)); +}; + +var iterators = {}; + +var commonjsGlobal$2 = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {}; + +function commonjsRequire$2 () { + throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs'); +} + +function createCommonjsModule$2(fn, module) { + return module = { exports: {} }, fn(module, module.exports), module.exports; +} + +var O = 'object'; + +var check = function (it) { + return it && it.Math == Math && it; +}; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028 + + +var global_1 = // eslint-disable-next-line no-undef +check(typeof globalThis == O && globalThis) || check(typeof window == O && window) || check(typeof self == O && self) || check(typeof commonjsGlobal$2 == O && commonjsGlobal$2) || // eslint-disable-next-line no-new-func +Function('return this')(); + +var descriptors = !fails(function () { + return Object.defineProperty({}, 'a', { + get: function () { + return 7; + } + }).a != 7; +}); + +var isObject$1 = function (it) { + return typeof it === 'object' ? it !== null : typeof it === 'function'; +}; + +var document$1 = global_1.document; // typeof document.createElement is 'object' in old IE + +var EXISTS = isObject$1(document$1) && isObject$1(document$1.createElement); + +var documentCreateElement = function (it) { + return EXISTS ? document$1.createElement(it) : {}; +}; + +var ie8DomDefine = !descriptors && !fails(function () { + return Object.defineProperty(documentCreateElement('div'), 'a', { + get: function () { + return 7; + } + }).a != 7; +}); + +var anObject = function (it) { + if (!isObject$1(it)) { + throw TypeError(String(it) + ' is not an object'); + } + + return it; +}; + +// https://tc39.github.io/ecma262/#sec-toprimitive +// instead of the ES6 spec version, we didn't implement @@toPrimitive case +// and the second argument - flag - preferred type is a string + +var toPrimitive = function (input, PREFERRED_STRING) { + if (!isObject$1(input)) return input; + var fn, val; + if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject$1(val = fn.call(input))) return val; + if (typeof (fn = input.valueOf) == 'function' && !isObject$1(val = fn.call(input))) return val; + if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject$1(val = fn.call(input))) return val; + throw TypeError("Can't convert object to primitive value"); +}; + +var nativeDefineProperty = Object.defineProperty; // `Object.defineProperty` method +// https://tc39.github.io/ecma262/#sec-object.defineproperty + +var f = descriptors ? nativeDefineProperty : function defineProperty(O, P, Attributes) { + anObject(O); + P = toPrimitive(P, true); + anObject(Attributes); + if (ie8DomDefine) try { + return nativeDefineProperty(O, P, Attributes); + } catch (error) { + /* empty */ + } + if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported'); + if ('value' in Attributes) O[P] = Attributes.value; + return O; +}; +var objectDefineProperty = { + f: f +}; + +var createPropertyDescriptor = function (bitmap, value) { + return { + enumerable: !(bitmap & 1), + configurable: !(bitmap & 2), + writable: !(bitmap & 4), + value: value + }; +}; + +var hide = descriptors ? function (object, key, value) { + return objectDefineProperty.f(object, key, createPropertyDescriptor(1, value)); +} : function (object, key, value) { + object[key] = value; + return object; +}; + +var setGlobal = function (key, value) { + try { + hide(global_1, key, value); + } catch (error) { + global_1[key] = value; + } + + return value; +}; + +var shared = createCommonjsModule$2(function (module) { + var SHARED = '__core-js_shared__'; + var store = global_1[SHARED] || setGlobal(SHARED, {}); + (module.exports = function (key, value) { + return store[key] || (store[key] = value !== undefined ? value : {}); + })('versions', []).push({ + version: '3.2.1', + mode: 'pure' , + copyright: '© 2019 Denis Pushkarev (zloirock.ru)' + }); +}); + +var functionToString = shared('native-function-to-string', Function.toString); + +var WeakMap = global_1.WeakMap; +var nativeWeakMap = typeof WeakMap === 'function' && /native code/.test(functionToString.call(WeakMap)); + +var hasOwnProperty = {}.hasOwnProperty; + +var has = function (it, key) { + return hasOwnProperty.call(it, key); +}; + +var id = 0; +var postfix = Math.random(); + +var uid = function (key) { + return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36); +}; + +var keys = shared('keys'); + +var sharedKey = function (key) { + return keys[key] || (keys[key] = uid(key)); +}; + +var hiddenKeys = {}; + +var WeakMap$1 = global_1.WeakMap; +var set, get, has$1; + +var enforce = function (it) { + return has$1(it) ? get(it) : set(it, {}); +}; + +var getterFor = function (TYPE) { + return function (it) { + var state; + + if (!isObject$1(it) || (state = get(it)).type !== TYPE) { + throw TypeError('Incompatible receiver, ' + TYPE + ' required'); + } + + return state; + }; +}; + +if (nativeWeakMap) { + var store = new WeakMap$1(); + var wmget = store.get; + var wmhas = store.has; + var wmset = store.set; + + set = function (it, metadata) { + wmset.call(store, it, metadata); + return metadata; + }; + + get = function (it) { + return wmget.call(store, it) || {}; + }; + + has$1 = function (it) { + return wmhas.call(store, it); + }; +} else { + var STATE = sharedKey('state'); + hiddenKeys[STATE] = true; + + set = function (it, metadata) { + hide(it, STATE, metadata); + return metadata; + }; + + get = function (it) { + return has(it, STATE) ? it[STATE] : {}; + }; + + has$1 = function (it) { + return has(it, STATE); + }; +} + +var internalState = { + set: set, + get: get, + has: has$1, + enforce: enforce, + getterFor: getterFor +}; + +var nativePropertyIsEnumerable = {}.propertyIsEnumerable; +var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // Nashorn ~ JDK8 bug + +var NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ + 1: 2 +}, 1); // `Object.prototype.propertyIsEnumerable` method implementation +// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable + +var f$1 = NASHORN_BUG ? function propertyIsEnumerable(V) { + var descriptor = getOwnPropertyDescriptor(this, V); + return !!descriptor && descriptor.enumerable; +} : nativePropertyIsEnumerable; +var objectPropertyIsEnumerable = { + f: f$1 +}; + +var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor + +var f$2 = descriptors ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) { + O = toIndexedObject(O); + P = toPrimitive(P, true); + if (ie8DomDefine) try { + return nativeGetOwnPropertyDescriptor(O, P); + } catch (error) { + /* empty */ + } + if (has(O, P)) return createPropertyDescriptor(!objectPropertyIsEnumerable.f.call(O, P), O[P]); +}; +var objectGetOwnPropertyDescriptor = { + f: f$2 +}; + +var replacement = /#|\.prototype\./; + +var isForced = function (feature, detection) { + var value = data[normalize(feature)]; + return value == POLYFILL ? true : value == NATIVE ? false : typeof detection == 'function' ? fails(detection) : !!detection; +}; + +var normalize = isForced.normalize = function (string) { + return String(string).replace(replacement, '.').toLowerCase(); +}; + +var data = isForced.data = {}; +var NATIVE = isForced.NATIVE = 'N'; +var POLYFILL = isForced.POLYFILL = 'P'; +var isForced_1 = isForced; + +var path = {}; + +var aFunction = function (it) { + if (typeof it != 'function') { + throw TypeError(String(it) + ' is not a function'); + } + + return it; +}; + +var bindContext = function (fn, that, length) { + aFunction(fn); + if (that === undefined) return fn; + + switch (length) { + case 0: + return function () { + return fn.call(that); + }; + + case 1: + return function (a) { + return fn.call(that, a); + }; + + case 2: + return function (a, b) { + return fn.call(that, a, b); + }; + + case 3: + return function (a, b, c) { + return fn.call(that, a, b, c); + }; + } + + return function () + /* ...args */ + { + return fn.apply(that, arguments); + }; +}; + +var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f; + +var wrapConstructor = function (NativeConstructor) { + var Wrapper = function (a, b, c) { + if (this instanceof NativeConstructor) { + switch (arguments.length) { + case 0: + return new NativeConstructor(); + + case 1: + return new NativeConstructor(a); + + case 2: + return new NativeConstructor(a, b); + } + + return new NativeConstructor(a, b, c); + } + + return NativeConstructor.apply(this, arguments); + }; + + Wrapper.prototype = NativeConstructor.prototype; + return Wrapper; +}; +/* + options.target - name of the target object + options.global - target is the global object + options.stat - export as static methods of target + options.proto - export as prototype methods of target + options.real - real prototype method for the `pure` version + options.forced - export even if the native feature is available + options.bind - bind methods to the target, required for the `pure` version + options.wrap - wrap constructors to preventing global pollution, required for the `pure` version + options.unsafe - use the simple assignment of property instead of delete + defineProperty + options.sham - add a flag to not completely full polyfills + options.enumerable - export as enumerable property + options.noTargetGet - prevent calling a getter on target +*/ + + +var _export = function (options, source) { + var TARGET = options.target; + var GLOBAL = options.global; + var STATIC = options.stat; + var PROTO = options.proto; + var nativeSource = GLOBAL ? global_1 : STATIC ? global_1[TARGET] : (global_1[TARGET] || {}).prototype; + var target = GLOBAL ? path : path[TARGET] || (path[TARGET] = {}); + var targetPrototype = target.prototype; + var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE; + var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor; + + for (key in source) { + FORCED = isForced_1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced); // contains in native + + USE_NATIVE = !FORCED && nativeSource && has(nativeSource, key); + targetProperty = target[key]; + if (USE_NATIVE) if (options.noTargetGet) { + descriptor = getOwnPropertyDescriptor$1(nativeSource, key); + nativeProperty = descriptor && descriptor.value; + } else nativeProperty = nativeSource[key]; // export native or implementation + + sourceProperty = USE_NATIVE && nativeProperty ? nativeProperty : source[key]; + if (USE_NATIVE && typeof targetProperty === typeof sourceProperty) continue; // bind timers to global for call from export context + + if (options.bind && USE_NATIVE) resultProperty = bindContext(sourceProperty, global_1); // wrap global constructors for prevent changs in this version + else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty); // make static versions for prototype methods + else if (PROTO && typeof sourceProperty == 'function') resultProperty = bindContext(Function.call, sourceProperty); // default case + else resultProperty = sourceProperty; // add a flag to not completely full polyfills + + if (options.sham || sourceProperty && sourceProperty.sham || targetProperty && targetProperty.sham) { + hide(resultProperty, 'sham', true); + } + + target[key] = resultProperty; + + if (PROTO) { + VIRTUAL_PROTOTYPE = TARGET + 'Prototype'; + if (!has(path, VIRTUAL_PROTOTYPE)) hide(path, VIRTUAL_PROTOTYPE, {}); // export virtual prototype methods + + path[VIRTUAL_PROTOTYPE][key] = sourceProperty; // export real prototype methods + + if (options.real && targetPrototype && !targetPrototype[key]) hide(targetPrototype, key, sourceProperty); + } + } +}; + +// https://tc39.github.io/ecma262/#sec-toobject + +var toObject = function (argument) { + return Object(requireObjectCoercible(argument)); +}; + +var correctPrototypeGetter = !fails(function () { + function F() { + /* empty */ + } + + F.prototype.constructor = null; + return Object.getPrototypeOf(new F()) !== F.prototype; +}); + +var IE_PROTO = sharedKey('IE_PROTO'); +var ObjectPrototype = Object.prototype; // `Object.getPrototypeOf` method +// https://tc39.github.io/ecma262/#sec-object.getprototypeof + +var objectGetPrototypeOf = correctPrototypeGetter ? Object.getPrototypeOf : function (O) { + O = toObject(O); + if (has(O, IE_PROTO)) return O[IE_PROTO]; + + if (typeof O.constructor == 'function' && O instanceof O.constructor) { + return O.constructor.prototype; + } + + return O instanceof Object ? ObjectPrototype : null; +}; + +var nativeSymbol = !!Object.getOwnPropertySymbols && !fails(function () { + // Chrome 38 Symbol has incorrect toString conversion + // eslint-disable-next-line no-undef + return !String(Symbol()); +}); + +var Symbol$1 = global_1.Symbol; +var store$1 = shared('wks'); + +var wellKnownSymbol = function (name) { + return store$1[name] || (store$1[name] = nativeSymbol && Symbol$1[name] || (nativeSymbol ? Symbol$1 : uid)('Symbol.' + name)); +}; + +var ITERATOR = wellKnownSymbol('iterator'); +var BUGGY_SAFARI_ITERATORS = false; +// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object + + +var IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator; + +if ([].keys) { + arrayIterator = [].keys(); // Safari 8 has buggy iterators w/o `next` + + if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;else { + PrototypeOfArrayIteratorPrototype = objectGetPrototypeOf(objectGetPrototypeOf(arrayIterator)); + if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype; + } +} + +if (IteratorPrototype == undefined) IteratorPrototype = {}; // 25.1.2.1.1 %IteratorPrototype%[@@iterator]() +var iteratorsCore = { + IteratorPrototype: IteratorPrototype, + BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS +}; + +var ceil = Math.ceil; +var floor = Math.floor; // `ToInteger` abstract operation +// https://tc39.github.io/ecma262/#sec-tointeger + +var toInteger = function (argument) { + return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument); +}; + +var min = Math.min; // `ToLength` abstract operation +// https://tc39.github.io/ecma262/#sec-tolength + +var toLength = function (argument) { + return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991 +}; + +var max = Math.max; +var min$1 = Math.min; // Helper for a popular repeating case of the spec: +// Let integer be ? ToInteger(index). +// If integer < 0, let result be max((length + integer), 0); else let result be min(length, length). + +var toAbsoluteIndex = function (index, length) { + var integer = toInteger(index); + return integer < 0 ? max(integer + length, 0) : min$1(integer, length); +}; + +var createMethod = function (IS_INCLUDES) { + return function ($this, el, fromIndex) { + var O = toIndexedObject($this); + var length = toLength(O.length); + var index = toAbsoluteIndex(fromIndex, length); + var value; // Array#includes uses SameValueZero equality algorithm + // eslint-disable-next-line no-self-compare + + if (IS_INCLUDES && el != el) while (length > index) { + value = O[index++]; // eslint-disable-next-line no-self-compare + + if (value != value) return true; // Array#indexOf ignores holes, Array#includes - not + } else for (; length > index; index++) { + if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0; + } + return !IS_INCLUDES && -1; + }; +}; + +var arrayIncludes = { + // `Array.prototype.includes` method + // https://tc39.github.io/ecma262/#sec-array.prototype.includes + includes: createMethod(true), + // `Array.prototype.indexOf` method + // https://tc39.github.io/ecma262/#sec-array.prototype.indexof + indexOf: createMethod(false) +}; + +var indexOf = arrayIncludes.indexOf; + +var objectKeysInternal = function (object, names) { + var O = toIndexedObject(object); + var i = 0; + var result = []; + var key; + + for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key); // Don't enum bug & hidden keys + + + while (names.length > i) if (has(O, key = names[i++])) { + ~indexOf(result, key) || result.push(key); + } + + return result; +}; + +// IE8- don't enum bug keys +var enumBugKeys = ['constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf']; + +// https://tc39.github.io/ecma262/#sec-object.keys + +var objectKeys = Object.keys || function keys(O) { + return objectKeysInternal(O, enumBugKeys); +}; + +// https://tc39.github.io/ecma262/#sec-object.defineproperties + +var objectDefineProperties = descriptors ? Object.defineProperties : function defineProperties(O, Properties) { + anObject(O); + var keys = objectKeys(Properties); + var length = keys.length; + var index = 0; + var key; + + while (length > index) objectDefineProperty.f(O, key = keys[index++], Properties[key]); + + return O; +}; + +var aFunction$1 = function (variable) { + return typeof variable == 'function' ? variable : undefined; +}; + +var getBuiltIn = function (namespace, method) { + return arguments.length < 2 ? aFunction$1(path[namespace]) || aFunction$1(global_1[namespace]) : path[namespace] && path[namespace][method] || global_1[namespace] && global_1[namespace][method]; +}; + +var html = getBuiltIn('document', 'documentElement'); + +var IE_PROTO$1 = sharedKey('IE_PROTO'); +var PROTOTYPE = 'prototype'; + +var Empty = function () { + /* empty */ +}; // Create object with fake `null` prototype: use iframe Object with cleared prototype + + +var createDict = function () { + // Thrash, waste and sodomy: IE GC bug + var iframe = documentCreateElement('iframe'); + var length = enumBugKeys.length; + var lt = '<'; + var script = 'script'; + var gt = '>'; + var js = 'java' + script + ':'; + var iframeDocument; + iframe.style.display = 'none'; + html.appendChild(iframe); + iframe.src = String(js); + iframeDocument = iframe.contentWindow.document; + iframeDocument.open(); + iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt); + iframeDocument.close(); + createDict = iframeDocument.F; + + while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]]; + + return createDict(); +}; // `Object.create` method +// https://tc39.github.io/ecma262/#sec-object.create + + +var objectCreate = Object.create || function create(O, Properties) { + var result; + + if (O !== null) { + Empty[PROTOTYPE] = anObject(O); + result = new Empty(); + Empty[PROTOTYPE] = null; // add "__proto__" for Object.getPrototypeOf polyfill + + result[IE_PROTO$1] = O; + } else result = createDict(); + + return Properties === undefined ? result : objectDefineProperties(result, Properties); +}; + +hiddenKeys[IE_PROTO$1] = true; + +var TO_STRING_TAG = wellKnownSymbol('toStringTag'); // ES3 wrong here + +var CORRECT_ARGUMENTS = classofRaw(function () { + return arguments; +}()) == 'Arguments'; // fallback for IE11 Script Access Denied error + +var tryGet = function (it, key) { + try { + return it[key]; + } catch (error) { + /* empty */ + } +}; // getting tag from ES6+ `Object.prototype.toString` + + +var classof = function (it) { + var O, tag, result; + return it === undefined ? 'Undefined' : it === null ? 'Null' // @@toStringTag case + : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag // builtinTag case + : CORRECT_ARGUMENTS ? classofRaw(O) // ES3 arguments fallback + : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result; +}; + +var TO_STRING_TAG$1 = wellKnownSymbol('toStringTag'); +var test = {}; +test[TO_STRING_TAG$1] = 'z'; // `Object.prototype.toString` method implementation +// https://tc39.github.io/ecma262/#sec-object.prototype.tostring + +var objectToString = String(test) !== '[object z]' ? function toString() { + return '[object ' + classof(this) + ']'; +} : test.toString; + +var defineProperty$2 = objectDefineProperty.f; +var TO_STRING_TAG$2 = wellKnownSymbol('toStringTag'); +var METHOD_REQUIRED = objectToString !== {}.toString; + +var setToStringTag = function (it, TAG, STATIC, SET_METHOD) { + if (it) { + var target = STATIC ? it : it.prototype; + + if (!has(target, TO_STRING_TAG$2)) { + defineProperty$2(target, TO_STRING_TAG$2, { + configurable: true, + value: TAG + }); + } + + if (SET_METHOD && METHOD_REQUIRED) hide(target, 'toString', objectToString); + } +}; + +var IteratorPrototype$1 = iteratorsCore.IteratorPrototype; + +var returnThis = function () { + return this; +}; + +var createIteratorConstructor = function (IteratorConstructor, NAME, next) { + var TO_STRING_TAG = NAME + ' Iterator'; + IteratorConstructor.prototype = objectCreate(IteratorPrototype$1, { + next: createPropertyDescriptor(1, next) + }); + setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true); + iterators[TO_STRING_TAG] = returnThis; + return IteratorConstructor; +}; + +var aPossiblePrototype = function (it) { + if (!isObject$1(it) && it !== null) { + throw TypeError("Can't set " + String(it) + ' as a prototype'); + } + + return it; +}; + +// https://tc39.github.io/ecma262/#sec-object.setprototypeof +// Works with __proto__ only. Old v8 can't work with null proto objects. + +/* eslint-disable no-proto */ + +var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? function () { + var CORRECT_SETTER = false; + var test = {}; + var setter; + + try { + setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set; + setter.call(test, []); + CORRECT_SETTER = test instanceof Array; + } catch (error) { + /* empty */ + } + + return function setPrototypeOf(O, proto) { + anObject(O); + aPossiblePrototype(proto); + if (CORRECT_SETTER) setter.call(O, proto);else O.__proto__ = proto; + return O; + }; +}() : undefined); + +var redefine = function (target, key, value, options) { + if (options && options.enumerable) target[key] = value;else hide(target, key, value); +}; + +var IteratorPrototype$2 = iteratorsCore.IteratorPrototype; +var BUGGY_SAFARI_ITERATORS$1 = iteratorsCore.BUGGY_SAFARI_ITERATORS; +var ITERATOR$1 = wellKnownSymbol('iterator'); +var KEYS = 'keys'; +var VALUES = 'values'; +var ENTRIES = 'entries'; + +var returnThis$1 = function () { + return this; +}; + +var defineIterator = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) { + createIteratorConstructor(IteratorConstructor, NAME, next); + + var getIterationMethod = function (KIND) { + if (KIND === DEFAULT && defaultIterator) return defaultIterator; + if (!BUGGY_SAFARI_ITERATORS$1 && KIND in IterablePrototype) return IterablePrototype[KIND]; + + switch (KIND) { + case KEYS: + return function keys() { + return new IteratorConstructor(this, KIND); + }; + + case VALUES: + return function values() { + return new IteratorConstructor(this, KIND); + }; + + case ENTRIES: + return function entries() { + return new IteratorConstructor(this, KIND); + }; + } + + return function () { + return new IteratorConstructor(this); + }; + }; + + var TO_STRING_TAG = NAME + ' Iterator'; + var INCORRECT_VALUES_NAME = false; + var IterablePrototype = Iterable.prototype; + var nativeIterator = IterablePrototype[ITERATOR$1] || IterablePrototype['@@iterator'] || DEFAULT && IterablePrototype[DEFAULT]; + var defaultIterator = !BUGGY_SAFARI_ITERATORS$1 && nativeIterator || getIterationMethod(DEFAULT); + var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator; + var CurrentIteratorPrototype, methods, KEY; // fix native + + if (anyNativeIterator) { + CurrentIteratorPrototype = objectGetPrototypeOf(anyNativeIterator.call(new Iterable())); + + if (IteratorPrototype$2 !== Object.prototype && CurrentIteratorPrototype.next) { + + + setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true); + iterators[TO_STRING_TAG] = returnThis$1; + } + } // fix Array#{values, @@iterator}.name in V8 / FF + + + if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) { + INCORRECT_VALUES_NAME = true; + + defaultIterator = function values() { + return nativeIterator.call(this); + }; + } // define iterator + + + if (( FORCED) && IterablePrototype[ITERATOR$1] !== defaultIterator) { + hide(IterablePrototype, ITERATOR$1, defaultIterator); + } + + iterators[NAME] = defaultIterator; // export additional methods + + if (DEFAULT) { + methods = { + values: getIterationMethod(VALUES), + keys: IS_SET ? defaultIterator : getIterationMethod(KEYS), + entries: getIterationMethod(ENTRIES) + }; + if (FORCED) for (KEY in methods) { + if (BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) { + redefine(IterablePrototype, KEY, methods[KEY]); + } + } else _export({ + target: NAME, + proto: true, + forced: BUGGY_SAFARI_ITERATORS$1 || INCORRECT_VALUES_NAME + }, methods); + } + + return methods; +}; + +var ARRAY_ITERATOR = 'Array Iterator'; +var setInternalState = internalState.set; +var getInternalState = internalState.getterFor(ARRAY_ITERATOR); // `Array.prototype.entries` method +// https://tc39.github.io/ecma262/#sec-array.prototype.entries +// `Array.prototype.keys` method +// https://tc39.github.io/ecma262/#sec-array.prototype.keys +// `Array.prototype.values` method +// https://tc39.github.io/ecma262/#sec-array.prototype.values +// `Array.prototype[@@iterator]` method +// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator +// `CreateArrayIterator` internal method +// https://tc39.github.io/ecma262/#sec-createarrayiterator + +var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) { + setInternalState(this, { + type: ARRAY_ITERATOR, + target: toIndexedObject(iterated), + // target + index: 0, + // next index + kind: kind // kind + + }); // `%ArrayIteratorPrototype%.next` method + // https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next +}, function () { + var state = getInternalState(this); + var target = state.target; + var kind = state.kind; + var index = state.index++; + + if (!target || index >= target.length) { + state.target = undefined; + return { + value: undefined, + done: true + }; + } + + if (kind == 'keys') return { + value: index, + done: false + }; + if (kind == 'values') return { + value: target[index], + done: false + }; + return { + value: [index, target[index]], + done: false + }; +}, 'values'); // argumentsList[@@iterator] is %ArrayProto_values% +// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject +// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject + +iterators.Arguments = iterators.Array; // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + +// iterable DOM collections +// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods +var domIterables = { + CSSRuleList: 0, + CSSStyleDeclaration: 0, + CSSValueList: 0, + ClientRectList: 0, + DOMRectList: 0, + DOMStringList: 0, + DOMTokenList: 1, + DataTransferItemList: 0, + FileList: 0, + HTMLAllCollection: 0, + HTMLCollection: 0, + HTMLFormElement: 0, + HTMLSelectElement: 0, + MediaList: 0, + MimeTypeArray: 0, + NamedNodeMap: 0, + NodeList: 1, + PaintRequestList: 0, + Plugin: 0, + PluginArray: 0, + SVGLengthList: 0, + SVGNumberList: 0, + SVGPathSegList: 0, + SVGPointList: 0, + SVGStringList: 0, + SVGTransformList: 0, + SourceBufferList: 0, + StyleSheetList: 0, + TextTrackCueList: 0, + TextTrackList: 0, + TouchList: 0 +}; + +var TO_STRING_TAG$3 = wellKnownSymbol('toStringTag'); + +for (var COLLECTION_NAME in domIterables) { + var Collection = global_1[COLLECTION_NAME]; + var CollectionPrototype = Collection && Collection.prototype; + + if (CollectionPrototype && !CollectionPrototype[TO_STRING_TAG$3]) { + hide(CollectionPrototype, TO_STRING_TAG$3, COLLECTION_NAME); + } + + iterators[COLLECTION_NAME] = iterators.Array; +} + +// https://tc39.github.io/ecma262/#sec-isarray + +var isArray = Array.isArray || function isArray(arg) { + return classofRaw(arg) == 'Array'; +}; + +var SPECIES = wellKnownSymbol('species'); // `ArraySpeciesCreate` abstract operation +// https://tc39.github.io/ecma262/#sec-arrayspeciescreate + +var arraySpeciesCreate = function (originalArray, length) { + var C; + + if (isArray(originalArray)) { + C = originalArray.constructor; // cross-realm fallback + + if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;else if (isObject$1(C)) { + C = C[SPECIES]; + if (C === null) C = undefined; + } + } + + return new (C === undefined ? Array : C)(length === 0 ? 0 : length); +}; + +var push = [].push; // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation + +var createMethod$1 = function (TYPE) { + var IS_MAP = TYPE == 1; + var IS_FILTER = TYPE == 2; + var IS_SOME = TYPE == 3; + var IS_EVERY = TYPE == 4; + var IS_FIND_INDEX = TYPE == 6; + var NO_HOLES = TYPE == 5 || IS_FIND_INDEX; + return function ($this, callbackfn, that, specificCreate) { + var O = toObject($this); + var self = indexedObject(O); + var boundFunction = bindContext(callbackfn, that, 3); + var length = toLength(self.length); + var index = 0; + var create = specificCreate || arraySpeciesCreate; + var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined; + var value, result; + + for (; length > index; index++) if (NO_HOLES || index in self) { + value = self[index]; + result = boundFunction(value, index, O); + + if (TYPE) { + if (IS_MAP) target[index] = result; // map + else if (result) switch (TYPE) { + case 3: + return true; + // some + + case 5: + return value; + // find + + case 6: + return index; + // findIndex + + case 2: + push.call(target, value); + // filter + } else if (IS_EVERY) return false; // every + } + } + + return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target; + }; +}; + +var arrayIteration = { + // `Array.prototype.forEach` method + // https://tc39.github.io/ecma262/#sec-array.prototype.foreach + forEach: createMethod$1(0), + // `Array.prototype.map` method + // https://tc39.github.io/ecma262/#sec-array.prototype.map + map: createMethod$1(1), + // `Array.prototype.filter` method + // https://tc39.github.io/ecma262/#sec-array.prototype.filter + filter: createMethod$1(2), + // `Array.prototype.some` method + // https://tc39.github.io/ecma262/#sec-array.prototype.some + some: createMethod$1(3), + // `Array.prototype.every` method + // https://tc39.github.io/ecma262/#sec-array.prototype.every + every: createMethod$1(4), + // `Array.prototype.find` method + // https://tc39.github.io/ecma262/#sec-array.prototype.find + find: createMethod$1(5), + // `Array.prototype.findIndex` method + // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex + findIndex: createMethod$1(6) +}; + +var sloppyArrayMethod = function (METHOD_NAME, argument) { + var method = [][METHOD_NAME]; + return !method || !fails(function () { + // eslint-disable-next-line no-useless-call,no-throw-literal + method.call(null, argument || function () { + throw 1; + }, 1); + }); +}; + +var $forEach = arrayIteration.forEach; // `Array.prototype.forEach` method implementation +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach + +var arrayForEach = sloppyArrayMethod('forEach') ? function forEach(callbackfn +/* , thisArg */ +) { + return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); +} : [].forEach; + +// https://tc39.github.io/ecma262/#sec-array.prototype.foreach + + +_export({ + target: 'Array', + proto: true, + forced: [].forEach != arrayForEach +}, { + forEach: arrayForEach +}); + +var entryVirtual = function (CONSTRUCTOR) { + return path[CONSTRUCTOR + 'Prototype']; +}; + +var forEach$1 = entryVirtual('Array').forEach; + +var forEach$2 = forEach$1; + +var ArrayPrototype = Array.prototype; +var DOMIterables = { + DOMTokenList: true, + NodeList: true +}; + +var forEach_1 = function (it) { + var own = it.forEach; + return it === ArrayPrototype || it instanceof Array && own === ArrayPrototype.forEach // eslint-disable-next-line no-prototype-builtins + || DOMIterables.hasOwnProperty(classof(it)) ? forEach$2 : own; +}; + +var forEach$3 = forEach_1; + +var SPECIES$1 = wellKnownSymbol('species'); + +var arrayMethodHasSpeciesSupport = function (METHOD_NAME) { + return !fails(function () { + var array = []; + var constructor = array.constructor = {}; + + constructor[SPECIES$1] = function () { + return { + foo: 1 + }; + }; + + return array[METHOD_NAME](Boolean).foo !== 1; + }); +}; + +var $filter = arrayIteration.filter; // `Array.prototype.filter` method +// https://tc39.github.io/ecma262/#sec-array.prototype.filter +// with adding support of @@species + +_export({ + target: 'Array', + proto: true, + forced: !arrayMethodHasSpeciesSupport('filter') +}, { + filter: function filter(callbackfn + /* , thisArg */ + ) { + return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var filter = entryVirtual('Array').filter; + +var ArrayPrototype$1 = Array.prototype; + +var filter_1 = function (it) { + var own = it.filter; + return it === ArrayPrototype$1 || it instanceof Array && own === ArrayPrototype$1.filter ? filter : own; +}; + +var filter$1 = filter_1; + +var filter$2 = filter$1; + +var userAgent = getBuiltIn('navigator', 'userAgent') || ''; + +var slice = [].slice; +var MSIE = /MSIE .\./.test(userAgent); // <- dirty ie9- check + +var wrap = function (scheduler) { + return function (handler, timeout + /* , ...arguments */ + ) { + var boundArgs = arguments.length > 2; + var args = boundArgs ? slice.call(arguments, 2) : undefined; + return scheduler(boundArgs ? function () { + // eslint-disable-next-line no-new-func + (typeof handler == 'function' ? handler : Function(handler)).apply(this, args); + } : handler, timeout); + }; +}; // ie9- setTimeout & setInterval additional parameters fix +// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers + + +_export({ + global: true, + bind: true, + forced: MSIE +}, { + // `setTimeout` method + // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout + setTimeout: wrap(global_1.setTimeout), + // `setInterval` method + // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval + setInterval: wrap(global_1.setInterval) +}); + +var setTimeout$1 = path.setTimeout; + +var setTimeout$2 = setTimeout$1; + +var slice$1 = [].slice; +var factories = {}; + +var construct = function (C, argsLength, args) { + if (!(argsLength in factories)) { + for (var list = [], i = 0; i < argsLength; i++) list[i] = 'a[' + i + ']'; // eslint-disable-next-line no-new-func + + + factories[argsLength] = Function('C,a', 'return new C(' + list.join(',') + ')'); + } + + return factories[argsLength](C, args); +}; // `Function.prototype.bind` method implementation +// https://tc39.github.io/ecma262/#sec-function.prototype.bind + + +var functionBind = Function.bind || function bind(that +/* , ...args */ +) { + var fn = aFunction(this); + var partArgs = slice$1.call(arguments, 1); + + var boundFunction = function bound() + /* args... */ + { + var args = partArgs.concat(slice$1.call(arguments)); + return this instanceof boundFunction ? construct(fn, args.length, args) : fn.apply(that, args); + }; + + if (isObject$1(fn.prototype)) boundFunction.prototype = fn.prototype; + return boundFunction; +}; + +// https://tc39.github.io/ecma262/#sec-function.prototype.bind + +_export({ + target: 'Function', + proto: true +}, { + bind: functionBind +}); + +var bind = entryVirtual('Function').bind; + +var FunctionPrototype = Function.prototype; + +var bind_1 = function (it) { + var own = it.bind; + return it === FunctionPrototype || it instanceof Function && own === FunctionPrototype.bind ? bind : own; +}; + +var bind$1 = bind_1; + +var bind$2 = bind$1; + +// https://tc39.github.io/ecma262/#sec-array.isarray + +_export({ + target: 'Array', + stat: true +}, { + isArray: isArray +}); + +var isArray$1 = path.Array.isArray; + +var isArray$2 = isArray$1; + +var isArray$3 = isArray$2; + +function _classCallCheck$1(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError("Cannot call a class as a function"); + } +} + +var classCallCheck$1 = _classCallCheck$1; + +// https://tc39.github.io/ecma262/#sec-object.defineproperty + +_export({ + target: 'Object', + stat: true, + forced: !descriptors, + sham: !descriptors +}, { + defineProperty: objectDefineProperty.f +}); + +var defineProperty_1 = createCommonjsModule$2(function (module) { + var Object = path.Object; + + var defineProperty = module.exports = function defineProperty(it, key, desc) { + return Object.defineProperty(it, key, desc); + }; + + if (Object.defineProperty.sham) defineProperty.sham = true; +}); + +var defineProperty$3 = defineProperty_1; + +var defineProperty$4 = defineProperty$3; + +function _defineProperties$1(target, props) { + for (var i = 0; i < props.length; i++) { + var descriptor = props[i]; + descriptor.enumerable = descriptor.enumerable || false; + descriptor.configurable = true; + if ("value" in descriptor) descriptor.writable = true; + + defineProperty$4(target, descriptor.key, descriptor); + } +} + +function _createClass$1(Constructor, protoProps, staticProps) { + if (protoProps) _defineProperties$1(Constructor.prototype, protoProps); + if (staticProps) _defineProperties$1(Constructor, staticProps); + return Constructor; +} + +var createClass$1 = _createClass$1; + +var f$3 = wellKnownSymbol; +var wrappedWellKnownSymbol = { + f: f$3 +}; + +var defineProperty$5 = objectDefineProperty.f; + +var defineWellKnownSymbol = function (NAME) { + var Symbol = path.Symbol || (path.Symbol = {}); + if (!has(Symbol, NAME)) defineProperty$5(Symbol, NAME, { + value: wrappedWellKnownSymbol.f(NAME) + }); +}; + +// https://tc39.github.io/ecma262/#sec-symbol.iterator + +defineWellKnownSymbol('iterator'); + +var createMethod$2 = function (CONVERT_TO_STRING) { + return function ($this, pos) { + var S = String(requireObjectCoercible($this)); + var position = toInteger(pos); + var size = S.length; + var first, second; + if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined; + first = S.charCodeAt(position); + return first < 0xD800 || first > 0xDBFF || position + 1 === size || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF ? CONVERT_TO_STRING ? S.charAt(position) : first : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000; + }; +}; + +var stringMultibyte = { + // `String.prototype.codePointAt` method + // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat + codeAt: createMethod$2(false), + // `String.prototype.at` method + // https://github.com/mathiasbynens/String.prototype.at + charAt: createMethod$2(true) +}; + +var charAt = stringMultibyte.charAt; +var STRING_ITERATOR = 'String Iterator'; +var setInternalState$1 = internalState.set; +var getInternalState$1 = internalState.getterFor(STRING_ITERATOR); // `String.prototype[@@iterator]` method +// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator + +defineIterator(String, 'String', function (iterated) { + setInternalState$1(this, { + type: STRING_ITERATOR, + string: String(iterated), + index: 0 + }); // `%StringIteratorPrototype%.next` method + // https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next +}, function next() { + var state = getInternalState$1(this); + var string = state.string; + var index = state.index; + var point; + if (index >= string.length) return { + value: undefined, + done: true + }; + point = charAt(string, index); + state.index += point.length; + return { + value: point, + done: false + }; +}); + +var iterator = wrappedWellKnownSymbol.f('iterator'); + +var iterator$1 = iterator; + +var iterator$2 = iterator$1; + +var createProperty = function (object, key, value) { + var propertyKey = toPrimitive(key); + if (propertyKey in object) objectDefineProperty.f(object, propertyKey, createPropertyDescriptor(0, value));else object[propertyKey] = value; +}; + +var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable'); +var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; +var MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded'; +var IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () { + var array = []; + array[IS_CONCAT_SPREADABLE] = false; + return array.concat()[0] !== array; +}); +var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat'); + +var isConcatSpreadable = function (O) { + if (!isObject$1(O)) return false; + var spreadable = O[IS_CONCAT_SPREADABLE]; + return spreadable !== undefined ? !!spreadable : isArray(O); +}; + +var FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT; // `Array.prototype.concat` method +// https://tc39.github.io/ecma262/#sec-array.prototype.concat +// with adding support of @@isConcatSpreadable and @@species + +_export({ + target: 'Array', + proto: true, + forced: FORCED +}, { + concat: function concat(arg) { + // eslint-disable-line no-unused-vars + var O = toObject(this); + var A = arraySpeciesCreate(O, 0); + var n = 0; + var i, k, length, len, E; + + for (i = -1, length = arguments.length; i < length; i++) { + E = i === -1 ? O : arguments[i]; + + if (isConcatSpreadable(E)) { + len = toLength(E.length); + if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + + for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]); + } else { + if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED); + createProperty(A, n++, E); + } + } + + A.length = n; + return A; + } +}); + +var hiddenKeys$1 = enumBugKeys.concat('length', 'prototype'); // `Object.getOwnPropertyNames` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertynames + +var f$4 = Object.getOwnPropertyNames || function getOwnPropertyNames(O) { + return objectKeysInternal(O, hiddenKeys$1); +}; + +var objectGetOwnPropertyNames = { + f: f$4 +}; + +var nativeGetOwnPropertyNames = objectGetOwnPropertyNames.f; +var toString$1 = {}.toString; +var windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : []; + +var getWindowNames = function (it) { + try { + return nativeGetOwnPropertyNames(it); + } catch (error) { + return windowNames.slice(); + } +}; // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window + + +var f$5 = function getOwnPropertyNames(it) { + return windowNames && toString$1.call(it) == '[object Window]' ? getWindowNames(it) : nativeGetOwnPropertyNames(toIndexedObject(it)); +}; + +var objectGetOwnPropertyNamesExternal = { + f: f$5 +}; + +var f$6 = Object.getOwnPropertySymbols; +var objectGetOwnPropertySymbols = { + f: f$6 +}; + +var $forEach$1 = arrayIteration.forEach; +var HIDDEN = sharedKey('hidden'); +var SYMBOL = 'Symbol'; +var PROTOTYPE$1 = 'prototype'; +var TO_PRIMITIVE = wellKnownSymbol('toPrimitive'); +var setInternalState$2 = internalState.set; +var getInternalState$2 = internalState.getterFor(SYMBOL); +var ObjectPrototype$1 = Object[PROTOTYPE$1]; +var $Symbol = global_1.Symbol; +var JSON$1 = global_1.JSON; +var nativeJSONStringify = JSON$1 && JSON$1.stringify; +var nativeGetOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f; +var nativeDefineProperty$1 = objectDefineProperty.f; +var nativeGetOwnPropertyNames$1 = objectGetOwnPropertyNamesExternal.f; +var nativePropertyIsEnumerable$1 = objectPropertyIsEnumerable.f; +var AllSymbols = shared('symbols'); +var ObjectPrototypeSymbols = shared('op-symbols'); +var StringToSymbolRegistry = shared('string-to-symbol-registry'); +var SymbolToStringRegistry = shared('symbol-to-string-registry'); +var WellKnownSymbolsStore = shared('wks'); +var QObject = global_1.QObject; // Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173 + +var USE_SETTER = !QObject || !QObject[PROTOTYPE$1] || !QObject[PROTOTYPE$1].findChild; // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687 + +var setSymbolDescriptor = descriptors && fails(function () { + return objectCreate(nativeDefineProperty$1({}, 'a', { + get: function () { + return nativeDefineProperty$1(this, 'a', { + value: 7 + }).a; + } + })).a != 7; +}) ? function (O, P, Attributes) { + var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor$1(ObjectPrototype$1, P); + if (ObjectPrototypeDescriptor) delete ObjectPrototype$1[P]; + nativeDefineProperty$1(O, P, Attributes); + + if (ObjectPrototypeDescriptor && O !== ObjectPrototype$1) { + nativeDefineProperty$1(ObjectPrototype$1, P, ObjectPrototypeDescriptor); + } +} : nativeDefineProperty$1; + +var wrap$1 = function (tag, description) { + var symbol = AllSymbols[tag] = objectCreate($Symbol[PROTOTYPE$1]); + setInternalState$2(symbol, { + type: SYMBOL, + tag: tag, + description: description + }); + if (!descriptors) symbol.description = description; + return symbol; +}; + +var isSymbol = nativeSymbol && typeof $Symbol.iterator == 'symbol' ? function (it) { + return typeof it == 'symbol'; +} : function (it) { + return Object(it) instanceof $Symbol; +}; + +var $defineProperty = function defineProperty(O, P, Attributes) { + if (O === ObjectPrototype$1) $defineProperty(ObjectPrototypeSymbols, P, Attributes); + anObject(O); + var key = toPrimitive(P, true); + anObject(Attributes); + + if (has(AllSymbols, key)) { + if (!Attributes.enumerable) { + if (!has(O, HIDDEN)) nativeDefineProperty$1(O, HIDDEN, createPropertyDescriptor(1, {})); + O[HIDDEN][key] = true; + } else { + if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false; + Attributes = objectCreate(Attributes, { + enumerable: createPropertyDescriptor(0, false) + }); + } + + return setSymbolDescriptor(O, key, Attributes); + } + + return nativeDefineProperty$1(O, key, Attributes); +}; + +var $defineProperties = function defineProperties(O, Properties) { + anObject(O); + var properties = toIndexedObject(Properties); + var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties)); + $forEach$1(keys, function (key) { + if (!descriptors || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]); + }); + return O; +}; + +var $create = function create(O, Properties) { + return Properties === undefined ? objectCreate(O) : $defineProperties(objectCreate(O), Properties); +}; + +var $propertyIsEnumerable = function propertyIsEnumerable(V) { + var P = toPrimitive(V, true); + var enumerable = nativePropertyIsEnumerable$1.call(this, P); + if (this === ObjectPrototype$1 && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false; + return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true; +}; + +var $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) { + var it = toIndexedObject(O); + var key = toPrimitive(P, true); + if (it === ObjectPrototype$1 && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return; + var descriptor = nativeGetOwnPropertyDescriptor$1(it, key); + + if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) { + descriptor.enumerable = true; + } + + return descriptor; +}; + +var $getOwnPropertyNames = function getOwnPropertyNames(O) { + var names = nativeGetOwnPropertyNames$1(toIndexedObject(O)); + var result = []; + $forEach$1(names, function (key) { + if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key); + }); + return result; +}; + +var $getOwnPropertySymbols = function getOwnPropertySymbols(O) { + var IS_OBJECT_PROTOTYPE = O === ObjectPrototype$1; + var names = nativeGetOwnPropertyNames$1(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O)); + var result = []; + $forEach$1(names, function (key) { + if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype$1, key))) { + result.push(AllSymbols[key]); + } + }); + return result; +}; // `Symbol` constructor +// https://tc39.github.io/ecma262/#sec-symbol-constructor + + +if (!nativeSymbol) { + $Symbol = function Symbol() { + if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor'); + var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]); + var tag = uid(description); + + var setter = function (value) { + if (this === ObjectPrototype$1) setter.call(ObjectPrototypeSymbols, value); + if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false; + setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value)); + }; + + if (descriptors && USE_SETTER) setSymbolDescriptor(ObjectPrototype$1, tag, { + configurable: true, + set: setter + }); + return wrap$1(tag, description); + }; + + redefine($Symbol[PROTOTYPE$1], 'toString', function toString() { + return getInternalState$2(this).tag; + }); + objectPropertyIsEnumerable.f = $propertyIsEnumerable; + objectDefineProperty.f = $defineProperty; + objectGetOwnPropertyDescriptor.f = $getOwnPropertyDescriptor; + objectGetOwnPropertyNames.f = objectGetOwnPropertyNamesExternal.f = $getOwnPropertyNames; + objectGetOwnPropertySymbols.f = $getOwnPropertySymbols; + + if (descriptors) { + // https://github.com/tc39/proposal-Symbol-description + nativeDefineProperty$1($Symbol[PROTOTYPE$1], 'description', { + configurable: true, + get: function description() { + return getInternalState$2(this).description; + } + }); + } + + wrappedWellKnownSymbol.f = function (name) { + return wrap$1(wellKnownSymbol(name), name); + }; +} + +_export({ + global: true, + wrap: true, + forced: !nativeSymbol, + sham: !nativeSymbol +}, { + Symbol: $Symbol +}); +$forEach$1(objectKeys(WellKnownSymbolsStore), function (name) { + defineWellKnownSymbol(name); +}); +_export({ + target: SYMBOL, + stat: true, + forced: !nativeSymbol +}, { + // `Symbol.for` method + // https://tc39.github.io/ecma262/#sec-symbol.for + 'for': function (key) { + var string = String(key); + if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string]; + var symbol = $Symbol(string); + StringToSymbolRegistry[string] = symbol; + SymbolToStringRegistry[symbol] = string; + return symbol; + }, + // `Symbol.keyFor` method + // https://tc39.github.io/ecma262/#sec-symbol.keyfor + keyFor: function keyFor(sym) { + if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol'); + if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym]; + }, + useSetter: function () { + USE_SETTER = true; + }, + useSimple: function () { + USE_SETTER = false; + } +}); +_export({ + target: 'Object', + stat: true, + forced: !nativeSymbol, + sham: !descriptors +}, { + // `Object.create` method + // https://tc39.github.io/ecma262/#sec-object.create + create: $create, + // `Object.defineProperty` method + // https://tc39.github.io/ecma262/#sec-object.defineproperty + defineProperty: $defineProperty, + // `Object.defineProperties` method + // https://tc39.github.io/ecma262/#sec-object.defineproperties + defineProperties: $defineProperties, + // `Object.getOwnPropertyDescriptor` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors + getOwnPropertyDescriptor: $getOwnPropertyDescriptor +}); +_export({ + target: 'Object', + stat: true, + forced: !nativeSymbol +}, { + // `Object.getOwnPropertyNames` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertynames + getOwnPropertyNames: $getOwnPropertyNames, + // `Object.getOwnPropertySymbols` method + // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols + getOwnPropertySymbols: $getOwnPropertySymbols +}); // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives +// https://bugs.chromium.org/p/v8/issues/detail?id=3443 + +_export({ + target: 'Object', + stat: true, + forced: fails(function () { + objectGetOwnPropertySymbols.f(1); + }) +}, { + getOwnPropertySymbols: function getOwnPropertySymbols(it) { + return objectGetOwnPropertySymbols.f(toObject(it)); + } +}); // `JSON.stringify` method behavior with symbols +// https://tc39.github.io/ecma262/#sec-json.stringify + +JSON$1 && _export({ + target: 'JSON', + stat: true, + forced: !nativeSymbol || fails(function () { + var symbol = $Symbol(); // MS Edge converts symbol values to JSON as {} + + return nativeJSONStringify([symbol]) != '[null]' // WebKit converts symbol values to JSON as null + || nativeJSONStringify({ + a: symbol + }) != '{}' // V8 throws on boxed symbols + || nativeJSONStringify(Object(symbol)) != '{}'; + }) +}, { + stringify: function stringify(it) { + var args = [it]; + var index = 1; + var replacer, $replacer; + + while (arguments.length > index) args.push(arguments[index++]); + + $replacer = replacer = args[1]; + if (!isObject$1(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined + + if (!isArray(replacer)) replacer = function (key, value) { + if (typeof $replacer == 'function') value = $replacer.call(this, key, value); + if (!isSymbol(value)) return value; + }; + args[1] = replacer; + return nativeJSONStringify.apply(JSON$1, args); + } +}); // `Symbol.prototype[@@toPrimitive]` method +// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive + +if (!$Symbol[PROTOTYPE$1][TO_PRIMITIVE]) hide($Symbol[PROTOTYPE$1], TO_PRIMITIVE, $Symbol[PROTOTYPE$1].valueOf); // `Symbol.prototype[@@toStringTag]` property +// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag + +setToStringTag($Symbol, SYMBOL); +hiddenKeys[HIDDEN] = true; + +// https://tc39.github.io/ecma262/#sec-symbol.asynciterator + +defineWellKnownSymbol('asyncIterator'); + +// https://tc39.github.io/ecma262/#sec-symbol.hasinstance + +defineWellKnownSymbol('hasInstance'); + +// https://tc39.github.io/ecma262/#sec-symbol.isconcatspreadable + +defineWellKnownSymbol('isConcatSpreadable'); + +// https://tc39.github.io/ecma262/#sec-symbol.match + +defineWellKnownSymbol('match'); + +defineWellKnownSymbol('matchAll'); + +// https://tc39.github.io/ecma262/#sec-symbol.replace + +defineWellKnownSymbol('replace'); + +// https://tc39.github.io/ecma262/#sec-symbol.search + +defineWellKnownSymbol('search'); + +// https://tc39.github.io/ecma262/#sec-symbol.species + +defineWellKnownSymbol('species'); + +// https://tc39.github.io/ecma262/#sec-symbol.split + +defineWellKnownSymbol('split'); + +// https://tc39.github.io/ecma262/#sec-symbol.toprimitive + +defineWellKnownSymbol('toPrimitive'); + +// https://tc39.github.io/ecma262/#sec-symbol.tostringtag + +defineWellKnownSymbol('toStringTag'); + +// https://tc39.github.io/ecma262/#sec-symbol.unscopables + +defineWellKnownSymbol('unscopables'); + +// https://tc39.github.io/ecma262/#sec-math-@@tostringtag + +setToStringTag(Math, 'Math', true); + +// https://tc39.github.io/ecma262/#sec-json-@@tostringtag + +setToStringTag(global_1.JSON, 'JSON', true); + +var symbol = path.Symbol; + +// https://github.com/tc39/proposal-using-statement + +defineWellKnownSymbol('asyncDispose'); + +// https://github.com/tc39/proposal-using-statement + +defineWellKnownSymbol('dispose'); + +// https://github.com/tc39/proposal-observable + +defineWellKnownSymbol('observable'); + +// https://github.com/tc39/proposal-pattern-matching + +defineWellKnownSymbol('patternMatch'); + +// https://tc39.github.io/proposal-string-replaceall/ + +defineWellKnownSymbol('replaceAll'); + +var symbol$1 = symbol; + +var symbol$2 = symbol$1; + +var _typeof_1$2 = createCommonjsModule$2(function (module) { + function _typeof(obj) { + if (typeof symbol$2 === "function" && typeof iterator$2 === "symbol") { + module.exports = _typeof = function _typeof(obj) { + return typeof obj; + }; + } else { + module.exports = _typeof = function _typeof(obj) { + return obj && typeof symbol$2 === "function" && obj.constructor === symbol$2 && obj !== symbol$2.prototype ? "symbol" : typeof obj; + }; + } + + return _typeof(obj); + } + + module.exports = _typeof; +}); + +function _assertThisInitialized$1(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + } + + return self; +} + +var assertThisInitialized$1 = _assertThisInitialized$1; + +function _possibleConstructorReturn$1(self, call) { + if (call && (_typeof_1$2(call) === "object" || typeof call === "function")) { + return call; + } + + return assertThisInitialized$1(self); +} + +var possibleConstructorReturn$1 = _possibleConstructorReturn$1; + +var FAILS_ON_PRIMITIVES = fails(function () { + objectGetPrototypeOf(1); +}); // `Object.getPrototypeOf` method +// https://tc39.github.io/ecma262/#sec-object.getprototypeof + +_export({ + target: 'Object', + stat: true, + forced: FAILS_ON_PRIMITIVES, + sham: !correctPrototypeGetter +}, { + getPrototypeOf: function getPrototypeOf(it) { + return objectGetPrototypeOf(toObject(it)); + } +}); + +var getPrototypeOf$1 = path.Object.getPrototypeOf; + +var getPrototypeOf$2 = getPrototypeOf$1; + +var getPrototypeOf$3 = getPrototypeOf$2; + +// https://tc39.github.io/ecma262/#sec-object.setprototypeof + +_export({ + target: 'Object', + stat: true +}, { + setPrototypeOf: objectSetPrototypeOf +}); + +var setPrototypeOf$1 = path.Object.setPrototypeOf; + +var setPrototypeOf$2 = setPrototypeOf$1; + +var setPrototypeOf$3 = setPrototypeOf$2; + +var getPrototypeOf$4 = createCommonjsModule$2(function (module) { + function _getPrototypeOf(o) { + module.exports = _getPrototypeOf = setPrototypeOf$3 ? getPrototypeOf$3 : function _getPrototypeOf(o) { + return o.__proto__ || getPrototypeOf$3(o); + }; + return _getPrototypeOf(o); + } + + module.exports = _getPrototypeOf; +}); + +// https://tc39.github.io/ecma262/#sec-object.create + +_export({ + target: 'Object', + stat: true, + sham: !descriptors +}, { + create: objectCreate +}); + +var Object$1 = path.Object; + +var create = function create(P, D) { + return Object$1.create(P, D); +}; + +var create$1 = create; + +var create$2 = create$1; + +var setPrototypeOf$4 = createCommonjsModule$2(function (module) { + function _setPrototypeOf(o, p) { + module.exports = _setPrototypeOf = setPrototypeOf$3 || function _setPrototypeOf(o, p) { + o.__proto__ = p; + return o; + }; + + return _setPrototypeOf(o, p); + } + + module.exports = _setPrototypeOf; +}); + +function _inherits$1(subClass, superClass) { + if (typeof superClass !== "function" && superClass !== null) { + throw new TypeError("Super expression must either be null or a function"); + } + + subClass.prototype = create$2(superClass && superClass.prototype, { + constructor: { + value: subClass, + writable: true, + configurable: true + } + }); + if (superClass) setPrototypeOf$4(subClass, superClass); +} + +var inherits$1 = _inherits$1; + +var moment$2 = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + module.exports = factory() ; + })(commonjsGlobal$2, function () { + + var hookCallback; + + function hooks() { + return hookCallback.apply(null, arguments); + } // This is done to register the method called with moment() + // without creating circular dependencies. + + + function setHookCallback(callback) { + hookCallback = callback; + } + + function isArray(input) { + return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]'; + } + + function isObject(input) { + // IE8 will treat undefined and null as object if it wasn't for + // input != null + return input != null && Object.prototype.toString.call(input) === '[object Object]'; + } + + function isObjectEmpty(obj) { + if (Object.getOwnPropertyNames) { + return Object.getOwnPropertyNames(obj).length === 0; + } else { + var k; + + for (k in obj) { + if (obj.hasOwnProperty(k)) { + return false; + } + } + + return true; + } + } + + function isUndefined(input) { + return input === void 0; + } + + function isNumber(input) { + return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]'; + } + + function isDate(input) { + return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]'; + } + + function map(arr, fn) { + var res = [], + i; + + for (i = 0; i < arr.length; ++i) { + res.push(fn(arr[i], i)); + } + + return res; + } + + function hasOwnProp(a, b) { + return Object.prototype.hasOwnProperty.call(a, b); + } + + function extend(a, b) { + for (var i in b) { + if (hasOwnProp(b, i)) { + a[i] = b[i]; + } + } + + if (hasOwnProp(b, 'toString')) { + a.toString = b.toString; + } + + if (hasOwnProp(b, 'valueOf')) { + a.valueOf = b.valueOf; + } + + return a; + } + + function createUTC(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, true).utc(); + } + + function defaultParsingFlags() { + // We need to deep clone this object. + return { + empty: false, + unusedTokens: [], + unusedInput: [], + overflow: -2, + charsLeftOver: 0, + nullInput: false, + invalidMonth: null, + invalidFormat: false, + userInvalidated: false, + iso: false, + parsedDateParts: [], + meridiem: null, + rfc2822: false, + weekdayMismatch: false + }; + } + + function getParsingFlags(m) { + if (m._pf == null) { + m._pf = defaultParsingFlags(); + } + + return m._pf; + } + + var some; + + if (Array.prototype.some) { + some = Array.prototype.some; + } else { + some = function (fun) { + var t = Object(this); + var len = t.length >>> 0; + + for (var i = 0; i < len; i++) { + if (i in t && fun.call(this, t[i], i, t)) { + return true; + } + } + + return false; + }; + } + + function isValid(m) { + if (m._isValid == null) { + var flags = getParsingFlags(m); + var parsedParts = some.call(flags.parsedDateParts, function (i) { + return i != null; + }); + var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts); + + if (m._strict) { + isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined; + } + + if (Object.isFrozen == null || !Object.isFrozen(m)) { + m._isValid = isNowValid; + } else { + return isNowValid; + } + } + + return m._isValid; + } + + function createInvalid(flags) { + var m = createUTC(NaN); + + if (flags != null) { + extend(getParsingFlags(m), flags); + } else { + getParsingFlags(m).userInvalidated = true; + } + + return m; + } // Plugins that add properties should also add the key here (null value), + // so we can properly clone ourselves. + + + var momentProperties = hooks.momentProperties = []; + + function copyConfig(to, from) { + var i, prop, val; + + if (!isUndefined(from._isAMomentObject)) { + to._isAMomentObject = from._isAMomentObject; + } + + if (!isUndefined(from._i)) { + to._i = from._i; + } + + if (!isUndefined(from._f)) { + to._f = from._f; + } + + if (!isUndefined(from._l)) { + to._l = from._l; + } + + if (!isUndefined(from._strict)) { + to._strict = from._strict; + } + + if (!isUndefined(from._tzm)) { + to._tzm = from._tzm; + } + + if (!isUndefined(from._isUTC)) { + to._isUTC = from._isUTC; + } + + if (!isUndefined(from._offset)) { + to._offset = from._offset; + } + + if (!isUndefined(from._pf)) { + to._pf = getParsingFlags(from); + } + + if (!isUndefined(from._locale)) { + to._locale = from._locale; + } + + if (momentProperties.length > 0) { + for (i = 0; i < momentProperties.length; i++) { + prop = momentProperties[i]; + val = from[prop]; + + if (!isUndefined(val)) { + to[prop] = val; + } + } + } + + return to; + } + + var updateInProgress = false; // Moment prototype object + + function Moment(config) { + copyConfig(this, config); + this._d = new Date(config._d != null ? config._d.getTime() : NaN); + + if (!this.isValid()) { + this._d = new Date(NaN); + } // Prevent infinite loop in case updateOffset creates new moment + // objects. + + + if (updateInProgress === false) { + updateInProgress = true; + hooks.updateOffset(this); + updateInProgress = false; + } + } + + function isMoment(obj) { + return obj instanceof Moment || obj != null && obj._isAMomentObject != null; + } + + function absFloor(number) { + if (number < 0) { + // -0 -> 0 + return Math.ceil(number) || 0; + } else { + return Math.floor(number); + } + } + + function toInt(argumentForCoercion) { + var coercedNumber = +argumentForCoercion, + value = 0; + + if (coercedNumber !== 0 && isFinite(coercedNumber)) { + value = absFloor(coercedNumber); + } + + return value; + } // compare two arrays, return the number of differences + + + function compareArrays(array1, array2, dontConvert) { + var len = Math.min(array1.length, array2.length), + lengthDiff = Math.abs(array1.length - array2.length), + diffs = 0, + i; + + for (i = 0; i < len; i++) { + if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) { + diffs++; + } + } + + return diffs + lengthDiff; + } + + function warn(msg) { + if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) { + console.warn('Deprecation warning: ' + msg); + } + } + + function deprecate(msg, fn) { + var firstTime = true; + return extend(function () { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(null, msg); + } + + if (firstTime) { + var args = []; + var arg; + + for (var i = 0; i < arguments.length; i++) { + arg = ''; + + if (typeof arguments[i] === 'object') { + arg += '\n[' + i + '] '; + + for (var key in arguments[0]) { + arg += key + ': ' + arguments[0][key] + ', '; + } + + arg = arg.slice(0, -2); // Remove trailing comma and space + } else { + arg = arguments[i]; + } + + args.push(arg); + } + + warn(msg + '\nArguments: ' + Array.prototype.slice.call(args).join('') + '\n' + new Error().stack); + firstTime = false; + } + + return fn.apply(this, arguments); + }, fn); + } + + var deprecations = {}; + + function deprecateSimple(name, msg) { + if (hooks.deprecationHandler != null) { + hooks.deprecationHandler(name, msg); + } + + if (!deprecations[name]) { + warn(msg); + deprecations[name] = true; + } + } + + hooks.suppressDeprecationWarnings = false; + hooks.deprecationHandler = null; + + function isFunction(input) { + return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]'; + } + + function set(config) { + var prop, i; + + for (i in config) { + prop = config[i]; + + if (isFunction(prop)) { + this[i] = prop; + } else { + this['_' + i] = prop; + } + } + + this._config = config; // Lenient ordinal parsing accepts just a number in addition to + // number + (possibly) stuff coming from _dayOfMonthOrdinalParse. + // TODO: Remove "ordinalParse" fallback in next major release. + + this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\d{1,2}/.source); + } + + function mergeConfigs(parentConfig, childConfig) { + var res = extend({}, parentConfig), + prop; + + for (prop in childConfig) { + if (hasOwnProp(childConfig, prop)) { + if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) { + res[prop] = {}; + extend(res[prop], parentConfig[prop]); + extend(res[prop], childConfig[prop]); + } else if (childConfig[prop] != null) { + res[prop] = childConfig[prop]; + } else { + delete res[prop]; + } + } + } + + for (prop in parentConfig) { + if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) { + // make sure changes to properties don't modify parent config + res[prop] = extend({}, res[prop]); + } + } + + return res; + } + + function Locale(config) { + if (config != null) { + this.set(config); + } + } + + var keys; + + if (Object.keys) { + keys = Object.keys; + } else { + keys = function (obj) { + var i, + res = []; + + for (i in obj) { + if (hasOwnProp(obj, i)) { + res.push(i); + } + } + + return res; + }; + } + + var defaultCalendar = { + sameDay: '[Today at] LT', + nextDay: '[Tomorrow at] LT', + nextWeek: 'dddd [at] LT', + lastDay: '[Yesterday at] LT', + lastWeek: '[Last] dddd [at] LT', + sameElse: 'L' + }; + + function calendar(key, mom, now) { + var output = this._calendar[key] || this._calendar['sameElse']; + return isFunction(output) ? output.call(mom, now) : output; + } + + var defaultLongDateFormat = { + LTS: 'h:mm:ss A', + LT: 'h:mm A', + L: 'MM/DD/YYYY', + LL: 'MMMM D, YYYY', + LLL: 'MMMM D, YYYY h:mm A', + LLLL: 'dddd, MMMM D, YYYY h:mm A' + }; + + function longDateFormat(key) { + var format = this._longDateFormat[key], + formatUpper = this._longDateFormat[key.toUpperCase()]; + + if (format || !formatUpper) { + return format; + } + + this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) { + return val.slice(1); + }); + return this._longDateFormat[key]; + } + + var defaultInvalidDate = 'Invalid date'; + + function invalidDate() { + return this._invalidDate; + } + + var defaultOrdinal = '%d'; + var defaultDayOfMonthOrdinalParse = /\d{1,2}/; + + function ordinal(number) { + return this._ordinal.replace('%d', number); + } + + var defaultRelativeTime = { + future: 'in %s', + past: '%s ago', + s: 'a few seconds', + ss: '%d seconds', + m: 'a minute', + mm: '%d minutes', + h: 'an hour', + hh: '%d hours', + d: 'a day', + dd: '%d days', + M: 'a month', + MM: '%d months', + y: 'a year', + yy: '%d years' + }; + + function relativeTime(number, withoutSuffix, string, isFuture) { + var output = this._relativeTime[string]; + return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number); + } + + function pastFuture(diff, output) { + var format = this._relativeTime[diff > 0 ? 'future' : 'past']; + return isFunction(format) ? format(output) : format.replace(/%s/i, output); + } + + var aliases = {}; + + function addUnitAlias(unit, shorthand) { + var lowerCase = unit.toLowerCase(); + aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit; + } + + function normalizeUnits(units) { + return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined; + } + + function normalizeObjectUnits(inputObject) { + var normalizedInput = {}, + normalizedProp, + prop; + + for (prop in inputObject) { + if (hasOwnProp(inputObject, prop)) { + normalizedProp = normalizeUnits(prop); + + if (normalizedProp) { + normalizedInput[normalizedProp] = inputObject[prop]; + } + } + } + + return normalizedInput; + } + + var priorities = {}; + + function addUnitPriority(unit, priority) { + priorities[unit] = priority; + } + + function getPrioritizedUnits(unitsObj) { + var units = []; + + for (var u in unitsObj) { + units.push({ + unit: u, + priority: priorities[u] + }); + } + + units.sort(function (a, b) { + return a.priority - b.priority; + }); + return units; + } + + function zeroFill(number, targetLength, forceSign) { + var absNumber = '' + Math.abs(number), + zerosToFill = targetLength - absNumber.length, + sign = number >= 0; + return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber; + } + + var formattingTokens = /(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g; + var localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g; + var formatFunctions = {}; + var formatTokenFunctions = {}; // token: 'M' + // padded: ['MM', 2] + // ordinal: 'Mo' + // callback: function () { this.month() + 1 } + + function addFormatToken(token, padded, ordinal, callback) { + var func = callback; + + if (typeof callback === 'string') { + func = function () { + return this[callback](); + }; + } + + if (token) { + formatTokenFunctions[token] = func; + } + + if (padded) { + formatTokenFunctions[padded[0]] = function () { + return zeroFill(func.apply(this, arguments), padded[1], padded[2]); + }; + } + + if (ordinal) { + formatTokenFunctions[ordinal] = function () { + return this.localeData().ordinal(func.apply(this, arguments), token); + }; + } + } + + function removeFormattingTokens(input) { + if (input.match(/\[[\s\S]/)) { + return input.replace(/^\[|\]$/g, ''); + } + + return input.replace(/\\/g, ''); + } + + function makeFormatFunction(format) { + var array = format.match(formattingTokens), + i, + length; + + for (i = 0, length = array.length; i < length; i++) { + if (formatTokenFunctions[array[i]]) { + array[i] = formatTokenFunctions[array[i]]; + } else { + array[i] = removeFormattingTokens(array[i]); + } + } + + return function (mom) { + var output = '', + i; + + for (i = 0; i < length; i++) { + output += isFunction(array[i]) ? array[i].call(mom, format) : array[i]; + } + + return output; + }; + } // format date using native date object + + + function formatMoment(m, format) { + if (!m.isValid()) { + return m.localeData().invalidDate(); + } + + format = expandFormat(format, m.localeData()); + formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format); + return formatFunctions[format](m); + } + + function expandFormat(format, locale) { + var i = 5; + + function replaceLongDateFormatTokens(input) { + return locale.longDateFormat(input) || input; + } + + localFormattingTokens.lastIndex = 0; + + while (i >= 0 && localFormattingTokens.test(format)) { + format = format.replace(localFormattingTokens, replaceLongDateFormatTokens); + localFormattingTokens.lastIndex = 0; + i -= 1; + } + + return format; + } + + var match1 = /\d/; // 0 - 9 + + var match2 = /\d\d/; // 00 - 99 + + var match3 = /\d{3}/; // 000 - 999 + + var match4 = /\d{4}/; // 0000 - 9999 + + var match6 = /[+-]?\d{6}/; // -999999 - 999999 + + var match1to2 = /\d\d?/; // 0 - 99 + + var match3to4 = /\d\d\d\d?/; // 999 - 9999 + + var match5to6 = /\d\d\d\d\d\d?/; // 99999 - 999999 + + var match1to3 = /\d{1,3}/; // 0 - 999 + + var match1to4 = /\d{1,4}/; // 0 - 9999 + + var match1to6 = /[+-]?\d{1,6}/; // -999999 - 999999 + + var matchUnsigned = /\d+/; // 0 - inf + + var matchSigned = /[+-]?\d+/; // -inf - inf + + var matchOffset = /Z|[+-]\d\d:?\d\d/gi; // +00:00 -00:00 +0000 -0000 or Z + + var matchShortOffset = /Z|[+-]\d\d(?::?\d\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z + + var matchTimestamp = /[+-]?\d+(\.\d{1,3})?/; // 123456789 123456789.123 + // any word (or two) characters or numbers including two/three word month in arabic. + // includes scottish gaelic two word and hyphenated months + + var matchWord = /[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i; + var regexes = {}; + + function addRegexToken(token, regex, strictRegex) { + regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) { + return isStrict && strictRegex ? strictRegex : regex; + }; + } + + function getParseRegexForToken(token, config) { + if (!hasOwnProp(regexes, token)) { + return new RegExp(unescapeFormat(token)); + } + + return regexes[token](config._strict, config._locale); + } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript + + + function unescapeFormat(s) { + return regexEscape(s.replace('\\', '').replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g, function (matched, p1, p2, p3, p4) { + return p1 || p2 || p3 || p4; + })); + } + + function regexEscape(s) { + return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'); + } + + var tokens = {}; + + function addParseToken(token, callback) { + var i, + func = callback; + + if (typeof token === 'string') { + token = [token]; + } + + if (isNumber(callback)) { + func = function (input, array) { + array[callback] = toInt(input); + }; + } + + for (i = 0; i < token.length; i++) { + tokens[token[i]] = func; + } + } + + function addWeekParseToken(token, callback) { + addParseToken(token, function (input, array, config, token) { + config._w = config._w || {}; + callback(input, config._w, config, token); + }); + } + + function addTimeToArrayFromToken(token, input, config) { + if (input != null && hasOwnProp(tokens, token)) { + tokens[token](input, config._a, config, token); + } + } + + var YEAR = 0; + var MONTH = 1; + var DATE = 2; + var HOUR = 3; + var MINUTE = 4; + var SECOND = 5; + var MILLISECOND = 6; + var WEEK = 7; + var WEEKDAY = 8; // FORMATTING + + addFormatToken('Y', 0, 0, function () { + var y = this.year(); + return y <= 9999 ? '' + y : '+' + y; + }); + addFormatToken(0, ['YY', 2], 0, function () { + return this.year() % 100; + }); + addFormatToken(0, ['YYYY', 4], 0, 'year'); + addFormatToken(0, ['YYYYY', 5], 0, 'year'); + addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES + + addUnitAlias('year', 'y'); // PRIORITIES + + addUnitPriority('year', 1); // PARSING + + addRegexToken('Y', matchSigned); + addRegexToken('YY', match1to2, match2); + addRegexToken('YYYY', match1to4, match4); + addRegexToken('YYYYY', match1to6, match6); + addRegexToken('YYYYYY', match1to6, match6); + addParseToken(['YYYYY', 'YYYYYY'], YEAR); + addParseToken('YYYY', function (input, array) { + array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input); + }); + addParseToken('YY', function (input, array) { + array[YEAR] = hooks.parseTwoDigitYear(input); + }); + addParseToken('Y', function (input, array) { + array[YEAR] = parseInt(input, 10); + }); // HELPERS + + function daysInYear(year) { + return isLeapYear(year) ? 366 : 365; + } + + function isLeapYear(year) { + return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0; + } // HOOKS + + + hooks.parseTwoDigitYear = function (input) { + return toInt(input) + (toInt(input) > 68 ? 1900 : 2000); + }; // MOMENTS + + + var getSetYear = makeGetSet('FullYear', true); + + function getIsLeapYear() { + return isLeapYear(this.year()); + } + + function makeGetSet(unit, keepTime) { + return function (value) { + if (value != null) { + set$1(this, unit, value); + hooks.updateOffset(this, keepTime); + return this; + } else { + return get(this, unit); + } + }; + } + + function get(mom, unit) { + return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN; + } + + function set$1(mom, unit, value) { + if (mom.isValid() && !isNaN(value)) { + if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month())); + } else { + mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value); + } + } + } // MOMENTS + + + function stringGet(units) { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](); + } + + return this; + } + + function stringSet(units, value) { + if (typeof units === 'object') { + units = normalizeObjectUnits(units); + var prioritized = getPrioritizedUnits(units); + + for (var i = 0; i < prioritized.length; i++) { + this[prioritized[i].unit](units[prioritized[i].unit]); + } + } else { + units = normalizeUnits(units); + + if (isFunction(this[units])) { + return this[units](value); + } + } + + return this; + } + + function mod(n, x) { + return (n % x + x) % x; + } + + var indexOf; + + if (Array.prototype.indexOf) { + indexOf = Array.prototype.indexOf; + } else { + indexOf = function (o) { + // I know + var i; + + for (i = 0; i < this.length; ++i) { + if (this[i] === o) { + return i; + } + } + + return -1; + }; + } + + function daysInMonth(year, month) { + if (isNaN(year) || isNaN(month)) { + return NaN; + } + + var modMonth = mod(month, 12); + year += (month - modMonth) / 12; + return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2; + } // FORMATTING + + + addFormatToken('M', ['MM', 2], 'Mo', function () { + return this.month() + 1; + }); + addFormatToken('MMM', 0, 0, function (format) { + return this.localeData().monthsShort(this, format); + }); + addFormatToken('MMMM', 0, 0, function (format) { + return this.localeData().months(this, format); + }); // ALIASES + + addUnitAlias('month', 'M'); // PRIORITY + + addUnitPriority('month', 8); // PARSING + + addRegexToken('M', match1to2); + addRegexToken('MM', match1to2, match2); + addRegexToken('MMM', function (isStrict, locale) { + return locale.monthsShortRegex(isStrict); + }); + addRegexToken('MMMM', function (isStrict, locale) { + return locale.monthsRegex(isStrict); + }); + addParseToken(['M', 'MM'], function (input, array) { + array[MONTH] = toInt(input) - 1; + }); + addParseToken(['MMM', 'MMMM'], function (input, array, config, token) { + var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid. + + + if (month != null) { + array[MONTH] = month; + } else { + getParsingFlags(config).invalidMonth = input; + } + }); // LOCALES + + var MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/; + var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'); + + function localeMonths(m, format) { + if (!m) { + return isArray(this._months) ? this._months : this._months['standalone']; + } + + return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()]; + } + + var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'); + + function localeMonthsShort(m, format) { + if (!m) { + return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone']; + } + + return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()]; + } + + function handleStrictParse(monthName, format, strict) { + var i, + ii, + mom, + llc = monthName.toLocaleLowerCase(); + + if (!this._monthsParse) { + // this is not used + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + + for (i = 0; i < 12; ++i) { + mom = createUTC([2000, i]); + this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase(); + this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'MMM') { + ii = indexOf.call(this._shortMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._longMonthsParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._longMonthsParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortMonthsParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeMonthsParse(monthName, format, strict) { + var i, mom, regex; + + if (this._monthsParseExact) { + return handleStrictParse.call(this, monthName, format, strict); + } + + if (!this._monthsParse) { + this._monthsParse = []; + this._longMonthsParse = []; + this._shortMonthsParse = []; + } // TODO: add sorting + // Sorting makes sure if one month (or abbr) is a prefix of another + // see sorting in computeMonthsParse + + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + + if (strict && !this._longMonthsParse[i]) { + this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i'); + this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i'); + } + + if (!strict && !this._monthsParse[i]) { + regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, ''); + this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) { + return i; + } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) { + return i; + } else if (!strict && this._monthsParse[i].test(monthName)) { + return i; + } + } + } // MOMENTS + + + function setMonth(mom, value) { + var dayOfMonth; + + if (!mom.isValid()) { + // No op + return mom; + } + + if (typeof value === 'string') { + if (/^\d+$/.test(value)) { + value = toInt(value); + } else { + value = mom.localeData().monthsParse(value); // TODO: Another silent failure? + + if (!isNumber(value)) { + return mom; + } + } + } + + dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value)); + + mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth); + + return mom; + } + + function getSetMonth(value) { + if (value != null) { + setMonth(this, value); + hooks.updateOffset(this, true); + return this; + } else { + return get(this, 'Month'); + } + } + + function getDaysInMonth() { + return daysInMonth(this.year(), this.month()); + } + + var defaultMonthsShortRegex = matchWord; + + function monthsShortRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsShortStrictRegex; + } else { + return this._monthsShortRegex; + } + } else { + if (!hasOwnProp(this, '_monthsShortRegex')) { + this._monthsShortRegex = defaultMonthsShortRegex; + } + + return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex; + } + } + + var defaultMonthsRegex = matchWord; + + function monthsRegex(isStrict) { + if (this._monthsParseExact) { + if (!hasOwnProp(this, '_monthsRegex')) { + computeMonthsParse.call(this); + } + + if (isStrict) { + return this._monthsStrictRegex; + } else { + return this._monthsRegex; + } + } else { + if (!hasOwnProp(this, '_monthsRegex')) { + this._monthsRegex = defaultMonthsRegex; + } + + return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex; + } + } + + function computeMonthsParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom; + + for (i = 0; i < 12; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, i]); + shortPieces.push(this.monthsShort(mom, '')); + longPieces.push(this.months(mom, '')); + mixedPieces.push(this.months(mom, '')); + mixedPieces.push(this.monthsShort(mom, '')); + } // Sorting makes sure if one month (or abbr) is a prefix of another it + // will match the longer piece. + + + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 12; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + } + + for (i = 0; i < 24; i++) { + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._monthsShortRegex = this._monthsRegex; + this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + } + + function createDate(y, m, d, h, M, s, ms) { + // can't just apply() to create a date: + // https://stackoverflow.com/q/181348 + var date; // the date constructor remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + date = new Date(y + 400, m, d, h, M, s, ms); + + if (isFinite(date.getFullYear())) { + date.setFullYear(y); + } + } else { + date = new Date(y, m, d, h, M, s, ms); + } + + return date; + } + + function createUTCDate(y) { + var date; // the Date.UTC function remaps years 0-99 to 1900-1999 + + if (y < 100 && y >= 0) { + var args = Array.prototype.slice.call(arguments); // preserve leap years using a full 400 year cycle, then reset + + args[0] = y + 400; + date = new Date(Date.UTC.apply(null, args)); + + if (isFinite(date.getUTCFullYear())) { + date.setUTCFullYear(y); + } + } else { + date = new Date(Date.UTC.apply(null, arguments)); + } + + return date; + } // start-of-first-week - start-of-year + + + function firstWeekOffset(year, dow, doy) { + var // first-week day -- which january is always in the first week (4 for iso, 1 for other) + fwd = 7 + dow - doy, + // first-week day local weekday -- which local weekday is fwd + fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7; + return -fwdlw + fwd - 1; + } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday + + + function dayOfYearFromWeeks(year, week, weekday, dow, doy) { + var localWeekday = (7 + weekday - dow) % 7, + weekOffset = firstWeekOffset(year, dow, doy), + dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset, + resYear, + resDayOfYear; + + if (dayOfYear <= 0) { + resYear = year - 1; + resDayOfYear = daysInYear(resYear) + dayOfYear; + } else if (dayOfYear > daysInYear(year)) { + resYear = year + 1; + resDayOfYear = dayOfYear - daysInYear(year); + } else { + resYear = year; + resDayOfYear = dayOfYear; + } + + return { + year: resYear, + dayOfYear: resDayOfYear + }; + } + + function weekOfYear(mom, dow, doy) { + var weekOffset = firstWeekOffset(mom.year(), dow, doy), + week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1, + resWeek, + resYear; + + if (week < 1) { + resYear = mom.year() - 1; + resWeek = week + weeksInYear(resYear, dow, doy); + } else if (week > weeksInYear(mom.year(), dow, doy)) { + resWeek = week - weeksInYear(mom.year(), dow, doy); + resYear = mom.year() + 1; + } else { + resYear = mom.year(); + resWeek = week; + } + + return { + week: resWeek, + year: resYear + }; + } + + function weeksInYear(year, dow, doy) { + var weekOffset = firstWeekOffset(year, dow, doy), + weekOffsetNext = firstWeekOffset(year + 1, dow, doy); + return (daysInYear(year) - weekOffset + weekOffsetNext) / 7; + } // FORMATTING + + + addFormatToken('w', ['ww', 2], 'wo', 'week'); + addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES + + addUnitAlias('week', 'w'); + addUnitAlias('isoWeek', 'W'); // PRIORITIES + + addUnitPriority('week', 5); + addUnitPriority('isoWeek', 5); // PARSING + + addRegexToken('w', match1to2); + addRegexToken('ww', match1to2, match2); + addRegexToken('W', match1to2); + addRegexToken('WW', match1to2, match2); + addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) { + week[token.substr(0, 1)] = toInt(input); + }); // HELPERS + // LOCALES + + function localeWeek(mom) { + return weekOfYear(mom, this._week.dow, this._week.doy).week; + } + + var defaultLocaleWeek = { + dow: 0, + // Sunday is the first day of the week. + doy: 6 // The week that contains Jan 6th is the first week of the year. + + }; + + function localeFirstDayOfWeek() { + return this._week.dow; + } + + function localeFirstDayOfYear() { + return this._week.doy; + } // MOMENTS + + + function getSetWeek(input) { + var week = this.localeData().week(this); + return input == null ? week : this.add((input - week) * 7, 'd'); + } + + function getSetISOWeek(input) { + var week = weekOfYear(this, 1, 4).week; + return input == null ? week : this.add((input - week) * 7, 'd'); + } // FORMATTING + + + addFormatToken('d', 0, 'do', 'day'); + addFormatToken('dd', 0, 0, function (format) { + return this.localeData().weekdaysMin(this, format); + }); + addFormatToken('ddd', 0, 0, function (format) { + return this.localeData().weekdaysShort(this, format); + }); + addFormatToken('dddd', 0, 0, function (format) { + return this.localeData().weekdays(this, format); + }); + addFormatToken('e', 0, 0, 'weekday'); + addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES + + addUnitAlias('day', 'd'); + addUnitAlias('weekday', 'e'); + addUnitAlias('isoWeekday', 'E'); // PRIORITY + + addUnitPriority('day', 11); + addUnitPriority('weekday', 11); + addUnitPriority('isoWeekday', 11); // PARSING + + addRegexToken('d', match1to2); + addRegexToken('e', match1to2); + addRegexToken('E', match1to2); + addRegexToken('dd', function (isStrict, locale) { + return locale.weekdaysMinRegex(isStrict); + }); + addRegexToken('ddd', function (isStrict, locale) { + return locale.weekdaysShortRegex(isStrict); + }); + addRegexToken('dddd', function (isStrict, locale) { + return locale.weekdaysRegex(isStrict); + }); + addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) { + var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid + + + if (weekday != null) { + week.d = weekday; + } else { + getParsingFlags(config).invalidWeekday = input; + } + }); + addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) { + week[token] = toInt(input); + }); // HELPERS + + function parseWeekday(input, locale) { + if (typeof input !== 'string') { + return input; + } + + if (!isNaN(input)) { + return parseInt(input, 10); + } + + input = locale.weekdaysParse(input); + + if (typeof input === 'number') { + return input; + } + + return null; + } + + function parseIsoWeekday(input, locale) { + if (typeof input === 'string') { + return locale.weekdaysParse(input) % 7 || 7; + } + + return isNaN(input) ? null : input; + } // LOCALES + + + function shiftWeekdays(ws, n) { + return ws.slice(n, 7).concat(ws.slice(0, n)); + } + + var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'); + + function localeWeekdays(m, format) { + var weekdays = isArray(this._weekdays) ? this._weekdays : this._weekdays[m && m !== true && this._weekdays.isFormat.test(format) ? 'format' : 'standalone']; + return m === true ? shiftWeekdays(weekdays, this._week.dow) : m ? weekdays[m.day()] : weekdays; + } + + var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'); + + function localeWeekdaysShort(m) { + return m === true ? shiftWeekdays(this._weekdaysShort, this._week.dow) : m ? this._weekdaysShort[m.day()] : this._weekdaysShort; + } + + var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'); + + function localeWeekdaysMin(m) { + return m === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m ? this._weekdaysMin[m.day()] : this._weekdaysMin; + } + + function handleStrictParse$1(weekdayName, format, strict) { + var i, + ii, + mom, + llc = weekdayName.toLocaleLowerCase(); + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._shortWeekdaysParse = []; + this._minWeekdaysParse = []; + + for (i = 0; i < 7; ++i) { + mom = createUTC([2000, 1]).day(i); + this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase(); + this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase(); + this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase(); + } + } + + if (strict) { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } else { + if (format === 'dddd') { + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else if (format === 'ddd') { + ii = indexOf.call(this._shortWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._minWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } else { + ii = indexOf.call(this._minWeekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._weekdaysParse, llc); + + if (ii !== -1) { + return ii; + } + + ii = indexOf.call(this._shortWeekdaysParse, llc); + return ii !== -1 ? ii : null; + } + } + } + + function localeWeekdaysParse(weekdayName, format, strict) { + var i, mom, regex; + + if (this._weekdaysParseExact) { + return handleStrictParse$1.call(this, weekdayName, format, strict); + } + + if (!this._weekdaysParse) { + this._weekdaysParse = []; + this._minWeekdaysParse = []; + this._shortWeekdaysParse = []; + this._fullWeekdaysParse = []; + } + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + + if (strict && !this._fullWeekdaysParse[i]) { + this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\.?') + '$', 'i'); + this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\.?') + '$', 'i'); + this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\.?') + '$', 'i'); + } + + if (!this._weekdaysParse[i]) { + regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, ''); + this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i'); + } // test the regex + + + if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) { + return i; + } else if (!strict && this._weekdaysParse[i].test(weekdayName)) { + return i; + } + } + } // MOMENTS + + + function getSetDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay(); + + if (input != null) { + input = parseWeekday(input, this.localeData()); + return this.add(input - day, 'd'); + } else { + return day; + } + } + + function getSetLocaleDayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } + + var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7; + return input == null ? weekday : this.add(input - weekday, 'd'); + } + + function getSetISODayOfWeek(input) { + if (!this.isValid()) { + return input != null ? this : NaN; + } // behaves the same as moment#day except + // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6) + // as a setter, sunday should belong to the previous week. + + + if (input != null) { + var weekday = parseIsoWeekday(input, this.localeData()); + return this.day(this.day() % 7 ? weekday : weekday - 7); + } else { + return this.day() || 7; + } + } + + var defaultWeekdaysRegex = matchWord; + + function weekdaysRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysStrictRegex; + } else { + return this._weekdaysRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysRegex')) { + this._weekdaysRegex = defaultWeekdaysRegex; + } + + return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex; + } + } + + var defaultWeekdaysShortRegex = matchWord; + + function weekdaysShortRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysShortStrictRegex; + } else { + return this._weekdaysShortRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysShortRegex')) { + this._weekdaysShortRegex = defaultWeekdaysShortRegex; + } + + return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex; + } + } + + var defaultWeekdaysMinRegex = matchWord; + + function weekdaysMinRegex(isStrict) { + if (this._weekdaysParseExact) { + if (!hasOwnProp(this, '_weekdaysRegex')) { + computeWeekdaysParse.call(this); + } + + if (isStrict) { + return this._weekdaysMinStrictRegex; + } else { + return this._weekdaysMinRegex; + } + } else { + if (!hasOwnProp(this, '_weekdaysMinRegex')) { + this._weekdaysMinRegex = defaultWeekdaysMinRegex; + } + + return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex; + } + } + + function computeWeekdaysParse() { + function cmpLenRev(a, b) { + return b.length - a.length; + } + + var minPieces = [], + shortPieces = [], + longPieces = [], + mixedPieces = [], + i, + mom, + minp, + shortp, + longp; + + for (i = 0; i < 7; i++) { + // make the regex if we don't have it already + mom = createUTC([2000, 1]).day(i); + minp = this.weekdaysMin(mom, ''); + shortp = this.weekdaysShort(mom, ''); + longp = this.weekdays(mom, ''); + minPieces.push(minp); + shortPieces.push(shortp); + longPieces.push(longp); + mixedPieces.push(minp); + mixedPieces.push(shortp); + mixedPieces.push(longp); + } // Sorting makes sure if one weekday (or abbr) is a prefix of another it + // will match the longer piece. + + + minPieces.sort(cmpLenRev); + shortPieces.sort(cmpLenRev); + longPieces.sort(cmpLenRev); + mixedPieces.sort(cmpLenRev); + + for (i = 0; i < 7; i++) { + shortPieces[i] = regexEscape(shortPieces[i]); + longPieces[i] = regexEscape(longPieces[i]); + mixedPieces[i] = regexEscape(mixedPieces[i]); + } + + this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i'); + this._weekdaysShortRegex = this._weekdaysRegex; + this._weekdaysMinRegex = this._weekdaysRegex; + this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i'); + this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i'); + this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i'); + } // FORMATTING + + + function hFormat() { + return this.hours() % 12 || 12; + } + + function kFormat() { + return this.hours() || 24; + } + + addFormatToken('H', ['HH', 2], 0, 'hour'); + addFormatToken('h', ['hh', 2], 0, hFormat); + addFormatToken('k', ['kk', 2], 0, kFormat); + addFormatToken('hmm', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2); + }); + addFormatToken('hmmss', 0, 0, function () { + return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + addFormatToken('Hmm', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2); + }); + addFormatToken('Hmmss', 0, 0, function () { + return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2); + }); + + function meridiem(token, lowercase) { + addFormatToken(token, 0, 0, function () { + return this.localeData().meridiem(this.hours(), this.minutes(), lowercase); + }); + } + + meridiem('a', true); + meridiem('A', false); // ALIASES + + addUnitAlias('hour', 'h'); // PRIORITY + + addUnitPriority('hour', 13); // PARSING + + function matchMeridiem(isStrict, locale) { + return locale._meridiemParse; + } + + addRegexToken('a', matchMeridiem); + addRegexToken('A', matchMeridiem); + addRegexToken('H', match1to2); + addRegexToken('h', match1to2); + addRegexToken('k', match1to2); + addRegexToken('HH', match1to2, match2); + addRegexToken('hh', match1to2, match2); + addRegexToken('kk', match1to2, match2); + addRegexToken('hmm', match3to4); + addRegexToken('hmmss', match5to6); + addRegexToken('Hmm', match3to4); + addRegexToken('Hmmss', match5to6); + addParseToken(['H', 'HH'], HOUR); + addParseToken(['k', 'kk'], function (input, array, config) { + var kInput = toInt(input); + array[HOUR] = kInput === 24 ? 0 : kInput; + }); + addParseToken(['a', 'A'], function (input, array, config) { + config._isPm = config._locale.isPM(input); + config._meridiem = input; + }); + addParseToken(['h', 'hh'], function (input, array, config) { + array[HOUR] = toInt(input); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + getParsingFlags(config).bigHour = true; + }); + addParseToken('Hmm', function (input, array, config) { + var pos = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos)); + array[MINUTE] = toInt(input.substr(pos)); + }); + addParseToken('Hmmss', function (input, array, config) { + var pos1 = input.length - 4; + var pos2 = input.length - 2; + array[HOUR] = toInt(input.substr(0, pos1)); + array[MINUTE] = toInt(input.substr(pos1, 2)); + array[SECOND] = toInt(input.substr(pos2)); + }); // LOCALES + + function localeIsPM(input) { + // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays + // Using charAt should be more compatible. + return (input + '').toLowerCase().charAt(0) === 'p'; + } + + var defaultLocaleMeridiemParse = /[ap]\.?m?\.?/i; + + function localeMeridiem(hours, minutes, isLower) { + if (hours > 11) { + return isLower ? 'pm' : 'PM'; + } else { + return isLower ? 'am' : 'AM'; + } + } // MOMENTS + // Setting the hour should keep the time, because the user explicitly + // specified which hour they want. So trying to maintain the same hour (in + // a new timezone) makes sense. Adding/subtracting hours does not follow + // this rule. + + + var getSetHour = makeGetSet('Hours', true); + var baseConfig = { + calendar: defaultCalendar, + longDateFormat: defaultLongDateFormat, + invalidDate: defaultInvalidDate, + ordinal: defaultOrdinal, + dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse, + relativeTime: defaultRelativeTime, + months: defaultLocaleMonths, + monthsShort: defaultLocaleMonthsShort, + week: defaultLocaleWeek, + weekdays: defaultLocaleWeekdays, + weekdaysMin: defaultLocaleWeekdaysMin, + weekdaysShort: defaultLocaleWeekdaysShort, + meridiemParse: defaultLocaleMeridiemParse + }; // internal storage for locale config files + + var locales = {}; + var localeFamilies = {}; + var globalLocale; + + function normalizeLocale(key) { + return key ? key.toLowerCase().replace('_', '-') : key; + } // pick the locale from the array + // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each + // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root + + + function chooseLocale(names) { + var i = 0, + j, + next, + locale, + split; + + while (i < names.length) { + split = normalizeLocale(names[i]).split('-'); + j = split.length; + next = normalizeLocale(names[i + 1]); + next = next ? next.split('-') : null; + + while (j > 0) { + locale = loadLocale(split.slice(0, j).join('-')); + + if (locale) { + return locale; + } + + if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) { + //the next array item is better than a shallower substring of this one + break; + } + + j--; + } + + i++; + } + + return globalLocale; + } + + function loadLocale(name) { + var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node + + if (!locales[name] && 'object' !== 'undefined' && module && module.exports) { + try { + oldLocale = globalLocale._abbr; + var aliasedRequire = commonjsRequire$2; + aliasedRequire('./locale/' + name); + getSetGlobalLocale(oldLocale); + } catch (e) {} + } + + return locales[name]; + } // This function will load locale and then set the global locale. If + // no arguments are passed in, it will simply return the current global + // locale key. + + + function getSetGlobalLocale(key, values) { + var data; + + if (key) { + if (isUndefined(values)) { + data = getLocale(key); + } else { + data = defineLocale(key, values); + } + + if (data) { + // moment.duration._locale = moment._locale = data; + globalLocale = data; + } else { + if (typeof console !== 'undefined' && console.warn) { + //warn user if arguments are passed but the locale could not be set + console.warn('Locale ' + key + ' not found. Did you forget to load it?'); + } + } + } + + return globalLocale._abbr; + } + + function defineLocale(name, config) { + if (config !== null) { + var locale, + parentConfig = baseConfig; + config.abbr = name; + + if (locales[name] != null) { + deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.'); + parentConfig = locales[name]._config; + } else if (config.parentLocale != null) { + if (locales[config.parentLocale] != null) { + parentConfig = locales[config.parentLocale]._config; + } else { + locale = loadLocale(config.parentLocale); + + if (locale != null) { + parentConfig = locale._config; + } else { + if (!localeFamilies[config.parentLocale]) { + localeFamilies[config.parentLocale] = []; + } + + localeFamilies[config.parentLocale].push({ + name: name, + config: config + }); + return null; + } + } + } + + locales[name] = new Locale(mergeConfigs(parentConfig, config)); + + if (localeFamilies[name]) { + localeFamilies[name].forEach(function (x) { + defineLocale(x.name, x.config); + }); + } // backwards compat for now: also set the locale + // make sure we set the locale AFTER all child locales have been + // created, so we won't end up with the child locale set. + + + getSetGlobalLocale(name); + return locales[name]; + } else { + // useful for testing + delete locales[name]; + return null; + } + } + + function updateLocale(name, config) { + if (config != null) { + var locale, + tmpLocale, + parentConfig = baseConfig; // MERGE + + tmpLocale = loadLocale(name); + + if (tmpLocale != null) { + parentConfig = tmpLocale._config; + } + + config = mergeConfigs(parentConfig, config); + locale = new Locale(config); + locale.parentLocale = locales[name]; + locales[name] = locale; // backwards compat for now: also set the locale + + getSetGlobalLocale(name); + } else { + // pass null for config to unupdate, useful for tests + if (locales[name] != null) { + if (locales[name].parentLocale != null) { + locales[name] = locales[name].parentLocale; + } else if (locales[name] != null) { + delete locales[name]; + } + } + } + + return locales[name]; + } // returns locale data + + + function getLocale(key) { + var locale; + + if (key && key._locale && key._locale._abbr) { + key = key._locale._abbr; + } + + if (!key) { + return globalLocale; + } + + if (!isArray(key)) { + //short-circuit everything else + locale = loadLocale(key); + + if (locale) { + return locale; + } + + key = [key]; + } + + return chooseLocale(key); + } + + function listLocales() { + return keys(locales); + } + + function checkOverflow(m) { + var overflow; + var a = m._a; + + if (a && getParsingFlags(m).overflow === -2) { + overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1; + + if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) { + overflow = DATE; + } + + if (getParsingFlags(m)._overflowWeeks && overflow === -1) { + overflow = WEEK; + } + + if (getParsingFlags(m)._overflowWeekday && overflow === -1) { + overflow = WEEKDAY; + } + + getParsingFlags(m).overflow = overflow; + } + + return m; + } // Pick the first defined of two or three arguments. + + + function defaults(a, b, c) { + if (a != null) { + return a; + } + + if (b != null) { + return b; + } + + return c; + } + + function currentDateArray(config) { + // hooks is actually the exported moment object + var nowValue = new Date(hooks.now()); + + if (config._useUTC) { + return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()]; + } + + return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()]; + } // convert an array to a date. + // the array should mirror the parameters below + // note: all values past the year are optional and will default to the lowest possible value. + // [year, month, day , hour, minute, second, millisecond] + + + function configFromArray(config) { + var i, + date, + input = [], + currentDate, + expectedWeekday, + yearToUse; + + if (config._d) { + return; + } + + currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays + + if (config._w && config._a[DATE] == null && config._a[MONTH] == null) { + dayOfYearFromWeekInfo(config); + } //if the day of the year is set, figure out what it is + + + if (config._dayOfYear != null) { + yearToUse = defaults(config._a[YEAR], currentDate[YEAR]); + + if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) { + getParsingFlags(config)._overflowDayOfYear = true; + } + + date = createUTCDate(yearToUse, 0, config._dayOfYear); + config._a[MONTH] = date.getUTCMonth(); + config._a[DATE] = date.getUTCDate(); + } // Default to current date. + // * if no year, month, day of month are given, default to today + // * if day of month is given, default month and year + // * if month is given, default only year + // * if year is given, don't default anything + + + for (i = 0; i < 3 && config._a[i] == null; ++i) { + config._a[i] = input[i] = currentDate[i]; + } // Zero out whatever was not defaulted, including time + + + for (; i < 7; i++) { + config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i]; + } // Check for 24:00:00.000 + + + if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) { + config._nextDay = true; + config._a[HOUR] = 0; + } + + config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input); + expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed + // with parseZone. + + if (config._tzm != null) { + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + } + + if (config._nextDay) { + config._a[HOUR] = 24; + } // check for mismatching day of week + + + if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) { + getParsingFlags(config).weekdayMismatch = true; + } + } + + function dayOfYearFromWeekInfo(config) { + var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow; + w = config._w; + + if (w.GG != null || w.W != null || w.E != null) { + dow = 1; + doy = 4; // TODO: We need to take the current isoWeekYear, but that depends on + // how we interpret now (local, utc, fixed offset). So create + // a now version of current config (take local/utc/offset flags, and + // create now). + + weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year); + week = defaults(w.W, 1); + weekday = defaults(w.E, 1); + + if (weekday < 1 || weekday > 7) { + weekdayOverflow = true; + } + } else { + dow = config._locale._week.dow; + doy = config._locale._week.doy; + var curWeek = weekOfYear(createLocal(), dow, doy); + weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week. + + week = defaults(w.w, curWeek.week); + + if (w.d != null) { + // weekday -- low day numbers are considered next week + weekday = w.d; + + if (weekday < 0 || weekday > 6) { + weekdayOverflow = true; + } + } else if (w.e != null) { + // local weekday -- counting starts from beginning of week + weekday = w.e + dow; + + if (w.e < 0 || w.e > 6) { + weekdayOverflow = true; + } + } else { + // default to beginning of week + weekday = dow; + } + } + + if (week < 1 || week > weeksInYear(weekYear, dow, doy)) { + getParsingFlags(config)._overflowWeeks = true; + } else if (weekdayOverflow != null) { + getParsingFlags(config)._overflowWeekday = true; + } else { + temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy); + config._a[YEAR] = temp.year; + config._dayOfYear = temp.dayOfYear; + } + } // iso 8601 regex + // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00) + + + var extendedIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var basicIsoRegex = /^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/; + var tzRegex = /Z|[+-]\d\d(?::?\d\d)?/; + var isoDates = [['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/], ['YYYY-MM-DD', /\d{4}-\d\d-\d\d/], ['GGGG-[W]WW-E', /\d{4}-W\d\d-\d/], ['GGGG-[W]WW', /\d{4}-W\d\d/, false], ['YYYY-DDD', /\d{4}-\d{3}/], ['YYYY-MM', /\d{4}-\d\d/, false], ['YYYYYYMMDD', /[+-]\d{10}/], ['YYYYMMDD', /\d{8}/], // YYYYMM is NOT allowed by the standard + ['GGGG[W]WWE', /\d{4}W\d{3}/], ['GGGG[W]WW', /\d{4}W\d{2}/, false], ['YYYYDDD', /\d{7}/]]; // iso time formats and regexes + + var isoTimes = [['HH:mm:ss.SSSS', /\d\d:\d\d:\d\d\.\d+/], ['HH:mm:ss,SSSS', /\d\d:\d\d:\d\d,\d+/], ['HH:mm:ss', /\d\d:\d\d:\d\d/], ['HH:mm', /\d\d:\d\d/], ['HHmmss.SSSS', /\d\d\d\d\d\d\.\d+/], ['HHmmss,SSSS', /\d\d\d\d\d\d,\d+/], ['HHmmss', /\d\d\d\d\d\d/], ['HHmm', /\d\d\d\d/], ['HH', /\d\d/]]; + var aspNetJsonRegex = /^\/?Date\((\-?\d+)/i; // date from iso format + + function configFromISO(config) { + var i, + l, + string = config._i, + match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string), + allowTime, + dateFormat, + timeFormat, + tzFormat; + + if (match) { + getParsingFlags(config).iso = true; + + for (i = 0, l = isoDates.length; i < l; i++) { + if (isoDates[i][1].exec(match[1])) { + dateFormat = isoDates[i][0]; + allowTime = isoDates[i][2] !== false; + break; + } + } + + if (dateFormat == null) { + config._isValid = false; + return; + } + + if (match[3]) { + for (i = 0, l = isoTimes.length; i < l; i++) { + if (isoTimes[i][1].exec(match[3])) { + // match[2] should be 'T' or space + timeFormat = (match[2] || ' ') + isoTimes[i][0]; + break; + } + } + + if (timeFormat == null) { + config._isValid = false; + return; + } + } + + if (!allowTime && timeFormat != null) { + config._isValid = false; + return; + } + + if (match[4]) { + if (tzRegex.exec(match[4])) { + tzFormat = 'Z'; + } else { + config._isValid = false; + return; + } + } + + config._f = dateFormat + (timeFormat || '') + (tzFormat || ''); + configFromStringAndFormat(config); + } else { + config._isValid = false; + } + } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3 + + + var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/; + + function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) { + var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)]; + + if (secondStr) { + result.push(parseInt(secondStr, 10)); + } + + return result; + } + + function untruncateYear(yearStr) { + var year = parseInt(yearStr, 10); + + if (year <= 49) { + return 2000 + year; + } else if (year <= 999) { + return 1900 + year; + } + + return year; + } + + function preprocessRFC2822(s) { + // Remove comments and folding whitespace and replace multiple-spaces with a single space + return s.replace(/\([^)]*\)|[\n\t]/g, ' ').replace(/(\s\s+)/g, ' ').replace(/^\s\s*/, '').replace(/\s\s*$/, ''); + } + + function checkWeekday(weekdayStr, parsedInput, config) { + if (weekdayStr) { + // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check. + var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr), + weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay(); + + if (weekdayProvided !== weekdayActual) { + getParsingFlags(config).weekdayMismatch = true; + config._isValid = false; + return false; + } + } + + return true; + } + + var obsOffsets = { + UT: 0, + GMT: 0, + EDT: -4 * 60, + EST: -5 * 60, + CDT: -5 * 60, + CST: -6 * 60, + MDT: -6 * 60, + MST: -7 * 60, + PDT: -7 * 60, + PST: -8 * 60 + }; + + function calculateOffset(obsOffset, militaryOffset, numOffset) { + if (obsOffset) { + return obsOffsets[obsOffset]; + } else if (militaryOffset) { + // the only allowed military tz is Z + return 0; + } else { + var hm = parseInt(numOffset, 10); + var m = hm % 100, + h = (hm - m) / 100; + return h * 60 + m; + } + } // date and time from ref 2822 format + + + function configFromRFC2822(config) { + var match = rfc2822.exec(preprocessRFC2822(config._i)); + + if (match) { + var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]); + + if (!checkWeekday(match[1], parsedArray, config)) { + return; + } + + config._a = parsedArray; + config._tzm = calculateOffset(match[8], match[9], match[10]); + config._d = createUTCDate.apply(null, config._a); + + config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm); + + getParsingFlags(config).rfc2822 = true; + } else { + config._isValid = false; + } + } // date from iso format or fallback + + + function configFromString(config) { + var matched = aspNetJsonRegex.exec(config._i); + + if (matched !== null) { + config._d = new Date(+matched[1]); + return; + } + + configFromISO(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } + + configFromRFC2822(config); + + if (config._isValid === false) { + delete config._isValid; + } else { + return; + } // Final attempt, use Input Fallback + + + hooks.createFromInputFallback(config); + } + + hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) { + config._d = new Date(config._i + (config._useUTC ? ' UTC' : '')); + }); // constant that refers to the ISO standard + + hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form + + + hooks.RFC_2822 = function () {}; // date from string and format string + + + function configFromStringAndFormat(config) { + // TODO: Move this to another part of the creation flow to prevent circular deps + if (config._f === hooks.ISO_8601) { + configFromISO(config); + return; + } + + if (config._f === hooks.RFC_2822) { + configFromRFC2822(config); + return; + } + + config._a = []; + getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC` + + var string = '' + config._i, + i, + parsedInput, + tokens, + token, + skipped, + stringLength = string.length, + totalParsedInputLength = 0; + tokens = expandFormat(config._f, config._locale).match(formattingTokens) || []; + + for (i = 0; i < tokens.length; i++) { + token = tokens[i]; + parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput, + // 'regex', getParseRegexForToken(token, config)); + + if (parsedInput) { + skipped = string.substr(0, string.indexOf(parsedInput)); + + if (skipped.length > 0) { + getParsingFlags(config).unusedInput.push(skipped); + } + + string = string.slice(string.indexOf(parsedInput) + parsedInput.length); + totalParsedInputLength += parsedInput.length; + } // don't parse if it's not a known token + + + if (formatTokenFunctions[token]) { + if (parsedInput) { + getParsingFlags(config).empty = false; + } else { + getParsingFlags(config).unusedTokens.push(token); + } + + addTimeToArrayFromToken(token, parsedInput, config); + } else if (config._strict && !parsedInput) { + getParsingFlags(config).unusedTokens.push(token); + } + } // add remaining unparsed input length to the string + + + getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength; + + if (string.length > 0) { + getParsingFlags(config).unusedInput.push(string); + } // clear _12h flag if hour is <= 12 + + + if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) { + getParsingFlags(config).bigHour = undefined; + } + + getParsingFlags(config).parsedDateParts = config._a.slice(0); + getParsingFlags(config).meridiem = config._meridiem; // handle meridiem + + config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem); + configFromArray(config); + checkOverflow(config); + } + + function meridiemFixWrap(locale, hour, meridiem) { + var isPm; + + if (meridiem == null) { + // nothing to do + return hour; + } + + if (locale.meridiemHour != null) { + return locale.meridiemHour(hour, meridiem); + } else if (locale.isPM != null) { + // Fallback + isPm = locale.isPM(meridiem); + + if (isPm && hour < 12) { + hour += 12; + } + + if (!isPm && hour === 12) { + hour = 0; + } + + return hour; + } else { + // this is not supposed to happen + return hour; + } + } // date from string and array of format strings + + + function configFromStringAndArray(config) { + var tempConfig, bestMoment, scoreToBeat, i, currentScore; + + if (config._f.length === 0) { + getParsingFlags(config).invalidFormat = true; + config._d = new Date(NaN); + return; + } + + for (i = 0; i < config._f.length; i++) { + currentScore = 0; + tempConfig = copyConfig({}, config); + + if (config._useUTC != null) { + tempConfig._useUTC = config._useUTC; + } + + tempConfig._f = config._f[i]; + configFromStringAndFormat(tempConfig); + + if (!isValid(tempConfig)) { + continue; + } // if there is any input that was not parsed add a penalty for that format + + + currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens + + currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10; + getParsingFlags(tempConfig).score = currentScore; + + if (scoreToBeat == null || currentScore < scoreToBeat) { + scoreToBeat = currentScore; + bestMoment = tempConfig; + } + } + + extend(config, bestMoment || tempConfig); + } + + function configFromObject(config) { + if (config._d) { + return; + } + + var i = normalizeObjectUnits(config._i); + config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) { + return obj && parseInt(obj, 10); + }); + configFromArray(config); + } + + function createFromConfig(config) { + var res = new Moment(checkOverflow(prepareConfig(config))); + + if (res._nextDay) { + // Adding is smart enough around DST + res.add(1, 'd'); + res._nextDay = undefined; + } + + return res; + } + + function prepareConfig(config) { + var input = config._i, + format = config._f; + config._locale = config._locale || getLocale(config._l); + + if (input === null || format === undefined && input === '') { + return createInvalid({ + nullInput: true + }); + } + + if (typeof input === 'string') { + config._i = input = config._locale.preparse(input); + } + + if (isMoment(input)) { + return new Moment(checkOverflow(input)); + } else if (isDate(input)) { + config._d = input; + } else if (isArray(format)) { + configFromStringAndArray(config); + } else if (format) { + configFromStringAndFormat(config); + } else { + configFromInput(config); + } + + if (!isValid(config)) { + config._d = null; + } + + return config; + } + + function configFromInput(config) { + var input = config._i; + + if (isUndefined(input)) { + config._d = new Date(hooks.now()); + } else if (isDate(input)) { + config._d = new Date(input.valueOf()); + } else if (typeof input === 'string') { + configFromString(config); + } else if (isArray(input)) { + config._a = map(input.slice(0), function (obj) { + return parseInt(obj, 10); + }); + configFromArray(config); + } else if (isObject(input)) { + configFromObject(config); + } else if (isNumber(input)) { + // from milliseconds + config._d = new Date(input); + } else { + hooks.createFromInputFallback(config); + } + } + + function createLocalOrUTC(input, format, locale, strict, isUTC) { + var c = {}; + + if (locale === true || locale === false) { + strict = locale; + locale = undefined; + } + + if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) { + input = undefined; + } // object construction must be done this way. + // https://github.com/moment/moment/issues/1423 + + + c._isAMomentObject = true; + c._useUTC = c._isUTC = isUTC; + c._l = locale; + c._i = input; + c._f = format; + c._strict = strict; + return createFromConfig(c); + } + + function createLocal(input, format, locale, strict) { + return createLocalOrUTC(input, format, locale, strict, false); + } + + var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other < this ? this : other; + } else { + return createInvalid(); + } + }); + var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () { + var other = createLocal.apply(null, arguments); + + if (this.isValid() && other.isValid()) { + return other > this ? this : other; + } else { + return createInvalid(); + } + }); // Pick a moment m from moments so that m[fn](other) is true for all + // other. This relies on the function fn to be transitive. + // + // moments should either be an array of moment objects or an array, whose + // first element is an array of moment objects. + + function pickBy(fn, moments) { + var res, i; + + if (moments.length === 1 && isArray(moments[0])) { + moments = moments[0]; + } + + if (!moments.length) { + return createLocal(); + } + + res = moments[0]; + + for (i = 1; i < moments.length; ++i) { + if (!moments[i].isValid() || moments[i][fn](res)) { + res = moments[i]; + } + } + + return res; + } // TODO: Use [].sort instead? + + + function min() { + var args = [].slice.call(arguments, 0); + return pickBy('isBefore', args); + } + + function max() { + var args = [].slice.call(arguments, 0); + return pickBy('isAfter', args); + } + + var now = function () { + return Date.now ? Date.now() : +new Date(); + }; + + var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond']; + + function isDurationValid(m) { + for (var key in m) { + if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) { + return false; + } + } + + var unitHasDecimal = false; + + for (var i = 0; i < ordering.length; ++i) { + if (m[ordering[i]]) { + if (unitHasDecimal) { + return false; // only allow non-integers for smallest unit + } + + if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) { + unitHasDecimal = true; + } + } + } + + return true; + } + + function isValid$1() { + return this._isValid; + } + + function createInvalid$1() { + return createDuration(NaN); + } + + function Duration(duration) { + var normalizedInput = normalizeObjectUnits(duration), + years = normalizedInput.year || 0, + quarters = normalizedInput.quarter || 0, + months = normalizedInput.month || 0, + weeks = normalizedInput.week || normalizedInput.isoWeek || 0, + days = normalizedInput.day || 0, + hours = normalizedInput.hour || 0, + minutes = normalizedInput.minute || 0, + seconds = normalizedInput.second || 0, + milliseconds = normalizedInput.millisecond || 0; + this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove + + this._milliseconds = +milliseconds + seconds * 1e3 + // 1000 + minutes * 6e4 + // 1000 * 60 + hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978 + // Because of dateAddRemove treats 24 hours as different from a + // day when working around DST, we need to store them separately + + this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing + // which months you are are talking about, so we have to store + // it separately. + + this._months = +months + quarters * 3 + years * 12; + this._data = {}; + this._locale = getLocale(); + + this._bubble(); + } + + function isDuration(obj) { + return obj instanceof Duration; + } + + function absRound(number) { + if (number < 0) { + return Math.round(-1 * number) * -1; + } else { + return Math.round(number); + } + } // FORMATTING + + + function offset(token, separator) { + addFormatToken(token, 0, 0, function () { + var offset = this.utcOffset(); + var sign = '+'; + + if (offset < 0) { + offset = -offset; + sign = '-'; + } + + return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2); + }); + } + + offset('Z', ':'); + offset('ZZ', ''); // PARSING + + addRegexToken('Z', matchShortOffset); + addRegexToken('ZZ', matchShortOffset); + addParseToken(['Z', 'ZZ'], function (input, array, config) { + config._useUTC = true; + config._tzm = offsetFromString(matchShortOffset, input); + }); // HELPERS + // timezone chunker + // '+10:00' > ['10', '00'] + // '-1530' > ['-15', '30'] + + var chunkOffset = /([\+\-]|\d\d)/gi; + + function offsetFromString(matcher, string) { + var matches = (string || '').match(matcher); + + if (matches === null) { + return null; + } + + var chunk = matches[matches.length - 1] || []; + var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0]; + var minutes = +(parts[1] * 60) + toInt(parts[2]); + return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes; + } // Return a moment from input, that is local/utc/zone equivalent to model. + + + function cloneWithOffset(input, model) { + var res, diff; + + if (model._isUTC) { + res = model.clone(); + diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api. + + res._d.setTime(res._d.valueOf() + diff); + + hooks.updateOffset(res, false); + return res; + } else { + return createLocal(input).local(); + } + } + + function getDateOffset(m) { + // On Firefox.24 Date#getTimezoneOffset returns a floating point. + // https://github.com/moment/moment/pull/1871 + return -Math.round(m._d.getTimezoneOffset() / 15) * 15; + } // HOOKS + // This function will be called whenever a moment is mutated. + // It is intended to keep the offset in sync with the timezone. + + + hooks.updateOffset = function () {}; // MOMENTS + // keepLocalTime = true means only change the timezone, without + // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]--> + // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset + // +0200, so we adjust the time as needed, to be valid. + // + // Keeping the time actually adds/subtracts (one hour) + // from the actual represented time. That is why we call updateOffset + // a second time. In case it wants us to change the offset again + // _changeInProgress == true case, then we have to adjust, because + // there is no such time in the given timezone. + + + function getSetOffset(input, keepLocalTime, keepMinutes) { + var offset = this._offset || 0, + localAdjust; + + if (!this.isValid()) { + return input != null ? this : NaN; + } + + if (input != null) { + if (typeof input === 'string') { + input = offsetFromString(matchShortOffset, input); + + if (input === null) { + return this; + } + } else if (Math.abs(input) < 16 && !keepMinutes) { + input = input * 60; + } + + if (!this._isUTC && keepLocalTime) { + localAdjust = getDateOffset(this); + } + + this._offset = input; + this._isUTC = true; + + if (localAdjust != null) { + this.add(localAdjust, 'm'); + } + + if (offset !== input) { + if (!keepLocalTime || this._changeInProgress) { + addSubtract(this, createDuration(input - offset, 'm'), 1, false); + } else if (!this._changeInProgress) { + this._changeInProgress = true; + hooks.updateOffset(this, true); + this._changeInProgress = null; + } + } + + return this; + } else { + return this._isUTC ? offset : getDateOffset(this); + } + } + + function getSetZone(input, keepLocalTime) { + if (input != null) { + if (typeof input !== 'string') { + input = -input; + } + + this.utcOffset(input, keepLocalTime); + return this; + } else { + return -this.utcOffset(); + } + } + + function setOffsetToUTC(keepLocalTime) { + return this.utcOffset(0, keepLocalTime); + } + + function setOffsetToLocal(keepLocalTime) { + if (this._isUTC) { + this.utcOffset(0, keepLocalTime); + this._isUTC = false; + + if (keepLocalTime) { + this.subtract(getDateOffset(this), 'm'); + } + } + + return this; + } + + function setOffsetToParsedOffset() { + if (this._tzm != null) { + this.utcOffset(this._tzm, false, true); + } else if (typeof this._i === 'string') { + var tZone = offsetFromString(matchOffset, this._i); + + if (tZone != null) { + this.utcOffset(tZone); + } else { + this.utcOffset(0, true); + } + } + + return this; + } + + function hasAlignedHourOffset(input) { + if (!this.isValid()) { + return false; + } + + input = input ? createLocal(input).utcOffset() : 0; + return (this.utcOffset() - input) % 60 === 0; + } + + function isDaylightSavingTime() { + return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset(); + } + + function isDaylightSavingTimeShifted() { + if (!isUndefined(this._isDSTShifted)) { + return this._isDSTShifted; + } + + var c = {}; + copyConfig(c, this); + c = prepareConfig(c); + + if (c._a) { + var other = c._isUTC ? createUTC(c._a) : createLocal(c._a); + this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0; + } else { + this._isDSTShifted = false; + } + + return this._isDSTShifted; + } + + function isLocal() { + return this.isValid() ? !this._isUTC : false; + } + + function isUtcOffset() { + return this.isValid() ? this._isUTC : false; + } + + function isUtc() { + return this.isValid() ? this._isUTC && this._offset === 0 : false; + } // ASP.NET json date format regex + + + var aspNetRegex = /^(\-|\+)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/; // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html + // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere + // and further modified to allow for strings containing both week and day + + var isoRegex = /^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/; + + function createDuration(input, key) { + var duration = input, + // matching against regexp is expensive, do it on demand + match = null, + sign, + ret, + diffRes; + + if (isDuration(input)) { + duration = { + ms: input._milliseconds, + d: input._days, + M: input._months + }; + } else if (isNumber(input)) { + duration = {}; + + if (key) { + duration[key] = input; + } else { + duration.milliseconds = input; + } + } else if (!!(match = aspNetRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: 0, + d: toInt(match[DATE]) * sign, + h: toInt(match[HOUR]) * sign, + m: toInt(match[MINUTE]) * sign, + s: toInt(match[SECOND]) * sign, + ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match + + }; + } else if (!!(match = isoRegex.exec(input))) { + sign = match[1] === '-' ? -1 : 1; + duration = { + y: parseIso(match[2], sign), + M: parseIso(match[3], sign), + w: parseIso(match[4], sign), + d: parseIso(match[5], sign), + h: parseIso(match[6], sign), + m: parseIso(match[7], sign), + s: parseIso(match[8], sign) + }; + } else if (duration == null) { + // checks for null or undefined + duration = {}; + } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) { + diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to)); + duration = {}; + duration.ms = diffRes.milliseconds; + duration.M = diffRes.months; + } + + ret = new Duration(duration); + + if (isDuration(input) && hasOwnProp(input, '_locale')) { + ret._locale = input._locale; + } + + return ret; + } + + createDuration.fn = Duration.prototype; + createDuration.invalid = createInvalid$1; + + function parseIso(inp, sign) { + // We'd normally use ~~inp for this, but unfortunately it also + // converts floats to ints. + // inp may be undefined, so careful calling replace on it. + var res = inp && parseFloat(inp.replace(',', '.')); // apply sign while we're at it + + return (isNaN(res) ? 0 : res) * sign; + } + + function positiveMomentsDifference(base, other) { + var res = {}; + res.months = other.month() - base.month() + (other.year() - base.year()) * 12; + + if (base.clone().add(res.months, 'M').isAfter(other)) { + --res.months; + } + + res.milliseconds = +other - +base.clone().add(res.months, 'M'); + return res; + } + + function momentsDifference(base, other) { + var res; + + if (!(base.isValid() && other.isValid())) { + return { + milliseconds: 0, + months: 0 + }; + } + + other = cloneWithOffset(other, base); + + if (base.isBefore(other)) { + res = positiveMomentsDifference(base, other); + } else { + res = positiveMomentsDifference(other, base); + res.milliseconds = -res.milliseconds; + res.months = -res.months; + } + + return res; + } // TODO: remove 'name' arg after deprecation is removed + + + function createAdder(direction, name) { + return function (val, period) { + var dur, tmp; //invert the arguments, but complain about it + + if (period !== null && !isNaN(+period)) { + deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.'); + tmp = val; + val = period; + period = tmp; + } + + val = typeof val === 'string' ? +val : val; + dur = createDuration(val, period); + addSubtract(this, dur, direction); + return this; + }; + } + + function addSubtract(mom, duration, isAdding, updateOffset) { + var milliseconds = duration._milliseconds, + days = absRound(duration._days), + months = absRound(duration._months); + + if (!mom.isValid()) { + // No op + return; + } + + updateOffset = updateOffset == null ? true : updateOffset; + + if (months) { + setMonth(mom, get(mom, 'Month') + months * isAdding); + } + + if (days) { + set$1(mom, 'Date', get(mom, 'Date') + days * isAdding); + } + + if (milliseconds) { + mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding); + } + + if (updateOffset) { + hooks.updateOffset(mom, days || months); + } + } + + var add = createAdder(1, 'add'); + var subtract = createAdder(-1, 'subtract'); + + function getCalendarFormat(myMoment, now) { + var diff = myMoment.diff(now, 'days', true); + return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse'; + } + + function calendar$1(time, formats) { + // We want to compare the start of today, vs this. + // Getting start-of-today depends on whether we're local/utc/offset or not. + var now = time || createLocal(), + sod = cloneWithOffset(now, this).startOf('day'), + format = hooks.calendarFormat(this, sod) || 'sameElse'; + var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]); + return this.format(output || this.localeData().calendar(format, this, createLocal(now))); + } + + function clone() { + return new Moment(this); + } + + function isAfter(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() > localInput.valueOf(); + } else { + return localInput.valueOf() < this.clone().startOf(units).valueOf(); + } + } + + function isBefore(input, units) { + var localInput = isMoment(input) ? input : createLocal(input); + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() < localInput.valueOf(); + } else { + return this.clone().endOf(units).valueOf() < localInput.valueOf(); + } + } + + function isBetween(from, to, units, inclusivity) { + var localFrom = isMoment(from) ? from : createLocal(from), + localTo = isMoment(to) ? to : createLocal(to); + + if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) { + return false; + } + + inclusivity = inclusivity || '()'; + return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) && (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units)); + } + + function isSame(input, units) { + var localInput = isMoment(input) ? input : createLocal(input), + inputMs; + + if (!(this.isValid() && localInput.isValid())) { + return false; + } + + units = normalizeUnits(units) || 'millisecond'; + + if (units === 'millisecond') { + return this.valueOf() === localInput.valueOf(); + } else { + inputMs = localInput.valueOf(); + return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf(); + } + } + + function isSameOrAfter(input, units) { + return this.isSame(input, units) || this.isAfter(input, units); + } + + function isSameOrBefore(input, units) { + return this.isSame(input, units) || this.isBefore(input, units); + } + + function diff(input, units, asFloat) { + var that, zoneDelta, output; + + if (!this.isValid()) { + return NaN; + } + + that = cloneWithOffset(input, this); + + if (!that.isValid()) { + return NaN; + } + + zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4; + units = normalizeUnits(units); + + switch (units) { + case 'year': + output = monthDiff(this, that) / 12; + break; + + case 'month': + output = monthDiff(this, that); + break; + + case 'quarter': + output = monthDiff(this, that) / 3; + break; + + case 'second': + output = (this - that) / 1e3; + break; + // 1000 + + case 'minute': + output = (this - that) / 6e4; + break; + // 1000 * 60 + + case 'hour': + output = (this - that) / 36e5; + break; + // 1000 * 60 * 60 + + case 'day': + output = (this - that - zoneDelta) / 864e5; + break; + // 1000 * 60 * 60 * 24, negate dst + + case 'week': + output = (this - that - zoneDelta) / 6048e5; + break; + // 1000 * 60 * 60 * 24 * 7, negate dst + + default: + output = this - that; + } + + return asFloat ? output : absFloor(output); + } + + function monthDiff(a, b) { + // difference in months + var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()), + // b is in (anchor - 1 month, anchor + 1 month) + anchor = a.clone().add(wholeMonthDiff, 'months'), + anchor2, + adjust; + + if (b - anchor < 0) { + anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor - anchor2); + } else { + anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month + + adjust = (b - anchor) / (anchor2 - anchor); + } //check for negative zero, return zero if negative zero + + + return -(wholeMonthDiff + adjust) || 0; + } + + hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ'; + hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]'; + + function toString() { + return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ'); + } + + function toISOString(keepOffset) { + if (!this.isValid()) { + return null; + } + + var utc = keepOffset !== true; + var m = utc ? this.clone().utc() : this; + + if (m.year() < 0 || m.year() > 9999) { + return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + + if (isFunction(Date.prototype.toISOString)) { + // native implementation is ~50x faster, use it when we can + if (utc) { + return this.toDate().toISOString(); + } else { + return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z')); + } + } + + return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ'); + } + /** + * Return a human readable representation of a moment that can + * also be evaluated to get a new moment which is the same + * + * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects + */ + + + function inspect() { + if (!this.isValid()) { + return 'moment.invalid(/* ' + this._i + ' */)'; + } + + var func = 'moment'; + var zone = ''; + + if (!this.isLocal()) { + func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone'; + zone = 'Z'; + } + + var prefix = '[' + func + '("]'; + var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY'; + var datetime = '-MM-DD[T]HH:mm:ss.SSS'; + var suffix = zone + '[")]'; + return this.format(prefix + year + datetime + suffix); + } + + function format(inputString) { + if (!inputString) { + inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat; + } + + var output = formatMoment(this, inputString); + return this.localeData().postformat(output); + } + + function from(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + to: this, + from: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function fromNow(withoutSuffix) { + return this.from(createLocal(), withoutSuffix); + } + + function to(time, withoutSuffix) { + if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) { + return createDuration({ + from: this, + to: time + }).locale(this.locale()).humanize(!withoutSuffix); + } else { + return this.localeData().invalidDate(); + } + } + + function toNow(withoutSuffix) { + return this.to(createLocal(), withoutSuffix); + } // If passed a locale key, it will set the locale for this + // instance. Otherwise, it will return the locale configuration + // variables for this instance. + + + function locale(key) { + var newLocaleData; + + if (key === undefined) { + return this._locale._abbr; + } else { + newLocaleData = getLocale(key); + + if (newLocaleData != null) { + this._locale = newLocaleData; + } + + return this; + } + } + + var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) { + if (key === undefined) { + return this.localeData(); + } else { + return this.locale(key); + } + }); + + function localeData() { + return this._locale; + } + + var MS_PER_SECOND = 1000; + var MS_PER_MINUTE = 60 * MS_PER_SECOND; + var MS_PER_HOUR = 60 * MS_PER_MINUTE; + var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; // actual modulo - handles negative numbers (for dates before 1970): + + function mod$1(dividend, divisor) { + return (dividend % divisor + divisor) % divisor; + } + + function localStartOfDate(y, m, d) { + // the date constructor remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return new Date(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return new Date(y, m, d).valueOf(); + } + } + + function utcStartOfDate(y, m, d) { + // Date.UTC remaps years 0-99 to 1900-1999 + if (y < 100 && y >= 0) { + // preserve leap years using a full 400 year cycle, then reset + return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS; + } else { + return Date.UTC(y, m, d); + } + } + + function startOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year(), 0, 1); + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3, 1); + break; + + case 'month': + time = startOfDate(this.year(), this.month(), 1); + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday()); + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1)); + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date()); + break; + + case 'hour': + time = this._d.valueOf(); + time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR); + break; + + case 'minute': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_MINUTE); + break; + + case 'second': + time = this._d.valueOf(); + time -= mod$1(time, MS_PER_SECOND); + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function endOf(units) { + var time; + units = normalizeUnits(units); + + if (units === undefined || units === 'millisecond' || !this.isValid()) { + return this; + } + + var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate; + + switch (units) { + case 'year': + time = startOfDate(this.year() + 1, 0, 1) - 1; + break; + + case 'quarter': + time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1; + break; + + case 'month': + time = startOfDate(this.year(), this.month() + 1, 1) - 1; + break; + + case 'week': + time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1; + break; + + case 'isoWeek': + time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1; + break; + + case 'day': + case 'date': + time = startOfDate(this.year(), this.month(), this.date() + 1) - 1; + break; + + case 'hour': + time = this._d.valueOf(); + time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1; + break; + + case 'minute': + time = this._d.valueOf(); + time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1; + break; + + case 'second': + time = this._d.valueOf(); + time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1; + break; + } + + this._d.setTime(time); + + hooks.updateOffset(this, true); + return this; + } + + function valueOf() { + return this._d.valueOf() - (this._offset || 0) * 60000; + } + + function unix() { + return Math.floor(this.valueOf() / 1000); + } + + function toDate() { + return new Date(this.valueOf()); + } + + function toArray() { + var m = this; + return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()]; + } + + function toObject() { + var m = this; + return { + years: m.year(), + months: m.month(), + date: m.date(), + hours: m.hours(), + minutes: m.minutes(), + seconds: m.seconds(), + milliseconds: m.milliseconds() + }; + } + + function toJSON() { + // new Date(NaN).toJSON() === null + return this.isValid() ? this.toISOString() : null; + } + + function isValid$2() { + return isValid(this); + } + + function parsingFlags() { + return extend({}, getParsingFlags(this)); + } + + function invalidAt() { + return getParsingFlags(this).overflow; + } + + function creationData() { + return { + input: this._i, + format: this._f, + locale: this._locale, + isUTC: this._isUTC, + strict: this._strict + }; + } // FORMATTING + + + addFormatToken(0, ['gg', 2], 0, function () { + return this.weekYear() % 100; + }); + addFormatToken(0, ['GG', 2], 0, function () { + return this.isoWeekYear() % 100; + }); + + function addWeekYearFormatToken(token, getter) { + addFormatToken(0, [token, token.length], 0, getter); + } + + addWeekYearFormatToken('gggg', 'weekYear'); + addWeekYearFormatToken('ggggg', 'weekYear'); + addWeekYearFormatToken('GGGG', 'isoWeekYear'); + addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES + + addUnitAlias('weekYear', 'gg'); + addUnitAlias('isoWeekYear', 'GG'); // PRIORITY + + addUnitPriority('weekYear', 1); + addUnitPriority('isoWeekYear', 1); // PARSING + + addRegexToken('G', matchSigned); + addRegexToken('g', matchSigned); + addRegexToken('GG', match1to2, match2); + addRegexToken('gg', match1to2, match2); + addRegexToken('GGGG', match1to4, match4); + addRegexToken('gggg', match1to4, match4); + addRegexToken('GGGGG', match1to6, match6); + addRegexToken('ggggg', match1to6, match6); + addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) { + week[token.substr(0, 2)] = toInt(input); + }); + addWeekParseToken(['gg', 'GG'], function (input, week, config, token) { + week[token] = hooks.parseTwoDigitYear(input); + }); // MOMENTS + + function getSetWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy); + } + + function getSetISOWeekYear(input) { + return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4); + } + + function getISOWeeksInYear() { + return weeksInYear(this.year(), 1, 4); + } + + function getWeeksInYear() { + var weekInfo = this.localeData()._week; + + return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy); + } + + function getSetWeekYearHelper(input, week, weekday, dow, doy) { + var weeksTarget; + + if (input == null) { + return weekOfYear(this, dow, doy).year; + } else { + weeksTarget = weeksInYear(input, dow, doy); + + if (week > weeksTarget) { + week = weeksTarget; + } + + return setWeekAll.call(this, input, week, weekday, dow, doy); + } + } + + function setWeekAll(weekYear, week, weekday, dow, doy) { + var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy), + date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear); + this.year(date.getUTCFullYear()); + this.month(date.getUTCMonth()); + this.date(date.getUTCDate()); + return this; + } // FORMATTING + + + addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES + + addUnitAlias('quarter', 'Q'); // PRIORITY + + addUnitPriority('quarter', 7); // PARSING + + addRegexToken('Q', match1); + addParseToken('Q', function (input, array) { + array[MONTH] = (toInt(input) - 1) * 3; + }); // MOMENTS + + function getSetQuarter(input) { + return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3); + } // FORMATTING + + + addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES + + addUnitAlias('date', 'D'); // PRIORITY + + addUnitPriority('date', 9); // PARSING + + addRegexToken('D', match1to2); + addRegexToken('DD', match1to2, match2); + addRegexToken('Do', function (isStrict, locale) { + // TODO: Remove "ordinalParse" fallback in next major release. + return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient; + }); + addParseToken(['D', 'DD'], DATE); + addParseToken('Do', function (input, array) { + array[DATE] = toInt(input.match(match1to2)[0]); + }); // MOMENTS + + var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING + + addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES + + addUnitAlias('dayOfYear', 'DDD'); // PRIORITY + + addUnitPriority('dayOfYear', 4); // PARSING + + addRegexToken('DDD', match1to3); + addRegexToken('DDDD', match3); + addParseToken(['DDD', 'DDDD'], function (input, array, config) { + config._dayOfYear = toInt(input); + }); // HELPERS + // MOMENTS + + function getSetDayOfYear(input) { + var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1; + return input == null ? dayOfYear : this.add(input - dayOfYear, 'd'); + } // FORMATTING + + + addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES + + addUnitAlias('minute', 'm'); // PRIORITY + + addUnitPriority('minute', 14); // PARSING + + addRegexToken('m', match1to2); + addRegexToken('mm', match1to2, match2); + addParseToken(['m', 'mm'], MINUTE); // MOMENTS + + var getSetMinute = makeGetSet('Minutes', false); // FORMATTING + + addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES + + addUnitAlias('second', 's'); // PRIORITY + + addUnitPriority('second', 15); // PARSING + + addRegexToken('s', match1to2); + addRegexToken('ss', match1to2, match2); + addParseToken(['s', 'ss'], SECOND); // MOMENTS + + var getSetSecond = makeGetSet('Seconds', false); // FORMATTING + + addFormatToken('S', 0, 0, function () { + return ~~(this.millisecond() / 100); + }); + addFormatToken(0, ['SS', 2], 0, function () { + return ~~(this.millisecond() / 10); + }); + addFormatToken(0, ['SSS', 3], 0, 'millisecond'); + addFormatToken(0, ['SSSS', 4], 0, function () { + return this.millisecond() * 10; + }); + addFormatToken(0, ['SSSSS', 5], 0, function () { + return this.millisecond() * 100; + }); + addFormatToken(0, ['SSSSSS', 6], 0, function () { + return this.millisecond() * 1000; + }); + addFormatToken(0, ['SSSSSSS', 7], 0, function () { + return this.millisecond() * 10000; + }); + addFormatToken(0, ['SSSSSSSS', 8], 0, function () { + return this.millisecond() * 100000; + }); + addFormatToken(0, ['SSSSSSSSS', 9], 0, function () { + return this.millisecond() * 1000000; + }); // ALIASES + + addUnitAlias('millisecond', 'ms'); // PRIORITY + + addUnitPriority('millisecond', 16); // PARSING + + addRegexToken('S', match1to3, match1); + addRegexToken('SS', match1to3, match2); + addRegexToken('SSS', match1to3, match3); + var token; + + for (token = 'SSSS'; token.length <= 9; token += 'S') { + addRegexToken(token, matchUnsigned); + } + + function parseMs(input, array) { + array[MILLISECOND] = toInt(('0.' + input) * 1000); + } + + for (token = 'S'; token.length <= 9; token += 'S') { + addParseToken(token, parseMs); + } // MOMENTS + + + var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING + + addFormatToken('z', 0, 0, 'zoneAbbr'); + addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS + + function getZoneAbbr() { + return this._isUTC ? 'UTC' : ''; + } + + function getZoneName() { + return this._isUTC ? 'Coordinated Universal Time' : ''; + } + + var proto = Moment.prototype; + proto.add = add; + proto.calendar = calendar$1; + proto.clone = clone; + proto.diff = diff; + proto.endOf = endOf; + proto.format = format; + proto.from = from; + proto.fromNow = fromNow; + proto.to = to; + proto.toNow = toNow; + proto.get = stringGet; + proto.invalidAt = invalidAt; + proto.isAfter = isAfter; + proto.isBefore = isBefore; + proto.isBetween = isBetween; + proto.isSame = isSame; + proto.isSameOrAfter = isSameOrAfter; + proto.isSameOrBefore = isSameOrBefore; + proto.isValid = isValid$2; + proto.lang = lang; + proto.locale = locale; + proto.localeData = localeData; + proto.max = prototypeMax; + proto.min = prototypeMin; + proto.parsingFlags = parsingFlags; + proto.set = stringSet; + proto.startOf = startOf; + proto.subtract = subtract; + proto.toArray = toArray; + proto.toObject = toObject; + proto.toDate = toDate; + proto.toISOString = toISOString; + proto.inspect = inspect; + proto.toJSON = toJSON; + proto.toString = toString; + proto.unix = unix; + proto.valueOf = valueOf; + proto.creationData = creationData; + proto.year = getSetYear; + proto.isLeapYear = getIsLeapYear; + proto.weekYear = getSetWeekYear; + proto.isoWeekYear = getSetISOWeekYear; + proto.quarter = proto.quarters = getSetQuarter; + proto.month = getSetMonth; + proto.daysInMonth = getDaysInMonth; + proto.week = proto.weeks = getSetWeek; + proto.isoWeek = proto.isoWeeks = getSetISOWeek; + proto.weeksInYear = getWeeksInYear; + proto.isoWeeksInYear = getISOWeeksInYear; + proto.date = getSetDayOfMonth; + proto.day = proto.days = getSetDayOfWeek; + proto.weekday = getSetLocaleDayOfWeek; + proto.isoWeekday = getSetISODayOfWeek; + proto.dayOfYear = getSetDayOfYear; + proto.hour = proto.hours = getSetHour; + proto.minute = proto.minutes = getSetMinute; + proto.second = proto.seconds = getSetSecond; + proto.millisecond = proto.milliseconds = getSetMillisecond; + proto.utcOffset = getSetOffset; + proto.utc = setOffsetToUTC; + proto.local = setOffsetToLocal; + proto.parseZone = setOffsetToParsedOffset; + proto.hasAlignedHourOffset = hasAlignedHourOffset; + proto.isDST = isDaylightSavingTime; + proto.isLocal = isLocal; + proto.isUtcOffset = isUtcOffset; + proto.isUtc = isUtc; + proto.isUTC = isUtc; + proto.zoneAbbr = getZoneAbbr; + proto.zoneName = getZoneName; + proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth); + proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth); + proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear); + proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone); + proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted); + + function createUnix(input) { + return createLocal(input * 1000); + } + + function createInZone() { + return createLocal.apply(null, arguments).parseZone(); + } + + function preParsePostFormat(string) { + return string; + } + + var proto$1 = Locale.prototype; + proto$1.calendar = calendar; + proto$1.longDateFormat = longDateFormat; + proto$1.invalidDate = invalidDate; + proto$1.ordinal = ordinal; + proto$1.preparse = preParsePostFormat; + proto$1.postformat = preParsePostFormat; + proto$1.relativeTime = relativeTime; + proto$1.pastFuture = pastFuture; + proto$1.set = set; + proto$1.months = localeMonths; + proto$1.monthsShort = localeMonthsShort; + proto$1.monthsParse = localeMonthsParse; + proto$1.monthsRegex = monthsRegex; + proto$1.monthsShortRegex = monthsShortRegex; + proto$1.week = localeWeek; + proto$1.firstDayOfYear = localeFirstDayOfYear; + proto$1.firstDayOfWeek = localeFirstDayOfWeek; + proto$1.weekdays = localeWeekdays; + proto$1.weekdaysMin = localeWeekdaysMin; + proto$1.weekdaysShort = localeWeekdaysShort; + proto$1.weekdaysParse = localeWeekdaysParse; + proto$1.weekdaysRegex = weekdaysRegex; + proto$1.weekdaysShortRegex = weekdaysShortRegex; + proto$1.weekdaysMinRegex = weekdaysMinRegex; + proto$1.isPM = localeIsPM; + proto$1.meridiem = localeMeridiem; + + function get$1(format, index, field, setter) { + var locale = getLocale(); + var utc = createUTC().set(setter, index); + return locale[field](utc, format); + } + + function listMonthsImpl(format, index, field) { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + + if (index != null) { + return get$1(format, index, field, 'month'); + } + + var i; + var out = []; + + for (i = 0; i < 12; i++) { + out[i] = get$1(format, i, field, 'month'); + } + + return out; + } // () + // (5) + // (fmt, 5) + // (fmt) + // (true) + // (true, 5) + // (true, fmt, 5) + // (true, fmt) + + + function listWeekdaysImpl(localeSorted, format, index, field) { + if (typeof localeSorted === 'boolean') { + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } else { + format = localeSorted; + index = format; + localeSorted = false; + + if (isNumber(format)) { + index = format; + format = undefined; + } + + format = format || ''; + } + + var locale = getLocale(), + shift = localeSorted ? locale._week.dow : 0; + + if (index != null) { + return get$1(format, (index + shift) % 7, field, 'day'); + } + + var i; + var out = []; + + for (i = 0; i < 7; i++) { + out[i] = get$1(format, (i + shift) % 7, field, 'day'); + } + + return out; + } + + function listMonths(format, index) { + return listMonthsImpl(format, index, 'months'); + } + + function listMonthsShort(format, index) { + return listMonthsImpl(format, index, 'monthsShort'); + } + + function listWeekdays(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdays'); + } + + function listWeekdaysShort(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort'); + } + + function listWeekdaysMin(localeSorted, format, index) { + return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin'); + } + + getSetGlobalLocale('en', { + dayOfMonthOrdinalParse: /\d{1,2}(th|st|nd|rd)/, + ordinal: function (number) { + var b = number % 10, + output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th'; + return number + output; + } + }); // Side effect imports + + hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale); + hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale); + var mathAbs = Math.abs; + + function abs() { + var data = this._data; + this._milliseconds = mathAbs(this._milliseconds); + this._days = mathAbs(this._days); + this._months = mathAbs(this._months); + data.milliseconds = mathAbs(data.milliseconds); + data.seconds = mathAbs(data.seconds); + data.minutes = mathAbs(data.minutes); + data.hours = mathAbs(data.hours); + data.months = mathAbs(data.months); + data.years = mathAbs(data.years); + return this; + } + + function addSubtract$1(duration, input, value, direction) { + var other = createDuration(input, value); + duration._milliseconds += direction * other._milliseconds; + duration._days += direction * other._days; + duration._months += direction * other._months; + return duration._bubble(); + } // supports only 2.0-style add(1, 's') or add(duration) + + + function add$1(input, value) { + return addSubtract$1(this, input, value, 1); + } // supports only 2.0-style subtract(1, 's') or subtract(duration) + + + function subtract$1(input, value) { + return addSubtract$1(this, input, value, -1); + } + + function absCeil(number) { + if (number < 0) { + return Math.floor(number); + } else { + return Math.ceil(number); + } + } + + function bubble() { + var milliseconds = this._milliseconds; + var days = this._days; + var months = this._months; + var data = this._data; + var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first + // check: https://github.com/moment/moment/issues/2166 + + if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) { + milliseconds += absCeil(monthsToDays(months) + days) * 864e5; + days = 0; + months = 0; + } // The following code bubbles up values, see the tests for + // examples of what that means. + + + data.milliseconds = milliseconds % 1000; + seconds = absFloor(milliseconds / 1000); + data.seconds = seconds % 60; + minutes = absFloor(seconds / 60); + data.minutes = minutes % 60; + hours = absFloor(minutes / 60); + data.hours = hours % 24; + days += absFloor(hours / 24); // convert days to months + + monthsFromDays = absFloor(daysToMonths(days)); + months += monthsFromDays; + days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; + data.days = days; + data.months = months; + data.years = years; + return this; + } + + function daysToMonths(days) { + // 400 years have 146097 days (taking into account leap year rules) + // 400 years have 12 months === 4800 + return days * 4800 / 146097; + } + + function monthsToDays(months) { + // the reverse of daysToMonths + return months * 146097 / 4800; + } + + function as(units) { + if (!this.isValid()) { + return NaN; + } + + var days; + var months; + var milliseconds = this._milliseconds; + units = normalizeUnits(units); + + if (units === 'month' || units === 'quarter' || units === 'year') { + days = this._days + milliseconds / 864e5; + months = this._months + daysToMonths(days); + + switch (units) { + case 'month': + return months; + + case 'quarter': + return months / 3; + + case 'year': + return months / 12; + } + } else { + // handle milliseconds separately because of floating point math errors (issue #1867) + days = this._days + Math.round(monthsToDays(this._months)); + + switch (units) { + case 'week': + return days / 7 + milliseconds / 6048e5; + + case 'day': + return days + milliseconds / 864e5; + + case 'hour': + return days * 24 + milliseconds / 36e5; + + case 'minute': + return days * 1440 + milliseconds / 6e4; + + case 'second': + return days * 86400 + milliseconds / 1000; + // Math.floor prevents floating point math errors here + + case 'millisecond': + return Math.floor(days * 864e5) + milliseconds; + + default: + throw new Error('Unknown unit ' + units); + } + } + } // TODO: Use this.as('ms')? + + + function valueOf$1() { + if (!this.isValid()) { + return NaN; + } + + return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6; + } + + function makeAs(alias) { + return function () { + return this.as(alias); + }; + } + + var asMilliseconds = makeAs('ms'); + var asSeconds = makeAs('s'); + var asMinutes = makeAs('m'); + var asHours = makeAs('h'); + var asDays = makeAs('d'); + var asWeeks = makeAs('w'); + var asMonths = makeAs('M'); + var asQuarters = makeAs('Q'); + var asYears = makeAs('y'); + + function clone$1() { + return createDuration(this); + } + + function get$2(units) { + units = normalizeUnits(units); + return this.isValid() ? this[units + 's']() : NaN; + } + + function makeGetter(name) { + return function () { + return this.isValid() ? this._data[name] : NaN; + }; + } + + var milliseconds = makeGetter('milliseconds'); + var seconds = makeGetter('seconds'); + var minutes = makeGetter('minutes'); + var hours = makeGetter('hours'); + var days = makeGetter('days'); + var months = makeGetter('months'); + var years = makeGetter('years'); + + function weeks() { + return absFloor(this.days() / 7); + } + + var round = Math.round; + var thresholds = { + ss: 44, + // a few seconds to seconds + s: 45, + // seconds to minute + m: 45, + // minutes to hour + h: 22, + // hours to day + d: 26, + // days to month + M: 11 // months to year + + }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize + + function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) { + return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture); + } + + function relativeTime$1(posNegDuration, withoutSuffix, locale) { + var duration = createDuration(posNegDuration).abs(); + var seconds = round(duration.as('s')); + var minutes = round(duration.as('m')); + var hours = round(duration.as('h')); + var days = round(duration.as('d')); + var months = round(duration.as('M')); + var years = round(duration.as('y')); + var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years]; + a[2] = withoutSuffix; + a[3] = +posNegDuration > 0; + a[4] = locale; + return substituteTimeAgo.apply(null, a); + } // This function allows you to set the rounding function for relative time strings + + + function getSetRelativeTimeRounding(roundingFunction) { + if (roundingFunction === undefined) { + return round; + } + + if (typeof roundingFunction === 'function') { + round = roundingFunction; + return true; + } + + return false; + } // This function allows you to set a threshold for relative time strings + + + function getSetRelativeTimeThreshold(threshold, limit) { + if (thresholds[threshold] === undefined) { + return false; + } + + if (limit === undefined) { + return thresholds[threshold]; + } + + thresholds[threshold] = limit; + + if (threshold === 's') { + thresholds.ss = limit - 1; + } + + return true; + } + + function humanize(withSuffix) { + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var locale = this.localeData(); + var output = relativeTime$1(this, !withSuffix, locale); + + if (withSuffix) { + output = locale.pastFuture(+this, output); + } + + return locale.postformat(output); + } + + var abs$1 = Math.abs; + + function sign(x) { + return (x > 0) - (x < 0) || +x; + } + + function toISOString$1() { + // for ISO strings we do not use the normal bubbling rules: + // * milliseconds bubble up until they become hours + // * days do not bubble at all + // * months bubble up until they become years + // This is because there is no context-free conversion between hours and days + // (think of clock changes) + // and also not between days and months (28-31 days per month) + if (!this.isValid()) { + return this.localeData().invalidDate(); + } + + var seconds = abs$1(this._milliseconds) / 1000; + var days = abs$1(this._days); + var months = abs$1(this._months); + var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour + + minutes = absFloor(seconds / 60); + hours = absFloor(minutes / 60); + seconds %= 60; + minutes %= 60; // 12 months -> 1 year + + years = absFloor(months / 12); + months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js + + var Y = years; + var M = months; + var D = days; + var h = hours; + var m = minutes; + var s = seconds ? seconds.toFixed(3).replace(/\.?0+$/, '') : ''; + var total = this.asSeconds(); + + if (!total) { + // this is the same as C#'s (Noda) and python (isodate)... + // but not other JS (goog.date) + return 'P0D'; + } + + var totalSign = total < 0 ? '-' : ''; + var ymSign = sign(this._months) !== sign(total) ? '-' : ''; + var daysSign = sign(this._days) !== sign(total) ? '-' : ''; + var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : ''; + return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : ''); + } + + var proto$2 = Duration.prototype; + proto$2.isValid = isValid$1; + proto$2.abs = abs; + proto$2.add = add$1; + proto$2.subtract = subtract$1; + proto$2.as = as; + proto$2.asMilliseconds = asMilliseconds; + proto$2.asSeconds = asSeconds; + proto$2.asMinutes = asMinutes; + proto$2.asHours = asHours; + proto$2.asDays = asDays; + proto$2.asWeeks = asWeeks; + proto$2.asMonths = asMonths; + proto$2.asQuarters = asQuarters; + proto$2.asYears = asYears; + proto$2.valueOf = valueOf$1; + proto$2._bubble = bubble; + proto$2.clone = clone$1; + proto$2.get = get$2; + proto$2.milliseconds = milliseconds; + proto$2.seconds = seconds; + proto$2.minutes = minutes; + proto$2.hours = hours; + proto$2.days = days; + proto$2.weeks = weeks; + proto$2.months = months; + proto$2.years = years; + proto$2.humanize = humanize; + proto$2.toISOString = toISOString$1; + proto$2.toString = toISOString$1; + proto$2.toJSON = toISOString$1; + proto$2.locale = locale; + proto$2.localeData = localeData; + proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1); + proto$2.lang = lang; // Side effect imports + // FORMATTING + + addFormatToken('X', 0, 0, 'unix'); + addFormatToken('x', 0, 0, 'valueOf'); // PARSING + + addRegexToken('x', matchSigned); + addRegexToken('X', matchTimestamp); + addParseToken('X', function (input, array, config) { + config._d = new Date(parseFloat(input, 10) * 1000); + }); + addParseToken('x', function (input, array, config) { + config._d = new Date(toInt(input)); + }); // Side effect imports + + hooks.version = '2.24.0'; + setHookCallback(createLocal); + hooks.fn = proto; + hooks.min = min; + hooks.max = max; + hooks.now = now; + hooks.utc = createUTC; + hooks.unix = createUnix; + hooks.months = listMonths; + hooks.isDate = isDate; + hooks.locale = getSetGlobalLocale; + hooks.invalid = createInvalid; + hooks.duration = createDuration; + hooks.isMoment = isMoment; + hooks.weekdays = listWeekdays; + hooks.parseZone = createInZone; + hooks.localeData = getLocale; + hooks.isDuration = isDuration; + hooks.monthsShort = listMonthsShort; + hooks.weekdaysMin = listWeekdaysMin; + hooks.defineLocale = defineLocale; + hooks.updateLocale = updateLocale; + hooks.locales = listLocales; + hooks.weekdaysShort = listWeekdaysShort; + hooks.normalizeUnits = normalizeUnits; + hooks.relativeTimeRounding = getSetRelativeTimeRounding; + hooks.relativeTimeThreshold = getSetRelativeTimeThreshold; + hooks.calendarFormat = getCalendarFormat; + hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats + + hooks.HTML5_FMT = { + DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', + // + DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', + // + DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', + // + DATE: 'YYYY-MM-DD', + // + TIME: 'HH:mm', + // + TIME_SECONDS: 'HH:mm:ss', + // + TIME_MS: 'HH:mm:ss.SSS', + // + WEEK: 'GGGG-[W]WW', + // + MONTH: 'YYYY-MM' // + + }; + return hooks; + }); +}); + +// use this instance. Else, load via commonjs. + +var moment$3 = typeof window !== 'undefined' && window['moment'] || moment$2; + +var defineProperty$6 = defineProperty_1; + +var defineProperty$7 = defineProperty$6; + +// https://tc39.github.io/ecma262/#sec-object.defineproperties + +_export({ + target: 'Object', + stat: true, + forced: !descriptors, + sham: !descriptors +}, { + defineProperties: objectDefineProperties +}); + +var defineProperties_1 = createCommonjsModule$2(function (module) { + var Object = path.Object; + + var defineProperties = module.exports = function defineProperties(T, D) { + return Object.defineProperties(T, D); + }; + + if (Object.defineProperties.sham) defineProperties.sham = true; +}); + +var defineProperties = defineProperties_1; + +var defineProperties$1 = defineProperties; + +var ownKeys$2 = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) { + var keys = objectGetOwnPropertyNames.f(anObject(it)); + var getOwnPropertySymbols = objectGetOwnPropertySymbols.f; + return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys; +}; + +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors + +_export({ + target: 'Object', + stat: true, + sham: !descriptors +}, { + getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) { + var O = toIndexedObject(object); + var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f; + var keys = ownKeys$2(O); + var result = {}; + var index = 0; + var key, descriptor; + + while (keys.length > index) { + descriptor = getOwnPropertyDescriptor(O, key = keys[index++]); + if (descriptor !== undefined) createProperty(result, key, descriptor); + } + + return result; + } +}); + +var getOwnPropertyDescriptors = path.Object.getOwnPropertyDescriptors; + +var getOwnPropertyDescriptors$1 = getOwnPropertyDescriptors; + +var getOwnPropertyDescriptors$2 = getOwnPropertyDescriptors$1; + +var nativeGetOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f; +var FAILS_ON_PRIMITIVES$1 = fails(function () { + nativeGetOwnPropertyDescriptor$2(1); +}); +var FORCED$1 = !descriptors || FAILS_ON_PRIMITIVES$1; // `Object.getOwnPropertyDescriptor` method +// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor + +_export({ + target: 'Object', + stat: true, + forced: FORCED$1, + sham: !descriptors +}, { + getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) { + return nativeGetOwnPropertyDescriptor$2(toIndexedObject(it), key); + } +}); + +var getOwnPropertyDescriptor_1 = createCommonjsModule$2(function (module) { + var Object = path.Object; + + var getOwnPropertyDescriptor = module.exports = function getOwnPropertyDescriptor(it, key) { + return Object.getOwnPropertyDescriptor(it, key); + }; + + if (Object.getOwnPropertyDescriptor.sham) getOwnPropertyDescriptor.sham = true; +}); + +var getOwnPropertyDescriptor$2 = getOwnPropertyDescriptor_1; + +var getOwnPropertyDescriptor$3 = getOwnPropertyDescriptor$2; + +var getOwnPropertySymbols = path.Object.getOwnPropertySymbols; + +var getOwnPropertySymbols$1 = getOwnPropertySymbols; + +var getOwnPropertySymbols$2 = getOwnPropertySymbols$1; + +var FAILS_ON_PRIMITIVES$2 = fails(function () { + objectKeys(1); +}); // `Object.keys` method +// https://tc39.github.io/ecma262/#sec-object.keys + +_export({ + target: 'Object', + stat: true, + forced: FAILS_ON_PRIMITIVES$2 +}, { + keys: function keys(it) { + return objectKeys(toObject(it)); + } +}); + +var keys$1 = path.Object.keys; + +var keys$2 = keys$1; + +var keys$3 = keys$2; + +function _defineProperty$2(obj, key, value) { + if (key in obj) { + defineProperty$4(obj, key, { + value: value, + enumerable: true, + configurable: true, + writable: true + }); + } else { + obj[key] = value; + } + + return obj; +} + +var defineProperty$8 = _defineProperty$2; + +function ownKeys$3(object, enumerableOnly) { var keys = keys$3(object); if (getOwnPropertySymbols$2) { var symbols = getOwnPropertySymbols$2(object); if (enumerableOnly) symbols = filter$2(symbols).call(symbols, function (sym) { return getOwnPropertyDescriptor$3(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } + +function _objectSpread$2(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { var _context; forEach$3(_context = ownKeys$3(source, true)).call(_context, function (key) { defineProperty$8(target, key, source[key]); }); } else if (getOwnPropertyDescriptors$2) { defineProperties$1(target, getOwnPropertyDescriptors$2(source)); } else { var _context2; forEach$3(_context2 = ownKeys$3(source)).call(_context2, function (key) { defineProperty$7(target, key, getOwnPropertyDescriptor$3(source, key)); }); } } return target; } +// for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/' +// code from http://momentjs.com/ + +var ASPDateRegex$2 = /^\/?Date\((-?\d+)/i; +/** + * Convert an object into another type + * + * @param object - Value of unknown type. + * @param type - Name of the desired type. + * + * @returns Object in the desired type. + * @throws Error + */ + +function convert$2(object, type) { + var match; + + if (object === undefined) { + return undefined; + } + + if (object === null) { + return null; + } + + if (!type) { + return object; + } + + if (!(typeof type === "string") && !(type instanceof String)) { + throw new Error("Type must be a string"); + } //noinspection FallthroughInSwitchStatementJS + + + switch (type) { + case "boolean": + case "Boolean": + return Boolean(object); + + case "number": + case "Number": + if (isString(object) && !isNaN(Date.parse(object))) { + return moment$2(object).valueOf(); + } else { + // @TODO: I don't think that Number and String constructors are a good idea. + // This could also fail if the object doesn't have valueOf method or if it's redefined. + // For example: Object.create(null) or { valueOf: 7 }. + return Number(object.valueOf()); + } + + case "string": + case "String": + return String(object); + + case "Date": + if (isNumber(object)) { + return new Date(object); + } + + if (object instanceof Date) { + return new Date(object.valueOf()); + } else if (moment$2.isMoment(object)) { + return new Date(object.valueOf()); + } + + if (isString(object)) { + match = ASPDateRegex$2.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])); // parse number + } else { + return moment$2(new Date(object)).toDate(); // parse string + } + } else { + throw new Error("Cannot convert object of type " + getType(object) + " to type Date"); + } + + case "Moment": + if (isNumber(object)) { + return moment$2(object); + } + + if (object instanceof Date) { + return moment$2(object.valueOf()); + } else if (moment$2.isMoment(object)) { + return moment$2(object); + } + + if (isString(object)) { + match = ASPDateRegex$2.exec(object); + + if (match) { + // object is an ASP date + return moment$2(Number(match[1])); // parse number + } else { + return moment$2(object); // parse string + } + } else { + throw new Error("Cannot convert object of type " + getType(object) + " to type Date"); + } + + case "ISODate": + if (isNumber(object)) { + return new Date(object); + } else if (object instanceof Date) { + return object.toISOString(); + } else if (moment$2.isMoment(object)) { + return object.toDate().toISOString(); + } else if (isString(object)) { + match = ASPDateRegex$2.exec(object); + + if (match) { + // object is an ASP date + return new Date(Number(match[1])).toISOString(); // parse number + } else { + return moment$2(object).format(); // ISO 8601 + } + } else { + throw new Error("Cannot convert object of type " + getType(object) + " to type ISODate"); + } + + case "ASPDate": + if (isNumber(object)) { + return "/Date(" + object + ")/"; + } else if (object instanceof Date || moment$2.isMoment(object)) { + return "/Date(" + object.valueOf() + ")/"; + } else if (isString(object)) { + match = ASPDateRegex$2.exec(object); + var value; + + if (match) { + // object is an ASP date + value = new Date(Number(match[1])).valueOf(); // parse number + } else { + value = new Date(object).valueOf(); // parse string + } + + return "/Date(" + value + ")/"; + } else { + throw new Error("Cannot convert object of type " + getType(object) + " to type ASPDate"); + } + + default: + throw new Error("Unknown type ".concat(type)); + } +} +var util$2 = _objectSpread$2({}, util$1, { + convert: convert$2 +}); + +// a string of all valid unicode whitespaces +// eslint-disable-next-line max-len +var whitespaces = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF'; + +var whitespace = '[' + whitespaces + ']'; +var ltrim = RegExp('^' + whitespace + whitespace + '*'); +var rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation + +var createMethod$3 = function (TYPE) { + return function ($this) { + var string = String(requireObjectCoercible($this)); + if (TYPE & 1) string = string.replace(ltrim, ''); + if (TYPE & 2) string = string.replace(rtrim, ''); + return string; + }; +}; + +var stringTrim = { + // `String.prototype.{ trimLeft, trimStart }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart + start: createMethod$3(1), + // `String.prototype.{ trimRight, trimEnd }` methods + // https://tc39.github.io/ecma262/#sec-string.prototype.trimend + end: createMethod$3(2), + // `String.prototype.trim` method + // https://tc39.github.io/ecma262/#sec-string.prototype.trim + trim: createMethod$3(3) +}; + +var trim = stringTrim.trim; +var nativeParseFloat = global_1.parseFloat; +var FORCED$2 = 1 / nativeParseFloat(whitespaces + '-0') !== -Infinity; // `parseFloat` method +// https://tc39.github.io/ecma262/#sec-parsefloat-string + +var _parseFloat = FORCED$2 ? function parseFloat(string) { + var trimmedString = trim(String(string)); + var result = nativeParseFloat(trimmedString); + return result === 0 && trimmedString.charAt(0) == '-' ? -0 : result; +} : nativeParseFloat; + +// https://tc39.github.io/ecma262/#sec-parsefloat-string + +_export({ + global: true, + forced: parseFloat != _parseFloat +}, { + parseFloat: _parseFloat +}); + +var _parseFloat$1 = path.parseFloat; + +var _parseFloat$2 = _parseFloat$1; + +var _parseFloat$3 = _parseFloat$2; + +// https://tc39.github.io/ecma262/#sec-date.now + +_export({ + target: 'Date', + stat: true +}, { + now: function now() { + return new Date().getTime(); + } +}); + +var now = path.Date.now; + +var now$1 = now; + +var now$2 = now$1; + +var $JSON = path.JSON || (path.JSON = { + stringify: JSON.stringify +}); + +var stringify = function stringify(it) { + // eslint-disable-line no-unused-vars + return $JSON.stringify.apply($JSON, arguments); +}; + +var stringify$1 = stringify; + +var stringify$2 = stringify$1; + +var concat = entryVirtual('Array').concat; + +var ArrayPrototype$2 = Array.prototype; + +var concat_1 = function (it) { + var own = it.concat; + return it === ArrayPrototype$2 || it instanceof Array && own === ArrayPrototype$2.concat ? concat : own; +}; + +var concat$1 = concat_1; + +var concat$2 = concat$1; + +/** Prototype for visual components */ + +var Component = +/*#__PURE__*/ +function () { + /** + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body] + * @param {Object} [options] + */ + function Component(body, options) { + classCallCheck$1(this, Component); + + // eslint-disable-line no-unused-vars + this.options = null; + this.props = null; + } + /** + * Set options for the component. The new options will be merged into the + * current options. + * @param {Object} options + */ + + + createClass$1(Component, [{ + key: "setOptions", + value: function setOptions(options) { + if (options) { + util$2.extend(this.options, options); + } + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + // should be implemented by the component + return false; + } + /** + * Destroy the component. Cleanup DOM and event listeners + */ + + }, { + key: "destroy", + value: function destroy() {} // should be implemented by the component + + /** + * Test whether the component is resized since the last time _isResized() was + * called. + * @return {Boolean} Returns true if the component is resized + * @protected + */ + + }, { + key: "_isResized", + value: function _isResized() { + var resized = this.props._previousWidth !== this.props.width || this.props._previousHeight !== this.props.height; + this.props._previousWidth = this.props.width; + this.props._previousHeight = this.props.height; + return resized; + } + }]); + + return Component; +}(); + +var nativeSort = [].sort; +var test$1 = [1, 2, 3]; // IE8- + +var FAILS_ON_UNDEFINED = fails(function () { + test$1.sort(undefined); +}); // V8 bug + +var FAILS_ON_NULL = fails(function () { + test$1.sort(null); +}); // Old WebKit + +var SLOPPY_METHOD = sloppyArrayMethod('sort'); +var FORCED$3 = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || SLOPPY_METHOD; // `Array.prototype.sort` method +// https://tc39.github.io/ecma262/#sec-array.prototype.sort + +_export({ + target: 'Array', + proto: true, + forced: FORCED$3 +}, { + sort: function sort(comparefn) { + return comparefn === undefined ? nativeSort.call(toObject(this)) : nativeSort.call(toObject(this), aFunction(comparefn)); + } +}); + +var sort = entryVirtual('Array').sort; + +var ArrayPrototype$3 = Array.prototype; + +var sort_1 = function (it) { + var own = it.sort; + return it === ArrayPrototype$3 || it instanceof Array && own === ArrayPrototype$3.sort ? sort : own; +}; + +var sort$1 = sort_1; + +var sort$2 = sort$1; + +// https://tc39.github.io/ecma262/#sec-string.prototype.repeat + + +var stringRepeat = ''.repeat || function repeat(count) { + var str = String(requireObjectCoercible(this)); + var result = ''; + var n = toInteger(count); + if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions'); + + for (; n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str; + + return result; +}; + +// https://tc39.github.io/ecma262/#sec-string.prototype.repeat + +_export({ + target: 'String', + proto: true +}, { + repeat: stringRepeat +}); + +var repeat = entryVirtual('String').repeat; + +var StringPrototype = String.prototype; + +var repeat_1 = function (it) { + var own = it.repeat; + return typeof it === 'string' || it === StringPrototype || it instanceof String && own === StringPrototype.repeat ? repeat : own; +}; + +var repeat$1 = repeat_1; + +var repeat$2 = repeat$1; + +/** + * used in Core to convert the options into a volatile variable + * + * @param {function} moment + * @param {Object} body + * @param {Array | Object} hiddenDates + * @returns {number} + */ +function convertHiddenOptions(moment, body, hiddenDates) { + if (hiddenDates && !isArray$3(hiddenDates)) { + return convertHiddenOptions(moment, body, [hiddenDates]); + } + + body.hiddenDates = []; + + if (hiddenDates) { + if (isArray$3(hiddenDates) == true) { + var _context; + + for (var i = 0; i < hiddenDates.length; i++) { + if (repeat$2(hiddenDates[i]) === undefined) { + var dateItem = {}; + dateItem.start = moment(hiddenDates[i].start).toDate().valueOf(); + dateItem.end = moment(hiddenDates[i].end).toDate().valueOf(); + body.hiddenDates.push(dateItem); + } + } + + sort$2(_context = body.hiddenDates).call(_context, function (a, b) { + return a.start - b.start; + }); // sort by start time + + } + } +} +/** + * create new entrees for the repeating hidden dates + * + * @param {function} moment + * @param {Object} body + * @param {Array | Object} hiddenDates + * @returns {null} + */ + +function updateHiddenDates(moment, body, hiddenDates) { + if (hiddenDates && !isArray$3(hiddenDates)) { + return updateHiddenDates(moment, body, [hiddenDates]); + } + + if (hiddenDates && body.domProps.centerContainer.width !== undefined) { + convertHiddenOptions(moment, body, hiddenDates); + var start = moment(body.range.start); + var end = moment(body.range.end); + var totalRange = body.range.end - body.range.start; + var pixelTime = totalRange / body.domProps.centerContainer.width; + + for (var i = 0; i < hiddenDates.length; i++) { + if (repeat$2(hiddenDates[i]) !== undefined) { + var startDate = moment(hiddenDates[i].start); + var endDate = moment(hiddenDates[i].end); + + if (startDate._d == "Invalid Date") { + throw new Error("Supplied start date is not valid: ".concat(hiddenDates[i].start)); + } + + if (endDate._d == "Invalid Date") { + throw new Error("Supplied end date is not valid: ".concat(hiddenDates[i].end)); + } + + var duration = endDate - startDate; + + if (duration >= 4 * pixelTime) { + var offset = 0; + var runUntil = end.clone(); + + switch (repeat$2(hiddenDates[i])) { + case "daily": + // case of time + if (startDate.day() != endDate.day()) { + offset = 1; + } + + startDate.dayOfYear(start.dayOfYear()); + startDate.year(start.year()); + startDate.subtract(7, 'days'); + endDate.dayOfYear(start.dayOfYear()); + endDate.year(start.year()); + endDate.subtract(7 - offset, 'days'); + runUntil.add(1, 'weeks'); + break; + + case "weekly": + { + var dayOffset = endDate.diff(startDate, 'days'); + var day = startDate.day(); // set the start date to the range.start + + startDate.date(start.date()); + startDate.month(start.month()); + startDate.year(start.year()); + endDate = startDate.clone(); // force + + startDate.day(day); + endDate.day(day); + endDate.add(dayOffset, 'days'); + startDate.subtract(1, 'weeks'); + endDate.subtract(1, 'weeks'); + runUntil.add(1, 'weeks'); + break; + } + + case "monthly": + if (startDate.month() != endDate.month()) { + offset = 1; + } + + startDate.month(start.month()); + startDate.year(start.year()); + startDate.subtract(1, 'months'); + endDate.month(start.month()); + endDate.year(start.year()); + endDate.subtract(1, 'months'); + endDate.add(offset, 'months'); + runUntil.add(1, 'months'); + break; + + case "yearly": + if (startDate.year() != endDate.year()) { + offset = 1; + } + + startDate.year(start.year()); + startDate.subtract(1, 'years'); + endDate.year(start.year()); + endDate.subtract(1, 'years'); + endDate.add(offset, 'years'); + runUntil.add(1, 'years'); + break; + + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", repeat$2(hiddenDates[i])); + return; + } + + while (startDate < runUntil) { + body.hiddenDates.push({ + start: startDate.valueOf(), + end: endDate.valueOf() + }); + + switch (repeat$2(hiddenDates[i])) { + case "daily": + startDate.add(1, 'days'); + endDate.add(1, 'days'); + break; + + case "weekly": + startDate.add(1, 'weeks'); + endDate.add(1, 'weeks'); + break; + + case "monthly": + startDate.add(1, 'months'); + endDate.add(1, 'months'); + break; + + case "yearly": + startDate.add(1, 'y'); + endDate.add(1, 'y'); + break; + + default: + console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:", repeat$2(hiddenDates[i])); + return; + } + } + + body.hiddenDates.push({ + start: startDate.valueOf(), + end: endDate.valueOf() + }); + } + } + } // remove duplicates, merge where possible + + + removeDuplicates(body); // ensure the new positions are not on hidden dates + + var startHidden = getIsHidden(body.range.start, body.hiddenDates); + var endHidden = getIsHidden(body.range.end, body.hiddenDates); + var rangeStart = body.range.start; + var rangeEnd = body.range.end; + + if (startHidden.hidden == true) { + rangeStart = body.range.startToFront == true ? startHidden.startDate - 1 : startHidden.endDate + 1; + } + + if (endHidden.hidden == true) { + rangeEnd = body.range.endToFront == true ? endHidden.startDate - 1 : endHidden.endDate + 1; + } + + if (startHidden.hidden == true || endHidden.hidden == true) { + body.range._applyRange(rangeStart, rangeEnd); + } + } +} +/** + * remove duplicates from the hidden dates list. Duplicates are evil. They mess everything up. + * Scales with N^2 + * + * @param {Object} body + */ + +function removeDuplicates(body) { + var _context2; + + var hiddenDates = body.hiddenDates; + var safeDates = []; + + for (var i = 0; i < hiddenDates.length; i++) { + for (var j = 0; j < hiddenDates.length; j++) { + if (i != j && hiddenDates[j].remove != true && hiddenDates[i].remove != true) { + // j inside i + if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[j].remove = true; + } // j start inside i + else if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].start <= hiddenDates[i].end) { + hiddenDates[i].end = hiddenDates[j].end; + hiddenDates[j].remove = true; + } // j end inside i + else if (hiddenDates[j].end >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) { + hiddenDates[i].start = hiddenDates[j].start; + hiddenDates[j].remove = true; + } + } + } + } + + for (i = 0; i < hiddenDates.length; i++) { + if (hiddenDates[i].remove !== true) { + safeDates.push(hiddenDates[i]); + } + } + + body.hiddenDates = safeDates; + + sort$2(_context2 = body.hiddenDates).call(_context2, function (a, b) { + return a.start - b.start; + }); // sort by start time + +} +/** + * Prints dates to console + * @param {array} dates + */ + +function printDates(dates) { + for (var i = 0; i < dates.length; i++) { + console.log(i, new Date(dates[i].start), new Date(dates[i].end), dates[i].start, dates[i].end, dates[i].remove); + } +} +/** + * Used in TimeStep to avoid the hidden times. + * @param {function} moment + * @param {TimeStep} timeStep + * @param {Date} previousTime + */ + +function stepOverHiddenDates(moment, timeStep, previousTime) { + var stepInHidden = false; + var currentValue = timeStep.current.valueOf(); + + for (var i = 0; i < timeStep.hiddenDates.length; i++) { + var startDate = timeStep.hiddenDates[i].start; + var endDate = timeStep.hiddenDates[i].end; + + if (currentValue >= startDate && currentValue < endDate) { + stepInHidden = true; + break; + } + } + + if (stepInHidden == true && currentValue < timeStep._end.valueOf() && currentValue != previousTime) { + var prevValue = moment(previousTime); + var newValue = moment(endDate); //check if the next step should be major + + if (prevValue.year() != newValue.year()) { + timeStep.switchedYear = true; + } else if (prevValue.month() != newValue.month()) { + timeStep.switchedMonth = true; + } else if (prevValue.dayOfYear() != newValue.dayOfYear()) { + timeStep.switchedDay = true; + } + + timeStep.current = newValue; + } +} ///** +// * Used in TimeStep to avoid the hidden times. +// * @param timeStep +// * @param previousTime +// */ +//checkFirstStep = function(timeStep) { +// var stepInHidden = false; +// var currentValue = timeStep.current.valueOf(); +// for (var i = 0; i < timeStep.hiddenDates.length; i++) { +// var startDate = timeStep.hiddenDates[i].start; +// var endDate = timeStep.hiddenDates[i].end; +// if (currentValue >= startDate && currentValue < endDate) { +// stepInHidden = true; +// break; +// } +// } +// +// if (stepInHidden == true && currentValue <= timeStep._end.valueOf()) { +// var newValue = moment(endDate); +// timeStep.current = newValue.toDate(); +// } +//}; + +/** + * replaces the Core toScreen methods + * + * @param {timeline.Core} Core + * @param {Date} time + * @param {number} width + * @returns {number} + */ + +function toScreen(Core, time, width) { + var conversion; + + if (Core.body.hiddenDates.length == 0) { + conversion = Core.range.conversion(width); + return (time.valueOf() - conversion.offset) * conversion.scale; + } else { + var hidden = getIsHidden(time, Core.body.hiddenDates); + + if (hidden.hidden == true) { + time = hidden.startDate; + } + + var duration = getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + + if (time < Core.range.start) { + conversion = Core.range.conversion(width, duration); + var hiddenBeforeStart = getHiddenDurationBeforeStart(Core.body.hiddenDates, time, conversion.offset); + time = Core.options.moment(time).toDate().valueOf(); + time = time + hiddenBeforeStart; + return -(conversion.offset - time.valueOf()) * conversion.scale; + } else if (time > Core.range.end) { + var rangeAfterEnd = { + start: Core.range.start, + end: time + }; + time = correctTimeForHidden(Core.options.moment, Core.body.hiddenDates, rangeAfterEnd, time); + conversion = Core.range.conversion(width, duration); + return (time.valueOf() - conversion.offset) * conversion.scale; + } else { + time = correctTimeForHidden(Core.options.moment, Core.body.hiddenDates, Core.range, time); + conversion = Core.range.conversion(width, duration); + return (time.valueOf() - conversion.offset) * conversion.scale; + } + } +} +/** + * Replaces the core toTime methods + * + * @param {timeline.Core} Core + * @param {number} x + * @param {number} width + * @returns {Date} + */ + +function toTime(Core, x, width) { + if (Core.body.hiddenDates.length == 0) { + var conversion = Core.range.conversion(width); + return new Date(x / conversion.scale + conversion.offset); + } else { + var hiddenDuration = getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end); + var totalDuration = Core.range.end - Core.range.start - hiddenDuration; + var partialDuration = totalDuration * x / width; + var accumulatedHiddenDuration = getAccumulatedHiddenDuration(Core.body.hiddenDates, Core.range, partialDuration); + return new Date(accumulatedHiddenDuration + partialDuration + Core.range.start); + } +} +/** + * Support function + * + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {number} start + * @param {number} end + * @returns {number} + */ + +function getHiddenDurationBetween(hiddenDates, start, end) { + var duration = 0; + + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; // if time after the cutout, and the + + if (startDate >= start && endDate < end) { + duration += endDate - startDate; + } + } + + return duration; +} +/** + * Support function + * + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {number} start + * @param {number} end + * @returns {number} + */ + +function getHiddenDurationBeforeStart(hiddenDates, start, end) { + var duration = 0; + + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + + if (startDate >= start && endDate <= end) { + duration += endDate - startDate; + } + } + + return duration; +} +/** + * Support function + * @param {function} moment + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {{start: number, end: number}} range + * @param {Date} time + * @returns {number} + */ + +function correctTimeForHidden(moment, hiddenDates, range, time) { + time = moment(time).toDate().valueOf(); + time -= getHiddenDurationBefore(moment, hiddenDates, range, time); + return time; +} +/** + * Support function + * @param {function} moment + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {{start: number, end: number}} range + * @param {Date} time + * @returns {number} + */ + +function getHiddenDurationBefore(moment, hiddenDates, range, time) { + var timeOffset = 0; + time = moment(time).toDate().valueOf(); + + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; // if time after the cutout, and the + + if (startDate >= range.start && endDate < range.end) { + if (time >= endDate) { + timeOffset += endDate - startDate; + } + } + } + + return timeOffset; +} +/** + * sum the duration from start to finish, including the hidden duration, + * until the required amount has been reached, return the accumulated hidden duration + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {{start: number, end: number}} range + * @param {number} [requiredDuration=0] + * @returns {number} + */ + +function getAccumulatedHiddenDuration(hiddenDates, range, requiredDuration) { + var hiddenDuration = 0; + var duration = 0; + var previousPoint = range.start; //printDates(hiddenDates) + + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; // if time after the cutout, and the + + if (startDate >= range.start && endDate < range.end) { + duration += startDate - previousPoint; + previousPoint = endDate; + + if (duration >= requiredDuration) { + break; + } else { + hiddenDuration += endDate - startDate; + } + } + } + + return hiddenDuration; +} +/** + * used to step over to either side of a hidden block. Correction is disabled on tablets, might be set to true + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @param {Date} time + * @param {number} direction + * @param {boolean} correctionEnabled + * @returns {Date|number} + */ + +function snapAwayFromHidden(hiddenDates, time, direction, correctionEnabled) { + var isHidden = getIsHidden(time, hiddenDates); + + if (isHidden.hidden == true) { + if (direction < 0) { + if (correctionEnabled == true) { + return isHidden.startDate - (isHidden.endDate - time) - 1; + } else { + return isHidden.startDate - 1; + } + } else { + if (correctionEnabled == true) { + return isHidden.endDate + (time - isHidden.startDate) + 1; + } else { + return isHidden.endDate + 1; + } + } + } else { + return time; + } +} +/** + * Check if a time is hidden + * + * @param {Date} time + * @param {Array.<{start: Window.start, end: *}>} hiddenDates + * @returns {{hidden: boolean, startDate: Window.start, endDate: *}} + */ + +function getIsHidden(time, hiddenDates) { + for (var i = 0; i < hiddenDates.length; i++) { + var startDate = hiddenDates[i].start; + var endDate = hiddenDates[i].end; + + if (time >= startDate && time < endDate) { + // if the start is entering a hidden zone + return { + hidden: true, + startDate: startDate, + endDate: endDate + }; + } + } + + return { + hidden: false, + startDate: startDate, + endDate: endDate + }; +} + +var DateUtil = /*#__PURE__*/Object.freeze({ + convertHiddenOptions: convertHiddenOptions, + updateHiddenDates: updateHiddenDates, + removeDuplicates: removeDuplicates, + printDates: printDates, + stepOverHiddenDates: stepOverHiddenDates, + toScreen: toScreen, + toTime: toTime, + getHiddenDurationBetween: getHiddenDurationBetween, + getHiddenDurationBeforeStart: getHiddenDurationBeforeStart, + correctTimeForHidden: correctTimeForHidden, + getHiddenDurationBefore: getHiddenDurationBefore, + getAccumulatedHiddenDuration: getAccumulatedHiddenDuration, + snapAwayFromHidden: snapAwayFromHidden, + getIsHidden: getIsHidden +}); + +/** + * A Range controls a numeric range with a start and end value. + * The Range adjusts the range based on mouse events or programmatic changes, + * and triggers events when the range is changing or has been changed. + */ + +var Range = +/*#__PURE__*/ +function (_Component) { + inherits$1(Range, _Component); + + /** + * @param {{dom: Object, domProps: Object, emitter: Emitter}} body + * @param {Object} [options] See description at Range.setOptions + * @constructor Range + * @extends Component + */ + function Range(body, options) { + var _context, _context2, _context3, _context4, _context5, _context6, _context7; + + var _this; + + classCallCheck$1(this, Range); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(Range).call(this)); + var now = moment$3().hours(0).minutes(0).seconds(0).milliseconds(0); + var start = now.clone().add(-3, 'days').valueOf(); + var end = now.clone().add(3, 'days').valueOf(); + _this.millisecondsPerPixelCache = undefined; + + if (options === undefined) { + _this.start = start; + _this.end = end; + } else { + _this.start = options.start || start; + _this.end = options.end || end; + } + + _this.rolling = false; + _this.body = body; + _this.deltaDifference = 0; + _this.scaleOffset = 0; + _this.startToFront = false; + _this.endToFront = true; // default options + + _this.defaultOptions = { + rtl: false, + start: null, + end: null, + moment: moment$3, + direction: 'horizontal', + // 'horizontal' or 'vertical' + moveable: true, + zoomable: true, + min: null, + max: null, + zoomMin: 10, + // milliseconds + zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000, + // milliseconds + rollingMode: { + follow: false, + offset: 0.5 + } + }; + _this.options = util$2.extend({}, _this.defaultOptions); + _this.props = { + touch: {} + }; + _this.animationTimer = null; // drag listeners for dragging + + _this.body.emitter.on('panstart', bind$2(_context = _this._onDragStart).call(_context, assertThisInitialized$1(_this))); + + _this.body.emitter.on('panmove', bind$2(_context2 = _this._onDrag).call(_context2, assertThisInitialized$1(_this))); + + _this.body.emitter.on('panend', bind$2(_context3 = _this._onDragEnd).call(_context3, assertThisInitialized$1(_this))); // mouse wheel for zooming + + + _this.body.emitter.on('mousewheel', bind$2(_context4 = _this._onMouseWheel).call(_context4, assertThisInitialized$1(_this))); // pinch to zoom + + + _this.body.emitter.on('touch', bind$2(_context5 = _this._onTouch).call(_context5, assertThisInitialized$1(_this))); + + _this.body.emitter.on('pinch', bind$2(_context6 = _this._onPinch).call(_context6, assertThisInitialized$1(_this))); // on click of rolling mode button + + + _this.body.dom.rollingModeBtn.addEventListener('click', bind$2(_context7 = _this.startRolling).call(_context7, assertThisInitialized$1(_this))); + + _this.setOptions(options); + + return _this; + } + /** + * Set options for the range controller + * @param {Object} options Available options: + * {number | Date | String} start Start date for the range + * {number | Date | String} end End date for the range + * {number} min Minimum value for start + * {number} max Maximum value for end + * {number} zoomMin Set a minimum value for + * (end - start). + * {number} zoomMax Set a maximum value for + * (end - start). + * {boolean} moveable Enable moving of the range + * by dragging. True by default + * {boolean} zoomable Enable zooming of the range + * by pinching/scrolling. True by default + */ + + + createClass$1(Range, [{ + key: "setOptions", + value: function setOptions(options) { + if (options) { + // copy the options that we know + var fields = ['animation', 'direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable', 'moment', 'activate', 'hiddenDates', 'zoomKey', 'zoomFriction', 'rtl', 'showCurrentTime', 'rollingMode', 'horizontalScroll']; + util$2.selectiveExtend(fields, this.options, options); + + if (options.rollingMode && options.rollingMode.follow) { + this.startRolling(); + } + + if ('start' in options || 'end' in options) { + // apply a new range. both start and end are optional + this.setRange(options.start, options.end); + } + } + } + /** + * Start auto refreshing the current time bar + */ + + }, { + key: "startRolling", + value: function startRolling() { + var me = this; + /** + * Updates the current time. + */ + + function update() { + me.stopRolling(); + me.rolling = true; + var interval = me.end - me.start; + var t = util$2.convert(new Date(), 'Date').valueOf(); + var rollingModeOffset = me.options.rollingMode && me.options.rollingMode.offset || 0.5; + var start = t - interval * rollingModeOffset; + var end = t + interval * (1 - rollingModeOffset); + var options = { + animation: false + }; + me.setRange(start, end, options); // determine interval to refresh + + var scale = me.conversion(me.body.domProps.center.width).scale; + interval = 1 / scale / 10; + if (interval < 30) interval = 30; + if (interval > 1000) interval = 1000; + me.body.dom.rollingModeBtn.style.visibility = "hidden"; // start a renderTimer to adjust for the new time + + me.currentTimeTimer = setTimeout$2(update, interval); + } + + update(); + } + /** + * Stop auto refreshing the current time bar + */ + + }, { + key: "stopRolling", + value: function stopRolling() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + this.rolling = false; + this.body.dom.rollingModeBtn.style.visibility = "visible"; + } + } + /** + * Set a new start and end range + * @param {Date | number | string} start + * @param {Date | number | string} end + * @param {Object} options Available options: + * {boolean | {duration: number, easingFunction: string}} [animation=false] + * If true, the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * {boolean} [byUser=false] + * {Event} event Mouse event + * @param {Function} callback a callback function to be executed at the end of this function + * @param {Function} frameCallback a callback function executed each frame of the range animation. + * The callback will be passed three parameters: + * {number} easeCoefficient an easing coefficent + * {boolean} willDraw If true the caller will redraw after the callback completes + * {boolean} done If true then animation is ending after the current frame + * @return {void} + */ + + }, { + key: "setRange", + value: function setRange(start, end, options, callback, frameCallback) { + if (!options) { + options = {}; + } + + if (options.byUser !== true) { + options.byUser = false; + } + + var me = this; + var finalStart = start != undefined ? util$2.convert(start, 'Date').valueOf() : null; + var finalEnd = end != undefined ? util$2.convert(end, 'Date').valueOf() : null; + + this._cancelAnimation(); + + this.millisecondsPerPixelCache = undefined; + + if (options.animation) { + // true or an Object + var initStart = this.start; + var initEnd = this.end; + var duration = _typeof_1$2(options.animation) === 'object' && 'duration' in options.animation ? options.animation.duration : 500; + var easingName = _typeof_1$2(options.animation) === 'object' && 'easingFunction' in options.animation ? options.animation.easingFunction : 'easeInOutQuad'; + var easingFunction = util$2.easingFunctions[easingName]; + + if (!easingFunction) { + var _context8; + + throw new Error(concat$2(_context8 = "Unknown easing function ".concat(stringify$2(easingName), ". Choose from: ")).call(_context8, keys$3(util$2.easingFunctions).join(', '))); + } + + var initTime = now$2(); + + var anyChanged = false; + + var next = function next() { + if (!me.props.touch.dragging) { + var now = now$2(); + + var time = now - initTime; + var ease = easingFunction(time / duration); + var done = time > duration; + var s = done || finalStart === null ? finalStart : initStart + (finalStart - initStart) * ease; + var e = done || finalEnd === null ? finalEnd : initEnd + (finalEnd - initEnd) * ease; + changed = me._applyRange(s, e); + updateHiddenDates(me.options.moment, me.body, me.options.hiddenDates); + anyChanged = anyChanged || changed; + var params = { + start: new Date(me.start), + end: new Date(me.end), + byUser: options.byUser, + event: options.event + }; + + if (frameCallback) { + frameCallback(ease, changed, done); + } + + if (changed) { + me.body.emitter.emit('rangechange', params); + } + + if (done) { + if (anyChanged) { + me.body.emitter.emit('rangechanged', params); + + if (callback) { + return callback(); + } + } + } else { + // animate with as high as possible frame rate, leave 20 ms in between + // each to prevent the browser from blocking + me.animationTimer = setTimeout$2(next, 20); + } + } + }; + + return next(); + } else { + var changed = this._applyRange(finalStart, finalEnd); + + updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates); + + if (changed) { + var params = { + start: new Date(this.start), + end: new Date(this.end), + byUser: options.byUser, + event: options.event + }; + this.body.emitter.emit('rangechange', params); + clearTimeout(me.timeoutID); + me.timeoutID = setTimeout$2(function () { + me.body.emitter.emit('rangechanged', params); + }, 200); + + if (callback) { + return callback(); + } + } + } + } + /** + * Get the number of milliseconds per pixel. + * + * @returns {undefined|number} + */ + + }, { + key: "getMillisecondsPerPixel", + value: function getMillisecondsPerPixel() { + if (this.millisecondsPerPixelCache === undefined) { + this.millisecondsPerPixelCache = (this.end - this.start) / this.body.dom.center.clientWidth; + } + + return this.millisecondsPerPixelCache; + } + /** + * Stop an animation + * @private + */ + + }, { + key: "_cancelAnimation", + value: function _cancelAnimation() { + if (this.animationTimer) { + clearTimeout(this.animationTimer); + this.animationTimer = null; + } + } + /** + * Set a new start and end range. This method is the same as setRange, but + * does not trigger a range change and range changed event, and it returns + * true when the range is changed + * @param {number} [start] + * @param {number} [end] + * @return {boolean} changed + * @private + */ + + }, { + key: "_applyRange", + value: function _applyRange(start, end) { + var newStart = start != null ? util$2.convert(start, 'Date').valueOf() : this.start; + var newEnd = end != null ? util$2.convert(end, 'Date').valueOf() : this.end; + var max = this.options.max != null ? util$2.convert(this.options.max, 'Date').valueOf() : null; + var min = this.options.min != null ? util$2.convert(this.options.min, 'Date').valueOf() : null; + var diff; // check for valid number + + if (isNaN(newStart) || newStart === null) { + throw new Error("Invalid start \"".concat(start, "\"")); + } + + if (isNaN(newEnd) || newEnd === null) { + throw new Error("Invalid end \"".concat(end, "\"")); + } // prevent end < start + + + if (newEnd < newStart) { + newEnd = newStart; + } // prevent start < min + + + if (min !== null) { + if (newStart < min) { + diff = min - newStart; + newStart += diff; + newEnd += diff; // prevent end > max + + if (max != null) { + if (newEnd > max) { + newEnd = max; + } + } + } + } // prevent end > max + + + if (max !== null) { + if (newEnd > max) { + diff = newEnd - max; + newStart -= diff; + newEnd -= diff; // prevent start < min + + if (min != null) { + if (newStart < min) { + newStart = min; + } + } + } + } // prevent (end-start) < zoomMin + + + if (this.options.zoomMin !== null) { + var zoomMin = _parseFloat$3(this.options.zoomMin); + + if (zoomMin < 0) { + zoomMin = 0; + } + + if (newEnd - newStart < zoomMin) { + // compensate for a scale of 0.5 ms + var compensation = 0.5; + + if (this.end - this.start === zoomMin && newStart >= this.start - compensation && newEnd <= this.end) { + // ignore this action, we are already zoomed to the minimum + newStart = this.start; + newEnd = this.end; + } else { + // zoom to the minimum + diff = zoomMin - (newEnd - newStart); + newStart -= diff / 2; + newEnd += diff / 2; + } + } + } // prevent (end-start) > zoomMax + + + if (this.options.zoomMax !== null) { + var zoomMax = _parseFloat$3(this.options.zoomMax); + + if (zoomMax < 0) { + zoomMax = 0; + } + + if (newEnd - newStart > zoomMax) { + if (this.end - this.start === zoomMax && newStart < this.start && newEnd > this.end) { + // ignore this action, we are already zoomed to the maximum + newStart = this.start; + newEnd = this.end; + } else { + // zoom to the maximum + diff = newEnd - newStart - zoomMax; + newStart += diff / 2; + newEnd -= diff / 2; + } + } + } + + var changed = this.start != newStart || this.end != newEnd; // if the new range does NOT overlap with the old range, emit checkRangedItems to avoid not showing ranged items (ranged meaning has end time, not necessarily of type Range) + + if (!(newStart >= this.start && newStart <= this.end || newEnd >= this.start && newEnd <= this.end) && !(this.start >= newStart && this.start <= newEnd || this.end >= newStart && this.end <= newEnd)) { + this.body.emitter.emit('checkRangedItems'); + } + + this.start = newStart; + this.end = newEnd; + return changed; + } + /** + * Retrieve the current range. + * @return {Object} An object with start and end properties + */ + + }, { + key: "getRange", + value: function getRange() { + return { + start: this.start, + end: this.end + }; + } + /** + * Calculate the conversion offset and scale for current range, based on + * the provided width + * @param {number} width + * @param {number} [totalHidden=0] + * @returns {{offset: number, scale: number}} conversion + */ + + }, { + key: "conversion", + value: function conversion(width, totalHidden) { + return Range.conversion(this.start, this.end, width, totalHidden); + } + /** + * Static method to calculate the conversion offset and scale for a range, + * based on the provided start, end, and width + * @param {number} start + * @param {number} end + * @param {number} width + * @param {number} [totalHidden=0] + * @returns {{offset: number, scale: number}} conversion + */ + + }, { + key: "_onDragStart", + + /** + * Start dragging horizontally or vertically + * @param {Event} event + * @private + */ + value: function _onDragStart(event) { + this.deltaDifference = 0; + this.previousDelta = 0; // only allow dragging when configured as movable + + if (!this.options.moveable) return; // only start dragging when the mouse is inside the current range + + if (!this._isInsideRange(event)) return; // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + + if (!this.props.touch.allowDragging) return; + this.stopRolling(); + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.dragging = true; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'move'; + } + } + /** + * Perform dragging operation + * @param {Event} event + * @private + */ + + }, { + key: "_onDrag", + value: function _onDrag(event) { + if (!event) return; + if (!this.props.touch.dragging) return; // only allow dragging when configured as movable + + if (!this.options.moveable) return; // TODO: this may be redundant in hammerjs2 + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + + if (!this.props.touch.allowDragging) return; + var direction = this.options.direction; + validateDirection(direction); + var delta = direction == 'horizontal' ? event.deltaX : event.deltaY; + delta -= this.deltaDifference; + var interval = this.props.touch.end - this.props.touch.start; // normalize dragging speed if cutout is in between. + + var duration = getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + interval -= duration; + var width = direction == 'horizontal' ? this.body.domProps.center.width : this.body.domProps.center.height; + var diffRange; + + if (this.options.rtl) { + diffRange = delta / width * interval; + } else { + diffRange = -delta / width * interval; + } + + var newStart = this.props.touch.start + diffRange; + var newEnd = this.props.touch.end + diffRange; // snapping times away from hidden zones + + var safeStart = snapAwayFromHidden(this.body.hiddenDates, newStart, this.previousDelta - delta, true); + var safeEnd = snapAwayFromHidden(this.body.hiddenDates, newEnd, this.previousDelta - delta, true); + + if (safeStart != newStart || safeEnd != newEnd) { + this.deltaDifference += delta; + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + + this._onDrag(event); + + return; + } + + this.previousDelta = delta; + + this._applyRange(newStart, newEnd); + + var startDate = new Date(this.start); + var endDate = new Date(this.end); // fire a rangechange event + + this.body.emitter.emit('rangechange', { + start: startDate, + end: endDate, + byUser: true, + event: event + }); // fire a panmove event + + this.body.emitter.emit('panmove'); + } + /** + * Stop dragging operation + * @param {event} event + * @private + */ + + }, { + key: "_onDragEnd", + value: function _onDragEnd(event) { + if (!this.props.touch.dragging) return; // only allow dragging when configured as movable + + if (!this.options.moveable) return; // TODO: this may be redundant in hammerjs2 + // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + + if (!this.props.touch.allowDragging) return; + this.props.touch.dragging = false; + + if (this.body.dom.root) { + this.body.dom.root.style.cursor = 'auto'; + } // fire a rangechanged event + + + this.body.emitter.emit('rangechanged', { + start: new Date(this.start), + end: new Date(this.end), + byUser: true, + event: event + }); + } + /** + * Event handler for mouse wheel event, used to zoom + * Code from http://adomas.org/javascript-mouse-wheel/ + * @param {Event} event + * @private + */ + + }, { + key: "_onMouseWheel", + value: function _onMouseWheel(event) { + // retrieve delta + var delta = 0; + + if (event.wheelDelta) { + /* IE/Opera. */ + delta = event.wheelDelta / 120; + } else if (event.detail) { + /* Mozilla case. */ + // In Mozilla, sign of delta is different than in IE. + // Also, delta is multiple of 3. + delta = -event.detail / 3; + } else if (event.deltaY) { + delta = -event.deltaY / 3; + } // don't allow zoom when the according key is pressed and the zoomKey option or not zoomable but movable + + + if (this.options.zoomKey && !event[this.options.zoomKey] && this.options.zoomable || !this.options.zoomable && this.options.moveable) { + return; + } // only allow zooming when configured as zoomable and moveable + + + if (!(this.options.zoomable && this.options.moveable)) return; // only zoom when the mouse is inside the current range + + if (!this._isInsideRange(event)) return; // If delta is nonzero, handle it. + // Basically, delta is now positive if wheel was scrolled up, + // and negative, if wheel was scrolled down. + + if (delta) { + // perform the zoom action. Delta is normally 1 or -1 + // adjust a negative delta such that zooming in with delta 0.1 + // equals zooming out with a delta -0.1 + var zoomFriction = this.options.zoomFriction || 5; + var scale; + + if (delta < 0) { + scale = 1 - delta / zoomFriction; + } else { + scale = 1 / (1 + delta / zoomFriction); + } // calculate center, the date to zoom around + + + var pointerDate; + + if (this.rolling) { + var rollingModeOffset = this.options.rollingMode && this.options.rollingMode.offset || 0.5; + pointerDate = this.start + (this.end - this.start) * rollingModeOffset; + } else { + var pointer = this.getPointer({ + x: event.clientX, + y: event.clientY + }, this.body.dom.center); + pointerDate = this._pointerToDate(pointer); + } + + this.zoom(scale, pointerDate, delta, event); // Prevent default actions caused by mouse wheel + // (else the page and timeline both scroll) + + event.preventDefault(); + } + } + /** + * Start of a touch gesture + * @param {Event} event + * @private + */ + + }, { + key: "_onTouch", + value: function _onTouch(event) { + // eslint-disable-line no-unused-vars + this.props.touch.start = this.start; + this.props.touch.end = this.end; + this.props.touch.allowDragging = true; + this.props.touch.center = null; + this.scaleOffset = 0; + this.deltaDifference = 0; // Disable the browser default handling of this event. + + util$2.preventDefault(event); + } + /** + * Handle pinch event + * @param {Event} event + * @private + */ + + }, { + key: "_onPinch", + value: function _onPinch(event) { + // only allow zooming when configured as zoomable and moveable + if (!(this.options.zoomable && this.options.moveable)) return; // Disable the browser default handling of this event. + + util$2.preventDefault(event); + this.props.touch.allowDragging = false; + + if (!this.props.touch.center) { + this.props.touch.center = this.getPointer(event.center, this.body.dom.center); + } + + this.stopRolling(); + var scale = 1 / (event.scale + this.scaleOffset); + + var centerDate = this._pointerToDate(this.props.touch.center); + + var hiddenDuration = getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, centerDate); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; // calculate new start and end + + var newStart = centerDate - hiddenDurationBefore + (this.props.touch.start - (centerDate - hiddenDurationBefore)) * scale; + var newEnd = centerDate + hiddenDurationAfter + (this.props.touch.end - (centerDate + hiddenDurationAfter)) * scale; // snapping times away from hidden zones + + this.startToFront = 1 - scale <= 0; // used to do the right auto correction with periodic hidden times + + this.endToFront = scale - 1 <= 0; // used to do the right auto correction with periodic hidden times + + var safeStart = snapAwayFromHidden(this.body.hiddenDates, newStart, 1 - scale, true); + var safeEnd = snapAwayFromHidden(this.body.hiddenDates, newEnd, scale - 1, true); + + if (safeStart != newStart || safeEnd != newEnd) { + this.props.touch.start = safeStart; + this.props.touch.end = safeEnd; + this.scaleOffset = 1 - event.scale; + newStart = safeStart; + newEnd = safeEnd; + } + + var options = { + animation: false, + byUser: true, + event: event + }; + this.setRange(newStart, newEnd, options); + this.startToFront = false; // revert to default + + this.endToFront = true; // revert to default + } + /** + * Test whether the mouse from a mouse event is inside the visible window, + * between the current start and end date + * @param {Object} event + * @return {boolean} Returns true when inside the visible window + * @private + */ + + }, { + key: "_isInsideRange", + value: function _isInsideRange(event) { + // calculate the time where the mouse is, check whether inside + // and no scroll action should happen. + var clientX = event.center ? event.center.x : event.clientX; + var centerContainerRect = this.body.dom.centerContainer.getBoundingClientRect(); + var x = this.options.rtl ? clientX - centerContainerRect.left : centerContainerRect.right - clientX; + var time = this.body.util.toTime(x); + return time >= this.start && time <= this.end; + } + /** + * Helper function to calculate the center date for zooming + * @param {{x: number, y: number}} pointer + * @return {number} date + * @private + */ + + }, { + key: "_pointerToDate", + value: function _pointerToDate(pointer) { + var conversion; + var direction = this.options.direction; + validateDirection(direction); + + if (direction == 'horizontal') { + return this.body.util.toTime(pointer.x).valueOf(); + } else { + var height = this.body.domProps.center.height; + conversion = this.conversion(height); + return pointer.y / conversion.scale + conversion.offset; + } + } + /** + * Get the pointer location relative to the location of the dom element + * @param {{x: number, y: number}} touch + * @param {Element} element HTML DOM element + * @return {{x: number, y: number}} pointer + * @private + */ + + }, { + key: "getPointer", + value: function getPointer(touch, element) { + var elementRect = element.getBoundingClientRect(); + + if (this.options.rtl) { + return { + x: elementRect.right - touch.x, + y: touch.y - elementRect.top + }; + } else { + return { + x: touch.x - elementRect.left, + y: touch.y - elementRect.top + }; + } + } + /** + * Zoom the range the given scale in or out. Start and end date will + * be adjusted, and the timeline will be redrawn. You can optionally give a + * date around which to zoom. + * For example, try scale = 0.9 or 1.1 + * @param {number} scale Scaling factor. Values above 1 will zoom out, + * values below 1 will zoom in. + * @param {number} [center] Value representing a date around which will + * be zoomed. + * @param {number} delta + * @param {Event} event + */ + + }, { + key: "zoom", + value: function zoom(scale, center, delta, event) { + // if centerDate is not provided, take it half between start Date and end Date + if (center == null) { + center = (this.start + this.end) / 2; + } + + var hiddenDuration = getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end); + var hiddenDurationBefore = getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, center); + var hiddenDurationAfter = hiddenDuration - hiddenDurationBefore; // calculate new start and end + + var newStart = center - hiddenDurationBefore + (this.start - (center - hiddenDurationBefore)) * scale; + var newEnd = center + hiddenDurationAfter + (this.end - (center + hiddenDurationAfter)) * scale; // snapping times away from hidden zones + + this.startToFront = delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + + this.endToFront = -delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times + + var safeStart = snapAwayFromHidden(this.body.hiddenDates, newStart, delta, true); + var safeEnd = snapAwayFromHidden(this.body.hiddenDates, newEnd, -delta, true); + + if (safeStart != newStart || safeEnd != newEnd) { + newStart = safeStart; + newEnd = safeEnd; + } + + var options = { + animation: false, + byUser: true, + event: event + }; + this.setRange(newStart, newEnd, options); + this.startToFront = false; // revert to default + + this.endToFront = true; // revert to default + } + /** + * Move the range with a given delta to the left or right. Start and end + * value will be adjusted. For example, try delta = 0.1 or -0.1 + * @param {number} delta Moving amount. Positive value will move right, + * negative value will move left + */ + + }, { + key: "move", + value: function move(delta) { + // zoom start Date and end Date relative to the centerDate + var diff = this.end - this.start; // apply new values + + var newStart = this.start + diff * delta; + var newEnd = this.end + diff * delta; // TODO: reckon with min and max range + + this.start = newStart; + this.end = newEnd; + } + /** + * Move the range to a new center point + * @param {number} moveTo New center point of the range + */ + + }, { + key: "moveTo", + value: function moveTo(_moveTo) { + var center = (this.start + this.end) / 2; + var diff = center - _moveTo; // calculate new start and end + + var newStart = this.start - diff; + var newEnd = this.end - diff; + var options = { + animation: false, + byUser: true, + event: null + }; + this.setRange(newStart, newEnd, options); + } + }], [{ + key: "conversion", + value: function conversion(start, end, width, totalHidden) { + if (totalHidden === undefined) { + totalHidden = 0; + } + + if (width != 0 && end - start != 0) { + return { + offset: start, + scale: width / (end - start - totalHidden) + }; + } else { + return { + offset: 0, + scale: 1 + }; + } + } + }]); + + return Range; +}(Component); + +function validateDirection(direction) { + if (direction != 'horizontal' && direction != 'vertical') { + throw new TypeError("Unknown direction \"".concat(direction, "\". Choose \"horizontal\" or \"vertical\".")); + } +} + +var setInterval = path.setInterval; + +var setInterval$1 = setInterval; + +var $some = arrayIteration.some; // `Array.prototype.some` method +// https://tc39.github.io/ecma262/#sec-array.prototype.some + +_export({ + target: 'Array', + proto: true, + forced: sloppyArrayMethod('some') +}, { + some: function some(callbackfn + /* , thisArg */ + ) { + return $some(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var some = entryVirtual('Array').some; + +var ArrayPrototype$4 = Array.prototype; + +var some_1 = function (it) { + var own = it.some; + return it === ArrayPrototype$4 || it instanceof Array && own === ArrayPrototype$4.some ? some : own; +}; + +var some$1 = some_1; + +var some$2 = some$1; + +var max$1 = Math.max; +var min$2 = Math.min; +var MAX_SAFE_INTEGER$1 = 0x1FFFFFFFFFFFFF; +var MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded'; // `Array.prototype.splice` method +// https://tc39.github.io/ecma262/#sec-array.prototype.splice +// with adding support of @@species + +_export({ + target: 'Array', + proto: true, + forced: !arrayMethodHasSpeciesSupport('splice') +}, { + splice: function splice(start, deleteCount + /* , ...items */ + ) { + var O = toObject(this); + var len = toLength(O.length); + var actualStart = toAbsoluteIndex(start, len); + var argumentsLength = arguments.length; + var insertCount, actualDeleteCount, A, k, from, to; + + if (argumentsLength === 0) { + insertCount = actualDeleteCount = 0; + } else if (argumentsLength === 1) { + insertCount = 0; + actualDeleteCount = len - actualStart; + } else { + insertCount = argumentsLength - 2; + actualDeleteCount = min$2(max$1(toInteger(deleteCount), 0), len - actualStart); + } + + if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER$1) { + throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED); + } + + A = arraySpeciesCreate(O, actualDeleteCount); + + for (k = 0; k < actualDeleteCount; k++) { + from = actualStart + k; + if (from in O) createProperty(A, k, O[from]); + } + + A.length = actualDeleteCount; + + if (insertCount < actualDeleteCount) { + for (k = actualStart; k < len - actualDeleteCount; k++) { + from = k + actualDeleteCount; + to = k + insertCount; + if (from in O) O[to] = O[from];else delete O[to]; + } + + for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1]; + } else if (insertCount > actualDeleteCount) { + for (k = len - actualDeleteCount; k > actualStart; k--) { + from = k + actualDeleteCount - 1; + to = k + insertCount - 1; + if (from in O) O[to] = O[from];else delete O[to]; + } + } + + for (k = 0; k < insertCount; k++) { + O[k + actualStart] = arguments[k + 2]; + } + + O.length = len - actualDeleteCount + insertCount; + return A; + } +}); + +var splice = entryVirtual('Array').splice; + +var ArrayPrototype$5 = Array.prototype; + +var splice_1 = function (it) { + var own = it.splice; + return it === ArrayPrototype$5 || it instanceof Array && own === ArrayPrototype$5.splice ? splice : own; +}; + +var splice$1 = splice_1; + +var splice$2 = splice$1; + +var $indexOf = arrayIncludes.indexOf; +var nativeIndexOf = [].indexOf; +var NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0; +var SLOPPY_METHOD$1 = sloppyArrayMethod('indexOf'); // `Array.prototype.indexOf` method +// https://tc39.github.io/ecma262/#sec-array.prototype.indexof + +_export({ + target: 'Array', + proto: true, + forced: NEGATIVE_ZERO || SLOPPY_METHOD$1 +}, { + indexOf: function indexOf(searchElement + /* , fromIndex = 0 */ + ) { + return NEGATIVE_ZERO // convert -0 to +0 + ? nativeIndexOf.apply(this, arguments) || 0 : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var indexOf$1 = entryVirtual('Array').indexOf; + +var ArrayPrototype$6 = Array.prototype; + +var indexOf_1 = function (it) { + var own = it.indexOf; + return it === ArrayPrototype$6 || it instanceof Array && own === ArrayPrototype$6.indexOf ? indexOf$1 : own; +}; + +var indexOf$2 = indexOf_1; + +var indexOf$3 = indexOf$2; + +/** + * Expose `Emitter`. + */ +var emitterComponent = Emitter; +/** + * Initialize a new `Emitter`. + * + * @api public + */ + +function Emitter(obj) { + if (obj) return mixin(obj); +} +/** + * Mixin the emitter properties. + * + * @param {Object} obj + * @return {Object} + * @api private + */ + +function mixin(obj) { + for (var key in Emitter.prototype) { + obj[key] = Emitter.prototype[key]; + } + + return obj; +} +/** + * Listen on the given `event` with `fn`. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + +Emitter.prototype.on = Emitter.prototype.addEventListener = function (event, fn) { + this._callbacks = this._callbacks || {}; + (this._callbacks[event] = this._callbacks[event] || []).push(fn); + return this; +}; +/** + * Adds an `event` listener that will be invoked a single + * time then automatically removed. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + +Emitter.prototype.once = function (event, fn) { + var self = this; + this._callbacks = this._callbacks || {}; + + function on() { + self.off(event, on); + fn.apply(this, arguments); + } + + on.fn = fn; + this.on(event, on); + return this; +}; +/** + * Remove the given callback for `event` or all + * registered callbacks. + * + * @param {String} event + * @param {Function} fn + * @return {Emitter} + * @api public + */ + + +Emitter.prototype.off = Emitter.prototype.removeListener = Emitter.prototype.removeAllListeners = Emitter.prototype.removeEventListener = function (event, fn) { + this._callbacks = this._callbacks || {}; // all + + if (0 == arguments.length) { + this._callbacks = {}; + return this; + } // specific event + + + var callbacks = this._callbacks[event]; + if (!callbacks) return this; // remove all handlers + + if (1 == arguments.length) { + delete this._callbacks[event]; + return this; + } // remove specific handler + + + var cb; + + for (var i = 0; i < callbacks.length; i++) { + cb = callbacks[i]; + + if (cb === fn || cb.fn === fn) { + callbacks.splice(i, 1); + break; + } + } + + return this; +}; +/** + * Emit `event` with the given args. + * + * @param {String} event + * @param {Mixed} ... + * @return {Emitter} + */ + + +Emitter.prototype.emit = function (event) { + this._callbacks = this._callbacks || {}; + var args = [].slice.call(arguments, 1), + callbacks = this._callbacks[event]; + + if (callbacks) { + callbacks = callbacks.slice(0); + + for (var i = 0, len = callbacks.length; i < len; ++i) { + callbacks[i].apply(this, args); + } + } + + return this; +}; +/** + * Return array of callbacks for `event`. + * + * @param {String} event + * @return {Array} + * @api public + */ + + +Emitter.prototype.listeners = function (event) { + this._callbacks = this._callbacks || {}; + return this._callbacks[event] || []; +}; +/** + * Check if this emitter has `event` handlers. + * + * @param {String} event + * @return {Boolean} + * @api public + */ + + +Emitter.prototype.hasListeners = function (event) { + return !!this.listeners(event).length; +}; + +var propagating = createCommonjsModule$2(function (module, exports) { + + (function (factory) { + { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } + })(function () { + var _firstTarget = null; // singleton, will contain the target element where the touch event started + + /** + * Extend an Hammer.js instance with event propagation. + * + * Features: + * - Events emitted by hammer will propagate in order from child to parent + * elements. + * - Events are extended with a function `event.stopPropagation()` to stop + * propagation to parent elements. + * - An option `preventDefault` to stop all default browser behavior. + * + * Usage: + * var hammer = propagatingHammer(new Hammer(element)); + * var hammer = propagatingHammer(new Hammer(element), {preventDefault: true}); + * + * @param {Hammer.Manager} hammer An hammer instance. + * @param {Object} [options] Available options: + * - `preventDefault: true | false | 'mouse' | 'touch' | 'pen'`. + * Enforce preventing the default browser behavior. + * Cannot be set to `false`. + * @return {Hammer.Manager} Returns the same hammer instance with extended + * functionality + */ + + return function propagating(hammer, options) { + var _options = options || { + preventDefault: false + }; + + if (hammer.Manager) { + // This looks like the Hammer constructor. + // Overload the constructors with our own. + var Hammer = hammer; + + var PropagatingHammer = function (element, options) { + var o = Object.create(_options); + if (options) Hammer.assign(o, options); + return propagating(new Hammer(element, o), o); + }; + + Hammer.assign(PropagatingHammer, Hammer); + + PropagatingHammer.Manager = function (element, options) { + var o = Object.create(_options); + if (options) Hammer.assign(o, options); + return propagating(new Hammer.Manager(element, o), o); + }; + + return PropagatingHammer; + } // create a wrapper object which will override the functions + // `on`, `off`, `destroy`, and `emit` of the hammer instance + + + var wrapper = Object.create(hammer); // attach to DOM element + + var element = hammer.element; + if (!element.hammer) element.hammer = []; + element.hammer.push(wrapper); // register an event to catch the start of a gesture and store the + // target in a singleton + + hammer.on('hammer.input', function (event) { + if (_options.preventDefault === true || _options.preventDefault === event.pointerType) { + event.preventDefault(); + } + + if (event.isFirst) { + _firstTarget = event.target; + } + }); + /** @type {Object.>} */ + + wrapper._handlers = {}; + /** + * Register a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} handler A callback function, called as handler(event) + * @returns {Hammer.Manager} Returns the hammer instance + */ + + wrapper.on = function (events, handler) { + // register the handler + split(events).forEach(function (event) { + var _handlers = wrapper._handlers[event]; + + if (!_handlers) { + wrapper._handlers[event] = _handlers = []; // register the static, propagated handler + + hammer.on(event, propagatedHandler); + } + + _handlers.push(handler); + }); + return wrapper; + }; + /** + * Unregister a handler for one or multiple events + * @param {String} events A space separated string with events + * @param {function} [handler] Optional. The registered handler. If not + * provided, all handlers for given events + * are removed. + * @returns {Hammer.Manager} Returns the hammer instance + */ + + + wrapper.off = function (events, handler) { + // unregister the handler + split(events).forEach(function (event) { + var _handlers = wrapper._handlers[event]; + + if (_handlers) { + _handlers = handler ? _handlers.filter(function (h) { + return h !== handler; + }) : []; + + if (_handlers.length > 0) { + wrapper._handlers[event] = _handlers; + } else { + // remove static, propagated handler + hammer.off(event, propagatedHandler); + delete wrapper._handlers[event]; + } + } + }); + return wrapper; + }; + /** + * Emit to the event listeners + * @param {string} eventType + * @param {Event} event + */ + + + wrapper.emit = function (eventType, event) { + _firstTarget = event.target; + hammer.emit(eventType, event); + }; + + wrapper.destroy = function () { + // Detach from DOM element + var hammers = hammer.element.hammer; + var idx = hammers.indexOf(wrapper); + if (idx !== -1) hammers.splice(idx, 1); + if (!hammers.length) delete hammer.element.hammer; // clear all handlers + + wrapper._handlers = {}; // call original hammer destroy + + hammer.destroy(); + }; // split a string with space separated words + + + function split(events) { + return events.match(/[^ ]+/g); + } + /** + * A static event handler, applying event propagation. + * @param {Object} event + */ + + + function propagatedHandler(event) { + // let only a single hammer instance handle this event + if (event.type !== 'hammer.input') { + // it is possible that the same srcEvent is used with multiple hammer events, + // we keep track on which events are handled in an object _handled + if (!event.srcEvent._handled) { + event.srcEvent._handled = {}; + } + + if (event.srcEvent._handled[event.type]) { + return; + } else { + event.srcEvent._handled[event.type] = true; + } + } // attach a stopPropagation function to the event + + + var stopped = false; + + event.stopPropagation = function () { + stopped = true; + }; //wrap the srcEvent's stopPropagation to also stop hammer propagation: + + + var srcStop = event.srcEvent.stopPropagation.bind(event.srcEvent); + + if (typeof srcStop == "function") { + event.srcEvent.stopPropagation = function () { + srcStop(); + event.stopPropagation(); + }; + } // attach firstTarget property to the event + + + event.firstTarget = _firstTarget; // propagate over all elements (until stopped) + + var elem = _firstTarget; + + while (elem && !stopped) { + var elemHammer = elem.hammer; + + if (elemHammer) { + var _handlers; + + for (var k = 0; k < elemHammer.length; k++) { + _handlers = elemHammer[k]._handlers[event.type]; + if (_handlers) for (var i = 0; i < _handlers.length && !stopped; i++) { + _handlers[i](event); + } + } + } + + elem = elem.parentNode; + } + } + + return wrapper; + }; + }); +}); + +/*! Hammer.JS - v2.0.17-rc - 2019-12-16 + * http://naver.github.io/egjs + * + * Forked By Naver egjs + * Copyright (c) hammerjs + * Licensed under the MIT license */ +function _extends() { + _extends = Object.assign || function (target) { + for (var i = 1; i < arguments.length; i++) { + var source = arguments[i]; + + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + target[key] = source[key]; + } + } + } + + return target; + }; + + return _extends.apply(this, arguments); +} + +function _inheritsLoose(subClass, superClass) { + subClass.prototype = Object.create(superClass.prototype); + subClass.prototype.constructor = subClass; + subClass.__proto__ = superClass; +} + +function _assertThisInitialized$2(self) { + if (self === void 0) { + throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); + } + + return self; +} +/** + * @private + * extend object. + * means that properties in dest will be overwritten by the ones in src. + * @param {Object} target + * @param {...Object} objects_to_assign + * @returns {Object} target + */ + + +var assign; + +if (typeof Object.assign !== 'function') { + assign = function assign(target) { + if (target === undefined || target === null) { + throw new TypeError('Cannot convert undefined or null to object'); + } + + var output = Object(target); + + for (var index = 1; index < arguments.length; index++) { + var source = arguments[index]; + + if (source !== undefined && source !== null) { + for (var nextKey in source) { + if (source.hasOwnProperty(nextKey)) { + output[nextKey] = source[nextKey]; + } + } + } + } + + return output; + }; +} else { + assign = Object.assign; +} + +var assign$1 = assign; +var VENDOR_PREFIXES = ['', 'webkit', 'Moz', 'MS', 'ms', 'o']; +var TEST_ELEMENT = typeof document === "undefined" ? { + style: {} +} : document.createElement('div'); +var TYPE_FUNCTION = 'function'; +var round = Math.round, + abs = Math.abs; +var now$3 = Date.now; +/** + * @private + * get the prefixed property + * @param {Object} obj + * @param {String} property + * @returns {String|Undefined} prefixed + */ + +function prefixed(obj, property) { + var prefix; + var prop; + var camelProp = property[0].toUpperCase() + property.slice(1); + var i = 0; + + while (i < VENDOR_PREFIXES.length) { + prefix = VENDOR_PREFIXES[i]; + prop = prefix ? prefix + camelProp : property; + + if (prop in obj) { + return prop; + } + + i++; + } + + return undefined; +} +/* eslint-disable no-new-func, no-nested-ternary */ + + +var win; + +if (typeof window === "undefined") { + // window is undefined in node.js + win = {}; +} else { + win = window; +} + +var PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction'); +var NATIVE_TOUCH_ACTION = PREFIXED_TOUCH_ACTION !== undefined; + +function getTouchActionProps() { + if (!NATIVE_TOUCH_ACTION) { + return false; + } + + var touchMap = {}; + var cssSupports = win.CSS && win.CSS.supports; + ['auto', 'manipulation', 'pan-y', 'pan-x', 'pan-x pan-y', 'none'].forEach(function (val) { + // If css.supports is not supported but there is native touch-action assume it supports + // all values. This is the case for IE 10 and 11. + return touchMap[val] = cssSupports ? win.CSS.supports('touch-action', val) : true; + }); + return touchMap; +} + +var TOUCH_ACTION_COMPUTE = 'compute'; +var TOUCH_ACTION_AUTO = 'auto'; +var TOUCH_ACTION_MANIPULATION = 'manipulation'; // not implemented + +var TOUCH_ACTION_NONE = 'none'; +var TOUCH_ACTION_PAN_X = 'pan-x'; +var TOUCH_ACTION_PAN_Y = 'pan-y'; +var TOUCH_ACTION_MAP = getTouchActionProps(); +var MOBILE_REGEX = /mobile|tablet|ip(ad|hone|od)|android/i; +var SUPPORT_TOUCH = 'ontouchstart' in win; +var SUPPORT_POINTER_EVENTS = prefixed(win, 'PointerEvent') !== undefined; +var SUPPORT_ONLY_TOUCH = SUPPORT_TOUCH && MOBILE_REGEX.test(navigator.userAgent); +var INPUT_TYPE_TOUCH = 'touch'; +var INPUT_TYPE_PEN = 'pen'; +var INPUT_TYPE_MOUSE = 'mouse'; +var INPUT_TYPE_KINECT = 'kinect'; +var COMPUTE_INTERVAL = 25; +var INPUT_START = 1; +var INPUT_MOVE = 2; +var INPUT_END = 4; +var INPUT_CANCEL = 8; +var DIRECTION_NONE = 1; +var DIRECTION_LEFT = 2; +var DIRECTION_RIGHT = 4; +var DIRECTION_UP = 8; +var DIRECTION_DOWN = 16; +var DIRECTION_HORIZONTAL = DIRECTION_LEFT | DIRECTION_RIGHT; +var DIRECTION_VERTICAL = DIRECTION_UP | DIRECTION_DOWN; +var DIRECTION_ALL = DIRECTION_HORIZONTAL | DIRECTION_VERTICAL; +var PROPS_XY = ['x', 'y']; +var PROPS_CLIENT_XY = ['clientX', 'clientY']; +/** + * @private + * walk objects and arrays + * @param {Object} obj + * @param {Function} iterator + * @param {Object} context + */ + +function each(obj, iterator, context) { + var i; + + if (!obj) { + return; + } + + if (obj.forEach) { + obj.forEach(iterator, context); + } else if (obj.length !== undefined) { + i = 0; + + while (i < obj.length) { + iterator.call(context, obj[i], i, obj); + i++; + } + } else { + for (i in obj) { + obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj); + } + } +} +/** + * @private + * let a boolean value also be a function that must return a boolean + * this first item in args will be used as the context + * @param {Boolean|Function} val + * @param {Array} [args] + * @returns {Boolean} + */ + + +function boolOrFn(val, args) { + if (typeof val === TYPE_FUNCTION) { + return val.apply(args ? args[0] || undefined : undefined, args); + } + + return val; +} +/** + * @private + * small indexOf wrapper + * @param {String} str + * @param {String} find + * @returns {Boolean} found + */ + + +function inStr(str, find) { + return str.indexOf(find) > -1; +} +/** + * @private + * when the touchActions are collected they are not a valid value, so we need to clean things up. * + * @param {String} actions + * @returns {*} + */ + + +function cleanTouchActions(actions) { + // none + if (inStr(actions, TOUCH_ACTION_NONE)) { + return TOUCH_ACTION_NONE; + } + + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X); + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); // if both pan-x and pan-y are set (different recognizers + // for different directions, e.g. horizontal pan but vertical swipe?) + // we need none (as otherwise with pan-x pan-y combined none of these + // recognizers will work, since the browser would handle all panning + + if (hasPanX && hasPanY) { + return TOUCH_ACTION_NONE; + } // pan-x OR pan-y + + + if (hasPanX || hasPanY) { + return hasPanX ? TOUCH_ACTION_PAN_X : TOUCH_ACTION_PAN_Y; + } // manipulation + + + if (inStr(actions, TOUCH_ACTION_MANIPULATION)) { + return TOUCH_ACTION_MANIPULATION; + } + + return TOUCH_ACTION_AUTO; +} +/** + * @private + * Touch Action + * sets the touchAction property or uses the js alternative + * @param {Manager} manager + * @param {String} value + * @constructor + */ + + +var TouchAction = +/*#__PURE__*/ +function () { + function TouchAction(manager, value) { + this.manager = manager; + this.set(value); + } + /** + * @private + * set the touchAction value on the element or enable the polyfill + * @param {String} value + */ + + + var _proto = TouchAction.prototype; + + _proto.set = function set(value) { + // find out the touch-action by the event handlers + if (value === TOUCH_ACTION_COMPUTE) { + value = this.compute(); + } + + if (NATIVE_TOUCH_ACTION && this.manager.element.style && TOUCH_ACTION_MAP[value]) { + this.manager.element.style[PREFIXED_TOUCH_ACTION] = value; + } + + this.actions = value.toLowerCase().trim(); + }; + /** + * @private + * just re-set the touchAction value + */ + + + _proto.update = function update() { + this.set(this.manager.options.touchAction); + }; + /** + * @private + * compute the value for the touchAction property based on the recognizer's settings + * @returns {String} value + */ + + + _proto.compute = function compute() { + var actions = []; + each(this.manager.recognizers, function (recognizer) { + if (boolOrFn(recognizer.options.enable, [recognizer])) { + actions = actions.concat(recognizer.getTouchAction()); + } + }); + return cleanTouchActions(actions.join(' ')); + }; + /** + * @private + * this method is called on each input cycle and provides the preventing of the browser behavior + * @param {Object} input + */ + + + _proto.preventDefaults = function preventDefaults(input) { + var srcEvent = input.srcEvent; + var direction = input.offsetDirection; // if the touch action did prevented once this session + + if (this.manager.session.prevented) { + srcEvent.preventDefault(); + return; + } + + var actions = this.actions; + var hasNone = inStr(actions, TOUCH_ACTION_NONE) && !TOUCH_ACTION_MAP[TOUCH_ACTION_NONE]; + var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_Y]; + var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_X]; + + if (hasNone) { + // do not prevent defaults if this is a tap gesture + var isTapPointer = input.pointers.length === 1; + var isTapMovement = input.distance < 2; + var isTapTouchTime = input.deltaTime < 250; + + if (isTapPointer && isTapMovement && isTapTouchTime) { + return; + } + } + + if (hasPanX && hasPanY) { + // `pan-x pan-y` means browser handles all scrolling/panning, do not prevent + return; + } + + if (hasNone || hasPanY && direction & DIRECTION_HORIZONTAL || hasPanX && direction & DIRECTION_VERTICAL) { + return this.preventSrc(srcEvent); + } + }; + /** + * @private + * call preventDefault to prevent the browser's default behavior (scrolling in most cases) + * @param {Object} srcEvent + */ + + + _proto.preventSrc = function preventSrc(srcEvent) { + this.manager.session.prevented = true; + srcEvent.preventDefault(); + }; + + return TouchAction; +}(); +/** + * @private + * find if a node is in the given parent + * @method hasParent + * @param {HTMLElement} node + * @param {HTMLElement} parent + * @return {Boolean} found + */ + + +function hasParent$1(node, parent) { + while (node) { + if (node === parent) { + return true; + } + + node = node.parentNode; + } + + return false; +} +/** + * @private + * get the center of all the pointers + * @param {Array} pointers + * @return {Object} center contains `x` and `y` properties + */ + + +function getCenter(pointers) { + var pointersLength = pointers.length; // no need to loop when only one touch + + if (pointersLength === 1) { + return { + x: round(pointers[0].clientX), + y: round(pointers[0].clientY) + }; + } + + var x = 0; + var y = 0; + var i = 0; + + while (i < pointersLength) { + x += pointers[i].clientX; + y += pointers[i].clientY; + i++; + } + + return { + x: round(x / pointersLength), + y: round(y / pointersLength) + }; +} +/** + * @private + * create a simple clone from the input used for storage of firstInput and firstMultiple + * @param {Object} input + * @returns {Object} clonedInputData + */ + + +function simpleCloneInputData(input) { + // make a simple copy of the pointers because we will get a reference if we don't + // we only need clientXY for the calculations + var pointers = []; + var i = 0; + + while (i < input.pointers.length) { + pointers[i] = { + clientX: round(input.pointers[i].clientX), + clientY: round(input.pointers[i].clientY) + }; + i++; + } + + return { + timeStamp: now$3(), + pointers: pointers, + center: getCenter(pointers), + deltaX: input.deltaX, + deltaY: input.deltaY + }; +} +/** + * @private + * calculate the absolute distance between two points + * @param {Object} p1 {x, y} + * @param {Object} p2 {x, y} + * @param {Array} [props] containing x and y keys + * @return {Number} distance + */ + + +function getDistance(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + + var x = p2[props[0]] - p1[props[0]]; + var y = p2[props[1]] - p1[props[1]]; + return Math.sqrt(x * x + y * y); +} +/** + * @private + * calculate the angle between two coordinates + * @param {Object} p1 + * @param {Object} p2 + * @param {Array} [props] containing x and y keys + * @return {Number} angle + */ + + +function getAngle(p1, p2, props) { + if (!props) { + props = PROPS_XY; + } + + var x = p2[props[0]] - p1[props[0]]; + var y = p2[props[1]] - p1[props[1]]; + return Math.atan2(y, x) * 180 / Math.PI; +} +/** + * @private + * get the direction between two points + * @param {Number} x + * @param {Number} y + * @return {Number} direction + */ + + +function getDirection(x, y) { + if (x === y) { + return DIRECTION_NONE; + } + + if (abs(x) >= abs(y)) { + return x < 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + } + + return y < 0 ? DIRECTION_UP : DIRECTION_DOWN; +} + +function computeDeltaXY(session, input) { + var center = input.center; // let { offsetDelta:offset = {}, prevDelta = {}, prevInput = {} } = session; + // jscs throwing error on defalut destructured values and without defaults tests fail + + var offset = session.offsetDelta || {}; + var prevDelta = session.prevDelta || {}; + var prevInput = session.prevInput || {}; + + if (input.eventType === INPUT_START || prevInput.eventType === INPUT_END) { + prevDelta = session.prevDelta = { + x: prevInput.deltaX || 0, + y: prevInput.deltaY || 0 + }; + offset = session.offsetDelta = { + x: center.x, + y: center.y + }; + } + + input.deltaX = prevDelta.x + (center.x - offset.x); + input.deltaY = prevDelta.y + (center.y - offset.y); +} +/** + * @private + * calculate the velocity between two points. unit is in px per ms. + * @param {Number} deltaTime + * @param {Number} x + * @param {Number} y + * @return {Object} velocity `x` and `y` + */ + + +function getVelocity(deltaTime, x, y) { + return { + x: x / deltaTime || 0, + y: y / deltaTime || 0 + }; +} +/** + * @private + * calculate the scale factor between two pointersets + * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} scale + */ + + +function getScale(start, end) { + return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT_XY); +} +/** + * @private + * calculate the rotation degrees between two pointersets + * @param {Array} start array of pointers + * @param {Array} end array of pointers + * @return {Number} rotation + */ + + +function getRotation(start, end) { + return getAngle(end[1], end[0], PROPS_CLIENT_XY) + getAngle(start[1], start[0], PROPS_CLIENT_XY); +} +/** + * @private + * velocity is calculated every x ms + * @param {Object} session + * @param {Object} input + */ + + +function computeIntervalInputData(session, input) { + var last = session.lastInterval || input; + var deltaTime = input.timeStamp - last.timeStamp; + var velocity; + var velocityX; + var velocityY; + var direction; + + if (input.eventType !== INPUT_CANCEL && (deltaTime > COMPUTE_INTERVAL || last.velocity === undefined)) { + var deltaX = input.deltaX - last.deltaX; + var deltaY = input.deltaY - last.deltaY; + var v = getVelocity(deltaTime, deltaX, deltaY); + velocityX = v.x; + velocityY = v.y; + velocity = abs(v.x) > abs(v.y) ? v.x : v.y; + direction = getDirection(deltaX, deltaY); + session.lastInterval = input; + } else { + // use latest velocity info if it doesn't overtake a minimum period + velocity = last.velocity; + velocityX = last.velocityX; + velocityY = last.velocityY; + direction = last.direction; + } + + input.velocity = velocity; + input.velocityX = velocityX; + input.velocityY = velocityY; + input.direction = direction; +} +/** +* @private + * extend the data with some usable properties like scale, rotate, velocity etc + * @param {Object} manager + * @param {Object} input + */ + + +function computeInputData(manager, input) { + var session = manager.session; + var pointers = input.pointers; + var pointersLength = pointers.length; // store the first input to calculate the distance and direction + + if (!session.firstInput) { + session.firstInput = simpleCloneInputData(input); + } // to compute scale and rotation we need to store the multiple touches + + + if (pointersLength > 1 && !session.firstMultiple) { + session.firstMultiple = simpleCloneInputData(input); + } else if (pointersLength === 1) { + session.firstMultiple = false; + } + + var firstInput = session.firstInput, + firstMultiple = session.firstMultiple; + var offsetCenter = firstMultiple ? firstMultiple.center : firstInput.center; + var center = input.center = getCenter(pointers); + input.timeStamp = now$3(); + input.deltaTime = input.timeStamp - firstInput.timeStamp; + input.angle = getAngle(offsetCenter, center); + input.distance = getDistance(offsetCenter, center); + computeDeltaXY(session, input); + input.offsetDirection = getDirection(input.deltaX, input.deltaY); + var overallVelocity = getVelocity(input.deltaTime, input.deltaX, input.deltaY); + input.overallVelocityX = overallVelocity.x; + input.overallVelocityY = overallVelocity.y; + input.overallVelocity = abs(overallVelocity.x) > abs(overallVelocity.y) ? overallVelocity.x : overallVelocity.y; + input.scale = firstMultiple ? getScale(firstMultiple.pointers, pointers) : 1; + input.rotation = firstMultiple ? getRotation(firstMultiple.pointers, pointers) : 0; + input.maxPointers = !session.prevInput ? input.pointers.length : input.pointers.length > session.prevInput.maxPointers ? input.pointers.length : session.prevInput.maxPointers; + computeIntervalInputData(session, input); // find the correct target + + var target = manager.element; + var srcEvent = input.srcEvent; + var srcEventTarget; + + if (srcEvent.composedPath) { + srcEventTarget = srcEvent.composedPath()[0]; + } else if (srcEvent.path) { + srcEventTarget = srcEvent.path[0]; + } else { + srcEventTarget = srcEvent.target; + } + + if (hasParent$1(srcEventTarget, target)) { + target = srcEventTarget; + } + + input.target = target; +} +/** + * @private + * handle input events + * @param {Manager} manager + * @param {String} eventType + * @param {Object} input + */ + + +function inputHandler(manager, eventType, input) { + var pointersLen = input.pointers.length; + var changedPointersLen = input.changedPointers.length; + var isFirst = eventType & INPUT_START && pointersLen - changedPointersLen === 0; + var isFinal = eventType & (INPUT_END | INPUT_CANCEL) && pointersLen - changedPointersLen === 0; + input.isFirst = !!isFirst; + input.isFinal = !!isFinal; + + if (isFirst) { + manager.session = {}; + } // source event is the normalized value of the domEvents + // like 'touchstart, mouseup, pointerdown' + + + input.eventType = eventType; // compute scale, rotation etc + + computeInputData(manager, input); // emit secret event + + manager.emit('hammer.input', input); + manager.recognize(input); + manager.session.prevInput = input; +} +/** + * @private + * split string on whitespace + * @param {String} str + * @returns {Array} words + */ + + +function splitStr(str) { + return str.trim().split(/\s+/g); +} +/** + * @private + * addEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + + +function addEventListeners(target, types, handler) { + each(splitStr(types), function (type) { + target.addEventListener(type, handler, false); + }); +} +/** + * @private + * removeEventListener with multiple events at once + * @param {EventTarget} target + * @param {String} types + * @param {Function} handler + */ + + +function removeEventListeners(target, types, handler) { + each(splitStr(types), function (type) { + target.removeEventListener(type, handler, false); + }); +} +/** + * @private + * get the window object of an element + * @param {HTMLElement} element + * @returns {DocumentView|Window} + */ + + +function getWindowForElement(element) { + var doc = element.ownerDocument || element; + return doc.defaultView || doc.parentWindow || window; +} +/** + * @private + * create new input type manager + * @param {Manager} manager + * @param {Function} callback + * @returns {Input} + * @constructor + */ + + +var Input = +/*#__PURE__*/ +function () { + function Input(manager, callback) { + var self = this; + this.manager = manager; + this.callback = callback; + this.element = manager.element; + this.target = manager.options.inputTarget; // smaller wrapper around the handler, for the scope and the enabled state of the manager, + // so when disabled the input events are completely bypassed. + + this.domHandler = function (ev) { + if (boolOrFn(manager.options.enable, [manager])) { + self.handler(ev); + } + }; + + this.init(); + } + /** + * @private + * should handle the inputEvent data and trigger the callback + * @virtual + */ + + + var _proto = Input.prototype; + + _proto.handler = function handler() {}; + /** + * @private + * bind the events + */ + + + _proto.init = function init() { + this.evEl && addEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + }; + /** + * @private + * unbind the events + */ + + + _proto.destroy = function destroy() { + this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler); + this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler); + this.evWin && removeEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler); + }; + + return Input; +}(); +/** + * @private + * find if a array contains the object using indexOf or a simple polyFill + * @param {Array} src + * @param {String} find + * @param {String} [findByKey] + * @return {Boolean|Number} false when not found, or the index + */ + + +function inArray(src, find, findByKey) { + if (src.indexOf && !findByKey) { + return src.indexOf(find); + } else { + var i = 0; + + while (i < src.length) { + if (findByKey && src[i][findByKey] == find || !findByKey && src[i] === find) { + // do not use === here, test fails + return i; + } + + i++; + } + + return -1; + } +} + +var POINTER_INPUT_MAP = { + pointerdown: INPUT_START, + pointermove: INPUT_MOVE, + pointerup: INPUT_END, + pointercancel: INPUT_CANCEL, + pointerout: INPUT_CANCEL +}; // in IE10 the pointer types is defined as an enum + +var IE10_POINTER_TYPE_ENUM = { + 2: INPUT_TYPE_TOUCH, + 3: INPUT_TYPE_PEN, + 4: INPUT_TYPE_MOUSE, + 5: INPUT_TYPE_KINECT // see https://twitter.com/jacobrossi/status/480596438489890816 + +}; +var POINTER_ELEMENT_EVENTS = 'pointerdown'; +var POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel'; // IE10 has prefixed support, and case-sensitive + +if (win.MSPointerEvent && !win.PointerEvent) { + POINTER_ELEMENT_EVENTS = 'MSPointerDown'; + POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel'; +} +/** + * @private + * Pointer events input + * @constructor + * @extends Input + */ + + +var PointerEventInput = +/*#__PURE__*/ +function (_Input) { + _inheritsLoose(PointerEventInput, _Input); + + function PointerEventInput() { + var _this; + + var proto = PointerEventInput.prototype; + proto.evEl = POINTER_ELEMENT_EVENTS; + proto.evWin = POINTER_WINDOW_EVENTS; + _this = _Input.apply(this, arguments) || this; + _this.store = _this.manager.session.pointerEvents = []; + return _this; + } + /** + * @private + * handle mouse events + * @param {Object} ev + */ + + + var _proto = PointerEventInput.prototype; + + _proto.handler = function handler(ev) { + var store = this.store; + var removePointer = false; + var eventTypeNormalized = ev.type.toLowerCase().replace('ms', ''); + var eventType = POINTER_INPUT_MAP[eventTypeNormalized]; + var pointerType = IE10_POINTER_TYPE_ENUM[ev.pointerType] || ev.pointerType; + var isTouch = pointerType === INPUT_TYPE_TOUCH; // get index of the event in the store + + var storeIndex = inArray(store, ev.pointerId, 'pointerId'); // start and mouse must be down + + if (eventType & INPUT_START && (ev.button === 0 || isTouch)) { + if (storeIndex < 0) { + store.push(ev); + storeIndex = store.length - 1; + } + } else if (eventType & (INPUT_END | INPUT_CANCEL)) { + removePointer = true; + } // it not found, so the pointer hasn't been down (so it's probably a hover) + + + if (storeIndex < 0) { + return; + } // update the event in the store + + + store[storeIndex] = ev; + this.callback(this.manager, eventType, { + pointers: store, + changedPointers: [ev], + pointerType: pointerType, + srcEvent: ev + }); + + if (removePointer) { + // remove from the store + store.splice(storeIndex, 1); + } + }; + + return PointerEventInput; +}(Input); +/** + * @private + * convert array-like objects to real arrays + * @param {Object} obj + * @returns {Array} + */ + + +function toArray$1(obj) { + return Array.prototype.slice.call(obj, 0); +} +/** + * @private + * unique array with objects based on a key (like 'id') or just by the array's value + * @param {Array} src [{id:1},{id:2},{id:1}] + * @param {String} [key] + * @param {Boolean} [sort=False] + * @returns {Array} [{id:1},{id:2}] + */ + + +function uniqueArray(src, key, sort) { + var results = []; + var values = []; + var i = 0; + + while (i < src.length) { + var val = key ? src[i][key] : src[i]; + + if (inArray(values, val) < 0) { + results.push(src[i]); + } + + values[i] = val; + i++; + } + + if (sort) { + if (!key) { + results = results.sort(); + } else { + results = results.sort(function (a, b) { + return a[key] > b[key]; + }); + } + } + + return results; +} + +var TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL +}; +var TOUCH_TARGET_EVENTS = 'touchstart touchmove touchend touchcancel'; +/** + * @private + * Multi-user touch events input + * @constructor + * @extends Input + */ + +var TouchInput = +/*#__PURE__*/ +function (_Input) { + _inheritsLoose(TouchInput, _Input); + + function TouchInput() { + var _this; + + TouchInput.prototype.evTarget = TOUCH_TARGET_EVENTS; + _this = _Input.apply(this, arguments) || this; + _this.targetIds = {}; // this.evTarget = TOUCH_TARGET_EVENTS; + + return _this; + } + + var _proto = TouchInput.prototype; + + _proto.handler = function handler(ev) { + var type = TOUCH_INPUT_MAP[ev.type]; + var touches = getTouches.call(this, ev, type); + + if (!touches) { + return; + } + + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + }; + + return TouchInput; +}(Input); + +function getTouches(ev, type) { + var allTouches = toArray$1(ev.touches); + var targetIds = this.targetIds; // when there is only one touch, the process can be simplified + + if (type & (INPUT_START | INPUT_MOVE) && allTouches.length === 1) { + targetIds[allTouches[0].identifier] = true; + return [allTouches, allTouches]; + } + + var i; + var targetTouches; + var changedTouches = toArray$1(ev.changedTouches); + var changedTargetTouches = []; + var target = this.target; // get target touches from touches + + targetTouches = allTouches.filter(function (touch) { + return hasParent$1(touch.target, target); + }); // collect touches + + if (type === INPUT_START) { + i = 0; + + while (i < targetTouches.length) { + targetIds[targetTouches[i].identifier] = true; + i++; + } + } // filter changed touches to only contain touches that exist in the collected target ids + + + i = 0; + + while (i < changedTouches.length) { + if (targetIds[changedTouches[i].identifier]) { + changedTargetTouches.push(changedTouches[i]); + } // cleanup removed touches + + + if (type & (INPUT_END | INPUT_CANCEL)) { + delete targetIds[changedTouches[i].identifier]; + } + + i++; + } + + if (!changedTargetTouches.length) { + return; + } + + return [// merge targetTouches with changedTargetTouches so it contains ALL touches, including 'end' and 'cancel' + uniqueArray(targetTouches.concat(changedTargetTouches), 'identifier', true), changedTargetTouches]; +} + +var MOUSE_INPUT_MAP = { + mousedown: INPUT_START, + mousemove: INPUT_MOVE, + mouseup: INPUT_END +}; +var MOUSE_ELEMENT_EVENTS = 'mousedown'; +var MOUSE_WINDOW_EVENTS = 'mousemove mouseup'; +/** + * @private + * Mouse events input + * @constructor + * @extends Input + */ + +var MouseInput = +/*#__PURE__*/ +function (_Input) { + _inheritsLoose(MouseInput, _Input); + + function MouseInput() { + var _this; + + var proto = MouseInput.prototype; + proto.evEl = MOUSE_ELEMENT_EVENTS; + proto.evWin = MOUSE_WINDOW_EVENTS; + _this = _Input.apply(this, arguments) || this; + _this.pressed = false; // mousedown state + + return _this; + } + /** + * @private + * handle mouse events + * @param {Object} ev + */ + + + var _proto = MouseInput.prototype; + + _proto.handler = function handler(ev) { + var eventType = MOUSE_INPUT_MAP[ev.type]; // on start we want to have the left mouse button down + + if (eventType & INPUT_START && ev.button === 0) { + this.pressed = true; + } + + if (eventType & INPUT_MOVE && ev.which !== 1) { + eventType = INPUT_END; + } // mouse must be down + + + if (!this.pressed) { + return; + } + + if (eventType & INPUT_END) { + this.pressed = false; + } + + this.callback(this.manager, eventType, { + pointers: [ev], + changedPointers: [ev], + pointerType: INPUT_TYPE_MOUSE, + srcEvent: ev + }); + }; + + return MouseInput; +}(Input); +/** + * @private + * Combined touch and mouse input + * + * Touch has a higher priority then mouse, and while touching no mouse events are allowed. + * This because touch devices also emit mouse events while doing a touch. + * + * @constructor + * @extends Input + */ + + +var DEDUP_TIMEOUT = 2500; +var DEDUP_DISTANCE = 25; + +function setLastTouch(eventData) { + var _eventData$changedPoi = eventData.changedPointers, + touch = _eventData$changedPoi[0]; + + if (touch.identifier === this.primaryTouch) { + var lastTouch = { + x: touch.clientX, + y: touch.clientY + }; + var lts = this.lastTouches; + this.lastTouches.push(lastTouch); + + var removeLastTouch = function removeLastTouch() { + var i = lts.indexOf(lastTouch); + + if (i > -1) { + lts.splice(i, 1); + } + }; + + setTimeout(removeLastTouch, DEDUP_TIMEOUT); + } +} + +function recordTouches(eventType, eventData) { + if (eventType & INPUT_START) { + this.primaryTouch = eventData.changedPointers[0].identifier; + setLastTouch.call(this, eventData); + } else if (eventType & (INPUT_END | INPUT_CANCEL)) { + setLastTouch.call(this, eventData); + } +} + +function isSyntheticEvent(eventData) { + var x = eventData.srcEvent.clientX; + var y = eventData.srcEvent.clientY; + + for (var i = 0; i < this.lastTouches.length; i++) { + var t = this.lastTouches[i]; + var dx = Math.abs(x - t.x); + var dy = Math.abs(y - t.y); + + if (dx <= DEDUP_DISTANCE && dy <= DEDUP_DISTANCE) { + return true; + } + } + + return false; +} + +var TouchMouseInput = +/*#__PURE__*/ +function () { + var TouchMouseInput = + /*#__PURE__*/ + function (_Input) { + _inheritsLoose(TouchMouseInput, _Input); + + function TouchMouseInput(_manager, callback) { + var _this; + + _this = _Input.call(this, _manager, callback) || this; + + _this.handler = function (manager, inputEvent, inputData) { + var isTouch = inputData.pointerType === INPUT_TYPE_TOUCH; + var isMouse = inputData.pointerType === INPUT_TYPE_MOUSE; + + if (isMouse && inputData.sourceCapabilities && inputData.sourceCapabilities.firesTouchEvents) { + return; + } // when we're in a touch event, record touches to de-dupe synthetic mouse event + + + if (isTouch) { + recordTouches.call(_assertThisInitialized$2(_assertThisInitialized$2(_this)), inputEvent, inputData); + } else if (isMouse && isSyntheticEvent.call(_assertThisInitialized$2(_assertThisInitialized$2(_this)), inputData)) { + return; + } + + _this.callback(manager, inputEvent, inputData); + }; + + _this.touch = new TouchInput(_this.manager, _this.handler); + _this.mouse = new MouseInput(_this.manager, _this.handler); + _this.primaryTouch = null; + _this.lastTouches = []; + return _this; + } + /** + * @private + * handle mouse and touch events + * @param {Hammer} manager + * @param {String} inputEvent + * @param {Object} inputData + */ + + + var _proto = TouchMouseInput.prototype; + /** + * @private + * remove the event listeners + */ + + _proto.destroy = function destroy() { + this.touch.destroy(); + this.mouse.destroy(); + }; + + return TouchMouseInput; + }(Input); + + return TouchMouseInput; +}(); +/** + * @private + * create new input type manager + * called by the Manager constructor + * @param {Hammer} manager + * @returns {Input} + */ + + +function createInputInstance(manager) { + var Type; // let inputClass = manager.options.inputClass; + + var inputClass = manager.options.inputClass; + + if (inputClass) { + Type = inputClass; + } else if (SUPPORT_POINTER_EVENTS) { + Type = PointerEventInput; + } else if (SUPPORT_ONLY_TOUCH) { + Type = TouchInput; + } else if (!SUPPORT_TOUCH) { + Type = MouseInput; + } else { + Type = TouchMouseInput; + } + + return new Type(manager, inputHandler); +} +/** + * @private + * if the argument is an array, we want to execute the fn on each entry + * if it aint an array we don't want to do a thing. + * this is used by all the methods that accept a single and array argument. + * @param {*|Array} arg + * @param {String} fn + * @param {Object} [context] + * @returns {Boolean} + */ + + +function invokeArrayArg(arg, fn, context) { + if (Array.isArray(arg)) { + each(arg, context[fn], context); + return true; + } + + return false; +} + +var STATE_POSSIBLE = 1; +var STATE_BEGAN = 2; +var STATE_CHANGED = 4; +var STATE_ENDED = 8; +var STATE_RECOGNIZED = STATE_ENDED; +var STATE_CANCELLED = 16; +var STATE_FAILED = 32; +/** + * @private + * get a unique id + * @returns {number} uniqueId + */ + +var _uniqueId = 1; + +function uniqueId() { + return _uniqueId++; +} +/** + * @private + * get a recognizer by name if it is bound to a manager + * @param {Recognizer|String} otherRecognizer + * @param {Recognizer} recognizer + * @returns {Recognizer} + */ + + +function getRecognizerByNameIfManager(otherRecognizer, recognizer) { + var manager = recognizer.manager; + + if (manager) { + return manager.get(otherRecognizer); + } + + return otherRecognizer; +} +/** + * @private + * get a usable string, used as event postfix + * @param {constant} state + * @returns {String} state + */ + + +function stateStr(state) { + if (state & STATE_CANCELLED) { + return 'cancel'; + } else if (state & STATE_ENDED) { + return 'end'; + } else if (state & STATE_CHANGED) { + return 'move'; + } else if (state & STATE_BEGAN) { + return 'start'; + } + + return ''; +} +/** + * @private + * Recognizer flow explained; * + * All recognizers have the initial state of POSSIBLE when a input session starts. + * The definition of a input session is from the first input until the last input, with all it's movement in it. * + * Example session for mouse-input: mousedown -> mousemove -> mouseup + * + * On each recognizing cycle (see Manager.recognize) the .recognize() method is executed + * which determines with state it should be. + * + * If the recognizer has the state FAILED, CANCELLED or RECOGNIZED (equals ENDED), it is reset to + * POSSIBLE to give it another change on the next cycle. + * + * Possible + * | + * +-----+---------------+ + * | | + * +-----+-----+ | + * | | | + * Failed Cancelled | + * +-------+------+ + * | | + * Recognized Began + * | + * Changed + * | + * Ended/Recognized + */ + +/** + * @private + * Recognizer + * Every recognizer needs to extend from this class. + * @constructor + * @param {Object} options + */ + + +var Recognizer = +/*#__PURE__*/ +function () { + function Recognizer(options) { + if (options === void 0) { + options = {}; + } + + this.options = _extends({ + enable: true + }, options); + this.id = uniqueId(); + this.manager = null; // default is enable true + + this.state = STATE_POSSIBLE; + this.simultaneous = {}; + this.requireFail = []; + } + /** + * @private + * set options + * @param {Object} options + * @return {Recognizer} + */ + + + var _proto = Recognizer.prototype; + + _proto.set = function set(options) { + assign$1(this.options, options); // also update the touchAction, in case something changed about the directions/enabled state + + this.manager && this.manager.touchAction.update(); + return this; + }; + /** + * @private + * recognize simultaneous with an other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + + + _proto.recognizeWith = function recognizeWith(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'recognizeWith', this)) { + return this; + } + + var simultaneous = this.simultaneous; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + + if (!simultaneous[otherRecognizer.id]) { + simultaneous[otherRecognizer.id] = otherRecognizer; + otherRecognizer.recognizeWith(this); + } + + return this; + }; + /** + * @private + * drop the simultaneous link. it doesnt remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + + + _proto.dropRecognizeWith = function dropRecognizeWith(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRecognizeWith', this)) { + return this; + } + + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + delete this.simultaneous[otherRecognizer.id]; + return this; + }; + /** + * @private + * recognizer can only run when an other is failing + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + + + _proto.requireFailure = function requireFailure(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'requireFailure', this)) { + return this; + } + + var requireFail = this.requireFail; + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + + if (inArray(requireFail, otherRecognizer) === -1) { + requireFail.push(otherRecognizer); + otherRecognizer.requireFailure(this); + } + + return this; + }; + /** + * @private + * drop the requireFailure link. it does not remove the link on the other recognizer. + * @param {Recognizer} otherRecognizer + * @returns {Recognizer} this + */ + + + _proto.dropRequireFailure = function dropRequireFailure(otherRecognizer) { + if (invokeArrayArg(otherRecognizer, 'dropRequireFailure', this)) { + return this; + } + + otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this); + var index = inArray(this.requireFail, otherRecognizer); + + if (index > -1) { + this.requireFail.splice(index, 1); + } + + return this; + }; + /** + * @private + * has require failures boolean + * @returns {boolean} + */ + + + _proto.hasRequireFailures = function hasRequireFailures() { + return this.requireFail.length > 0; + }; + /** + * @private + * if the recognizer can recognize simultaneous with an other recognizer + * @param {Recognizer} otherRecognizer + * @returns {Boolean} + */ + + + _proto.canRecognizeWith = function canRecognizeWith(otherRecognizer) { + return !!this.simultaneous[otherRecognizer.id]; + }; + /** + * @private + * You should use `tryEmit` instead of `emit` directly to check + * that all the needed recognizers has failed before emitting. + * @param {Object} input + */ + + + _proto.emit = function emit(input) { + var self = this; + var state = this.state; + + function emit(event) { + self.manager.emit(event, input); + } // 'panstart' and 'panmove' + + + if (state < STATE_ENDED) { + emit(self.options.event + stateStr(state)); + } + + emit(self.options.event); // simple 'eventName' events + + if (input.additionalEvent) { + // additional event(panleft, panright, pinchin, pinchout...) + emit(input.additionalEvent); + } // panend and pancancel + + + if (state >= STATE_ENDED) { + emit(self.options.event + stateStr(state)); + } + }; + /** + * @private + * Check that all the require failure recognizers has failed, + * if true, it emits a gesture event, + * otherwise, setup the state to FAILED. + * @param {Object} input + */ + + + _proto.tryEmit = function tryEmit(input) { + if (this.canEmit()) { + return this.emit(input); + } // it's failing anyway + + + this.state = STATE_FAILED; + }; + /** + * @private + * can we emit? + * @returns {boolean} + */ + + + _proto.canEmit = function canEmit() { + var i = 0; + + while (i < this.requireFail.length) { + if (!(this.requireFail[i].state & (STATE_FAILED | STATE_POSSIBLE))) { + return false; + } + + i++; + } + + return true; + }; + /** + * @private + * update the recognizer + * @param {Object} inputData + */ + + + _proto.recognize = function recognize(inputData) { + // make a new copy of the inputData + // so we can change the inputData without messing up the other recognizers + var inputDataClone = assign$1({}, inputData); // is is enabled and allow recognizing? + + if (!boolOrFn(this.options.enable, [this, inputDataClone])) { + this.reset(); + this.state = STATE_FAILED; + return; + } // reset when we've reached the end + + + if (this.state & (STATE_RECOGNIZED | STATE_CANCELLED | STATE_FAILED)) { + this.state = STATE_POSSIBLE; + } + + this.state = this.process(inputDataClone); // the recognizer has recognized a gesture + // so trigger an event + + if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) { + this.tryEmit(inputDataClone); + } + }; + /** + * @private + * return the state of the recognizer + * the actual recognizing happens in this method + * @virtual + * @param {Object} inputData + * @returns {constant} STATE + */ + + /* jshint ignore:start */ + + + _proto.process = function process(inputData) {}; + /* jshint ignore:end */ + + /** + * @private + * return the preferred touch-action + * @virtual + * @returns {Array} + */ + + + _proto.getTouchAction = function getTouchAction() {}; + /** + * @private + * called when the gesture isn't allowed to recognize + * like when another is being recognized or it is disabled + * @virtual + */ + + + _proto.reset = function reset() {}; + + return Recognizer; +}(); +/** + * @private + * A tap is recognized when the pointer is doing a small tap/click. Multiple taps are recognized if they occur + * between the given interval and position. The delay option can be used to recognize multi-taps without firing + * a single tap. + * + * The eventData from the emitted event contains the property `tapCount`, which contains the amount of + * multi-taps being recognized. + * @constructor + * @extends Recognizer + */ + + +var TapRecognizer = +/*#__PURE__*/ +function (_Recognizer) { + _inheritsLoose(TapRecognizer, _Recognizer); + + function TapRecognizer(options) { + var _this; + + if (options === void 0) { + options = {}; + } + + _this = _Recognizer.call(this, _extends({ + event: 'tap', + pointers: 1, + taps: 1, + interval: 300, + // max time between the multi-tap taps + time: 250, + // max time of the pointer to be down (like finger on the screen) + threshold: 9, + // a minimal movement is ok, but keep it low + posThreshold: 10 + }, options)) || this; // previous time and center, + // used for tap counting + + _this.pTime = false; + _this.pCenter = false; + _this._timer = null; + _this._input = null; + _this.count = 0; + return _this; + } + + var _proto = TapRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + return [TOUCH_ACTION_MANIPULATION]; + }; + + _proto.process = function process(input) { + var _this2 = this; + + var options = this.options; + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTouchTime = input.deltaTime < options.time; + this.reset(); + + if (input.eventType & INPUT_START && this.count === 0) { + return this.failTimeout(); + } // we only allow little movement + // and we've reached an end event, so a tap is possible + + + if (validMovement && validTouchTime && validPointers) { + if (input.eventType !== INPUT_END) { + return this.failTimeout(); + } + + var validInterval = this.pTime ? input.timeStamp - this.pTime < options.interval : true; + var validMultiTap = !this.pCenter || getDistance(this.pCenter, input.center) < options.posThreshold; + this.pTime = input.timeStamp; + this.pCenter = input.center; + + if (!validMultiTap || !validInterval) { + this.count = 1; + } else { + this.count += 1; + } + + this._input = input; // if tap count matches we have recognized it, + // else it has began recognizing... + + var tapCount = this.count % options.taps; + + if (tapCount === 0) { + // no failing requirements, immediately trigger the tap event + // or wait as long as the multitap interval to trigger + if (!this.hasRequireFailures()) { + return STATE_RECOGNIZED; + } else { + this._timer = setTimeout(function () { + _this2.state = STATE_RECOGNIZED; + + _this2.tryEmit(); + }, options.interval); + return STATE_BEGAN; + } + } + } + + return STATE_FAILED; + }; + + _proto.failTimeout = function failTimeout() { + var _this3 = this; + + this._timer = setTimeout(function () { + _this3.state = STATE_FAILED; + }, this.options.interval); + return STATE_FAILED; + }; + + _proto.reset = function reset() { + clearTimeout(this._timer); + }; + + _proto.emit = function emit() { + if (this.state === STATE_RECOGNIZED) { + this._input.tapCount = this.count; + this.manager.emit(this.options.event, this._input); + } + }; + + return TapRecognizer; +}(Recognizer); +/** + * @private + * This recognizer is just used as a base for the simple attribute recognizers. + * @constructor + * @extends Recognizer + */ + + +var AttrRecognizer = +/*#__PURE__*/ +function (_Recognizer) { + _inheritsLoose(AttrRecognizer, _Recognizer); + + function AttrRecognizer(options) { + if (options === void 0) { + options = {}; + } + + return _Recognizer.call(this, _extends({ + pointers: 1 + }, options)) || this; + } + /** + * @private + * Used to check if it the recognizer receives valid input, like input.distance > 10. + * @memberof AttrRecognizer + * @param {Object} input + * @returns {Boolean} recognized + */ + + + var _proto = AttrRecognizer.prototype; + + _proto.attrTest = function attrTest(input) { + var optionPointers = this.options.pointers; + return optionPointers === 0 || input.pointers.length === optionPointers; + }; + /** + * @private + * Process the input and return the state for the recognizer + * @memberof AttrRecognizer + * @param {Object} input + * @returns {*} State + */ + + + _proto.process = function process(input) { + var state = this.state; + var eventType = input.eventType; + var isRecognized = state & (STATE_BEGAN | STATE_CHANGED); + var isValid = this.attrTest(input); // on cancel input and we've recognized before, return STATE_CANCELLED + + if (isRecognized && (eventType & INPUT_CANCEL || !isValid)) { + return state | STATE_CANCELLED; + } else if (isRecognized || isValid) { + if (eventType & INPUT_END) { + return state | STATE_ENDED; + } else if (!(state & STATE_BEGAN)) { + return STATE_BEGAN; + } + + return state | STATE_CHANGED; + } + + return STATE_FAILED; + }; + + return AttrRecognizer; +}(Recognizer); +/** + * @private + * direction cons to string + * @param {constant} direction + * @returns {String} + */ + + +function directionStr(direction) { + if (direction === DIRECTION_DOWN) { + return 'down'; + } else if (direction === DIRECTION_UP) { + return 'up'; + } else if (direction === DIRECTION_LEFT) { + return 'left'; + } else if (direction === DIRECTION_RIGHT) { + return 'right'; + } + + return ''; +} +/** + * @private + * Pan + * Recognized when the pointer is down and moved in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + + +var PanRecognizer = +/*#__PURE__*/ +function (_AttrRecognizer) { + _inheritsLoose(PanRecognizer, _AttrRecognizer); + + function PanRecognizer(options) { + var _this; + + if (options === void 0) { + options = {}; + } + + _this = _AttrRecognizer.call(this, _extends({ + event: 'pan', + threshold: 10, + pointers: 1, + direction: DIRECTION_ALL + }, options)) || this; + _this.pX = null; + _this.pY = null; + return _this; + } + + var _proto = PanRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + var direction = this.options.direction; + var actions = []; + + if (direction & DIRECTION_HORIZONTAL) { + actions.push(TOUCH_ACTION_PAN_Y); + } + + if (direction & DIRECTION_VERTICAL) { + actions.push(TOUCH_ACTION_PAN_X); + } + + return actions; + }; + + _proto.directionTest = function directionTest(input) { + var options = this.options; + var hasMoved = true; + var distance = input.distance; + var direction = input.direction; + var x = input.deltaX; + var y = input.deltaY; // lock to axis? + + if (!(direction & options.direction)) { + if (options.direction & DIRECTION_HORIZONTAL) { + direction = x === 0 ? DIRECTION_NONE : x < 0 ? DIRECTION_LEFT : DIRECTION_RIGHT; + hasMoved = x !== this.pX; + distance = Math.abs(input.deltaX); + } else { + direction = y === 0 ? DIRECTION_NONE : y < 0 ? DIRECTION_UP : DIRECTION_DOWN; + hasMoved = y !== this.pY; + distance = Math.abs(input.deltaY); + } + } + + input.direction = direction; + return hasMoved && distance > options.threshold && direction & options.direction; + }; + + _proto.attrTest = function attrTest(input) { + return AttrRecognizer.prototype.attrTest.call(this, input) && ( // replace with a super call + this.state & STATE_BEGAN || !(this.state & STATE_BEGAN) && this.directionTest(input)); + }; + + _proto.emit = function emit(input) { + this.pX = input.deltaX; + this.pY = input.deltaY; + var direction = directionStr(input.direction); + + if (direction) { + input.additionalEvent = this.options.event + direction; + } + + _AttrRecognizer.prototype.emit.call(this, input); + }; + + return PanRecognizer; +}(AttrRecognizer); +/** + * @private + * Swipe + * Recognized when the pointer is moving fast (velocity), with enough distance in the allowed direction. + * @constructor + * @extends AttrRecognizer + */ + + +var SwipeRecognizer = +/*#__PURE__*/ +function (_AttrRecognizer) { + _inheritsLoose(SwipeRecognizer, _AttrRecognizer); + + function SwipeRecognizer(options) { + if (options === void 0) { + options = {}; + } + + return _AttrRecognizer.call(this, _extends({ + event: 'swipe', + threshold: 10, + velocity: 0.3, + direction: DIRECTION_HORIZONTAL | DIRECTION_VERTICAL, + pointers: 1 + }, options)) || this; + } + + var _proto = SwipeRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + return PanRecognizer.prototype.getTouchAction.call(this); + }; + + _proto.attrTest = function attrTest(input) { + var direction = this.options.direction; + var velocity; + + if (direction & (DIRECTION_HORIZONTAL | DIRECTION_VERTICAL)) { + velocity = input.overallVelocity; + } else if (direction & DIRECTION_HORIZONTAL) { + velocity = input.overallVelocityX; + } else if (direction & DIRECTION_VERTICAL) { + velocity = input.overallVelocityY; + } + + return _AttrRecognizer.prototype.attrTest.call(this, input) && direction & input.offsetDirection && input.distance > this.options.threshold && input.maxPointers === this.options.pointers && abs(velocity) > this.options.velocity && input.eventType & INPUT_END; + }; + + _proto.emit = function emit(input) { + var direction = directionStr(input.offsetDirection); + + if (direction) { + this.manager.emit(this.options.event + direction, input); + } + + this.manager.emit(this.options.event, input); + }; + + return SwipeRecognizer; +}(AttrRecognizer); +/** + * @private + * Pinch + * Recognized when two or more pointers are moving toward (zoom-in) or away from each other (zoom-out). + * @constructor + * @extends AttrRecognizer + */ + + +var PinchRecognizer = +/*#__PURE__*/ +function (_AttrRecognizer) { + _inheritsLoose(PinchRecognizer, _AttrRecognizer); + + function PinchRecognizer(options) { + if (options === void 0) { + options = {}; + } + + return _AttrRecognizer.call(this, _extends({ + event: 'pinch', + threshold: 0, + pointers: 2 + }, options)) || this; + } + + var _proto = PinchRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + return [TOUCH_ACTION_NONE]; + }; + + _proto.attrTest = function attrTest(input) { + return _AttrRecognizer.prototype.attrTest.call(this, input) && (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN); + }; + + _proto.emit = function emit(input) { + if (input.scale !== 1) { + var inOut = input.scale < 1 ? 'in' : 'out'; + input.additionalEvent = this.options.event + inOut; + } + + _AttrRecognizer.prototype.emit.call(this, input); + }; + + return PinchRecognizer; +}(AttrRecognizer); +/** + * @private + * Rotate + * Recognized when two or more pointer are moving in a circular motion. + * @constructor + * @extends AttrRecognizer + */ + + +var RotateRecognizer = +/*#__PURE__*/ +function (_AttrRecognizer) { + _inheritsLoose(RotateRecognizer, _AttrRecognizer); + + function RotateRecognizer(options) { + if (options === void 0) { + options = {}; + } + + return _AttrRecognizer.call(this, _extends({ + event: 'rotate', + threshold: 0, + pointers: 2 + }, options)) || this; + } + + var _proto = RotateRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + return [TOUCH_ACTION_NONE]; + }; + + _proto.attrTest = function attrTest(input) { + return _AttrRecognizer.prototype.attrTest.call(this, input) && (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN); + }; + + return RotateRecognizer; +}(AttrRecognizer); +/** + * @private + * Press + * Recognized when the pointer is down for x ms without any movement. + * @constructor + * @extends Recognizer + */ + + +var PressRecognizer = +/*#__PURE__*/ +function (_Recognizer) { + _inheritsLoose(PressRecognizer, _Recognizer); + + function PressRecognizer(options) { + var _this; + + if (options === void 0) { + options = {}; + } + + _this = _Recognizer.call(this, _extends({ + event: 'press', + pointers: 1, + time: 251, + // minimal time of the pointer to be pressed + threshold: 9 + }, options)) || this; + _this._timer = null; + _this._input = null; + return _this; + } + + var _proto = PressRecognizer.prototype; + + _proto.getTouchAction = function getTouchAction() { + return [TOUCH_ACTION_AUTO]; + }; + + _proto.process = function process(input) { + var _this2 = this; + + var options = this.options; + var validPointers = input.pointers.length === options.pointers; + var validMovement = input.distance < options.threshold; + var validTime = input.deltaTime > options.time; + this._input = input; // we only allow little movement + // and we've reached an end event, so a tap is possible + + if (!validMovement || !validPointers || input.eventType & (INPUT_END | INPUT_CANCEL) && !validTime) { + this.reset(); + } else if (input.eventType & INPUT_START) { + this.reset(); + this._timer = setTimeout(function () { + _this2.state = STATE_RECOGNIZED; + + _this2.tryEmit(); + }, options.time); + } else if (input.eventType & INPUT_END) { + return STATE_RECOGNIZED; + } + + return STATE_FAILED; + }; + + _proto.reset = function reset() { + clearTimeout(this._timer); + }; + + _proto.emit = function emit(input) { + if (this.state !== STATE_RECOGNIZED) { + return; + } + + if (input && input.eventType & INPUT_END) { + this.manager.emit(this.options.event + "up", input); + } else { + this._input.timeStamp = now$3(); + this.manager.emit(this.options.event, this._input); + } + }; + + return PressRecognizer; +}(Recognizer); + +var defaults = { + /** + * @private + * set if DOM events are being triggered. + * But this is slower and unused by simple implementations, so disabled by default. + * @type {Boolean} + * @default false + */ + domEvents: false, + + /** + * @private + * The value for the touchAction property/fallback. + * When set to `compute` it will magically set the correct value based on the added recognizers. + * @type {String} + * @default compute + */ + touchAction: TOUCH_ACTION_COMPUTE, + + /** + * @private + * @type {Boolean} + * @default true + */ + enable: true, + + /** + * @private + * EXPERIMENTAL FEATURE -- can be removed/changed + * Change the parent input target element. + * If Null, then it is being set the to main element. + * @type {Null|EventTarget} + * @default null + */ + inputTarget: null, + + /** + * @private + * force an input class + * @type {Null|Function} + * @default null + */ + inputClass: null, + + /** + * @private + * Some CSS properties can be used to improve the working of Hammer. + * Add them to this method and they will be set when creating a new Manager. + * @namespace + */ + cssProps: { + /** + * @private + * Disables text selection to improve the dragging gesture. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userSelect: "none", + + /** + * @private + * Disable the Windows Phone grippers when pressing an element. + * @type {String} + * @default 'none' + */ + touchSelect: "none", + + /** + * @private + * Disables the default callout shown when you touch and hold a touch target. + * On iOS, when you touch and hold a touch target such as a link, Safari displays + * a callout containing information about the link. This property allows you to disable that callout. + * @type {String} + * @default 'none' + */ + touchCallout: "none", + + /** + * @private + * Specifies whether zooming is enabled. Used by IE10> + * @type {String} + * @default 'none' + */ + contentZooming: "none", + + /** + * @private + * Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers. + * @type {String} + * @default 'none' + */ + userDrag: "none", + + /** + * @private + * Overrides the highlight color shown when the user taps a link or a JavaScript + * clickable element in iOS. This property obeys the alpha value, if specified. + * @type {String} + * @default 'rgba(0,0,0,0)' + */ + tapHighlightColor: "rgba(0,0,0,0)" + } +}; +/** + * @private + * Default recognizer setup when calling `Hammer()` + * When creating a new Manager these will be skipped. + * This is separated with other defaults because of tree-shaking. + * @type {Array} + */ + +var preset = [[RotateRecognizer, { + enable: false +}], [PinchRecognizer, { + enable: false +}, ['rotate']], [SwipeRecognizer, { + direction: DIRECTION_HORIZONTAL +}], [PanRecognizer, { + direction: DIRECTION_HORIZONTAL +}, ['swipe']], [TapRecognizer], [TapRecognizer, { + event: 'doubletap', + taps: 2 +}, ['tap']], [PressRecognizer]]; +var STOP = 1; +var FORCED_STOP = 2; +/** + * @private + * add/remove the css properties as defined in manager.options.cssProps + * @param {Manager} manager + * @param {Boolean} add + */ + +function toggleCssProps(manager, add) { + var element = manager.element; + + if (!element.style) { + return; + } + + var prop; + each(manager.options.cssProps, function (value, name) { + prop = prefixed(element.style, name); + + if (add) { + manager.oldCssProps[prop] = element.style[prop]; + element.style[prop] = value; + } else { + element.style[prop] = manager.oldCssProps[prop] || ""; + } + }); + + if (!add) { + manager.oldCssProps = {}; + } +} +/** + * @private + * trigger dom event + * @param {String} event + * @param {Object} data + */ + + +function triggerDomEvent(event, data) { + var gestureEvent = document.createEvent("Event"); + gestureEvent.initEvent(event, true, true); + gestureEvent.gesture = data; + data.target.dispatchEvent(gestureEvent); +} +/** +* @private + * Manager + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor + */ + + +var Manager = +/*#__PURE__*/ +function () { + function Manager(element, options) { + var _this = this; + + this.options = assign$1({}, defaults, options || {}); + this.options.inputTarget = this.options.inputTarget || element; + this.handlers = {}; + this.session = {}; + this.recognizers = []; + this.oldCssProps = {}; + this.element = element; + this.input = createInputInstance(this); + this.touchAction = new TouchAction(this, this.options.touchAction); + toggleCssProps(this, true); + each(this.options.recognizers, function (item) { + var recognizer = _this.add(new item[0](item[1])); + + item[2] && recognizer.recognizeWith(item[2]); + item[3] && recognizer.requireFailure(item[3]); + }, this); + } + /** + * @private + * set options + * @param {Object} options + * @returns {Manager} + */ + + + var _proto = Manager.prototype; + + _proto.set = function set(options) { + assign$1(this.options, options); // Options that need a little more setup + + if (options.touchAction) { + this.touchAction.update(); + } + + if (options.inputTarget) { + // Clean up existing event listeners and reinitialize + this.input.destroy(); + this.input.target = options.inputTarget; + this.input.init(); + } + + return this; + }; + /** + * @private + * stop recognizing for this session. + * This session will be discarded, when a new [input]start event is fired. + * When forced, the recognizer cycle is stopped immediately. + * @param {Boolean} [force] + */ + + + _proto.stop = function stop(force) { + this.session.stopped = force ? FORCED_STOP : STOP; + }; + /** + * @private + * run the recognizers! + * called by the inputHandler function on every movement of the pointers (touches) + * it walks through all the recognizers and tries to detect the gesture that is being made + * @param {Object} inputData + */ + + + _proto.recognize = function recognize(inputData) { + var session = this.session; + + if (session.stopped) { + return; + } // run the touch-action polyfill + + + this.touchAction.preventDefaults(inputData); + var recognizer; + var recognizers = this.recognizers; // this holds the recognizer that is being recognized. + // so the recognizer's state needs to be BEGAN, CHANGED, ENDED or RECOGNIZED + // if no recognizer is detecting a thing, it is set to `null` + + var curRecognizer = session.curRecognizer; // reset when the last recognizer is recognized + // or when we're in a new session + + if (!curRecognizer || curRecognizer && curRecognizer.state & STATE_RECOGNIZED) { + session.curRecognizer = null; + curRecognizer = null; + } + + var i = 0; + + while (i < recognizers.length) { + recognizer = recognizers[i]; // find out if we are allowed try to recognize the input for this one. + // 1. allow if the session is NOT forced stopped (see the .stop() method) + // 2. allow if we still haven't recognized a gesture in this session, or the this recognizer is the one + // that is being recognized. + // 3. allow if the recognizer is allowed to run simultaneous with the current recognized recognizer. + // this can be setup with the `recognizeWith()` method on the recognizer. + + if (session.stopped !== FORCED_STOP && ( // 1 + !curRecognizer || recognizer === curRecognizer || // 2 + recognizer.canRecognizeWith(curRecognizer))) { + // 3 + recognizer.recognize(inputData); + } else { + recognizer.reset(); + } // if the recognizer has been recognizing the input as a valid gesture, we want to store this one as the + // current active recognizer. but only if we don't already have an active recognizer + + + if (!curRecognizer && recognizer.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED)) { + session.curRecognizer = recognizer; + curRecognizer = recognizer; + } + + i++; + } + }; + /** + * @private + * get a recognizer by its event name. + * @param {Recognizer|String} recognizer + * @returns {Recognizer|Null} + */ + + + _proto.get = function get(recognizer) { + if (recognizer instanceof Recognizer) { + return recognizer; + } + + var recognizers = this.recognizers; + + for (var i = 0; i < recognizers.length; i++) { + if (recognizers[i].options.event === recognizer) { + return recognizers[i]; + } + } + + return null; + }; + /** + * @private add a recognizer to the manager + * existing recognizers with the same event name will be removed + * @param {Recognizer} recognizer + * @returns {Recognizer|Manager} + */ + + + _proto.add = function add(recognizer) { + if (invokeArrayArg(recognizer, "add", this)) { + return this; + } // remove existing + + + var existing = this.get(recognizer.options.event); + + if (existing) { + this.remove(existing); + } + + this.recognizers.push(recognizer); + recognizer.manager = this; + this.touchAction.update(); + return recognizer; + }; + /** + * @private + * remove a recognizer by name or instance + * @param {Recognizer|String} recognizer + * @returns {Manager} + */ + + + _proto.remove = function remove(recognizer) { + if (invokeArrayArg(recognizer, "remove", this)) { + return this; + } + + var targetRecognizer = this.get(recognizer); // let's make sure this recognizer exists + + if (recognizer) { + var recognizers = this.recognizers; + var index = inArray(recognizers, targetRecognizer); + + if (index !== -1) { + recognizers.splice(index, 1); + this.touchAction.update(); + } + } + + return this; + }; + /** + * @private + * bind event + * @param {String} events + * @param {Function} handler + * @returns {EventEmitter} this + */ + + + _proto.on = function on(events, handler) { + if (events === undefined || handler === undefined) { + return this; + } + + var handlers = this.handlers; + each(splitStr(events), function (event) { + handlers[event] = handlers[event] || []; + handlers[event].push(handler); + }); + return this; + }; + /** + * @private unbind event, leave emit blank to remove all handlers + * @param {String} events + * @param {Function} [handler] + * @returns {EventEmitter} this + */ + + + _proto.off = function off(events, handler) { + if (events === undefined) { + return this; + } + + var handlers = this.handlers; + each(splitStr(events), function (event) { + if (!handler) { + delete handlers[event]; + } else { + handlers[event] && handlers[event].splice(inArray(handlers[event], handler), 1); + } + }); + return this; + }; + /** + * @private emit event to the listeners + * @param {String} event + * @param {Object} data + */ + + + _proto.emit = function emit(event, data) { + // we also want to trigger dom events + if (this.options.domEvents) { + triggerDomEvent(event, data); + } // no handlers, so skip it all + + + var handlers = this.handlers[event] && this.handlers[event].slice(); + + if (!handlers || !handlers.length) { + return; + } + + data.type = event; + + data.preventDefault = function () { + data.srcEvent.preventDefault(); + }; + + var i = 0; + + while (i < handlers.length) { + handlers[i](data); + i++; + } + }; + /** + * @private + * destroy the manager and unbinds all events + * it doesn't unbind dom events, that is the user own responsibility + */ + + + _proto.destroy = function destroy() { + this.element && toggleCssProps(this, false); + this.handlers = {}; + this.session = {}; + this.input.destroy(); + this.element = null; + }; + + return Manager; +}(); + +var SINGLE_TOUCH_INPUT_MAP = { + touchstart: INPUT_START, + touchmove: INPUT_MOVE, + touchend: INPUT_END, + touchcancel: INPUT_CANCEL +}; +var SINGLE_TOUCH_TARGET_EVENTS = 'touchstart'; +var SINGLE_TOUCH_WINDOW_EVENTS = 'touchstart touchmove touchend touchcancel'; +/** + * @private + * Touch events input + * @constructor + * @extends Input + */ + +var SingleTouchInput = +/*#__PURE__*/ +function (_Input) { + _inheritsLoose(SingleTouchInput, _Input); + + function SingleTouchInput() { + var _this; + + var proto = SingleTouchInput.prototype; + proto.evTarget = SINGLE_TOUCH_TARGET_EVENTS; + proto.evWin = SINGLE_TOUCH_WINDOW_EVENTS; + _this = _Input.apply(this, arguments) || this; + _this.started = false; + return _this; + } + + var _proto = SingleTouchInput.prototype; + + _proto.handler = function handler(ev) { + var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; // should we handle the touch events? + + if (type === INPUT_START) { + this.started = true; + } + + if (!this.started) { + return; + } + + var touches = normalizeSingleTouches.call(this, ev, type); // when done, reset the started state + + if (type & (INPUT_END | INPUT_CANCEL) && touches[0].length - touches[1].length === 0) { + this.started = false; + } + + this.callback(this.manager, type, { + pointers: touches[0], + changedPointers: touches[1], + pointerType: INPUT_TYPE_TOUCH, + srcEvent: ev + }); + }; + + return SingleTouchInput; +}(Input); + +function normalizeSingleTouches(ev, type) { + var all = toArray$1(ev.touches); + var changed = toArray$1(ev.changedTouches); + + if (type & (INPUT_END | INPUT_CANCEL)) { + all = uniqueArray(all.concat(changed), 'identifier', true); + } + + return [all, changed]; +} +/** + * @private + * wrap a method with a deprecation warning and stack trace + * @param {Function} method + * @param {String} name + * @param {String} message + * @returns {Function} A new function wrapping the supplied method. + */ + + +function deprecate(method, name, message) { + var deprecationMessage = "DEPRECATED METHOD: " + name + "\n" + message + " AT \n"; + return function () { + var e = new Error('get-stack-trace'); + var stack = e && e.stack ? e.stack.replace(/^[^\(]+?[\n$]/gm, '').replace(/^\s+at\s+/gm, '').replace(/^Object.\s*\(/gm, '{anonymous}()@') : 'Unknown Stack Trace'; + var log = window.console && (window.console.warn || window.console.log); + + if (log) { + log.call(window.console, deprecationMessage, stack); + } + + return method.apply(this, arguments); + }; +} +/** + * @private + * extend object. + * means that properties in dest will be overwritten by the ones in src. + * @param {Object} dest + * @param {Object} src + * @param {Boolean} [merge=false] + * @returns {Object} dest + */ + + +var extend$1 = deprecate(function (dest, src, merge) { + var keys = Object.keys(src); + var i = 0; + + while (i < keys.length) { + if (!merge || merge && dest[keys[i]] === undefined) { + dest[keys[i]] = src[keys[i]]; + } + + i++; + } + + return dest; +}, 'extend', 'Use `assign`.'); +/** + * @private + * merge the values from src in the dest. + * means that properties that exist in dest will not be overwritten by src + * @param {Object} dest + * @param {Object} src + * @returns {Object} dest + */ + +var merge = deprecate(function (dest, src) { + return extend$1(dest, src, true); +}, 'merge', 'Use `assign`.'); +/** + * @private + * simple class inheritance + * @param {Function} child + * @param {Function} base + * @param {Object} [properties] + */ + +function inherit(child, base, properties) { + var baseP = base.prototype; + var childP; + childP = child.prototype = Object.create(baseP); + childP.constructor = child; + childP._super = baseP; + + if (properties) { + assign$1(childP, properties); + } +} +/** + * @private + * simple function bind + * @param {Function} fn + * @param {Object} context + * @returns {Function} + */ + + +function bindFn(fn, context) { + return function boundFn() { + return fn.apply(context, arguments); + }; +} +/** + * @private + * Simple way to create a manager with a default set of recognizers. + * @param {HTMLElement} element + * @param {Object} [options] + * @constructor + */ + + +var Hammer = +/*#__PURE__*/ +function () { + var Hammer = + /** + * @private + * @const {string} + */ + function Hammer(element, options) { + if (options === void 0) { + options = {}; + } + + return new Manager(element, _extends({ + recognizers: preset.concat() + }, options)); + }; + + Hammer.VERSION = "2.0.17-rc"; + Hammer.DIRECTION_ALL = DIRECTION_ALL; + Hammer.DIRECTION_DOWN = DIRECTION_DOWN; + Hammer.DIRECTION_LEFT = DIRECTION_LEFT; + Hammer.DIRECTION_RIGHT = DIRECTION_RIGHT; + Hammer.DIRECTION_UP = DIRECTION_UP; + Hammer.DIRECTION_HORIZONTAL = DIRECTION_HORIZONTAL; + Hammer.DIRECTION_VERTICAL = DIRECTION_VERTICAL; + Hammer.DIRECTION_NONE = DIRECTION_NONE; + Hammer.DIRECTION_DOWN = DIRECTION_DOWN; + Hammer.INPUT_START = INPUT_START; + Hammer.INPUT_MOVE = INPUT_MOVE; + Hammer.INPUT_END = INPUT_END; + Hammer.INPUT_CANCEL = INPUT_CANCEL; + Hammer.STATE_POSSIBLE = STATE_POSSIBLE; + Hammer.STATE_BEGAN = STATE_BEGAN; + Hammer.STATE_CHANGED = STATE_CHANGED; + Hammer.STATE_ENDED = STATE_ENDED; + Hammer.STATE_RECOGNIZED = STATE_RECOGNIZED; + Hammer.STATE_CANCELLED = STATE_CANCELLED; + Hammer.STATE_FAILED = STATE_FAILED; + Hammer.Manager = Manager; + Hammer.Input = Input; + Hammer.TouchAction = TouchAction; + Hammer.TouchInput = TouchInput; + Hammer.MouseInput = MouseInput; + Hammer.PointerEventInput = PointerEventInput; + Hammer.TouchMouseInput = TouchMouseInput; + Hammer.SingleTouchInput = SingleTouchInput; + Hammer.Recognizer = Recognizer; + Hammer.AttrRecognizer = AttrRecognizer; + Hammer.Tap = TapRecognizer; + Hammer.Pan = PanRecognizer; + Hammer.Swipe = SwipeRecognizer; + Hammer.Pinch = PinchRecognizer; + Hammer.Rotate = RotateRecognizer; + Hammer.Press = PressRecognizer; + Hammer.on = addEventListeners; + Hammer.off = removeEventListeners; + Hammer.each = each; + Hammer.merge = merge; + Hammer.extend = extend$1; + Hammer.bindFn = bindFn; + Hammer.assign = assign$1; + Hammer.inherit = inherit; + Hammer.bindFn = bindFn; + Hammer.prefixed = prefixed; + Hammer.toArray = toArray$1; + Hammer.inArray = inArray; + Hammer.uniqueArray = uniqueArray; + Hammer.splitStr = splitStr; + Hammer.boolOrFn = boolOrFn; + Hammer.hasParent = hasParent$1; + Hammer.addEventListeners = addEventListeners; + Hammer.removeEventListeners = removeEventListeners; + Hammer.defaults = assign$1({}, defaults, { + preset: preset + }); + return Hammer; +}(); // style loader but by script tag, not by the loader. + +/** + * Setup a mock hammer.js object, for unit testing. + * + * Inspiration: https://github.com/uber/deck.gl/pull/658 + * + * @returns {{on: noop, off: noop, destroy: noop, emit: noop, get: get}} + */ + +function hammerMock() { + var noop = function noop() {}; + + return { + on: noop, + off: noop, + destroy: noop, + emit: noop, + get: function get(m) { + //eslint-disable-line no-unused-vars + return { + set: noop + }; + } + }; +} + +var modifiedHammer; + +if (typeof window !== 'undefined') { + var OurHammer = window['Hammer'] || Hammer; + modifiedHammer = propagating(OurHammer, { + preventDefault: 'mouse' + }); +} else { + modifiedHammer = function modifiedHammer() { + return (// hammer.js is only available in a browser, not in node.js. Replacing it with a mock object. + hammerMock() + ); + }; +} + +var Hammer$1 = modifiedHammer; + +/** + * Register a touch event, taking place before a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + */ +function onTouch(hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFirst) { + callback(event); + } + }; + + hammer.on('hammer.input', callback.inputHandler); +} +/** + * Register a release event, taking place after a gesture + * @param {Hammer} hammer A hammer instance + * @param {function} callback Callback, called as callback(event) + * @returns {*} + */ + +function onRelease(hammer, callback) { + callback.inputHandler = function (event) { + if (event.isFinal) { + callback(event); + } + }; + + return hammer.on('hammer.input', callback.inputHandler); +} +/** + * Hack the PinchRecognizer such that it doesn't prevent default behavior + * for vertical panning. + * + * Yeah ... this is quite a hack ... see https://github.com/hammerjs/hammer.js/issues/932 + * + * @param {Hammer.Pinch} pinchRecognizer + * @return {Hammer.Pinch} returns the pinchRecognizer + */ + +function disablePreventDefaultVertically(pinchRecognizer) { + var TOUCH_ACTION_PAN_Y = 'pan-y'; + + pinchRecognizer.getTouchAction = function () { + // default method returns [TOUCH_ACTION_NONE] + return [TOUCH_ACTION_PAN_Y]; + }; + + return pinchRecognizer; +} + +var trim$1 = stringTrim.trim; +var nativeParseInt = global_1.parseInt; +var hex = /^[+-]?0[Xx]/; +var FORCED$4 = nativeParseInt(whitespaces + '08') !== 8 || nativeParseInt(whitespaces + '0x16') !== 22; // `parseInt` method +// https://tc39.github.io/ecma262/#sec-parseint-string-radix + +var _parseInt = FORCED$4 ? function parseInt(string, radix) { + var S = trim$1(String(string)); + return nativeParseInt(S, radix >>> 0 || (hex.test(S) ? 16 : 10)); +} : nativeParseInt; + +// https://tc39.github.io/ecma262/#sec-parseint-string-radix + +_export({ + global: true, + forced: parseInt != _parseInt +}, { + parseInt: _parseInt +}); + +var _parseInt$1 = path.parseInt; + +var _parseInt$2 = _parseInt$1; + +var _parseInt$3 = _parseInt$2; + +/** + * The class TimeStep is an iterator for dates. You provide a start date and an + * end date. The class itself determines the best scale (step size) based on the + * provided start Date, end Date, and minimumStep. + * + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * + * Alternatively, you can set a scale by hand. + * After creation, you can initialize the class by executing first(). Then you + * can iterate from the start date to the end date via next(). You can check if + * the end date is reached with the function hasNext(). After each step, you can + * retrieve the current date via getCurrent(). + * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours, + * days, to years. + * + * Version: 1.2 + * + */ + +var TimeStep = +/*#__PURE__*/ +function () { + /** + * @param {Date} [start] The start date, for example new Date(2010, 9, 21) + * or new Date(2010, 9, 21, 23, 45, 00) + * @param {Date} [end] The end date + * @param {number} [minimumStep] Optional. Minimum step size in milliseconds + * @param {Date|Array.} [hiddenDates] Optional. + * @param {{showMajorLabels: boolean}} [options] Optional. + * @constructor TimeStep + */ + function TimeStep(start, end, minimumStep, hiddenDates, options) { + classCallCheck$1(this, TimeStep); + + this.moment = options && options.moment || moment$3; // variables + + this.current = this.moment(); + this._start = this.moment(); + this._end = this.moment(); + this.autoScale = true; + this.scale = 'day'; + this.step = 1; // initialize the range + + this.setRange(start, end, minimumStep); // hidden Dates options + + this.switchedDay = false; + this.switchedMonth = false; + this.switchedYear = false; + + if (isArray$3(hiddenDates)) { + this.hiddenDates = hiddenDates; + } else if (hiddenDates != undefined) { + this.hiddenDates = [hiddenDates]; + } else { + this.hiddenDates = []; + } + + this.format = TimeStep.FORMAT; // default formatting + + this.options = options ? options : {}; + } + /** + * Set custom constructor function for moment. Can be used to set dates + * to UTC or to set a utcOffset. + * @param {function} moment + */ + + + createClass$1(TimeStep, [{ + key: "setMoment", + value: function setMoment(moment) { + this.moment = moment; // update the date properties, can have a new utcOffset + + this.current = this.moment(this.current.valueOf()); + this._start = this.moment(this._start.valueOf()); + this._end = this.moment(this._end.valueOf()); + } + /** + * Set custom formatting for the minor an major labels of the TimeStep. + * Both `minorLabels` and `majorLabels` are an Object with properties: + * 'millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'. + * @param {{minorLabels: Object, majorLabels: Object}} format + */ + + }, { + key: "setFormat", + value: function setFormat(format) { + var defaultFormat = util$2.deepExtend({}, TimeStep.FORMAT); + this.format = util$2.deepExtend(defaultFormat, format); + } + /** + * Set a new range + * If minimumStep is provided, the step size is chosen as close as possible + * to the minimumStep but larger than minimumStep. If minimumStep is not + * provided, the scale is set to 1 DAY. + * The minimumStep should correspond with the onscreen size of about 6 characters + * @param {Date} [start] The start date and time. + * @param {Date} [end] The end date and time. + * @param {int} [minimumStep] Optional. Minimum step size in milliseconds + */ + + }, { + key: "setRange", + value: function setRange(start, end, minimumStep) { + if (!(start instanceof Date) || !(end instanceof Date)) { + throw "No legal start or end date in method setRange"; + } + + this._start = start != undefined ? this.moment(start.valueOf()) : now$2(); + this._end = end != undefined ? this.moment(end.valueOf()) : now$2(); + + if (this.autoScale) { + this.setMinimumStep(minimumStep); + } + } + /** + * Set the range iterator to the start date. + */ + + }, { + key: "start", + value: function start() { + this.current = this._start.clone(); + this.roundToMinor(); + } + /** + * Round the current date to the first minor date value + * This must be executed once when the current date is set to start Date + */ + + }, { + key: "roundToMinor", + value: function roundToMinor() { + // round to floor + // to prevent year & month scales rounding down to the first day of week we perform this separately + if (this.scale == 'week') { + this.current.weekday(0); + } // IMPORTANT: we have no breaks in this switch! (this is no bug) + // noinspection FallThroughInSwitchStatementJS + + + switch (this.scale) { + case 'year': + this.current.year(this.step * Math.floor(this.current.year() / this.step)); + this.current.month(0); + + case 'month': + this.current.date(1); + // eslint-disable-line no-fallthrough + + case 'week': // eslint-disable-line no-fallthrough + + case 'day': // eslint-disable-line no-fallthrough + + case 'weekday': + this.current.hours(0); + // eslint-disable-line no-fallthrough + + case 'hour': + this.current.minutes(0); + // eslint-disable-line no-fallthrough + + case 'minute': + this.current.seconds(0); + // eslint-disable-line no-fallthrough + + case 'second': + this.current.milliseconds(0); + // eslint-disable-line no-fallthrough + //case 'millisecond': // nothing to do for milliseconds + } + + if (this.step != 1) { + // round down to the first minor value that is a multiple of the current step size + var priorCurrent = this.current.clone(); + + switch (this.scale) { + case 'millisecond': + this.current.subtract(this.current.milliseconds() % this.step, 'milliseconds'); + break; + + case 'second': + this.current.subtract(this.current.seconds() % this.step, 'seconds'); + break; + + case 'minute': + this.current.subtract(this.current.minutes() % this.step, 'minutes'); + break; + + case 'hour': + this.current.subtract(this.current.hours() % this.step, 'hours'); + break; + + case 'weekday': // intentional fall through + + case 'day': + this.current.subtract((this.current.date() - 1) % this.step, 'day'); + break; + + case 'week': + this.current.subtract(this.current.week() % this.step, 'week'); + break; + + case 'month': + this.current.subtract(this.current.month() % this.step, 'month'); + break; + + case 'year': + this.current.subtract(this.current.year() % this.step, 'year'); + break; + + default: + break; + } + + if (!priorCurrent.isSame(this.current)) { + this.current = this.moment(snapAwayFromHidden(this.hiddenDates, this.current.valueOf(), -1, true)); + } + } + } + /** + * Check if the there is a next step + * @return {boolean} true if the current date has not passed the end date + */ + + }, { + key: "hasNext", + value: function hasNext() { + return this.current.valueOf() <= this._end.valueOf(); + } + /** + * Do the next step + */ + + }, { + key: "next", + value: function next() { + var prev = this.current.valueOf(); // Two cases, needed to prevent issues with switching daylight savings + // (end of March and end of October) + + switch (this.scale) { + case 'millisecond': + this.current.add(this.step, 'millisecond'); + break; + + case 'second': + this.current.add(this.step, 'second'); + break; + + case 'minute': + this.current.add(this.step, 'minute'); + break; + + case 'hour': + this.current.add(this.step, 'hour'); + + if (this.current.month() < 6) { + this.current.subtract(this.current.hours() % this.step, 'hour'); + } else { + if (this.current.hours() % this.step !== 0) { + this.current.add(this.step - this.current.hours() % this.step, 'hour'); + } + } + + break; + + case 'weekday': // intentional fall through + + case 'day': + this.current.add(this.step, 'day'); + break; + + case 'week': + if (this.current.weekday() !== 0) { + // we had a month break not correlating with a week's start before + this.current.weekday(0); // switch back to week cycles + + this.current.add(this.step, 'week'); + } else if (this.options.showMajorLabels === false) { + this.current.add(this.step, 'week'); // the default case + } else { + // first day of the week + var nextWeek = this.current.clone(); + nextWeek.add(1, 'week'); + + if (nextWeek.isSame(this.current, 'month')) { + // is the first day of the next week in the same month? + this.current.add(this.step, 'week'); // the default case + } else { + // inject a step at each first day of the month + this.current.add(this.step, 'week'); + this.current.date(1); + } + } + + break; + + case 'month': + this.current.add(this.step, 'month'); + break; + + case 'year': + this.current.add(this.step, 'year'); + break; + + default: + break; + } + + if (this.step != 1) { + // round down to the correct major value + switch (this.scale) { + case 'millisecond': + if (this.current.milliseconds() > 0 && this.current.milliseconds() < this.step) this.current.milliseconds(0); + break; + + case 'second': + if (this.current.seconds() > 0 && this.current.seconds() < this.step) this.current.seconds(0); + break; + + case 'minute': + if (this.current.minutes() > 0 && this.current.minutes() < this.step) this.current.minutes(0); + break; + + case 'hour': + if (this.current.hours() > 0 && this.current.hours() < this.step) this.current.hours(0); + break; + + case 'weekday': // intentional fall through + + case 'day': + if (this.current.date() < this.step + 1) this.current.date(1); + break; + + case 'week': + if (this.current.week() < this.step) this.current.week(1); + break; + // week numbering starts at 1, not 0 + + case 'month': + if (this.current.month() < this.step) this.current.month(0); + break; + + case 'year': + break; + // nothing to do for year + + default: + break; + } + } // safety mechanism: if current time is still unchanged, move to the end + + + if (this.current.valueOf() == prev) { + this.current = this._end.clone(); + } // Reset switches for year, month and day. Will get set to true where appropriate in DateUtil.stepOverHiddenDates + + + this.switchedDay = false; + this.switchedMonth = false; + this.switchedYear = false; + stepOverHiddenDates(this.moment, this, prev); + } + /** + * Get the current datetime + * @return {Moment} current The current date + */ + + }, { + key: "getCurrent", + value: function getCurrent() { + return this.current.clone(); + } + /** + * Set a custom scale. Autoscaling will be disabled. + * For example setScale('minute', 5) will result + * in minor steps of 5 minutes, and major steps of an hour. + * + * @param {{scale: string, step: number}} params + * An object containing two properties: + * - A string 'scale'. Choose from 'millisecond', 'second', + * 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'. + * - A number 'step'. A step size, by default 1. + * Choose for example 1, 2, 5, or 10. + */ + + }, { + key: "setScale", + value: function setScale(params) { + if (params && typeof params.scale == 'string') { + this.scale = params.scale; + this.step = params.step > 0 ? params.step : 1; + this.autoScale = false; + } + } + /** + * Enable or disable autoscaling + * @param {boolean} enable If true, autoascaling is set true + */ + + }, { + key: "setAutoScale", + value: function setAutoScale(enable) { + this.autoScale = enable; + } + /** + * Automatically determine the scale that bests fits the provided minimum step + * @param {number} [minimumStep] The minimum step size in milliseconds + */ + + }, { + key: "setMinimumStep", + value: function setMinimumStep(minimumStep) { + if (minimumStep == undefined) { + return; + } //var b = asc + ds; + + + var stepYear = 1000 * 60 * 60 * 24 * 30 * 12; + var stepMonth = 1000 * 60 * 60 * 24 * 30; + var stepDay = 1000 * 60 * 60 * 24; + var stepHour = 1000 * 60 * 60; + var stepMinute = 1000 * 60; + var stepSecond = 1000; + var stepMillisecond = 1; // find the smallest step that is larger than the provided minimumStep + + if (stepYear * 1000 > minimumStep) { + this.scale = 'year'; + this.step = 1000; + } + + if (stepYear * 500 > minimumStep) { + this.scale = 'year'; + this.step = 500; + } + + if (stepYear * 100 > minimumStep) { + this.scale = 'year'; + this.step = 100; + } + + if (stepYear * 50 > minimumStep) { + this.scale = 'year'; + this.step = 50; + } + + if (stepYear * 10 > minimumStep) { + this.scale = 'year'; + this.step = 10; + } + + if (stepYear * 5 > minimumStep) { + this.scale = 'year'; + this.step = 5; + } + + if (stepYear > minimumStep) { + this.scale = 'year'; + this.step = 1; + } + + if (stepMonth * 3 > minimumStep) { + this.scale = 'month'; + this.step = 3; + } + + if (stepMonth > minimumStep) { + this.scale = 'month'; + this.step = 1; + } + + if (stepDay * 7 > minimumStep) { + this.scale = 'week'; + this.step = 1; + } + + if (stepDay * 2 > minimumStep) { + this.scale = 'day'; + this.step = 2; + } + + if (stepDay > minimumStep) { + this.scale = 'day'; + this.step = 1; + } + + if (stepDay / 2 > minimumStep) { + this.scale = 'weekday'; + this.step = 1; + } + + if (stepHour * 4 > minimumStep) { + this.scale = 'hour'; + this.step = 4; + } + + if (stepHour > minimumStep) { + this.scale = 'hour'; + this.step = 1; + } + + if (stepMinute * 15 > minimumStep) { + this.scale = 'minute'; + this.step = 15; + } + + if (stepMinute * 10 > minimumStep) { + this.scale = 'minute'; + this.step = 10; + } + + if (stepMinute * 5 > minimumStep) { + this.scale = 'minute'; + this.step = 5; + } + + if (stepMinute > minimumStep) { + this.scale = 'minute'; + this.step = 1; + } + + if (stepSecond * 15 > minimumStep) { + this.scale = 'second'; + this.step = 15; + } + + if (stepSecond * 10 > minimumStep) { + this.scale = 'second'; + this.step = 10; + } + + if (stepSecond * 5 > minimumStep) { + this.scale = 'second'; + this.step = 5; + } + + if (stepSecond > minimumStep) { + this.scale = 'second'; + this.step = 1; + } + + if (stepMillisecond * 200 > minimumStep) { + this.scale = 'millisecond'; + this.step = 200; + } + + if (stepMillisecond * 100 > minimumStep) { + this.scale = 'millisecond'; + this.step = 100; + } + + if (stepMillisecond * 50 > minimumStep) { + this.scale = 'millisecond'; + this.step = 50; + } + + if (stepMillisecond * 10 > minimumStep) { + this.scale = 'millisecond'; + this.step = 10; + } + + if (stepMillisecond * 5 > minimumStep) { + this.scale = 'millisecond'; + this.step = 5; + } + + if (stepMillisecond > minimumStep) { + this.scale = 'millisecond'; + this.step = 1; + } + } + /** + * Snap a date to a rounded value. + * The snap intervals are dependent on the current scale and step. + * Static function + * @param {Date} date the date to be snapped. + * @param {string} scale Current scale, can be 'millisecond', 'second', + * 'minute', 'hour', 'weekday, 'day', 'week', 'month', 'year'. + * @param {number} step Current step (1, 2, 4, 5, ... + * @return {Date} snappedDate + */ + + }, { + key: "isMajor", + + /** + * Check if the current value is a major value (for example when the step + * is DAY, a major value is each first day of the MONTH) + * @return {boolean} true if current date is major, else false. + */ + value: function isMajor() { + if (this.switchedYear == true) { + switch (this.scale) { + case 'year': + case 'month': + case 'week': + case 'weekday': + case 'day': + case 'hour': + case 'minute': + case 'second': + case 'millisecond': + return true; + + default: + return false; + } + } else if (this.switchedMonth == true) { + switch (this.scale) { + case 'week': + case 'weekday': + case 'day': + case 'hour': + case 'minute': + case 'second': + case 'millisecond': + return true; + + default: + return false; + } + } else if (this.switchedDay == true) { + switch (this.scale) { + case 'millisecond': + case 'second': + case 'minute': + case 'hour': + return true; + + default: + return false; + } + } + + var date = this.moment(this.current); + + switch (this.scale) { + case 'millisecond': + return date.milliseconds() == 0; + + case 'second': + return date.seconds() == 0; + + case 'minute': + return date.hours() == 0 && date.minutes() == 0; + + case 'hour': + return date.hours() == 0; + + case 'weekday': // intentional fall through + + case 'day': + return date.date() == 1; + + case 'week': + return date.date() == 1; + + case 'month': + return date.month() == 0; + + case 'year': + return false; + + default: + return false; + } + } + /** + * Returns formatted text for the minor axislabel, depending on the current + * date and the scale. For example when scale is MINUTE, the current time is + * formatted as "hh:mm". + * @param {Date} [date=this.current] custom date. if not provided, current date is taken + * @returns {String} + */ + + }, { + key: "getLabelMinor", + value: function getLabelMinor(date) { + if (date == undefined) { + date = this.current; + } + + if (date instanceof Date) { + date = this.moment(date); + } + + if (typeof this.format.minorLabels === "function") { + return this.format.minorLabels(date, this.scale, this.step); + } + + var format = this.format.minorLabels[this.scale]; // noinspection FallThroughInSwitchStatementJS + + switch (this.scale) { + case 'week': + // Don't draw the minor label if this date is the first day of a month AND if it's NOT the start of the week. + // The 'date' variable may actually be the 'next' step when called from TimeAxis' _repaintLabels. + if (date.date() === 1 && date.weekday() !== 0) { + return ""; + } + + default: + // eslint-disable-line no-fallthrough + return format && format.length > 0 ? this.moment(date).format(format) : ''; + } + } + /** + * Returns formatted text for the major axis label, depending on the current + * date and the scale. For example when scale is MINUTE, the major scale is + * hours, and the hour will be formatted as "hh". + * @param {Date} [date=this.current] custom date. if not provided, current date is taken + * @returns {String} + */ + + }, { + key: "getLabelMajor", + value: function getLabelMajor(date) { + if (date == undefined) { + date = this.current; + } + + if (date instanceof Date) { + date = this.moment(date); + } + + if (typeof this.format.majorLabels === "function") { + return this.format.majorLabels(date, this.scale, this.step); + } + + var format = this.format.majorLabels[this.scale]; + return format && format.length > 0 ? this.moment(date).format(format) : ''; + } + /** + * get class name + * @return {string} class name + */ + + }, { + key: "getClassName", + value: function getClassName() { + var _context; + + var _moment = this.moment; + var m = this.moment(this.current); + var current = m.locale ? m.locale('en') : m.lang('en'); // old versions of moment have .lang() function + + var step = this.step; + var classNames = []; + /** + * + * @param {number} value + * @returns {String} + */ + + function even(value) { + return value / step % 2 == 0 ? ' vis-even' : ' vis-odd'; + } + /** + * + * @param {Date} date + * @returns {String} + */ + + + function today(date) { + if (date.isSame(now$2(), 'day')) { + return ' vis-today'; + } + + if (date.isSame(_moment().add(1, 'day'), 'day')) { + return ' vis-tomorrow'; + } + + if (date.isSame(_moment().add(-1, 'day'), 'day')) { + return ' vis-yesterday'; + } + + return ''; + } + /** + * + * @param {Date} date + * @returns {String} + */ + + + function currentWeek(date) { + return date.isSame(now$2(), 'week') ? ' vis-current-week' : ''; + } + /** + * + * @param {Date} date + * @returns {String} + */ + + + function currentMonth(date) { + return date.isSame(now$2(), 'month') ? ' vis-current-month' : ''; + } + /** + * + * @param {Date} date + * @returns {String} + */ + + + function currentYear(date) { + return date.isSame(now$2(), 'year') ? ' vis-current-year' : ''; + } + + switch (this.scale) { + case 'millisecond': + classNames.push(today(current)); + classNames.push(even(current.milliseconds())); + break; + + case 'second': + classNames.push(today(current)); + classNames.push(even(current.seconds())); + break; + + case 'minute': + classNames.push(today(current)); + classNames.push(even(current.minutes())); + break; + + case 'hour': + classNames.push(concat$2(_context = "vis-h".concat(current.hours())).call(_context, this.step == 4 ? '-h' + (current.hours() + 4) : '')); + classNames.push(today(current)); + classNames.push(even(current.hours())); + break; + + case 'weekday': + classNames.push("vis-".concat(current.format('dddd').toLowerCase())); + classNames.push(today(current)); + classNames.push(currentWeek(current)); + classNames.push(even(current.date())); + break; + + case 'day': + classNames.push("vis-day".concat(current.date())); + classNames.push("vis-".concat(current.format('MMMM').toLowerCase())); + classNames.push(today(current)); + classNames.push(currentMonth(current)); + classNames.push(this.step <= 2 ? today(current) : ''); + classNames.push(this.step <= 2 ? "vis-".concat(current.format('dddd').toLowerCase()) : ''); + classNames.push(even(current.date() - 1)); + break; + + case 'week': + classNames.push("vis-week".concat(current.format('w'))); + classNames.push(currentWeek(current)); + classNames.push(even(current.week())); + break; + + case 'month': + classNames.push("vis-".concat(current.format('MMMM').toLowerCase())); + classNames.push(currentMonth(current)); + classNames.push(even(current.month())); + break; + + case 'year': + classNames.push("vis-year".concat(current.year())); + classNames.push(currentYear(current)); + classNames.push(even(current.year())); + break; + } + + return filter$2(classNames).call(classNames, String).join(" "); + } + }], [{ + key: "snap", + value: function snap(date, scale, step) { + var clone = moment$3(date); + + if (scale == 'year') { + var year = clone.year() + Math.round(clone.month() / 12); + clone.year(Math.round(year / step) * step); + clone.month(0); + clone.date(0); + clone.hours(0); + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'month') { + if (clone.date() > 15) { + clone.date(1); + clone.add(1, 'month'); // important: first set Date to 1, after that change the month. + } else { + clone.date(1); + } + + clone.hours(0); + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'week') { + if (clone.weekday() > 2) { + // doing it the momentjs locale aware way + clone.weekday(0); + clone.add(1, 'week'); + } else { + clone.weekday(0); + } + + clone.hours(0); + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'day') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 5: + case 2: + clone.hours(Math.round(clone.hours() / 24) * 24); + break; + + default: + clone.hours(Math.round(clone.hours() / 12) * 12); + break; + } + + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'weekday') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 5: + case 2: + clone.hours(Math.round(clone.hours() / 12) * 12); + break; + + default: + clone.hours(Math.round(clone.hours() / 6) * 6); + break; + } + + clone.minutes(0); + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'hour') { + switch (step) { + case 4: + clone.minutes(Math.round(clone.minutes() / 60) * 60); + break; + + default: + clone.minutes(Math.round(clone.minutes() / 30) * 30); + break; + } + + clone.seconds(0); + clone.milliseconds(0); + } else if (scale == 'minute') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 15: + case 10: + clone.minutes(Math.round(clone.minutes() / 5) * 5); + clone.seconds(0); + break; + + case 5: + clone.seconds(Math.round(clone.seconds() / 60) * 60); + break; + + default: + clone.seconds(Math.round(clone.seconds() / 30) * 30); + break; + } + + clone.milliseconds(0); + } else if (scale == 'second') { + //noinspection FallthroughInSwitchStatementJS + switch (step) { + case 15: + case 10: + clone.seconds(Math.round(clone.seconds() / 5) * 5); + clone.milliseconds(0); + break; + + case 5: + clone.milliseconds(Math.round(clone.milliseconds() / 1000) * 1000); + break; + + default: + clone.milliseconds(Math.round(clone.milliseconds() / 500) * 500); + break; + } + } else if (scale == 'millisecond') { + var _step = step > 5 ? step / 2 : 1; + + clone.milliseconds(Math.round(clone.milliseconds() / _step) * _step); + } + + return clone; + } + }]); + + return TimeStep; +}(); // Time formatting + + +TimeStep.FORMAT = { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + week: 'w', + month: 'MMM', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + week: 'MMMM YYYY', + month: 'YYYY', + year: '' + } +}; + +/** A horizontal time axis */ + +var TimeAxis = +/*#__PURE__*/ +function (_Component) { + inherits$1(TimeAxis, _Component); + + /** + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See TimeAxis.setOptions for the available + * options. + * @constructor TimeAxis + * @extends Component + */ + function TimeAxis(body, options) { + var _this; + + classCallCheck$1(this, TimeAxis); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(TimeAxis).call(this)); + _this.dom = { + foreground: null, + lines: [], + majorTexts: [], + minorTexts: [], + redundant: { + lines: [], + majorTexts: [], + minorTexts: [] + } + }; + _this.props = { + range: { + start: 0, + end: 0, + minimumStep: 0 + }, + lineTop: 0 + }; + _this.defaultOptions = { + orientation: { + axis: 'bottom' + }, + // axis orientation: 'top' or 'bottom' + showMinorLabels: true, + showMajorLabels: true, + maxMinorChars: 7, + format: TimeStep.FORMAT, + moment: moment$3, + timeAxis: null + }; + _this.options = util$2.extend({}, _this.defaultOptions); + _this.body = body; // create the HTML DOM + + _this._create(); + + _this.setOptions(options); + + return _this; + } + /** + * Set options for the TimeAxis. + * Parameters will be merged in current options. + * @param {Object} options Available options: + * {string} [orientation.axis] + * {boolean} [showMinorLabels] + * {boolean} [showMajorLabels] + */ + + + createClass$1(TimeAxis, [{ + key: "setOptions", + value: function setOptions(options) { + if (options) { + // copy all options that we know + util$2.selectiveExtend(['showMinorLabels', 'showMajorLabels', 'maxMinorChars', 'hiddenDates', 'timeAxis', 'moment', 'rtl'], this.options, options); // deep copy the format options + + util$2.selectiveDeepExtend(['format'], this.options, options); + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation.axis = options.orientation; + } else if (_typeof_1$2(options.orientation) === 'object' && 'axis' in options.orientation) { + this.options.orientation.axis = options.orientation.axis; + } + } // apply locale to moment.js + // TODO: not so nice, this is applied globally to moment.js + + + if ('locale' in options) { + if (typeof moment$3.locale === 'function') { + // moment.js 2.8.1+ + moment$3.locale(options.locale); + } else { + moment$3.lang(options.locale); + } + } + } + } + /** + * Create the HTML DOM for the TimeAxis + */ + + }, { + key: "_create", + value: function _create() { + this.dom.foreground = document.createElement('div'); + this.dom.background = document.createElement('div'); + this.dom.foreground.className = 'vis-time-axis vis-foreground'; + this.dom.background.className = 'vis-time-axis vis-background'; + } + /** + * Destroy the TimeAxis + */ + + }, { + key: "destroy", + value: function destroy() { + // remove from DOM + if (this.dom.foreground.parentNode) { + this.dom.foreground.parentNode.removeChild(this.dom.foreground); + } + + if (this.dom.background.parentNode) { + this.dom.background.parentNode.removeChild(this.dom.background); + } + + this.body = null; + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + var props = this.props; + var foreground = this.dom.foreground; + var background = this.dom.background; // determine the correct parent DOM element (depending on option orientation) + + var parent = this.options.orientation.axis == 'top' ? this.body.dom.top : this.body.dom.bottom; + var parentChanged = foreground.parentNode !== parent; // calculate character width and height + + this._calculateCharSize(); // TODO: recalculate sizes only needed when parent is resized or options is changed + + + var showMinorLabels = this.options.showMinorLabels && this.options.orientation.axis !== 'none'; + var showMajorLabels = this.options.showMajorLabels && this.options.orientation.axis !== 'none'; // determine the width and height of the elemens for the axis + + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + props.height = props.minorLabelHeight + props.majorLabelHeight; + props.width = foreground.offsetWidth; + props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight - (this.options.orientation.axis == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height); + props.minorLineWidth = 1; // TODO: really calculate width + + props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight; + props.majorLineWidth = 1; // TODO: really calculate width + // take foreground and background offline while updating (is almost twice as fast) + + var foregroundNextSibling = foreground.nextSibling; + var backgroundNextSibling = background.nextSibling; + foreground.parentNode && foreground.parentNode.removeChild(foreground); + background.parentNode && background.parentNode.removeChild(background); + foreground.style.height = "".concat(this.props.height, "px"); + + this._repaintLabels(); // put DOM online again (at the same place) + + + if (foregroundNextSibling) { + parent.insertBefore(foreground, foregroundNextSibling); + } else { + parent.appendChild(foreground); + } + + if (backgroundNextSibling) { + this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling); + } else { + this.body.dom.backgroundVertical.appendChild(background); + } + + return this._isResized() || parentChanged; + } + /** + * Repaint major and minor text labels and vertical grid lines + * @private + */ + + }, { + key: "_repaintLabels", + value: function _repaintLabels() { + var orientation = this.options.orientation.axis; // calculate range and step (step such that we have space for 7 characters per label) + + var start = util$2.convert(this.body.range.start, 'Number'); + var end = util$2.convert(this.body.range.end, 'Number'); + var timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * this.options.maxMinorChars).valueOf(); + var minimumStep = timeLabelsize - getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this.body.range, timeLabelsize); + minimumStep -= this.body.util.toTime(0).valueOf(); + var step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates, this.options); + step.setMoment(this.options.moment); + + if (this.options.format) { + step.setFormat(this.options.format); + } + + if (this.options.timeAxis) { + step.setScale(this.options.timeAxis); + } + + this.step = step; // Move all DOM elements to a "redundant" list, where they + // can be picked for re-use, and clear the lists with lines and texts. + // At the end of the function _repaintLabels, left over elements will be cleaned up + + var dom = this.dom; + dom.redundant.lines = dom.lines; + dom.redundant.majorTexts = dom.majorTexts; + dom.redundant.minorTexts = dom.minorTexts; + dom.lines = []; + dom.majorTexts = []; + dom.minorTexts = []; + var current; + var next; + var x; + var xNext; + var isMajor; + var showMinorGrid; + var width = 0; + var prevWidth; + var line; + var xFirstMajorLabel = undefined; + var count = 0; + var MAX = 1000; + var className; + step.start(); + next = step.getCurrent(); + xNext = this.body.util.toScreen(next); + + while (step.hasNext() && count < MAX) { + count++; + isMajor = step.isMajor(); + className = step.getClassName(); + current = next; + x = xNext; + step.next(); + next = step.getCurrent(); + xNext = this.body.util.toScreen(next); + prevWidth = width; + width = xNext - x; + + switch (step.scale) { + case 'week': + showMinorGrid = true; + break; + + default: + showMinorGrid = width >= prevWidth * 0.4; + break; + // prevent displaying of the 31th of the month on a scale of 5 days + } + + if (this.options.showMinorLabels && showMinorGrid) { + var label = this._repaintMinorText(x, step.getLabelMinor(current), orientation, className); + + label.style.width = "".concat(width, "px"); // set width to prevent overflow + } + + if (isMajor && this.options.showMajorLabels) { + if (x > 0) { + if (xFirstMajorLabel == undefined) { + xFirstMajorLabel = x; + } + + label = this._repaintMajorText(x, step.getLabelMajor(current), orientation, className); + } + + line = this._repaintMajorLine(x, width, orientation, className); + } else { + // minor line + if (showMinorGrid) { + line = this._repaintMinorLine(x, width, orientation, className); + } else { + if (line) { + // adjust the width of the previous grid + line.style.width = "".concat(_parseInt$3(line.style.width) + width, "px"); + } + } + } + } + + if (count === MAX && !warnedForOverflow) { + console.warn("Something is wrong with the Timeline scale. Limited drawing of grid lines to ".concat(MAX, " lines.")); + warnedForOverflow = true; + } // create a major label on the left when needed + + + if (this.options.showMajorLabels) { + var leftTime = this.body.util.toTime(0); // upper bound estimation + + var leftText = step.getLabelMajor(leftTime); + var widthText = leftText.length * (this.props.majorCharWidth || 10) + 10; + + if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) { + this._repaintMajorText(0, leftText, orientation, className); + } + } // Cleanup leftover DOM elements from the redundant list + + + forEach$3(util$2).call(util$2, this.dom.redundant, function (arr) { + while (arr.length) { + var elem = arr.pop(); + + if (elem && elem.parentNode) { + elem.parentNode.removeChild(elem); + } + } + }); + } + /** + * Create a minor label for the axis at position x + * @param {number} x + * @param {string} text + * @param {string} orientation "top" or "bottom" (default) + * @param {string} className + * @return {Element} Returns the HTML element of the created label + * @private + */ + + }, { + key: "_repaintMinorText", + value: function _repaintMinorText(x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.minorTexts.shift(); + + if (!label) { + // create new label + var content = document.createTextNode(''); + label = document.createElement('div'); + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + + this.dom.minorTexts.push(label); + label.innerHTML = text; + var y = orientation == 'top' ? this.props.majorLabelHeight : 0; + + this._setXY(label, x, y); + + label.className = "vis-text vis-minor ".concat(className); //label.title = title; // TODO: this is a heavy operation + + return label; + } + /** + * Create a Major label for the axis at position x + * @param {number} x + * @param {string} text + * @param {string} orientation "top" or "bottom" (default) + * @param {string} className + * @return {Element} Returns the HTML element of the created label + * @private + */ + + }, { + key: "_repaintMajorText", + value: function _repaintMajorText(x, text, orientation, className) { + // reuse redundant label + var label = this.dom.redundant.majorTexts.shift(); + + if (!label) { + // create label + var content = document.createElement('div'); + label = document.createElement('div'); + label.appendChild(content); + this.dom.foreground.appendChild(label); + } + + label.childNodes[0].innerHTML = text; + label.className = "vis-text vis-major ".concat(className); //label.title = title; // TODO: this is a heavy operation + + var y = orientation == 'top' ? 0 : this.props.minorLabelHeight; + + this._setXY(label, x, y); + + this.dom.majorTexts.push(label); + return label; + } + /** + * sets xy + * @param {string} label + * @param {number} x + * @param {number} y + * @private + */ + + }, { + key: "_setXY", + value: function _setXY(label, x, y) { + var _context; + + // If rtl is true, inverse x. + var directionX = this.options.rtl ? x * -1 : x; + label.style.transform = concat$2(_context = "translate(".concat(directionX, "px, ")).call(_context, y, "px)"); + } + /** + * Create a minor line for the axis at position x + * @param {number} left + * @param {number} width + * @param {string} orientation "top" or "bottom" (default) + * @param {string} className + * @return {Element} Returns the created line + * @private + */ + + }, { + key: "_repaintMinorLine", + value: function _repaintMinorLine(left, width, orientation, className) { + var _context2; + + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + + if (!line) { + // create vertical line + line = document.createElement('div'); + this.dom.background.appendChild(line); + } + + this.dom.lines.push(line); + var props = this.props; + line.style.width = "".concat(width, "px"); + line.style.height = "".concat(props.minorLineHeight, "px"); + var y = orientation == 'top' ? props.majorLabelHeight : this.body.domProps.top.height; + var x = left - props.minorLineWidth / 2; + + this._setXY(line, x, y); + + line.className = concat$2(_context2 = "vis-grid ".concat(this.options.rtl ? 'vis-vertical-rtl' : 'vis-vertical', " vis-minor ")).call(_context2, className); + return line; + } + /** + * Create a Major line for the axis at position x + * @param {number} left + * @param {number} width + * @param {string} orientation "top" or "bottom" (default) + * @param {string} className + * @return {Element} Returns the created line + * @private + */ + + }, { + key: "_repaintMajorLine", + value: function _repaintMajorLine(left, width, orientation, className) { + var _context3; + + // reuse redundant line + var line = this.dom.redundant.lines.shift(); + + if (!line) { + // create vertical line + line = document.createElement('div'); + this.dom.background.appendChild(line); + } + + this.dom.lines.push(line); + var props = this.props; + line.style.width = "".concat(width, "px"); + line.style.height = "".concat(props.majorLineHeight, "px"); + var y = orientation == 'top' ? 0 : this.body.domProps.top.height; + var x = left - props.majorLineWidth / 2; + + this._setXY(line, x, y); + + line.className = concat$2(_context3 = "vis-grid ".concat(this.options.rtl ? 'vis-vertical-rtl' : 'vis-vertical', " vis-major ")).call(_context3, className); + return line; + } + /** + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. + * @private + */ + + }, { + key: "_calculateCharSize", + value: function _calculateCharSize() { + // Note: We calculate char size with every redraw. Size may change, for + // example when any of the timelines parents had display:none for example. + // determine the char width and height on the minor axis + if (!this.dom.measureCharMinor) { + this.dom.measureCharMinor = document.createElement('DIV'); + this.dom.measureCharMinor.className = 'vis-text vis-minor vis-measure'; + this.dom.measureCharMinor.style.position = 'absolute'; + this.dom.measureCharMinor.appendChild(document.createTextNode('0')); + this.dom.foreground.appendChild(this.dom.measureCharMinor); + } + + this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight; + this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth; // determine the char width and height on the major axis + + if (!this.dom.measureCharMajor) { + this.dom.measureCharMajor = document.createElement('DIV'); + this.dom.measureCharMajor.className = 'vis-text vis-major vis-measure'; + this.dom.measureCharMajor.style.position = 'absolute'; + this.dom.measureCharMajor.appendChild(document.createTextNode('0')); + this.dom.foreground.appendChild(this.dom.measureCharMajor); + } + + this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight; + this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth; + } + }]); + + return TimeAxis; +}(Component); + +var warnedForOverflow = false; + +var keycharm = createCommonjsModule$2(function (module, exports) { + /** + * Created by Alex on 11/6/2014. + */ + // https://github.com/umdjs/umd/blob/master/returnExports.js#L40-L60 + // if the module has no dependencies, the above pattern can be simplified to + + (function (root, factory) { + { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like environments that support module.exports, + // like Node. + module.exports = factory(); + } + })(commonjsGlobal$2, function () { + function keycharm(options) { + var preventDefault = options && options.preventDefault || false; + var container = options && options.container || window; + var _exportFunctions = {}; + var _bound = { + keydown: {}, + keyup: {} + }; + var _keys = {}; + var i; // a - z + + for (i = 97; i <= 122; i++) { + _keys[String.fromCharCode(i)] = { + code: 65 + (i - 97), + shift: false + }; + } // A - Z + + + for (i = 65; i <= 90; i++) { + _keys[String.fromCharCode(i)] = { + code: i, + shift: true + }; + } // 0 - 9 + + + for (i = 0; i <= 9; i++) { + _keys['' + i] = { + code: 48 + i, + shift: false + }; + } // F1 - F12 + + + for (i = 1; i <= 12; i++) { + _keys['F' + i] = { + code: 111 + i, + shift: false + }; + } // num0 - num9 + + + for (i = 0; i <= 9; i++) { + _keys['num' + i] = { + code: 96 + i, + shift: false + }; + } // numpad misc + + + _keys['num*'] = { + code: 106, + shift: false + }; + _keys['num+'] = { + code: 107, + shift: false + }; + _keys['num-'] = { + code: 109, + shift: false + }; + _keys['num/'] = { + code: 111, + shift: false + }; + _keys['num.'] = { + code: 110, + shift: false + }; // arrows + + _keys['left'] = { + code: 37, + shift: false + }; + _keys['up'] = { + code: 38, + shift: false + }; + _keys['right'] = { + code: 39, + shift: false + }; + _keys['down'] = { + code: 40, + shift: false + }; // extra keys + + _keys['space'] = { + code: 32, + shift: false + }; + _keys['enter'] = { + code: 13, + shift: false + }; + _keys['shift'] = { + code: 16, + shift: undefined + }; + _keys['esc'] = { + code: 27, + shift: false + }; + _keys['backspace'] = { + code: 8, + shift: false + }; + _keys['tab'] = { + code: 9, + shift: false + }; + _keys['ctrl'] = { + code: 17, + shift: false + }; + _keys['alt'] = { + code: 18, + shift: false + }; + _keys['delete'] = { + code: 46, + shift: false + }; + _keys['pageup'] = { + code: 33, + shift: false + }; + _keys['pagedown'] = { + code: 34, + shift: false + }; // symbols + + _keys['='] = { + code: 187, + shift: false + }; + _keys['-'] = { + code: 189, + shift: false + }; + _keys[']'] = { + code: 221, + shift: false + }; + _keys['['] = { + code: 219, + shift: false + }; + + var down = function (event) { + handleEvent(event, 'keydown'); + }; + + var up = function (event) { + handleEvent(event, 'keyup'); + }; // handle the actualy bound key with the event + + + var handleEvent = function (event, type) { + if (_bound[type][event.keyCode] !== undefined) { + var bound = _bound[type][event.keyCode]; + + for (var i = 0; i < bound.length; i++) { + if (bound[i].shift === undefined) { + bound[i].fn(event); + } else if (bound[i].shift == true && event.shiftKey == true) { + bound[i].fn(event); + } else if (bound[i].shift == false && event.shiftKey == false) { + bound[i].fn(event); + } + } + + if (preventDefault == true) { + event.preventDefault(); + } + } + }; // bind a key to a callback + + + _exportFunctions.bind = function (key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + + if (_bound[type][_keys[key].code] === undefined) { + _bound[type][_keys[key].code] = []; + } + + _bound[type][_keys[key].code].push({ + fn: callback, + shift: _keys[key].shift + }); + }; // bind all keys to a call back (demo purposes) + + + _exportFunctions.bindAll = function (callback, type) { + if (type === undefined) { + type = 'keydown'; + } + + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + _exportFunctions.bind(key, callback, type); + } + } + }; // get the key label from an event + + + _exportFunctions.getKey = function (event) { + for (var key in _keys) { + if (_keys.hasOwnProperty(key)) { + if (event.shiftKey == true && _keys[key].shift == true && event.keyCode == _keys[key].code) { + return key; + } else if (event.shiftKey == false && _keys[key].shift == false && event.keyCode == _keys[key].code) { + return key; + } else if (event.keyCode == _keys[key].code && key == 'shift') { + return key; + } + } + } + + return "unknown key, currently not supported"; + }; // unbind either a specific callback from a key or all of them (by leaving callback undefined) + + + _exportFunctions.unbind = function (key, callback, type) { + if (type === undefined) { + type = 'keydown'; + } + + if (_keys[key] === undefined) { + throw new Error("unsupported key: " + key); + } + + if (callback !== undefined) { + var newBindings = []; + var bound = _bound[type][_keys[key].code]; + + if (bound !== undefined) { + for (var i = 0; i < bound.length; i++) { + if (!(bound[i].fn == callback && bound[i].shift == _keys[key].shift)) { + newBindings.push(_bound[type][_keys[key].code][i]); + } + } + } + + _bound[type][_keys[key].code] = newBindings; + } else { + _bound[type][_keys[key].code] = []; + } + }; // reset all bound variables. + + + _exportFunctions.reset = function () { + _bound = { + keydown: {}, + keyup: {} + }; + }; // unbind all listeners and reset all variables. + + + _exportFunctions.destroy = function () { + _bound = { + keydown: {}, + keyup: {} + }; + container.removeEventListener('keydown', down, true); + container.removeEventListener('keyup', up, true); + }; // create listeners. + + + container.addEventListener('keydown', down, true); + container.addEventListener('keyup', up, true); // return the public functions. + + return _exportFunctions; + } + + return keycharm; + }); +}); + +/** + * Turn an element into an clickToUse element. + * When not active, the element has a transparent overlay. When the overlay is + * clicked, the mode is changed to active. + * When active, the element is displayed with a blue border around it, and + * the interactive contents of the element can be used. When clicked outside + * the element, the elements mode is changed to inactive. + * @param {Element} container + * @constructor Activator + */ + +function Activator(container) { + var _context, _context2; + + this.active = false; + this.dom = { + container: container + }; + this.dom.overlay = document.createElement('div'); + this.dom.overlay.className = 'vis-overlay'; + this.dom.container.appendChild(this.dom.overlay); + this.hammer = Hammer$1(this.dom.overlay); + this.hammer.on('tap', bind$2(_context = this._onTapOverlay).call(_context, this)); // block all touch events (except tap) + + var me = this; + var events = ['tap', 'doubletap', 'press', 'pinch', 'pan', 'panstart', 'panmove', 'panend']; + + forEach$3(events).call(events, function (event) { + me.hammer.on(event, function (event) { + event.stopPropagation(); + }); + }); // attach a click event to the window, in order to deactivate when clicking outside the timeline + + + if (document && document.body) { + this.onClick = function (event) { + if (!_hasParent(event.target, container)) { + me.deactivate(); + } + }; + + document.body.addEventListener('click', this.onClick); + } + + if (this.keycharm !== undefined) { + this.keycharm.destroy(); + } + + this.keycharm = keycharm(); // keycharm listener only bounded when active) + + this.escListener = bind$2(_context2 = this.deactivate).call(_context2, this); +} // turn into an event emitter + + +emitterComponent(Activator.prototype); // The currently active activator + +Activator.current = null; +/** + * Destroy the activator. Cleans up all created DOM and event listeners + */ + +Activator.prototype.destroy = function () { + this.deactivate(); // remove dom + + this.dom.overlay.parentNode.removeChild(this.dom.overlay); // remove global event listener + + if (this.onClick) { + document.body.removeEventListener('click', this.onClick); + } // remove keycharm + + + if (this.keycharm !== undefined) { + this.keycharm.destroy(); + } + + this.keycharm = null; // cleanup hammer instances + + this.hammer.destroy(); + this.hammer = null; // FIXME: cleaning up hammer instances doesn't work (Timeline not removed from memory) +}; +/** + * Activate the element + * Overlay is hidden, element is decorated with a blue shadow border + */ + + +Activator.prototype.activate = function () { + var _context3; + + // we allow only one active activator at a time + if (Activator.current) { + Activator.current.deactivate(); + } + + Activator.current = this; + this.active = true; + this.dom.overlay.style.display = 'none'; + util$2.addClassName(this.dom.container, 'vis-active'); + this.emit('change'); + this.emit('activate'); // ugly hack: bind ESC after emitting the events, as the Network rebinds all + // keyboard events on a 'change' event + + bind$2(_context3 = this.keycharm).call(_context3, 'esc', this.escListener); +}; +/** + * Deactivate the element + * Overlay is displayed on top of the element + */ + + +Activator.prototype.deactivate = function () { + this.active = false; + this.dom.overlay.style.display = ''; + util$2.removeClassName(this.dom.container, 'vis-active'); + this.keycharm.unbind('esc', this.escListener); + this.emit('change'); + this.emit('deactivate'); +}; +/** + * Handle a tap event: activate the container + * @param {Event} event The event + * @private + */ + + +Activator.prototype._onTapOverlay = function (event) { + // activate the container + this.activate(); + event.stopPropagation(); +}; +/** + * Test whether the element has the requested parent element somewhere in + * its chain of parent nodes. + * @param {HTMLElement} element + * @param {HTMLElement} parent + * @returns {boolean} Returns true when the parent is found somewhere in the + * chain of parent nodes. + * @private + */ + + +function _hasParent(element, parent) { + while (element) { + if (element === parent) { + return true; + } + + element = element.parentNode; + } + + return false; +} + +var it = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + var it = moment.defineLocale('it', { + months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'), + monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'), + weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'), + weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'), + weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'), + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY HH:mm', + LLLL: 'dddd D MMMM YYYY HH:mm' + }, + calendar: { + sameDay: '[Oggi alle] LT', + nextDay: '[Domani alle] LT', + nextWeek: 'dddd [alle] LT', + lastDay: '[Ieri alle] LT', + lastWeek: function () { + switch (this.day()) { + case 0: + return '[la scorsa] dddd [alle] LT'; + + default: + return '[lo scorso] dddd [alle] LT'; + } + }, + sameElse: 'L' + }, + relativeTime: { + future: function (s) { + return (/^[0-9].+$/.test(s) ? 'tra' : 'in') + ' ' + s; + }, + past: '%s fa', + s: 'alcuni secondi', + ss: '%d secondi', + m: 'un minuto', + mm: '%d minuti', + h: 'un\'ora', + hh: '%d ore', + d: 'un giorno', + dd: '%d giorni', + M: 'un mese', + MM: '%d mesi', + y: 'un anno', + yy: '%d anni' + }, + dayOfMonthOrdinalParse: /\d{1,2}º/, + ordinal: '%dº', + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return it; + }); +}); + +var nl = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'), + monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'); + var monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i]; + var monthsRegex = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i; + var nl = moment.defineLocale('nl', { + months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'), + monthsShort: function (m, format) { + if (!m) { + return monthsShortWithDots; + } else if (/-MMM-/.test(format)) { + return monthsShortWithoutDots[m.month()]; + } else { + return monthsShortWithDots[m.month()]; + } + }, + monthsRegex: monthsRegex, + monthsShortRegex: monthsRegex, + monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i, + monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i, + monthsParse: monthsParse, + longMonthsParse: monthsParse, + shortMonthsParse: monthsParse, + weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'), + weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'), + weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'), + weekdaysParseExact: true, + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'DD-MM-YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY HH:mm', + LLLL: 'dddd D MMMM YYYY HH:mm' + }, + calendar: { + sameDay: '[vandaag om] LT', + nextDay: '[morgen om] LT', + nextWeek: 'dddd [om] LT', + lastDay: '[gisteren om] LT', + lastWeek: '[afgelopen] dddd [om] LT', + sameElse: 'L' + }, + relativeTime: { + future: 'over %s', + past: '%s geleden', + s: 'een paar seconden', + ss: '%d seconden', + m: 'één minuut', + mm: '%d minuten', + h: 'één uur', + hh: '%d uur', + d: 'één dag', + dd: '%d dagen', + M: 'één maand', + MM: '%d maanden', + y: 'één jaar', + yy: '%d jaar' + }, + dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/, + ordinal: function (number) { + return number + (number === 1 || number === 8 || number >= 20 ? 'ste' : 'de'); + }, + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return nl; + }); +}); + +var de = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + function processRelativeTime(number, withoutSuffix, key, isFuture) { + var format = { + 'm': ['eine Minute', 'einer Minute'], + 'h': ['eine Stunde', 'einer Stunde'], + 'd': ['ein Tag', 'einem Tag'], + 'dd': [number + ' Tage', number + ' Tagen'], + 'M': ['ein Monat', 'einem Monat'], + 'MM': [number + ' Monate', number + ' Monaten'], + 'y': ['ein Jahr', 'einem Jahr'], + 'yy': [number + ' Jahre', number + ' Jahren'] + }; + return withoutSuffix ? format[key][0] : format[key][1]; + } + + var de = moment.defineLocale('de', { + months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), + monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'), + monthsParseExact: true, + weekdays: 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'), + weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), + weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), + weekdaysParseExact: true, + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'DD.MM.YYYY', + LL: 'D. MMMM YYYY', + LLL: 'D. MMMM YYYY HH:mm', + LLLL: 'dddd, D. MMMM YYYY HH:mm' + }, + calendar: { + sameDay: '[heute um] LT [Uhr]', + sameElse: 'L', + nextDay: '[morgen um] LT [Uhr]', + nextWeek: 'dddd [um] LT [Uhr]', + lastDay: '[gestern um] LT [Uhr]', + lastWeek: '[letzten] dddd [um] LT [Uhr]' + }, + relativeTime: { + future: 'in %s', + past: 'vor %s', + s: 'ein paar Sekunden', + ss: '%d Sekunden', + m: processRelativeTime, + mm: '%d Minuten', + h: processRelativeTime, + hh: '%d Stunden', + d: processRelativeTime, + dd: processRelativeTime, + M: processRelativeTime, + MM: processRelativeTime, + y: processRelativeTime, + yy: processRelativeTime + }, + dayOfMonthOrdinalParse: /\d{1,2}\./, + ordinal: '%d.', + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return de; + }); +}); + +var fr = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + var fr = moment.defineLocale('fr', { + months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'), + monthsShort: 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'), + monthsParseExact: true, + weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'), + weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'), + weekdaysMin: 'di_lu_ma_me_je_ve_sa'.split('_'), + weekdaysParseExact: true, + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'DD/MM/YYYY', + LL: 'D MMMM YYYY', + LLL: 'D MMMM YYYY HH:mm', + LLLL: 'dddd D MMMM YYYY HH:mm' + }, + calendar: { + sameDay: '[Aujourd’hui à] LT', + nextDay: '[Demain à] LT', + nextWeek: 'dddd [à] LT', + lastDay: '[Hier à] LT', + lastWeek: 'dddd [dernier à] LT', + sameElse: 'L' + }, + relativeTime: { + future: 'dans %s', + past: 'il y a %s', + s: 'quelques secondes', + ss: '%d secondes', + m: 'une minute', + mm: '%d minutes', + h: 'une heure', + hh: '%d heures', + d: 'un jour', + dd: '%d jours', + M: 'un mois', + MM: '%d mois', + y: 'un an', + yy: '%d ans' + }, + dayOfMonthOrdinalParse: /\d{1,2}(er|)/, + ordinal: function (number, period) { + switch (period) { + // TODO: Return 'e' when day of month > 1. Move this case inside + // block for masculine words below. + // See https://github.com/moment/moment/issues/3375 + case 'D': + return number + (number === 1 ? 'er' : ''); + // Words with masculine grammatical gender: mois, trimestre, jour + + default: + case 'M': + case 'Q': + case 'DDD': + case 'd': + return number + (number === 1 ? 'er' : 'e'); + // Words with feminine grammatical gender: semaine + + case 'w': + case 'W': + return number + (number === 1 ? 're' : 'e'); + } + }, + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return fr; + }); +}); + +var es = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'), + monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'); + var monthsParse = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i]; + var monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i; + var es = moment.defineLocale('es', { + months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'), + monthsShort: function (m, format) { + if (!m) { + return monthsShortDot; + } else if (/-MMM-/.test(format)) { + return monthsShort[m.month()]; + } else { + return monthsShortDot[m.month()]; + } + }, + monthsRegex: monthsRegex, + monthsShortRegex: monthsRegex, + monthsStrictRegex: /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i, + monthsShortStrictRegex: /^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i, + monthsParse: monthsParse, + longMonthsParse: monthsParse, + shortMonthsParse: monthsParse, + weekdays: 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'), + weekdaysShort: 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'), + weekdaysMin: 'do_lu_ma_mi_ju_vi_sá'.split('_'), + weekdaysParseExact: true, + longDateFormat: { + LT: 'H:mm', + LTS: 'H:mm:ss', + L: 'DD/MM/YYYY', + LL: 'D [de] MMMM [de] YYYY', + LLL: 'D [de] MMMM [de] YYYY H:mm', + LLLL: 'dddd, D [de] MMMM [de] YYYY H:mm' + }, + calendar: { + sameDay: function () { + return '[hoy a la' + (this.hours() !== 1 ? 's' : '') + '] LT'; + }, + nextDay: function () { + return '[mañana a la' + (this.hours() !== 1 ? 's' : '') + '] LT'; + }, + nextWeek: function () { + return 'dddd [a la' + (this.hours() !== 1 ? 's' : '') + '] LT'; + }, + lastDay: function () { + return '[ayer a la' + (this.hours() !== 1 ? 's' : '') + '] LT'; + }, + lastWeek: function () { + return '[el] dddd [pasado a la' + (this.hours() !== 1 ? 's' : '') + '] LT'; + }, + sameElse: 'L' + }, + relativeTime: { + future: 'en %s', + past: 'hace %s', + s: 'unos segundos', + ss: '%d segundos', + m: 'un minuto', + mm: '%d minutos', + h: 'una hora', + hh: '%d horas', + d: 'un día', + dd: '%d días', + M: 'un mes', + MM: '%d meses', + y: 'un año', + yy: '%d años' + }, + dayOfMonthOrdinalParse: /\d{1,2}º/, + ordinal: '%dº', + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return es; + }); +}); + +var uk = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]; + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд', + 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин', + 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин', + 'dd': 'день_дні_днів', + 'MM': 'місяць_місяці_місяців', + 'yy': 'рік_роки_років' + }; + + if (key === 'm') { + return withoutSuffix ? 'хвилина' : 'хвилину'; + } else if (key === 'h') { + return withoutSuffix ? 'година' : 'годину'; + } else { + return number + ' ' + plural(format[key], +number); + } + } + + function weekdaysCaseReplace(m, format) { + var weekdays = { + 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'), + 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'), + 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_') + }; + + if (m === true) { + return weekdays['nominative'].slice(1, 7).concat(weekdays['nominative'].slice(0, 1)); + } + + if (!m) { + return weekdays['nominative']; + } + + var nounCase = /(\[[ВвУу]\]) ?dddd/.test(format) ? 'accusative' : /\[?(?:минулої|наступної)? ?\] ?dddd/.test(format) ? 'genitive' : 'nominative'; + return weekdays[nounCase][m.day()]; + } + + function processHoursFunction(str) { + return function () { + return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT'; + }; + } + + var uk = moment.defineLocale('uk', { + months: { + 'format': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_'), + 'standalone': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_') + }, + monthsShort: 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'), + weekdays: weekdaysCaseReplace, + weekdaysShort: 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin: 'нд_пн_вт_ср_чт_пт_сб'.split('_'), + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'DD.MM.YYYY', + LL: 'D MMMM YYYY р.', + LLL: 'D MMMM YYYY р., HH:mm', + LLLL: 'dddd, D MMMM YYYY р., HH:mm' + }, + calendar: { + sameDay: processHoursFunction('[Сьогодні '), + nextDay: processHoursFunction('[Завтра '), + lastDay: processHoursFunction('[Вчора '), + nextWeek: processHoursFunction('[У] dddd ['), + lastWeek: function () { + switch (this.day()) { + case 0: + case 3: + case 5: + case 6: + return processHoursFunction('[Минулої] dddd [').call(this); + + case 1: + case 2: + case 4: + return processHoursFunction('[Минулого] dddd [').call(this); + } + }, + sameElse: 'L' + }, + relativeTime: { + future: 'за %s', + past: '%s тому', + s: 'декілька секунд', + ss: relativeTimeWithPlural, + m: relativeTimeWithPlural, + mm: relativeTimeWithPlural, + h: 'годину', + hh: relativeTimeWithPlural, + d: 'день', + dd: relativeTimeWithPlural, + M: 'місяць', + MM: relativeTimeWithPlural, + y: 'рік', + yy: relativeTimeWithPlural + }, + // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason + meridiemParse: /ночі|ранку|дня|вечора/, + isPM: function (input) { + return /^(дня|вечора)$/.test(input); + }, + meridiem: function (hour, minute, isLower) { + if (hour < 4) { + return 'ночі'; + } else if (hour < 12) { + return 'ранку'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечора'; + } + }, + dayOfMonthOrdinalParse: /\d{1,2}-(й|го)/, + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + case 'w': + case 'W': + return number + '-й'; + + case 'D': + return number + '-го'; + + default: + return number; + } + }, + week: { + dow: 1, + // Monday is the first day of the week. + doy: 7 // The week that contains Jan 7th is the first week of the year. + + } + }); + return uk; + }); +}); + +var ru = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + function plural(word, num) { + var forms = word.split('_'); + return num % 10 === 1 && num % 100 !== 11 ? forms[0] : num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]; + } + + function relativeTimeWithPlural(number, withoutSuffix, key) { + var format = { + 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд', + 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут', + 'hh': 'час_часа_часов', + 'dd': 'день_дня_дней', + 'MM': 'месяц_месяца_месяцев', + 'yy': 'год_года_лет' + }; + + if (key === 'm') { + return withoutSuffix ? 'минута' : 'минуту'; + } else { + return number + ' ' + plural(format[key], +number); + } + } + + var monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i]; // http://new.gramota.ru/spravka/rules/139-prop : § 103 + // Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637 + // CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753 + + var ru = moment.defineLocale('ru', { + months: { + format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_'), + standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_') + }, + monthsShort: { + // по CLDR именно "июл." и "июн.", но какой смысл менять букву на точку ? + format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split('_'), + standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split('_') + }, + weekdays: { + standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'), + format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_'), + isFormat: /\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\] ?dddd/ + }, + weekdaysShort: 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + weekdaysMin: 'вс_пн_вт_ср_чт_пт_сб'.split('_'), + monthsParse: monthsParse, + longMonthsParse: monthsParse, + shortMonthsParse: monthsParse, + // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки + monthsRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i, + // копия предыдущего + monthsShortRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i, + // полные названия с падежами + monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i, + // Выражение, которое соотвествует только сокращённым формам + monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i, + longDateFormat: { + LT: 'H:mm', + LTS: 'H:mm:ss', + L: 'DD.MM.YYYY', + LL: 'D MMMM YYYY г.', + LLL: 'D MMMM YYYY г., H:mm', + LLLL: 'dddd, D MMMM YYYY г., H:mm' + }, + calendar: { + sameDay: '[Сегодня, в] LT', + nextDay: '[Завтра, в] LT', + lastDay: '[Вчера, в] LT', + nextWeek: function (now) { + if (now.week() !== this.week()) { + switch (this.day()) { + case 0: + return '[В следующее] dddd, [в] LT'; + + case 1: + case 2: + case 4: + return '[В следующий] dddd, [в] LT'; + + case 3: + case 5: + case 6: + return '[В следующую] dddd, [в] LT'; + } + } else { + if (this.day() === 2) { + return '[Во] dddd, [в] LT'; + } else { + return '[В] dddd, [в] LT'; + } + } + }, + lastWeek: function (now) { + if (now.week() !== this.week()) { + switch (this.day()) { + case 0: + return '[В прошлое] dddd, [в] LT'; + + case 1: + case 2: + case 4: + return '[В прошлый] dddd, [в] LT'; + + case 3: + case 5: + case 6: + return '[В прошлую] dddd, [в] LT'; + } + } else { + if (this.day() === 2) { + return '[Во] dddd, [в] LT'; + } else { + return '[В] dddd, [в] LT'; + } + } + }, + sameElse: 'L' + }, + relativeTime: { + future: 'через %s', + past: '%s назад', + s: 'несколько секунд', + ss: relativeTimeWithPlural, + m: relativeTimeWithPlural, + mm: relativeTimeWithPlural, + h: 'час', + hh: relativeTimeWithPlural, + d: 'день', + dd: relativeTimeWithPlural, + M: 'месяц', + MM: relativeTimeWithPlural, + y: 'год', + yy: relativeTimeWithPlural + }, + meridiemParse: /ночи|утра|дня|вечера/i, + isPM: function (input) { + return /^(дня|вечера)$/.test(input); + }, + meridiem: function (hour, minute, isLower) { + if (hour < 4) { + return 'ночи'; + } else if (hour < 12) { + return 'утра'; + } else if (hour < 17) { + return 'дня'; + } else { + return 'вечера'; + } + }, + dayOfMonthOrdinalParse: /\d{1,2}-(й|го|я)/, + ordinal: function (number, period) { + switch (period) { + case 'M': + case 'd': + case 'DDD': + return number + '-й'; + + case 'D': + return number + '-го'; + + case 'w': + case 'W': + return number + '-я'; + + default: + return number; + } + }, + week: { + dow: 1, + // Monday is the first day of the week. + doy: 4 // The week that contains Jan 4th is the first week of the year. + + } + }); + return ru; + }); +}); + +var ja = createCommonjsModule$2(function (module, exports) { + + (function (global, factory) { + typeof commonjsRequire$2 === 'function' ? factory(moment$2) : factory(global.moment); + })(commonjsGlobal$2, function (moment) { + + var ja = moment.defineLocale('ja', { + months: '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'), + monthsShort: '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'), + weekdays: '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'), + weekdaysShort: '日_月_火_水_木_金_土'.split('_'), + weekdaysMin: '日_月_火_水_木_金_土'.split('_'), + longDateFormat: { + LT: 'HH:mm', + LTS: 'HH:mm:ss', + L: 'YYYY/MM/DD', + LL: 'YYYY年M月D日', + LLL: 'YYYY年M月D日 HH:mm', + LLLL: 'YYYY年M月D日 dddd HH:mm', + l: 'YYYY/MM/DD', + ll: 'YYYY年M月D日', + lll: 'YYYY年M月D日 HH:mm', + llll: 'YYYY年M月D日(ddd) HH:mm' + }, + meridiemParse: /午前|午後/i, + isPM: function (input) { + return input === '午後'; + }, + meridiem: function (hour, minute, isLower) { + if (hour < 12) { + return '午前'; + } else { + return '午後'; + } + }, + calendar: { + sameDay: '[今日] LT', + nextDay: '[明日] LT', + nextWeek: function (now) { + if (now.week() < this.week()) { + return '[来週]dddd LT'; + } else { + return 'dddd LT'; + } + }, + lastDay: '[昨日] LT', + lastWeek: function (now) { + if (this.week() < now.week()) { + return '[先週]dddd LT'; + } else { + return 'dddd LT'; + } + }, + sameElse: 'L' + }, + dayOfMonthOrdinalParse: /\d{1,2}日/, + ordinal: function (number, period) { + switch (period) { + case 'd': + case 'D': + case 'DDD': + return number + '日'; + + default: + return number; + } + }, + relativeTime: { + future: '%s後', + past: '%s前', + s: '数秒', + ss: '%d秒', + m: '1分', + mm: '%d分', + h: '1時間', + hh: '%d時間', + d: '1日', + dd: '%d日', + M: '1ヶ月', + MM: '%dヶ月', + y: '1年', + yy: '%d年' + } + }); + return ja; + }); +}); + +// English +var en = { + current: 'current', + time: 'time', + deleteSelected: 'Delete selected' +}; +var en_EN = en; +var en_US = en; // Italiano +var it$1 = { + current: 'attuale', + time: 'tempo', + deleteSelected: 'Cancella la selezione' +}; +var it_IT = it$1; +var it_CH = it$1; // Dutch +var nl$1 = { + current: 'huidige', + time: 'tijd', + deleteSelected: 'Selectie verwijderen' +}; +var nl_NL = nl$1; +var nl_BE = nl$1; // German +var de$1 = { + current: 'Aktuelle', + time: 'Zeit', + deleteSelected: "L\xF6sche Auswahl" +}; +var de_DE = de$1; // French +var fr$1 = { + current: 'actuel', + time: 'heure', + deleteSelected: 'Effacer la selection' +}; +var fr_FR = fr$1; +var fr_CA = fr$1; +var fr_BE = fr$1; // Espanol +var es$1 = { + current: 'corriente', + time: 'hora', + deleteSelected: "Eliminar selecci\xF3n" +}; +var es_ES = es$1; // Ukrainian +var uk$1 = { + current: 'поточний', + time: 'час', + deleteSelected: 'Видалити обране' +}; +var uk_UA = uk$1; // Russian +var ru$1 = { + current: 'текущее', + time: 'время', + deleteSelected: 'Удалить выбранное' +}; +var ru_RU = ru$1; // Japanese +var ja$1 = { + current: '現在', + time: '時刻', + deleteSelected: '選択されたものを削除' +}; +var ja_JP = ja$1; +var locales = { + en: en, + en_EN: en_EN, + en_US: en_US, + it: it$1, + it_IT: it_IT, + it_CH: it_CH, + nl: nl$1, + nl_NL: nl_NL, + nl_BE: nl_BE, + de: de$1, + de_DE: de_DE, + fr: fr$1, + fr_FR: fr_FR, + fr_CA: fr_CA, + fr_BE: fr_BE, + es: es$1, + es_ES: es_ES, + uk: uk$1, + uk_UA: uk_UA, + ru: ru$1, + ru_RU: ru_RU, + ja: ja$1, + ja_JP: ja_JP +}; + +/** A custom time bar */ + +var CustomTime = +/*#__PURE__*/ +function (_Component) { + inherits$1(CustomTime, _Component); + + /** + * @param {{range: Range, dom: Object}} body + * @param {Object} [options] Available parameters: + * {number | string} id + * {string} locales + * {string} locale + * @constructor CustomTime + * @extends Component + */ + function CustomTime(body, options) { + var _context; + + var _this; + + classCallCheck$1(this, CustomTime); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(CustomTime).call(this)); + _this.body = body; // default options + + _this.defaultOptions = { + moment: moment$3, + locales: locales, + locale: 'en', + id: undefined, + title: undefined + }; + _this.options = util$2.extend({}, _this.defaultOptions); + + _this.setOptions(options); + + _this.options.locales = util$2.extend({}, locales, _this.options.locales); + var defaultLocales = _this.defaultOptions.locales[_this.defaultOptions.locale]; + + forEach$3(_context = keys$3(_this.options.locales)).call(_context, function (locale) { + _this.options.locales[locale] = util$2.extend({}, defaultLocales, _this.options.locales[locale]); + }); + + if (options && options.time) { + _this.customTime = options.time; + } else { + _this.customTime = new Date(); + } + + _this.eventParams = {}; // stores state parameters while dragging the bar + // create the DOM + + _this._create(); + + return _this; + } + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {number | string} id + * {string} locales + * {string} locale + */ + + + createClass$1(CustomTime, [{ + key: "setOptions", + value: function setOptions(options) { + if (options) { + // copy all options that we know + util$2.selectiveExtend(['moment', 'locale', 'locales', 'id', 'title', 'rtl'], this.options, options); + } + } + /** + * Create the DOM for the custom time + * @private + */ + + }, { + key: "_create", + value: function _create() { + var _context2, _context3, _context4; + + var bar = document.createElement('div'); + bar['custom-time'] = this; + bar.className = "vis-custom-time ".concat(this.options.id || ''); + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + this.bar = bar; + var drag = document.createElement('div'); + drag.style.position = 'relative'; + drag.style.top = '0px'; + + if (this.options.rtl) { + drag.style.right = '-10px'; + } else { + drag.style.left = '-10px'; + } + + drag.style.height = '100%'; + drag.style.width = '20px'; + /** + * + * @param {WheelEvent} e + */ + + function onMouseWheel(e) { + this.body.range._onMouseWheel(e); + } + + if (drag.addEventListener) { + // IE9, Chrome, Safari, Opera + drag.addEventListener("mousewheel", bind$2(onMouseWheel).call(onMouseWheel, this), false); // Firefox + + drag.addEventListener("DOMMouseScroll", bind$2(onMouseWheel).call(onMouseWheel, this), false); + } else { + // IE 6/7/8 + drag.attachEvent("onmousewheel", bind$2(onMouseWheel).call(onMouseWheel, this)); + } + + bar.appendChild(drag); // attach event listeners + + this.hammer = new Hammer$1(drag); + this.hammer.on('panstart', bind$2(_context2 = this._onDragStart).call(_context2, this)); + this.hammer.on('panmove', bind$2(_context3 = this._onDrag).call(_context3, this)); + this.hammer.on('panend', bind$2(_context4 = this._onDragEnd).call(_context4, this)); + this.hammer.get('pan').set({ + threshold: 5, + direction: Hammer$1.DIRECTION_ALL + }); + } + /** + * Destroy the CustomTime bar + */ + + }, { + key: "destroy", + value: function destroy() { + this.hide(); + this.hammer.destroy(); + this.hammer = null; + this.body = null; + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + var parent = this.body.dom.backgroundVertical; + + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + + parent.appendChild(this.bar); + } + + var x = this.body.util.toScreen(this.customTime); + var locale = this.options.locales[this.options.locale]; + + if (!locale) { + if (!this.warned) { + console.warn("WARNING: options.locales['".concat(this.options.locale, "'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization")); + this.warned = true; + } + + locale = this.options.locales['en']; // fall back on english when not available + } + + var title = this.options.title; // To hide the title completely use empty string ''. + + if (title === undefined) { + var _context5; + + title = concat$2(_context5 = "".concat(locale.time, ": ")).call(_context5, this.options.moment(this.customTime).format('dddd, MMMM Do YYYY, H:mm:ss')); + title = title.charAt(0).toUpperCase() + title.substring(1); + } else if (typeof title === "function") { + title = title.call(this.customTime); + } + + this.options.rtl ? this.bar.style.right = "".concat(x, "px") : this.bar.style.left = "".concat(x, "px"); + this.bar.title = title; + return false; + } + /** + * Remove the CustomTime from the DOM + */ + + }, { + key: "hide", + value: function hide() { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + } + /** + * Set custom time. + * @param {Date | number | string} time + */ + + }, { + key: "setCustomTime", + value: function setCustomTime(time) { + this.customTime = util$2.convert(time, 'Date'); + this.redraw(); + } + /** + * Retrieve the current custom time. + * @return {Date} customTime + */ + + }, { + key: "getCustomTime", + value: function getCustomTime() { + return new Date(this.customTime.valueOf()); + } + /** + * Set custom marker. + * @param {string} [title] Title of the custom marker + * @param {boolean} [editable] Make the custom marker editable. + */ + + }, { + key: "setCustomMarker", + value: function setCustomMarker(title, editable) { + var marker = document.createElement('div'); + marker.className = "vis-custom-time-marker"; + marker.innerHTML = title; + marker.style.position = 'absolute'; + + if (editable) { + var _context6, _context7; + + marker.setAttribute('contenteditable', 'true'); + marker.addEventListener('pointerdown', function () { + marker.focus(); + }); + marker.addEventListener('input', bind$2(_context6 = this._onMarkerChange).call(_context6, this)); // The editable div element has no change event, so here emulates the change event. + + marker.title = title; + marker.addEventListener('blur', bind$2(_context7 = function _context7(event) { + if (this.title != event.target.innerHTML) { + this._onMarkerChanged(event); + + this.title = event.target.innerHTML; + } + }).call(_context7, this)); + } + + this.bar.appendChild(marker); + } + /** + * Set custom title. + * @param {Date | number | string} title + */ + + }, { + key: "setCustomTitle", + value: function setCustomTitle(title) { + this.options.title = title; + } + /** + * Start moving horizontally + * @param {Event} event + * @private + */ + + }, { + key: "_onDragStart", + value: function _onDragStart(event) { + this.eventParams.dragging = true; + this.eventParams.customTime = this.customTime; + event.stopPropagation(); + } + /** + * Perform moving operating. + * @param {Event} event + * @private + */ + + }, { + key: "_onDrag", + value: function _onDrag(event) { + if (!this.eventParams.dragging) return; + var deltaX = this.options.rtl ? -1 * event.deltaX : event.deltaX; + var x = this.body.util.toScreen(this.eventParams.customTime) + deltaX; + var time = this.body.util.toTime(x); + this.setCustomTime(time); // fire a timechange event + + this.body.emitter.emit('timechange', { + id: this.options.id, + time: new Date(this.customTime.valueOf()), + event: event + }); + event.stopPropagation(); + } + /** + * Stop moving operating. + * @param {Event} event + * @private + */ + + }, { + key: "_onDragEnd", + value: function _onDragEnd(event) { + if (!this.eventParams.dragging) return; // fire a timechanged event + + this.body.emitter.emit('timechanged', { + id: this.options.id, + time: new Date(this.customTime.valueOf()), + event: event + }); + event.stopPropagation(); + } + /** + * Perform input operating. + * @param {Event} event + * @private + */ + + }, { + key: "_onMarkerChange", + value: function _onMarkerChange(event) { + this.body.emitter.emit('markerchange', { + id: this.options.id, + title: event.target.innerHTML, + event: event + }); + event.stopPropagation(); + } + /** + * Perform change operating. + * @param {Event} event + * @private + */ + + }, { + key: "_onMarkerChanged", + value: function _onMarkerChanged(event) { + this.body.emitter.emit('markerchanged', { + id: this.options.id, + title: event.target.innerHTML, + event: event + }); + event.stopPropagation(); + } + /** + * Find a custom time from an event target: + * searches for the attribute 'custom-time' in the event target's element tree + * @param {Event} event + * @return {CustomTime | null} customTime + */ + + }], [{ + key: "customTimeFromTarget", + value: function customTimeFromTarget(event) { + var target = event.target; + + while (target) { + if (target.hasOwnProperty('custom-time')) { + return target['custom-time']; + } + + target = target.parentNode; + } + + return null; + } + }]); + + return CustomTime; +}(Component); + +/** + * Create a timeline visualization + * @constructor Core + */ + +var Core = +/*#__PURE__*/ +function () { + function Core() { + classCallCheck$1(this, Core); + } + + createClass$1(Core, [{ + key: "_create", + + /** + * Create the main DOM for the Core: a root panel containing left, right, + * top, bottom, content, and background panel. + * @param {Element} container The container element where the Core will + * be attached. + * @protected + */ + value: function _create(container) { + var _this = this, + _context, + _context2, + _context3; + + this.dom = {}; + this.dom.container = container; + this.dom.container.style.position = 'relative'; + this.dom.root = document.createElement('div'); + this.dom.background = document.createElement('div'); + this.dom.backgroundVertical = document.createElement('div'); + this.dom.backgroundHorizontal = document.createElement('div'); + this.dom.centerContainer = document.createElement('div'); + this.dom.leftContainer = document.createElement('div'); + this.dom.rightContainer = document.createElement('div'); + this.dom.center = document.createElement('div'); + this.dom.left = document.createElement('div'); + this.dom.right = document.createElement('div'); + this.dom.top = document.createElement('div'); + this.dom.bottom = document.createElement('div'); + this.dom.shadowTop = document.createElement('div'); + this.dom.shadowBottom = document.createElement('div'); + this.dom.shadowTopLeft = document.createElement('div'); + this.dom.shadowBottomLeft = document.createElement('div'); + this.dom.shadowTopRight = document.createElement('div'); + this.dom.shadowBottomRight = document.createElement('div'); + this.dom.rollingModeBtn = document.createElement('div'); + this.dom.loadingScreen = document.createElement('div'); + this.dom.root.className = 'vis-timeline'; + this.dom.background.className = 'vis-panel vis-background'; + this.dom.backgroundVertical.className = 'vis-panel vis-background vis-vertical'; + this.dom.backgroundHorizontal.className = 'vis-panel vis-background vis-horizontal'; + this.dom.centerContainer.className = 'vis-panel vis-center'; + this.dom.leftContainer.className = 'vis-panel vis-left'; + this.dom.rightContainer.className = 'vis-panel vis-right'; + this.dom.top.className = 'vis-panel vis-top'; + this.dom.bottom.className = 'vis-panel vis-bottom'; + this.dom.left.className = 'vis-content'; + this.dom.center.className = 'vis-content'; + this.dom.right.className = 'vis-content'; + this.dom.shadowTop.className = 'vis-shadow vis-top'; + this.dom.shadowBottom.className = 'vis-shadow vis-bottom'; + this.dom.shadowTopLeft.className = 'vis-shadow vis-top'; + this.dom.shadowBottomLeft.className = 'vis-shadow vis-bottom'; + this.dom.shadowTopRight.className = 'vis-shadow vis-top'; + this.dom.shadowBottomRight.className = 'vis-shadow vis-bottom'; + this.dom.rollingModeBtn.className = 'vis-rolling-mode-btn'; + this.dom.loadingScreen.className = 'vis-loading-screen'; + this.dom.root.appendChild(this.dom.background); + this.dom.root.appendChild(this.dom.backgroundVertical); + this.dom.root.appendChild(this.dom.backgroundHorizontal); + this.dom.root.appendChild(this.dom.centerContainer); + this.dom.root.appendChild(this.dom.leftContainer); + this.dom.root.appendChild(this.dom.rightContainer); + this.dom.root.appendChild(this.dom.top); + this.dom.root.appendChild(this.dom.bottom); + this.dom.root.appendChild(this.dom.rollingModeBtn); + this.dom.centerContainer.appendChild(this.dom.center); + this.dom.leftContainer.appendChild(this.dom.left); + this.dom.rightContainer.appendChild(this.dom.right); + this.dom.centerContainer.appendChild(this.dom.shadowTop); + this.dom.centerContainer.appendChild(this.dom.shadowBottom); + this.dom.leftContainer.appendChild(this.dom.shadowTopLeft); + this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft); + this.dom.rightContainer.appendChild(this.dom.shadowTopRight); + this.dom.rightContainer.appendChild(this.dom.shadowBottomRight); // size properties of each of the panels + + this.props = { + root: {}, + background: {}, + centerContainer: {}, + leftContainer: {}, + rightContainer: {}, + center: {}, + left: {}, + right: {}, + top: {}, + bottom: {}, + border: {}, + scrollTop: 0, + scrollTopMin: 0 + }; + this.on('rangechange', function () { + if (_this.initialDrawDone === true) { + _this._redraw(); + } + }); + this.on('rangechanged', function () { + if (!_this.initialRangeChangeDone) { + _this.initialRangeChangeDone = true; + } + }); + this.on('touch', bind$2(_context = this._onTouch).call(_context, this)); + this.on('panmove', bind$2(_context2 = this._onDrag).call(_context2, this)); + var me = this; + this._origRedraw = bind$2(_context3 = this._redraw).call(_context3, this); + this._redraw = util$2.throttle(this._origRedraw); + this.on('_change', function (properties) { + if (me.itemSet && me.itemSet.initialItemSetDrawn && properties && properties.queue == true) { + me._redraw(); + } else { + me._origRedraw(); + } + }); // create event listeners for all interesting events, these events will be + // emitted via emitter + + this.hammer = new Hammer$1(this.dom.root); + var pinchRecognizer = this.hammer.get('pinch').set({ + enable: true + }); + pinchRecognizer && disablePreventDefaultVertically(pinchRecognizer); + this.hammer.get('pan').set({ + threshold: 5, + direction: Hammer$1.DIRECTION_ALL + }); + this.listeners = {}; + var events = ['tap', 'doubletap', 'press', 'pinch', 'pan', 'panstart', 'panmove', 'panend' // TODO: cleanup + //'touch', 'pinch', + //'tap', 'doubletap', 'hold', + //'dragstart', 'drag', 'dragend', + //'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox + ]; + + forEach$3(events).call(events, function (type) { + var listener = function listener(event) { + if (me.isActive()) { + me.emit(type, event); + } + }; + + me.hammer.on(type, listener); + me.listeners[type] = listener; + }); // emulate a touch event (emitted before the start of a pan, pinch, tap, or press) + + + onTouch(this.hammer, function (event) { + me.emit('touch', event); + }); // emulate a release event (emitted after a pan, pinch, tap, or press) + + onRelease(this.hammer, function (event) { + me.emit('release', event); + }); + /** + * + * @param {WheelEvent} event + */ + + function onMouseWheel(event) { + // Reasonable default wheel deltas + var LINE_HEIGHT = 40; + var PAGE_HEIGHT = 800; + + if (this.isActive()) { + this.emit('mousewheel', event); + } // deltaX and deltaY normalization from jquery.mousewheel.js + + + var deltaX = 0; + var deltaY = 0; // Old school scrollwheel delta + + if ('detail' in event) { + deltaY = event.detail * -1; + } + + if ('wheelDelta' in event) { + deltaY = event.wheelDelta; + } + + if ('wheelDeltaY' in event) { + deltaY = event.wheelDeltaY; + } + + if ('wheelDeltaX' in event) { + deltaX = event.wheelDeltaX * -1; + } // Firefox < 17 horizontal scrolling related to DOMMouseScroll event + + + if ('axis' in event && event.axis === event.HORIZONTAL_AXIS) { + deltaX = deltaY * -1; + deltaY = 0; + } // New school wheel delta (wheel event) + + + if ('deltaY' in event) { + deltaY = event.deltaY * -1; + } + + if ('deltaX' in event) { + deltaX = event.deltaX; + } // Normalize deltas + + + if (event.deltaMode) { + if (event.deltaMode === 1) { + // delta in LINE units + deltaX *= LINE_HEIGHT; + deltaY *= LINE_HEIGHT; + } else { + // delta in PAGE units + deltaX *= LINE_HEIGHT; + deltaY *= PAGE_HEIGHT; + } + } // Prevent scrolling when zooming (no zoom key, or pressing zoom key) + + + if (this.options.preferZoom) { + if (!this.options.zoomKey || event[this.options.zoomKey]) return; + } else { + if (this.options.zoomKey && event[this.options.zoomKey]) return; + } // Don't preventDefault if you can't scroll + + + if (!this.options.verticalScroll && !this.options.horizontalScroll) return; + + if (this.options.verticalScroll && Math.abs(deltaY) >= Math.abs(deltaX)) { + var current = this.props.scrollTop; + var adjusted = current + deltaY; + + if (this.isActive()) { + var newScrollTop = this._setScrollTop(adjusted); + + if (newScrollTop !== current) { + this._redraw(); + + this.emit('scroll', event); // Prevent default actions caused by mouse wheel + // (else the page and timeline both scroll) + + event.preventDefault(); + } + } + } else if (this.options.horizontalScroll) { + var delta = Math.abs(deltaX) >= Math.abs(deltaY) ? deltaX : deltaY; // calculate a single scroll jump relative to the range scale + + var diff = delta / 120 * (this.range.end - this.range.start) / 20; // calculate new start and end + + var newStart = this.range.start + diff; + var newEnd = this.range.end + diff; + var options = { + animation: false, + byUser: true, + event: event + }; + this.range.setRange(newStart, newEnd, options); + event.preventDefault(); + } + } // Add modern wheel event listener + + + var wheelType = "onwheel" in document.createElement("div") ? "wheel" : // Modern browsers support "wheel" + document.onmousewheel !== undefined ? "mousewheel" : // Webkit and IE support at least "mousewheel" + // DOMMouseScroll - Older Firefox versions use "DOMMouseScroll" + // onmousewheel - All the use "onmousewheel" + this.dom.centerContainer.addEventListener ? "DOMMouseScroll" : "onmousewheel"; + this.dom.top.addEventListener ? "DOMMouseScroll" : "onmousewheel"; + this.dom.bottom.addEventListener ? "DOMMouseScroll" : "onmousewheel"; + this.dom.centerContainer.addEventListener(wheelType, bind$2(onMouseWheel).call(onMouseWheel, this), false); + this.dom.top.addEventListener(wheelType, bind$2(onMouseWheel).call(onMouseWheel, this), false); + this.dom.bottom.addEventListener(wheelType, bind$2(onMouseWheel).call(onMouseWheel, this), false); + /** + * + * @param {scroll} event + */ + + function onMouseScrollSide(event) { + if (!me.options.verticalScroll) return; + event.preventDefault(); + + if (me.isActive()) { + var adjusted = -event.target.scrollTop; + + me._setScrollTop(adjusted); + + me._redraw(); + + me.emit('scrollSide', event); + } + } + + this.dom.left.parentNode.addEventListener('scroll', bind$2(onMouseScrollSide).call(onMouseScrollSide, this)); + this.dom.right.parentNode.addEventListener('scroll', bind$2(onMouseScrollSide).call(onMouseScrollSide, this)); + var itemAddedToTimeline = false; + /** + * + * @param {dragover} event + * @returns {boolean} + */ + + function handleDragOver(event) { + var _context4; + + if (event.preventDefault) { + me.emit('dragover', me.getEventProperties(event)); + event.preventDefault(); // Necessary. Allows us to drop. + } // make sure your target is a timeline element + + + if (!(indexOf$3(_context4 = event.target.className).call(_context4, "timeline") > -1)) return; // make sure only one item is added every time you're over the timeline + + if (itemAddedToTimeline) return; + event.dataTransfer.dropEffect = 'move'; + itemAddedToTimeline = true; + return false; + } + /** + * + * @param {drop} event + * @returns {boolean} + */ + + + function handleDrop(event) { + // prevent redirect to blank page - Firefox + if (event.preventDefault) { + event.preventDefault(); + } + + if (event.stopPropagation) { + event.stopPropagation(); + } // return when dropping non-timeline items + + + try { + var itemData = JSON.parse(event.dataTransfer.getData("text")); + if (!itemData || !itemData.content) return; + } catch (err) { + return false; + } + + itemAddedToTimeline = false; + event.center = { + x: event.clientX, + y: event.clientY + }; + + if (itemData.target !== 'item') { + me.itemSet._onAddItem(event); + } else { + me.itemSet._onDropObjectOnItem(event); + } + + me.emit('drop', me.getEventProperties(event)); + return false; + } + + this.dom.center.addEventListener('dragover', bind$2(handleDragOver).call(handleDragOver, this), false); + this.dom.center.addEventListener('drop', bind$2(handleDrop).call(handleDrop, this), false); + this.customTimes = []; // store state information needed for touch events + + this.touch = {}; + this.redrawCount = 0; + this.initialDrawDone = false; + this.initialRangeChangeDone = false; // attach the root panel to the provided container + + if (!container) throw new Error('No container provided'); + container.appendChild(this.dom.root); + container.appendChild(this.dom.loadingScreen); + } + /** + * Set options. Options will be passed to all components loaded in the Timeline. + * @param {Object} [options] + * {String} orientation + * Vertical orientation for the Timeline, + * can be 'bottom' (default) or 'top'. + * {string | number} width + * Width for the timeline, a number in pixels or + * a css string like '1000px' or '75%'. '100%' by default. + * {string | number} height + * Fixed height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. If undefined, + * The Timeline will automatically size such that + * its contents fit. + * {string | number} minHeight + * Minimum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {string | number} maxHeight + * Maximum height for the Timeline, a number in pixels or + * a css string like '400px' or '75%'. + * {number | Date | string} start + * Start date for the visible window + * {number | Date | string} end + * End date for the visible window + */ + + }, { + key: "setOptions", + value: function setOptions(options) { + var _context7; + + if (options) { + // copy the known options + var fields = ['width', 'height', 'minHeight', 'maxHeight', 'autoResize', 'start', 'end', 'clickToUse', 'dataAttributes', 'hiddenDates', 'locale', 'locales', 'moment', 'preferZoom', 'rtl', 'zoomKey', 'horizontalScroll', 'verticalScroll']; + util$2.selectiveExtend(fields, this.options, options); + this.dom.rollingModeBtn.style.visibility = 'hidden'; + + if (this.options.rtl) { + this.dom.container.style.direction = "rtl"; + this.dom.backgroundVertical.className = 'vis-panel vis-background vis-vertical-rtl'; + } + + if (this.options.verticalScroll) { + if (this.options.rtl) { + this.dom.rightContainer.className = 'vis-panel vis-right vis-vertical-scroll'; + } else { + this.dom.leftContainer.className = 'vis-panel vis-left vis-vertical-scroll'; + } + } + + if (_typeof_1$2(this.options.orientation) !== 'object') { + this.options.orientation = { + item: undefined, + axis: undefined + }; + } + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation = { + item: options.orientation, + axis: options.orientation + }; + } else if (_typeof_1$2(options.orientation) === 'object') { + if ('item' in options.orientation) { + this.options.orientation.item = options.orientation.item; + } + + if ('axis' in options.orientation) { + this.options.orientation.axis = options.orientation.axis; + } + } + } + + if (this.options.orientation.axis === 'both') { + if (!this.timeAxis2) { + var timeAxis2 = this.timeAxis2 = new TimeAxis(this.body); + + timeAxis2.setOptions = function (options) { + var _options = options ? util$2.extend({}, options) : {}; + + _options.orientation = 'top'; // override the orientation option, always top + + TimeAxis.prototype.setOptions.call(timeAxis2, _options); + }; + + this.components.push(timeAxis2); + } + } else { + if (this.timeAxis2) { + var _context5; + + var index = indexOf$3(_context5 = this.components).call(_context5, this.timeAxis2); + + if (index !== -1) { + var _context6; + + splice$2(_context6 = this.components).call(_context6, index, 1); + } + + this.timeAxis2.destroy(); + this.timeAxis2 = null; + } + } // if the graph2d's drawPoints is a function delegate the callback to the onRender property + + + if (typeof options.drawPoints == 'function') { + options.drawPoints = { + onRender: options.drawPoints + }; + } + + if ('hiddenDates' in this.options) { + convertHiddenOptions(this.options.moment, this.body, this.options.hiddenDates); + } + + if ('clickToUse' in options) { + if (options.clickToUse) { + if (!this.activator) { + this.activator = new Activator(this.dom.root); + } + } else { + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } + } + } // enable/disable autoResize + + + this._initAutoResize(); + } // propagate options to all components + + + forEach$3(_context7 = this.components).call(_context7, function (component) { + return component.setOptions(options); + }); // enable/disable configure + + + if ('configure' in options) { + var _context8; + + if (!this.configurator) { + this.configurator = this._createConfigurator(); + } + + this.configurator.setOptions(options.configure); // collect the settings of all components, and pass them to the configuration system + + var appliedOptions = util$2.deepExtend({}, this.options); + + forEach$3(_context8 = this.components).call(_context8, function (component) { + util$2.deepExtend(appliedOptions, component.options); + }); + + this.configurator.setModuleOptions({ + global: appliedOptions + }); + } + + this._redraw(); + } + /** + * Returns true when the Timeline is active. + * @returns {boolean} + */ + + }, { + key: "isActive", + value: function isActive() { + return !this.activator || this.activator.active; + } + /** + * Destroy the Core, clean up all DOM elements and event listeners. + */ + + }, { + key: "destroy", + value: function destroy() { + var _context9; + + // unbind datasets + this.setItems(null); + this.setGroups(null); // remove all event listeners + + this.off(); // stop checking for changed size + + this._stopAutoResize(); // remove from DOM + + + if (this.dom.root.parentNode) { + this.dom.root.parentNode.removeChild(this.dom.root); + } + + this.dom = null; // remove Activator + + if (this.activator) { + this.activator.destroy(); + delete this.activator; + } // cleanup hammer touch events + + + for (var event in this.listeners) { + if (this.listeners.hasOwnProperty(event)) { + delete this.listeners[event]; + } + } + + this.listeners = null; + this.hammer && this.hammer.destroy(); + this.hammer = null; // give all components the opportunity to cleanup + + forEach$3(_context9 = this.components).call(_context9, function (component) { + return component.destroy(); + }); + + this.body = null; + } + /** + * Set a custom time bar + * @param {Date} time + * @param {number} [id=undefined] Optional id of the custom time bar to be adjusted. + */ + + }, { + key: "setCustomTime", + value: function setCustomTime(time, id) { + var _context10; + + var customTimes = filter$2(_context10 = this.customTimes).call(_context10, function (component) { + return id === component.options.id; + }); + + if (customTimes.length === 0) { + throw new Error("No custom time bar found with id ".concat(stringify$2(id))); + } + + if (customTimes.length > 0) { + customTimes[0].setCustomTime(time); + } + } + /** + * Retrieve the current custom time. + * @param {number} [id=undefined] Id of the custom time bar. + * @return {Date | undefined} customTime + */ + + }, { + key: "getCustomTime", + value: function getCustomTime(id) { + var _context11; + + var customTimes = filter$2(_context11 = this.customTimes).call(_context11, function (component) { + return component.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error("No custom time bar found with id ".concat(stringify$2(id))); + } + + return customTimes[0].getCustomTime(); + } + /** + * Set a custom marker for the custom time bar. + * @param {string} [title] Title of the custom marker. + * @param {number} [id=undefined] Id of the custom marker. + * @param {boolean} [editable=false] Make the custom marker editable. + */ + + }, { + key: "setCustomTimeMarker", + value: function setCustomTimeMarker(title, id, editable) { + var _context12; + + var customTimes = filter$2(_context12 = this.customTimes).call(_context12, function (component) { + return component.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error("No custom time bar found with id ".concat(stringify$2(id))); + } + + if (customTimes.length > 0) { + customTimes[0].setCustomMarker(title, editable); + } + } + /** + * Set a custom title for the custom time bar. + * @param {string} [title] Custom title + * @param {number} [id=undefined] Id of the custom time bar. + * @returns {*} + */ + + }, { + key: "setCustomTimeTitle", + value: function setCustomTimeTitle(title, id) { + var _context13; + + var customTimes = filter$2(_context13 = this.customTimes).call(_context13, function (component) { + return component.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error("No custom time bar found with id ".concat(stringify$2(id))); + } + + if (customTimes.length > 0) { + return customTimes[0].setCustomTitle(title); + } + } + /** + * Retrieve meta information from an event. + * Should be overridden by classes extending Core + * @param {Event} event + * @return {Object} An object with related information. + */ + + }, { + key: "getEventProperties", + value: function getEventProperties(event) { + return { + event: event + }; + } + /** + * Add custom vertical bar + * @param {Date | string | number} [time] A Date, unix timestamp, or + * ISO date string. Time point where + * the new bar should be placed. + * If not provided, `new Date()` will + * be used. + * @param {number | string} [id=undefined] Id of the new bar. Optional + * @return {number | string} Returns the id of the new bar + */ + + }, { + key: "addCustomTime", + value: function addCustomTime(time, id) { + var _context14; + + var timestamp = time !== undefined ? util$2.convert(time, 'Date').valueOf() : new Date(); + + var exists = some$2(_context14 = this.customTimes).call(_context14, function (customTime) { + return customTime.options.id === id; + }); + + if (exists) { + throw new Error("A custom time with id ".concat(stringify$2(id), " already exists")); + } + + var customTime = new CustomTime(this.body, util$2.extend({}, this.options, { + time: timestamp, + id: id + })); + this.customTimes.push(customTime); + this.components.push(customTime); + + this._redraw(); + + return id; + } + /** + * Remove previously added custom bar + * @param {int} id ID of the custom bar to be removed + * [at]returns {boolean} True if the bar exists and is removed, false otherwise + */ + + }, { + key: "removeCustomTime", + value: function removeCustomTime(id) { + var _context15, + _this2 = this; + + var customTimes = filter$2(_context15 = this.customTimes).call(_context15, function (bar) { + return bar.options.id === id; + }); + + if (customTimes.length === 0) { + throw new Error("No custom time bar found with id ".concat(stringify$2(id))); + } + + forEach$3(customTimes).call(customTimes, function (customTime) { + var _context16, _context17, _context18, _context19; + + splice$2(_context16 = _this2.customTimes).call(_context16, indexOf$3(_context17 = _this2.customTimes).call(_context17, customTime), 1); + + splice$2(_context18 = _this2.components).call(_context18, indexOf$3(_context19 = _this2.components).call(_context19, customTime), 1); + + customTime.destroy(); + }); + } + /** + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items + */ + + }, { + key: "getVisibleItems", + value: function getVisibleItems() { + return this.itemSet && this.itemSet.getVisibleItems() || []; + } + /** + * Get the id's of the currently visible groups. + * @returns {Array} The ids of the visible groups + */ + + }, { + key: "getVisibleGroups", + value: function getVisibleGroups() { + return this.itemSet && this.itemSet.getVisibleGroups() || []; + } + /** + * Set Core window such that it fits all items + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] a callback funtion to be executed at the end of this function + */ + + }, { + key: "fit", + value: function fit(options, callback) { + var range = this.getDataRange(); // skip range set if there is no min and max date + + if (range.min === null && range.max === null) { + return; + } // apply a margin of 1% left and right of the data + + + var interval = range.max - range.min; + var min = new Date(range.min.valueOf() - interval * 0.01); + var max = new Date(range.max.valueOf() + interval * 0.01); + var animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(min, max, { + animation: animation + }, callback); + } + /** + * Calculate the data range of the items start and end dates + * [at]returns {{min: [Date], max: [Date]}} + * @protected + */ + + }, { + key: "getDataRange", + value: function getDataRange() { + // must be implemented by Timeline and Graph2d + throw new Error('Cannot invoke abstract method getDataRange'); + } + /** + * Set the visible window. Both parameters are optional, you can change only + * start or only end. Syntax: + * + * TimeLine.setWindow(start, end) + * TimeLine.setWindow(start, end, options) + * TimeLine.setWindow(range) + * + * Where start and end can be a Date, number, or string, and range is an + * object with properties start and end. + * + * @param {Date | number | string | Object} [start] Start date of visible window + * @param {Date | number | string} [end] End date of visible window + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] a callback funtion to be executed at the end of this function + */ + + }, { + key: "setWindow", + value: function setWindow(start, end, options, callback) { + if (typeof arguments[2] == "function") { + callback = arguments[2]; + options = {}; + } + + var animation; + var range; + + if (arguments.length == 1) { + range = arguments[0]; + animation = range.animation !== undefined ? range.animation : true; + this.range.setRange(range.start, range.end, { + animation: animation + }); + } else if (arguments.length == 2 && typeof arguments[1] == "function") { + range = arguments[0]; + callback = arguments[1]; + animation = range.animation !== undefined ? range.animation : true; + this.range.setRange(range.start, range.end, { + animation: animation + }, callback); + } else { + animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(start, end, { + animation: animation + }, callback); + } + } + /** + * Move the window such that given time is centered on screen. + * @param {Date | number | string} time + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] a callback funtion to be executed at the end of this function + */ + + }, { + key: "moveTo", + value: function moveTo(time, options, callback) { + if (typeof arguments[1] == "function") { + callback = arguments[1]; + options = {}; + } + + var interval = this.range.end - this.range.start; + var t = util$2.convert(time, 'Date').valueOf(); + var start = t - interval / 2; + var end = t + interval / 2; + var animation = options && options.animation !== undefined ? options.animation : true; + this.range.setRange(start, end, { + animation: animation + }, callback); + } + /** + * Get the visible window + * @return {{start: Date, end: Date}} Visible range + */ + + }, { + key: "getWindow", + value: function getWindow() { + var range = this.range.getRange(); + return { + start: new Date(range.start), + end: new Date(range.end) + }; + } + /** + * Zoom in the window such that given time is centered on screen. + * @param {number} percentage - must be between [0..1] + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] a callback funtion to be executed at the end of this function + */ + + }, { + key: "zoomIn", + value: function zoomIn(percentage, options, callback) { + if (!percentage || percentage < 0 || percentage > 1) return; + + if (typeof arguments[1] == "function") { + callback = arguments[1]; + options = {}; + } + + var range = this.getWindow(); + var start = range.start.valueOf(); + var end = range.end.valueOf(); + var interval = end - start; + var newInterval = interval / (1 + percentage); + var distance = (interval - newInterval) / 2; + var newStart = start + distance; + var newEnd = end - distance; + this.setWindow(newStart, newEnd, options, callback); + } + /** + * Zoom out the window such that given time is centered on screen. + * @param {number} percentage - must be between [0..1] + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] a callback funtion to be executed at the end of this function + */ + + }, { + key: "zoomOut", + value: function zoomOut(percentage, options, callback) { + if (!percentage || percentage < 0 || percentage > 1) return; + + if (typeof arguments[1] == "function") { + callback = arguments[1]; + options = {}; + } + + var range = this.getWindow(); + var start = range.start.valueOf(); + var end = range.end.valueOf(); + var interval = end - start; + var newStart = start - interval * percentage / 2; + var newEnd = end + interval * percentage / 2; + this.setWindow(newStart, newEnd, options, callback); + } + /** + * Force a redraw. Can be overridden by implementations of Core + * + * Note: this function will be overridden on construction with a trottled version + */ + + }, { + key: "redraw", + value: function redraw() { + this._redraw(); + } + /** + * Redraw for internal use. Redraws all components. See also the public + * method redraw. + * @protected + */ + + }, { + key: "_redraw", + value: function _redraw() { + var _context20; + + this.redrawCount++; + var dom = this.dom; + if (!dom || !dom.container || dom.root.offsetWidth == 0) return; // when destroyed, or invisible + + var resized = false; + var options = this.options; + var props = this.props; + updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates); // update class names + + if (options.orientation == 'top') { + util$2.addClassName(dom.root, 'vis-top'); + util$2.removeClassName(dom.root, 'vis-bottom'); + } else { + util$2.removeClassName(dom.root, 'vis-top'); + util$2.addClassName(dom.root, 'vis-bottom'); + } + + if (options.rtl) { + util$2.addClassName(dom.root, 'vis-rtl'); + util$2.removeClassName(dom.root, 'vis-ltr'); + } else { + util$2.addClassName(dom.root, 'vis-ltr'); + util$2.removeClassName(dom.root, 'vis-rtl'); + } // update root width and height options + + + dom.root.style.maxHeight = util$2.option.asSize(options.maxHeight, ''); + dom.root.style.minHeight = util$2.option.asSize(options.minHeight, ''); + dom.root.style.width = util$2.option.asSize(options.width, ''); + var rootOffsetWidth = dom.root.offsetWidth; // calculate border widths + + props.border.left = 1; + props.border.right = 1; + props.border.top = 1; + props.border.bottom = 1; // calculate the heights. If any of the side panels is empty, we set the height to + // minus the border width, such that the border will be invisible + + props.center.height = dom.center.offsetHeight; + props.left.height = dom.left.offsetHeight; + props.right.height = dom.right.offsetHeight; + props.top.height = dom.top.clientHeight || -props.border.top; + props.bottom.height = dom.bottom.clientHeight || -props.border.bottom; // TODO: compensate borders when any of the panels is empty. + // apply auto height + // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM) + + var contentHeight = Math.max(props.left.height, props.center.height, props.right.height); + var autoHeight = props.top.height + contentHeight + props.bottom.height + props.border.top + props.border.bottom; + dom.root.style.height = util$2.option.asSize(options.height, "".concat(autoHeight, "px")); // calculate heights of the content panels + + props.root.height = dom.root.offsetHeight; + props.background.height = props.root.height; + var containerHeight = props.root.height - props.top.height - props.bottom.height; + props.centerContainer.height = containerHeight; + props.leftContainer.height = containerHeight; + props.rightContainer.height = props.leftContainer.height; // calculate the widths of the panels + + props.root.width = rootOffsetWidth; + props.background.width = props.root.width; + + if (!this.initialDrawDone) { + props.scrollbarWidth = util$2.getScrollBarWidth(); + } + + var leftContainerClientWidth = dom.leftContainer.clientWidth; + var rightContainerClientWidth = dom.rightContainer.clientWidth; + + if (options.verticalScroll) { + if (options.rtl) { + props.left.width = leftContainerClientWidth || -props.border.left; + props.right.width = rightContainerClientWidth + props.scrollbarWidth || -props.border.right; + } else { + props.left.width = leftContainerClientWidth + props.scrollbarWidth || -props.border.left; + props.right.width = rightContainerClientWidth || -props.border.right; + } + } else { + props.left.width = leftContainerClientWidth || -props.border.left; + props.right.width = rightContainerClientWidth || -props.border.right; + } + + this._setDOM(); // update the scrollTop, feasible range for the offset can be changed + // when the height of the Core or of the contents of the center changed + + + var offset = this._updateScrollTop(); // reposition the scrollable contents + + + if (options.orientation.item != 'top') { + offset += Math.max(props.centerContainer.height - props.center.height - props.border.top - props.border.bottom, 0); + } + + dom.center.style.transform = "translateY(".concat(offset, "px)"); // show shadows when vertical scrolling is available + + var visibilityTop = props.scrollTop == 0 ? 'hidden' : ''; + var visibilityBottom = props.scrollTop == props.scrollTopMin ? 'hidden' : ''; + dom.shadowTop.style.visibility = visibilityTop; + dom.shadowBottom.style.visibility = visibilityBottom; + dom.shadowTopLeft.style.visibility = visibilityTop; + dom.shadowBottomLeft.style.visibility = visibilityBottom; + dom.shadowTopRight.style.visibility = visibilityTop; + dom.shadowBottomRight.style.visibility = visibilityBottom; + + if (options.verticalScroll) { + dom.rightContainer.className = 'vis-panel vis-right vis-vertical-scroll'; + dom.leftContainer.className = 'vis-panel vis-left vis-vertical-scroll'; + dom.shadowTopRight.style.visibility = "hidden"; + dom.shadowBottomRight.style.visibility = "hidden"; + dom.shadowTopLeft.style.visibility = "hidden"; + dom.shadowBottomLeft.style.visibility = "hidden"; + dom.left.style.top = '0px'; + dom.right.style.top = '0px'; + } + + if (!options.verticalScroll || props.center.height < props.centerContainer.height) { + dom.left.style.top = "".concat(offset, "px"); + dom.right.style.top = "".concat(offset, "px"); + dom.rightContainer.className = dom.rightContainer.className.replace(new RegExp('(?:^|\\s)' + 'vis-vertical-scroll' + '(?:\\s|$)'), ' '); + dom.leftContainer.className = dom.leftContainer.className.replace(new RegExp('(?:^|\\s)' + 'vis-vertical-scroll' + '(?:\\s|$)'), ' '); + props.left.width = leftContainerClientWidth || -props.border.left; + props.right.width = rightContainerClientWidth || -props.border.right; + + this._setDOM(); + } // enable/disable vertical panning + + + var contentsOverflow = props.center.height > props.centerContainer.height; + this.hammer.get('pan').set({ + direction: contentsOverflow ? Hammer$1.DIRECTION_ALL : Hammer$1.DIRECTION_HORIZONTAL + }); // redraw all components + + forEach$3(_context20 = this.components).call(_context20, function (component) { + resized = component.redraw() || resized; + }); + + var MAX_REDRAW = 5; + + if (resized) { + if (this.redrawCount < MAX_REDRAW) { + this.body.emitter.emit('_change'); + return; + } else { + console.log('WARNING: infinite loop in redraw?'); + } + } else { + this.redrawCount = 0; + } //Emit public 'changed' event for UI updates, see issue #1592 + + + this.body.emitter.emit("changed"); + } + /** + * sets the basic DOM components needed for the timeline\graph2d + */ + + }, { + key: "_setDOM", + value: function _setDOM() { + var props = this.props; + var dom = this.dom; + props.leftContainer.width = props.left.width; + props.rightContainer.width = props.right.width; + var centerWidth = props.root.width - props.left.width - props.right.width; + props.center.width = centerWidth; + props.centerContainer.width = centerWidth; + props.top.width = centerWidth; + props.bottom.width = centerWidth; // resize the panels + + dom.background.style.height = "".concat(props.background.height, "px"); + dom.backgroundVertical.style.height = "".concat(props.background.height, "px"); + dom.backgroundHorizontal.style.height = "".concat(props.centerContainer.height, "px"); + dom.centerContainer.style.height = "".concat(props.centerContainer.height, "px"); + dom.leftContainer.style.height = "".concat(props.leftContainer.height, "px"); + dom.rightContainer.style.height = "".concat(props.rightContainer.height, "px"); + dom.background.style.width = "".concat(props.background.width, "px"); + dom.backgroundVertical.style.width = "".concat(props.centerContainer.width, "px"); + dom.backgroundHorizontal.style.width = "".concat(props.background.width, "px"); + dom.centerContainer.style.width = "".concat(props.center.width, "px"); + dom.top.style.width = "".concat(props.top.width, "px"); + dom.bottom.style.width = "".concat(props.bottom.width, "px"); // reposition the panels + + dom.background.style.left = '0'; + dom.background.style.top = '0'; + dom.backgroundVertical.style.left = "".concat(props.left.width + props.border.left, "px"); + dom.backgroundVertical.style.top = '0'; + dom.backgroundHorizontal.style.left = '0'; + dom.backgroundHorizontal.style.top = "".concat(props.top.height, "px"); + dom.centerContainer.style.left = "".concat(props.left.width, "px"); + dom.centerContainer.style.top = "".concat(props.top.height, "px"); + dom.leftContainer.style.left = '0'; + dom.leftContainer.style.top = "".concat(props.top.height, "px"); + dom.rightContainer.style.left = "".concat(props.left.width + props.center.width, "px"); + dom.rightContainer.style.top = "".concat(props.top.height, "px"); + dom.top.style.left = "".concat(props.left.width, "px"); + dom.top.style.top = '0'; + dom.bottom.style.left = "".concat(props.left.width, "px"); + dom.bottom.style.top = "".concat(props.top.height + props.centerContainer.height, "px"); + dom.center.style.left = '0'; + dom.left.style.left = '0'; + dom.right.style.left = '0'; + } + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * Only applicable when option `showCurrentTime` is true. + * @param {Date | string | number} time A Date, unix timestamp, or + * ISO date string. + */ + + }, { + key: "setCurrentTime", + value: function setCurrentTime(time) { + if (!this.currentTime) { + throw new Error('Option showCurrentTime must be true'); + } + + this.currentTime.setCurrentTime(time); + } + /** + * Get the current time. + * Only applicable when option `showCurrentTime` is true. + * @return {Date} Returns the current time. + */ + + }, { + key: "getCurrentTime", + value: function getCurrentTime() { + if (!this.currentTime) { + throw new Error('Option showCurrentTime must be true'); + } + + return this.currentTime.getCurrentTime(); + } + /** + * Convert a position on screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @protected + * TODO: move this function to Range + */ + + }, { + key: "_toTime", + value: function _toTime(x) { + return toTime(this, x, this.props.center.width); + } + /** + * Convert a position on the global screen (pixels) to a datetime + * @param {int} x Position on the screen in pixels + * @return {Date} time The datetime the corresponds with given position x + * @protected + * TODO: move this function to Range + */ + + }, { + key: "_toGlobalTime", + value: function _toGlobalTime(x) { + return toTime(this, x, this.props.root.width); //var conversion = this.range.conversion(this.props.root.width); + //return new Date(x / conversion.scale + conversion.offset); + } + /** + * Convert a datetime (Date object) into a position on the screen + * @param {Date} time A date + * @return {int} x The position on the screen in pixels which corresponds + * with the given date. + * @protected + * TODO: move this function to Range + */ + + }, { + key: "_toScreen", + value: function _toScreen(time) { + return toScreen(this, time, this.props.center.width); + } + /** + * Convert a datetime (Date object) into a position on the root + * This is used to get the pixel density estimate for the screen, not the center panel + * @param {Date} time A date + * @return {int} x The position on root in pixels which corresponds + * with the given date. + * @protected + * TODO: move this function to Range + */ + + }, { + key: "_toGlobalScreen", + value: function _toGlobalScreen(time) { + return toScreen(this, time, this.props.root.width); //var conversion = this.range.conversion(this.props.root.width); + //return (time.valueOf() - conversion.offset) * conversion.scale; + } + /** + * Initialize watching when option autoResize is true + * @private + */ + + }, { + key: "_initAutoResize", + value: function _initAutoResize() { + if (this.options.autoResize == true) { + this._startAutoResize(); + } else { + this._stopAutoResize(); + } + } + /** + * Watch for changes in the size of the container. On resize, the Panel will + * automatically redraw itself. + * @private + */ + + }, { + key: "_startAutoResize", + value: function _startAutoResize() { + var me = this; + + this._stopAutoResize(); + + this._onResize = function () { + if (me.options.autoResize != true) { + // stop watching when the option autoResize is changed to false + me._stopAutoResize(); + + return; + } + + if (me.dom.root) { + var rootOffsetHeight = me.dom.root.offsetHeight; + var rootOffsetWidth = me.dom.root.offsetWidth; // check whether the frame is resized + // Note: we compare offsetWidth here, not clientWidth. For some reason, + // IE does not restore the clientWidth from 0 to the actual width after + // changing the timeline's container display style from none to visible + + if (rootOffsetWidth != me.props.lastWidth || rootOffsetHeight != me.props.lastHeight) { + me.props.lastWidth = rootOffsetWidth; + me.props.lastHeight = rootOffsetHeight; + me.props.scrollbarWidth = util$2.getScrollBarWidth(); + me.body.emitter.emit('_change'); + } + } + }; // add event listener to window resize + + + util$2.addEventListener(window, 'resize', this._onResize); //Prevent initial unnecessary redraw + + if (me.dom.root) { + me.props.lastWidth = me.dom.root.offsetWidth; + me.props.lastHeight = me.dom.root.offsetHeight; + } + + this.watchTimer = setInterval$1(this._onResize, 1000); + } + /** + * Stop watching for a resize of the frame. + * @private + */ + + }, { + key: "_stopAutoResize", + value: function _stopAutoResize() { + if (this.watchTimer) { + clearInterval(this.watchTimer); + this.watchTimer = undefined; + } // remove event listener on window.resize + + + if (this._onResize) { + util$2.removeEventListener(window, 'resize', this._onResize); + this._onResize = null; + } + } + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + + }, { + key: "_onTouch", + value: function _onTouch(event) { + // eslint-disable-line no-unused-vars + this.touch.allowDragging = true; + this.touch.initialScrollTop = this.props.scrollTop; + } + /** + * Start moving the timeline vertically + * @param {Event} event + * @private + */ + + }, { + key: "_onPinch", + value: function _onPinch(event) { + // eslint-disable-line no-unused-vars + this.touch.allowDragging = false; + } + /** + * Move the timeline vertically + * @param {Event} event + * @private + */ + + }, { + key: "_onDrag", + value: function _onDrag(event) { + if (!event) return; // refuse to drag when we where pinching to prevent the timeline make a jump + // when releasing the fingers in opposite order from the touch screen + + if (!this.touch.allowDragging) return; + var delta = event.deltaY; + + var oldScrollTop = this._getScrollTop(); + + var newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta); + + if (this.options.verticalScroll) { + this.dom.left.parentNode.scrollTop = -this.props.scrollTop; + this.dom.right.parentNode.scrollTop = -this.props.scrollTop; + } + + if (newScrollTop != oldScrollTop) { + this.emit("verticalDrag"); + } + } + /** + * Apply a scrollTop + * @param {number} scrollTop + * @returns {number} scrollTop Returns the applied scrollTop + * @private + */ + + }, { + key: "_setScrollTop", + value: function _setScrollTop(scrollTop) { + this.props.scrollTop = scrollTop; + + this._updateScrollTop(); + + return this.props.scrollTop; + } + /** + * Update the current scrollTop when the height of the containers has been changed + * @returns {number} scrollTop Returns the applied scrollTop + * @private + */ + + }, { + key: "_updateScrollTop", + value: function _updateScrollTop() { + // recalculate the scrollTopMin + var scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero + + if (scrollTopMin != this.props.scrollTopMin) { + // in case of bottom orientation, change the scrollTop such that the contents + // do not move relative to the time axis at the bottom + if (this.options.orientation.item != 'top') { + this.props.scrollTop += scrollTopMin - this.props.scrollTopMin; + } + + this.props.scrollTopMin = scrollTopMin; + } // limit the scrollTop to the feasible scroll range + + + if (this.props.scrollTop > 0) this.props.scrollTop = 0; + if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin; + + if (this.options.verticalScroll) { + this.dom.left.parentNode.scrollTop = -this.props.scrollTop; + this.dom.right.parentNode.scrollTop = -this.props.scrollTop; + } + + return this.props.scrollTop; + } + /** + * Get the current scrollTop + * @returns {number} scrollTop + * @private + */ + + }, { + key: "_getScrollTop", + value: function _getScrollTop() { + return this.props.scrollTop; + } + /** + * Load a configurator + * [at]returns {Object} + * @private + */ + + }, { + key: "_createConfigurator", + value: function _createConfigurator() { + throw new Error('Cannot invoke abstract method _createConfigurator'); + } + }]); + + return Core; +}(); // turn Core into an event emitter + + +emitterComponent(Core.prototype); + +/** + * A current time bar + */ + +var CurrentTime = +/*#__PURE__*/ +function (_Component) { + inherits$1(CurrentTime, _Component); + + /** + * @param {{range: Range, dom: Object, domProps: Object}} body + * @param {Object} [options] Available parameters: + * {Boolean} [showCurrentTime] + * {String} [alignCurrentTime] + * @constructor CurrentTime + * @extends Component + */ + function CurrentTime(body, options) { + var _context; + + var _this; + + classCallCheck$1(this, CurrentTime); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(CurrentTime).call(this)); + _this.body = body; // default options + + _this.defaultOptions = { + rtl: false, + showCurrentTime: true, + alignCurrentTime: undefined, + moment: moment$3, + locales: locales, + locale: 'en' + }; + _this.options = util$2.extend({}, _this.defaultOptions); + + _this.setOptions(options); + + _this.options.locales = util$2.extend({}, locales, _this.options.locales); + var defaultLocales = _this.defaultOptions.locales[_this.defaultOptions.locale]; + + forEach$3(_context = keys$3(_this.options.locales)).call(_context, function (locale) { + _this.options.locales[locale] = util$2.extend({}, defaultLocales, _this.options.locales[locale]); + }); + + _this.offset = 0; + + _this._create(); + + return _this; + } + /** + * Create the HTML DOM for the current time bar + * @private + */ + + + createClass$1(CurrentTime, [{ + key: "_create", + value: function _create() { + var bar = document.createElement('div'); + bar.className = 'vis-current-time'; + bar.style.position = 'absolute'; + bar.style.top = '0px'; + bar.style.height = '100%'; + this.bar = bar; + } + /** + * Destroy the CurrentTime bar + */ + + }, { + key: "destroy", + value: function destroy() { + this.options.showCurrentTime = false; + this.redraw(); // will remove the bar from the DOM and stop refreshing + + this.body = null; + } + /** + * Set options for the component. Options will be merged in current options. + * @param {Object} options Available parameters: + * {boolean} [showCurrentTime] + * {String} [alignCurrentTime] + */ + + }, { + key: "setOptions", + value: function setOptions(options) { + if (options) { + // copy all options that we know + util$2.selectiveExtend(['rtl', 'showCurrentTime', 'alignCurrentTime', 'moment', 'locale', 'locales'], this.options, options); + } + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + if (this.options.showCurrentTime) { + var _context2, _context3; + + var parent = this.body.dom.backgroundVertical; + + if (this.bar.parentNode != parent) { + // attach to the dom + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + + parent.appendChild(this.bar); + this.start(); + } + + var now = this.options.moment(now$2() + this.offset); + + if (this.options.alignCurrentTime) { + now = now.startOf(this.options.alignCurrentTime); + } + + var x = this.body.util.toScreen(now); + var locale = this.options.locales[this.options.locale]; + + if (!locale) { + if (!this.warned) { + console.warn("WARNING: options.locales['".concat(this.options.locale, "'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization")); + this.warned = true; + } + + locale = this.options.locales['en']; // fall back on english when not available + } + + var title = concat$2(_context2 = concat$2(_context3 = "".concat(locale.current, " ")).call(_context3, locale.time, ": ")).call(_context2, now.format('dddd, MMMM Do YYYY, H:mm:ss')); + + title = title.charAt(0).toUpperCase() + title.substring(1); + + if (this.options.rtl) { + this.bar.style.transform = "translateX(".concat(x * -1, "px)"); + } else { + this.bar.style.transform = "translateX(".concat(x, "px)"); + } + + this.bar.title = title; + } else { + // remove the line from the DOM + if (this.bar.parentNode) { + this.bar.parentNode.removeChild(this.bar); + } + + this.stop(); + } + + return false; + } + /** + * Start auto refreshing the current time bar + */ + + }, { + key: "start", + value: function start() { + var me = this; + /** + * Updates the current time. + */ + + function update() { + me.stop(); // determine interval to refresh + + var scale = me.body.range.conversion(me.body.domProps.center.width).scale; + var interval = 1 / scale / 10; + if (interval < 30) interval = 30; + if (interval > 1000) interval = 1000; + me.redraw(); + me.body.emitter.emit('currentTimeTick'); // start a renderTimer to adjust for the new time + + me.currentTimeTimer = setTimeout$2(update, interval); + } + + update(); + } + /** + * Stop auto refreshing the current time bar + */ + + }, { + key: "stop", + value: function stop() { + if (this.currentTimeTimer !== undefined) { + clearTimeout(this.currentTimeTimer); + delete this.currentTimeTimer; + } + } + /** + * Set a current time. This can be used for example to ensure that a client's + * time is synchronized with a shared server time. + * @param {Date | string | number} time A Date, unix timestamp, or + * ISO date string. + */ + + }, { + key: "setCurrentTime", + value: function setCurrentTime(time) { + var t = util$2.convert(time, 'Date').valueOf(); + + var now = now$2(); + + this.offset = t - now; + this.redraw(); + } + /** + * Get the current time. + * @return {Date} Returns the current time. + */ + + }, { + key: "getCurrentTime", + value: function getCurrentTime() { + return new Date(now$2() + this.offset); + } + }]); + + return CurrentTime; +}(Component); + +var freezing = !fails(function () { + return Object.isExtensible(Object.preventExtensions({})); +}); + +var internalMetadata = createCommonjsModule$2(function (module) { + var defineProperty = objectDefineProperty.f; + var METADATA = uid('meta'); + var id = 0; + + var isExtensible = Object.isExtensible || function () { + return true; + }; + + var setMetadata = function (it) { + defineProperty(it, METADATA, { + value: { + objectID: 'O' + ++id, + // object ID + weakData: {} // weak collections IDs + + } + }); + }; + + var fastKey = function (it, create) { + // return a primitive with prefix + if (!isObject$1(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it; + + if (!has(it, METADATA)) { + // can't set metadata to uncaught frozen object + if (!isExtensible(it)) return 'F'; // not necessary to add metadata + + if (!create) return 'E'; // add missing metadata + + setMetadata(it); // return object ID + } + + return it[METADATA].objectID; + }; + + var getWeakData = function (it, create) { + if (!has(it, METADATA)) { + // can't set metadata to uncaught frozen object + if (!isExtensible(it)) return true; // not necessary to add metadata + + if (!create) return false; // add missing metadata + + setMetadata(it); // return the store of weak collections IDs + } + + return it[METADATA].weakData; + }; // add metadata on freeze-family methods calling + + + var onFreeze = function (it) { + if (freezing && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it); + return it; + }; + + var meta = module.exports = { + REQUIRED: false, + fastKey: fastKey, + getWeakData: getWeakData, + onFreeze: onFreeze + }; + hiddenKeys[METADATA] = true; +}); +var internalMetadata_1 = internalMetadata.REQUIRED; +var internalMetadata_2 = internalMetadata.fastKey; +var internalMetadata_3 = internalMetadata.getWeakData; +var internalMetadata_4 = internalMetadata.onFreeze; + +var ITERATOR$2 = wellKnownSymbol('iterator'); +var ArrayPrototype$7 = Array.prototype; // check on default Array iterator + +var isArrayIteratorMethod = function (it) { + return it !== undefined && (iterators.Array === it || ArrayPrototype$7[ITERATOR$2] === it); +}; + +var ITERATOR$3 = wellKnownSymbol('iterator'); + +var getIteratorMethod = function (it) { + if (it != undefined) return it[ITERATOR$3] || it['@@iterator'] || iterators[classof(it)]; +}; + +var callWithSafeIterationClosing = function (iterator, fn, value, ENTRIES) { + try { + return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value); // 7.4.6 IteratorClose(iterator, completion) + } catch (error) { + var returnMethod = iterator['return']; + if (returnMethod !== undefined) anObject(returnMethod.call(iterator)); + throw error; + } +}; + +var iterate_1 = createCommonjsModule$2(function (module) { + var Result = function (stopped, result) { + this.stopped = stopped; + this.result = result; + }; + + var iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) { + var boundFunction = bindContext(fn, that, AS_ENTRIES ? 2 : 1); + var iterator, iterFn, index, length, result, step; + + if (IS_ITERATOR) { + iterator = iterable; + } else { + iterFn = getIteratorMethod(iterable); + if (typeof iterFn != 'function') throw TypeError('Target is not iterable'); // optimisation for array iterators + + if (isArrayIteratorMethod(iterFn)) { + for (index = 0, length = toLength(iterable.length); length > index; index++) { + result = AS_ENTRIES ? boundFunction(anObject(step = iterable[index])[0], step[1]) : boundFunction(iterable[index]); + if (result && result instanceof Result) return result; + } + + return new Result(false); + } + + iterator = iterFn.call(iterable); + } + + while (!(step = iterator.next()).done) { + result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES); + if (result && result instanceof Result) return result; + } + + return new Result(false); + }; + + iterate.stop = function (result) { + return new Result(true, result); + }; +}); + +var anInstance = function (it, Constructor, name) { + if (!(it instanceof Constructor)) { + throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation'); + } + + return it; +}; + +var defineProperty$9 = objectDefineProperty.f; +var forEach$4 = arrayIteration.forEach; +var setInternalState$3 = internalState.set; +var internalStateGetterFor = internalState.getterFor; + +var collection = function (CONSTRUCTOR_NAME, wrapper, common, IS_MAP, IS_WEAK) { + var NativeConstructor = global_1[CONSTRUCTOR_NAME]; + var NativePrototype = NativeConstructor && NativeConstructor.prototype; + var ADDER = IS_MAP ? 'set' : 'add'; + var exported = {}; + var Constructor; + + if (!descriptors || typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () { + new NativeConstructor().entries().next(); + }))) { + // create collection constructor + Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER); + internalMetadata.REQUIRED = true; + } else { + Constructor = wrapper(function (target, iterable) { + setInternalState$3(anInstance(target, Constructor, CONSTRUCTOR_NAME), { + type: CONSTRUCTOR_NAME, + collection: new NativeConstructor() + }); + if (iterable != undefined) iterate_1(iterable, target[ADDER], target, IS_MAP); + }); + var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME); + forEach$4(['add', 'clear', 'delete', 'forEach', 'get', 'has', 'set', 'keys', 'values', 'entries'], function (KEY) { + var IS_ADDER = KEY == 'add' || KEY == 'set'; + if (KEY in NativePrototype && !(IS_WEAK && KEY == 'clear')) hide(Constructor.prototype, KEY, function (a, b) { + var collection = getInternalState(this).collection; + if (!IS_ADDER && IS_WEAK && !isObject$1(a)) return KEY == 'get' ? undefined : false; + var result = collection[KEY](a === 0 ? 0 : a, b); + return IS_ADDER ? this : result; + }); + }); + IS_WEAK || defineProperty$9(Constructor.prototype, 'size', { + get: function () { + return getInternalState(this).collection.size; + } + }); + } + + setToStringTag(Constructor, CONSTRUCTOR_NAME, false, true); + exported[CONSTRUCTOR_NAME] = Constructor; + _export({ + global: true, + forced: true + }, exported); + if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP); + return Constructor; +}; + +var redefineAll = function (target, src, options) { + for (var key in src) { + if (options && options.unsafe && target[key]) target[key] = src[key];else redefine(target, key, src[key], options); + } + + return target; +}; + +var SPECIES$2 = wellKnownSymbol('species'); + +var setSpecies = function (CONSTRUCTOR_NAME) { + var Constructor = getBuiltIn(CONSTRUCTOR_NAME); + var defineProperty = objectDefineProperty.f; + + if (descriptors && Constructor && !Constructor[SPECIES$2]) { + defineProperty(Constructor, SPECIES$2, { + configurable: true, + get: function () { + return this; + } + }); + } +}; + +var defineProperty$a = objectDefineProperty.f; +var fastKey = internalMetadata.fastKey; +var setInternalState$4 = internalState.set; +var internalStateGetterFor$1 = internalState.getterFor; +var collectionStrong = { + getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) { + var C = wrapper(function (that, iterable) { + anInstance(that, C, CONSTRUCTOR_NAME); + setInternalState$4(that, { + type: CONSTRUCTOR_NAME, + index: objectCreate(null), + first: undefined, + last: undefined, + size: 0 + }); + if (!descriptors) that.size = 0; + if (iterable != undefined) iterate_1(iterable, that[ADDER], that, IS_MAP); + }); + var getInternalState = internalStateGetterFor$1(CONSTRUCTOR_NAME); + + var define = function (that, key, value) { + var state = getInternalState(that); + var entry = getEntry(that, key); + var previous, index; // change existing entry + + if (entry) { + entry.value = value; // create new entry + } else { + state.last = entry = { + index: index = fastKey(key, true), + key: key, + value: value, + previous: previous = state.last, + next: undefined, + removed: false + }; + if (!state.first) state.first = entry; + if (previous) previous.next = entry; + if (descriptors) state.size++;else that.size++; // add to index + + if (index !== 'F') state.index[index] = entry; + } + + return that; + }; + + var getEntry = function (that, key) { + var state = getInternalState(that); // fast case + + var index = fastKey(key); + var entry; + if (index !== 'F') return state.index[index]; // frozen object case + + for (entry = state.first; entry; entry = entry.next) { + if (entry.key == key) return entry; + } + }; + + redefineAll(C.prototype, { + // 23.1.3.1 Map.prototype.clear() + // 23.2.3.2 Set.prototype.clear() + clear: function clear() { + var that = this; + var state = getInternalState(that); + var data = state.index; + var entry = state.first; + + while (entry) { + entry.removed = true; + if (entry.previous) entry.previous = entry.previous.next = undefined; + delete data[entry.index]; + entry = entry.next; + } + + state.first = state.last = undefined; + if (descriptors) state.size = 0;else that.size = 0; + }, + // 23.1.3.3 Map.prototype.delete(key) + // 23.2.3.4 Set.prototype.delete(value) + 'delete': function (key) { + var that = this; + var state = getInternalState(that); + var entry = getEntry(that, key); + + if (entry) { + var next = entry.next; + var prev = entry.previous; + delete state.index[entry.index]; + entry.removed = true; + if (prev) prev.next = next; + if (next) next.previous = prev; + if (state.first == entry) state.first = next; + if (state.last == entry) state.last = prev; + if (descriptors) state.size--;else that.size--; + } + + return !!entry; + }, + // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined) + // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined) + forEach: function forEach(callbackfn + /* , that = undefined */ + ) { + var state = getInternalState(this); + var boundFunction = bindContext(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3); + var entry; + + while (entry = entry ? entry.next : state.first) { + boundFunction(entry.value, entry.key, this); // revert to the last existing entry + + while (entry && entry.removed) entry = entry.previous; + } + }, + // 23.1.3.7 Map.prototype.has(key) + // 23.2.3.7 Set.prototype.has(value) + has: function has(key) { + return !!getEntry(this, key); + } + }); + redefineAll(C.prototype, IS_MAP ? { + // 23.1.3.6 Map.prototype.get(key) + get: function get(key) { + var entry = getEntry(this, key); + return entry && entry.value; + }, + // 23.1.3.9 Map.prototype.set(key, value) + set: function set(key, value) { + return define(this, key === 0 ? 0 : key, value); + } + } : { + // 23.2.3.1 Set.prototype.add(value) + add: function add(value) { + return define(this, value = value === 0 ? 0 : value, value); + } + }); + if (descriptors) defineProperty$a(C.prototype, 'size', { + get: function () { + return getInternalState(this).size; + } + }); + return C; + }, + setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) { + var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator'; + var getInternalCollectionState = internalStateGetterFor$1(CONSTRUCTOR_NAME); + var getInternalIteratorState = internalStateGetterFor$1(ITERATOR_NAME); // add .keys, .values, .entries, [@@iterator] + // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11 + + defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) { + setInternalState$4(this, { + type: ITERATOR_NAME, + target: iterated, + state: getInternalCollectionState(iterated), + kind: kind, + last: undefined + }); + }, function () { + var state = getInternalIteratorState(this); + var kind = state.kind; + var entry = state.last; // revert to the last existing entry + + while (entry && entry.removed) entry = entry.previous; // get next entry + + + if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) { + // or finish the iteration + state.target = undefined; + return { + value: undefined, + done: true + }; + } // return step by kind + + + if (kind == 'keys') return { + value: entry.key, + done: false + }; + if (kind == 'values') return { + value: entry.value, + done: false + }; + return { + value: [entry.key, entry.value], + done: false + }; + }, IS_MAP ? 'entries' : 'values', !IS_MAP, true); // add [@@species], 23.1.2.2, 23.2.2.2 + + setSpecies(CONSTRUCTOR_NAME); + } +}; + +// https://tc39.github.io/ecma262/#sec-set-objects + + +var es_set = collection('Set', function (get) { + return function Set() { + return get(this, arguments.length ? arguments[0] : undefined); + }; +}, collectionStrong); + +var set$1 = path.Set; + +var set$2 = set$1; + +var set$3 = set$2; + +var $map = arrayIteration.map; // `Array.prototype.map` method +// https://tc39.github.io/ecma262/#sec-array.prototype.map +// with adding support of @@species + +_export({ + target: 'Array', + proto: true, + forced: !arrayMethodHasSpeciesSupport('map') +}, { + map: function map(callbackfn + /* , thisArg */ + ) { + return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var map = entryVirtual('Array').map; + +var ArrayPrototype$8 = Array.prototype; + +var map_1 = function (it) { + var own = it.map; + return it === ArrayPrototype$8 || it instanceof Array && own === ArrayPrototype$8.map ? map : own; +}; + +var map$1 = map_1; + +var map$2 = map$1; + +var create$3 = create; + +var create$4 = create$3; + +var $find = arrayIteration.find; +var FIND = 'find'; +var SKIPS_HOLES = true; // Shouldn't skip holes + +if (FIND in []) Array(1)[FIND](function () { + SKIPS_HOLES = false; +}); // `Array.prototype.find` method +// https://tc39.github.io/ecma262/#sec-array.prototype.find + +_export({ + target: 'Array', + proto: true, + forced: SKIPS_HOLES +}, { + find: function find(callbackfn + /* , that = undefined */ + ) { + return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + +var find = entryVirtual('Array').find; + +var ArrayPrototype$9 = Array.prototype; + +var find_1 = function (it) { + var own = it.find; + return it === ArrayPrototype$9 || it instanceof Array && own === ArrayPrototype$9.find ? find : own; +}; + +var find$1 = find_1; + +var find$2 = find$1; + +var getIterator = function (it) { + var iteratorMethod = getIteratorMethod(it); + + if (typeof iteratorMethod != 'function') { + throw TypeError(String(it) + ' is not iterable'); + } + + return anObject(iteratorMethod.call(it)); +}; + +var getIterator$1 = getIterator; + +var getIterator$2 = getIterator$1; + +var isArray$4 = isArray$1; + +var isArray$5 = isArray$4; + +function _arrayWithoutHoles$2(arr) { + if (isArray$5(arr)) { + for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) { + arr2[i] = arr[i]; + } + + return arr2; + } +} + +var arrayWithoutHoles$2 = _arrayWithoutHoles$2; + +// https://tc39.github.io/ecma262/#sec-array.from + + +var arrayFrom = function from(arrayLike +/* , mapfn = undefined, thisArg = undefined */ +) { + var O = toObject(arrayLike); + var C = typeof this == 'function' ? this : Array; + var argumentsLength = arguments.length; + var mapfn = argumentsLength > 1 ? arguments[1] : undefined; + var mapping = mapfn !== undefined; + var index = 0; + var iteratorMethod = getIteratorMethod(O); + var length, result, step, iterator; + if (mapping) mapfn = bindContext(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2); // if the target is not iterable or it's an array with the default iterator - use a simple case + + if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) { + iterator = iteratorMethod.call(O); + result = new C(); + + for (; !(step = iterator.next()).done; index++) { + createProperty(result, index, mapping ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true) : step.value); + } + } else { + length = toLength(O.length); + result = new C(length); + + for (; length > index; index++) { + createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]); + } + } + + result.length = index; + return result; +}; + +var ITERATOR$4 = wellKnownSymbol('iterator'); +var SAFE_CLOSING = false; + +try { + var called = 0; + var iteratorWithReturn = { + next: function () { + return { + done: !!called++ + }; + }, + 'return': function () { + SAFE_CLOSING = true; + } + }; + + iteratorWithReturn[ITERATOR$4] = function () { + return this; + }; // eslint-disable-next-line no-throw-literal + + + Array.from(iteratorWithReturn, function () { + throw 2; + }); +} catch (error) { + /* empty */ +} + +var checkCorrectnessOfIteration = function (exec, SKIP_CLOSING) { + if (!SKIP_CLOSING && !SAFE_CLOSING) return false; + var ITERATION_SUPPORT = false; + + try { + var object = {}; + + object[ITERATOR$4] = function () { + return { + next: function () { + return { + done: ITERATION_SUPPORT = true + }; + } + }; + }; + + exec(object); + } catch (error) { + /* empty */ + } + + return ITERATION_SUPPORT; +}; + +var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) { + Array.from(iterable); +}); // `Array.from` method +// https://tc39.github.io/ecma262/#sec-array.from + +_export({ + target: 'Array', + stat: true, + forced: INCORRECT_ITERATION +}, { + from: arrayFrom +}); + +var from_1 = path.Array.from; + +var from_1$1 = from_1; + +var from_1$2 = from_1$1; + +var ITERATOR$5 = wellKnownSymbol('iterator'); + +var isIterable = function (it) { + var O = Object(it); + return O[ITERATOR$5] !== undefined || '@@iterator' in O // eslint-disable-next-line no-prototype-builtins + || iterators.hasOwnProperty(classof(O)); +}; + +var isIterable$1 = isIterable; + +var isIterable$2 = isIterable$1; + +function _iterableToArray$2(iter) { + if (isIterable$2(Object(iter)) || Object.prototype.toString.call(iter) === "[object Arguments]") return from_1$2(iter); +} + +var iterableToArray$2 = _iterableToArray$2; + +function _nonIterableSpread$2() { + throw new TypeError("Invalid attempt to spread non-iterable instance"); +} + +var nonIterableSpread$2 = _nonIterableSpread$2; + +function _toConsumableArray$2(arr) { + return arrayWithoutHoles$2(arr) || iterableToArray$2(arr) || nonIterableSpread$2(); +} + +var toConsumableArray$2 = _toConsumableArray$2; + +var nativeAssign = Object.assign; // `Object.assign` method +// https://tc39.github.io/ecma262/#sec-object.assign +// should work with symbols and should have deterministic property order (V8 bug) + +var objectAssign = !nativeAssign || fails(function () { + var A = {}; + var B = {}; // eslint-disable-next-line no-undef + + var symbol = Symbol(); + var alphabet = 'abcdefghijklmnopqrst'; + A[symbol] = 7; + alphabet.split('').forEach(function (chr) { + B[chr] = chr; + }); + return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet; +}) ? function assign(target, source) { + // eslint-disable-line no-unused-vars + var T = toObject(target); + var argumentsLength = arguments.length; + var index = 1; + var getOwnPropertySymbols = objectGetOwnPropertySymbols.f; + var propertyIsEnumerable = objectPropertyIsEnumerable.f; + + while (argumentsLength > index) { + var S = indexedObject(arguments[index++]); + var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S); + var length = keys.length; + var j = 0; + var key; + + while (length > j) { + key = keys[j++]; + if (!descriptors || propertyIsEnumerable.call(S, key)) T[key] = S[key]; + } + } + + return T; +} : nativeAssign; + +// https://tc39.github.io/ecma262/#sec-object.assign + +_export({ + target: 'Object', + stat: true, + forced: Object.assign !== objectAssign +}, { + assign: objectAssign +}); + +var assign$2 = path.Object.assign; + +var assign$3 = assign$2; + +var assign$4 = assign$3; + +var $includes = arrayIncludes.includes; // `Array.prototype.includes` method +// https://tc39.github.io/ecma262/#sec-array.prototype.includes + +_export({ + target: 'Array', + proto: true +}, { + includes: function includes(el + /* , fromIndex = 0 */ + ) { + return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined); + } +}); // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + +var includes = entryVirtual('Array').includes; + +var MATCH = wellKnownSymbol('match'); // `IsRegExp` abstract operation +// https://tc39.github.io/ecma262/#sec-isregexp + +var isRegexp = function (it) { + var isRegExp; + return isObject$1(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classofRaw(it) == 'RegExp'); +}; + +var notARegexp = function (it) { + if (isRegexp(it)) { + throw TypeError("The method doesn't accept regular expressions"); + } + + return it; +}; + +var MATCH$1 = wellKnownSymbol('match'); + +var correctIsRegexpLogic = function (METHOD_NAME) { + var regexp = /./; + + try { + '/./'[METHOD_NAME](regexp); + } catch (e) { + try { + regexp[MATCH$1] = false; + return '/./'[METHOD_NAME](regexp); + } catch (f) { + /* empty */ + } + } + + return false; +}; + +// https://tc39.github.io/ecma262/#sec-string.prototype.includes + + +_export({ + target: 'String', + proto: true, + forced: !correctIsRegexpLogic('includes') +}, { + includes: function includes(searchString + /* , position = 0 */ + ) { + return !!~String(requireObjectCoercible(this)).indexOf(notARegexp(searchString), arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var includes$1 = entryVirtual('String').includes; + +var ArrayPrototype$a = Array.prototype; +var StringPrototype$1 = String.prototype; + +var includes$2 = function (it) { + var own = it.includes; + if (it === ArrayPrototype$a || it instanceof Array && own === ArrayPrototype$a.includes) return includes; + + if (typeof it === 'string' || it === StringPrototype$1 || it instanceof String && own === StringPrototype$1.includes) { + return includes$1; + } + + return own; +}; + +var includes$3 = includes$2; + +var includes$4 = includes$3; + +var SPECIES$3 = wellKnownSymbol('species'); +var nativeSlice = [].slice; +var max$2 = Math.max; // `Array.prototype.slice` method +// https://tc39.github.io/ecma262/#sec-array.prototype.slice +// fallback for not array-like ES3 strings and DOM objects + +_export({ + target: 'Array', + proto: true, + forced: !arrayMethodHasSpeciesSupport('slice') +}, { + slice: function slice(start, end) { + var O = toIndexedObject(this); + var length = toLength(O.length); + var k = toAbsoluteIndex(start, length); + var fin = toAbsoluteIndex(end === undefined ? length : end, length); // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible + + var Constructor, result, n; + + if (isArray(O)) { + Constructor = O.constructor; // cross-realm fallback + + if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) { + Constructor = undefined; + } else if (isObject$1(Constructor)) { + Constructor = Constructor[SPECIES$3]; + if (Constructor === null) Constructor = undefined; + } + + if (Constructor === Array || Constructor === undefined) { + return nativeSlice.call(O, k, fin); + } + } + + result = new (Constructor === undefined ? Array : Constructor)(max$2(fin - k, 0)); + + for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]); + + result.length = n; + return result; + } +}); + +var slice$2 = entryVirtual('Array').slice; + +var ArrayPrototype$b = Array.prototype; + +var slice_1 = function (it) { + var own = it.slice; + return it === ArrayPrototype$b || it instanceof Array && own === ArrayPrototype$b.slice ? slice$2 : own; +}; + +var slice$3 = slice_1; + +var slice$4 = slice$3; + +// Utility functions for ordering and stacking of items +var EPSILON = 0.001; // used when checking collisions, to prevent round-off errors + +/** + * Order items by their start data + * @param {Item[]} items + */ + +function orderByStart(items) { + sort$2(items).call(items, function (a, b) { + return a.data.start - b.data.start; + }); +} +/** + * Order items by their end date. If they have no end date, their start date + * is used. + * @param {Item[]} items + */ + +function orderByEnd(items) { + sort$2(items).call(items, function (a, b) { + var aTime = 'end' in a.data ? a.data.end : a.data.start; + var bTime = 'end' in b.data ? b.data.end : b.data.start; + return aTime - bTime; + }); +} +/** + * Adjust vertical positions of the items such that they don't overlap each + * other. + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {boolean} [force=false] + * If true, all items will be repositioned. If false (default), only + * items having a top===null will be re-stacked + * @param {function} shouldBailItemsRedrawFunction + * bailing function + * @return {boolean} shouldBail + */ + +function stack(items, margin, force, shouldBailItemsRedrawFunction) { + if (force) { + // reset top position of all items + for (var i = 0; i < items.length; i++) { + items[i].top = null; + } + } // calculate new, non-overlapping positions + + + for (var i = 0; i < items.length; i++) { + // eslint-disable-line no-redeclare + var item = items[i]; + + if (item.stack && item.top === null) { + // initialize top position + item.top = margin.axis; + var shouldBail = false; + + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + + for (var j = 0, jj = items.length; j < jj; j++) { + var other = items[j]; + shouldBail = shouldBailItemsRedrawFunction() || false; + + if (shouldBail) { + return true; + } + + if (other.top !== null && other !== item && other.stack && collision(item, other, margin.item, other.options.rtl)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; + } + } while (collidingItem); + } + } + + return shouldBail; +} +/** + * Adjust vertical positions of the items within a single subgroup such that they + * don't overlap each other. + * @param {Item[]} items + * All items withina subgroup + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {subgroup} subgroup + * The subgroup that is being stacked + */ + +function substack(items, margin, subgroup) { + for (var i = 0; i < items.length; i++) { + items[i].top = null; + } // Set the initial height + + + var subgroupHeight = subgroup.height; // calculate new, non-overlapping positions + + for (i = 0; i < items.length; i++) { + var item = items[i]; + + if (item.stack && item.top === null) { + // initialize top position + item.top = item.baseTop; //margin.axis + item.baseTop; + + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + + for (var j = 0, jj = items.length; j < jj; j++) { + var other = items[j]; + + if (other.top !== null && other !== item + /*&& other.stack*/ + && collision(item, other, margin.item, other.options.rtl)) { + collidingItem = other; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the items above the colliding element + item.top = collidingItem.top + collidingItem.height + margin.item.vertical; // + item.baseTop; + } + + if (item.top + item.height > subgroupHeight) { + subgroupHeight = item.top + item.height; + } + } while (collidingItem); + } + } // Set the new height + + + subgroup.height = subgroupHeight - subgroup.top + 0.5 * margin.item.vertical; +} +/** + * Adjust vertical positions of the items without stacking them + * @param {Item[]} items + * All visible items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {subgroups[]} subgroups + * All subgroups + * @param {boolean} isStackSubgroups + */ + +function nostack(items, margin, subgroups, isStackSubgroups) { + for (var i = 0; i < items.length; i++) { + if (items[i].data.subgroup == undefined) { + items[i].top = margin.item.vertical; + } else if (items[i].data.subgroup !== undefined && isStackSubgroups) { + var newTop = 0; + + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroups[items[i].data.subgroup].index) { + newTop += subgroups[subgroup].height; + subgroups[items[i].data.subgroup].top = newTop; + } + } + } + + items[i].top = newTop + 0.5 * margin.item.vertical; + } + } + + if (!isStackSubgroups) { + stackSubgroups(items, margin, subgroups); + } +} +/** + * Adjust vertical positions of the subgroups such that they don't overlap each + * other. + * @param {Array.} items + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin Margins between items and between items and the axis. + * @param {subgroups[]} subgroups + * All subgroups + */ + +function stackSubgroups(items, margin, subgroups) { + for (var subgroup in subgroups) { + if (subgroups.hasOwnProperty(subgroup)) { + subgroups[subgroup].top = 0; + + do { + // TODO: optimize checking for overlap. when there is a gap without items, + // you only need to check for items from the next item on, not from zero + var collidingItem = null; + + for (var otherSubgroup in subgroups) { + if (subgroups[otherSubgroup].top !== null && otherSubgroup !== subgroup && subgroups[subgroup].index > subgroups[otherSubgroup].index && collisionByTimes(subgroups[subgroup], subgroups[otherSubgroup])) { + collidingItem = subgroups[otherSubgroup]; + break; + } + } + + if (collidingItem != null) { + // There is a collision. Reposition the subgroups above the colliding element + subgroups[subgroup].top = collidingItem.top + collidingItem.height; + } + } while (collidingItem); + } + } + + for (var i = 0; i < items.length; i++) { + if (items[i].data.subgroup !== undefined) { + items[i].top = subgroups[items[i].data.subgroup].top + 0.5 * margin.item.vertical; + } + } +} +/** + * Adjust vertical positions of the subgroups such that they don't overlap each + * other, then stacks the contents of each subgroup individually. + * @param {Item[]} subgroupItems + * All the items in a subgroup + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * Margins between items and between items and the axis. + * @param {subgroups[]} subgroups + * All subgroups + */ + +function stackSubgroupsWithInnerStack(subgroupItems, margin, subgroups) { + var doSubStack = false; // Run subgroups in their order (if any) + + var subgroupOrder = []; + + for (var subgroup in subgroups) { + if (subgroups[subgroup].hasOwnProperty("index")) { + subgroupOrder[subgroups[subgroup].index] = subgroup; + } else { + subgroupOrder.push(subgroup); + } + } + + for (var j = 0; j < subgroupOrder.length; j++) { + subgroup = subgroupOrder[j]; + + if (subgroups.hasOwnProperty(subgroup)) { + doSubStack = doSubStack || subgroups[subgroup].stack; + subgroups[subgroup].top = 0; + + for (var otherSubgroup in subgroups) { + if (subgroups[otherSubgroup].visible && subgroups[subgroup].index > subgroups[otherSubgroup].index) { + subgroups[subgroup].top += subgroups[otherSubgroup].height; + } + } + + var items = subgroupItems[subgroup]; + + for (var i = 0; i < items.length; i++) { + if (items[i].data.subgroup !== undefined) { + items[i].top = subgroups[items[i].data.subgroup].top + 0.5 * margin.item.vertical; + + if (subgroups[subgroup].stack) { + items[i].baseTop = items[i].top; + } + } + } + + if (doSubStack && subgroups[subgroup].stack) { + substack(subgroupItems[subgroup], margin, subgroups[subgroup]); + } + } + } +} +/** + * Test if the two provided items collide + * The items must have parameters left, width, top, and height. + * @param {Item} a The first item + * @param {Item} b The second item + * @param {{horizontal: number, vertical: number}} margin + * An object containing a horizontal and vertical + * minimum required margin. + * @param {boolean} rtl + * @return {boolean} true if a and b collide, else false + */ + +function collision(a, b, margin, rtl) { + if (rtl) { + return a.right - margin.horizontal + EPSILON < b.right + b.width && a.right + a.width + margin.horizontal - EPSILON > b.right && a.top - margin.vertical + EPSILON < b.top + b.height && a.top + a.height + margin.vertical - EPSILON > b.top; + } else { + return a.left - margin.horizontal + EPSILON < b.left + b.width && a.left + a.width + margin.horizontal - EPSILON > b.left && a.top - margin.vertical + EPSILON < b.top + b.height && a.top + a.height + margin.vertical - EPSILON > b.top; + } +} +/** + * Test if the two provided objects collide + * The objects must have parameters start, end, top, and height. + * @param {Object} a The first Object + * @param {Object} b The second Object + * @return {boolean} true if a and b collide, else false + */ + +function collisionByTimes(a, b) { + return a.start <= b.start && a.end >= b.start && a.top < b.top + b.height && a.top + a.height > b.top || b.start <= a.start && b.end >= a.start && b.top < a.top + a.height && b.top + b.height > a.top; +} + +var stack$1 = /*#__PURE__*/Object.freeze({ + orderByStart: orderByStart, + orderByEnd: orderByEnd, + stack: stack, + substack: substack, + nostack: nostack, + stackSubgroups: stackSubgroups, + stackSubgroupsWithInnerStack: stackSubgroupsWithInnerStack, + collision: collision, + collisionByTimes: collisionByTimes +}); + +var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items + +var BACKGROUND = '__background__'; // reserved group id for background items without group + +var ReservedGroupIds = { + UNGROUPED: UNGROUPED, + BACKGROUND: BACKGROUND + /** + * @constructor Group + */ + +}; + +var Group = +/*#__PURE__*/ +function () { + /** + * @param {number | string} groupId + * @param {Object} data + * @param {ItemSet} itemSet + * @constructor Group + */ + function Group(groupId, data, itemSet) { + classCallCheck$1(this, Group); + + this.groupId = groupId; + this.subgroups = {}; + this.subgroupStack = {}; + this.subgroupStackAll = false; + this.subgroupVisibility = {}; + this.doInnerStack = false; + this.shouldBailStackItems = false; + this.subgroupIndex = 0; + this.subgroupOrderer = data && data.subgroupOrder; + this.itemSet = itemSet; + this.isVisible = null; + this.stackDirty = true; // if true, items will be restacked on next redraw + + if (data && data.nestedGroups) { + this.nestedGroups = data.nestedGroups; + + if (data.showNested == false) { + this.showNested = false; + } else { + this.showNested = true; + } + } + + if (data && data.subgroupStack) { + if (typeof data.subgroupStack === "boolean") { + this.doInnerStack = data.subgroupStack; + this.subgroupStackAll = data.subgroupStack; + } else { + // We might be doing stacking on specific sub groups, but only + // if at least one is set to do stacking + for (var key in data.subgroupStack) { + this.subgroupStack[key] = data.subgroupStack[key]; + this.doInnerStack = this.doInnerStack || data.subgroupStack[key]; + } + } + } + + if (data && data.heightMode) { + this.heightMode = data.heightMode; + } else { + this.heightMode = itemSet.options.groupHeightMode; + } + + this.nestedInGroup = null; + this.dom = {}; + this.props = { + label: { + width: 0, + height: 0 + } + }; + this.className = null; + this.items = {}; // items filtered by groupId of this group + + this.visibleItems = []; // items currently visible in window + + this.itemsInRange = []; // items currently in range + + this.orderedItems = { + byStart: [], + byEnd: [] + }; + this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap. + + var me = this; + this.itemSet.body.emitter.on("checkRangedItems", function () { + me.checkRangedItems = true; + }); + + this._create(); + + this.setData(data); + } + /** + * Create DOM elements for the group + * @private + */ + + + createClass$1(Group, [{ + key: "_create", + value: function _create() { + var label = document.createElement('div'); + + if (this.itemSet.options.groupEditable.order) { + label.className = 'vis-label draggable'; + } else { + label.className = 'vis-label'; + } + + this.dom.label = label; + var inner = document.createElement('div'); + inner.className = 'vis-inner'; + label.appendChild(inner); + this.dom.inner = inner; + var foreground = document.createElement('div'); + foreground.className = 'vis-group'; + foreground['vis-group'] = this; + this.dom.foreground = foreground; + this.dom.background = document.createElement('div'); + this.dom.background.className = 'vis-group'; + this.dom.axis = document.createElement('div'); + this.dom.axis.className = 'vis-group'; // create a hidden marker to detect when the Timelines container is attached + // to the DOM, or the style of a parent of the Timeline is changed from + // display:none is changed to visible. + + this.dom.marker = document.createElement('div'); + this.dom.marker.style.visibility = 'hidden'; + this.dom.marker.style.position = 'absolute'; + this.dom.marker.innerHTML = ''; + this.dom.background.appendChild(this.dom.marker); + } + /** + * Set the group data for this group + * @param {Object} data Group data, can contain properties content and className + */ + + }, { + key: "setData", + value: function setData(data) { + if (this.itemSet.groupTouchParams.isDragging) return; // update contents + + var content; + var templateFunction; + + if (data && data.subgroupVisibility) { + for (var key in data.subgroupVisibility) { + this.subgroupVisibility[key] = data.subgroupVisibility[key]; + } + } + + if (this.itemSet.options && this.itemSet.options.groupTemplate) { + var _context; + + templateFunction = bind$2(_context = this.itemSet.options.groupTemplate).call(_context, this); + content = templateFunction(data, this.dom.inner); + } else { + content = data && data.content; + } + + if (content instanceof Element) { + while (this.dom.inner.firstChild) { + this.dom.inner.removeChild(this.dom.inner.firstChild); + } + + this.dom.inner.appendChild(content); + } else if (content instanceof Object && content.isReactComponent) ; else if (content instanceof Object) { + templateFunction(data, this.dom.inner); + } else if (content !== undefined && content !== null) { + this.dom.inner.innerHTML = content; + } else { + this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null + } // update title + + + this.dom.label.title = data && data.title || ''; + + if (!this.dom.inner.firstChild) { + util$2.addClassName(this.dom.inner, 'vis-hidden'); + } else { + util$2.removeClassName(this.dom.inner, 'vis-hidden'); + } + + if (data && data.nestedGroups) { + if (!this.nestedGroups || this.nestedGroups != data.nestedGroups) { + this.nestedGroups = data.nestedGroups; + } + + if (data.showNested !== undefined || this.showNested === undefined) { + if (data.showNested == false) { + this.showNested = false; + } else { + this.showNested = true; + } + } + + util$2.addClassName(this.dom.label, 'vis-nesting-group'); + + if (this.showNested) { + util$2.removeClassName(this.dom.label, 'collapsed'); + util$2.addClassName(this.dom.label, 'expanded'); + } else { + util$2.removeClassName(this.dom.label, 'expanded'); + util$2.addClassName(this.dom.label, 'collapsed'); + } + } else if (this.nestedGroups) { + this.nestedGroups = null; + util$2.removeClassName(this.dom.label, 'collapsed'); + util$2.removeClassName(this.dom.label, 'expanded'); + util$2.removeClassName(this.dom.label, 'vis-nesting-group'); + } + + if (data && (data.treeLevel || data.nestedInGroup)) { + util$2.addClassName(this.dom.label, 'vis-nested-group'); + + if (data.treeLevel) { + util$2.addClassName(this.dom.label, 'vis-group-level-' + data.treeLevel); + } else { + // Nesting level is unknown, but we're sure it's at least 1 + util$2.addClassName(this.dom.label, 'vis-group-level-unknown-but-gte1'); + } + } else { + util$2.addClassName(this.dom.label, 'vis-group-level-0'); + } // update className + + + var className = data && data.className || null; + + if (className != this.className) { + if (this.className) { + util$2.removeClassName(this.dom.label, this.className); + util$2.removeClassName(this.dom.foreground, this.className); + util$2.removeClassName(this.dom.background, this.className); + util$2.removeClassName(this.dom.axis, this.className); + } + + util$2.addClassName(this.dom.label, className); + util$2.addClassName(this.dom.foreground, className); + util$2.addClassName(this.dom.background, className); + util$2.addClassName(this.dom.axis, className); + this.className = className; + } // update style + + + if (this.style) { + util$2.removeCssText(this.dom.label, this.style); + this.style = null; + } + + if (data && data.style) { + util$2.addCssText(this.dom.label, data.style); + this.style = data.style; + } + } + /** + * Get the width of the group label + * @return {number} width + */ + + }, { + key: "getLabelWidth", + value: function getLabelWidth() { + return this.props.label.width; + } + /** + * check if group has had an initial height hange + * @returns {boolean} + */ + + }, { + key: "_didMarkerHeightChange", + value: function _didMarkerHeightChange() { + var markerHeight = this.dom.marker.clientHeight; + + if (markerHeight != this.lastMarkerHeight) { + this.lastMarkerHeight = markerHeight; + var redrawQueue = {}; + var redrawQueueLength = 0; + + forEach$3(util$2).call(util$2, this.items, function (item, key) { + item.dirty = true; + + if (item.displayed) { + var returnQueue = true; + redrawQueue[key] = item.redraw(returnQueue); + redrawQueueLength = redrawQueue[key].length; + } + }); + + var needRedraw = redrawQueueLength > 0; + + if (needRedraw) { + var _loop = function _loop(i) { + forEach$3(util$2).call(util$2, redrawQueue, function (fns) { + fns[i](); + }); + }; + + // redraw all regular items + for (var i = 0; i < redrawQueueLength; i++) { + _loop(i); + } + } + + return true; + } else { + return false; + } + } + /** + * calculate group dimentions and position + * @param {number} pixels + */ + + }, { + key: "_calculateGroupSizeAndPosition", + value: function _calculateGroupSizeAndPosition() { + var _this$dom$foreground = this.dom.foreground, + offsetTop = _this$dom$foreground.offsetTop, + offsetLeft = _this$dom$foreground.offsetLeft, + offsetWidth = _this$dom$foreground.offsetWidth; + this.top = offsetTop; + this.right = offsetLeft; + this.width = offsetWidth; + } + /** + * checks if should bail redraw of items + * @returns {boolean} should bail + */ + + }, { + key: "_shouldBailItemsRedraw", + value: function _shouldBailItemsRedraw() { + var me = this; + var timeoutOptions = this.itemSet.options.onTimeout; + var bailOptions = { + relativeBailingTime: this.itemSet.itemsSettingTime, + bailTimeMs: timeoutOptions && timeoutOptions.timeoutMs, + userBailFunction: timeoutOptions && timeoutOptions.callback, + shouldBailStackItems: this.shouldBailStackItems + }; + var bail = null; + + if (!this.itemSet.initialDrawDone) { + if (bailOptions.shouldBailStackItems) { + return true; + } + + if (Math.abs(now$2() - new Date(bailOptions.relativeBailingTime)) > bailOptions.bailTimeMs) { + if (bailOptions.userBailFunction && this.itemSet.userContinueNotBail == null) { + bailOptions.userBailFunction(function (didUserContinue) { + me.itemSet.userContinueNotBail = didUserContinue; + bail = !didUserContinue; + }); + } else if (me.itemSet.userContinueNotBail == false) { + bail = true; + } else { + bail = false; + } + } + } + + return bail; + } + /** + * redraws items + * @param {boolean} forceRestack + * @param {boolean} lastIsVisible + * @param {number} margin + * @param {object} range + * @private + */ + + }, { + key: "_redrawItems", + value: function _redrawItems(forceRestack, lastIsVisible, margin, range) { + var _this = this; + + var restack = forceRestack || this.stackDirty || this.isVisible && !lastIsVisible; // if restacking, reposition visible items vertically + + if (restack) { + var _context2, _context3, _context4, _context5, _context6, _context7; + + var orderedItems = { + byEnd: filter$2(_context2 = this.orderedItems.byEnd).call(_context2, function (item) { + return !item.isCluster; + }), + byStart: filter$2(_context3 = this.orderedItems.byStart).call(_context3, function (item) { + return !item.isCluster; + }) + }; + var orderedClusters = { + byEnd: toConsumableArray$2(new set$3(filter$2(_context4 = map$2(_context5 = this.orderedItems.byEnd).call(_context5, function (item) { + return item.cluster; + })).call(_context4, function (item) { + return !!item; + }))), + byStart: toConsumableArray$2(new set$3(filter$2(_context6 = map$2(_context7 = this.orderedItems.byStart).call(_context7, function (item) { + return item.cluster; + })).call(_context6, function (item) { + return !!item; + }))) + /** + * Get all visible items in range + * @return {array} items + */ + + }; + + var getVisibleItems = function getVisibleItems() { + var _context8, _context9, _context10; + + var visibleItems = _this._updateItemsInRange(orderedItems, filter$2(_context8 = _this.visibleItems).call(_context8, function (item) { + return !item.isCluster; + }), range); + + var visibleClusters = _this._updateClustersInRange(orderedClusters, filter$2(_context9 = _this.visibleItems).call(_context9, function (item) { + return item.isCluster; + }), range); + + return concat$2(_context10 = []).call(_context10, toConsumableArray$2(visibleItems), toConsumableArray$2(visibleClusters)); + }; + /** + * Get visible items grouped by subgroup + * @param {function} orderFn An optional function to order items inside the subgroups + * @return {Object} + */ + + + var getVisibleItemsGroupedBySubgroup = function getVisibleItemsGroupedBySubgroup(orderFn) { + var visibleSubgroupsItems = {}; + + var _loop2 = function _loop2(subgroup) { + var _context11; + + var items = filter$2(_context11 = _this.visibleItems).call(_context11, function (item) { + return item.data.subgroup === subgroup; + }); + + visibleSubgroupsItems[subgroup] = orderFn ? sort$2(items).call(items, function (a, b) { + return orderFn(a.data, b.data); + }) : items; + }; + + for (var subgroup in _this.subgroups) { + _loop2(subgroup); + } + + return visibleSubgroupsItems; + }; + + if (typeof this.itemSet.options.order === 'function') { + // a custom order function + //show all items + var me = this; + + if (this.doInnerStack && this.itemSet.options.stackSubgroups) { + // Order the items within each subgroup + var visibleSubgroupsItems = getVisibleItemsGroupedBySubgroup(this.itemSet.options.order); + stackSubgroupsWithInnerStack(visibleSubgroupsItems, margin, this.subgroups); + this.visibleItems = getVisibleItems(); + + this._updateSubGroupHeights(margin); + } else { + var _context12, _context13, _context14, _context15; + + this.visibleItems = getVisibleItems(); + + this._updateSubGroupHeights(margin); // order all items and force a restacking + // order all items outside clusters and force a restacking + + + var customOrderedItems = sort$2(_context12 = filter$2(_context13 = slice$4(_context14 = this.visibleItems).call(_context14)).call(_context13, function (item) { + return item.isCluster || !item.isCluster && !item.cluster; + })).call(_context12, function (a, b) { + return me.itemSet.options.order(a.data, b.data); + }); + + this.shouldBailStackItems = stack(customOrderedItems, margin, true, bind$2(_context15 = this._shouldBailItemsRedraw).call(_context15, this)); + } + } else { + // no custom order function, lazy stacking + this.visibleItems = getVisibleItems(); + + this._updateSubGroupHeights(margin); + + if (this.itemSet.options.stack) { + if (this.doInnerStack && this.itemSet.options.stackSubgroups) { + var _visibleSubgroupsItems = getVisibleItemsGroupedBySubgroup(); + + stackSubgroupsWithInnerStack(_visibleSubgroupsItems, margin, this.subgroups); + } else { + var _context16; + + // TODO: ugly way to access options... + this.shouldBailStackItems = stack(this.visibleItems, margin, true, bind$2(_context16 = this._shouldBailItemsRedraw).call(_context16, this)); + } + } else { + // no stacking + nostack(this.visibleItems, margin, this.subgroups, this.itemSet.options.stackSubgroups); + } + } + + for (var i = 0; i < this.visibleItems.length; i++) { + this.visibleItems[i].repositionX(); + + if (this.subgroupVisibility[this.visibleItems[i].data.subgroup] !== undefined) { + if (!this.subgroupVisibility[this.visibleItems[i].data.subgroup]) { + this.visibleItems[i].hide(); + } + } + } + + if (this.itemSet.options.cluster) { + forEach$3(util$2).call(util$2, this.items, function (item) { + if (item.cluster && item.displayed) { + item.hide(); + } + }); + } + + if (this.shouldBailStackItems) { + this.itemSet.body.emitter.emit('destroyTimeline'); + } + + this.stackDirty = false; + } + } + /** + * check if group resized + * @param {boolean} resized + * @param {number} height + * @return {boolean} did resize + */ + + }, { + key: "_didResize", + value: function _didResize(resized, height) { + resized = util$2.updateProperty(this, 'height', height) || resized; // recalculate size of label + + var labelWidth = this.dom.inner.clientWidth; + var labelHeight = this.dom.inner.clientHeight; + resized = util$2.updateProperty(this.props.label, 'width', labelWidth) || resized; + resized = util$2.updateProperty(this.props.label, 'height', labelHeight) || resized; + return resized; + } + /** + * apply group height + * @param {number} height + */ + + }, { + key: "_applyGroupHeight", + value: function _applyGroupHeight(height) { + this.dom.background.style.height = "".concat(height, "px"); + this.dom.foreground.style.height = "".concat(height, "px"); + this.dom.label.style.height = "".concat(height, "px"); + } + /** + * update vertical position of items after they are re-stacked and the height of the group is calculated + * @param {number} margin + */ + + }, { + key: "_updateItemsVerticalPosition", + value: function _updateItemsVerticalPosition(margin) { + for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { + var item = this.visibleItems[i]; + item.repositionY(margin); + + if (!this.isVisible && this.groupId != ReservedGroupIds.BACKGROUND) { + if (item.displayed) item.hide(); + } + } + } + /** + * Repaint this group + * @param {{start: number, end: number}} range + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @param {boolean} [forceRestack=false] Force restacking of all items + * @param {boolean} [returnQueue=false] return the queue or if the group resized + * @return {boolean} Returns true if the group is resized or the redraw queue if returnQueue=true + */ + + }, { + key: "redraw", + value: function redraw(range, margin, forceRestack, returnQueue) { + var _this2 = this, + _context17, + _context18, + _context21, + _context23, + _context27; + + var resized = false; + var lastIsVisible = this.isVisible; + var height; + var queue = [function () { + forceRestack = _this2._didMarkerHeightChange.call(_this2) || forceRestack; + }, // recalculate the height of the subgroups + bind$2(_context17 = this._updateSubGroupHeights).call(_context17, this, margin), // calculate actual size and position + bind$2(_context18 = this._calculateGroupSizeAndPosition).call(_context18, this), function () { + var _context19; + + _this2.isVisible = bind$2(_context19 = _this2._isGroupVisible).call(_context19, _this2)(range, margin); + }, function () { + var _context20; + + bind$2(_context20 = _this2._redrawItems).call(_context20, _this2)(forceRestack, lastIsVisible, margin, range); + }, // update subgroups + bind$2(_context21 = this._updateSubgroupsSizes).call(_context21, this), function () { + var _context22; + + height = bind$2(_context22 = _this2._calculateHeight).call(_context22, _this2)(margin); + }, // calculate actual size and position again + bind$2(_context23 = this._calculateGroupSizeAndPosition).call(_context23, this), function () { + var _context24; + + resized = bind$2(_context24 = _this2._didResize).call(_context24, _this2)(resized, height); + }, function () { + var _context25; + + bind$2(_context25 = _this2._applyGroupHeight).call(_context25, _this2)(height); + }, function () { + var _context26; + + bind$2(_context26 = _this2._updateItemsVerticalPosition).call(_context26, _this2)(margin); + }, bind$2(_context27 = function _context27() { + if (!_this2.isVisible && _this2.height) { + resized = false; + } + + return resized; + }).call(_context27, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * recalculate the height of the subgroups + * + * @param {{item: timeline.Item}} margin + * @private + */ + + }, { + key: "_updateSubGroupHeights", + value: function _updateSubGroupHeights(margin) { + var _this3 = this; + + if (keys$3(this.subgroups).length > 0) { + var me = this; + + this._resetSubgroups(); + + forEach$3(util$2).call(util$2, this.visibleItems, function (item) { + if (item.data.subgroup !== undefined) { + me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height, item.height + margin.item.vertical); + me.subgroups[item.data.subgroup].visible = typeof _this3.subgroupVisibility[item.data.subgroup] === 'undefined' ? true : Boolean(_this3.subgroupVisibility[item.data.subgroup]); + } + }); + } + } + /** + * check if group is visible + * + * @param {timeline.Range} range + * @param {{axis: timeline.DataAxis}} margin + * @returns {boolean} is visible + * @private + */ + + }, { + key: "_isGroupVisible", + value: function _isGroupVisible(range, margin) { + return this.top <= range.body.domProps.centerContainer.height - range.body.domProps.scrollTop + margin.axis && this.top + this.height + margin.axis >= -range.body.domProps.scrollTop; + } + /** + * recalculate the height of the group + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @returns {number} Returns the height + * @private + */ + + }, { + key: "_calculateHeight", + value: function _calculateHeight(margin) { + // recalculate the height of the group + var height; + var items; + + if (this.heightMode === 'fixed') { + items = util$2.toArray(this.items); + } else { + // default or 'auto' + items = this.visibleItems; + } + + if (items.length > 0) { + var min = items[0].top; + var max = items[0].top + items[0].height; + + forEach$3(util$2).call(util$2, items, function (item) { + min = Math.min(min, item.top); + max = Math.max(max, item.top + item.height); + }); + + if (min > margin.axis) { + // there is an empty gap between the lowest item and the axis + var offset = min - margin.axis; + max -= offset; + + forEach$3(util$2).call(util$2, items, function (item) { + item.top -= offset; + }); + } + + height = Math.ceil(max + margin.item.vertical / 2); + + if (this.heightMode !== "fitItems") { + height = Math.max(height, this.props.label.height); + } + } else { + height = this.props.label.height; + } + + return height; + } + /** + * Show this group: attach to the DOM + */ + + }, { + key: "show", + value: function show() { + if (!this.dom.label.parentNode) { + this.itemSet.dom.labelSet.appendChild(this.dom.label); + } + + if (!this.dom.foreground.parentNode) { + this.itemSet.dom.foreground.appendChild(this.dom.foreground); + } + + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + + if (!this.dom.axis.parentNode) { + this.itemSet.dom.axis.appendChild(this.dom.axis); + } + } + /** + * Hide this group: remove from the DOM + */ + + }, { + key: "hide", + value: function hide() { + var label = this.dom.label; + + if (label.parentNode) { + label.parentNode.removeChild(label); + } + + var foreground = this.dom.foreground; + + if (foreground.parentNode) { + foreground.parentNode.removeChild(foreground); + } + + var background = this.dom.background; + + if (background.parentNode) { + background.parentNode.removeChild(background); + } + + var axis = this.dom.axis; + + if (axis.parentNode) { + axis.parentNode.removeChild(axis); + } + } + /** + * Add an item to the group + * @param {Item} item + */ + + }, { + key: "add", + value: function add(item) { + var _context28; + + this.items[item.id] = item; + item.setParent(this); + this.stackDirty = true; // add to + + if (item.data.subgroup !== undefined) { + this._addToSubgroup(item); + + this.orderSubgroups(); + } + + if (!includes$4(_context28 = this.visibleItems).call(_context28, item)) { + var range = this.itemSet.body.range; // TODO: not nice accessing the range like this + + this._checkIfVisible(item, this.visibleItems, range); + } + } + /** + * add item to subgroup + * @param {object} item + * @param {string} subgroupId + */ + + }, { + key: "_addToSubgroup", + value: function _addToSubgroup(item) { + var subgroupId = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : item.data.subgroup; + + if (subgroupId != undefined && this.subgroups[subgroupId] === undefined) { + this.subgroups[subgroupId] = { + height: 0, + top: 0, + start: item.data.start, + end: item.data.end || item.data.start, + visible: false, + index: this.subgroupIndex, + items: [], + stack: this.subgroupStackAll || this.subgroupStack[subgroupId] || false + }; + this.subgroupIndex++; + } + + if (new Date(item.data.start) < new Date(this.subgroups[subgroupId].start)) { + this.subgroups[subgroupId].start = item.data.start; + } + + var itemEnd = item.data.end || item.data.start; + + if (new Date(itemEnd) > new Date(this.subgroups[subgroupId].end)) { + this.subgroups[subgroupId].end = itemEnd; + } + + this.subgroups[subgroupId].items.push(item); + } + /** + * update subgroup sizes + */ + + }, { + key: "_updateSubgroupsSizes", + value: function _updateSubgroupsSizes() { + var me = this; + + if (me.subgroups) { + var _loop3 = function _loop3(subgroup) { + var _context29; + + var initialEnd = me.subgroups[subgroup].items[0].data.end || me.subgroups[subgroup].items[0].data.start; + var newStart = me.subgroups[subgroup].items[0].data.start; + var newEnd = initialEnd - 1; + + forEach$3(_context29 = me.subgroups[subgroup].items).call(_context29, function (item) { + if (new Date(item.data.start) < new Date(newStart)) { + newStart = item.data.start; + } + + var itemEnd = item.data.end || item.data.start; + + if (new Date(itemEnd) > new Date(newEnd)) { + newEnd = itemEnd; + } + }); + + me.subgroups[subgroup].start = newStart; + me.subgroups[subgroup].end = new Date(newEnd - 1); // -1 to compensate for colliding end to start subgroups; + }; + + for (var subgroup in me.subgroups) { + _loop3(subgroup); + } + } + } + /** + * order subgroups + */ + + }, { + key: "orderSubgroups", + value: function orderSubgroups() { + if (this.subgroupOrderer !== undefined) { + var sortArray = []; + + if (typeof this.subgroupOrderer == 'string') { + for (var subgroup in this.subgroups) { + sortArray.push({ + subgroup: subgroup, + sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer] + }); + } + + sort$2(sortArray).call(sortArray, function (a, b) { + return a.sortField - b.sortField; + }); + } else if (typeof this.subgroupOrderer == 'function') { + for (var _subgroup in this.subgroups) { + sortArray.push(this.subgroups[_subgroup].items[0].data); + } + + sort$2(sortArray).call(sortArray, this.subgroupOrderer); + } + + if (sortArray.length > 0) { + for (var i = 0; i < sortArray.length; i++) { + this.subgroups[sortArray[i].subgroup].index = i; + } + } + } + } + /** + * add item to subgroup + */ + + }, { + key: "_resetSubgroups", + value: function _resetSubgroups() { + for (var subgroup in this.subgroups) { + if (this.subgroups.hasOwnProperty(subgroup)) { + this.subgroups[subgroup].visible = false; + this.subgroups[subgroup].height = 0; + } + } + } + /** + * Remove an item from the group + * @param {Item} item + */ + + }, { + key: "remove", + value: function remove(item) { + var _context30, _context31; + + delete this.items[item.id]; + item.setParent(null); + this.stackDirty = true; // remove from visible items + + var index = indexOf$3(_context30 = this.visibleItems).call(_context30, item); + + if (index != -1) splice$2(_context31 = this.visibleItems).call(_context31, index, 1); + + if (item.data.subgroup !== undefined) { + this._removeFromSubgroup(item); + + this.orderSubgroups(); + } + } + /** + * remove item from subgroup + * @param {object} item + * @param {string} subgroupId + */ + + }, { + key: "_removeFromSubgroup", + value: function _removeFromSubgroup(item) { + var subgroupId = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : item.data.subgroup; + + if (subgroupId != undefined) { + var subgroup = this.subgroups[subgroupId]; + + if (subgroup) { + var _context32; + + var itemIndex = indexOf$3(_context32 = subgroup.items).call(_context32, item); // Check the item is actually in this subgroup. How should items not in the group be handled? + + + if (itemIndex >= 0) { + var _context33; + + splice$2(_context33 = subgroup.items).call(_context33, itemIndex, 1); + + if (!subgroup.items.length) { + delete this.subgroups[subgroupId]; + } else { + this._updateSubgroupsSizes(); + } + } + } + } + } + /** + * Remove an item from the corresponding DataSet + * @param {Item} item + */ + + }, { + key: "removeFromDataSet", + value: function removeFromDataSet(item) { + this.itemSet.removeItem(item.id); + } + /** + * Reorder the items + */ + + }, { + key: "order", + value: function order() { + var array = util$2.toArray(this.items); + var startArray = []; + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i].data.end !== undefined) { + endArray.push(array[i]); + } + + startArray.push(array[i]); + } + + this.orderedItems = { + byStart: startArray, + byEnd: endArray + }; + orderByStart(this.orderedItems.byStart); + orderByEnd(this.orderedItems.byEnd); + } + /** + * Update the visible items + * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date + * @param {Item[]} oldVisibleItems The previously visible items. + * @param {{start: number, end: number}} range Visible range + * @return {Item[]} visibleItems The new visible items. + * @private + */ + + }, { + key: "_updateItemsInRange", + value: function _updateItemsInRange(orderedItems, oldVisibleItems, range) { + var visibleItems = []; + var visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems + + if (!this.isVisible && this.groupId != ReservedGroupIds.BACKGROUND) { + for (var i = 0; i < oldVisibleItems.length; i++) { + var item = oldVisibleItems[i]; + if (item.displayed) item.hide(); + } + + return visibleItems; + } + + var interval = (range.end - range.start) / 4; + var lowerBound = range.start - interval; + var upperBound = range.end + interval; // this function is used to do the binary search for items having start date only. + + var startSearchFunction = function startSearchFunction(value) { + if (value < lowerBound) { + return -1; + } else if (value <= upperBound) { + return 0; + } else { + return 1; + } + }; // this function is used to do the binary search for items having start and end dates (range). + + + var endSearchFunction = function endSearchFunction(value) { + if (value < lowerBound) { + return -1; + } else { + return 0; + } + }; // first check if the items that were in view previously are still in view. + // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window! + // also cleans up invisible items. + + + if (oldVisibleItems.length > 0) { + for (var _i = 0; _i < oldVisibleItems.length; _i++) { + this._checkIfVisibleWithReference(oldVisibleItems[_i], visibleItems, visibleItemsLookup, range); + } + } // we do a binary search for the items that have only start values. + + + var initialPosByStart = util$2.binarySearchCustom(orderedItems.byStart, startSearchFunction, 'data', 'start'); // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values. + + this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, function (item) { + return item.data.start < lowerBound || item.data.start > upperBound; + }); // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown. + // We therefore have to brute force check all items in the byEnd list + + + if (this.checkRangedItems == true) { + this.checkRangedItems = false; + + for (var _i2 = 0; _i2 < orderedItems.byEnd.length; _i2++) { + this._checkIfVisibleWithReference(orderedItems.byEnd[_i2], visibleItems, visibleItemsLookup, range); + } + } else { + // we do a binary search for the items that have defined end times. + var initialPosByEnd = util$2.binarySearchCustom(orderedItems.byEnd, endSearchFunction, 'data', 'end'); // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values. + + this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, function (item) { + return item.data.end < lowerBound || item.data.start > upperBound; + }); + } + + var redrawQueue = {}; + var redrawQueueLength = 0; + + for (var _i3 = 0; _i3 < visibleItems.length; _i3++) { + var _item = visibleItems[_i3]; + + if (!_item.displayed) { + var returnQueue = true; + redrawQueue[_i3] = _item.redraw(returnQueue); + redrawQueueLength = redrawQueue[_i3].length; + } + } + + var needRedraw = redrawQueueLength > 0; + + if (needRedraw) { + var _loop4 = function _loop4(j) { + forEach$3(util$2).call(util$2, redrawQueue, function (fns) { + fns[j](); + }); + }; + + // redraw all regular items + for (var j = 0; j < redrawQueueLength; j++) { + _loop4(j); + } + } + + for (var _i4 = 0; _i4 < visibleItems.length; _i4++) { + visibleItems[_i4].repositionX(); + } + + return visibleItems; + } + /** + * trace visible items in group + * @param {number} initialPos + * @param {array} items + * @param {aray} visibleItems + * @param {object} visibleItemsLookup + * @param {function} breakCondition + */ + + }, { + key: "_traceVisible", + value: function _traceVisible(initialPos, items, visibleItems, visibleItemsLookup, breakCondition) { + if (initialPos != -1) { + for (var i = initialPos; i >= 0; i--) { + var item = items[i]; + + if (breakCondition(item)) { + break; + } else { + if (!(item.isCluster && !item.hasItems()) && !item.cluster) { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } + } + } + + for (var _i5 = initialPos + 1; _i5 < items.length; _i5++) { + var _item2 = items[_i5]; + + if (breakCondition(_item2)) { + break; + } else { + if (!(_item2.isCluster && !_item2.hasItems()) && !_item2.cluster) { + if (visibleItemsLookup[_item2.id] === undefined) { + visibleItemsLookup[_item2.id] = true; + visibleItems.push(_item2); + } + } + } + } + } + } + /** + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array} visibleItems + * @param {{start:number, end:number}} range + * @private + */ + + }, { + key: "_checkIfVisible", + value: function _checkIfVisible(item, visibleItems, range) { + if (item.isVisible(range)) { + if (!item.displayed) item.show(); // reposition item horizontally + + item.repositionX(); + visibleItems.push(item); + } else { + if (item.displayed) item.hide(); + } + } + /** + * this function is very similar to the _checkIfInvisible() but it does not + * return booleans, hides the item if it should not be seen and always adds to + * the visibleItems. + * this one is for brute forcing and hiding. + * + * @param {Item} item + * @param {Array.} visibleItems + * @param {Object} visibleItemsLookup + * @param {{start:number, end:number}} range + * @private + */ + + }, { + key: "_checkIfVisibleWithReference", + value: function _checkIfVisibleWithReference(item, visibleItems, visibleItemsLookup, range) { + if (item.isVisible(range)) { + if (visibleItemsLookup[item.id] === undefined) { + visibleItemsLookup[item.id] = true; + visibleItems.push(item); + } + } else { + if (item.displayed) item.hide(); + } + } + /** + * Update the visible items + * @param {array} orderedClusters + * @param {array} oldVisibleClusters + * @param {{start: number, end: number}} range + * @return {Item[]} visibleItems + * @private + */ + + }, { + key: "_updateClustersInRange", + value: function _updateClustersInRange(orderedClusters, oldVisibleClusters, range) { + // Clusters can overlap each other so we cannot use binary search here + var visibleClusters = []; + var visibleClustersLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems + + if (oldVisibleClusters.length > 0) { + for (var i = 0; i < oldVisibleClusters.length; i++) { + this._checkIfVisibleWithReference(oldVisibleClusters[i], visibleClusters, visibleClustersLookup, range); + } + } + + for (var _i6 = 0; _i6 < orderedClusters.byStart.length; _i6++) { + this._checkIfVisibleWithReference(orderedClusters.byStart[_i6], visibleClusters, visibleClustersLookup, range); + } + + for (var _i7 = 0; _i7 < orderedClusters.byEnd.length; _i7++) { + this._checkIfVisibleWithReference(orderedClusters.byEnd[_i7], visibleClusters, visibleClustersLookup, range); + } + + var redrawQueue = {}; + var redrawQueueLength = 0; + + for (var _i8 = 0; _i8 < visibleClusters.length; _i8++) { + var item = visibleClusters[_i8]; + + if (!item.displayed) { + var returnQueue = true; + redrawQueue[_i8] = item.redraw(returnQueue); + redrawQueueLength = redrawQueue[_i8].length; + } + } + + var needRedraw = redrawQueueLength > 0; + + if (needRedraw) { + // redraw all regular items + for (var j = 0; j < redrawQueueLength; j++) { + forEach$3(util$2).call(util$2, redrawQueue, function (fns) { + fns[j](); + }); + } + } + + for (var _i9 = 0; _i9 < visibleClusters.length; _i9++) { + visibleClusters[_i9].repositionX(); + } + + return visibleClusters; + } + /** + * change item subgroup + * @param {object} item + * @param {string} oldSubgroup + * @param {string} newSubgroup + */ + + }, { + key: "changeSubgroup", + value: function changeSubgroup(item, oldSubgroup, newSubgroup) { + this._removeFromSubgroup(item, oldSubgroup); + + this._addToSubgroup(item, newSubgroup); + + this.orderSubgroups(); + } + }]); + + return Group; +}(); + +/** + * @constructor BackgroundGroup + * @extends Group + */ + +var BackgroundGroup = +/*#__PURE__*/ +function (_Group) { + inherits$1(BackgroundGroup, _Group); + + /** + * @param {number | string} groupId + * @param {Object} data + * @param {ItemSet} itemSet + */ + function BackgroundGroup(groupId, data, itemSet) { + var _this; + + classCallCheck$1(this, BackgroundGroup); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(BackgroundGroup).call(this, groupId, data, itemSet)); // Group.call(this, groupId, data, itemSet); + + _this.width = 0; + _this.height = 0; + _this.top = 0; + _this.left = 0; + return _this; + } + /** + * Repaint this group + * @param {{start: number, end: number}} range + * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin + * @param {boolean} [forceRestack=false] Force restacking of all items + * @return {boolean} Returns true if the group is resized + */ + + + createClass$1(BackgroundGroup, [{ + key: "redraw", + value: function redraw(range, margin, forceRestack) { + // eslint-disable-line no-unused-vars + var resized = false; + this.visibleItems = this._updateItemsInRange(this.orderedItems, this.visibleItems, range); // calculate actual size + + this.width = this.dom.background.offsetWidth; // apply new height (just always zero for BackgroundGroup + + this.dom.background.style.height = '0'; // update vertical position of items after they are re-stacked and the height of the group is calculated + + for (var i = 0, ii = this.visibleItems.length; i < ii; i++) { + var item = this.visibleItems[i]; + item.repositionY(margin); + } + + return resized; + } + /** + * Show this group: attach to the DOM + */ + + }, { + key: "show", + value: function show() { + if (!this.dom.background.parentNode) { + this.itemSet.dom.background.appendChild(this.dom.background); + } + } + }]); + + return BackgroundGroup; +}(Group); + +/** + * Item + */ + +var Item = +/*#__PURE__*/ +function () { + /** + * @constructor Item + * @param {Object} data Object containing (optional) parameters type, + * start, end, content, group, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} options Configuration options + * // TODO: describe available options + */ + function Item(data, conversion, options) { + var _context, + _this = this; + + classCallCheck$1(this, Item); + + this.id = null; + this.parent = null; + this.data = data; + this.dom = null; + this.conversion = conversion || {}; + this.defaultOptions = { + locales: locales, + locale: 'en' + }; + this.options = util$2.extend({}, this.defaultOptions, options); + this.options.locales = util$2.extend({}, locales, this.options.locales); + var defaultLocales = this.defaultOptions.locales[this.defaultOptions.locale]; + + forEach$3(_context = keys$3(this.options.locales)).call(_context, function (locale) { + _this.options.locales[locale] = util$2.extend({}, defaultLocales, _this.options.locales[locale]); + }); + + this.selected = false; + this.displayed = false; + this.groupShowing = true; + this.selectable = options && options.selectable || false; + this.dirty = true; + this.top = null; + this.right = null; + this.left = null; + this.width = null; + this.height = null; + this.setSelectability(data); + this.editable = null; + + this._updateEditStatus(); + } + /** + * Select current item + */ + + + createClass$1(Item, [{ + key: "select", + value: function select() { + if (this.selectable) { + this.selected = true; + this.dirty = true; + if (this.displayed) this.redraw(); + } + } + /** + * Unselect current item + */ + + }, { + key: "unselect", + value: function unselect() { + this.selected = false; + this.dirty = true; + if (this.displayed) this.redraw(); + } + /** + * Set data for the item. Existing data will be updated. The id should not + * be changed. When the item is displayed, it will be redrawn immediately. + * @param {Object} data + */ + + }, { + key: "setData", + value: function setData(data) { + var groupChanged = data.group != undefined && this.data.group != data.group; + + if (groupChanged && this.parent != null) { + this.parent.itemSet._moveToGroup(this, data.group); + } + + this.setSelectability(data); + + if (this.parent) { + this.parent.stackDirty = true; + } + + var subGroupChanged = data.subgroup != undefined && this.data.subgroup != data.subgroup; + + if (subGroupChanged && this.parent != null) { + this.parent.changeSubgroup(this, this.data.subgroup, data.subgroup); + } + + this.data = data; + + this._updateEditStatus(); + + this.dirty = true; + if (this.displayed) this.redraw(); + } + /** + * Set whether the item can be selected. + * Can only be set/unset if the timeline's `selectable` configuration option is `true`. + * @param {Object} data `data` from `constructor` and `setData` + */ + + }, { + key: "setSelectability", + value: function setSelectability(data) { + if (data) { + this.selectable = typeof data.selectable === 'undefined' ? true : Boolean(data.selectable); + } + } + /** + * Set a parent for the item + * @param {Group} parent + */ + + }, { + key: "setParent", + value: function setParent(parent) { + if (this.displayed) { + this.hide(); + this.parent = parent; + + if (this.parent) { + this.show(); + } + } else { + this.parent = parent; + } + } + /** + * Check whether this item is visible inside given range + * @param {timeline.Range} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + + }, { + key: "isVisible", + value: function isVisible(range) { + // eslint-disable-line no-unused-vars + return false; + } + /** + * Show the Item in the DOM (when not already visible) + * @return {Boolean} changed + */ + + }, { + key: "show", + value: function show() { + return false; + } + /** + * Hide the Item from the DOM (when visible) + * @return {Boolean} changed + */ + + }, { + key: "hide", + value: function hide() { + return false; + } + /** + * Repaint the item + */ + + }, { + key: "redraw", + value: function redraw() {} // should be implemented by the item + + /** + * Reposition the Item horizontally + */ + + }, { + key: "repositionX", + value: function repositionX() {} // should be implemented by the item + + /** + * Reposition the Item vertically + */ + + }, { + key: "repositionY", + value: function repositionY() {} // should be implemented by the item + + /** + * Repaint a drag area on the center of the item when the item is selected + * @protected + */ + + }, { + key: "_repaintDragCenter", + value: function _repaintDragCenter() { + if (this.selected && this.options.editable.updateTime && !this.dom.dragCenter) { + var _context2, _context3, _context4; + + var me = this; // create and show drag area + + var dragCenter = document.createElement('div'); + dragCenter.className = 'vis-drag-center'; + dragCenter.dragCenterItem = this; + this.hammerDragCenter = new Hammer$1(dragCenter); + this.hammerDragCenter.on('tap', function (event) { + me.parent.itemSet.body.emitter.emit('click', { + event: event, + item: me.id + }); + }); + this.hammerDragCenter.on('doubletap', function (event) { + event.stopPropagation(); + + me.parent.itemSet._onUpdateItem(me); + + me.parent.itemSet.body.emitter.emit('doubleClick', { + event: event, + item: me.id + }); + }); + this.hammerDragCenter.on('panstart', bind$2(_context2 = me.parent.itemSet._onDragStart).call(_context2, me.parent.itemSet)); + this.hammerDragCenter.on('panmove', bind$2(_context3 = me.parent.itemSet._onDrag).call(_context3, me.parent.itemSet)); + this.hammerDragCenter.on('panend', bind$2(_context4 = me.parent.itemSet._onDragEnd).call(_context4, me.parent.itemSet)); + + if (this.dom.box) { + if (this.dom.dragLeft) { + this.dom.box.insertBefore(dragCenter, this.dom.dragLeft); + } else { + this.dom.box.appendChild(dragCenter); + } + } else if (this.dom.point) { + this.dom.point.appendChild(dragCenter); + } + + this.dom.dragCenter = dragCenter; + } else if (!this.selected && this.dom.dragCenter) { + // delete drag area + if (this.dom.dragCenter.parentNode) { + this.dom.dragCenter.parentNode.removeChild(this.dom.dragCenter); + } + + this.dom.dragCenter = null; + + if (this.hammerDragCenter) { + this.hammerDragCenter.destroy(); + this.hammerDragCenter = null; + } + } + } + /** + * Repaint a delete button on the top right of the item when the item is selected + * @param {HTMLElement} anchor + * @protected + */ + + }, { + key: "_repaintDeleteButton", + value: function _repaintDeleteButton(anchor) { + var editable = (this.options.editable.overrideItems || this.editable == null) && this.options.editable.remove || !this.options.editable.overrideItems && this.editable != null && this.editable.remove; + + if (this.selected && editable && !this.dom.deleteButton) { + // create and show button + var me = this; + var deleteButton = document.createElement('div'); + + if (this.options.rtl) { + deleteButton.className = 'vis-delete-rtl'; + } else { + deleteButton.className = 'vis-delete'; + } + + var optionsLocale = this.options.locales[this.options.locale]; + + if (!optionsLocale) { + if (!this.warned) { + console.warn("WARNING: options.locales['".concat(this.options.locale, "'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization")); + this.warned = true; + } + + optionsLocale = this.options.locales['en']; // fall back on english when not available + } + + deleteButton.title = optionsLocale.deleteSelected; // TODO: be able to destroy the delete button + + this.hammerDeleteButton = new Hammer$1(deleteButton).on('tap', function (event) { + event.stopPropagation(); + me.parent.removeFromDataSet(me); + }); + anchor.appendChild(deleteButton); + this.dom.deleteButton = deleteButton; + } else if (!this.selected && this.dom.deleteButton) { + // remove button + if (this.dom.deleteButton.parentNode) { + this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton); + } + + this.dom.deleteButton = null; + + if (this.hammerDeleteButton) { + this.hammerDeleteButton.destroy(); + this.hammerDeleteButton = null; + } + } + } + /** + * Repaint a onChange tooltip on the top right of the item when the item is selected + * @param {HTMLElement} anchor + * @protected + */ + + }, { + key: "_repaintOnItemUpdateTimeTooltip", + value: function _repaintOnItemUpdateTimeTooltip(anchor) { + if (!this.options.tooltipOnItemUpdateTime) return; + var editable = (this.options.editable.updateTime || this.data.editable === true) && this.data.editable !== false; + + if (this.selected && editable && !this.dom.onItemUpdateTimeTooltip) { + var onItemUpdateTimeTooltip = document.createElement('div'); + onItemUpdateTimeTooltip.className = 'vis-onUpdateTime-tooltip'; + anchor.appendChild(onItemUpdateTimeTooltip); + this.dom.onItemUpdateTimeTooltip = onItemUpdateTimeTooltip; + } else if (!this.selected && this.dom.onItemUpdateTimeTooltip) { + // remove button + if (this.dom.onItemUpdateTimeTooltip.parentNode) { + this.dom.onItemUpdateTimeTooltip.parentNode.removeChild(this.dom.onItemUpdateTimeTooltip); + } + + this.dom.onItemUpdateTimeTooltip = null; + } // position onChange tooltip + + + if (this.dom.onItemUpdateTimeTooltip) { + // only show when editing + this.dom.onItemUpdateTimeTooltip.style.visibility = this.parent.itemSet.touchParams.itemIsDragging ? 'visible' : 'hidden'; // position relative to item's content + + this.dom.onItemUpdateTimeTooltip.style.transform = 'translateX(-50%)'; + this.dom.onItemUpdateTimeTooltip.style.left = '50%'; // position above or below the item depending on the item's position in the window + + var tooltipOffset = 50; // TODO: should be tooltip height (depends on template) + + var scrollTop = this.parent.itemSet.body.domProps.scrollTop; // TODO: this.top for orientation:true is actually the items distance from the bottom... + // (should be this.bottom) + + var itemDistanceFromTop; + + if (this.options.orientation.item == 'top') { + itemDistanceFromTop = this.top; + } else { + itemDistanceFromTop = this.parent.height - this.top - this.height; + } + + var isCloseToTop = itemDistanceFromTop + this.parent.top - tooltipOffset < -scrollTop; + + if (isCloseToTop) { + this.dom.onItemUpdateTimeTooltip.style.bottom = ""; + this.dom.onItemUpdateTimeTooltip.style.top = "".concat(this.height + 2, "px"); + } else { + this.dom.onItemUpdateTimeTooltip.style.top = ""; + this.dom.onItemUpdateTimeTooltip.style.bottom = "".concat(this.height + 2, "px"); + } // handle tooltip content + + + var content; + var templateFunction; + + if (this.options.tooltipOnItemUpdateTime && this.options.tooltipOnItemUpdateTime.template) { + var _context5; + + templateFunction = bind$2(_context5 = this.options.tooltipOnItemUpdateTime.template).call(_context5, this); + content = templateFunction(this.data); + } else { + content = "start: ".concat(moment$3(this.data.start).format('MM/DD/YYYY hh:mm')); + + if (this.data.end) { + content += "
end: ".concat(moment$3(this.data.end).format('MM/DD/YYYY hh:mm')); + } + } + + this.dom.onItemUpdateTimeTooltip.innerHTML = content; + } + } + /** + * get item data + * @return {object} + * @private + */ + + }, { + key: "_getItemData", + value: function _getItemData() { + return this.parent.itemSet.itemsData.get(this.id); + } + /** + * Set HTML contents for the item + * @param {Element} element HTML element to fill with the contents + * @private + */ + + }, { + key: "_updateContents", + value: function _updateContents(element) { + var content; + var changed; + var templateFunction; + var itemVisibleFrameContent; + var visibleFrameTemplateFunction; + + var itemData = this._getItemData(); // get a clone of the data from the dataset + + + var frameElement = this.dom.box || this.dom.point; + var itemVisibleFrameContentElement = frameElement.getElementsByClassName('vis-item-visible-frame')[0]; + + if (this.options.visibleFrameTemplate) { + var _context6; + + visibleFrameTemplateFunction = bind$2(_context6 = this.options.visibleFrameTemplate).call(_context6, this); + itemVisibleFrameContent = visibleFrameTemplateFunction(itemData, itemVisibleFrameContentElement); + } else { + itemVisibleFrameContent = ''; + } + + if (itemVisibleFrameContentElement) { + if (itemVisibleFrameContent instanceof Object && !(itemVisibleFrameContent instanceof Element)) { + visibleFrameTemplateFunction(itemData, itemVisibleFrameContentElement); + } else { + changed = this._contentToString(this.itemVisibleFrameContent) !== this._contentToString(itemVisibleFrameContent); + + if (changed) { + // only replace the content when changed + if (itemVisibleFrameContent instanceof Element) { + itemVisibleFrameContentElement.innerHTML = ''; + itemVisibleFrameContentElement.appendChild(itemVisibleFrameContent); + } else if (itemVisibleFrameContent != undefined) { + itemVisibleFrameContentElement.innerHTML = itemVisibleFrameContent; + } else { + if (!(this.data.type == 'background' && this.data.content === undefined)) { + throw new Error("Property \"content\" missing in item ".concat(this.id)); + } + } + + this.itemVisibleFrameContent = itemVisibleFrameContent; + } + } + } + + if (this.options.template) { + var _context7; + + templateFunction = bind$2(_context7 = this.options.template).call(_context7, this); + content = templateFunction(itemData, element, this.data); + } else { + content = this.data.content; + } + + if (content instanceof Object && !(content instanceof Element)) { + templateFunction(itemData, element); + } else { + changed = this._contentToString(this.content) !== this._contentToString(content); + + if (changed) { + // only replace the content when changed + if (content instanceof Element) { + element.innerHTML = ''; + element.appendChild(content); + } else if (content != undefined) { + element.innerHTML = content; + } else { + if (!(this.data.type == 'background' && this.data.content === undefined)) { + throw new Error("Property \"content\" missing in item ".concat(this.id)); + } + } + + this.content = content; + } + } + } + /** + * Process dataAttributes timeline option and set as data- attributes on dom.content + * @param {Element} element HTML element to which the attributes will be attached + * @private + */ + + }, { + key: "_updateDataAttributes", + value: function _updateDataAttributes(element) { + if (this.options.dataAttributes && this.options.dataAttributes.length > 0) { + var attributes = []; + + if (isArray$3(this.options.dataAttributes)) { + attributes = this.options.dataAttributes; + } else if (this.options.dataAttributes == 'all') { + attributes = keys$3(this.data); + } else { + return; + } + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = getIterator$2(attributes), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var name = _step.value; + var value = this.data[name]; + + if (value != null) { + element.setAttribute("data-".concat(name), value); + } else { + element.removeAttribute("data-".concat(name)); + } + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + } + } + /** + * Update custom styles of the element + * @param {Element} element + * @private + */ + + }, { + key: "_updateStyle", + value: function _updateStyle(element) { + // remove old styles + if (this.style) { + util$2.removeCssText(element, this.style); + this.style = null; + } // append new styles + + + if (this.data.style) { + util$2.addCssText(element, this.data.style); + this.style = this.data.style; + } + } + /** + * Stringify the items contents + * @param {string | Element | undefined} content + * @returns {string | undefined} + * @private + */ + + }, { + key: "_contentToString", + value: function _contentToString(content) { + if (typeof content === 'string') return content; + if (content && 'outerHTML' in content) return content.outerHTML; + return content; + } + /** + * Update the editability of this item. + */ + + }, { + key: "_updateEditStatus", + value: function _updateEditStatus() { + if (this.options) { + if (typeof this.options.editable === 'boolean') { + this.editable = { + updateTime: this.options.editable, + updateGroup: this.options.editable, + remove: this.options.editable + }; + } else if (_typeof_1$2(this.options.editable) === 'object') { + this.editable = {}; + util$2.selectiveExtend(['updateTime', 'updateGroup', 'remove'], this.editable, this.options.editable); + } + } // Item data overrides, except if options.editable.overrideItems is set. + + + if (!this.options || !this.options.editable || this.options.editable.overrideItems !== true) { + if (this.data) { + if (typeof this.data.editable === 'boolean') { + this.editable = { + updateTime: this.data.editable, + updateGroup: this.data.editable, + remove: this.data.editable + }; + } else if (_typeof_1$2(this.data.editable) === 'object') { + // TODO: in timeline.js 5.0, we should change this to not reset options from the timeline configuration. + // Basically just remove the next line... + this.editable = {}; + util$2.selectiveExtend(['updateTime', 'updateGroup', 'remove'], this.editable, this.data.editable); + } + } + } + } + /** + * Return the width of the item left from its start date + * @return {number} + */ + + }, { + key: "getWidthLeft", + value: function getWidthLeft() { + return 0; + } + /** + * Return the width of the item right from the max of its start and end date + * @return {number} + */ + + }, { + key: "getWidthRight", + value: function getWidthRight() { + return 0; + } + /** + * Return the title of the item + * @return {string | undefined} + */ + + }, { + key: "getTitle", + value: function getTitle() { + if (this.options.tooltip && this.options.tooltip.template) { + var _context8; + + var templateFunction = bind$2(_context8 = this.options.tooltip.template).call(_context8, this); + + return templateFunction(this._getItemData(), this.data); + } + + return this.data.title; + } + }]); + + return Item; +}(); + +Item.prototype.stack = true; + +/** + * @constructor BoxItem + * @extends Item + */ + +var BoxItem = +/*#__PURE__*/ +function (_Item) { + inherits$1(BoxItem, _Item); + + /** + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function BoxItem(data, conversion, options) { + var _this; + + classCallCheck$1(this, BoxItem); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(BoxItem).call(this, data, conversion, options)); + _this.props = { + dot: { + width: 0, + height: 0 + }, + line: { + width: 0, + height: 0 + } + }; // validate data + + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item ".concat(data)); + } + } + + return _this; + } + /** + * Check whether this item is visible inside given range + * @param {{start: number, end: number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + + + createClass$1(BoxItem, [{ + key: "isVisible", + value: function isVisible(range) { + if (this.cluster) { + return false; + } // determine visibility + + + var isVisible; + var align = this.data.align || this.options.align; + var widthInMs = this.width * range.getMillisecondsPerPixel(); + + if (align == 'right') { + isVisible = this.data.start.getTime() > range.start && this.data.start.getTime() - widthInMs < range.end; + } else if (align == 'left') { + isVisible = this.data.start.getTime() + widthInMs > range.start && this.data.start.getTime() < range.end; + } else { + // default or 'center' + isVisible = this.data.start.getTime() + widthInMs / 2 > range.start && this.data.start.getTime() - widthInMs / 2 < range.end; + } + + return isVisible; + } + /** + * create DOM element + * @private + */ + + }, { + key: "_createDomElement", + value: function _createDomElement() { + if (!this.dom) { + // create DOM + this.dom = {}; // create main box + + this.dom.box = document.createElement('DIV'); // contents box (inside the background box). used for making margins + + this.dom.content = document.createElement('DIV'); + this.dom.content.className = 'vis-item-content'; + this.dom.box.appendChild(this.dom.content); // line to axis + + this.dom.line = document.createElement('DIV'); + this.dom.line.className = 'vis-line'; // dot on axis + + this.dom.dot = document.createElement('DIV'); + this.dom.dot.className = 'vis-dot'; // attach this item as attribute + + this.dom.box['vis-item'] = this; + this.dirty = true; + } + } + /** + * append DOM element + * @private + */ + + }, { + key: "_appendDomElement", + value: function _appendDomElement() { + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + + if (!this.dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + if (!foreground) throw new Error('Cannot redraw item: parent has no foreground container element'); + foreground.appendChild(this.dom.box); + } + + if (!this.dom.line.parentNode) { + var background = this.parent.dom.background; + if (!background) throw new Error('Cannot redraw item: parent has no background container element'); + background.appendChild(this.dom.line); + } + + if (!this.dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw item: parent has no axis container element'); + axis.appendChild(this.dom.dot); + } + + this.displayed = true; + } + /** + * update dirty DOM element + * @private + */ + + }, { + key: "_updateDirtyDomComponents", + value: function _updateDirtyDomComponents() { + // An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + + this._updateDataAttributes(this.dom.box); + + this._updateStyle(this.dom.box); + + var editable = this.editable.updateTime || this.editable.updateGroup; // update class + + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + this.dom.box.className = "vis-item vis-box".concat(className); + this.dom.line.className = "vis-item vis-line".concat(className); + this.dom.dot.className = "vis-item vis-dot".concat(className); + } + } + /** + * get DOM components sizes + * @return {object} + * @private + */ + + }, { + key: "_getDomComponentsSizes", + value: function _getDomComponentsSizes() { + return { + previous: { + right: this.dom.box.style.right, + left: this.dom.box.style.left + }, + dot: { + height: this.dom.dot.offsetHeight, + width: this.dom.dot.offsetWidth + }, + line: { + width: this.dom.line.offsetWidth + }, + box: { + width: this.dom.box.offsetWidth, + height: this.dom.box.offsetHeight + } + }; + } + /** + * update DOM components sizes + * @param {object} sizes + * @private + */ + + }, { + key: "_updateDomComponentsSizes", + value: function _updateDomComponentsSizes(sizes) { + if (this.options.rtl) { + this.dom.box.style.right = "0px"; + } else { + this.dom.box.style.left = "0px"; + } // recalculate size + + + this.props.dot.height = sizes.dot.height; + this.props.dot.width = sizes.dot.width; + this.props.line.width = sizes.line.width; + this.width = sizes.box.width; + this.height = sizes.box.height; // restore previous position + + if (this.options.rtl) { + this.dom.box.style.right = sizes.previous.right; + } else { + this.dom.box.style.left = sizes.previous.left; + } + + this.dirty = false; + } + /** + * repaint DOM additionals + * @private + */ + + }, { + key: "_repaintDomAdditionals", + value: function _repaintDomAdditionals() { + this._repaintOnItemUpdateTimeTooltip(this.dom.box); + + this._repaintDragCenter(); + + this._repaintDeleteButton(this.dom.box); + } + /** + * Repaint the item + * @param {boolean} [returnQueue=false] return the queue + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "redraw", + value: function redraw(returnQueue) { + var _context, + _context2, + _context3, + _this2 = this, + _context5; + + var sizes; + var queue = [// create item DOM + bind$2(_context = this._createDomElement).call(_context, this), // append DOM to parent DOM + bind$2(_context2 = this._appendDomElement).call(_context2, this), // update dirty DOM + bind$2(_context3 = this._updateDirtyDomComponents).call(_context3, this), function () { + if (_this2.dirty) { + sizes = _this2._getDomComponentsSizes(); + } + }, function () { + if (_this2.dirty) { + var _context4; + + bind$2(_context4 = _this2._updateDomComponentsSizes).call(_context4, _this2)(sizes); + } + }, // repaint DOM additionals + bind$2(_context5 = this._repaintDomAdditionals).call(_context5, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "show", + value: function show(returnQueue) { + if (!this.displayed) { + return this.redraw(returnQueue); + } + } + /** + * Hide the item from the DOM (when visible) + */ + + }, { + key: "hide", + value: function hide() { + if (this.displayed) { + var dom = this.dom; + if (dom.box.parentNode) dom.box.remove(); + if (dom.line.parentNode) dom.line.remove(); + if (dom.dot.parentNode) dom.dot.remove(); + this.displayed = false; + } + } + /** + * Reposition the item XY + */ + + }, { + key: "repositionXY", + value: function repositionXY() { + var rtl = this.options.rtl; + + var repositionXY = function repositionXY(element, x, y) { + var _context6; + + var rtl = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; + if (x === undefined && y === undefined) return; // If rtl invert the number. + + var directionX = rtl ? x * -1 : x; //no y. translate x + + if (y === undefined) { + element.style.transform = "translateX(".concat(directionX, "px)"); + return; + } //no x. translate y + + + if (x === undefined) { + element.style.transform = "translateY(".concat(y, "px)"); + return; + } + + element.style.transform = concat$2(_context6 = "translate(".concat(directionX, "px, ")).call(_context6, y, "px)"); + }; + + repositionXY(this.dom.box, this.boxX, this.boxY, rtl); + repositionXY(this.dom.dot, this.dotX, this.dotY, rtl); + repositionXY(this.dom.line, this.lineX, this.lineY, rtl); + } + /** + * Reposition the item horizontally + * @Override + */ + + }, { + key: "repositionX", + value: function repositionX() { + var start = this.conversion.toScreen(this.data.start); + var align = this.data.align === undefined ? this.options.align : this.data.align; + var lineWidth = this.props.line.width; + var dotWidth = this.props.dot.width; + + if (align == 'right') { + // calculate right position of the box + this.boxX = start - this.width; + this.lineX = start - lineWidth; + this.dotX = start - lineWidth / 2 - dotWidth / 2; + } else if (align == 'left') { + // calculate left position of the box + this.boxX = start; + this.lineX = start; + this.dotX = start + lineWidth / 2 - dotWidth / 2; + } else { + // default or 'center' + this.boxX = start - this.width / 2; + this.lineX = this.options.rtl ? start - lineWidth : start - lineWidth / 2; + this.dotX = start - dotWidth / 2; + } + + if (this.options.rtl) this.right = this.boxX;else this.left = this.boxX; + this.repositionXY(); + } + /** + * Reposition the item vertically + * @Override + */ + + }, { + key: "repositionY", + value: function repositionY() { + var orientation = this.options.orientation.item; + var lineStyle = this.dom.line.style; + + if (orientation == 'top') { + var lineHeight = this.parent.top + this.top + 1; + this.boxY = this.top || 0; + lineStyle.height = "".concat(lineHeight, "px"); + lineStyle.bottom = ''; + lineStyle.top = '0'; + } else { + // orientation 'bottom' + var itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty + + var _lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + + this.boxY = this.parent.height - this.top - (this.height || 0); + lineStyle.height = "".concat(_lineHeight, "px"); + lineStyle.top = ''; + lineStyle.bottom = '0'; + } + + this.dotY = -this.props.dot.height / 2; + this.repositionXY(); + } + /** + * Return the width of the item left from its start date + * @return {number} + */ + + }, { + key: "getWidthLeft", + value: function getWidthLeft() { + return this.width / 2; + } + /** + * Return the width of the item right from its start date + * @return {number} + */ + + }, { + key: "getWidthRight", + value: function getWidthRight() { + return this.width / 2; + } + }]); + + return BoxItem; +}(Item); + +/** + * @constructor PointItem + * @extends Item + */ + +var PointItem = +/*#__PURE__*/ +function (_Item) { + inherits$1(PointItem, _Item); + + /** + * @param {Object} data Object containing parameters start + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe available options + */ + function PointItem(data, conversion, options) { + var _this; + + classCallCheck$1(this, PointItem); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(PointItem).call(this, data, conversion, options)); + _this.props = { + dot: { + top: 0, + width: 0, + height: 0 + }, + content: { + height: 0, + marginLeft: 0, + marginRight: 0 + } + }; // validate data + + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item ".concat(data)); + } + } + + return _this; + } + /** + * Check whether this item is visible inside given range + * @param {{start: number, end: number}} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + + + createClass$1(PointItem, [{ + key: "isVisible", + value: function isVisible(range) { + if (this.cluster) { + return false; + } // determine visibility + + + var widthInMs = this.width * range.getMillisecondsPerPixel(); + return this.data.start.getTime() + widthInMs > range.start && this.data.start < range.end; + } + /** + * create DOM element + * @private + */ + + }, { + key: "_createDomElement", + value: function _createDomElement() { + if (!this.dom) { + // create DOM + this.dom = {}; // background box + + this.dom.point = document.createElement('div'); // className is updated in redraw() + // contents box, right from the dot + + this.dom.content = document.createElement('div'); + this.dom.content.className = 'vis-item-content'; + this.dom.point.appendChild(this.dom.content); // dot at start + + this.dom.dot = document.createElement('div'); + this.dom.point.appendChild(this.dom.dot); // attach this item as attribute + + this.dom.point['vis-item'] = this; + this.dirty = true; + } + } + /** + * append DOM element + * @private + */ + + }, { + key: "_appendDomElement", + value: function _appendDomElement() { + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + + if (!this.dom.point.parentNode) { + var foreground = this.parent.dom.foreground; + + if (!foreground) { + throw new Error('Cannot redraw item: parent has no foreground container element'); + } + + foreground.appendChild(this.dom.point); + } + + this.displayed = true; + } + /** + * update dirty DOM components + * @private + */ + + }, { + key: "_updateDirtyDomComponents", + value: function _updateDirtyDomComponents() { + // An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + + this._updateDataAttributes(this.dom.point); + + this._updateStyle(this.dom.point); + + var editable = this.editable.updateTime || this.editable.updateGroup; // update class + + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + this.dom.point.className = "vis-item vis-point".concat(className); + this.dom.dot.className = "vis-item vis-dot".concat(className); + } + } + /** + * get DOM component sizes + * @return {object} + * @private + */ + + }, { + key: "_getDomComponentsSizes", + value: function _getDomComponentsSizes() { + return { + dot: { + width: this.dom.dot.offsetWidth, + height: this.dom.dot.offsetHeight + }, + content: { + width: this.dom.content.offsetWidth, + height: this.dom.content.offsetHeight + }, + point: { + width: this.dom.point.offsetWidth, + height: this.dom.point.offsetHeight + } + }; + } + /** + * update DOM components sizes + * @param {array} sizes + * @private + */ + + }, { + key: "_updateDomComponentsSizes", + value: function _updateDomComponentsSizes(sizes) { + // recalculate size of dot and contents + this.props.dot.width = sizes.dot.width; + this.props.dot.height = sizes.dot.height; + this.props.content.height = sizes.content.height; // resize contents + + if (this.options.rtl) { + this.dom.content.style.marginRight = "".concat(2 * this.props.dot.width, "px"); + } else { + this.dom.content.style.marginLeft = "".concat(2 * this.props.dot.width, "px"); + } //this.dom.content.style.marginRight = ... + 'px'; // TODO: margin right + // recalculate size + + + this.width = sizes.point.width; + this.height = sizes.point.height; // reposition the dot + + this.dom.dot.style.top = "".concat((this.height - this.props.dot.height) / 2, "px"); + var dotWidth = this.props.dot.width; + var translateX = this.options.rtl ? dotWidth / 2 * -1 : dotWidth / 2; + this.dom.dot.style.transform = "translateX(".concat(translateX, "px"); + this.dirty = false; + } + /** + * Repain DOM additionals + * @private + */ + + }, { + key: "_repaintDomAdditionals", + value: function _repaintDomAdditionals() { + this._repaintOnItemUpdateTimeTooltip(this.dom.point); + + this._repaintDragCenter(); + + this._repaintDeleteButton(this.dom.point); + } + /** + * Repaint the item + * @param {boolean} [returnQueue=false] return the queue + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "redraw", + value: function redraw(returnQueue) { + var _context, + _context2, + _context3, + _this2 = this, + _context5; + + var sizes; + var queue = [// create item DOM + bind$2(_context = this._createDomElement).call(_context, this), // append DOM to parent DOM + bind$2(_context2 = this._appendDomElement).call(_context2, this), // update dirty DOM + bind$2(_context3 = this._updateDirtyDomComponents).call(_context3, this), function () { + if (_this2.dirty) { + sizes = _this2._getDomComponentsSizes(); + } + }, function () { + if (_this2.dirty) { + var _context4; + + bind$2(_context4 = _this2._updateDomComponentsSizes).call(_context4, _this2)(sizes); + } + }, // repaint DOM additionals + bind$2(_context5 = this._repaintDomAdditionals).call(_context5, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * Reposition XY + */ + + }, { + key: "repositionXY", + value: function repositionXY() { + var rtl = this.options.rtl; + + var repositionXY = function repositionXY(element, x, y) { + var _context6; + + var rtl = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; + if (x === undefined && y === undefined) return; // If rtl invert the number. + + var directionX = rtl ? x * -1 : x; //no y. translate x + + if (y === undefined) { + element.style.transform = "translateX(".concat(directionX, "px)"); + return; + } //no x. translate y + + + if (x === undefined) { + element.style.transform = "translateY(".concat(y, "px)"); + return; + } + + element.style.transform = concat$2(_context6 = "translate(".concat(directionX, "px, ")).call(_context6, y, "px)"); + }; + + repositionXY(this.dom.point, this.pointX, this.pointY, rtl); + } + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "show", + value: function show(returnQueue) { + if (!this.displayed) { + return this.redraw(returnQueue); + } + } + /** + * Hide the item from the DOM (when visible) + */ + + }, { + key: "hide", + value: function hide() { + if (this.displayed) { + if (this.dom.point.parentNode) { + this.dom.point.parentNode.removeChild(this.dom.point); + } + + this.displayed = false; + } + } + /** + * Reposition the item horizontally + * @Override + */ + + }, { + key: "repositionX", + value: function repositionX() { + var start = this.conversion.toScreen(this.data.start); + this.pointX = start; + + if (this.options.rtl) { + this.right = start - this.props.dot.width; + } else { + this.left = start - this.props.dot.width; + } + + this.repositionXY(); + } + /** + * Reposition the item vertically + * @Override + */ + + }, { + key: "repositionY", + value: function repositionY() { + var orientation = this.options.orientation.item; + + if (orientation == 'top') { + this.pointY = this.top; + } else { + this.pointY = this.parent.height - this.top - this.height; + } + + this.repositionXY(); + } + /** + * Return the width of the item left from its start date + * @return {number} + */ + + }, { + key: "getWidthLeft", + value: function getWidthLeft() { + return this.props.dot.width; + } + /** + * Return the width of the item right from its start date + * @return {number} + */ + + }, { + key: "getWidthRight", + value: function getWidthRight() { + return this.props.dot.width; + } + }]); + + return PointItem; +}(Item); + +/** + * @constructor RangeItem + * @extends Item + */ + +var RangeItem = +/*#__PURE__*/ +function (_Item) { + inherits$1(RangeItem, _Item); + + /** + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options + */ + function RangeItem(data, conversion, options) { + var _this; + + classCallCheck$1(this, RangeItem); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(RangeItem).call(this, data, conversion, options)); + _this.props = { + content: { + width: 0 + } + }; + _this.overflow = false; // if contents can overflow (css styling), this flag is set to true + // validate data + + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item ".concat(data.id)); + } + + if (data.end == undefined) { + throw new Error("Property \"end\" missing in item ".concat(data.id)); + } + } + + return _this; + } + /** + * Check whether this item is visible inside given range + * + * @param {timeline.Range} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + + + createClass$1(RangeItem, [{ + key: "isVisible", + value: function isVisible(range) { + if (this.cluster) { + return false; + } // determine visibility + + + return this.data.start < range.end && this.data.end > range.start; + } + /** + * create DOM elements + * @private + */ + + }, { + key: "_createDomElement", + value: function _createDomElement() { + if (!this.dom) { + // create DOM + this.dom = {}; // background box + + this.dom.box = document.createElement('div'); // className is updated in redraw() + // frame box (to prevent the item contents from overflowing) + + this.dom.frame = document.createElement('div'); + this.dom.frame.className = 'vis-item-overflow'; + this.dom.box.appendChild(this.dom.frame); // visible frame box (showing the frame that is always visible) + + this.dom.visibleFrame = document.createElement('div'); + this.dom.visibleFrame.className = 'vis-item-visible-frame'; + this.dom.box.appendChild(this.dom.visibleFrame); // contents box + + this.dom.content = document.createElement('div'); + this.dom.content.className = 'vis-item-content'; + this.dom.frame.appendChild(this.dom.content); // attach this item as attribute + + this.dom.box['vis-item'] = this; + this.dirty = true; + } + } + /** + * append element to DOM + * @private + */ + + }, { + key: "_appendDomElement", + value: function _appendDomElement() { + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + + if (!this.dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + + if (!foreground) { + throw new Error('Cannot redraw item: parent has no foreground container element'); + } + + foreground.appendChild(this.dom.box); + } + + this.displayed = true; + } + /** + * update dirty DOM components + * @private + */ + + }, { + key: "_updateDirtyDomComponents", + value: function _updateDirtyDomComponents() { + // update dirty DOM. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + + this._updateDataAttributes(this.dom.box); + + this._updateStyle(this.dom.box); + + var editable = this.editable.updateTime || this.editable.updateGroup; // update class + + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + (editable ? ' vis-editable' : ' vis-readonly'); + this.dom.box.className = this.baseClassName + className; // turn off max-width to be able to calculate the real width + // this causes an extra browser repaint/reflow, but so be it + + this.dom.content.style.maxWidth = 'none'; + } + } + /** + * get DOM component sizes + * @return {object} + * @private + */ + + }, { + key: "_getDomComponentsSizes", + value: function _getDomComponentsSizes() { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(this.dom.frame).overflow !== 'hidden'; + this.whiteSpace = window.getComputedStyle(this.dom.content).whiteSpace !== 'nowrap'; + return { + content: { + width: this.dom.content.offsetWidth + }, + box: { + height: this.dom.box.offsetHeight + } + }; + } + /** + * update DOM component sizes + * @param {array} sizes + * @private + */ + + }, { + key: "_updateDomComponentsSizes", + value: function _updateDomComponentsSizes(sizes) { + this.props.content.width = sizes.content.width; + this.height = sizes.box.height; + this.dom.content.style.maxWidth = ''; + this.dirty = false; + } + /** + * repaint DOM additional components + * @private + */ + + }, { + key: "_repaintDomAdditionals", + value: function _repaintDomAdditionals() { + this._repaintOnItemUpdateTimeTooltip(this.dom.box); + + this._repaintDeleteButton(this.dom.box); + + this._repaintDragCenter(); + + this._repaintDragLeft(); + + this._repaintDragRight(); + } + /** + * Repaint the item + * @param {boolean} [returnQueue=false] return the queue + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "redraw", + value: function redraw(returnQueue) { + var _context, + _context2, + _context3, + _this2 = this, + _context6; + + var sizes; + var queue = [// create item DOM + bind$2(_context = this._createDomElement).call(_context, this), // append DOM to parent DOM + bind$2(_context2 = this._appendDomElement).call(_context2, this), // update dirty DOM + bind$2(_context3 = this._updateDirtyDomComponents).call(_context3, this), function () { + if (_this2.dirty) { + var _context4; + + sizes = bind$2(_context4 = _this2._getDomComponentsSizes).call(_context4, _this2)(); + } + }, function () { + if (_this2.dirty) { + var _context5; + + bind$2(_context5 = _this2._updateDomComponentsSizes).call(_context5, _this2)(sizes); + } + }, // repaint DOM additionals + bind$2(_context6 = this._repaintDomAdditionals).call(_context6, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them + * @return {boolean} the redraw queue if returnQueue=true + */ + + }, { + key: "show", + value: function show(returnQueue) { + if (!this.displayed) { + return this.redraw(returnQueue); + } + } + /** + * Hide the item from the DOM (when visible) + */ + + }, { + key: "hide", + value: function hide() { + if (this.displayed) { + var box = this.dom.box; + + if (box.parentNode) { + box.parentNode.removeChild(box); + } + + this.displayed = false; + } + } + /** + * Reposition the item horizontally + * @param {boolean} [limitSize=true] If true (default), the width of the range + * item will be limited, as the browser cannot + * display very wide divs. This means though + * that the applied left and width may + * not correspond to the ranges start and end + * @Override + */ + + }, { + key: "repositionX", + value: function repositionX(limitSize) { + var parentWidth = this.parent.width; + var start = this.conversion.toScreen(this.data.start); + var end = this.conversion.toScreen(this.data.end); + var align = this.data.align === undefined ? this.options.align : this.data.align; + var contentStartPosition; + var contentWidth; // limit the width of the range, as browsers cannot draw very wide divs + // unless limitSize: false is explicitly set in item data + + if (this.data.limitSize !== false && (limitSize === undefined || limitSize === true)) { + if (start < -parentWidth) { + start = -parentWidth; + } + + if (end > 2 * parentWidth) { + end = 2 * parentWidth; + } + } //round to 3 decimals to compensate floating-point values rounding + + + var boxWidth = Math.max(Math.round((end - start) * 1000) / 1000, 1); + + if (this.overflow) { + if (this.options.rtl) { + this.right = start; + } else { + this.left = start; + } + + this.width = boxWidth + this.props.content.width; + contentWidth = this.props.content.width; // Note: The calculation of width is an optimistic calculation, giving + // a width which will not change when moving the Timeline + // So no re-stacking needed, which is nicer for the eye; + } else { + if (this.options.rtl) { + this.right = start; + } else { + this.left = start; + } + + this.width = boxWidth; + contentWidth = Math.min(end - start, this.props.content.width); + } + + if (this.options.rtl) { + this.dom.box.style.transform = "translateX(".concat(this.right * -1, "px)"); + } else { + this.dom.box.style.transform = "translateX(".concat(this.left, "px)"); + } + + this.dom.box.style.width = "".concat(boxWidth, "px"); + + if (this.whiteSpace) { + this.height = this.dom.box.offsetHeight; + } + + switch (align) { + case 'left': + this.dom.content.style.transform = 'translateX(0)'; + break; + + case 'right': + if (this.options.rtl) { + var translateX = Math.max(boxWidth - contentWidth, 0) * -1; + this.dom.content.style.transform = "translateX(".concat(translateX, "px)"); + } else { + this.dom.content.style.transform = "translateX(".concat(Math.max(boxWidth - contentWidth, 0), "px)"); + } + + break; + + case 'center': + if (this.options.rtl) { + var _translateX = Math.max((boxWidth - contentWidth) / 2, 0) * -1; + + this.dom.content.style.transform = "translateX(".concat(_translateX, "px)"); + } else { + this.dom.content.style.transform = "translateX(".concat(Math.max((boxWidth - contentWidth) / 2, 0), "px)"); + } + + break; + + default: + // 'auto' + // when range exceeds left of the window, position the contents at the left of the visible area + if (this.overflow) { + if (end > 0) { + contentStartPosition = Math.max(-start, 0); + } else { + contentStartPosition = -contentWidth; // ensure it's not visible anymore + } + } else { + if (start < 0) { + contentStartPosition = -start; + } else { + contentStartPosition = 0; + } + } + + if (this.options.rtl) { + var _translateX2 = contentStartPosition * -1; + + this.dom.content.style.transform = "translateX(".concat(_translateX2, "px)"); + } else { + this.dom.content.style.transform = "translateX(".concat(contentStartPosition, "px)"); // this.dom.content.style.width = `calc(100% - ${contentStartPosition}px)`; + } + + } + } + /** + * Reposition the item vertically + * @Override + */ + + }, { + key: "repositionY", + value: function repositionY() { + var orientation = this.options.orientation.item; + var box = this.dom.box; + + if (orientation == 'top') { + box.style.top = "".concat(this.top, "px"); + } else { + box.style.top = "".concat(this.parent.height - this.top - this.height, "px"); + } + } + /** + * Repaint a drag area on the left side of the range when the range is selected + * @protected + */ + + }, { + key: "_repaintDragLeft", + value: function _repaintDragLeft() { + if ((this.selected || this.options.itemsAlwaysDraggable.range) && this.options.editable.updateTime && !this.dom.dragLeft) { + // create and show drag area + var dragLeft = document.createElement('div'); + dragLeft.className = 'vis-drag-left'; + dragLeft.dragLeftItem = this; + this.dom.box.appendChild(dragLeft); + this.dom.dragLeft = dragLeft; + } else if (!this.selected && !this.options.itemsAlwaysDraggable.range && this.dom.dragLeft) { + // delete drag area + if (this.dom.dragLeft.parentNode) { + this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft); + } + + this.dom.dragLeft = null; + } + } + /** + * Repaint a drag area on the right side of the range when the range is selected + * @protected + */ + + }, { + key: "_repaintDragRight", + value: function _repaintDragRight() { + if ((this.selected || this.options.itemsAlwaysDraggable.range) && this.options.editable.updateTime && !this.dom.dragRight) { + // create and show drag area + var dragRight = document.createElement('div'); + dragRight.className = 'vis-drag-right'; + dragRight.dragRightItem = this; + this.dom.box.appendChild(dragRight); + this.dom.dragRight = dragRight; + } else if (!this.selected && !this.options.itemsAlwaysDraggable.range && this.dom.dragRight) { + // delete drag area + if (this.dom.dragRight.parentNode) { + this.dom.dragRight.parentNode.removeChild(this.dom.dragRight); + } + + this.dom.dragRight = null; + } + } + }]); + + return RangeItem; +}(Item); + +RangeItem.prototype.baseClassName = 'vis-item vis-range'; + +/** + * @constructor BackgroundItem + * @extends Item + */ + +var BackgroundItem = +/*#__PURE__*/ +function (_Item) { + inherits$1(BackgroundItem, _Item); + + /** + * @constructor BackgroundItem + * @param {Object} data Object containing parameters start, end + * content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * // TODO: describe options + * // TODO: implement support for the BackgroundItem just having a start, then being displayed as a sort of an annotation + */ + function BackgroundItem(data, conversion, options) { + var _this; + + classCallCheck$1(this, BackgroundItem); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(BackgroundItem).call(this, data, conversion, options)); + _this.props = { + content: { + width: 0 + } + }; + _this.overflow = false; // if contents can overflow (css styling), this flag is set to true + // validate data + + if (data) { + if (data.start == undefined) { + throw new Error("Property \"start\" missing in item ".concat(data.id)); + } + + if (data.end == undefined) { + throw new Error("Property \"end\" missing in item ".concat(data.id)); + } + } + + return _this; + } + /** + * Check whether this item is visible inside given range + * @param {timeline.Range} range with a timestamp for start and end + * @returns {boolean} True if visible + */ + + + createClass$1(BackgroundItem, [{ + key: "isVisible", + value: function isVisible(range) { + // determine visibility + return this.data.start < range.end && this.data.end > range.start; + } + /** + * create DOM element + * @private + */ + + }, { + key: "_createDomElement", + value: function _createDomElement() { + if (!this.dom) { + // create DOM + this.dom = {}; // background box + + this.dom.box = document.createElement('div'); // className is updated in redraw() + // frame box (to prevent the item contents from overflowing + + this.dom.frame = document.createElement('div'); + this.dom.frame.className = 'vis-item-overflow'; + this.dom.box.appendChild(this.dom.frame); // contents box + + this.dom.content = document.createElement('div'); + this.dom.content.className = 'vis-item-content'; + this.dom.frame.appendChild(this.dom.content); // Note: we do NOT attach this item as attribute to the DOM, + // such that background items cannot be selected + //this.dom.box['vis-item'] = this; + + this.dirty = true; + } + } + /** + * append DOM element + * @private + */ + + }, { + key: "_appendDomElement", + value: function _appendDomElement() { + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + + if (!this.dom.box.parentNode) { + var background = this.parent.dom.background; + + if (!background) { + throw new Error('Cannot redraw item: parent has no background container element'); + } + + background.appendChild(this.dom.box); + } + + this.displayed = true; + } + /** + * update DOM Dirty components + * @private + */ + + }, { + key: "_updateDirtyDomComponents", + value: function _updateDirtyDomComponents() { + // update dirty DOM. An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + + this._updateDataAttributes(this.dom.content); + + this._updateStyle(this.dom.box); // update class + + + var className = (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : ''); + this.dom.box.className = this.baseClassName + className; + } + } + /** + * get DOM components sizes + * @return {object} + * @private + */ + + }, { + key: "_getDomComponentsSizes", + value: function _getDomComponentsSizes() { + // determine from css whether this box has overflow + this.overflow = window.getComputedStyle(this.dom.content).overflow !== 'hidden'; + return { + content: { + width: this.dom.content.offsetWidth + } + }; + } + /** + * update DOM components sizes + * @param {object} sizes + * @private + */ + + }, { + key: "_updateDomComponentsSizes", + value: function _updateDomComponentsSizes(sizes) { + // recalculate size + this.props.content.width = sizes.content.width; + this.height = 0; // set height zero, so this item will be ignored when stacking items + + this.dirty = false; + } + /** + * repaint DOM additionals + * @private + */ + + }, { + key: "_repaintDomAdditionals", + value: function _repaintDomAdditionals() {} + /** + * Repaint the item + * @param {boolean} [returnQueue=false] return the queue + * @return {boolean} the redraw result or the redraw queue if returnQueue=true + */ + + }, { + key: "redraw", + value: function redraw(returnQueue) { + var _context, + _context2, + _context3, + _this2 = this, + _context6; + + var sizes; + var queue = [// create item DOM + bind$2(_context = this._createDomElement).call(_context, this), // append DOM to parent DOM + bind$2(_context2 = this._appendDomElement).call(_context2, this), bind$2(_context3 = this._updateDirtyDomComponents).call(_context3, this), function () { + if (_this2.dirty) { + var _context4; + + sizes = bind$2(_context4 = _this2._getDomComponentsSizes).call(_context4, _this2)(); + } + }, function () { + if (_this2.dirty) { + var _context5; + + bind$2(_context5 = _this2._updateDomComponentsSizes).call(_context5, _this2)(sizes); + } + }, // repaint DOM additionals + bind$2(_context6 = this._repaintDomAdditionals).call(_context6, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * Reposition the item vertically + * @Override + */ + + }, { + key: "repositionY", + value: function repositionY(margin) { + // eslint-disable-line no-unused-vars + var height; + var orientation = this.options.orientation.item; // special positioning for subgroups + + if (this.data.subgroup !== undefined) { + // TODO: instead of calculating the top position of the subgroups here for every BackgroundItem, calculate the top of the subgroup once in Itemset + var itemSubgroup = this.data.subgroup; + this.dom.box.style.height = "".concat(this.parent.subgroups[itemSubgroup].height, "px"); + + if (orientation == 'top') { + this.dom.box.style.top = "".concat(this.parent.top + this.parent.subgroups[itemSubgroup].top, "px"); + } else { + this.dom.box.style.top = "".concat(this.parent.top + this.parent.height - this.parent.subgroups[itemSubgroup].top - this.parent.subgroups[itemSubgroup].height, "px"); + } + + this.dom.box.style.bottom = ''; + } // and in the case of no subgroups: + else { + // we want backgrounds with groups to only show in groups. + if (this.parent instanceof BackgroundGroup) { + // if the item is not in a group: + height = Math.max(this.parent.height, this.parent.itemSet.body.domProps.center.height, this.parent.itemSet.body.domProps.centerContainer.height); + this.dom.box.style.bottom = orientation == 'bottom' ? '0' : ''; + this.dom.box.style.top = orientation == 'top' ? '0' : ''; + } else { + height = this.parent.height; // same alignment for items when orientation is top or bottom + + this.dom.box.style.top = "".concat(this.parent.top, "px"); + this.dom.box.style.bottom = ''; + } + } + + this.dom.box.style.height = "".concat(height, "px"); + } + }]); + + return BackgroundItem; +}(Item); + +BackgroundItem.prototype.baseClassName = 'vis-item vis-background'; +BackgroundItem.prototype.stack = false; +/** + * Show the item in the DOM (when not already visible). The items DOM will + * be created when needed. + */ + +BackgroundItem.prototype.show = RangeItem.prototype.show; +/** + * Hide the item from the DOM (when visible) + * @return {Boolean} changed + */ + +BackgroundItem.prototype.hide = RangeItem.prototype.hide; +/** + * Reposition the item horizontally + * @Override + */ + +BackgroundItem.prototype.repositionX = RangeItem.prototype.repositionX; + +/** + * Popup is a class to create a popup window with some text + */ + +var Popup = +/*#__PURE__*/ +function () { + /** + * @param {Element} container The container object. + * @param {string} overflowMethod How the popup should act to overflowing ('flip', 'cap' or 'none') + */ + function Popup(container, overflowMethod) { + classCallCheck$1(this, Popup); + + this.container = container; + this.overflowMethod = overflowMethod || 'cap'; + this.x = 0; + this.y = 0; + this.padding = 5; + this.hidden = false; // create the frame + + this.frame = document.createElement('div'); + this.frame.className = 'vis-tooltip'; + this.container.appendChild(this.frame); + } + /** + * @param {number} x Horizontal position of the popup window + * @param {number} y Vertical position of the popup window + */ + + + createClass$1(Popup, [{ + key: "setPosition", + value: function setPosition(x, y) { + this.x = _parseInt$3(x); + this.y = _parseInt$3(y); + } + /** + * Set the content for the popup window. This can be HTML code or text. + * @param {string | Element} content + */ + + }, { + key: "setText", + value: function setText(content) { + if (content instanceof Element) { + this.frame.innerHTML = ''; + this.frame.appendChild(content); + } else { + this.frame.innerHTML = content; // string containing text or HTML + } + } + /** + * Show the popup window + * @param {boolean} [doShow] Show or hide the window + */ + + }, { + key: "show", + value: function show(doShow) { + if (doShow === undefined) { + doShow = true; + } + + if (doShow === true) { + var height = this.frame.clientHeight; + var width = this.frame.clientWidth; + var maxHeight = this.frame.parentNode.clientHeight; + var maxWidth = this.frame.parentNode.clientWidth; + var left = 0, + top = 0; + + if (this.overflowMethod == 'flip' || this.overflowMethod == 'none') { + var isLeft = false, + isTop = true; // Where around the position it's located + + if (this.overflowMethod == 'flip') { + if (this.y - height < this.padding) { + isTop = false; + } + + if (this.x + width > maxWidth - this.padding) { + isLeft = true; + } + } + + if (isLeft) { + left = this.x - width; + } else { + left = this.x; + } + + if (isTop) { + top = this.y - height; + } else { + top = this.y; + } + } else { + // this.overflowMethod == 'cap' + top = this.y - height; + + if (top + height + this.padding > maxHeight) { + top = maxHeight - height - this.padding; + } + + if (top < this.padding) { + top = this.padding; + } + + left = this.x; + + if (left + width + this.padding > maxWidth) { + left = maxWidth - width - this.padding; + } + + if (left < this.padding) { + left = this.padding; + } + } + + this.frame.style.left = left + "px"; + this.frame.style.top = top + "px"; + this.frame.style.visibility = "visible"; + this.hidden = false; + } else { + this.hide(); + } + } + /** + * Hide the popup window + */ + + }, { + key: "hide", + value: function hide() { + this.hidden = true; + this.frame.style.left = "0"; + this.frame.style.top = "0"; + this.frame.style.visibility = "hidden"; + } + /** + * Remove the popup window + */ + + }, { + key: "destroy", + value: function destroy() { + this.frame.parentNode.removeChild(this.frame); // Remove element from DOM + } + }]); + + return Popup; +}(); + +var $every = arrayIteration.every; // `Array.prototype.every` method +// https://tc39.github.io/ecma262/#sec-array.prototype.every + +_export({ + target: 'Array', + proto: true, + forced: sloppyArrayMethod('every') +}, { + every: function every(callbackfn + /* , thisArg */ + ) { + return $every(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var every = entryVirtual('Array').every; + +var ArrayPrototype$c = Array.prototype; + +var every_1 = function (it) { + var own = it.every; + return it === ArrayPrototype$c || it instanceof Array && own === ArrayPrototype$c.every ? every : own; +}; + +var every$1 = every_1; + +var every$2 = every$1; + +var propertyIsEnumerable = objectPropertyIsEnumerable.f; // `Object.{ entries, values }` methods implementation + +var createMethod$4 = function (TO_ENTRIES) { + return function (it) { + var O = toIndexedObject(it); + var keys = objectKeys(O); + var length = keys.length; + var i = 0; + var result = []; + var key; + + while (length > i) { + key = keys[i++]; + + if (!descriptors || propertyIsEnumerable.call(O, key)) { + result.push(TO_ENTRIES ? [key, O[key]] : O[key]); + } + } + + return result; + }; +}; + +var objectToArray = { + // `Object.entries` method + // https://tc39.github.io/ecma262/#sec-object.entries + entries: createMethod$4(true), + // `Object.values` method + // https://tc39.github.io/ecma262/#sec-object.values + values: createMethod$4(false) +}; + +var $values = objectToArray.values; // `Object.values` method +// https://tc39.github.io/ecma262/#sec-object.values + +_export({ + target: 'Object', + stat: true +}, { + values: function values(O) { + return $values(O); + } +}); + +var values = path.Object.values; + +var values$1 = values; + +var values$2 = values$1; + +var createMethod$5 = function (IS_RIGHT) { + return function (that, callbackfn, argumentsLength, memo) { + aFunction(callbackfn); + var O = toObject(that); + var self = indexedObject(O); + var length = toLength(O.length); + var index = IS_RIGHT ? length - 1 : 0; + var i = IS_RIGHT ? -1 : 1; + if (argumentsLength < 2) while (true) { + if (index in self) { + memo = self[index]; + index += i; + break; + } + + index += i; + + if (IS_RIGHT ? index < 0 : length <= index) { + throw TypeError('Reduce of empty array with no initial value'); + } + } + + for (; IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) { + memo = callbackfn(memo, self[index], index, O); + } + + return memo; + }; +}; + +var arrayReduce = { + // `Array.prototype.reduce` method + // https://tc39.github.io/ecma262/#sec-array.prototype.reduce + left: createMethod$5(false), + // `Array.prototype.reduceRight` method + // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright + right: createMethod$5(true) +}; + +var $reduce = arrayReduce.left; // `Array.prototype.reduce` method +// https://tc39.github.io/ecma262/#sec-array.prototype.reduce + +_export({ + target: 'Array', + proto: true, + forced: sloppyArrayMethod('reduce') +}, { + reduce: function reduce(callbackfn + /* , initialValue */ + ) { + return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined); + } +}); + +var reduce = entryVirtual('Array').reduce; + +var ArrayPrototype$d = Array.prototype; + +var reduce_1 = function (it) { + var own = it.reduce; + return it === ArrayPrototype$d || it instanceof Array && own === ArrayPrototype$d.reduce ? reduce : own; +}; + +var reduce$1 = reduce_1; + +var reduce$2 = reduce$1; + +/** + * ClusterItem + */ + +var ClusterItem = +/*#__PURE__*/ +function (_Item) { + inherits$1(ClusterItem, _Item); + + /** + * @constructor Item + * @param {Object} data Object containing (optional) parameters type, + * start, end, content, group, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} options Configuration options + * // TODO: describe available options + */ + function ClusterItem(data, conversion, options) { + var _this; + + classCallCheck$1(this, ClusterItem); + + var modifiedOptions = assign$4({}, { + fitOnDoubleClick: true + }, options, { + editable: false + }); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(ClusterItem).call(this, data, conversion, modifiedOptions)); + _this.props = { + content: { + width: 0, + height: 0 + } + }; + + if (!data || data.uiItems == undefined) { + throw new Error('Property "uiItems" missing in item ' + data.id); + } + + _this.id = util$2.randomUUID(); + _this.group = data.group; + + _this._setupRange(); + + _this.emitter = _this.data.eventEmitter; + _this.range = _this.data.range; + _this.attached = false; + _this.isCluster = true; + _this.data.isCluster = true; + return _this; + } + /** + * check if there are items + * @return {boolean} + */ + + + createClass$1(ClusterItem, [{ + key: "hasItems", + value: function hasItems() { + return this.data.uiItems && this.data.uiItems.length && this.attached; + } + /** + * set UI items + * @param {array} items + */ + + }, { + key: "setUiItems", + value: function setUiItems(items) { + this.detach(); + this.data.uiItems = items; + + this._setupRange(); + + this.attach(); + } + /** + * check is visible + * @param {object} range + * @return {boolean} + */ + + }, { + key: "isVisible", + value: function isVisible(range) { + var rangeWidth = this.data.end ? this.data.end - this.data.start : 0; + var widthInMs = this.width * range.getMillisecondsPerPixel(); + var end = Math.max(rangeWidth, this.data.start.getTime() + widthInMs); + return this.data.start < range.end && end > range.start && this.hasItems(); + } + /** + * get cluster data + * @return {object} + */ + + }, { + key: "getData", + value: function getData() { + return { + isCluster: true, + id: this.id, + items: this.data.items || [], + data: this.data + }; + } + /** + * redraw cluster item + * @param {boolean} returnQueue + * @return {boolean} + */ + + }, { + key: "redraw", + value: function redraw(returnQueue) { + var _context, _context2, _context3, _context4, _context5, _context7; + + var sizes; + var queue = [// create item DOM + bind$2(_context = this._createDomElement).call(_context, this), // append DOM to parent DOM + bind$2(_context2 = this._appendDomElement).call(_context2, this), // update dirty DOM + bind$2(_context3 = this._updateDirtyDomComponents).call(_context3, this), bind$2(_context4 = function _context4() { + if (this.dirty) { + sizes = this._getDomComponentsSizes(); + } + }).call(_context4, this), bind$2(_context5 = function _context5() { + if (this.dirty) { + var _context6; + + bind$2(_context6 = this._updateDomComponentsSizes).call(_context6, this)(sizes); + } + }).call(_context5, this), // repaint DOM additionals + bind$2(_context7 = this._repaintDomAdditionals).call(_context7, this)]; + + if (returnQueue) { + return queue; + } else { + var result; + + forEach$3(queue).call(queue, function (fn) { + result = fn(); + }); + + return result; + } + } + /** + * show cluster item + */ + + }, { + key: "show", + value: function show() { + if (!this.displayed) { + this.redraw(); + } + } + /** + * Hide the item from the DOM (when visible) + */ + + }, { + key: "hide", + value: function hide() { + if (this.displayed) { + var dom = this.dom; + + if (dom.box.parentNode) { + dom.box.parentNode.removeChild(dom.box); + } + + if (this.options.showStipes) { + if (dom.line.parentNode) { + dom.line.parentNode.removeChild(dom.line); + } + + if (dom.dot.parentNode) { + dom.dot.parentNode.removeChild(dom.dot); + } + } + + this.displayed = false; + } + } + /** + * reposition item x axis + */ + + }, { + key: "repositionX", + value: function repositionX() { + var start = this.conversion.toScreen(this.data.start); + var end = this.data.end ? this.conversion.toScreen(this.data.end) : 0; + + if (end) { + this.repositionXWithRanges(start, end); + } else { + var align = this.data.align === undefined ? this.options.align : this.data.align; + this.repositionXWithoutRanges(start, align); + } + + if (this.options.showStipes) { + this.dom.line.style.display = this._isStipeVisible() ? 'block' : 'none'; + this.dom.dot.style.display = this._isStipeVisible() ? 'block' : 'none'; + + if (this._isStipeVisible()) { + this.repositionStype(start, end); + } + } + } + /** + * reposition item stype + * @param {date} start + * @param {date} end + */ + + }, { + key: "repositionStype", + value: function repositionStype(start, end) { + this.dom.line.style.display = 'block'; + this.dom.dot.style.display = 'block'; + var lineOffsetWidth = this.dom.line.offsetWidth; + var dotOffsetWidth = this.dom.dot.offsetWidth; + + if (end) { + var lineOffset = lineOffsetWidth + start + (end - start) / 2; + var dotOffset = lineOffset - dotOffsetWidth / 2; + var lineOffsetDirection = this.options.rtl ? lineOffset * -1 : lineOffset; + var dotOffsetDirection = this.options.rtl ? dotOffset * -1 : dotOffset; + this.dom.line.style.transform = "translateX(".concat(lineOffsetDirection, ")px"); + this.dom.dot.style.transform = "translateX(".concat(dotOffsetDirection, "px)"); + } else { + var _lineOffsetDirection = this.options.rtl ? start * -1 : start; + + var _dotOffsetDirection = this.options.rtl ? (start - dotOffsetWidth / 2) * -1 : start - dotOffsetWidth / 2; + + this.dom.line.style.transform = "".concat(_lineOffsetDirection, "px"); + this.dom.dot.style.transform = "".concat(_dotOffsetDirection, "px"); + } + } + /** + * reposition x without ranges + * @param {date} start + * @param {string} align + */ + + }, { + key: "repositionXWithoutRanges", + value: function repositionXWithoutRanges(start, align) { + // calculate left position of the box + if (align == 'right') { + if (this.options.rtl) { + this.right = start - this.width; // reposition box, line, and dot + + this.dom.box.style.right = this.right + 'px'; + } else { + this.left = start - this.width; // reposition box, line, and dot + + this.dom.box.style.left = this.left + 'px'; + } + } else if (align == 'left') { + if (this.options.rtl) { + this.right = start; // reposition box, line, and dot + + this.dom.box.style.right = this.right + 'px'; + } else { + this.left = start; // reposition box, line, and dot + + this.dom.box.style.left = this.left + 'px'; + } + } else { + // default or 'center' + if (this.options.rtl) { + this.right = start - this.width / 2; // reposition box, line, and dot + + this.dom.box.style.right = this.right + 'px'; + } else { + this.left = start - this.width / 2; // reposition box, line, and dot + + this.dom.box.style.left = this.left + 'px'; + } + } + } + /** + * reposition x with ranges + * @param {date} start + * @param {date} end + */ + + }, { + key: "repositionXWithRanges", + value: function repositionXWithRanges(start, end) { + var boxWidth = Math.round(Math.max(end - start + 0.5, 1)); + + if (this.options.rtl) { + this.right = start; + } else { + this.left = start; + } + + this.width = Math.max(boxWidth, this.minWidth || 0); + + if (this.options.rtl) { + this.dom.box.style.right = this.right + 'px'; + } else { + this.dom.box.style.left = this.left + 'px'; + } + + this.dom.box.style.width = boxWidth + 'px'; + } + /** + * reposition item y axis + */ + + }, { + key: "repositionY", + value: function repositionY() { + var orientation = this.options.orientation.item; + var box = this.dom.box; + + if (orientation == 'top') { + box.style.top = (this.top || 0) + 'px'; + } else { + // orientation 'bottom' + box.style.top = (this.parent.height - this.top - this.height || 0) + 'px'; + } + + if (this.options.showStipes) { + if (orientation == 'top') { + this.dom.line.style.top = '0'; + this.dom.line.style.height = this.parent.top + this.top + 1 + 'px'; + this.dom.line.style.bottom = ''; + } else { + // orientation 'bottom' + var itemSetHeight = this.parent.itemSet.props.height; + var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top; + this.dom.line.style.top = itemSetHeight - lineHeight + 'px'; + this.dom.line.style.bottom = '0'; + } + + this.dom.dot.style.top = -this.dom.dot.offsetHeight / 2 + 'px'; + } + } + /** + * get width left + * @return {number} + */ + + }, { + key: "getWidthLeft", + value: function getWidthLeft() { + return this.width / 2; + } + /** + * get width right + * @return {number} + */ + + }, { + key: "getWidthRight", + value: function getWidthRight() { + return this.width / 2; + } + /** + * move cluster item + */ + + }, { + key: "move", + value: function move() { + this.repositionX(); + this.repositionY(); + } + /** + * attach + */ + + }, { + key: "attach", + value: function attach() { + var _context8; + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = getIterator$2(this.data.uiItems), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var item = _step.value; + item.cluster = this; + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + this.data.items = map$2(_context8 = this.data.uiItems).call(_context8, function (item) { + return item.data; + }); + this.attached = true; + this.dirty = true; + } + /** + * detach + * @param {boolean} detachFromParent + * @return {void} + */ + + }, { + key: "detach", + value: function detach() { + var detachFromParent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false; + + if (!this.hasItems()) { + return; + } + + var _iteratorNormalCompletion2 = true; + var _didIteratorError2 = false; + var _iteratorError2 = undefined; + + try { + for (var _iterator2 = getIterator$2(this.data.uiItems), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) { + var item = _step2.value; + delete item.cluster; + } + } catch (err) { + _didIteratorError2 = true; + _iteratorError2 = err; + } finally { + try { + if (!_iteratorNormalCompletion2 && _iterator2.return != null) { + _iterator2.return(); + } + } finally { + if (_didIteratorError2) { + throw _iteratorError2; + } + } + } + + this.attached = false; + + if (detachFromParent && this.group) { + this.group.remove(this); + this.group = null; + } + + this.data.items = []; + this.dirty = true; + } + /** + * handle on double click + */ + + }, { + key: "_onDoubleClick", + value: function _onDoubleClick() { + this._fit(); + } + /** + * set range + */ + + }, { + key: "_setupRange", + value: function _setupRange() { + var _context9, _context10, _context11; + + var stats = map$2(_context9 = this.data.uiItems).call(_context9, function (item) { + return { + start: item.data.start.valueOf(), + end: item.data.end ? item.data.end.valueOf() : item.data.start.valueOf() + }; + }); + + this.data.min = Math.min.apply(Math, toConsumableArray$2(map$2(stats).call(stats, function (s) { + return Math.min(s.start, s.end || s.start); + }))); + this.data.max = Math.max.apply(Math, toConsumableArray$2(map$2(stats).call(stats, function (s) { + return Math.max(s.start, s.end || s.start); + }))); + + var centers = map$2(_context10 = this.data.uiItems).call(_context10, function (item) { + return item.center; + }); + + var avg = reduce$2(centers).call(centers, function (sum, value) { + return sum + value; + }, 0) / this.data.uiItems.length; + + if (some$2(_context11 = this.data.uiItems).call(_context11, function (item) { + return item.data.end; + })) { + // contains ranges + this.data.start = new Date(this.data.min); + this.data.end = new Date(this.data.max); + } else { + this.data.start = new Date(avg); + this.data.end = null; + } + } + /** + * get UI items + * @return {array} + */ + + }, { + key: "_getUiItems", + value: function _getUiItems() { + var _this2 = this; + + if (this.data.uiItems && this.data.uiItems.length) { + var _context12; + + return filter$2(_context12 = this.data.uiItems).call(_context12, function (item) { + return item.cluster === _this2; + }); + } + + return []; + } + /** + * create DOM element + */ + + }, { + key: "_createDomElement", + value: function _createDomElement() { + if (!this.dom) { + // create DOM + this.dom = {}; // create main box + + this.dom.box = document.createElement('DIV'); // contents box (inside the background box). used for making margins + + this.dom.content = document.createElement('DIV'); + this.dom.content.className = 'vis-item-content'; + this.dom.box.appendChild(this.dom.content); + + if (this.options.showStipes) { + // line to axis + this.dom.line = document.createElement('DIV'); + this.dom.line.className = 'vis-cluster-line'; + this.dom.line.style.display = 'none'; // dot on axis + + this.dom.dot = document.createElement('DIV'); + this.dom.dot.className = 'vis-cluster-dot'; + this.dom.dot.style.display = 'none'; + } + + if (this.options.fitOnDoubleClick) { + var _context13; + + this.dom.box.ondblclick = bind$2(_context13 = ClusterItem.prototype._onDoubleClick).call(_context13, this); + } // attach this item as attribute + + + this.dom.box['vis-item'] = this; + this.dirty = true; + } + } + /** + * append element to DOM + */ + + }, { + key: "_appendDomElement", + value: function _appendDomElement() { + if (!this.parent) { + throw new Error('Cannot redraw item: no parent attached'); + } + + if (!this.dom.box.parentNode) { + var foreground = this.parent.dom.foreground; + + if (!foreground) { + throw new Error('Cannot redraw item: parent has no foreground container element'); + } + + foreground.appendChild(this.dom.box); + } + + var background = this.parent.dom.background; + + if (this.options.showStipes) { + if (!this.dom.line.parentNode) { + if (!background) throw new Error('Cannot redraw item: parent has no background container element'); + background.appendChild(this.dom.line); + } + + if (!this.dom.dot.parentNode) { + var axis = this.parent.dom.axis; + if (!background) throw new Error('Cannot redraw item: parent has no axis container element'); + axis.appendChild(this.dom.dot); + } + } + + this.displayed = true; + } + /** + * update dirty DOM components + */ + + }, { + key: "_updateDirtyDomComponents", + value: function _updateDirtyDomComponents() { + // An item is marked dirty when: + // - the item is not yet rendered + // - the item's data is changed + // - the item is selected/deselected + if (this.dirty) { + this._updateContents(this.dom.content); + + this._updateDataAttributes(this.dom.box); + + this._updateStyle(this.dom.box); // update class + + + var className = this.baseClassName + ' ' + (this.data.className ? ' ' + this.data.className : '') + (this.selected ? ' vis-selected' : '') + ' vis-readonly'; + this.dom.box.className = 'vis-item ' + className; + + if (this.options.showStipes) { + this.dom.line.className = 'vis-item vis-cluster-line ' + (this.selected ? ' vis-selected' : ''); + this.dom.dot.className = 'vis-item vis-cluster-dot ' + (this.selected ? ' vis-selected' : ''); + } + + if (this.data.end) { + // turn off max-width to be able to calculate the real width + // this causes an extra browser repaint/reflow, but so be it + this.dom.content.style.maxWidth = 'none'; + } + } + } + /** + * get DOM components sizes + * @return {object} + */ + + }, { + key: "_getDomComponentsSizes", + value: function _getDomComponentsSizes() { + return { + previous: { + right: this.dom.box.style.right, + left: this.dom.box.style.left + }, + box: { + width: this.dom.box.offsetWidth, + height: this.dom.box.offsetHeight + } + }; + } + /** + * update DOM components sizes + * @param {object} sizes + */ + + }, { + key: "_updateDomComponentsSizes", + value: function _updateDomComponentsSizes(sizes) { + if (this.options.rtl) { + this.dom.box.style.right = "0px"; + } else { + this.dom.box.style.left = "0px"; + } // recalculate size + + + if (!this.data.end) { + this.width = sizes.box.width; + } else { + this.minWidth = sizes.box.width; + } + + this.height = sizes.box.height; // restore previous position + + if (this.options.rtl) { + this.dom.box.style.right = sizes.previous.right; + } else { + this.dom.box.style.left = sizes.previous.left; + } + + this.dirty = false; + } + /** + * repaint DOM additional components + */ + + }, { + key: "_repaintDomAdditionals", + value: function _repaintDomAdditionals() { + this._repaintOnItemUpdateTimeTooltip(this.dom.box); + } + /** + * check is stripe visible + * @return {number} + * @private + */ + + }, { + key: "_isStipeVisible", + value: function _isStipeVisible() { + return this.minWidth >= this.width || !this.data.end; + } + /** + * get fit range + * @return {object} + * @private + */ + + }, { + key: "_getFitRange", + value: function _getFitRange() { + var offset = 0.05 * (this.data.max - this.data.min) / 2; + return { + fitStart: this.data.min - offset, + fitEnd: this.data.max + offset + }; + } + /** + * fit + * @private + */ + + }, { + key: "_fit", + value: function _fit() { + if (this.emitter) { + var _this$_getFitRange = this._getFitRange(), + fitStart = _this$_getFitRange.fitStart, + fitEnd = _this$_getFitRange.fitEnd; + + var fitArgs = { + start: new Date(fitStart), + end: new Date(fitEnd), + animation: true + }; + this.emitter.emit('fit', fitArgs); + } + } + /** + * get item data + * @return {object} + * @private + */ + + }, { + key: "_getItemData", + value: function _getItemData() { + return this.data; + } + }]); + + return ClusterItem; +}(Item); + +ClusterItem.prototype.baseClassName = 'vis-item vis-range vis-cluster'; + +var UNGROUPED$1 = '__ungrouped__'; // reserved group id for ungrouped items + +var BACKGROUND$1 = '__background__'; // reserved group id for background items without group + +var ReservedGroupIds$1 = { + UNGROUPED: UNGROUPED$1, + BACKGROUND: BACKGROUND$1 + /** + * An Cluster generator generates cluster items + */ + +}; + +var ClusterGenerator = +/*#__PURE__*/ +function () { + /** + * @param {ItemSet} itemSet itemsSet instance + * @constructor ClusterGenerator + */ + function ClusterGenerator(itemSet) { + classCallCheck$1(this, ClusterGenerator); + + this.itemSet = itemSet; + this.groups = {}; + this.cache = {}; + this.cache[-1] = []; + } + /** + * @param {Object} itemData Object containing parameters start content, className. + * @param {{toScreen: function, toTime: function}} conversion + * Conversion functions from time to screen and vice versa + * @param {Object} [options] Configuration options + * @return {Object} newItem + */ + + + createClass$1(ClusterGenerator, [{ + key: "createClusterItem", + value: function createClusterItem(itemData, conversion, options) { + var newItem = new ClusterItem(itemData, conversion, options); + return newItem; + } + /** + * Set the items to be clustered. + * This will clear cached clusters. + * @param {Item[]} items + * @param {Object} [options] Available options: + * {boolean} applyOnChangedLevel + * If true (default), the changed data is applied + * as soon the cluster level changes. If false, + * The changed data is applied immediately + */ + + }, { + key: "setItems", + value: function setItems(items, options) { + this.items = items || []; + this.dataChanged = true; + this.applyOnChangedLevel = false; + + if (options && options.applyOnChangedLevel) { + this.applyOnChangedLevel = options.applyOnChangedLevel; + } + } + /** + * Update the current data set: clear cache, and recalculate the clustering for + * the current level + */ + + }, { + key: "updateData", + value: function updateData() { + this.dataChanged = true; + this.applyOnChangedLevel = false; + } + /** + * Cluster the items which are too close together + * @param {array} oldClusters + * @param {number} scale The scale of the current window : (windowWidth / (endDate - startDate)) + * @param {{maxItems: number, clusterCriteria: function, titleTemplate: string}} options + * @return {array} clusters + */ + + }, { + key: "getClusters", + value: function getClusters(oldClusters, scale, options) { + var _ref = typeof options === "boolean" ? {} : options, + maxItems = _ref.maxItems, + clusterCriteria = _ref.clusterCriteria; + + if (!clusterCriteria) { + clusterCriteria = function clusterCriteria() { + return true; + }; + } + + maxItems = maxItems || 1; + var level = -1; + var granularity = 2; + var timeWindow = 0; + + if (scale > 0) { + if (scale >= 1) { + return []; + } + + level = Math.abs(Math.round(Math.log(100 / scale) / Math.log(granularity))); + timeWindow = Math.abs(Math.pow(granularity, level)); + } // clear the cache when and re-generate groups the data when needed. + + + if (this.dataChanged) { + var levelChanged = level != this.cacheLevel; + var applyDataNow = this.applyOnChangedLevel ? levelChanged : true; + + if (applyDataNow) { + this._dropLevelsCache(); + + this._filterData(); + } + } + + this.cacheLevel = level; + var clusters = this.cache[level]; + + if (!clusters) { + clusters = []; + + for (var groupName in this.groups) { + if (this.groups.hasOwnProperty(groupName)) { + var items = this.groups[groupName]; + var iMax = items.length; + var i = 0; + + while (i < iMax) { + // find all items around current item, within the timeWindow + var item = items[i]; + var neighbors = 1; // start at 1, to include itself) + // loop through items left from the current item + + var j = i - 1; + + while (j >= 0 && item.center - items[j].center < timeWindow / 2) { + if (!items[j].cluster && clusterCriteria(item.data, items[j].data)) { + neighbors++; + } + + j--; + } // loop through items right from the current item + + + var k = i + 1; + + while (k < items.length && items[k].center - item.center < timeWindow / 2) { + if (clusterCriteria(item.data, items[k].data)) { + neighbors++; + } + + k++; + } // loop through the created clusters + + + var l = clusters.length - 1; + + while (l >= 0 && item.center - clusters[l].center < timeWindow) { + if (item.group == clusters[l].group && clusterCriteria(item.data, clusters[l].data)) { + neighbors++; + } + + l--; + } // aggregate until the number of items is within maxItems + + + if (neighbors > maxItems) { + // too busy in this window. + var num = neighbors - maxItems + 1; + var clusterItems = []; // append the items to the cluster, + // and calculate the average start for the cluster + + var m = i; + + while (clusterItems.length < num && m < items.length) { + if (clusterCriteria(items[m].data, items[m].data)) { + clusterItems.push(items[m]); + } + + m++; + } + + var groupId = this.itemSet.getGroupId(item.data); + var group = this.itemSet.groups[groupId] || this.itemSet.groups[ReservedGroupIds$1.UNGROUPED]; + + var cluster = this._getClusterForItems(clusterItems, group, oldClusters, options); + + clusters.push(cluster); + i += num; + } else { + delete item.cluster; + i += 1; + } + } + } + } + + this.cache[level] = clusters; + } + + return clusters; + } + /** + * Filter the items per group. + * @private + */ + + }, { + key: "_filterData", + value: function _filterData() { + // filter per group + var groups = {}; + this.groups = groups; // split the items per group + + for (var _i = 0, _Object$values = values$2(this.items); _i < _Object$values.length; _i++) { + var item = _Object$values[_i]; + // put the item in the correct group + var groupName = item.parent ? item.parent.groupId : ''; + var group = groups[groupName]; + + if (!group) { + group = []; + groups[groupName] = group; + } + + group.push(item); // calculate the center of the item + + if (item.data.start) { + if (item.data.end) { + // range + item.center = (item.data.start.valueOf() + item.data.end.valueOf()) / 2; + } else { + // box, dot + item.center = item.data.start.valueOf(); + } + } + } // sort the items per group + + + for (var currentGroupName in groups) { + if (groups.hasOwnProperty(currentGroupName)) { + var _context; + + sort$2(_context = groups[currentGroupName]).call(_context, function (a, b) { + return a.center - b.center; + }); + } + } + + this.dataChanged = false; + } + /** + * Create new cluster or return existing + * @private + * @param {array} clusterItems + * @param {object} group + * @param {array} oldClusters + * @param {object} options + * @returns {object} cluster + */ + + }, { + key: "_getClusterForItems", + value: function _getClusterForItems(clusterItems, group, oldClusters, options) { + var _context2; + + var oldClustersLookup = map$2(_context2 = oldClusters || []).call(_context2, function (cluster) { + var _context3; + + return { + cluster: cluster, + itemsIds: new set$3(map$2(_context3 = cluster.data.uiItems).call(_context3, function (item) { + return item.id; + })) + }; + }); + + var cluster; + + if (oldClustersLookup.length) { + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + var _loop = function _loop() { + var oldClusterData = _step.value; + + if (oldClusterData.itemsIds.size === clusterItems.length && every$2(clusterItems).call(clusterItems, function (clusterItem) { + return oldClusterData.itemsIds.has(clusterItem.id); + })) { + cluster = oldClusterData.cluster; + return "break"; + } + }; + + for (var _iterator = getIterator$2(oldClustersLookup), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var _ret = _loop(); + + if (_ret === "break") break; + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + } + + if (cluster) { + cluster.setUiItems(clusterItems); + + if (cluster.group !== group) { + if (cluster.group) { + cluster.group.remove(cluster); + } + + if (group) { + group.add(cluster); + cluster.group = group; + } + } + + return cluster; + } + + var titleTemplate = options.titleTemplate || ''; + var conversion = { + toScreen: this.itemSet.body.util.toScreen, + toTime: this.itemSet.body.util.toTime + }; + var clusterContent = '
' + clusterItems.length + '
'; + var title = titleTemplate.replace(/{count}/, clusterItems.length); + + var clusterOptions = assign$4({}, options, this.itemSet.options); + + var data = { + 'content': clusterContent, + 'title': title, + 'group': group, + 'uiItems': clusterItems, + 'eventEmitter': this.itemSet.body.emitter, + 'range': this.itemSet.body.range + }; + cluster = this.createClusterItem(data, conversion, clusterOptions); + + if (group) { + group.add(cluster); + cluster.group = group; + } + + cluster.attach(); + return cluster; + } + /** + * Drop cache + * @private + */ + + }, { + key: "_dropLevelsCache", + value: function _dropLevelsCache() { + this.cache = {}; + this.cacheLevel = -1; + this.cache[this.cacheLevel] = []; + } + }]); + + return ClusterGenerator; +}(); + +var UNGROUPED$2 = '__ungrouped__'; // reserved group id for ungrouped items + +var BACKGROUND$2 = '__background__'; // reserved group id for background items without group + +var ItemSet = +/*#__PURE__*/ +function (_Component) { + inherits$1(ItemSet, _Component); + + /** + * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body + * @param {Object} [options] See ItemSet.setOptions for the available options. + * @constructor ItemSet + * @extends Component + */ + function ItemSet(body, options) { + var _this; + + classCallCheck$1(this, ItemSet); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(ItemSet).call(this)); + _this.body = body; + _this.defaultOptions = { + type: null, + // 'box', 'point', 'range', 'background' + orientation: { + item: 'bottom' // item orientation: 'top' or 'bottom' + + }, + align: 'auto', + // alignment of box items + stack: true, + stackSubgroups: true, + groupOrderSwap: function groupOrderSwap(fromGroup, toGroup, groups) { + // eslint-disable-line no-unused-vars + var targetOrder = toGroup.order; + toGroup.order = fromGroup.order; + fromGroup.order = targetOrder; + }, + groupOrder: 'order', + selectable: true, + multiselect: false, + itemsAlwaysDraggable: { + item: false, + range: false + }, + editable: { + updateTime: false, + updateGroup: false, + add: false, + remove: false, + overrideItems: false + }, + groupEditable: { + order: false, + add: false, + remove: false + }, + snap: TimeStep.snap, + // Only called when `objectData.target === 'item'. + onDropObjectOnItem: function onDropObjectOnItem(objectData, item, callback) { + callback(item); + }, + onAdd: function onAdd(item, callback) { + callback(item); + }, + onUpdate: function onUpdate(item, callback) { + callback(item); + }, + onMove: function onMove(item, callback) { + callback(item); + }, + onRemove: function onRemove(item, callback) { + callback(item); + }, + onMoving: function onMoving(item, callback) { + callback(item); + }, + onAddGroup: function onAddGroup(item, callback) { + callback(item); + }, + onMoveGroup: function onMoveGroup(item, callback) { + callback(item); + }, + onRemoveGroup: function onRemoveGroup(item, callback) { + callback(item); + }, + margin: { + item: { + horizontal: 10, + vertical: 10 + }, + axis: 20 + }, + showTooltips: true, + tooltip: { + followMouse: false, + overflowMethod: 'flip', + delay: 500 + }, + tooltipOnItemUpdateTime: false + }; // options is shared by this ItemSet and all its items + + _this.options = util$2.extend({}, _this.defaultOptions); + _this.options.rtl = options.rtl; + _this.options.onTimeout = options.onTimeout; // options for getting items from the DataSet with the correct type + + _this.itemOptions = { + type: { + start: 'Date', + end: 'Date' + } + }; + _this.conversion = { + toScreen: body.util.toScreen, + toTime: body.util.toTime + }; + _this.dom = {}; + _this.props = {}; + _this.hammer = null; + + var me = assertThisInitialized$1(_this); + + _this.itemsData = null; // DataSet + + _this.groupsData = null; // DataSet + + _this.itemsSettingTime = null; + _this.initialItemSetDrawn = false; + _this.userContinueNotBail = null; + _this.sequentialSelection = false; // listeners for the DataSet of the items + + _this.itemListeners = { + 'add': function add(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onAdd(params.items); + + if (me.options.cluster) { + me.clusterGenerator.setItems(me.items, { + applyOnChangedLevel: false + }); + } + + me.redraw(); + }, + 'update': function update(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onUpdate(params.items); + + if (me.options.cluster) { + me.clusterGenerator.setItems(me.items, { + applyOnChangedLevel: false + }); + } + + me.redraw(); + }, + 'remove': function remove(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onRemove(params.items); + + if (me.options.cluster) { + me.clusterGenerator.setItems(me.items, { + applyOnChangedLevel: false + }); + } + + me.redraw(); + } + }; // listeners for the DataSet of the groups + + _this.groupListeners = { + 'add': function add(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onAddGroups(params.items); + + if (me.groupsData && me.groupsData.length > 0) { + var _context; + + var groupsData = me.groupsData.getDataSet(); + + forEach$3(_context = groupsData.get()).call(_context, function (groupData) { + if (groupData.nestedGroups) { + var _context2; + + if (groupData.showNested != false) { + groupData.showNested = true; + } + + var updatedGroups = []; + + forEach$3(_context2 = groupData.nestedGroups).call(_context2, function (nestedGroupId) { + var updatedNestedGroup = groupsData.get(nestedGroupId); + + if (!updatedNestedGroup) { + return; + } + + updatedNestedGroup.nestedInGroup = groupData.id; + + if (groupData.showNested == false) { + updatedNestedGroup.visible = false; + } + + updatedGroups = concat$2(updatedGroups).call(updatedGroups, updatedNestedGroup); + }); + + groupsData.update(updatedGroups, senderId); + } + }); + } + }, + 'update': function update(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onUpdateGroups(params.items); + }, + 'remove': function remove(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onRemoveGroups(params.items); + } + }; + _this.items = {}; // object with an Item for every data item + + _this.groups = {}; // Group object for every group + + _this.groupIds = []; + _this.selection = []; // list with the ids of all selected nodes + + _this.popup = null; + _this.popupTimer = null; + _this.touchParams = {}; // stores properties while dragging + + _this.groupTouchParams = { + group: null, + isDragging: false + }; // create the HTML DOM + + _this._create(); + + _this.setOptions(options); + + _this.clusters = []; + return _this; + } + /** + * Create the HTML DOM for the ItemSet + */ + + + createClass$1(ItemSet, [{ + key: "_create", + value: function _create() { + var _this2 = this, + _context3, + _context4, + _context5, + _context6, + _context7, + _context8, + _context9, + _context10, + _context11, + _context12, + _context13, + _context14, + _context15, + _context16, + _context17; + + var frame = document.createElement('div'); + frame.className = 'vis-itemset'; + frame['vis-itemset'] = this; + this.dom.frame = frame; // create background panel + + var background = document.createElement('div'); + background.className = 'vis-background'; + frame.appendChild(background); + this.dom.background = background; // create foreground panel + + var foreground = document.createElement('div'); + foreground.className = 'vis-foreground'; + frame.appendChild(foreground); + this.dom.foreground = foreground; // create axis panel + + var axis = document.createElement('div'); + axis.className = 'vis-axis'; + this.dom.axis = axis; // create labelset + + var labelSet = document.createElement('div'); + labelSet.className = 'vis-labelset'; + this.dom.labelSet = labelSet; // create ungrouped Group + + this._updateUngrouped(); // create background Group + + + var backgroundGroup = new BackgroundGroup(BACKGROUND$2, null, this); + backgroundGroup.show(); + this.groups[BACKGROUND$2] = backgroundGroup; // attach event listeners + // Note: we bind to the centerContainer for the case where the height + // of the center container is larger than of the ItemSet, so we + // can click in the empty area to create a new item or deselect an item. + + this.hammer = new Hammer$1(this.body.dom.centerContainer); // drag items when selected + + this.hammer.on('hammer.input', function (event) { + if (event.isFirst) { + _this2._onTouch(event); + } + }); + this.hammer.on('panstart', bind$2(_context3 = this._onDragStart).call(_context3, this)); + this.hammer.on('panmove', bind$2(_context4 = this._onDrag).call(_context4, this)); + this.hammer.on('panend', bind$2(_context5 = this._onDragEnd).call(_context5, this)); + this.hammer.get('pan').set({ + threshold: 5, + direction: Hammer$1.ALL + }); // single select (or unselect) when tapping an item + + this.hammer.on('tap', bind$2(_context6 = this._onSelectItem).call(_context6, this)); // multi select when holding mouse/touch, or on ctrl+click + + this.hammer.on('press', bind$2(_context7 = this._onMultiSelectItem).call(_context7, this)); // add item on doubletap + + this.hammer.on('doubletap', bind$2(_context8 = this._onAddItem).call(_context8, this)); + + if (this.options.rtl) { + this.groupHammer = new Hammer$1(this.body.dom.rightContainer); + } else { + this.groupHammer = new Hammer$1(this.body.dom.leftContainer); + } + + this.groupHammer.on('tap', bind$2(_context9 = this._onGroupClick).call(_context9, this)); + this.groupHammer.on('panstart', bind$2(_context10 = this._onGroupDragStart).call(_context10, this)); + this.groupHammer.on('panmove', bind$2(_context11 = this._onGroupDrag).call(_context11, this)); + this.groupHammer.on('panend', bind$2(_context12 = this._onGroupDragEnd).call(_context12, this)); + this.groupHammer.get('pan').set({ + threshold: 5, + direction: Hammer$1.DIRECTION_VERTICAL + }); + this.body.dom.centerContainer.addEventListener('mouseover', bind$2(_context13 = this._onMouseOver).call(_context13, this)); + this.body.dom.centerContainer.addEventListener('mouseout', bind$2(_context14 = this._onMouseOut).call(_context14, this)); + this.body.dom.centerContainer.addEventListener('mousemove', bind$2(_context15 = this._onMouseMove).call(_context15, this)); // right-click on timeline + + this.body.dom.centerContainer.addEventListener('contextmenu', bind$2(_context16 = this._onDragEnd).call(_context16, this)); + this.body.dom.centerContainer.addEventListener('mousewheel', bind$2(_context17 = this._onMouseWheel).call(_context17, this)); // attach to the DOM + + this.show(); + } + /** + * Set options for the ItemSet. Existing options will be extended/overwritten. + * @param {Object} [options] The following options are available: + * {string} type + * Default type for the items. Choose from 'box' + * (default), 'point', 'range', or 'background'. + * The default style can be overwritten by + * individual items. + * {string} align + * Alignment for the items, only applicable for + * BoxItem. Choose 'center' (default), 'left', or + * 'right'. + * {string} orientation.item + * Orientation of the item set. Choose 'top' or + * 'bottom' (default). + * {Function} groupOrder + * A sorting function for ordering groups + * {boolean} stack + * If true (default), items will be stacked on + * top of each other. + * {number} margin.axis + * Margin between the axis and the items in pixels. + * Default is 20. + * {number} margin.item.horizontal + * Horizontal margin between items in pixels. + * Default is 10. + * {number} margin.item.vertical + * Vertical Margin between items in pixels. + * Default is 10. + * {number} margin.item + * Margin between items in pixels in both horizontal + * and vertical direction. Default is 10. + * {number} margin + * Set margin for both axis and items in pixels. + * {boolean} selectable + * If true (default), items can be selected. + * {boolean} multiselect + * If true, multiple items can be selected. + * False by default. + * {boolean} editable + * Set all editable options to true or false + * {boolean} editable.updateTime + * Allow dragging an item to an other moment in time + * {boolean} editable.updateGroup + * Allow dragging an item to an other group + * {boolean} editable.add + * Allow creating new items on double tap + * {boolean} editable.remove + * Allow removing items by clicking the delete button + * top right of a selected item. + * {Function(item: Item, callback: Function)} onAdd + * Callback function triggered when an item is about to be added: + * when the user double taps an empty space in the Timeline. + * {Function(item: Item, callback: Function)} onUpdate + * Callback function fired when an item is about to be updated. + * This function typically has to show a dialog where the user + * change the item. If not implemented, nothing happens. + * {Function(item: Item, callback: Function)} onMove + * Fired when an item has been moved. If not implemented, + * the move action will be accepted. + * {Function(item: Item, callback: Function)} onRemove + * Fired when an item is about to be deleted. + * If not implemented, the item will be always removed. + */ + + }, { + key: "setOptions", + value: function setOptions(options) { + var _this3 = this; + + if (options) { + var _context18, _context20; + + // copy all options that we know + var fields = ['type', 'rtl', 'align', 'order', 'stack', 'stackSubgroups', 'selectable', 'multiselect', 'sequentialSelection', 'multiselectPerGroup', 'groupOrder', 'dataAttributes', 'template', 'groupTemplate', 'visibleFrameTemplate', 'hide', 'snap', 'groupOrderSwap', 'showTooltips', 'tooltip', 'tooltipOnItemUpdateTime', 'groupHeightMode', 'onTimeout']; + util$2.selectiveExtend(fields, this.options, options); + + if ('itemsAlwaysDraggable' in options) { + if (typeof options.itemsAlwaysDraggable === 'boolean') { + this.options.itemsAlwaysDraggable.item = options.itemsAlwaysDraggable; + this.options.itemsAlwaysDraggable.range = false; + } else if (_typeof_1$2(options.itemsAlwaysDraggable) === 'object') { + util$2.selectiveExtend(['item', 'range'], this.options.itemsAlwaysDraggable, options.itemsAlwaysDraggable); // only allow range always draggable when item is always draggable as well + + if (!this.options.itemsAlwaysDraggable.item) { + this.options.itemsAlwaysDraggable.range = false; + } + } + } + + if ('sequentialSelection' in options) { + if (typeof options.sequentialSelection === 'boolean') { + this.options.sequentialSelection = options.sequentialSelection; + } + } + + if ('orientation' in options) { + if (typeof options.orientation === 'string') { + this.options.orientation.item = options.orientation === 'top' ? 'top' : 'bottom'; + } else if (_typeof_1$2(options.orientation) === 'object' && 'item' in options.orientation) { + this.options.orientation.item = options.orientation.item; + } + } + + if ('margin' in options) { + if (typeof options.margin === 'number') { + this.options.margin.axis = options.margin; + this.options.margin.item.horizontal = options.margin; + this.options.margin.item.vertical = options.margin; + } else if (_typeof_1$2(options.margin) === 'object') { + util$2.selectiveExtend(['axis'], this.options.margin, options.margin); + + if ('item' in options.margin) { + if (typeof options.margin.item === 'number') { + this.options.margin.item.horizontal = options.margin.item; + this.options.margin.item.vertical = options.margin.item; + } else if (_typeof_1$2(options.margin.item) === 'object') { + util$2.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item); + } + } + } + } + + forEach$3(_context18 = ['locale', 'locales']).call(_context18, function (key) { + if (key in options) { + _this3.options[key] = options[key]; + } + }); + + if ('editable' in options) { + if (typeof options.editable === 'boolean') { + this.options.editable.updateTime = options.editable; + this.options.editable.updateGroup = options.editable; + this.options.editable.add = options.editable; + this.options.editable.remove = options.editable; + this.options.editable.overrideItems = false; + } else if (_typeof_1$2(options.editable) === 'object') { + util$2.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove', 'overrideItems'], this.options.editable, options.editable); + } + } + + if ('groupEditable' in options) { + if (typeof options.groupEditable === 'boolean') { + this.options.groupEditable.order = options.groupEditable; + this.options.groupEditable.add = options.groupEditable; + this.options.groupEditable.remove = options.groupEditable; + } else if (_typeof_1$2(options.groupEditable) === 'object') { + util$2.selectiveExtend(['order', 'add', 'remove'], this.options.groupEditable, options.groupEditable); + } + } // callback functions + + + var addCallback = function addCallback(name) { + var fn = options[name]; + + if (fn) { + if (!(typeof fn === 'function')) { + var _context19; + + throw new Error(concat$2(_context19 = "option ".concat(name, " must be a function ")).call(_context19, name, "(item, callback)")); + } + + _this3.options[name] = fn; + } + }; + + forEach$3(_context20 = ['onDropObjectOnItem', 'onAdd', 'onUpdate', 'onRemove', 'onMove', 'onMoving', 'onAddGroup', 'onMoveGroup', 'onRemoveGroup']).call(_context20, addCallback); + + if (options.cluster) { + assign$4(this.options, { + cluster: options.cluster + }); + + if (!this.clusterGenerator) { + this.clusterGenerator = new ClusterGenerator(this); + } + + this.clusterGenerator.setItems(this.items, { + applyOnChangedLevel: false + }); + this.markDirty({ + refreshItems: true, + restackGroups: true + }); + this.redraw(); + } else if (this.clusterGenerator) { + this._detachAllClusters(); + + this.clusters = []; + this.clusterGenerator = null; + this.options.cluster = undefined; + this.markDirty({ + refreshItems: true, + restackGroups: true + }); + this.redraw(); + } else { + // force the itemSet to refresh: options like orientation and margins may be changed + this.markDirty(); + } + } + } + /** + * Mark the ItemSet dirty so it will refresh everything with next redraw. + * Optionally, all items can be marked as dirty and be refreshed. + * @param {{refreshItems: boolean}} [options] + */ + + }, { + key: "markDirty", + value: function markDirty(options) { + this.groupIds = []; + + if (options) { + if (options.refreshItems) { + forEach$3(util$2).call(util$2, this.items, function (item) { + item.dirty = true; + if (item.displayed) item.redraw(); + }); + } + + if (options.restackGroups) { + forEach$3(util$2).call(util$2, this.groups, function (group, key) { + if (key === BACKGROUND$2) return; + group.stackDirty = true; + }); + } + } + } + /** + * Destroy the ItemSet + */ + + }, { + key: "destroy", + value: function destroy() { + this.clearPopupTimer(); + this.hide(); + this.setItems(null); + this.setGroups(null); + this.hammer && this.hammer.destroy(); + this.groupHammer && this.groupHammer.destroy(); + this.hammer = null; + this.body = null; + this.conversion = null; + } + /** + * Hide the component from the DOM + */ + + }, { + key: "hide", + value: function hide() { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } // remove the axis with dots + + + if (this.dom.axis.parentNode) { + this.dom.axis.parentNode.removeChild(this.dom.axis); + } // remove the labelset containing all group labels + + + if (this.dom.labelSet.parentNode) { + this.dom.labelSet.parentNode.removeChild(this.dom.labelSet); + } + } + /** + * Show the component in the DOM (when not already visible). + */ + + }, { + key: "show", + value: function show() { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } // show axis with dots + + + if (!this.dom.axis.parentNode) { + this.body.dom.backgroundVertical.appendChild(this.dom.axis); + } // show labelset containing labels + + + if (!this.dom.labelSet.parentNode) { + if (this.options.rtl) { + this.body.dom.right.appendChild(this.dom.labelSet); + } else { + this.body.dom.left.appendChild(this.dom.labelSet); + } + } + } + /** + * Activates the popup timer to show the given popup after a fixed time. + * @param {Popup} popup + */ + + }, { + key: "setPopupTimer", + value: function setPopupTimer(popup) { + this.clearPopupTimer(); + + if (popup) { + var delay = this.options.tooltip.delay || typeof this.options.tooltip.delay === 'number' ? this.options.tooltip.delay : 500; + this.popupTimer = setTimeout$2(function () { + popup.show(); + }, delay); + } + } + /** + * Clears the popup timer for the tooltip. + */ + + }, { + key: "clearPopupTimer", + value: function clearPopupTimer() { + if (this.popupTimer != null) { + clearTimeout(this.popupTimer); + this.popupTimer = null; + } + } + /** + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [ids] An array with zero or more id's of the items to be + * selected, or a single item id. If ids is undefined + * or an empty array, all items will be unselected. + */ + + }, { + key: "setSelection", + value: function setSelection(ids) { + var _context21; + + if (ids == undefined) { + ids = []; + } + + if (!isArray$3(ids)) { + ids = [ids]; + } + + var idsToDeselect = filter$2(_context21 = this.selection).call(_context21, function (id) { + return indexOf$3(ids).call(ids, id) === -1; + }); // unselect currently selected items + + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = getIterator$2(idsToDeselect), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var selectedId = _step.value; + var item = this.getItemById(selectedId); + + if (item) { + item.unselect(); + } + } // select items + + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + this.selection = toConsumableArray$2(ids); + var _iteratorNormalCompletion2 = true; + var _didIteratorError2 = false; + var _iteratorError2 = undefined; + + try { + for (var _iterator2 = getIterator$2(ids), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) { + var id = _step2.value; + + var _item2 = this.getItemById(id); + + if (_item2) { + _item2.select(); + } + } + } catch (err) { + _didIteratorError2 = true; + _iteratorError2 = err; + } finally { + try { + if (!_iteratorNormalCompletion2 && _iterator2.return != null) { + _iterator2.return(); + } + } finally { + if (_didIteratorError2) { + throw _iteratorError2; + } + } + } + } + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items + */ + + }, { + key: "getSelection", + value: function getSelection() { + var _context22; + + return concat$2(_context22 = this.selection).call(_context22, []); + } + /** + * Get the id's of the currently visible items. + * @returns {Array} The ids of the visible items + */ + + }, { + key: "getVisibleItems", + value: function getVisibleItems() { + var range = this.body.range.getRange(); + var right; + var left; + + if (this.options.rtl) { + right = this.body.util.toScreen(range.start); + left = this.body.util.toScreen(range.end); + } else { + left = this.body.util.toScreen(range.start); + right = this.body.util.toScreen(range.end); + } + + var ids = []; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + var rawVisibleItems = group.isVisible ? group.visibleItems : []; // filter the "raw" set with visibleItems into a set which is really + // visible by pixels + + var _iteratorNormalCompletion3 = true; + var _didIteratorError3 = false; + var _iteratorError3 = undefined; + + try { + for (var _iterator3 = getIterator$2(rawVisibleItems), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) { + var item = _step3.value; + + // TODO: also check whether visible vertically + if (this.options.rtl) { + if (item.right < left && item.right + item.width > right) { + ids.push(item.id); + } + } else { + if (item.left < right && item.left + item.width > left) { + ids.push(item.id); + } + } + } + } catch (err) { + _didIteratorError3 = true; + _iteratorError3 = err; + } finally { + try { + if (!_iteratorNormalCompletion3 && _iterator3.return != null) { + _iterator3.return(); + } + } finally { + if (_didIteratorError3) { + throw _iteratorError3; + } + } + } + } + } + + return ids; + } + /** + * Get the id's of the currently visible groups. + * @returns {Array} The ids of the visible groups + */ + + }, { + key: "getVisibleGroups", + value: function getVisibleGroups() { + var ids = []; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + + if (group.isVisible) { + ids.push(groupId); + } + } + } + + return ids; + } + /** + * get item by id + * @param {string} id + * @return {object} item + */ + + }, { + key: "getItemById", + value: function getItemById(id) { + var _context23; + + return this.items[id] || find$2(_context23 = this.clusters).call(_context23, function (cluster) { + return cluster.id === id; + }); + } + /** + * Deselect a selected item + * @param {string | number} id + * @private + */ + + }, { + key: "_deselect", + value: function _deselect(id) { + var selection = this.selection; + + for (var i = 0, ii = selection.length; i < ii; i++) { + if (selection[i] == id) { + // non-strict comparison! + splice$2(selection).call(selection, i, 1); + + break; + } + } + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + var _this4 = this; + + var margin = this.options.margin; + var range = this.body.range; + var asSize = util$2.option.asSize; + var options = this.options; + var orientation = options.orientation.item; + var resized = false; + var frame = this.dom.frame; // recalculate absolute position (before redrawing groups) + + this.props.top = this.body.domProps.top.height + this.body.domProps.border.top; + + if (this.options.rtl) { + this.props.right = this.body.domProps.right.width + this.body.domProps.border.right; + } else { + this.props.left = this.body.domProps.left.width + this.body.domProps.border.left; + } // update class name + + + frame.className = 'vis-itemset'; + + if (this.options.cluster) { + this._clusterItems(); + } // reorder the groups (if needed) + + + resized = this._orderGroups() || resized; // check whether zoomed (in that case we need to re-stack everything) + // TODO: would be nicer to get this as a trigger from Range + + var visibleInterval = range.end - range.start; + var zoomed = visibleInterval != this.lastVisibleInterval || this.props.width != this.props.lastWidth; + var scrolled = range.start != this.lastRangeStart; + var changedStackOption = options.stack != this.lastStack; + var changedStackSubgroupsOption = options.stackSubgroups != this.lastStackSubgroups; + var forceRestack = zoomed || scrolled || changedStackOption || changedStackSubgroupsOption; + this.lastVisibleInterval = visibleInterval; + this.lastRangeStart = range.start; + this.lastStack = options.stack; + this.lastStackSubgroups = options.stackSubgroups; + this.props.lastWidth = this.props.width; + + var firstGroup = this._firstGroup(); + + var firstMargin = { + item: margin.item, + axis: margin.axis + }; + var nonFirstMargin = { + item: margin.item, + axis: margin.item.vertical / 2 + }; + var height = 0; + var minHeight = margin.axis + margin.item.vertical; // redraw the background group + + this.groups[BACKGROUND$2].redraw(range, nonFirstMargin, forceRestack); + var redrawQueue = {}; + var redrawQueueLength = 0; // collect redraw functions + + forEach$3(util$2).call(util$2, this.groups, function (group, key) { + if (key === BACKGROUND$2) return; + var groupMargin = group == firstGroup ? firstMargin : nonFirstMargin; + var returnQueue = true; + redrawQueue[key] = group.redraw(range, groupMargin, forceRestack, returnQueue); + redrawQueueLength = redrawQueue[key].length; + }); + + var needRedraw = redrawQueueLength > 0; + + if (needRedraw) { + (function () { + var redrawResults = {}; + + var _loop = function _loop(i) { + forEach$3(util$2).call(util$2, redrawQueue, function (fns, key) { + redrawResults[key] = fns[i](); + }); + }; + + for (var i = 0; i < redrawQueueLength; i++) { + _loop(i); + } // redraw all regular groups + + + forEach$3(util$2).call(util$2, _this4.groups, function (group, key) { + if (key === BACKGROUND$2) return; + var groupResized = redrawResults[key]; + resized = groupResized || resized; + height += group.height; + }); + + height = Math.max(height, minHeight); + })(); + } + + height = Math.max(height, minHeight); // update frame height + + frame.style.height = asSize(height); // calculate actual size + + this.props.width = frame.offsetWidth; + this.props.height = height; // reposition axis + + this.dom.axis.style.top = asSize(orientation == 'top' ? this.body.domProps.top.height + this.body.domProps.border.top : this.body.domProps.top.height + this.body.domProps.centerContainer.height); + + if (this.options.rtl) { + this.dom.axis.style.right = '0'; + } else { + this.dom.axis.style.left = '0'; + } + + this.initialItemSetDrawn = true; // check if this component is resized + + resized = this._isResized() || resized; + return resized; + } + /** + * Get the first group, aligned with the axis + * @return {Group | null} firstGroup + * @private + */ + + }, { + key: "_firstGroup", + value: function _firstGroup() { + var firstGroupIndex = this.options.orientation.item == 'top' ? 0 : this.groupIds.length - 1; + var firstGroupId = this.groupIds[firstGroupIndex]; + var firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED$2]; + return firstGroup || null; + } + /** + * Create or delete the group holding all ungrouped items. This group is used when + * there are no groups specified. + * @protected + */ + + }, { + key: "_updateUngrouped", + value: function _updateUngrouped() { + var ungrouped = this.groups[UNGROUPED$2]; + var item; + var itemId; + + if (this.groupsData) { + // remove the group holding all ungrouped items + if (ungrouped) { + ungrouped.hide(); + delete this.groups[UNGROUPED$2]; + + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + item.parent && item.parent.remove(item); + var groupId = this.getGroupId(item.data); + var group = this.groups[groupId]; + group && group.add(item) || item.hide(); + } + } + } + } else { + // create a group holding all (unfiltered) items + if (!ungrouped) { + var id = null; + var data = null; + ungrouped = new Group(id, data, this); + this.groups[UNGROUPED$2] = ungrouped; + + for (itemId in this.items) { + if (this.items.hasOwnProperty(itemId)) { + item = this.items[itemId]; + ungrouped.add(item); + } + } + + ungrouped.show(); + } + } + } + /** + * Get the element for the labelset + * @return {HTMLElement} labelSet + */ + + }, { + key: "getLabelSet", + value: function getLabelSet() { + return this.dom.labelSet; + } + /** + * Set items + * @param {vis.DataSet | null} items + */ + + }, { + key: "setItems", + value: function setItems(items) { + this.itemsSettingTime = new Date(); + var me = this; + var ids; + var oldItemsData = this.itemsData; // replace the dataset + + if (!items) { + this.itemsData = null; + } else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (oldItemsData) { + // unsubscribe from old dataset + forEach$3(util$2).call(util$2, this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); // remove all drawn items + + + ids = oldItemsData.getIds(); + + this._onRemove(ids); + } + + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + + forEach$3(util$2).call(util$2, this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); // add all new items + + + ids = this.itemsData.getIds(); + + this._onAdd(ids); // update the group holding all ungrouped items + + + this._updateUngrouped(); + } + + this.body.emitter.emit('_change', { + queue: true + }); + } + /** + * Get the current items + * @returns {vis.DataSet | null} + */ + + }, { + key: "getItems", + value: function getItems() { + return this.itemsData; + } + /** + * Set groups + * @param {vis.DataSet} groups + */ + + }, { + key: "setGroups", + value: function setGroups(groups) { + var me = this; + var ids; // unsubscribe from current dataset + + if (this.groupsData) { + forEach$3(util$2).call(util$2, this.groupListeners, function (callback, event) { + me.groupsData.off(event, callback); + }); // remove all drawn groups + + + ids = this.groupsData.getIds(); + this.groupsData = null; + + this._onRemoveGroups(ids); // note: this will cause a redraw + + } // replace the dataset + + + if (!groups) { + this.groupsData = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + var _context24; + + // go over all groups nesting + var groupsData = this.groupsData; + + if (this.groupsData instanceof DataView) { + groupsData = this.groupsData.getDataSet(); + } + + forEach$3(_context24 = groupsData.get()).call(_context24, function (group) { + if (group.nestedGroups) { + var _context25; + + forEach$3(_context25 = group.nestedGroups).call(_context25, function (nestedGroupId) { + var updatedNestedGroup = groupsData.get(nestedGroupId); + updatedNestedGroup.nestedInGroup = group.id; + + if (group.showNested == false) { + updatedNestedGroup.visible = false; + } + + groupsData.update(updatedNestedGroup); + }); + } + }); // subscribe to new dataset + + + var id = this.id; + + forEach$3(util$2).call(util$2, this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); // draw all ms + + + ids = this.groupsData.getIds(); + + this._onAddGroups(ids); + } // update the group holding all ungrouped items + + + this._updateUngrouped(); // update the order of all items in each group + + + this._order(); + + if (this.options.cluster) { + this.clusterGenerator.updateData(); + + this._clusterItems(); + + this.markDirty({ + refreshItems: true, + restackGroups: true + }); + } + + this.body.emitter.emit('_change', { + queue: true + }); + } + /** + * Get the current groups + * @returns {vis.DataSet | null} groups + */ + + }, { + key: "getGroups", + value: function getGroups() { + return this.groupsData; + } + /** + * Remove an item by its id + * @param {string | number} id + */ + + }, { + key: "removeItem", + value: function removeItem(id) { + var item = this.itemsData.get(id); + var dataset = this.itemsData.getDataSet(); + + if (item) { + // confirm deletion + this.options.onRemove(item, function (item) { + if (item) { + // remove by id here, it is possible that an item has no id defined + // itself, so better not delete by the item itself + dataset.remove(id); + } + }); + } + } + /** + * Get the time of an item based on it's data and options.type + * @param {Object} itemData + * @returns {string} Returns the type + * @private + */ + + }, { + key: "_getType", + value: function _getType(itemData) { + return itemData.type || this.options.type || (itemData.end ? 'range' : 'box'); + } + /** + * Get the group id for an item + * @param {Object} itemData + * @returns {string} Returns the groupId + * @private + */ + + }, { + key: "getGroupId", + value: function getGroupId(itemData) { + var type = this._getType(itemData); + + if (type == 'background' && itemData.group == undefined) { + return BACKGROUND$2; + } else { + return this.groupsData ? itemData.group : UNGROUPED$2; + } + } + /** + * Handle updated items + * @param {number[]} ids + * @protected + */ + + }, { + key: "_onUpdate", + value: function _onUpdate(ids) { + var _this5 = this; + + var me = this; + + forEach$3(ids).call(ids, function (id) { + var itemData = me.itemsData.get(id, me.itemOptions); + var item = me.items[id]; + var type = itemData ? me._getType(itemData) : null; + var constructor = ItemSet.types[type]; + var selected; + + if (item) { + // update item + if (!constructor || !(item instanceof constructor)) { + // item type has changed, delete the item and recreate it + selected = item.selected; // preserve selection of this item + + me._removeItem(item); + + item = null; + } else { + me._updateItem(item, itemData); + } + } + + if (!item && itemData) { + // create item + if (constructor) { + item = new constructor(itemData, me.conversion, me.options); + item.id = id; // TODO: not so nice setting id afterwards + + me._addItem(item); + + if (selected) { + _this5.selection.push(id); + + item.select(); + } + } else { + throw new TypeError("Unknown item type \"".concat(type, "\"")); + } + } + }); + + this._order(); + + if (this.options.cluster) { + this.clusterGenerator.setItems(this.items, { + applyOnChangedLevel: false + }); + + this._clusterItems(); + } + + this.body.emitter.emit('_change', { + queue: true + }); + } + /** + * Handle removed items + * @param {number[]} ids + * @protected + */ + + }, { + key: "_onRemove", + value: function _onRemove(ids) { + var count = 0; + var me = this; + + forEach$3(ids).call(ids, function (id) { + var item = me.items[id]; + + if (item) { + count++; + + me._removeItem(item); + } + }); + + if (count) { + // update order + this._order(); + + this.body.emitter.emit('_change', { + queue: true + }); + } + } + /** + * Update the order of item in all groups + * @private + */ + + }, { + key: "_order", + value: function _order() { + // reorder the items in all groups + // TODO: optimization: only reorder groups affected by the changed items + forEach$3(util$2).call(util$2, this.groups, function (group) { + group.order(); + }); + } + /** + * Handle updated groups + * @param {number[]} ids + * @private + */ + + }, { + key: "_onUpdateGroups", + value: function _onUpdateGroups(ids) { + this._onAddGroups(ids); + } + /** + * Handle changed groups (added or updated) + * @param {number[]} ids + * @private + */ + + }, { + key: "_onAddGroups", + value: function _onAddGroups(ids) { + var me = this; + + forEach$3(ids).call(ids, function (id) { + var groupData = me.groupsData.get(id); + var group = me.groups[id]; + + if (!group) { + // check for reserved ids + if (id == UNGROUPED$2 || id == BACKGROUND$2) { + throw new Error("Illegal group id. ".concat(id, " is a reserved id.")); + } + + var groupOptions = create$4(me.options); + + util$2.extend(groupOptions, { + height: null + }); + group = new Group(id, groupData, me); + me.groups[id] = group; // add items with this groupId to the new group + + for (var itemId in me.items) { + if (me.items.hasOwnProperty(itemId)) { + var item = me.items[itemId]; + + if (item.data.group == id) { + group.add(item); + } + } + } + + group.order(); + group.show(); + } else { + // update group + group.setData(groupData); + } + }); + + this.body.emitter.emit('_change', { + queue: true + }); + } + /** + * Handle removed groups + * @param {number[]} ids + * @private + */ + + }, { + key: "_onRemoveGroups", + value: function _onRemoveGroups(ids) { + var groups = this.groups; + + forEach$3(ids).call(ids, function (id) { + var group = groups[id]; + + if (group) { + group.hide(); + delete groups[id]; + } + }); + + if (this.options.cluster) { + this.clusterGenerator.updateData(); + + this._clusterItems(); + } + + this.markDirty({ + restackGroups: !!this.options.cluster + }); + this.body.emitter.emit('_change', { + queue: true + }); + } + /** + * Reorder the groups if needed + * @return {boolean} changed + * @private + */ + + }, { + key: "_orderGroups", + value: function _orderGroups() { + if (this.groupsData) { + // reorder the groups + var groupIds = this.groupsData.getIds({ + order: this.options.groupOrder + }); + groupIds = this._orderNestedGroups(groupIds); + var changed = !util$2.equalArray(groupIds, this.groupIds); + + if (changed) { + // hide all groups, removes them from the DOM + var groups = this.groups; + + forEach$3(groupIds).call(groupIds, function (groupId) { + groups[groupId].hide(); + }); // show the groups again, attach them to the DOM in correct order + + + forEach$3(groupIds).call(groupIds, function (groupId) { + groups[groupId].show(); + }); + + this.groupIds = groupIds; + } + + return changed; + } else { + return false; + } + } + /** + * Reorder the nested groups + * + * @param {Array.} groupIds + * @returns {Array.} + * @private + */ + + }, { + key: "_orderNestedGroups", + value: function _orderNestedGroups(groupIds) { + var _this6 = this; + + /** + * Recursively order nested groups + * + * @param {ItemSet} t + * @param {Array.} groupIds + * @returns {Array.} + * @private + */ + function getOrderedNestedGroups(t, groupIds) { + var result = []; + + forEach$3(groupIds).call(groupIds, function (groupId) { + result.push(groupId); + var groupData = t.groupsData.get(groupId); + + if (groupData.nestedGroups) { + var _context26; + + var nestedGroupIds = map$2(_context26 = t.groupsData.get({ + filter: function filter(nestedGroup) { + return nestedGroup.nestedInGroup == groupId; + }, + order: t.options.groupOrder + })).call(_context26, function (nestedGroup) { + return nestedGroup.id; + }); + + result = concat$2(result).call(result, getOrderedNestedGroups(t, nestedGroupIds)); + } + }); + + return result; + } + + var topGroupIds = filter$2(groupIds).call(groupIds, function (groupId) { + return !_this6.groupsData.get(groupId).nestedInGroup; + }); + + return getOrderedNestedGroups(this, topGroupIds); + } + /** + * Add a new item + * @param {Item} item + * @private + */ + + }, { + key: "_addItem", + value: function _addItem(item) { + this.items[item.id] = item; // add to group + + var groupId = this.getGroupId(item.data); + var group = this.groups[groupId]; + + if (!group) { + item.groupShowing = false; + } else if (group && group.data && group.data.showNested) { + item.groupShowing = true; + } + + if (group) group.add(item); + } + /** + * Update an existing item + * @param {Item} item + * @param {Object} itemData + * @private + */ + + }, { + key: "_updateItem", + value: function _updateItem(item, itemData) { + // update the items data (will redraw the item when displayed) + item.setData(itemData); + var groupId = this.getGroupId(item.data); + var group = this.groups[groupId]; + + if (!group) { + item.groupShowing = false; + } else if (group && group.data && group.data.showNested) { + item.groupShowing = true; + } + } + /** + * Delete an item from the ItemSet: remove it from the DOM, from the map + * with items, and from the map with visible items, and from the selection + * @param {Item} item + * @private + */ + + }, { + key: "_removeItem", + value: function _removeItem(item) { + var _context27, _context28; + + // remove from DOM + item.hide(); // remove from items + + delete this.items[item.id]; // remove from selection + + var index = indexOf$3(_context27 = this.selection).call(_context27, item.id); + + if (index != -1) splice$2(_context28 = this.selection).call(_context28, index, 1); // remove from group + + item.parent && item.parent.remove(item); // remove Tooltip from DOM + + if (this.popup != null) { + this.popup.hide(); + } + } + /** + * Create an array containing all items being a range (having an end date) + * @param {Array.} array + * @returns {Array} + * @private + */ + + }, { + key: "_constructByEndArray", + value: function _constructByEndArray(array) { + var endArray = []; + + for (var i = 0; i < array.length; i++) { + if (array[i] instanceof RangeItem) { + endArray.push(array[i]); + } + } + + return endArray; + } + /** + * Register the clicked item on touch, before dragStart is initiated. + * + * dragStart is initiated from a mousemove event, AFTER the mouse/touch is + * already moving. Therefore, the mouse/touch can sometimes be above an other + * DOM element than the item itself. + * + * @param {Event} event + * @private + */ + + }, { + key: "_onTouch", + value: function _onTouch(event) { + // store the touched item, used in _onDragStart + this.touchParams.item = this.itemFromTarget(event); + this.touchParams.dragLeftItem = event.target.dragLeftItem || false; + this.touchParams.dragRightItem = event.target.dragRightItem || false; + this.touchParams.itemProps = null; + } + /** + * Given an group id, returns the index it has. + * + * @param {number} groupId + * @returns {number} index / groupId + * @private + */ + + }, { + key: "_getGroupIndex", + value: function _getGroupIndex(groupId) { + for (var i = 0; i < this.groupIds.length; i++) { + if (groupId == this.groupIds[i]) return i; + } + } + /** + * Start dragging the selected events + * @param {Event} event + * @private + */ + + }, { + key: "_onDragStart", + value: function _onDragStart(event) { + var _this7 = this; + + if (this.touchParams.itemIsDragging) { + return; + } + + var item = this.touchParams.item || null; + var me = this; + var props; + + if (item && (item.selected || this.options.itemsAlwaysDraggable.item)) { + if (this.options.editable.overrideItems && !this.options.editable.updateTime && !this.options.editable.updateGroup) { + return; + } // override options.editable + + + if (item.editable != null && !item.editable.updateTime && !item.editable.updateGroup && !this.options.editable.overrideItems) { + return; + } + + var dragLeftItem = this.touchParams.dragLeftItem; + var dragRightItem = this.touchParams.dragRightItem; + this.touchParams.itemIsDragging = true; + this.touchParams.selectedItem = item; + + if (dragLeftItem) { + props = { + item: dragLeftItem, + initialX: event.center.x, + dragLeft: true, + data: this._cloneItemData(item.data) + }; + this.touchParams.itemProps = [props]; + } else if (dragRightItem) { + props = { + item: dragRightItem, + initialX: event.center.x, + dragRight: true, + data: this._cloneItemData(item.data) + }; + this.touchParams.itemProps = [props]; + } else if (this.options.editable.add && (event.srcEvent.ctrlKey || event.srcEvent.metaKey)) { + // create a new range item when dragging with ctrl key down + this._onDragStartAddItem(event); + } else { + if (this.groupIds.length < 1) { + // Mitigates a race condition if _onDragStart() is + // called after markDirty() without redraw() being called between. + this.redraw(); + } + + var baseGroupIndex = this._getGroupIndex(item.data.group); + + var itemsToDrag = this.options.itemsAlwaysDraggable.item && !item.selected ? [item.id] : this.getSelection(); + this.touchParams.itemProps = map$2(itemsToDrag).call(itemsToDrag, function (id) { + var item = me.items[id]; + + var groupIndex = me._getGroupIndex(item.data.group); + + return { + item: item, + initialX: event.center.x, + groupOffset: baseGroupIndex - groupIndex, + data: _this7._cloneItemData(item.data) + }; + }); + } + + event.stopPropagation(); + } else if (this.options.editable.add && (event.srcEvent.ctrlKey || event.srcEvent.metaKey)) { + // create a new range item when dragging with ctrl key down + this._onDragStartAddItem(event); + } + } + /** + * Start creating a new range item by dragging. + * @param {Event} event + * @private + */ + + }, { + key: "_onDragStartAddItem", + value: function _onDragStartAddItem(event) { + var snap = this.options.snap || null; + var frameRect = this.dom.frame.getBoundingClientRect(); // plus (if rtl) 10 to compensate for the drag starting as soon as you've moved 10px + + var x = this.options.rtl ? frameRect.right - event.center.x + 10 : event.center.x - frameRect.left - 10; + var time = this.body.util.toTime(x); + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + var start = snap ? snap(time, scale, step) : time; + var end = start; + var itemData = { + type: 'range', + start: start, + end: end, + content: 'new item' + }; + var id = util$2.randomUUID(); + itemData[this.itemsData._idProp] = id; + var group = this.groupFromTarget(event); + + if (group) { + itemData.group = group.groupId; + } + + var newItem = new RangeItem(itemData, this.conversion, this.options); + newItem.id = id; // TODO: not so nice setting id afterwards + + newItem.data = this._cloneItemData(itemData); + + this._addItem(newItem); + + this.touchParams.selectedItem = newItem; + var props = { + item: newItem, + initialX: event.center.x, + data: newItem.data + }; + + if (this.options.rtl) { + props.dragLeft = true; + } else { + props.dragRight = true; + } + + this.touchParams.itemProps = [props]; + event.stopPropagation(); + } + /** + * Drag selected items + * @param {Event} event + * @private + */ + + }, { + key: "_onDrag", + value: function _onDrag(event) { + var _this8 = this; + + if (this.popup != null && this.options.showTooltips && !this.popup.hidden) { + // this.popup.hide(); + var container = this.body.dom.centerContainer; + var containerRect = container.getBoundingClientRect(); + this.popup.setPosition(event.center.x - containerRect.left + container.offsetLeft, event.center.y - containerRect.top + container.offsetTop); + this.popup.show(); // redraw + } + + if (this.touchParams.itemProps) { + var _context29; + + event.stopPropagation(); + var me = this; + var snap = this.options.snap || null; + var domRootOffsetLeft = this.body.dom.root.offsetLeft; + var xOffset = this.options.rtl ? domRootOffsetLeft + this.body.domProps.right.width : domRootOffsetLeft + this.body.domProps.left.width; + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); //only calculate the new group for the item that's actually dragged + + var selectedItem = this.touchParams.selectedItem; + var updateGroupAllowed = (this.options.editable.overrideItems || selectedItem.editable == null) && this.options.editable.updateGroup || !this.options.editable.overrideItems && selectedItem.editable != null && selectedItem.editable.updateGroup; + var newGroupBase = null; + + if (updateGroupAllowed && selectedItem) { + if (selectedItem.data.group != undefined) { + // drag from one group to another + var group = me.groupFromTarget(event); + + if (group) { + //we know the offset for all items, so the new group for all items + //will be relative to this one. + newGroupBase = this._getGroupIndex(group.groupId); + } + } + } // move + + + forEach$3(_context29 = this.touchParams.itemProps).call(_context29, function (props) { + var current = me.body.util.toTime(event.center.x - xOffset); + var initial = me.body.util.toTime(props.initialX - xOffset); + var offset; + var initialStart; + var initialEnd; + var start; + var end; + + if (_this8.options.rtl) { + offset = -(current - initial); // ms + } else { + offset = current - initial; // ms + } + + var itemData = _this8._cloneItemData(props.item.data); // clone the data + + + if (props.item.editable != null && !props.item.editable.updateTime && !props.item.editable.updateGroup && !me.options.editable.overrideItems) { + return; + } + + var updateTimeAllowed = (_this8.options.editable.overrideItems || selectedItem.editable == null) && _this8.options.editable.updateTime || !_this8.options.editable.overrideItems && selectedItem.editable != null && selectedItem.editable.updateTime; + + if (updateTimeAllowed) { + if (props.dragLeft) { + // drag left side of a range item + if (_this8.options.rtl) { + if (itemData.end != undefined) { + initialEnd = util$2.convert(props.data.end, 'Date'); + end = new Date(initialEnd.valueOf() + offset); // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + + itemData.end = snap ? snap(end, scale, step) : end; + } + } else { + if (itemData.start != undefined) { + initialStart = util$2.convert(props.data.start, 'Date'); + start = new Date(initialStart.valueOf() + offset); // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + + itemData.start = snap ? snap(start, scale, step) : start; + } + } + } else if (props.dragRight) { + // drag right side of a range item + if (_this8.options.rtl) { + if (itemData.start != undefined) { + initialStart = util$2.convert(props.data.start, 'Date'); + start = new Date(initialStart.valueOf() + offset); // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + + itemData.start = snap ? snap(start, scale, step) : start; + } + } else { + if (itemData.end != undefined) { + initialEnd = util$2.convert(props.data.end, 'Date'); + end = new Date(initialEnd.valueOf() + offset); // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + + itemData.end = snap ? snap(end, scale, step) : end; + } + } + } else { + // drag both start and end + if (itemData.start != undefined) { + initialStart = util$2.convert(props.data.start, 'Date').valueOf(); + start = new Date(initialStart + offset); + + if (itemData.end != undefined) { + initialEnd = util$2.convert(props.data.end, 'Date'); + var duration = initialEnd.valueOf() - initialStart.valueOf(); // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + + itemData.start = snap ? snap(start, scale, step) : start; + itemData.end = new Date(itemData.start.valueOf() + duration); + } else { + // TODO: pass a Moment instead of a Date to snap(). (Breaking change) + itemData.start = snap ? snap(start, scale, step) : start; + } + } + } + } + + if (updateGroupAllowed && !props.dragLeft && !props.dragRight && newGroupBase != null) { + if (itemData.group != undefined) { + var newOffset = newGroupBase - props.groupOffset; //make sure we stay in bounds + + newOffset = Math.max(0, newOffset); + newOffset = Math.min(me.groupIds.length - 1, newOffset); + itemData.group = me.groupIds[newOffset]; + } + } // confirm moving the item + + + itemData = _this8._cloneItemData(itemData); // convert start and end to the correct type + + me.options.onMoving(itemData, function (itemData) { + if (itemData) { + props.item.setData(_this8._cloneItemData(itemData, 'Date')); + } + }); + }); + + this.body.emitter.emit('_change'); + } + } + /** + * Move an item to another group + * @param {Item} item + * @param {string | number} groupId + * @private + */ + + }, { + key: "_moveToGroup", + value: function _moveToGroup(item, groupId) { + var group = this.groups[groupId]; + + if (group && group.groupId != item.data.group) { + var oldGroup = item.parent; + oldGroup.remove(item); + oldGroup.order(); + item.data.group = group.groupId; + group.add(item); + group.order(); + } + } + /** + * End of dragging selected items + * @param {Event} event + * @private + */ + + }, { + key: "_onDragEnd", + value: function _onDragEnd(event) { + var _this9 = this; + + this.touchParams.itemIsDragging = false; + + if (this.touchParams.itemProps) { + event.stopPropagation(); + var me = this; + var dataset = this.itemsData.getDataSet(); + var itemProps = this.touchParams.itemProps; + this.touchParams.itemProps = null; + + forEach$3(itemProps).call(itemProps, function (props) { + var id = props.item.id; + var exists = me.itemsData.get(id, me.itemOptions) != null; + + if (!exists) { + // add a new item + me.options.onAdd(props.item.data, function (itemData) { + me._removeItem(props.item); // remove temporary item + + + if (itemData) { + me.itemsData.getDataSet().add(itemData); + } // force re-stacking of all items next redraw + + + me.body.emitter.emit('_change'); + }); + } else { + // update existing item + var itemData = _this9._cloneItemData(props.item.data); // convert start and end to the correct type + + + me.options.onMove(itemData, function (itemData) { + if (itemData) { + // apply changes + itemData[dataset._idProp] = id; // ensure the item contains its id (can be undefined) + + dataset.update(itemData); + } else { + // restore original values + props.item.setData(props.data); + me.body.emitter.emit('_change'); + } + }); + } + }); + } + } + /** + * On group click + * @param {Event} event + * @private + */ + + }, { + key: "_onGroupClick", + value: function _onGroupClick(event) { + var _this10 = this; + + var group = this.groupFromTarget(event); + + setTimeout$2(function () { + _this10.toggleGroupShowNested(group); + }, 1); + } + /** + * Toggle show nested + * @param {object} group + * @param {boolean} force + */ + + }, { + key: "toggleGroupShowNested", + value: function toggleGroupShowNested(group) { + var _context30; + + var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : undefined; + if (!group || !group.nestedGroups) return; + var groupsData = this.groupsData.getDataSet(); + + if (force != undefined) { + group.showNested = !!force; + } else { + group.showNested = !group.showNested; + } + + var nestingGroup = groupsData.get(group.groupId); + nestingGroup.showNested = group.showNested; + var fullNestedGroups = group.nestedGroups; + var nextLevel = fullNestedGroups; + + while (nextLevel.length > 0) { + var current = nextLevel; + nextLevel = []; + + for (var i = 0; i < current.length; i++) { + var node = groupsData.get(current[i]); + + if (node.nestedGroups) { + nextLevel = concat$2(nextLevel).call(nextLevel, node.nestedGroups); + } + } + + if (nextLevel.length > 0) { + fullNestedGroups = concat$2(fullNestedGroups).call(fullNestedGroups, nextLevel); + } + } + + var nestedGroups = map$2(_context30 = groupsData.get(fullNestedGroups)).call(_context30, function (nestedGroup) { + if (nestedGroup.visible == undefined) { + nestedGroup.visible = true; + } + + nestedGroup.visible = !!nestingGroup.showNested; + return nestedGroup; + }); + + groupsData.update(concat$2(nestedGroups).call(nestedGroups, nestingGroup)); + + if (nestingGroup.showNested) { + util$2.removeClassName(group.dom.label, 'collapsed'); + util$2.addClassName(group.dom.label, 'expanded'); + } else { + util$2.removeClassName(group.dom.label, 'expanded'); + util$2.addClassName(group.dom.label, 'collapsed'); + } + } + /** + * Toggle group drag classname + * @param {object} group + */ + + }, { + key: "toggleGroupDragClassName", + value: function toggleGroupDragClassName(group) { + group.dom.label.classList.toggle('vis-group-is-dragging'); + group.dom.foreground.classList.toggle('vis-group-is-dragging'); + } + /** + * on drag start + * @param {Event} event + * @return {void} + * @private + */ + + }, { + key: "_onGroupDragStart", + value: function _onGroupDragStart(event) { + if (this.groupTouchParams.isDragging) return; + + if (this.options.groupEditable.order) { + this.groupTouchParams.group = this.groupFromTarget(event); + + if (this.groupTouchParams.group) { + event.stopPropagation(); + this.groupTouchParams.isDragging = true; + this.toggleGroupDragClassName(this.groupTouchParams.group); + this.groupTouchParams.originalOrder = this.groupsData.getIds({ + order: this.options.groupOrder + }); + } + } + } + /** + * on drag + * @param {Event} event + * @return {void} + * @private + */ + + }, { + key: "_onGroupDrag", + value: function _onGroupDrag(event) { + if (this.options.groupEditable.order && this.groupTouchParams.group) { + event.stopPropagation(); + var groupsData = this.groupsData; + + if (this.groupsData instanceof DataView) { + groupsData = this.groupsData.getDataSet(); + } // drag from one group to another + + + var group = this.groupFromTarget(event); // try to avoid toggling when groups differ in height + + if (group && group.height != this.groupTouchParams.group.height) { + var movingUp = group.top < this.groupTouchParams.group.top; + var clientY = event.center ? event.center.y : event.clientY; + var targetGroup = group.dom.foreground.getBoundingClientRect(); + var draggedGroupHeight = this.groupTouchParams.group.height; + + if (movingUp) { + // skip swapping the groups when the dragged group is not below clientY afterwards + if (targetGroup.top + draggedGroupHeight < clientY) { + return; + } + } else { + var targetGroupHeight = group.height; // skip swapping the groups when the dragged group is not below clientY afterwards + + if (targetGroup.top + targetGroupHeight - draggedGroupHeight > clientY) { + return; + } + } + } + + if (group && group != this.groupTouchParams.group) { + var _targetGroup = groupsData.get(group.groupId); + + var draggedGroup = groupsData.get(this.groupTouchParams.group.groupId); // switch groups + + if (draggedGroup && _targetGroup) { + this.options.groupOrderSwap(draggedGroup, _targetGroup, groupsData); + groupsData.update(draggedGroup); + groupsData.update(_targetGroup); + } // fetch current order of groups + + + var newOrder = groupsData.getIds({ + order: this.options.groupOrder + }); // in case of changes since _onGroupDragStart + + if (!util$2.equalArray(newOrder, this.groupTouchParams.originalOrder)) { + var origOrder = this.groupTouchParams.originalOrder; + var draggedId = this.groupTouchParams.group.groupId; + var numGroups = Math.min(origOrder.length, newOrder.length); + var curPos = 0; + var newOffset = 0; + var orgOffset = 0; + + while (curPos < numGroups) { + // as long as the groups are where they should be step down along the groups order + while (curPos + newOffset < numGroups && curPos + orgOffset < numGroups && newOrder[curPos + newOffset] == origOrder[curPos + orgOffset]) { + curPos++; + } // all ok + + + if (curPos + newOffset >= numGroups) { + break; + } // not all ok + // if dragged group was move upwards everything below should have an offset + + + if (newOrder[curPos + newOffset] == draggedId) { + newOffset = 1; + } // if dragged group was move downwards everything above should have an offset + else if (origOrder[curPos + orgOffset] == draggedId) { + orgOffset = 1; + } // found a group (apart from dragged group) that has the wrong position -> switch with the + // group at the position where other one should be, fix index arrays and continue + else { + var slippedPosition = indexOf$3(newOrder).call(newOrder, origOrder[curPos + orgOffset]); + + var switchGroup = groupsData.get(newOrder[curPos + newOffset]); + var shouldBeGroup = groupsData.get(origOrder[curPos + orgOffset]); + this.options.groupOrderSwap(switchGroup, shouldBeGroup, groupsData); + groupsData.update(switchGroup); + groupsData.update(shouldBeGroup); + var switchGroupId = newOrder[curPos + newOffset]; + newOrder[curPos + newOffset] = origOrder[curPos + orgOffset]; + newOrder[slippedPosition] = switchGroupId; + curPos++; + } + } + } + } + } + } + /** + * on drag end + * @param {Event} event + * @return {void} + * @private + */ + + }, { + key: "_onGroupDragEnd", + value: function _onGroupDragEnd(event) { + this.groupTouchParams.isDragging = false; + + if (this.options.groupEditable.order && this.groupTouchParams.group) { + event.stopPropagation(); // update existing group + + var me = this; + var id = me.groupTouchParams.group.groupId; + var dataset = me.groupsData.getDataSet(); + var groupData = util$2.extend({}, dataset.get(id)); // clone the data + + me.options.onMoveGroup(groupData, function (groupData) { + if (groupData) { + // apply changes + groupData[dataset._idProp] = id; // ensure the group contains its id (can be undefined) + + dataset.update(groupData); + } else { + // fetch current order of groups + var newOrder = dataset.getIds({ + order: me.options.groupOrder + }); // restore original order + + if (!util$2.equalArray(newOrder, me.groupTouchParams.originalOrder)) { + var origOrder = me.groupTouchParams.originalOrder; + var numGroups = Math.min(origOrder.length, newOrder.length); + var curPos = 0; + + while (curPos < numGroups) { + // as long as the groups are where they should be step down along the groups order + while (curPos < numGroups && newOrder[curPos] == origOrder[curPos]) { + curPos++; + } // all ok + + + if (curPos >= numGroups) { + break; + } // found a group that has the wrong position -> switch with the + // group at the position where other one should be, fix index arrays and continue + + + var slippedPosition = indexOf$3(newOrder).call(newOrder, origOrder[curPos]); + + var switchGroup = dataset.get(newOrder[curPos]); + var shouldBeGroup = dataset.get(origOrder[curPos]); + me.options.groupOrderSwap(switchGroup, shouldBeGroup, dataset); + dataset.update(switchGroup); + dataset.update(shouldBeGroup); + var switchGroupId = newOrder[curPos]; + newOrder[curPos] = origOrder[curPos]; + newOrder[slippedPosition] = switchGroupId; + curPos++; + } + } + } + }); + me.body.emitter.emit('groupDragged', { + groupId: id + }); + this.toggleGroupDragClassName(this.groupTouchParams.group); + this.groupTouchParams.group = null; + } + } + /** + * Handle selecting/deselecting an item when tapping it + * @param {Event} event + * @private + */ + + }, { + key: "_onSelectItem", + value: function _onSelectItem(event) { + if (!this.options.selectable) return; + var ctrlKey = event.srcEvent && (event.srcEvent.ctrlKey || event.srcEvent.metaKey); + var shiftKey = event.srcEvent && event.srcEvent.shiftKey; + + if (ctrlKey || shiftKey) { + this._onMultiSelectItem(event); + + return; + } + + var oldSelection = this.getSelection(); + var item = this.itemFromTarget(event); + var selection = item && item.selectable ? [item.id] : []; + this.setSelection(selection); + var newSelection = this.getSelection(); // emit a select event, + // except when old selection is empty and new selection is still empty + + if (newSelection.length > 0 || oldSelection.length > 0) { + this.body.emitter.emit('select', { + items: newSelection, + event: event + }); + } + } + /** + * Handle hovering an item + * @param {Event} event + * @private + */ + + }, { + key: "_onMouseOver", + value: function _onMouseOver(event) { + var item = this.itemFromTarget(event); + if (!item) return; // Item we just left + + var related = this.itemFromRelatedTarget(event); + + if (item === related) { + // We haven't changed item, just element in the item + return; + } + + var title = item.getTitle(); + + if (this.options.showTooltips && title) { + if (this.popup == null) { + this.popup = new Popup(this.body.dom.root, this.options.tooltip.overflowMethod || 'flip'); + } + + this.popup.setText(title); + var container = this.body.dom.centerContainer; + var containerRect = container.getBoundingClientRect(); + this.popup.setPosition(event.clientX - containerRect.left + container.offsetLeft, event.clientY - containerRect.top + container.offsetTop); + this.setPopupTimer(this.popup); + } else { + // Hovering over item without a title, hide popup + // Needed instead of _just_ in _onMouseOut due to #2572 + this.clearPopupTimer(); + + if (this.popup != null) { + this.popup.hide(); + } + } + + this.body.emitter.emit('itemover', { + item: item.id, + event: event + }); + } + /** + * on mouse start + * @param {Event} event + * @return {void} + * @private + */ + + }, { + key: "_onMouseOut", + value: function _onMouseOut(event) { + var item = this.itemFromTarget(event); + if (!item) return; // Item we are going to + + var related = this.itemFromRelatedTarget(event); + + if (item === related) { + // We aren't changing item, just element in the item + return; + } + + this.clearPopupTimer(); + + if (this.popup != null) { + this.popup.hide(); + } + + this.body.emitter.emit('itemout', { + item: item.id, + event: event + }); + } + /** + * on mouse move + * @param {Event} event + * @return {void} + * @private + */ + + }, { + key: "_onMouseMove", + value: function _onMouseMove(event) { + var item = this.itemFromTarget(event); + if (!item) return; + + if (this.popupTimer != null) { + // restart timer + this.setPopupTimer(this.popup); + } + + if (this.options.showTooltips && this.options.tooltip.followMouse && this.popup && !this.popup.hidden) { + var container = this.body.dom.centerContainer; + var containerRect = container.getBoundingClientRect(); + this.popup.setPosition(event.clientX - containerRect.left + container.offsetLeft, event.clientY - containerRect.top + container.offsetTop); + this.popup.show(); // Redraw + } + } + /** + * Handle mousewheel + * @param {Event} event The event + * @private + */ + + }, { + key: "_onMouseWheel", + value: function _onMouseWheel(event) { + if (this.touchParams.itemIsDragging) { + this._onDragEnd(event); + } + } + /** + * Handle updates of an item on double tap + * @param {timeline.Item} item The item + * @private + */ + + }, { + key: "_onUpdateItem", + value: function _onUpdateItem(item) { + if (!this.options.selectable) return; + if (!this.options.editable.updateTime) return; + if (!this.options.editable.updateGroup) return; + var me = this; + + if (item) { + // execute async handler to update the item (or cancel it) + var itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset + + this.options.onUpdate(itemData, function (itemData) { + if (itemData) { + me.itemsData.getDataSet().update(itemData); + } + }); + } + } + /** + * Handle drop event of data on item + * Only called when `objectData.target === 'item'. + * @param {Event} event The event + * @private + */ + + }, { + key: "_onDropObjectOnItem", + value: function _onDropObjectOnItem(event) { + var item = this.itemFromTarget(event); + var objectData = JSON.parse(event.dataTransfer.getData("text")); + this.options.onDropObjectOnItem(objectData, item); + } + /** + * Handle creation of an item on double tap or drop of a drag event + * @param {Event} event The event + * @private + */ + + }, { + key: "_onAddItem", + value: function _onAddItem(event) { + if (!this.options.selectable) return; + if (!this.options.editable.add) return; + var me = this; + var snap = this.options.snap || null; // add item + + var frameRect = this.dom.frame.getBoundingClientRect(); + var x = this.options.rtl ? frameRect.right - event.center.x : event.center.x - frameRect.left; + var start = this.body.util.toTime(x); + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + var end; + var newItemData; + + if (event.type == 'drop') { + newItemData = JSON.parse(event.dataTransfer.getData("text")); + newItemData.content = newItemData.content ? newItemData.content : 'new item'; + newItemData.start = newItemData.start ? newItemData.start : snap ? snap(start, scale, step) : start; + newItemData.type = newItemData.type || 'box'; + newItemData[this.itemsData._idProp] = newItemData.id || util$2.randomUUID(); + + if (newItemData.type == 'range' && !newItemData.end) { + end = this.body.util.toTime(x + this.props.width / 5); + newItemData.end = snap ? snap(end, scale, step) : end; + } + } else { + newItemData = { + start: snap ? snap(start, scale, step) : start, + content: 'new item' + }; + newItemData[this.itemsData._idProp] = util$2.randomUUID(); // when default type is a range, add a default end date to the new item + + if (this.options.type === 'range') { + end = this.body.util.toTime(x + this.props.width / 5); + newItemData.end = snap ? snap(end, scale, step) : end; + } + } + + var group = this.groupFromTarget(event); + + if (group) { + newItemData.group = group.groupId; + } // execute async handler to customize (or cancel) adding an item + + + newItemData = this._cloneItemData(newItemData); // convert start and end to the correct type + + this.options.onAdd(newItemData, function (item) { + if (item) { + me.itemsData.getDataSet().add(item); + + if (event.type == 'drop') { + me.setSelection([item.id]); + } // TODO: need to trigger a redraw? + + } + }); + } + /** + * Handle selecting/deselecting multiple items when holding an item + * @param {Event} event + * @private + */ + + }, { + key: "_onMultiSelectItem", + value: function _onMultiSelectItem(event) { + var _this11 = this; + + if (!this.options.selectable) return; + var item = this.itemFromTarget(event); + + if (item) { + // multi select items (if allowed) + var selection = this.options.multiselect ? this.getSelection() // take current selection + : []; // deselect current selection + + var shiftKey = event.srcEvent && event.srcEvent.shiftKey || false; + + if ((shiftKey || this.options.sequentialSelection) && this.options.multiselect) { + // select all items between the old selection and the tapped item + var itemGroup = this.itemsData.get(item.id).group; // when filtering get the group of the last selected item + + var lastSelectedGroup = undefined; + + if (this.options.multiselectPerGroup) { + if (selection.length > 0) { + lastSelectedGroup = this.itemsData.get(selection[0]).group; + } + } // determine the selection range + + + if (!this.options.multiselectPerGroup || lastSelectedGroup == undefined || lastSelectedGroup == itemGroup) { + selection.push(item.id); + } + + var range = ItemSet._getItemRange(this.itemsData.get(selection, this.itemOptions)); + + if (!this.options.multiselectPerGroup || lastSelectedGroup == itemGroup) { + // select all items within the selection range + selection = []; + + for (var id in this.items) { + if (this.items.hasOwnProperty(id)) { + var _item = this.items[id]; + var start = _item.data.start; + var end = _item.data.end !== undefined ? _item.data.end : start; + + if (start >= range.min && end <= range.max && (!this.options.multiselectPerGroup || lastSelectedGroup == this.itemsData.get(_item.id).group) && !(_item instanceof BackgroundItem)) { + selection.push(_item.id); // do not use id but item.id, id itself is stringified + } + } + } + } + } else { + // add/remove this item from the current selection + var index = indexOf$3(selection).call(selection, item.id); + + if (index == -1) { + // item is not yet selected -> select it + selection.push(item.id); + } else { + // item is already selected -> deselect it + splice$2(selection).call(selection, index, 1); + } + } + + var filteredSelection = filter$2(selection).call(selection, function (item) { + return _this11.getItemById(item).selectable; + }); + + this.setSelection(filteredSelection); + this.body.emitter.emit('select', { + items: this.getSelection(), + event: event + }); + } + } + /** + * Calculate the time range of a list of items + * @param {Array.} itemsData + * @return {{min: Date, max: Date}} Returns the range of the provided items + * @private + */ + + }, { + key: "itemFromElement", + + /** + * Find an item from an element: + * searches for the attribute 'vis-item' in the element's tree + * @param {HTMLElement} element + * @return {Item | null} item + */ + value: function itemFromElement(element) { + var cur = element; + + while (cur) { + if (cur.hasOwnProperty('vis-item')) { + return cur['vis-item']; + } + + cur = cur.parentNode; + } + + return null; + } + /** + * Find an item from an event target: + * searches for the attribute 'vis-item' in the event target's element tree + * @param {Event} event + * @return {Item | null} item + */ + + }, { + key: "itemFromTarget", + value: function itemFromTarget(event) { + return this.itemFromElement(event.target); + } + /** + * Find an item from an event's related target: + * searches for the attribute 'vis-item' in the related target's element tree + * @param {Event} event + * @return {Item | null} item + */ + + }, { + key: "itemFromRelatedTarget", + value: function itemFromRelatedTarget(event) { + return this.itemFromElement(event.relatedTarget); + } + /** + * Find the Group from an event target: + * searches for the attribute 'vis-group' in the event target's element tree + * @param {Event} event + * @return {Group | null} group + */ + + }, { + key: "groupFromTarget", + value: function groupFromTarget(event) { + var clientY = event.center ? event.center.y : event.clientY; + var groupIds = this.groupIds; + + if (groupIds.length <= 0 && this.groupsData) { + groupIds = this.groupsData.getIds({ + order: this.options.groupOrder + }); + } + + for (var i = 0; i < groupIds.length; i++) { + var groupId = groupIds[i]; + var group = this.groups[groupId]; + var foreground = group.dom.foreground; + var foregroundRect = foreground.getBoundingClientRect(); + + if (clientY >= foregroundRect.top && clientY < foregroundRect.top + foreground.offsetHeight) { + return group; + } + + if (this.options.orientation.item === 'top') { + if (i === this.groupIds.length - 1 && clientY > foregroundRect.top) { + return group; + } + } else { + if (i === 0 && clientY < foregroundRect.top + foreground.offset) { + return group; + } + } + } + + return null; + } + /** + * Find the ItemSet from an event target: + * searches for the attribute 'vis-itemset' in the event target's element tree + * @param {Event} event + * @return {ItemSet | null} item + */ + + }, { + key: "_cloneItemData", + + /** + * Clone the data of an item, and "normalize" it: convert the start and end date + * to the type (Date, Moment, ...) configured in the DataSet. If not configured, + * start and end are converted to Date. + * @param {Object} itemData, typically `item.data` + * @param {string} [type] Optional Date type. If not provided, the type from the DataSet is taken + * @return {Object} The cloned object + * @private + */ + value: function _cloneItemData(itemData, type) { + var clone = util$2.extend({}, itemData); + + if (!type) { + // convert start and end date to the type (Date, Moment, ...) configured in the DataSet + type = this.itemsData.getDataSet()._options.type; + } + + if (clone.start != undefined) { + clone.start = util$2.convert(clone.start, type && type.start || 'Date'); + } + + if (clone.end != undefined) { + clone.end = util$2.convert(clone.end, type && type.end || 'Date'); + } + + return clone; + } + /** + * cluster items + * @return {void} + * @private + */ + + }, { + key: "_clusterItems", + value: function _clusterItems() { + if (!this.options.cluster) { + return; + } + + var _this$body$range$conv = this.body.range.conversion(this.body.domProps.center.width), + scale = _this$body$range$conv.scale; + + var clusters = this.clusterGenerator.getClusters(this.clusters, scale, this.options.cluster); + + if (this.clusters != clusters) { + this._detachAllClusters(); + + if (clusters) { + var _iteratorNormalCompletion4 = true; + var _didIteratorError4 = false; + var _iteratorError4 = undefined; + + try { + for (var _iterator4 = getIterator$2(clusters), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) { + var cluster = _step4.value; + cluster.attach(); + } + } catch (err) { + _didIteratorError4 = true; + _iteratorError4 = err; + } finally { + try { + if (!_iteratorNormalCompletion4 && _iterator4.return != null) { + _iterator4.return(); + } + } finally { + if (_didIteratorError4) { + throw _iteratorError4; + } + } + } + + this.clusters = clusters; + } + + this._updateClusters(clusters); + } + } + /** + * detach all cluster items + * @private + */ + + }, { + key: "_detachAllClusters", + value: function _detachAllClusters() { + if (this.options.cluster) { + if (this.clusters && this.clusters.length) { + var _iteratorNormalCompletion5 = true; + var _didIteratorError5 = false; + var _iteratorError5 = undefined; + + try { + for (var _iterator5 = getIterator$2(this.clusters), _step5; !(_iteratorNormalCompletion5 = (_step5 = _iterator5.next()).done); _iteratorNormalCompletion5 = true) { + var cluster = _step5.value; + cluster.detach(); + } + } catch (err) { + _didIteratorError5 = true; + _iteratorError5 = err; + } finally { + try { + if (!_iteratorNormalCompletion5 && _iterator5.return != null) { + _iterator5.return(); + } + } finally { + if (_didIteratorError5) { + throw _iteratorError5; + } + } + } + } + } + } + /** + * update clusters + * @param {array} clusters + * @private + */ + + }, { + key: "_updateClusters", + value: function _updateClusters(clusters) { + if (this.clusters && this.clusters.length) { + var _context31; + + var newClustersIds = new set$3(map$2(clusters).call(clusters, function (cluster) { + return cluster.id; + })); + + var clustersToUnselect = filter$2(_context31 = this.clusters).call(_context31, function (cluster) { + return !newClustersIds.has(cluster.id); + }); + + var selectionChanged = false; + var _iteratorNormalCompletion6 = true; + var _didIteratorError6 = false; + var _iteratorError6 = undefined; + + try { + for (var _iterator6 = getIterator$2(clustersToUnselect), _step6; !(_iteratorNormalCompletion6 = (_step6 = _iterator6.next()).done); _iteratorNormalCompletion6 = true) { + var _context32; + + var cluster = _step6.value; + + var selectedIdx = indexOf$3(_context32 = this.selection).call(_context32, cluster.id); + + if (selectedIdx !== -1) { + var _context33; + + cluster.unselect(); + + splice$2(_context33 = this.selection).call(_context33, selectedIdx, 1); + + selectionChanged = true; + } + } + } catch (err) { + _didIteratorError6 = true; + _iteratorError6 = err; + } finally { + try { + if (!_iteratorNormalCompletion6 && _iterator6.return != null) { + _iterator6.return(); + } + } finally { + if (_didIteratorError6) { + throw _iteratorError6; + } + } + } + + if (selectionChanged) { + var newSelection = this.getSelection(); + this.body.emitter.emit('select', { + items: newSelection, + event: event + }); + } + } + + this.clusters = clusters || []; + } + }], [{ + key: "_getItemRange", + value: function _getItemRange(itemsData) { + var max = null; + var min = null; + + forEach$3(itemsData).call(itemsData, function (data) { + if (min == null || data.start < min) { + min = data.start; + } + + if (data.end != undefined) { + if (max == null || data.end > max) { + max = data.end; + } + } else { + if (max == null || data.start > max) { + max = data.start; + } + } + }); + + return { + min: min, + max: max + }; + } + }, { + key: "itemSetFromTarget", + value: function itemSetFromTarget(event) { + var target = event.target; + + while (target) { + if (target.hasOwnProperty('vis-itemset')) { + return target['vis-itemset']; + } + + target = target.parentNode; + } + + return null; + } + }]); + + return ItemSet; +}(Component); // available item types will be registered here + + +ItemSet.types = { + background: BackgroundItem, + box: BoxItem, + range: RangeItem, + point: PointItem +}; +/** + * Handle added items + * @param {number[]} ids + * @protected + */ + +ItemSet.prototype._onAdd = ItemSet.prototype._onUpdate; + +var errorFound = false; +var allOptions; +var printStyle = 'background: #FFeeee; color: #dd0000'; +/** + * Used to validate options. + */ + +var Validator = +/*#__PURE__*/ +function () { + /** + * @ignore + */ + function Validator() { + classCallCheck$1(this, Validator); + } + /** + * Main function to be called + * @param {Object} options + * @param {Object} referenceOptions + * @param {Object} subObject + * @returns {boolean} + * @static + */ + + + createClass$1(Validator, null, [{ + key: "validate", + value: function validate(options, referenceOptions, subObject) { + errorFound = false; + allOptions = referenceOptions; + var usedOptions = referenceOptions; + + if (subObject !== undefined) { + usedOptions = referenceOptions[subObject]; + } + + Validator.parse(options, usedOptions, []); + return errorFound; + } + /** + * Will traverse an object recursively and check every value + * @param {Object} options + * @param {Object} referenceOptions + * @param {array} path | where to look for the actual option + * @static + */ + + }, { + key: "parse", + value: function parse(options, referenceOptions, path) { + for (var option in options) { + if (options.hasOwnProperty(option)) { + Validator.check(option, options, referenceOptions, path); + } + } + } + /** + * Check every value. If the value is an object, call the parse function on that object. + * @param {string} option + * @param {Object} options + * @param {Object} referenceOptions + * @param {array} path | where to look for the actual option + * @static + */ + + }, { + key: "check", + value: function check(option, options, referenceOptions, path) { + if (referenceOptions[option] === undefined && referenceOptions.__any__ === undefined) { + Validator.getSuggestion(option, referenceOptions, path); + return; + } + + var referenceOption = option; + var is_object = true; + + if (referenceOptions[option] === undefined && referenceOptions.__any__ !== undefined) { + // NOTE: This only triggers if the __any__ is in the top level of the options object. + // THAT'S A REALLY BAD PLACE TO ALLOW IT!!!! + // TODO: Examine if needed, remove if possible + // __any__ is a wildcard. Any value is accepted and will be further analysed by reference. + referenceOption = '__any__'; // if the any-subgroup is not a predefined object in the configurator, + // we do not look deeper into the object. + + is_object = Validator.getType(options[option]) === 'object'; + } + + var refOptionObj = referenceOptions[referenceOption]; + + if (is_object && refOptionObj.__type__ !== undefined) { + refOptionObj = refOptionObj.__type__; + } + + Validator.checkFields(option, options, referenceOptions, referenceOption, refOptionObj, path); + } + /** + * + * @param {string} option | the option property + * @param {Object} options | The supplied options object + * @param {Object} referenceOptions | The reference options containing all options and their allowed formats + * @param {string} referenceOption | Usually this is the same as option, except when handling an __any__ tag. + * @param {string} refOptionObj | This is the type object from the reference options + * @param {Array} path | where in the object is the option + * @static + */ + + }, { + key: "checkFields", + value: function checkFields(option, options, referenceOptions, referenceOption, refOptionObj, path) { + var log = function log(message) { + console.log('%c' + message + Validator.printLocation(path, option), printStyle); + }; + + var optionType = Validator.getType(options[option]); + var refOptionType = refOptionObj[optionType]; + + if (refOptionType !== undefined) { + // if the type is correct, we check if it is supposed to be one of a few select values + if (Validator.getType(refOptionType) === 'array' && indexOf$3(refOptionType).call(refOptionType, options[option]) === -1) { + log('Invalid option detected in "' + option + '".' + ' Allowed values are:' + Validator.print(refOptionType) + ' not "' + options[option] + '". '); + errorFound = true; + } else if (optionType === 'object' && referenceOption !== "__any__") { + path = util$2.copyAndExtendArray(path, option); + Validator.parse(options[option], referenceOptions[referenceOption], path); + } + } else if (refOptionObj['any'] === undefined) { + // type of the field is incorrect and the field cannot be any + log('Invalid type received for "' + option + '". Expected: ' + Validator.print(keys$3(refOptionObj)) + '. Received [' + optionType + '] "' + options[option] + '"'); + errorFound = true; + } + } + /** + * + * @param {Object|boolean|number|string|Array.|Date|Node|Moment|undefined|null} object + * @returns {string} + * @static + */ + + }, { + key: "getType", + value: function getType(object) { + var type = _typeof_1$2(object); + + if (type === 'object') { + if (object === null) { + return 'null'; + } + + if (object instanceof Boolean) { + return 'boolean'; + } + + if (object instanceof Number) { + return 'number'; + } + + if (object instanceof String) { + return 'string'; + } + + if (isArray$3(object)) { + return 'array'; + } + + if (object instanceof Date) { + return 'date'; + } + + if (object.nodeType !== undefined) { + return 'dom'; + } + + if (object._isAMomentObject === true) { + return 'moment'; + } + + return 'object'; + } else if (type === 'number') { + return 'number'; + } else if (type === 'boolean') { + return 'boolean'; + } else if (type === 'string') { + return 'string'; + } else if (type === undefined) { + return 'undefined'; + } + + return type; + } + /** + * @param {string} option + * @param {Object} options + * @param {Array.} path + * @static + */ + + }, { + key: "getSuggestion", + value: function getSuggestion(option, options, path) { + var localSearch = Validator.findInOptions(option, options, path, false); + var globalSearch = Validator.findInOptions(option, allOptions, [], true); + var localSearchThreshold = 8; + var globalSearchThreshold = 4; + var msg; + + if (localSearch.indexMatch !== undefined) { + msg = ' in ' + Validator.printLocation(localSearch.path, option, '') + 'Perhaps it was incomplete? Did you mean: "' + localSearch.indexMatch + '"?\n\n'; + } else if (globalSearch.distance <= globalSearchThreshold && localSearch.distance > globalSearch.distance) { + msg = ' in ' + Validator.printLocation(localSearch.path, option, '') + 'Perhaps it was misplaced? Matching option found at: ' + Validator.printLocation(globalSearch.path, globalSearch.closestMatch, ''); + } else if (localSearch.distance <= localSearchThreshold) { + msg = '. Did you mean "' + localSearch.closestMatch + '"?' + Validator.printLocation(localSearch.path, option); + } else { + msg = '. Did you mean one of these: ' + Validator.print(keys$3(options)) + Validator.printLocation(path, option); + } + + console.log('%cUnknown option detected: "' + option + '"' + msg, printStyle); + errorFound = true; + } + /** + * traverse the options in search for a match. + * @param {string} option + * @param {Object} options + * @param {Array} path | where to look for the actual option + * @param {boolean} [recursive=false] + * @returns {{closestMatch: string, path: Array, distance: number}} + * @static + */ + + }, { + key: "findInOptions", + value: function findInOptions(option, options, path) { + var recursive = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false; + var min = 1e9; + var closestMatch = ''; + var closestMatchPath = []; + var lowerCaseOption = option.toLowerCase(); + var indexMatch = undefined; + + for (var op in options) { + // eslint-disable-line guard-for-in + var distance = void 0; + + if (options[op].__type__ !== undefined && recursive === true) { + var result = Validator.findInOptions(option, options[op], util$2.copyAndExtendArray(path, op)); + + if (min > result.distance) { + closestMatch = result.closestMatch; + closestMatchPath = result.path; + min = result.distance; + indexMatch = result.indexMatch; + } + } else { + var _context; + + if (indexOf$3(_context = op.toLowerCase()).call(_context, lowerCaseOption) !== -1) { + indexMatch = op; + } + + distance = Validator.levenshteinDistance(option, op); + + if (min > distance) { + closestMatch = op; + closestMatchPath = util$2.copyArray(path); + min = distance; + } + } + } + + return { + closestMatch: closestMatch, + path: closestMatchPath, + distance: min, + indexMatch: indexMatch + }; + } + /** + * @param {Array.} path + * @param {Object} option + * @param {string} prefix + * @returns {String} + * @static + */ + + }, { + key: "printLocation", + value: function printLocation(path, option) { + var prefix = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'Problem value found at: \n'; + var str = '\n\n' + prefix + 'options = {\n'; + + for (var i = 0; i < path.length; i++) { + for (var j = 0; j < i + 1; j++) { + str += ' '; + } + + str += path[i] + ': {\n'; + } + + for (var _j = 0; _j < path.length + 1; _j++) { + str += ' '; + } + + str += option + '\n'; + + for (var _i = 0; _i < path.length + 1; _i++) { + for (var _j2 = 0; _j2 < path.length - _i; _j2++) { + str += ' '; + } + + str += '}\n'; + } + + return str + '\n\n'; + } + /** + * @param {Object} options + * @returns {String} + * @static + */ + + }, { + key: "print", + value: function print(options) { + return stringify$2(options).replace(/(\")|(\[)|(\])|(,"__type__")/g, "").replace(/(\,)/g, ', '); + } + /** + * Compute the edit distance between the two given strings + * http://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#JavaScript + * + * Copyright (c) 2011 Andrei Mackenzie + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + * + * @param {string} a + * @param {string} b + * @returns {Array.>}} + * @static + */ + + }, { + key: "levenshteinDistance", + value: function levenshteinDistance(a, b) { + if (a.length === 0) return b.length; + if (b.length === 0) return a.length; + var matrix = []; // increment along the first column of each row + + var i; + + for (i = 0; i <= b.length; i++) { + matrix[i] = [i]; + } // increment each column in the first row + + + var j; + + for (j = 0; j <= a.length; j++) { + matrix[0][j] = j; + } // Fill in the rest of the matrix + + + for (i = 1; i <= b.length; i++) { + for (j = 1; j <= a.length; j++) { + if (b.charAt(i - 1) == a.charAt(j - 1)) { + matrix[i][j] = matrix[i - 1][j - 1]; + } else { + matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, // substitution + Math.min(matrix[i][j - 1] + 1, // insertion + matrix[i - 1][j] + 1)); // deletion + } + } + } + + return matrix[b.length][a.length]; + } + }]); + + return Validator; +}(); + +/** + * This object contains all possible options. It will check if the types are correct, if required if the option is one + * of the allowed values. + * + * __any__ means that the name of the property does not matter. + * __type__ is a required field for all objects and contains the allowed types of all objects + */ +var string = 'string'; +var bool = 'boolean'; +var number = 'number'; +var array = 'array'; +var date = 'date'; +var object = 'object'; // should only be in a __type__ property + +var dom = 'dom'; +var moment$4 = 'moment'; +var any = 'any'; +var allOptions$1 = { + configure: { + enabled: { + 'boolean': bool + }, + filter: { + 'boolean': bool, + 'function': 'function' + }, + container: { + dom: dom + }, + __type__: { + object: object, + 'boolean': bool, + 'function': 'function' + } + }, + //globals : + align: { + string: string + }, + alignCurrentTime: { + string: string, + 'undefined': 'undefined' + }, + rtl: { + 'boolean': bool, + 'undefined': 'undefined' + }, + rollingMode: { + follow: { + 'boolean': bool + }, + offset: { + number: number, + 'undefined': 'undefined' + }, + __type__: { + object: object + } + }, + onTimeout: { + timeoutMs: { + number: number + }, + callback: { + 'function': 'function' + }, + __type__: { + object: object + } + }, + verticalScroll: { + 'boolean': bool, + 'undefined': 'undefined' + }, + horizontalScroll: { + 'boolean': bool, + 'undefined': 'undefined' + }, + autoResize: { + 'boolean': bool + }, + throttleRedraw: { + number: number + }, + // TODO: DEPRICATED see https://github.com/almende/vis/issues/2511 + clickToUse: { + 'boolean': bool + }, + dataAttributes: { + string: string, + array: array + }, + editable: { + add: { + 'boolean': bool, + 'undefined': 'undefined' + }, + remove: { + 'boolean': bool, + 'undefined': 'undefined' + }, + updateGroup: { + 'boolean': bool, + 'undefined': 'undefined' + }, + updateTime: { + 'boolean': bool, + 'undefined': 'undefined' + }, + overrideItems: { + 'boolean': bool, + 'undefined': 'undefined' + }, + __type__: { + 'boolean': bool, + object: object + } + }, + end: { + number: number, + date: date, + string: string, + moment: moment$4 + }, + format: { + minorLabels: { + millisecond: { + string: string, + 'undefined': 'undefined' + }, + second: { + string: string, + 'undefined': 'undefined' + }, + minute: { + string: string, + 'undefined': 'undefined' + }, + hour: { + string: string, + 'undefined': 'undefined' + }, + weekday: { + string: string, + 'undefined': 'undefined' + }, + day: { + string: string, + 'undefined': 'undefined' + }, + week: { + string: string, + 'undefined': 'undefined' + }, + month: { + string: string, + 'undefined': 'undefined' + }, + year: { + string: string, + 'undefined': 'undefined' + }, + __type__: { + object: object, + 'function': 'function' + } + }, + majorLabels: { + millisecond: { + string: string, + 'undefined': 'undefined' + }, + second: { + string: string, + 'undefined': 'undefined' + }, + minute: { + string: string, + 'undefined': 'undefined' + }, + hour: { + string: string, + 'undefined': 'undefined' + }, + weekday: { + string: string, + 'undefined': 'undefined' + }, + day: { + string: string, + 'undefined': 'undefined' + }, + week: { + string: string, + 'undefined': 'undefined' + }, + month: { + string: string, + 'undefined': 'undefined' + }, + year: { + string: string, + 'undefined': 'undefined' + }, + __type__: { + object: object, + 'function': 'function' + } + }, + __type__: { + object: object + } + }, + moment: { + 'function': 'function' + }, + groupHeightMode: { + string: string + }, + groupOrder: { + string: string, + 'function': 'function' + }, + groupEditable: { + add: { + 'boolean': bool, + 'undefined': 'undefined' + }, + remove: { + 'boolean': bool, + 'undefined': 'undefined' + }, + order: { + 'boolean': bool, + 'undefined': 'undefined' + }, + __type__: { + 'boolean': bool, + object: object + } + }, + groupOrderSwap: { + 'function': 'function' + }, + height: { + string: string, + number: number + }, + hiddenDates: { + start: { + date: date, + number: number, + string: string, + moment: moment$4 + }, + end: { + date: date, + number: number, + string: string, + moment: moment$4 + }, + repeat: { + string: string + }, + __type__: { + object: object, + array: array + } + }, + itemsAlwaysDraggable: { + item: { + 'boolean': bool, + 'undefined': 'undefined' + }, + range: { + 'boolean': bool, + 'undefined': 'undefined' + }, + __type__: { + 'boolean': bool, + object: object + } + }, + limitSize: { + 'boolean': bool + }, + locale: { + string: string + }, + locales: { + __any__: { + any: any + }, + __type__: { + object: object + } + }, + margin: { + axis: { + number: number + }, + item: { + horizontal: { + number: number, + 'undefined': 'undefined' + }, + vertical: { + number: number, + 'undefined': 'undefined' + }, + __type__: { + object: object, + number: number + } + }, + __type__: { + object: object, + number: number + } + }, + max: { + date: date, + number: number, + string: string, + moment: moment$4 + }, + maxHeight: { + number: number, + string: string + }, + maxMinorChars: { + number: number + }, + min: { + date: date, + number: number, + string: string, + moment: moment$4 + }, + minHeight: { + number: number, + string: string + }, + moveable: { + 'boolean': bool + }, + multiselect: { + 'boolean': bool + }, + multiselectPerGroup: { + 'boolean': bool + }, + onAdd: { + 'function': 'function' + }, + onDropObjectOnItem: { + 'function': 'function' + }, + onUpdate: { + 'function': 'function' + }, + onMove: { + 'function': 'function' + }, + onMoving: { + 'function': 'function' + }, + onRemove: { + 'function': 'function' + }, + onAddGroup: { + 'function': 'function' + }, + onMoveGroup: { + 'function': 'function' + }, + onRemoveGroup: { + 'function': 'function' + }, + onInitialDrawComplete: { + 'function': 'function' + }, + order: { + 'function': 'function' + }, + orientation: { + axis: { + string: string, + 'undefined': 'undefined' + }, + item: { + string: string, + 'undefined': 'undefined' + }, + __type__: { + string: string, + object: object + } + }, + selectable: { + 'boolean': bool + }, + sequentialSelection: { + 'boolean': bool + }, + showCurrentTime: { + 'boolean': bool + }, + showMajorLabels: { + 'boolean': bool + }, + showMinorLabels: { + 'boolean': bool + }, + stack: { + 'boolean': bool + }, + stackSubgroups: { + 'boolean': bool + }, + cluster: { + maxItems: { + 'number': number, + 'undefined': 'undefined' + }, + titleTemplate: { + 'string': string, + 'undefined': 'undefined' + }, + clusterCriteria: { + 'function': 'function', + 'undefined': 'undefined' + }, + showStipes: { + 'boolean': bool, + 'undefined': 'undefined' + }, + fitOnDoubleClick: { + 'boolean': bool, + 'undefined': 'undefined' + }, + __type__: { + 'boolean': bool, + object: object + } + }, + snap: { + 'function': 'function', + 'null': 'null' + }, + start: { + date: date, + number: number, + string: string, + moment: moment$4 + }, + template: { + 'function': 'function' + }, + loadingScreenTemplate: { + 'function': 'function' + }, + groupTemplate: { + 'function': 'function' + }, + visibleFrameTemplate: { + string: string, + 'function': 'function' + }, + showTooltips: { + 'boolean': bool + }, + tooltip: { + followMouse: { + 'boolean': bool + }, + overflowMethod: { + 'string': ['cap', 'flip', 'none'] + }, + delay: { + number: number + }, + template: { + 'function': 'function' + }, + __type__: { + object: object + } + }, + tooltipOnItemUpdateTime: { + template: { + 'function': 'function' + }, + __type__: { + 'boolean': bool, + object: object + } + }, + timeAxis: { + scale: { + string: string, + 'undefined': 'undefined' + }, + step: { + number: number, + 'undefined': 'undefined' + }, + __type__: { + object: object + } + }, + type: { + string: string + }, + width: { + string: string, + number: number + }, + preferZoom: { + 'boolean': bool + }, + zoomable: { + 'boolean': bool + }, + zoomKey: { + string: ['ctrlKey', 'altKey', 'shiftKey', 'metaKey', ''] + }, + zoomFriction: { + number: number + }, + zoomMax: { + number: number + }, + zoomMin: { + number: number + }, + __type__: { + object: object + } +}; +var configureOptions = { + global: { + align: ['center', 'left', 'right'], + alignCurrentTime: ['none', 'year', 'month', 'quarter', 'week', 'isoWeek', 'day', 'date', 'hour', 'minute', 'second'], + direction: false, + autoResize: true, + clickToUse: false, + // dataAttributes: ['all'], // FIXME: can be 'all' or string[] + editable: { + add: false, + remove: false, + updateGroup: false, + updateTime: false + }, + end: '', + format: { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + week: 'w', + month: 'MMM', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + week: 'MMMM YYYY', + month: 'YYYY', + year: '' + } + }, + groupHeightMode: ['auto', 'fixed', 'fitItems'], + //groupOrder: {string, 'function': 'function'}, + groupsDraggable: false, + height: '', + //hiddenDates: {object, array}, + locale: '', + margin: { + axis: [20, 0, 100, 1], + item: { + horizontal: [10, 0, 100, 1], + vertical: [10, 0, 100, 1] + } + }, + max: '', + maxHeight: '', + maxMinorChars: [7, 0, 20, 1], + min: '', + minHeight: '', + moveable: false, + multiselect: false, + multiselectPerGroup: false, + //onAdd: {'function': 'function'}, + //onUpdate: {'function': 'function'}, + //onMove: {'function': 'function'}, + //onMoving: {'function': 'function'}, + //onRename: {'function': 'function'}, + //order: {'function': 'function'}, + orientation: { + axis: ['both', 'bottom', 'top'], + item: ['bottom', 'top'] + }, + preferZoom: false, + selectable: true, + showCurrentTime: false, + showMajorLabels: true, + showMinorLabels: true, + stack: true, + stackSubgroups: true, + cluster: false, + //snap: {'function': 'function', nada}, + start: '', + //template: {'function': 'function'}, + //timeAxis: { + // scale: ['millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'], + // step: [1, 1, 10, 1] + //}, + showTooltips: true, + tooltip: { + followMouse: false, + overflowMethod: 'flip', + delay: [500, 0, 99999, 100] + }, + tooltipOnItemUpdateTime: false, + type: ['box', 'point', 'range', 'background'], + width: '100%', + zoomable: true, + zoomKey: ['ctrlKey', 'altKey', 'shiftKey', 'metaKey', ''], + zoomMax: [315360000000000, 10, 315360000000000, 1], + zoomMin: [10, 10, 315360000000000, 1] + } +}; + +// https://tc39.github.io/ecma262/#sec-array.prototype.fill + + +var arrayFill = function fill(value +/* , start = 0, end = @length */ +) { + var O = toObject(this); + var length = toLength(O.length); + var argumentsLength = arguments.length; + var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length); + var end = argumentsLength > 2 ? arguments[2] : undefined; + var endPos = end === undefined ? length : toAbsoluteIndex(end, length); + + while (endPos > index) O[index++] = value; + + return O; +}; + +// https://tc39.github.io/ecma262/#sec-array.prototype.fill + +_export({ + target: 'Array', + proto: true +}, { + fill: arrayFill +}); // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables + +var fill = entryVirtual('Array').fill; + +var ArrayPrototype$e = Array.prototype; + +var fill_1 = function (it) { + var own = it.fill; + return it === ArrayPrototype$e || it instanceof Array && own === ArrayPrototype$e.fill ? fill : own; +}; + +var fill$1 = fill_1; + +var fill$2 = fill$1; + +var htmlColors = { + black: '#000000', + navy: '#000080', + darkblue: '#00008B', + mediumblue: '#0000CD', + blue: '#0000FF', + darkgreen: '#006400', + green: '#008000', + teal: '#008080', + darkcyan: '#008B8B', + deepskyblue: '#00BFFF', + darkturquoise: '#00CED1', + mediumspringgreen: '#00FA9A', + lime: '#00FF00', + springgreen: '#00FF7F', + aqua: '#00FFFF', + cyan: '#00FFFF', + midnightblue: '#191970', + dodgerblue: '#1E90FF', + lightseagreen: '#20B2AA', + forestgreen: '#228B22', + seagreen: '#2E8B57', + darkslategray: '#2F4F4F', + limegreen: '#32CD32', + mediumseagreen: '#3CB371', + turquoise: '#40E0D0', + royalblue: '#4169E1', + steelblue: '#4682B4', + darkslateblue: '#483D8B', + mediumturquoise: '#48D1CC', + indigo: '#4B0082', + darkolivegreen: '#556B2F', + cadetblue: '#5F9EA0', + cornflowerblue: '#6495ED', + mediumaquamarine: '#66CDAA', + dimgray: '#696969', + slateblue: '#6A5ACD', + olivedrab: '#6B8E23', + slategray: '#708090', + lightslategray: '#778899', + mediumslateblue: '#7B68EE', + lawngreen: '#7CFC00', + chartreuse: '#7FFF00', + aquamarine: '#7FFFD4', + maroon: '#800000', + purple: '#800080', + olive: '#808000', + gray: '#808080', + skyblue: '#87CEEB', + lightskyblue: '#87CEFA', + blueviolet: '#8A2BE2', + darkred: '#8B0000', + darkmagenta: '#8B008B', + saddlebrown: '#8B4513', + darkseagreen: '#8FBC8F', + lightgreen: '#90EE90', + mediumpurple: '#9370D8', + darkviolet: '#9400D3', + palegreen: '#98FB98', + darkorchid: '#9932CC', + yellowgreen: '#9ACD32', + sienna: '#A0522D', + brown: '#A52A2A', + darkgray: '#A9A9A9', + lightblue: '#ADD8E6', + greenyellow: '#ADFF2F', + paleturquoise: '#AFEEEE', + lightsteelblue: '#B0C4DE', + powderblue: '#B0E0E6', + firebrick: '#B22222', + darkgoldenrod: '#B8860B', + mediumorchid: '#BA55D3', + rosybrown: '#BC8F8F', + darkkhaki: '#BDB76B', + silver: '#C0C0C0', + mediumvioletred: '#C71585', + indianred: '#CD5C5C', + peru: '#CD853F', + chocolate: '#D2691E', + tan: '#D2B48C', + lightgrey: '#D3D3D3', + palevioletred: '#D87093', + thistle: '#D8BFD8', + orchid: '#DA70D6', + goldenrod: '#DAA520', + crimson: '#DC143C', + gainsboro: '#DCDCDC', + plum: '#DDA0DD', + burlywood: '#DEB887', + lightcyan: '#E0FFFF', + lavender: '#E6E6FA', + darksalmon: '#E9967A', + violet: '#EE82EE', + palegoldenrod: '#EEE8AA', + lightcoral: '#F08080', + khaki: '#F0E68C', + aliceblue: '#F0F8FF', + honeydew: '#F0FFF0', + azure: '#F0FFFF', + sandybrown: '#F4A460', + wheat: '#F5DEB3', + beige: '#F5F5DC', + whitesmoke: '#F5F5F5', + mintcream: '#F5FFFA', + ghostwhite: '#F8F8FF', + salmon: '#FA8072', + antiquewhite: '#FAEBD7', + linen: '#FAF0E6', + lightgoldenrodyellow: '#FAFAD2', + oldlace: '#FDF5E6', + red: '#FF0000', + fuchsia: '#FF00FF', + magenta: '#FF00FF', + deeppink: '#FF1493', + orangered: '#FF4500', + tomato: '#FF6347', + hotpink: '#FF69B4', + coral: '#FF7F50', + darkorange: '#FF8C00', + lightsalmon: '#FFA07A', + orange: '#FFA500', + lightpink: '#FFB6C1', + pink: '#FFC0CB', + gold: '#FFD700', + peachpuff: '#FFDAB9', + navajowhite: '#FFDEAD', + moccasin: '#FFE4B5', + bisque: '#FFE4C4', + mistyrose: '#FFE4E1', + blanchedalmond: '#FFEBCD', + papayawhip: '#FFEFD5', + lavenderblush: '#FFF0F5', + seashell: '#FFF5EE', + cornsilk: '#FFF8DC', + lemonchiffon: '#FFFACD', + floralwhite: '#FFFAF0', + snow: '#FFFAFA', + yellow: '#FFFF00', + lightyellow: '#FFFFE0', + ivory: '#FFFFF0', + white: '#FFFFFF' +}; +/** + * @param {number} [pixelRatio=1] + */ + +var ColorPicker = +/*#__PURE__*/ +function () { + /** + * @param {number} [pixelRatio=1] + */ + function ColorPicker() { + var pixelRatio = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 1; + + classCallCheck$1(this, ColorPicker); + + this.pixelRatio = pixelRatio; + this.generated = false; + this.centerCoordinates = { + x: 289 / 2, + y: 289 / 2 + }; + this.r = 289 * 0.49; + this.color = { + r: 255, + g: 255, + b: 255, + a: 1.0 + }; + this.hueCircle = undefined; + this.initialColor = { + r: 255, + g: 255, + b: 255, + a: 1.0 + }; + this.previousColor = undefined; + this.applied = false; // bound by + + this.updateCallback = function () {}; + + this.closeCallback = function () {}; // create all DOM elements + + + this._create(); + } + /** + * this inserts the colorPicker into a div from the DOM + * @param {Element} container + */ + + + createClass$1(ColorPicker, [{ + key: "insertTo", + value: function insertTo(container) { + if (this.hammer !== undefined) { + this.hammer.destroy(); + this.hammer = undefined; + } + + this.container = container; + this.container.appendChild(this.frame); + + this._bindHammer(); + + this._setSize(); + } + /** + * the callback is executed on apply and save. Bind it to the application + * @param {function} callback + */ + + }, { + key: "setUpdateCallback", + value: function setUpdateCallback(callback) { + if (typeof callback === 'function') { + this.updateCallback = callback; + } else { + throw new Error("Function attempted to set as colorPicker update callback is not a function."); + } + } + /** + * the callback is executed on apply and save. Bind it to the application + * @param {function} callback + */ + + }, { + key: "setCloseCallback", + value: function setCloseCallback(callback) { + if (typeof callback === 'function') { + this.closeCallback = callback; + } else { + throw new Error("Function attempted to set as colorPicker closing callback is not a function."); + } + } + /** + * + * @param {string} color + * @returns {String} + * @private + */ + + }, { + key: "_isColorString", + value: function _isColorString(color) { + if (typeof color === 'string') { + return htmlColors[color]; + } + } + /** + * Set the color of the colorPicker + * Supported formats: + * 'red' --> HTML color string + * '#ffffff' --> hex string + * 'rgb(255,255,255)' --> rgb string + * 'rgba(255,255,255,1.0)' --> rgba string + * {r:255,g:255,b:255} --> rgb object + * {r:255,g:255,b:255,a:1.0} --> rgba object + * @param {string|Object} color + * @param {boolean} [setInitial=true] + */ + + }, { + key: "setColor", + value: function setColor(color) { + var setInitial = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + + if (color === 'none') { + return; + } + + var rgba; // if a html color shorthand is used, convert to hex + + var htmlColor = this._isColorString(color); + + if (htmlColor !== undefined) { + color = htmlColor; + } // check format + + + if (util$2.isString(color) === true) { + if (util$2.isValidRGB(color) === true) { + var rgbaArray = color.substr(4).substr(0, color.length - 5).split(','); + rgba = { + r: rgbaArray[0], + g: rgbaArray[1], + b: rgbaArray[2], + a: 1.0 + }; + } else if (util$2.isValidRGBA(color) === true) { + var _rgbaArray = color.substr(5).substr(0, color.length - 6).split(','); + + rgba = { + r: _rgbaArray[0], + g: _rgbaArray[1], + b: _rgbaArray[2], + a: _rgbaArray[3] + }; + } else if (util$2.isValidHex(color) === true) { + var rgbObj = util$2.hexToRGB(color); + rgba = { + r: rgbObj.r, + g: rgbObj.g, + b: rgbObj.b, + a: 1.0 + }; + } + } else { + if (color instanceof Object) { + if (color.r !== undefined && color.g !== undefined && color.b !== undefined) { + var alpha = color.a !== undefined ? color.a : '1.0'; + rgba = { + r: color.r, + g: color.g, + b: color.b, + a: alpha + }; + } + } + } // set color + + + if (rgba === undefined) { + throw new Error("Unknown color passed to the colorPicker. Supported are strings: rgb, hex, rgba. Object: rgb ({r:r,g:g,b:b,[a:a]}). Supplied: " + stringify$2(color)); + } else { + this._setColor(rgba, setInitial); + } + } + /** + * this shows the color picker. + * The hue circle is constructed once and stored. + */ + + }, { + key: "show", + value: function show() { + if (this.closeCallback !== undefined) { + this.closeCallback(); + this.closeCallback = undefined; + } + + this.applied = false; + this.frame.style.display = 'block'; + + this._generateHueCircle(); + } // ------------------------------------------ PRIVATE ----------------------------- // + + /** + * Hide the picker. Is called by the cancel button. + * Optional boolean to store the previous color for easy access later on. + * @param {boolean} [storePrevious=true] + * @private + */ + + }, { + key: "_hide", + value: function _hide() { + var _this = this; + + var storePrevious = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true; + + // store the previous color for next time; + if (storePrevious === true) { + this.previousColor = util$2.extend({}, this.color); + } + + if (this.applied === true) { + this.updateCallback(this.initialColor); + } + + this.frame.style.display = 'none'; // call the closing callback, restoring the onclick method. + // this is in a setTimeout because it will trigger the show again before the click is done. + + setTimeout$2(function () { + if (_this.closeCallback !== undefined) { + _this.closeCallback(); + + _this.closeCallback = undefined; + } + }, 0); + } + /** + * bound to the save button. Saves and hides. + * @private + */ + + }, { + key: "_save", + value: function _save() { + this.updateCallback(this.color); + this.applied = false; + + this._hide(); + } + /** + * Bound to apply button. Saves but does not close. Is undone by the cancel button. + * @private + */ + + }, { + key: "_apply", + value: function _apply() { + this.applied = true; + this.updateCallback(this.color); + + this._updatePicker(this.color); + } + /** + * load the color from the previous session. + * @private + */ + + }, { + key: "_loadLast", + value: function _loadLast() { + if (this.previousColor !== undefined) { + this.setColor(this.previousColor, false); + } else { + alert("There is no last color to load..."); + } + } + /** + * set the color, place the picker + * @param {Object} rgba + * @param {boolean} [setInitial=true] + * @private + */ + + }, { + key: "_setColor", + value: function _setColor(rgba) { + var setInitial = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true; + + // store the initial color + if (setInitial === true) { + this.initialColor = util$2.extend({}, rgba); + } + + this.color = rgba; + var hsv = util$2.RGBToHSV(rgba.r, rgba.g, rgba.b); + var angleConvert = 2 * Math.PI; + var radius = this.r * hsv.s; + var x = this.centerCoordinates.x + radius * Math.sin(angleConvert * hsv.h); + var y = this.centerCoordinates.y + radius * Math.cos(angleConvert * hsv.h); + this.colorPickerSelector.style.left = x - 0.5 * this.colorPickerSelector.clientWidth + 'px'; + this.colorPickerSelector.style.top = y - 0.5 * this.colorPickerSelector.clientHeight + 'px'; + + this._updatePicker(rgba); + } + /** + * bound to opacity control + * @param {number} value + * @private + */ + + }, { + key: "_setOpacity", + value: function _setOpacity(value) { + this.color.a = value / 100; + + this._updatePicker(this.color); + } + /** + * bound to brightness control + * @param {number} value + * @private + */ + + }, { + key: "_setBrightness", + value: function _setBrightness(value) { + var hsv = util$2.RGBToHSV(this.color.r, this.color.g, this.color.b); + hsv.v = value / 100; + var rgba = util$2.HSVToRGB(hsv.h, hsv.s, hsv.v); + rgba['a'] = this.color.a; + this.color = rgba; + + this._updatePicker(); + } + /** + * update the color picker. A black circle overlays the hue circle to mimic the brightness decreasing. + * @param {Object} rgba + * @private + */ + + }, { + key: "_updatePicker", + value: function _updatePicker() { + var rgba = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : this.color; + var hsv = util$2.RGBToHSV(rgba.r, rgba.g, rgba.b); + var ctx = this.colorPickerCanvas.getContext('2d'); + + if (this.pixelRation === undefined) { + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + } + + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); // clear the canvas + + var w = this.colorPickerCanvas.clientWidth; + var h = this.colorPickerCanvas.clientHeight; + ctx.clearRect(0, 0, w, h); + ctx.putImageData(this.hueCircle, 0, 0); + ctx.fillStyle = 'rgba(0,0,0,' + (1 - hsv.v) + ')'; + ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r); + + fill$2(ctx).call(ctx); + + this.brightnessRange.value = 100 * hsv.v; + this.opacityRange.value = 100 * rgba.a; + this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')'; + this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')'; + } + /** + * used by create to set the size of the canvas. + * @private + */ + + }, { + key: "_setSize", + value: function _setSize() { + this.colorPickerCanvas.style.width = '100%'; + this.colorPickerCanvas.style.height = '100%'; + this.colorPickerCanvas.width = 289 * this.pixelRatio; + this.colorPickerCanvas.height = 289 * this.pixelRatio; + } + /** + * create all dom elements + * TODO: cleanup, lots of similar dom elements + * @private + */ + + }, { + key: "_create", + value: function _create() { + var _context, _context2, _context3, _context4; + + this.frame = document.createElement('div'); + this.frame.className = 'vis-color-picker'; + this.colorPickerDiv = document.createElement('div'); + this.colorPickerSelector = document.createElement('div'); + this.colorPickerSelector.className = 'vis-selector'; + this.colorPickerDiv.appendChild(this.colorPickerSelector); + this.colorPickerCanvas = document.createElement('canvas'); + this.colorPickerDiv.appendChild(this.colorPickerCanvas); + + if (!this.colorPickerCanvas.getContext) { + var noCanvas = document.createElement('DIV'); + noCanvas.style.color = 'red'; + noCanvas.style.fontWeight = 'bold'; + noCanvas.style.padding = '10px'; + noCanvas.innerHTML = 'Error: your browser does not support HTML canvas'; + this.colorPickerCanvas.appendChild(noCanvas); + } else { + var ctx = this.colorPickerCanvas.getContext("2d"); + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + this.colorPickerCanvas.getContext("2d").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); + } + + this.colorPickerDiv.className = 'vis-color'; + this.opacityDiv = document.createElement('div'); + this.opacityDiv.className = 'vis-opacity'; + this.brightnessDiv = document.createElement('div'); + this.brightnessDiv.className = 'vis-brightness'; + this.arrowDiv = document.createElement('div'); + this.arrowDiv.className = 'vis-arrow'; + this.opacityRange = document.createElement('input'); + + try { + this.opacityRange.type = 'range'; // Not supported on IE9 + + this.opacityRange.min = '0'; + this.opacityRange.max = '100'; + } // TODO: Add some error handling and remove this lint exception + catch (err) {} // eslint-disable-line no-empty + + + this.opacityRange.value = '100'; + this.opacityRange.className = 'vis-range'; + this.brightnessRange = document.createElement('input'); + + try { + this.brightnessRange.type = 'range'; // Not supported on IE9 + + this.brightnessRange.min = '0'; + this.brightnessRange.max = '100'; + } // TODO: Add some error handling and remove this lint exception + catch (err) {} // eslint-disable-line no-empty + + + this.brightnessRange.value = '100'; + this.brightnessRange.className = 'vis-range'; + this.opacityDiv.appendChild(this.opacityRange); + this.brightnessDiv.appendChild(this.brightnessRange); + var me = this; + + this.opacityRange.onchange = function () { + me._setOpacity(this.value); + }; + + this.opacityRange.oninput = function () { + me._setOpacity(this.value); + }; + + this.brightnessRange.onchange = function () { + me._setBrightness(this.value); + }; + + this.brightnessRange.oninput = function () { + me._setBrightness(this.value); + }; + + this.brightnessLabel = document.createElement("div"); + this.brightnessLabel.className = "vis-label vis-brightness"; + this.brightnessLabel.innerHTML = 'brightness:'; + this.opacityLabel = document.createElement("div"); + this.opacityLabel.className = "vis-label vis-opacity"; + this.opacityLabel.innerHTML = 'opacity:'; + this.newColorDiv = document.createElement("div"); + this.newColorDiv.className = "vis-new-color"; + this.newColorDiv.innerHTML = 'new'; + this.initialColorDiv = document.createElement("div"); + this.initialColorDiv.className = "vis-initial-color"; + this.initialColorDiv.innerHTML = 'initial'; + this.cancelButton = document.createElement("div"); + this.cancelButton.className = "vis-button vis-cancel"; + this.cancelButton.innerHTML = 'cancel'; + this.cancelButton.onclick = bind$2(_context = this._hide).call(_context, this, false); + this.applyButton = document.createElement("div"); + this.applyButton.className = "vis-button vis-apply"; + this.applyButton.innerHTML = 'apply'; + this.applyButton.onclick = bind$2(_context2 = this._apply).call(_context2, this); + this.saveButton = document.createElement("div"); + this.saveButton.className = "vis-button vis-save"; + this.saveButton.innerHTML = 'save'; + this.saveButton.onclick = bind$2(_context3 = this._save).call(_context3, this); + this.loadButton = document.createElement("div"); + this.loadButton.className = "vis-button vis-load"; + this.loadButton.innerHTML = 'load last'; + this.loadButton.onclick = bind$2(_context4 = this._loadLast).call(_context4, this); + this.frame.appendChild(this.colorPickerDiv); + this.frame.appendChild(this.arrowDiv); + this.frame.appendChild(this.brightnessLabel); + this.frame.appendChild(this.brightnessDiv); + this.frame.appendChild(this.opacityLabel); + this.frame.appendChild(this.opacityDiv); + this.frame.appendChild(this.newColorDiv); + this.frame.appendChild(this.initialColorDiv); + this.frame.appendChild(this.cancelButton); + this.frame.appendChild(this.applyButton); + this.frame.appendChild(this.saveButton); + this.frame.appendChild(this.loadButton); + } + /** + * bind hammer to the color picker + * @private + */ + + }, { + key: "_bindHammer", + value: function _bindHammer() { + var _this2 = this; + + this.drag = {}; + this.pinch = {}; + this.hammer = new Hammer$1(this.colorPickerCanvas); + this.hammer.get('pinch').set({ + enable: true + }); + onTouch(this.hammer, function (event) { + _this2._moveSelector(event); + }); + this.hammer.on('tap', function (event) { + _this2._moveSelector(event); + }); + this.hammer.on('panstart', function (event) { + _this2._moveSelector(event); + }); + this.hammer.on('panmove', function (event) { + _this2._moveSelector(event); + }); + this.hammer.on('panend', function (event) { + _this2._moveSelector(event); + }); + } + /** + * generate the hue circle. This is relatively heavy (200ms) and is done only once on the first time it is shown. + * @private + */ + + }, { + key: "_generateHueCircle", + value: function _generateHueCircle() { + if (this.generated === false) { + var ctx = this.colorPickerCanvas.getContext('2d'); + + if (this.pixelRation === undefined) { + this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1); + } + + ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0); // clear the canvas + + var w = this.colorPickerCanvas.clientWidth; + var h = this.colorPickerCanvas.clientHeight; + ctx.clearRect(0, 0, w, h); // draw hue circle + + var x, y, hue, sat; + this.centerCoordinates = { + x: w * 0.5, + y: h * 0.5 + }; + this.r = 0.49 * w; + var angleConvert = 2 * Math.PI / 360; + var hfac = 1 / 360; + var sfac = 1 / this.r; + var rgb; + + for (hue = 0; hue < 360; hue++) { + for (sat = 0; sat < this.r; sat++) { + x = this.centerCoordinates.x + sat * Math.sin(angleConvert * hue); + y = this.centerCoordinates.y + sat * Math.cos(angleConvert * hue); + rgb = util$2.HSVToRGB(hue * hfac, sat * sfac, 1); + ctx.fillStyle = 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')'; + ctx.fillRect(x - 0.5, y - 0.5, 2, 2); + } + } + + ctx.strokeStyle = 'rgba(0,0,0,1)'; + ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r); + ctx.stroke(); + this.hueCircle = ctx.getImageData(0, 0, w, h); + } + + this.generated = true; + } + /** + * move the selector. This is called by hammer functions. + * + * @param {Event} event The event + * @private + */ + + }, { + key: "_moveSelector", + value: function _moveSelector(event) { + var rect = this.colorPickerDiv.getBoundingClientRect(); + var left = event.center.x - rect.left; + var top = event.center.y - rect.top; + var centerY = 0.5 * this.colorPickerDiv.clientHeight; + var centerX = 0.5 * this.colorPickerDiv.clientWidth; + var x = left - centerX; + var y = top - centerY; + var angle = Math.atan2(x, y); + var radius = 0.98 * Math.min(Math.sqrt(x * x + y * y), centerX); + var newTop = Math.cos(angle) * radius + centerY; + var newLeft = Math.sin(angle) * radius + centerX; + this.colorPickerSelector.style.top = newTop - 0.5 * this.colorPickerSelector.clientHeight + 'px'; + this.colorPickerSelector.style.left = newLeft - 0.5 * this.colorPickerSelector.clientWidth + 'px'; // set color + + var h = angle / (2 * Math.PI); + h = h < 0 ? h + 1 : h; + var s = radius / this.r; + var hsv = util$2.RGBToHSV(this.color.r, this.color.g, this.color.b); + hsv.h = h; + hsv.s = s; + var rgba = util$2.HSVToRGB(hsv.h, hsv.s, hsv.v); + rgba['a'] = this.color.a; + this.color = rgba; // update previews + + this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')'; + this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')'; + } + }]); + + return ColorPicker; +}(); + +/** + * The way this works is for all properties of this.possible options, you can supply the property name in any form to list the options. + * Boolean options are recognised as Boolean + * Number options should be written as array: [default value, min value, max value, stepsize] + * Colors should be written as array: ['color', '#ffffff'] + * Strings with should be written as array: [option1, option2, option3, ..] + * + * The options are matched with their counterparts in each of the modules and the values used in the configuration are + */ + +var Configurator = +/*#__PURE__*/ +function () { + /** + * @param {Object} parentModule | the location where parentModule.setOptions() can be called + * @param {Object} defaultContainer | the default container of the module + * @param {Object} configureOptions | the fully configured and predefined options set found in allOptions.js + * @param {number} pixelRatio | canvas pixel ratio + */ + function Configurator(parentModule, defaultContainer, configureOptions) { + var pixelRatio = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : 1; + + classCallCheck$1(this, Configurator); + + this.parent = parentModule; + this.changedOptions = []; + this.container = defaultContainer; + this.allowCreation = false; + this.options = {}; + this.initialized = false; + this.popupCounter = 0; + this.defaultOptions = { + enabled: false, + filter: true, + container: undefined, + showButton: true + }; + util$2.extend(this.options, this.defaultOptions); + this.configureOptions = configureOptions; + this.moduleOptions = {}; + this.domElements = []; + this.popupDiv = {}; + this.popupLimit = 5; + this.popupHistory = {}; + this.colorPicker = new ColorPicker(pixelRatio); + this.wrapper = undefined; + } + /** + * refresh all options. + * Because all modules parse their options by themselves, we just use their options. We copy them here. + * + * @param {Object} options + */ + + + createClass$1(Configurator, [{ + key: "setOptions", + value: function setOptions(options) { + if (options !== undefined) { + // reset the popup history because the indices may have been changed. + this.popupHistory = {}; + + this._removePopup(); + + var enabled = true; + + if (typeof options === 'string') { + this.options.filter = options; + } else if (options instanceof Array) { + this.options.filter = options.join(); + } else if (_typeof_1$2(options) === 'object') { + if (options == null) { + throw new TypeError('options cannot be null'); + } + + if (options.container !== undefined) { + this.options.container = options.container; + } + + if (filter$2(options) !== undefined) { + this.options.filter = filter$2(options); + } + + if (options.showButton !== undefined) { + this.options.showButton = options.showButton; + } + + if (options.enabled !== undefined) { + enabled = options.enabled; + } + } else if (typeof options === 'boolean') { + this.options.filter = true; + enabled = options; + } else if (typeof options === 'function') { + this.options.filter = options; + enabled = true; + } + + if (filter$2(this.options) === false) { + enabled = false; + } + + this.options.enabled = enabled; + } + + this._clean(); + } + /** + * + * @param {Object} moduleOptions + */ + + }, { + key: "setModuleOptions", + value: function setModuleOptions(moduleOptions) { + this.moduleOptions = moduleOptions; + + if (this.options.enabled === true) { + this._clean(); + + if (this.options.container !== undefined) { + this.container = this.options.container; + } + + this._create(); + } + } + /** + * Create all DOM elements + * @private + */ + + }, { + key: "_create", + value: function _create() { + this._clean(); + + this.changedOptions = []; + + var filter = filter$2(this.options); + + var counter = 0; + var show = false; + + for (var option in this.configureOptions) { + if (this.configureOptions.hasOwnProperty(option)) { + this.allowCreation = false; + show = false; + + if (typeof filter === 'function') { + show = filter(option, []); + show = show || this._handleObject(this.configureOptions[option], [option], true); + } else if (filter === true || indexOf$3(filter).call(filter, option) !== -1) { + show = true; + } + + if (show !== false) { + this.allowCreation = true; // linebreak between categories + + if (counter > 0) { + this._makeItem([]); + } // a header for the category + + + this._makeHeader(option); // get the sub options + + + this._handleObject(this.configureOptions[option], [option]); + } + + counter++; + } + } + + this._makeButton(); + + this._push(); //~ this.colorPicker.insertTo(this.container); + + } + /** + * draw all DOM elements on the screen + * @private + */ + + }, { + key: "_push", + value: function _push() { + this.wrapper = document.createElement('div'); + this.wrapper.className = 'vis-configuration-wrapper'; + this.container.appendChild(this.wrapper); + + for (var i = 0; i < this.domElements.length; i++) { + this.wrapper.appendChild(this.domElements[i]); + } + + this._showPopupIfNeeded(); + } + /** + * delete all DOM elements + * @private + */ + + }, { + key: "_clean", + value: function _clean() { + for (var i = 0; i < this.domElements.length; i++) { + this.wrapper.removeChild(this.domElements[i]); + } + + if (this.wrapper !== undefined) { + this.container.removeChild(this.wrapper); + this.wrapper = undefined; + } + + this.domElements = []; + + this._removePopup(); + } + /** + * get the value from the actualOptions if it exists + * @param {array} path | where to look for the actual option + * @returns {*} + * @private + */ + + }, { + key: "_getValue", + value: function _getValue(path) { + var base = this.moduleOptions; + + for (var i = 0; i < path.length; i++) { + if (base[path[i]] !== undefined) { + base = base[path[i]]; + } else { + base = undefined; + break; + } + } + + return base; + } + /** + * all option elements are wrapped in an item + * @param {Array} path | where to look for the actual option + * @param {Array.} domElements + * @returns {number} + * @private + */ + + }, { + key: "_makeItem", + value: function _makeItem(path) { + if (this.allowCreation === true) { + var item = document.createElement('div'); + item.className = 'vis-configuration vis-config-item vis-config-s' + path.length; + + for (var _len = arguments.length, domElements = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) { + domElements[_key - 1] = arguments[_key]; + } + + forEach$3(domElements).call(domElements, function (element) { + item.appendChild(element); + }); + + this.domElements.push(item); + return this.domElements.length; + } + + return 0; + } + /** + * header for major subjects + * @param {string} name + * @private + */ + + }, { + key: "_makeHeader", + value: function _makeHeader(name) { + var div = document.createElement('div'); + div.className = 'vis-configuration vis-config-header'; + div.innerHTML = name; + + this._makeItem([], div); + } + /** + * make a label, if it is an object label, it gets different styling. + * @param {string} name + * @param {array} path | where to look for the actual option + * @param {string} objectLabel + * @returns {HTMLElement} + * @private + */ + + }, { + key: "_makeLabel", + value: function _makeLabel(name, path) { + var objectLabel = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + var div = document.createElement('div'); + div.className = 'vis-configuration vis-config-label vis-config-s' + path.length; + + if (objectLabel === true) { + div.innerHTML = '' + name + ':'; + } else { + div.innerHTML = name + ':'; + } + + return div; + } + /** + * make a dropdown list for multiple possible string optoins + * @param {Array.} arr + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_makeDropdown", + value: function _makeDropdown(arr, value, path) { + var select = document.createElement('select'); + select.className = 'vis-configuration vis-config-select'; + var selectedValue = 0; + + if (value !== undefined) { + if (indexOf$3(arr).call(arr, value) !== -1) { + selectedValue = indexOf$3(arr).call(arr, value); + } + } + + for (var i = 0; i < arr.length; i++) { + var option = document.createElement('option'); + option.value = arr[i]; + + if (i === selectedValue) { + option.selected = 'selected'; + } + + option.innerHTML = arr[i]; + select.appendChild(option); + } + + var me = this; + + select.onchange = function () { + me._update(this.value, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + + this._makeItem(path, label, select); + } + /** + * make a range object for numeric options + * @param {Array.} arr + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_makeRange", + value: function _makeRange(arr, value, path) { + var defaultValue = arr[0]; + var min = arr[1]; + var max = arr[2]; + var step = arr[3]; + var range = document.createElement('input'); + range.className = 'vis-configuration vis-config-range'; + + try { + range.type = 'range'; // not supported on IE9 + + range.min = min; + range.max = max; + } // TODO: Add some error handling and remove this lint exception + catch (err) {} // eslint-disable-line no-empty + + + range.step = step; // set up the popup settings in case they are needed. + + var popupString = ''; + var popupValue = 0; + + if (value !== undefined) { + var factor = 1.20; + + if (value < 0 && value * factor < min) { + range.min = Math.ceil(value * factor); + popupValue = range.min; + popupString = 'range increased'; + } else if (value / factor < min) { + range.min = Math.ceil(value / factor); + popupValue = range.min; + popupString = 'range increased'; + } + + if (value * factor > max && max !== 1) { + range.max = Math.ceil(value * factor); + popupValue = range.max; + popupString = 'range increased'; + } + + range.value = value; + } else { + range.value = defaultValue; + } + + var input = document.createElement('input'); + input.className = 'vis-configuration vis-config-rangeinput'; + input.value = Number(range.value); + var me = this; + + range.onchange = function () { + input.value = this.value; + + me._update(Number(this.value), path); + }; + + range.oninput = function () { + input.value = this.value; + }; + + var label = this._makeLabel(path[path.length - 1], path); + + var itemIndex = this._makeItem(path, label, range, input); // if a popup is needed AND it has not been shown for this value, show it. + + + if (popupString !== '' && this.popupHistory[itemIndex] !== popupValue) { + this.popupHistory[itemIndex] = popupValue; + + this._setupPopup(popupString, itemIndex); + } + } + /** + * make a button object + * @private + */ + + }, { + key: "_makeButton", + value: function _makeButton() { + var _this = this; + + if (this.options.showButton === true) { + var generateButton = document.createElement('div'); + generateButton.className = 'vis-configuration vis-config-button'; + generateButton.innerHTML = 'generate options'; + + generateButton.onclick = function () { + _this._printOptions(); + }; + + generateButton.onmouseover = function () { + generateButton.className = 'vis-configuration vis-config-button hover'; + }; + + generateButton.onmouseout = function () { + generateButton.className = 'vis-configuration vis-config-button'; + }; + + this.optionsContainer = document.createElement('div'); + this.optionsContainer.className = 'vis-configuration vis-config-option-container'; + this.domElements.push(this.optionsContainer); + this.domElements.push(generateButton); + } + } + /** + * prepare the popup + * @param {string} string + * @param {number} index + * @private + */ + + }, { + key: "_setupPopup", + value: function _setupPopup(string, index) { + var _this2 = this; + + if (this.initialized === true && this.allowCreation === true && this.popupCounter < this.popupLimit) { + var div = document.createElement("div"); + div.id = "vis-configuration-popup"; + div.className = "vis-configuration-popup"; + div.innerHTML = string; + + div.onclick = function () { + _this2._removePopup(); + }; + + this.popupCounter += 1; + this.popupDiv = { + html: div, + index: index + }; + } + } + /** + * remove the popup from the dom + * @private + */ + + }, { + key: "_removePopup", + value: function _removePopup() { + if (this.popupDiv.html !== undefined) { + this.popupDiv.html.parentNode.removeChild(this.popupDiv.html); + clearTimeout(this.popupDiv.hideTimeout); + clearTimeout(this.popupDiv.deleteTimeout); + this.popupDiv = {}; + } + } + /** + * Show the popup if it is needed. + * @private + */ + + }, { + key: "_showPopupIfNeeded", + value: function _showPopupIfNeeded() { + var _this3 = this; + + if (this.popupDiv.html !== undefined) { + var correspondingElement = this.domElements[this.popupDiv.index]; + var rect = correspondingElement.getBoundingClientRect(); + this.popupDiv.html.style.left = rect.left + "px"; + this.popupDiv.html.style.top = rect.top - 30 + "px"; // 30 is the height; + + document.body.appendChild(this.popupDiv.html); + this.popupDiv.hideTimeout = setTimeout$2(function () { + _this3.popupDiv.html.style.opacity = 0; + }, 1500); + this.popupDiv.deleteTimeout = setTimeout$2(function () { + _this3._removePopup(); + }, 1800); + } + } + /** + * make a checkbox for boolean options. + * @param {number} defaultValue + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_makeCheckbox", + value: function _makeCheckbox(defaultValue, value, path) { + var checkbox = document.createElement('input'); + checkbox.type = 'checkbox'; + checkbox.className = 'vis-configuration vis-config-checkbox'; + checkbox.checked = defaultValue; + + if (value !== undefined) { + checkbox.checked = value; + + if (value !== defaultValue) { + if (_typeof_1$2(defaultValue) === 'object') { + if (value !== defaultValue.enabled) { + this.changedOptions.push({ + path: path, + value: value + }); + } + } else { + this.changedOptions.push({ + path: path, + value: value + }); + } + } + } + + var me = this; + + checkbox.onchange = function () { + me._update(this.checked, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + + this._makeItem(path, label, checkbox); + } + /** + * make a text input field for string options. + * @param {number} defaultValue + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_makeTextInput", + value: function _makeTextInput(defaultValue, value, path) { + var checkbox = document.createElement('input'); + checkbox.type = 'text'; + checkbox.className = 'vis-configuration vis-config-text'; + checkbox.value = value; + + if (value !== defaultValue) { + this.changedOptions.push({ + path: path, + value: value + }); + } + + var me = this; + + checkbox.onchange = function () { + me._update(this.value, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + + this._makeItem(path, label, checkbox); + } + /** + * make a color field with a color picker for color fields + * @param {Array.} arr + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_makeColorField", + value: function _makeColorField(arr, value, path) { + var _this4 = this; + + var defaultColor = arr[1]; + var div = document.createElement('div'); + value = value === undefined ? defaultColor : value; + + if (value !== 'none') { + div.className = 'vis-configuration vis-config-colorBlock'; + div.style.backgroundColor = value; + } else { + div.className = 'vis-configuration vis-config-colorBlock none'; + } + + value = value === undefined ? defaultColor : value; + + div.onclick = function () { + _this4._showColorPicker(value, div, path); + }; + + var label = this._makeLabel(path[path.length - 1], path); + + this._makeItem(path, label, div); + } + /** + * used by the color buttons to call the color picker. + * @param {number} value + * @param {HTMLElement} div + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_showColorPicker", + value: function _showColorPicker(value, div, path) { + var _this5 = this; + + // clear the callback from this div + div.onclick = function () {}; + + this.colorPicker.insertTo(div); + this.colorPicker.show(); + this.colorPicker.setColor(value); + this.colorPicker.setUpdateCallback(function (color) { + var colorString = 'rgba(' + color.r + ',' + color.g + ',' + color.b + ',' + color.a + ')'; + div.style.backgroundColor = colorString; + + _this5._update(colorString, path); + }); // on close of the colorpicker, restore the callback. + + this.colorPicker.setCloseCallback(function () { + div.onclick = function () { + _this5._showColorPicker(value, div, path); + }; + }); + } + /** + * parse an object and draw the correct items + * @param {Object} obj + * @param {array} [path=[]] | where to look for the actual option + * @param {boolean} [checkOnly=false] + * @returns {boolean} + * @private + */ + + }, { + key: "_handleObject", + value: function _handleObject(obj) { + var path = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : []; + var checkOnly = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false; + var show = false; + + var filter = filter$2(this.options); + + var visibleInSet = false; + + for (var subObj in obj) { + if (obj.hasOwnProperty(subObj)) { + show = true; + var item = obj[subObj]; + var newPath = util$2.copyAndExtendArray(path, subObj); + + if (typeof filter === 'function') { + show = filter(subObj, path); // if needed we must go deeper into the object. + + if (show === false) { + if (!(item instanceof Array) && typeof item !== 'string' && typeof item !== 'boolean' && item instanceof Object) { + this.allowCreation = false; + show = this._handleObject(item, newPath, true); + this.allowCreation = checkOnly === false; + } + } + } + + if (show !== false) { + visibleInSet = true; + + var value = this._getValue(newPath); + + if (item instanceof Array) { + this._handleArray(item, value, newPath); + } else if (typeof item === 'string') { + this._makeTextInput(item, value, newPath); + } else if (typeof item === 'boolean') { + this._makeCheckbox(item, value, newPath); + } else if (item instanceof Object) { + // collapse the physics options that are not enabled + var draw = true; + + if (indexOf$3(path).call(path, 'physics') !== -1) { + if (this.moduleOptions.physics.solver !== subObj) { + draw = false; + } + } + + if (draw === true) { + // initially collapse options with an disabled enabled option. + if (item.enabled !== undefined) { + var enabledPath = util$2.copyAndExtendArray(newPath, 'enabled'); + + var enabledValue = this._getValue(enabledPath); + + if (enabledValue === true) { + var label = this._makeLabel(subObj, newPath, true); + + this._makeItem(newPath, label); + + visibleInSet = this._handleObject(item, newPath) || visibleInSet; + } else { + this._makeCheckbox(item, enabledValue, newPath); + } + } else { + var _label = this._makeLabel(subObj, newPath, true); + + this._makeItem(newPath, _label); + + visibleInSet = this._handleObject(item, newPath) || visibleInSet; + } + } + } else { + console.error('dont know how to handle', item, subObj, newPath); + } + } + } + } + + return visibleInSet; + } + /** + * handle the array type of option + * @param {Array.} arr + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_handleArray", + value: function _handleArray(arr, value, path) { + if (typeof arr[0] === 'string' && arr[0] === 'color') { + this._makeColorField(arr, value, path); + + if (arr[1] !== value) { + this.changedOptions.push({ + path: path, + value: value + }); + } + } else if (typeof arr[0] === 'string') { + this._makeDropdown(arr, value, path); + + if (arr[0] !== value) { + this.changedOptions.push({ + path: path, + value: value + }); + } + } else if (typeof arr[0] === 'number') { + this._makeRange(arr, value, path); + + if (arr[0] !== value) { + this.changedOptions.push({ + path: path, + value: Number(value) + }); + } + } + } + /** + * called to update the network with the new settings. + * @param {number} value + * @param {array} path | where to look for the actual option + * @private + */ + + }, { + key: "_update", + value: function _update(value, path) { + var options = this._constructOptions(value, path); + + if (this.parent.body && this.parent.body.emitter && this.parent.body.emitter.emit) { + this.parent.body.emitter.emit("configChange", options); + } + + this.initialized = true; + this.parent.setOptions(options); + } + /** + * + * @param {string|Boolean} value + * @param {Array.} path + * @param {{}} optionsObj + * @returns {{}} + * @private + */ + + }, { + key: "_constructOptions", + value: function _constructOptions(value, path) { + var optionsObj = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; + var pointer = optionsObj; // when dropdown boxes can be string or boolean, we typecast it into correct types + + value = value === 'true' ? true : value; + value = value === 'false' ? false : value; + + for (var i = 0; i < path.length; i++) { + if (path[i] !== 'global') { + if (pointer[path[i]] === undefined) { + pointer[path[i]] = {}; + } + + if (i !== path.length - 1) { + pointer = pointer[path[i]]; + } else { + pointer[path[i]] = value; + } + } + } + + return optionsObj; + } + /** + * @private + */ + + }, { + key: "_printOptions", + value: function _printOptions() { + var options = this.getOptions(); + this.optionsContainer.innerHTML = '
var options = ' + stringify$2(options, null, 2) + '
'; + } + /** + * + * @returns {{}} options + */ + + }, { + key: "getOptions", + value: function getOptions() { + var options = {}; + + for (var i = 0; i < this.changedOptions.length; i++) { + this._constructOptions(this.changedOptions[i].value, this.changedOptions[i].path, options); + } + + return options; + } + }]); + + return Configurator; +}(); + +/** + * Create a timeline visualization + * @extends Core + */ + +var Timeline = +/*#__PURE__*/ +function (_Core) { + inherits$1(Timeline, _Core); + + /** + * @param {HTMLElement} container + * @param {vis.DataSet | vis.DataView | Array} [items] + * @param {vis.DataSet | vis.DataView | Array} [groups] + * @param {Object} [options] See Timeline.setOptions for the available options. + * @constructor Timeline + */ + function Timeline(container, items, groups, options) { + var _context2, _context3, _context4, _context5, _context6, _context7, _context8; + + var _this; + + classCallCheck$1(this, Timeline); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(Timeline).call(this)); + _this.initTime = new Date(); + _this.itemsDone = false; + + if (!(assertThisInitialized$1(_this) instanceof Timeline)) { + throw new SyntaxError('Constructor must be called with the new operator'); + } // if the third element is options, the forth is groups (optionally); + + + if (!(isArray$3(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; + } // TODO: REMOVE THIS in the next MAJOR release + // see https://github.com/almende/vis/issues/2511 + + + if (options && options.throttleRedraw) { + console.warn("Timeline option \"throttleRedraw\" is DEPRICATED and no longer supported. It will be removed in the next MAJOR release."); + } + + var me = assertThisInitialized$1(_this); + + _this.defaultOptions = { + autoResize: true, + orientation: { + axis: 'bottom', + // axis orientation: 'bottom', 'top', or 'both' + item: 'bottom' // not relevant + + }, + moment: moment$3 + }; + _this.options = util$2.deepExtend({}, _this.defaultOptions); // Create the DOM, props, and emitter + + _this._create(container); + + if (!options || options && typeof options.rtl == "undefined") { + _this.dom.root.style.visibility = 'hidden'; + var directionFromDom; + var domNode = _this.dom.root; + + while (!directionFromDom && domNode) { + directionFromDom = window.getComputedStyle(domNode, null).direction; + domNode = domNode.parentElement; + } + + _this.options.rtl = directionFromDom && directionFromDom.toLowerCase() == "rtl"; + } else { + _this.options.rtl = options.rtl; + } + + if (options) { + if (options.rollingMode) { + _this.options.rollingMode = options.rollingMode; + } + + if (options.onInitialDrawComplete) { + _this.options.onInitialDrawComplete = options.onInitialDrawComplete; + } + + if (options.onTimeout) { + _this.options.onTimeout = options.onTimeout; + } + + if (options.loadingScreenTemplate) { + _this.options.loadingScreenTemplate = options.loadingScreenTemplate; + } + } // Prepare loading screen + + + var loadingScreenFragment = document.createElement('div'); + + if (_this.options.loadingScreenTemplate) { + var _context; + + var templateFunction = bind$2(_context = _this.options.loadingScreenTemplate).call(_context, assertThisInitialized$1(_this)); + + var loadingScreen = templateFunction(_this.dom.loadingScreen); + + if (loadingScreen instanceof Object && !(loadingScreen instanceof Element)) { + templateFunction(loadingScreenFragment); + } else { + if (loadingScreen instanceof Element) { + loadingScreenFragment.innerHTML = ''; + loadingScreenFragment.appendChild(loadingScreen); + } else if (loadingScreen != undefined) { + loadingScreenFragment.innerHTML = loadingScreen; + } + } + } + + _this.dom.loadingScreen.appendChild(loadingScreenFragment); // all components listed here will be repainted automatically + + + _this.components = []; + _this.body = { + dom: _this.dom, + domProps: _this.props, + emitter: { + on: bind$2(_context2 = _this.on).call(_context2, assertThisInitialized$1(_this)), + off: bind$2(_context3 = _this.off).call(_context3, assertThisInitialized$1(_this)), + emit: bind$2(_context4 = _this.emit).call(_context4, assertThisInitialized$1(_this)) + }, + hiddenDates: [], + util: { + getScale: function getScale() { + return me.timeAxis.step.scale; + }, + getStep: function getStep() { + return me.timeAxis.step.step; + }, + toScreen: bind$2(_context5 = me._toScreen).call(_context5, me), + toGlobalScreen: bind$2(_context6 = me._toGlobalScreen).call(_context6, me), + // this refers to the root.width + toTime: bind$2(_context7 = me._toTime).call(_context7, me), + toGlobalTime: bind$2(_context8 = me._toGlobalTime).call(_context8, me) + } + }; // range + + _this.range = new Range(_this.body, _this.options); + + _this.components.push(_this.range); + + _this.body.range = _this.range; // time axis + + _this.timeAxis = new TimeAxis(_this.body, _this.options); + _this.timeAxis2 = null; // used in case of orientation option 'both' + + _this.components.push(_this.timeAxis); // current time bar + + + _this.currentTime = new CurrentTime(_this.body, _this.options); + + _this.components.push(_this.currentTime); // item set + + + _this.itemSet = new ItemSet(_this.body, _this.options); + + _this.components.push(_this.itemSet); + + _this.itemsData = null; // DataSet + + _this.groupsData = null; // DataSet + + _this.dom.root.onclick = function (event) { + me.emit('click', me.getEventProperties(event)); + }; + + _this.dom.root.ondblclick = function (event) { + me.emit('doubleClick', me.getEventProperties(event)); + }; + + _this.dom.root.oncontextmenu = function (event) { + me.emit('contextmenu', me.getEventProperties(event)); + }; + + _this.dom.root.onmouseover = function (event) { + me.emit('mouseOver', me.getEventProperties(event)); + }; + + if (window.PointerEvent) { + _this.dom.root.onpointerdown = function (event) { + me.emit('mouseDown', me.getEventProperties(event)); + }; + + _this.dom.root.onpointermove = function (event) { + me.emit('mouseMove', me.getEventProperties(event)); + }; + + _this.dom.root.onpointerup = function (event) { + me.emit('mouseUp', me.getEventProperties(event)); + }; + } else { + _this.dom.root.onmousemove = function (event) { + me.emit('mouseMove', me.getEventProperties(event)); + }; + + _this.dom.root.onmousedown = function (event) { + me.emit('mouseDown', me.getEventProperties(event)); + }; + + _this.dom.root.onmouseup = function (event) { + me.emit('mouseUp', me.getEventProperties(event)); + }; + } //Single time autoscale/fit + + + _this.initialFitDone = false; + + _this.on('changed', function () { + if (me.itemsData == null) return; + + if (!me.initialFitDone && !me.options.rollingMode) { + me.initialFitDone = true; + + if (me.options.start != undefined || me.options.end != undefined) { + if (me.options.start == undefined || me.options.end == undefined) { + var range = me.getItemRange(); + } + + var start = me.options.start != undefined ? me.options.start : range.min; + var end = me.options.end != undefined ? me.options.end : range.max; + me.setWindow(start, end, { + animation: false + }); + } else { + me.fit({ + animation: false + }); + } + } + + if (!me.initialDrawDone && (me.initialRangeChangeDone || !me.options.start && !me.options.end || me.options.rollingMode)) { + me.initialDrawDone = true; + me.itemSet.initialDrawDone = true; + me.dom.root.style.visibility = 'visible'; + me.dom.loadingScreen.parentNode.removeChild(me.dom.loadingScreen); + + if (me.options.onInitialDrawComplete) { + setTimeout$2(function () { + return me.options.onInitialDrawComplete(); + }, 0); + } + } + }); + + _this.on('destroyTimeline', function () { + me.destroy(); + }); // apply options + + + if (options) { + _this.setOptions(options); + } + + _this.body.emitter.on('fit', function (args) { + _this._onFit(args); + + _this.redraw(); + }); // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + + + if (groups) { + _this.setGroups(groups); + } // create itemset + + + if (items) { + _this.setItems(items); + } // draw for the first time + + + _this._redraw(); + + return _this; + } + /** + * Load a configurator + * @return {Object} + * @private + */ + + + createClass$1(Timeline, [{ + key: "_createConfigurator", + value: function _createConfigurator() { + return new Configurator(this, this.dom.container, configureOptions); + } + /** + * Force a redraw. The size of all items will be recalculated. + * Can be useful to manually redraw when option autoResize=false and the window + * has been resized, or when the items CSS has been changed. + * + * Note: this function will be overridden on construction with a trottled version + */ + + }, { + key: "redraw", + value: function redraw() { + this.itemSet && this.itemSet.markDirty({ + refreshItems: true + }); + + this._redraw(); + } + /** + * Remove an item from the group + * @param {object} options + */ + + }, { + key: "setOptions", + value: function setOptions(options) { + // validate options + var errorFound = Validator.validate(options, allOptions$1); + + if (errorFound === true) { + console.log('%cErrors have been found in the supplied options object.', printStyle); + } + + Core.prototype.setOptions.call(this, options); + + if ('type' in options) { + if (options.type !== this.options.type) { + this.options.type = options.type; // force recreation of all items + + var itemsData = this.itemsData; + + if (itemsData) { + var selection = this.getSelection(); + this.setItems(null); // remove all + + this.setItems(itemsData); // add all + + this.setSelection(selection); // restore selection + } + } + } + } + /** + * Set items + * @param {vis.DataSet | Array | null} items + */ + + }, { + key: "setItems", + value: function setItems(items) { + this.itemsDone = false; // convert to type DataSet when needed + + var newDataSet; + + if (!items) { + newDataSet = null; + } else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); + } // set items + + + this.itemsData = newDataSet; + this.itemSet && this.itemSet.setItems(newDataSet); + } + /** + * Set groups + * @param {vis.DataSet | Array} groups + */ + + }, { + key: "setGroups", + value: function setGroups(groups) { + // convert to type DataSet when needed + var newDataSet; + + if (!groups) { + newDataSet = null; + } else { + var filter = function filter(group) { + return group.visible !== false; + }; + + if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = new DataView(groups, { + filter: filter + }); + } else { + // turn an array into a dataset + newDataSet = new DataSet(filter$2(groups).call(groups, filter)); + } + } + + this.groupsData = newDataSet; + this.itemSet.setGroups(newDataSet); + } + /** + * Set both items and groups in one go + * @param {{items: (Array | vis.DataSet), groups: (Array | vis.DataSet)}} data + */ + + }, { + key: "setData", + value: function setData(data) { + if (data && data.groups) { + this.setGroups(data.groups); + } + + if (data && data.items) { + this.setItems(data.items); + } + } + /** + * Set selected items by their id. Replaces the current selection + * Unknown id's are silently ignored. + * @param {string[] | string} [ids] An array with zero or more id's of the items to be + * selected. If ids is an empty array, all items will be + * unselected. + * @param {Object} [options] Available options: + * `focus: boolean` + * If true, focus will be set to the selected item(s) + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * Only applicable when option focus is true. + */ + + }, { + key: "setSelection", + value: function setSelection(ids, options) { + this.itemSet && this.itemSet.setSelection(ids); + + if (options && options.focus) { + this.focus(ids, options); + } + } + /** + * Get the selected items by their id + * @return {Array} ids The ids of the selected items + */ + + }, { + key: "getSelection", + value: function getSelection() { + return this.itemSet && this.itemSet.getSelection() || []; + } + /** + * Adjust the visible window such that the selected item (or multiple items) + * are centered on screen. + * @param {string | String[]} id An item id or array with item ids + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * `zoom: boolean` + * If true (default), the timeline will + * zoom on the element after focus it. + */ + + }, { + key: "focus", + value: function focus(id, options) { + if (!this.itemsData || id == undefined) return; + var ids = isArray$3(id) ? id : [id]; // get the specified item(s) + + var itemsData = this.itemsData.getDataSet().get(ids, { + type: { + start: 'Date', + end: 'Date' + } + }); // calculate minimum start and maximum end of specified items + + var start = null; + var end = null; + + forEach$3(itemsData).call(itemsData, function (itemData) { + var s = itemData.start.valueOf(); + var e = 'end' in itemData ? itemData.end.valueOf() : itemData.start.valueOf(); + + if (start === null || s < start) { + start = s; + } + + if (end === null || e > end) { + end = e; + } + }); + + if (start !== null && end !== null) { + var me = this; // Use the first item for the vertical focus + + var item = this.itemSet.items[ids[0]]; + var startPos = this._getScrollTop() * -1; + var initialVerticalScroll = null; // Setup a handler for each frame of the vertical scroll + + var verticalAnimationFrame = function verticalAnimationFrame(ease, willDraw, done) { + var verticalScroll = getItemVerticalScroll(me, item); + + if (verticalScroll === false) { + return; // We don't need to scroll, so do nothing + } + + if (!initialVerticalScroll) { + initialVerticalScroll = verticalScroll; + } + + if (initialVerticalScroll.itemTop == verticalScroll.itemTop && !initialVerticalScroll.shouldScroll) { + return; // We don't need to scroll, so do nothing + } else if (initialVerticalScroll.itemTop != verticalScroll.itemTop && verticalScroll.shouldScroll) { + // The redraw shifted elements, so reset the animation to correct + initialVerticalScroll = verticalScroll; + startPos = me._getScrollTop() * -1; + } + + var from = startPos; + var to = initialVerticalScroll.scrollOffset; + var scrollTop = done ? to : from + (to - from) * ease; + + me._setScrollTop(-scrollTop); + + if (!willDraw) { + me._redraw(); + } + }; // Enforces the final vertical scroll position + + + var setFinalVerticalPosition = function setFinalVerticalPosition() { + var finalVerticalScroll = getItemVerticalScroll(me, item); + + if (finalVerticalScroll.shouldScroll && finalVerticalScroll.itemTop != initialVerticalScroll.itemTop) { + me._setScrollTop(-finalVerticalScroll.scrollOffset); + + me._redraw(); + } + }; // Perform one last check at the end to make sure the final vertical + // position is correct + + + var finalVerticalCallback = function finalVerticalCallback() { + // Double check we ended at the proper scroll position + setFinalVerticalPosition(); // Let the redraw settle and finalize the position. + + setTimeout$2(setFinalVerticalPosition, 100); + }; // calculate the new middle and interval for the window + + + var zoom = options && options.zoom !== undefined ? options.zoom : true; + var middle = (start + end) / 2; + var interval = zoom ? (end - start) * 1.1 : Math.max(this.range.end - this.range.start, (end - start) * 1.1); + var animation = options && options.animation !== undefined ? options.animation : true; + + if (!animation) { + // We aren't animating so set a default so that the final callback forces the vertical location + initialVerticalScroll = { + shouldScroll: false, + scrollOffset: -1, + itemTop: -1 + }; + } + + this.range.setRange(middle - interval / 2, middle + interval / 2, { + animation: animation + }, finalVerticalCallback, verticalAnimationFrame); + } + } + /** + * Set Timeline window such that it fits all items + * @param {Object} [options] Available options: + * `animation: boolean | {duration: number, easingFunction: string}` + * If true (default), the range is animated + * smoothly to the new window. An object can be + * provided to specify duration and easing function. + * Default duration is 500 ms, and default easing + * function is 'easeInOutQuad'. + * @param {function} [callback] + */ + + }, { + key: "fit", + value: function fit(options, callback) { + var animation = options && options.animation !== undefined ? options.animation : true; + var range; + var dataset = this.itemsData && this.itemsData.getDataSet(); + + if (dataset.length === 1 && dataset.get()[0].end === undefined) { + // a single item -> don't fit, just show a range around the item from -4 to +3 days + range = this.getDataRange(); + this.moveTo(range.min.valueOf(), { + animation: animation + }, callback); + } else { + // exactly fit the items (plus a small margin) + range = this.getItemRange(); + this.range.setRange(range.min, range.max, { + animation: animation + }, callback); + } + } + /** + * Determine the range of the items, taking into account their actual width + * and a margin of 10 pixels on both sides. + * + * @returns {{min: Date, max: Date}} + */ + + }, { + key: "getItemRange", + value: function getItemRange() { + var _this2 = this; + + // get a rough approximation for the range based on the items start and end dates + var range = this.getDataRange(); + var min = range.min !== null ? range.min.valueOf() : null; + var max = range.max !== null ? range.max.valueOf() : null; + var minItem = null; + var maxItem = null; + + if (min != null && max != null) { + var interval = max - min; // ms + + if (interval <= 0) { + interval = 10; + } + + var factor = interval / this.props.center.width; + var redrawQueue = {}; + var redrawQueueLength = 0; // collect redraw functions + + forEach$3(util$2).call(util$2, this.itemSet.items, function (item, key) { + if (item.groupShowing) { + var returnQueue = true; + redrawQueue[key] = item.redraw(returnQueue); + redrawQueueLength = redrawQueue[key].length; + } + }); + + var needRedraw = redrawQueueLength > 0; + + if (needRedraw) { + var _loop = function _loop(i) { + forEach$3(util$2).call(util$2, redrawQueue, function (fns) { + fns[i](); + }); + }; + + // redraw all regular items + for (var i = 0; i < redrawQueueLength; i++) { + _loop(i); + } + } // calculate the date of the left side and right side of the items given + + + forEach$3(util$2).call(util$2, this.itemSet.items, function (item) { + var start = getStart(item); + var end = getEnd(item); + var startSide; + var endSide; + + if (_this2.options.rtl) { + startSide = start - (item.getWidthRight() + 10) * factor; + endSide = end + (item.getWidthLeft() + 10) * factor; + } else { + startSide = start - (item.getWidthLeft() + 10) * factor; + endSide = end + (item.getWidthRight() + 10) * factor; + } + + if (startSide < min) { + min = startSide; + minItem = item; + } + + if (endSide > max) { + max = endSide; + maxItem = item; + } + }); + + if (minItem && maxItem) { + var lhs = minItem.getWidthLeft() + 10; + var rhs = maxItem.getWidthRight() + 10; + var delta = this.props.center.width - lhs - rhs; // px + + if (delta > 0) { + if (this.options.rtl) { + min = getStart(minItem) - rhs * interval / delta; // ms + + max = getEnd(maxItem) + lhs * interval / delta; // ms + } else { + min = getStart(minItem) - lhs * interval / delta; // ms + + max = getEnd(maxItem) + rhs * interval / delta; // ms + } + } + } + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + } + /** + * Calculate the data range of the items start and end dates + * @returns {{min: Date, max: Date}} + */ + + }, { + key: "getDataRange", + value: function getDataRange() { + var min = null; + var max = null; + var dataset = this.itemsData && this.itemsData.getDataSet(); + + if (dataset) { + forEach$3(dataset).call(dataset, function (item) { + var start = util$2.convert(item.start, 'Date').valueOf(); + var end = util$2.convert(item.end != undefined ? item.end : item.start, 'Date').valueOf(); + + if (min === null || start < min) { + min = start; + } + + if (max === null || end > max) { + max = end; + } + }); + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; + } + /** + * Generate Timeline related information from an event + * @param {Event} event + * @return {Object} An object with related information, like on which area + * The event happened, whether clicked on an item, etc. + */ + + }, { + key: "getEventProperties", + value: function getEventProperties(event) { + var clientX = event.center ? event.center.x : event.clientX; + var clientY = event.center ? event.center.y : event.clientY; + var centerContainerRect = this.dom.centerContainer.getBoundingClientRect(); + var x = this.options.rtl ? centerContainerRect.right - clientX : clientX - centerContainerRect.left; + var y = clientY - centerContainerRect.top; + var item = this.itemSet.itemFromTarget(event); + var group = this.itemSet.groupFromTarget(event); + var customTime = CustomTime.customTimeFromTarget(event); + var snap = this.itemSet.options.snap || null; + var scale = this.body.util.getScale(); + var step = this.body.util.getStep(); + + var time = this._toTime(x); + + var snappedTime = snap ? snap(time, scale, step) : time; + var element = util$2.getTarget(event); + var what = null; + + if (item != null) { + what = 'item'; + } else if (customTime != null) { + what = 'custom-time'; + } else if (util$2.hasParent(element, this.timeAxis.dom.foreground)) { + what = 'axis'; + } else if (this.timeAxis2 && util$2.hasParent(element, this.timeAxis2.dom.foreground)) { + what = 'axis'; + } else if (util$2.hasParent(element, this.itemSet.dom.labelSet)) { + what = 'group-label'; + } else if (util$2.hasParent(element, this.currentTime.bar)) { + what = 'current-time'; + } else if (util$2.hasParent(element, this.dom.center)) { + what = 'background'; + } + + return { + event: event, + item: item ? item.id : null, + isCluster: item ? !!item.isCluster : false, + items: item ? item.items || [] : null, + group: group ? group.groupId : null, + customTime: customTime ? customTime.options.id : null, + what: what, + pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX, + pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY, + x: x, + y: y, + time: time, + snappedTime: snappedTime + }; + } + /** + * Toggle Timeline rolling mode + */ + + }, { + key: "toggleRollingMode", + value: function toggleRollingMode() { + if (this.range.rolling) { + this.range.stopRolling(); + } else { + if (this.options.rollingMode == undefined) { + this.setOptions(this.options); + } + + this.range.startRolling(); + } + } + /** + * redraw + * @private + */ + + }, { + key: "_redraw", + value: function _redraw() { + Core.prototype._redraw.call(this); + } + /** + * on fit callback + * @param {object} args + * @private + */ + + }, { + key: "_onFit", + value: function _onFit(args) { + var start = args.start, + end = args.end, + animation = args.animation; + + if (!end) { + this.moveTo(start.valueOf(), { + animation: animation + }); + } else { + this.range.setRange(start, end, { + animation: animation + }); + } + } + }]); + + return Timeline; +}(Core); + +function getStart(item) { + return util$2.convert(item.data.start, 'Date').valueOf(); +} +/** + * + * @param {timeline.Item} item + * @returns {number} + */ + + +function getEnd(item) { + var end = item.data.end != undefined ? item.data.end : item.data.start; + return util$2.convert(end, 'Date').valueOf(); +} +/** + * @param {vis.Timeline} timeline + * @param {timeline.Item} item + * @return {{shouldScroll: bool, scrollOffset: number, itemTop: number}} + */ + + +function getItemVerticalScroll(timeline, item) { + if (!item.parent) { + // The item no longer exists, so ignore this focus. + return false; + } + + var itemsetHeight = timeline.options.rtl ? timeline.props.rightContainer.height : timeline.props.leftContainer.height; + var contentHeight = timeline.props.center.height; + var group = item.parent; + var offset = group.top; + var shouldScroll = true; + var orientation = timeline.timeAxis.options.orientation.axis; + + var itemTop = function itemTop() { + if (orientation == "bottom") { + return group.height - item.top - item.height; + } else { + return item.top; + } + }; + + var currentScrollHeight = timeline._getScrollTop() * -1; + var targetOffset = offset + itemTop(); + var height = item.height; + + if (targetOffset < currentScrollHeight) { + if (offset + itemsetHeight <= offset + itemTop() + height) { + offset += itemTop() - timeline.itemSet.options.margin.item.vertical; + } + } else if (targetOffset + height > currentScrollHeight + itemsetHeight) { + offset += itemTop() + height - itemsetHeight + timeline.itemSet.options.margin.item.vertical; + } else { + shouldScroll = false; + } + + offset = Math.min(offset, contentHeight - itemsetHeight); + return { + shouldScroll: shouldScroll, + scrollOffset: offset, + itemTop: targetOffset + }; +} + +/** DataScale */ +var DataScale = +/*#__PURE__*/ +function () { + /** + * + * @param {number} start + * @param {number} end + * @param {boolean} autoScaleStart + * @param {boolean} autoScaleEnd + * @param {number} containerHeight + * @param {number} majorCharHeight + * @param {boolean} zeroAlign + * @param {function} formattingFunction + * @constructor DataScale + */ + function DataScale(start, end, autoScaleStart, autoScaleEnd, containerHeight, majorCharHeight) { + var zeroAlign = arguments.length > 6 && arguments[6] !== undefined ? arguments[6] : false; + var formattingFunction = arguments.length > 7 && arguments[7] !== undefined ? arguments[7] : false; + + classCallCheck$1(this, DataScale); + + this.majorSteps = [1, 2, 5, 10]; + this.minorSteps = [0.25, 0.5, 1, 2]; + this.customLines = null; + this.containerHeight = containerHeight; + this.majorCharHeight = majorCharHeight; + this._start = start; + this._end = end; + this.scale = 1; + this.minorStepIdx = -1; + this.magnitudefactor = 1; + this.determineScale(); + this.zeroAlign = zeroAlign; + this.autoScaleStart = autoScaleStart; + this.autoScaleEnd = autoScaleEnd; + this.formattingFunction = formattingFunction; + + if (autoScaleStart || autoScaleEnd) { + var me = this; + + var roundToMinor = function roundToMinor(value) { + var rounded = value - value % (me.magnitudefactor * me.minorSteps[me.minorStepIdx]); + + if (value % (me.magnitudefactor * me.minorSteps[me.minorStepIdx]) > 0.5 * (me.magnitudefactor * me.minorSteps[me.minorStepIdx])) { + return rounded + me.magnitudefactor * me.minorSteps[me.minorStepIdx]; + } else { + return rounded; + } + }; + + if (autoScaleStart) { + this._start -= this.magnitudefactor * 2 * this.minorSteps[this.minorStepIdx]; + this._start = roundToMinor(this._start); + } + + if (autoScaleEnd) { + this._end += this.magnitudefactor * this.minorSteps[this.minorStepIdx]; + this._end = roundToMinor(this._end); + } + + this.determineScale(); + } + } + /** + * set chart height + * @param {number} majorCharHeight + */ + + + createClass$1(DataScale, [{ + key: "setCharHeight", + value: function setCharHeight(majorCharHeight) { + this.majorCharHeight = majorCharHeight; + } + /** + * set height + * @param {number} containerHeight + */ + + }, { + key: "setHeight", + value: function setHeight(containerHeight) { + this.containerHeight = containerHeight; + } + /** + * determine scale + */ + + }, { + key: "determineScale", + value: function determineScale() { + var range = this._end - this._start; + this.scale = this.containerHeight / range; + var minimumStepValue = this.majorCharHeight / this.scale; + var orderOfMagnitude = range > 0 ? Math.round(Math.log(range) / Math.LN10) : 0; + this.minorStepIdx = -1; + this.magnitudefactor = Math.pow(10, orderOfMagnitude); + var start = 0; + + if (orderOfMagnitude < 0) { + start = orderOfMagnitude; + } + + var solutionFound = false; + + for (var l = start; Math.abs(l) <= Math.abs(orderOfMagnitude); l++) { + this.magnitudefactor = Math.pow(10, l); + + for (var j = 0; j < this.minorSteps.length; j++) { + var stepSize = this.magnitudefactor * this.minorSteps[j]; + + if (stepSize >= minimumStepValue) { + solutionFound = true; + this.minorStepIdx = j; + break; + } + } + + if (solutionFound === true) { + break; + } + } + } + /** + * returns if value is major + * @param {number} value + * @returns {boolean} + */ + + }, { + key: "is_major", + value: function is_major(value) { + return value % (this.magnitudefactor * this.majorSteps[this.minorStepIdx]) === 0; + } + /** + * returns step size + * @returns {number} + */ + + }, { + key: "getStep", + value: function getStep() { + return this.magnitudefactor * this.minorSteps[this.minorStepIdx]; + } + /** + * returns first major + * @returns {number} + */ + + }, { + key: "getFirstMajor", + value: function getFirstMajor() { + var majorStep = this.magnitudefactor * this.majorSteps[this.minorStepIdx]; + return this.convertValue(this._start + (majorStep - this._start % majorStep) % majorStep); + } + /** + * returns first major + * @param {date} current + * @returns {date} formatted date + */ + + }, { + key: "formatValue", + value: function formatValue(current) { + var returnValue = current.toPrecision(5); + + if (typeof this.formattingFunction === 'function') { + returnValue = this.formattingFunction(current); + } + + if (typeof returnValue === 'number') { + return "".concat(returnValue); + } else if (typeof returnValue === 'string') { + return returnValue; + } else { + return current.toPrecision(5); + } + } + /** + * returns lines + * @returns {object} lines + */ + + }, { + key: "getLines", + value: function getLines() { + var lines = []; + var step = this.getStep(); + var bottomOffset = (step - this._start % step) % step; + + for (var i = this._start + bottomOffset; this._end - i > 0.00001; i += step) { + if (i != this._start) { + //Skip the bottom line + lines.push({ + major: this.is_major(i), + y: this.convertValue(i), + val: this.formatValue(i) + }); + } + } + + return lines; + } + /** + * follow scale + * @param {object} other + */ + + }, { + key: "followScale", + value: function followScale(other) { + var oldStepIdx = this.minorStepIdx; + var oldStart = this._start; + var oldEnd = this._end; + var me = this; + + var increaseMagnitude = function increaseMagnitude() { + me.magnitudefactor *= 2; + }; + + var decreaseMagnitude = function decreaseMagnitude() { + me.magnitudefactor /= 2; + }; + + if (other.minorStepIdx <= 1 && this.minorStepIdx <= 1 || other.minorStepIdx > 1 && this.minorStepIdx > 1) ; else if (other.minorStepIdx < this.minorStepIdx) { + //I'm 5, they are 4 per major. + this.minorStepIdx = 1; + + if (oldStepIdx == 2) { + increaseMagnitude(); + } else { + increaseMagnitude(); + increaseMagnitude(); + } + } else { + //I'm 4, they are 5 per major + this.minorStepIdx = 2; + + if (oldStepIdx == 1) { + decreaseMagnitude(); + } else { + decreaseMagnitude(); + decreaseMagnitude(); + } + } //Get masters stats: + + + var otherZero = other.convertValue(0); + var otherStep = other.getStep() * other.scale; + var done = false; + var count = 0; //Loop until magnitude is correct for given constrains. + + while (!done && count++ < 5) { + //Get my stats: + this.scale = otherStep / (this.minorSteps[this.minorStepIdx] * this.magnitudefactor); + var newRange = this.containerHeight / this.scale; //For the case the magnitudefactor has changed: + + this._start = oldStart; + this._end = this._start + newRange; + var myOriginalZero = this._end * this.scale; + var majorStep = this.magnitudefactor * this.majorSteps[this.minorStepIdx]; + var majorOffset = this.getFirstMajor() - other.getFirstMajor(); + + if (this.zeroAlign) { + var zeroOffset = otherZero - myOriginalZero; + this._end += zeroOffset / this.scale; + this._start = this._end - newRange; + } else { + if (!this.autoScaleStart) { + this._start += majorStep - majorOffset / this.scale; + this._end = this._start + newRange; + } else { + this._start -= majorOffset / this.scale; + this._end = this._start + newRange; + } + } + + if (!this.autoScaleEnd && this._end > oldEnd + 0.00001) { + //Need to decrease magnitude to prevent scale overshoot! (end) + decreaseMagnitude(); + done = false; + continue; + } + + if (!this.autoScaleStart && this._start < oldStart - 0.00001) { + if (this.zeroAlign && oldStart >= 0) { + console.warn("Can't adhere to given 'min' range, due to zeroalign"); + } else { + //Need to decrease magnitude to prevent scale overshoot! (start) + decreaseMagnitude(); + done = false; + continue; + } + } + + if (this.autoScaleStart && this.autoScaleEnd && newRange < oldEnd - oldStart) { + increaseMagnitude(); + done = false; + continue; + } + + done = true; + } + } + /** + * convert value + * @param {number} value + * @returns {number} + */ + + }, { + key: "convertValue", + value: function convertValue(value) { + return this.containerHeight - (value - this._start) * this.scale; + } + /** + * returns screen to value + * @param {number} pixels + * @returns {number} + */ + + }, { + key: "screenToValue", + value: function screenToValue(pixels) { + return (this.containerHeight - pixels) / this.scale + this._start; + } + }]); + + return DataScale; +}(); + +/** A horizontal time axis */ + +var DataAxis = +/*#__PURE__*/ +function (_Component) { + inherits$1(DataAxis, _Component); + + /** + * @param {Object} body + * @param {Object} [options] See DataAxis.setOptions for the available + * options. + * @param {SVGElement} svg + * @param {timeline.LineGraph.options} linegraphOptions + * @constructor DataAxis + * @extends Component + */ + function DataAxis(body, options, svg, linegraphOptions) { + var _this; + + classCallCheck$1(this, DataAxis); + + _this = possibleConstructorReturn$1(this, getPrototypeOf$4(DataAxis).call(this)); + _this.id = util$2.randomUUID(); + _this.body = body; + _this.defaultOptions = { + orientation: 'left', + // supported: 'left', 'right' + showMinorLabels: true, + showMajorLabels: true, + icons: false, + majorLinesOffset: 7, + minorLinesOffset: 4, + labelOffsetX: 10, + labelOffsetY: 2, + iconWidth: 20, + width: '40px', + visible: true, + alignZeros: true, + left: { + range: { + min: undefined, + max: undefined + }, + format: function format(value) { + return "".concat(_parseFloat$3(value.toPrecision(3))); + }, + title: { + text: undefined, + style: undefined + } + }, + right: { + range: { + min: undefined, + max: undefined + }, + format: function format(value) { + return "".concat(_parseFloat$3(value.toPrecision(3))); + }, + title: { + text: undefined, + style: undefined + } + } + }; + _this.linegraphOptions = linegraphOptions; + _this.linegraphSVG = svg; + _this.props = {}; + _this.DOMelements = { + // dynamic elements + lines: {}, + labels: {}, + title: {} + }; + _this.dom = {}; + _this.scale = undefined; + _this.range = { + start: 0, + end: 0 + }; + _this.options = util$2.extend({}, _this.defaultOptions); + _this.conversionFactor = 1; + + _this.setOptions(options); + + _this.width = Number("".concat(_this.options.width).replace("px", "")); + _this.minWidth = _this.width; + _this.height = _this.linegraphSVG.getBoundingClientRect().height; + _this.hidden = false; + _this.stepPixels = 25; + _this.zeroCrossing = -1; + _this.amountOfSteps = -1; + _this.lineOffset = 0; + _this.master = true; + _this.masterAxis = null; + _this.svgElements = {}; + _this.iconsRemoved = false; + _this.groups = {}; + _this.amountOfGroups = 0; // create the HTML DOM + + _this._create(); + + if (_this.scale == undefined) { + _this._redrawLabels(); + } + + _this.framework = { + svg: _this.svg, + svgElements: _this.svgElements, + options: _this.options, + groups: _this.groups + }; + + var me = assertThisInitialized$1(_this); + + _this.body.emitter.on("verticalDrag", function () { + me.dom.lineContainer.style.top = "".concat(me.body.domProps.scrollTop, "px"); + }); + + return _this; + } + /** + * Adds group to data axis + * @param {string} label + * @param {object} graphOptions + */ + + + createClass$1(DataAxis, [{ + key: "addGroup", + value: function addGroup(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + + this.amountOfGroups += 1; + } + /** + * updates group of data axis + * @param {string} label + * @param {object} graphOptions + */ + + }, { + key: "updateGroup", + value: function updateGroup(label, graphOptions) { + if (!this.groups.hasOwnProperty(label)) { + this.amountOfGroups += 1; + } + + this.groups[label] = graphOptions; + } + /** + * removes group of data axis + * @param {string} label + */ + + }, { + key: "removeGroup", + value: function removeGroup(label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } + } + /** + * sets options + * @param {object} options + */ + + }, { + key: "setOptions", + value: function setOptions(options) { + if (options) { + var redraw = false; + + if (this.options.orientation != options.orientation && options.orientation !== undefined) { + redraw = true; + } + + var fields = ['orientation', 'showMinorLabels', 'showMajorLabels', 'icons', 'majorLinesOffset', 'minorLinesOffset', 'labelOffsetX', 'labelOffsetY', 'iconWidth', 'width', 'visible', 'left', 'right', 'alignZeros']; + util$2.selectiveDeepExtend(fields, this.options, options); + this.minWidth = Number("".concat(this.options.width).replace("px", "")); + + if (redraw === true && this.dom.frame) { + this.hide(); + this.show(); + } + } + } + /** + * Create the HTML DOM for the DataAxis + */ + + }, { + key: "_create", + value: function _create() { + this.dom.frame = document.createElement('div'); + this.dom.frame.style.width = this.options.width; + this.dom.frame.style.height = this.height; + this.dom.lineContainer = document.createElement('div'); + this.dom.lineContainer.style.width = '100%'; + this.dom.lineContainer.style.height = this.height; + this.dom.lineContainer.style.position = 'relative'; + this.dom.lineContainer.style.visibility = 'visible'; + this.dom.lineContainer.style.display = 'block'; // create svg element for graph drawing. + + this.svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + this.svg.style.position = "absolute"; + this.svg.style.top = '0px'; + this.svg.style.height = '100%'; + this.svg.style.width = '100%'; + this.svg.style.display = "block"; + this.dom.frame.appendChild(this.svg); + } + /** + * redraws groups icons + */ + + }, { + key: "_redrawGroupIcons", + value: function _redrawGroupIcons() { + prepareElements(this.svgElements); + var x; + var iconWidth = this.options.iconWidth; + var iconHeight = 15; + var iconOffset = 4; + var y = iconOffset + 0.5 * iconHeight; + + if (this.options.orientation === 'left') { + x = iconOffset; + } else { + x = this.width - iconWidth - iconOffset; + } + + var groupArray = keys$3(this.groups); + + sort$2(groupArray).call(groupArray, function (a, b) { + return a < b ? -1 : 1; + }); + + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = getIterator$2(groupArray), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var groupId = _step.value; + + if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) { + this.groups[groupId].getLegend(iconWidth, iconHeight, this.framework, x, y); + y += iconHeight + iconOffset; + } + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return != null) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + cleanupElements(this.svgElements); + this.iconsRemoved = false; + } + /** + * Cleans up icons + */ + + }, { + key: "_cleanupIcons", + value: function _cleanupIcons() { + if (this.iconsRemoved === false) { + prepareElements(this.svgElements); + cleanupElements(this.svgElements); + this.iconsRemoved = true; + } + } + /** + * Create the HTML DOM for the DataAxis + */ + + }, { + key: "show", + value: function show() { + this.hidden = false; + + if (!this.dom.frame.parentNode) { + if (this.options.orientation === 'left') { + this.body.dom.left.appendChild(this.dom.frame); + } else { + this.body.dom.right.appendChild(this.dom.frame); + } + } + + if (!this.dom.lineContainer.parentNode) { + this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer); + } + + this.dom.lineContainer.style.display = 'block'; + } + /** + * Create the HTML DOM for the DataAxis + */ + + }, { + key: "hide", + value: function hide() { + this.hidden = true; + + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } + + this.dom.lineContainer.style.display = 'none'; + } + /** + * Set a range (start and end) + * @param {number} start + * @param {number} end + */ + + }, { + key: "setRange", + value: function setRange(start, end) { + this.range.start = start; + this.range.end = end; + } + /** + * Repaint the component + * @return {boolean} Returns true if the component is resized + */ + + }, { + key: "redraw", + value: function redraw() { + var resized = false; + var activeGroups = 0; // Make sure the line container adheres to the vertical scrolling. + + this.dom.lineContainer.style.top = "".concat(this.body.domProps.scrollTop, "px"); + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) { + activeGroups++; + } + } + } + + if (this.amountOfGroups === 0 || activeGroups === 0) { + this.hide(); + } else { + this.show(); + this.height = Number(this.linegraphSVG.style.height.replace("px", "")); // svg offsetheight did not work in firefox and explorer... + + this.dom.lineContainer.style.height = "".concat(this.height, "px"); + this.width = this.options.visible === true ? Number("".concat(this.options.width).replace("px", "")) : 0; + var props = this.props; + var frame = this.dom.frame; // update classname + + frame.className = 'vis-data-axis'; // calculate character width and height + + this._calculateCharSize(); + + var orientation = this.options.orientation; + var showMinorLabels = this.options.showMinorLabels; + var showMajorLabels = this.options.showMajorLabels; + var backgroundHorizontalOffsetWidth = this.body.dom.backgroundHorizontal.offsetWidth; // determine the width and height of the elements for the axis + + props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0; + props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0; + props.minorLineWidth = backgroundHorizontalOffsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset; + props.minorLineHeight = 1; + props.majorLineWidth = backgroundHorizontalOffsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset; + props.majorLineHeight = 1; // take frame offline while updating (is almost twice as fast) + + if (orientation === 'left') { + frame.style.top = '0'; + frame.style.left = '0'; + frame.style.bottom = ''; + frame.style.width = "".concat(this.width, "px"); + frame.style.height = "".concat(this.height, "px"); + this.props.width = this.body.domProps.left.width; + this.props.height = this.body.domProps.left.height; + } else { + // right + frame.style.top = ''; + frame.style.bottom = '0'; + frame.style.left = '0'; + frame.style.width = "".concat(this.width, "px"); + frame.style.height = "".concat(this.height, "px"); + this.props.width = this.body.domProps.right.width; + this.props.height = this.body.domProps.right.height; + } + + resized = this._redrawLabels(); + resized = this._isResized() || resized; + + if (this.options.icons === true) { + this._redrawGroupIcons(); + } else { + this._cleanupIcons(); + } + + this._redrawTitle(orientation); + } + + return resized; + } + /** + * Repaint major and minor text labels and vertical grid lines + * + * @returns {boolean} + * @private + */ + + }, { + key: "_redrawLabels", + value: function _redrawLabels() { + var _this2 = this; + + var resized = false; + prepareElements(this.DOMelements.lines); + prepareElements(this.DOMelements.labels); + var orientation = this.options['orientation']; + var customRange = this.options[orientation].range != undefined ? this.options[orientation].range : {}; //Override range with manual options: + + var autoScaleEnd = true; + + if (customRange.max != undefined) { + this.range.end = customRange.max; + autoScaleEnd = false; + } + + var autoScaleStart = true; + + if (customRange.min != undefined) { + this.range.start = customRange.min; + autoScaleStart = false; + } + + this.scale = new DataScale(this.range.start, this.range.end, autoScaleStart, autoScaleEnd, this.dom.frame.offsetHeight, this.props.majorCharHeight, this.options.alignZeros, this.options[orientation].format); + + if (this.master === false && this.masterAxis != undefined) { + this.scale.followScale(this.masterAxis.scale); + this.dom.lineContainer.style.display = 'none'; + } else { + this.dom.lineContainer.style.display = 'block'; + } //Is updated in side-effect of _redrawLabel(): + + + this.maxLabelSize = 0; + var lines = this.scale.getLines(); + + forEach$3(lines).call(lines, function (line) { + var y = line.y; + var isMajor = line.major; + + if (_this2.options['showMinorLabels'] && isMajor === false) { + _this2._redrawLabel(y - 2, line.val, orientation, 'vis-y-axis vis-minor', _this2.props.minorCharHeight); + } + + if (isMajor) { + if (y >= 0) { + _this2._redrawLabel(y - 2, line.val, orientation, 'vis-y-axis vis-major', _this2.props.majorCharHeight); + } + } + + if (_this2.master === true) { + if (isMajor) { + _this2._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-major', _this2.options.majorLinesOffset, _this2.props.majorLineWidth); + } else { + _this2._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-minor', _this2.options.minorLinesOffset, _this2.props.minorLineWidth); + } + } + }); // Note that title is rotated, so we're using the height, not width! + + + var titleWidth = 0; + + if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) { + titleWidth = this.props.titleCharHeight; + } + + var offset = this.options.icons === true ? Math.max(this.options.iconWidth, titleWidth) + this.options.labelOffsetX + 15 : titleWidth + this.options.labelOffsetX + 15; // this will resize the yAxis to accommodate the labels. + + if (this.maxLabelSize > this.width - offset && this.options.visible === true) { + this.width = this.maxLabelSize + offset; + this.options.width = "".concat(this.width, "px"); + cleanupElements(this.DOMelements.lines); + cleanupElements(this.DOMelements.labels); + this.redraw(); + resized = true; + } // this will resize the yAxis if it is too big for the labels. + else if (this.maxLabelSize < this.width - offset && this.options.visible === true && this.width > this.minWidth) { + this.width = Math.max(this.minWidth, this.maxLabelSize + offset); + this.options.width = "".concat(this.width, "px"); + cleanupElements(this.DOMelements.lines); + cleanupElements(this.DOMelements.labels); + this.redraw(); + resized = true; + } else { + cleanupElements(this.DOMelements.lines); + cleanupElements(this.DOMelements.labels); + resized = false; + } + + return resized; + } + /** + * converts value + * @param {number} value + * @returns {number} converted number + */ + + }, { + key: "convertValue", + value: function convertValue(value) { + return this.scale.convertValue(value); + } + /** + * converts value + * @param {number} x + * @returns {number} screen value + */ + + }, { + key: "screenToValue", + value: function screenToValue(x) { + return this.scale.screenToValue(x); + } + /** + * Create a label for the axis at position x + * + * @param {number} y + * @param {string} text + * @param {'top'|'right'|'bottom'|'left'} orientation + * @param {string} className + * @param {number} characterHeight + * @private + */ + + }, { + key: "_redrawLabel", + value: function _redrawLabel(y, text, orientation, className, characterHeight) { + // reuse redundant label + var label = getDOMElement('div', this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift(); + + label.className = className; + label.innerHTML = text; + + if (orientation === 'left') { + label.style.left = "-".concat(this.options.labelOffsetX, "px"); + label.style.textAlign = "right"; + } else { + label.style.right = "-".concat(this.options.labelOffsetX, "px"); + label.style.textAlign = "left"; + } + + label.style.top = "".concat(y - 0.5 * characterHeight + this.options.labelOffsetY, "px"); + text += ''; + var largestWidth = Math.max(this.props.majorCharWidth, this.props.minorCharWidth); + + if (this.maxLabelSize < text.length * largestWidth) { + this.maxLabelSize = text.length * largestWidth; + } + } + /** + * Create a minor line for the axis at position y + * @param {number} y + * @param {'top'|'right'|'bottom'|'left'} orientation + * @param {string} className + * @param {number} offset + * @param {number} width + */ + + }, { + key: "_redrawLine", + value: function _redrawLine(y, orientation, className, offset, width) { + if (this.master === true) { + var line = getDOMElement('div', this.DOMelements.lines, this.dom.lineContainer); //this.dom.redundant.lines.shift(); + + line.className = className; + line.innerHTML = ''; + + if (orientation === 'left') { + line.style.left = "".concat(this.width - offset, "px"); + } else { + line.style.right = "".concat(this.width - offset, "px"); + } + + line.style.width = "".concat(width, "px"); + line.style.top = "".concat(y, "px"); + } + } + /** + * Create a title for the axis + * @private + * @param {'top'|'right'|'bottom'|'left'} orientation + */ + + }, { + key: "_redrawTitle", + value: function _redrawTitle(orientation) { + prepareElements(this.DOMelements.title); // Check if the title is defined for this axes + + if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) { + var title = getDOMElement('div', this.DOMelements.title, this.dom.frame); + title.className = "vis-y-axis vis-title vis-".concat(orientation); + title.innerHTML = this.options[orientation].title.text; // Add style - if provided + + if (this.options[orientation].title.style !== undefined) { + util$2.addCssText(title, this.options[orientation].title.style); + } + + if (orientation === 'left') { + title.style.left = "".concat(this.props.titleCharHeight, "px"); + } else { + title.style.right = "".concat(this.props.titleCharHeight, "px"); + } + + title.style.width = "".concat(this.height, "px"); + } // we need to clean up in case we did not use all elements. + + + cleanupElements(this.DOMelements.title); + } + /** + * Determine the size of text on the axis (both major and minor axis). + * The size is calculated only once and then cached in this.props. + * @private + */ + + }, { + key: "_calculateCharSize", + value: function _calculateCharSize() { + // determine the char width and height on the minor axis + if (!('minorCharHeight' in this.props)) { + var textMinor = document.createTextNode('0'); + var measureCharMinor = document.createElement('div'); + measureCharMinor.className = 'vis-y-axis vis-minor vis-measure'; + measureCharMinor.appendChild(textMinor); + this.dom.frame.appendChild(measureCharMinor); + this.props.minorCharHeight = measureCharMinor.clientHeight; + this.props.minorCharWidth = measureCharMinor.clientWidth; + this.dom.frame.removeChild(measureCharMinor); + } + + if (!('majorCharHeight' in this.props)) { + var textMajor = document.createTextNode('0'); + var measureCharMajor = document.createElement('div'); + measureCharMajor.className = 'vis-y-axis vis-major vis-measure'; + measureCharMajor.appendChild(textMajor); + this.dom.frame.appendChild(measureCharMajor); + this.props.majorCharHeight = measureCharMajor.clientHeight; + this.props.majorCharWidth = measureCharMajor.clientWidth; + this.dom.frame.removeChild(measureCharMajor); + } + + if (!('titleCharHeight' in this.props)) { + var textTitle = document.createTextNode('0'); + var measureCharTitle = document.createElement('div'); + measureCharTitle.className = 'vis-y-axis vis-title vis-measure'; + measureCharTitle.appendChild(textTitle); + this.dom.frame.appendChild(measureCharTitle); + this.props.titleCharHeight = measureCharTitle.clientHeight; + this.props.titleCharWidth = measureCharTitle.clientWidth; + this.dom.frame.removeChild(measureCharTitle); + } + } + }]); + + return DataAxis; +}(Component); + +/** + * + * @param {number | string} groupId + * @param {Object} options // TODO: Describe options + * + * @constructor Points + */ + +function Points(groupId, options) {} // eslint-disable-line no-unused-vars + +/** + * draw the data points + * + * @param {Array} dataset + * @param {GraphGroup} group + * @param {Object} framework | SVG DOM element + * @param {number} [offset] + */ + + +Points.draw = function (dataset, group, framework, offset) { + offset = offset || 0; + var callback = getCallback(framework, group); + + for (var i = 0; i < dataset.length; i++) { + if (!callback) { + // draw the point the simple way. + drawPoint(dataset[i].screen_x + offset, dataset[i].screen_y, getGroupTemplate(group), framework.svgElements, framework.svg, dataset[i].label); + } else { + var callbackResult = callback(dataset[i], group); // result might be true, false or an object + + if (callbackResult === true || _typeof_1$2(callbackResult) === 'object') { + drawPoint(dataset[i].screen_x + offset, dataset[i].screen_y, getGroupTemplate(group, callbackResult), framework.svgElements, framework.svg, dataset[i].label); + } + } + } +}; + +Points.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) { + var fillHeight = iconHeight * 0.5; + var outline = getSVGElement("rect", framework.svgElements, framework.svg); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2 * fillHeight); + outline.setAttributeNS(null, "class", "vis-outline"); //Don't call callback on icon + + drawPoint(x + 0.5 * iconWidth, y, getGroupTemplate(group), framework.svgElements, framework.svg); +}; +/** + * + * @param {vis.Group} group + * @param {any} callbackResult + * @returns {{style: *, styles: (*|string), size: *, className: *}} + */ + + +function getGroupTemplate(group, callbackResult) { + callbackResult = typeof callbackResult === 'undefined' ? {} : callbackResult; + return { + style: callbackResult.style || group.options.drawPoints.style, + styles: callbackResult.styles || group.options.drawPoints.styles, + size: callbackResult.size || group.options.drawPoints.size, + className: callbackResult.className || group.className + }; +} +/** + * + * @param {Object} framework | SVG DOM element + * @param {vis.Group} group + * @returns {function} + */ + + +function getCallback(framework, group) { + var callback = undefined; // check for the graph2d onRender + + if (framework.options && framework.options.drawPoints && framework.options.drawPoints.onRender && typeof framework.options.drawPoints.onRender == 'function') { + callback = framework.options.drawPoints.onRender; + } // override it with the group onRender if defined + + + if (group.group.options && group.group.options.drawPoints && group.group.options.drawPoints.onRender && typeof group.group.options.drawPoints.onRender == 'function') { + callback = group.group.options.drawPoints.onRender; + } + + return callback; +} + +/** + * + * @param {vis.GraphGroup.id} groupId + * @param {Object} options // TODO: Describe options + * @constructor Bargraph + */ + +function Bargraph(groupId, options) {// eslint-disable-line no-unused-vars +} + +Bargraph.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) { + var fillHeight = iconHeight * 0.5; + var outline = getSVGElement("rect", framework.svgElements, framework.svg); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2 * fillHeight); + outline.setAttributeNS(null, "class", "vis-outline"); + var barWidth = Math.round(0.3 * iconWidth); + var originalWidth = group.options.barChart.width; + var scale = originalWidth / barWidth; + var bar1Height = Math.round(0.4 * iconHeight); + var bar2Height = Math.round(0.75 * iconHeight); + var offset = Math.round((iconWidth - 2 * barWidth) / 3); + drawBar(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, barWidth, bar1Height, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style); + drawBar(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style); + + if (group.options.drawPoints.enabled == true) { + var groupTemplate = { + style: group.options.drawPoints.style, + styles: group.options.drawPoints.styles, + size: group.options.drawPoints.size / scale, + className: group.className + }; + drawPoint(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, groupTemplate, framework.svgElements, framework.svg); + drawPoint(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, groupTemplate, framework.svgElements, framework.svg); + } +}; +/** + * draw a bar graph + * + * @param {Array.} groupIds + * @param {Object} processedGroupData + * @param {{svg: Object, svgElements: Array., options: Object, groups: Array.}} framework + */ + + +Bargraph.draw = function (groupIds, processedGroupData, framework) { + var combinedData = []; + var intersections = {}; + var coreDistance; + var key, drawData; + var group; + var i, j; + var barPoints = 0; // combine all barchart data + + for (i = 0; i < groupIds.length; i++) { + group = framework.groups[groupIds[i]]; + + if (group.options.style === 'bar') { + if (group.visible === true && (framework.options.groups.visibility[groupIds[i]] === undefined || framework.options.groups.visibility[groupIds[i]] === true)) { + for (j = 0; j < processedGroupData[groupIds[i]].length; j++) { + combinedData.push({ + screen_x: processedGroupData[groupIds[i]][j].screen_x, + screen_end: processedGroupData[groupIds[i]][j].screen_end, + screen_y: processedGroupData[groupIds[i]][j].screen_y, + x: processedGroupData[groupIds[i]][j].x, + end: processedGroupData[groupIds[i]][j].end, + y: processedGroupData[groupIds[i]][j].y, + groupId: groupIds[i], + label: processedGroupData[groupIds[i]][j].label + }); + barPoints += 1; + } + } + } + } + + if (barPoints === 0) { + return; + } // sort by time and by group + + + sort$2(combinedData).call(combinedData, function (a, b) { + if (a.screen_x === b.screen_x) { + return a.groupId < b.groupId ? -1 : 1; + } else { + return a.screen_x - b.screen_x; + } + }); // get intersections + + + Bargraph._getDataIntersections(intersections, combinedData); // plot barchart + + + for (i = 0; i < combinedData.length; i++) { + group = framework.groups[combinedData[i].groupId]; + var minWidth = group.options.barChart.minWidth != undefined ? group.options.barChart.minWidth : 0.1 * group.options.barChart.width; + key = combinedData[i].screen_x; + var heightOffset = 0; + + if (intersections[key] === undefined) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].screen_x - key); + } + + drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth); + } else { + var nextKey = i + (intersections[key].amount - intersections[key].resolved); + + if (nextKey < combinedData.length) { + coreDistance = Math.abs(combinedData[nextKey].screen_x - key); + } + + drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth); + intersections[key].resolved += 1; + + if (group.options.stack === true && group.options.excludeFromStacking !== true) { + if (combinedData[i].screen_y < group.zeroPosition) { + heightOffset = intersections[key].accumulatedNegative; + intersections[key].accumulatedNegative += group.zeroPosition - combinedData[i].screen_y; + } else { + heightOffset = intersections[key].accumulatedPositive; + intersections[key].accumulatedPositive += group.zeroPosition - combinedData[i].screen_y; + } + } else if (group.options.barChart.sideBySide === true) { + drawData.width = drawData.width / intersections[key].amount; + drawData.offset += intersections[key].resolved * drawData.width - 0.5 * drawData.width * (intersections[key].amount + 1); + } + } + + var dataWidth = drawData.width; + var start = combinedData[i].screen_x; // are we drawing explicit boxes? (we supplied an end value) + + if (combinedData[i].screen_end != undefined) { + dataWidth = combinedData[i].screen_end - combinedData[i].screen_x; + start += dataWidth * 0.5; + } else { + start += drawData.offset; + } + + drawBar(start, combinedData[i].screen_y - heightOffset, dataWidth, group.zeroPosition - combinedData[i].screen_y, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style); // draw points + + if (group.options.drawPoints.enabled === true) { + var pointData = { + screen_x: combinedData[i].screen_x, + screen_y: combinedData[i].screen_y - heightOffset, + x: combinedData[i].x, + y: combinedData[i].y, + groupId: combinedData[i].groupId, + label: combinedData[i].label + }; + Points.draw([pointData], group, framework, drawData.offset); //DOMutil.drawPoint(combinedData[i].x + drawData.offset, combinedData[i].y, group, framework.svgElements, framework.svg); + } + } +}; +/** + * Fill the intersections object with counters of how many datapoints share the same x coordinates + * @param {Object} intersections + * @param {Array.} combinedData + * @private + */ + + +Bargraph._getDataIntersections = function (intersections, combinedData) { + // get intersections + var coreDistance; + + for (var i = 0; i < combinedData.length; i++) { + if (i + 1 < combinedData.length) { + coreDistance = Math.abs(combinedData[i + 1].screen_x - combinedData[i].screen_x); + } + + if (i > 0) { + coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].screen_x - combinedData[i].screen_x)); + } + + if (coreDistance === 0) { + if (intersections[combinedData[i].screen_x] === undefined) { + intersections[combinedData[i].screen_x] = { + amount: 0, + resolved: 0, + accumulatedPositive: 0, + accumulatedNegative: 0 + }; + } + + intersections[combinedData[i].screen_x].amount += 1; + } + } +}; +/** + * Get the width and offset for bargraphs based on the coredistance between datapoints + * + * @param {number} coreDistance + * @param {vis.Group} group + * @param {number} minWidth + * @returns {{width: number, offset: number}} + * @private + */ + + +Bargraph._getSafeDrawData = function (coreDistance, group, minWidth) { + var width, offset; + + if (coreDistance < group.options.barChart.width && coreDistance > 0) { + width = coreDistance < minWidth ? minWidth : coreDistance; + offset = 0; // recalculate offset with the new width; + + if (group.options.barChart.align === 'left') { + offset -= 0.5 * coreDistance; + } else if (group.options.barChart.align === 'right') { + offset += 0.5 * coreDistance; + } + } else { + // default settings + width = group.options.barChart.width; + offset = 0; + + if (group.options.barChart.align === 'left') { + offset -= 0.5 * group.options.barChart.width; + } else if (group.options.barChart.align === 'right') { + offset += 0.5 * group.options.barChart.width; + } + } + + return { + width: width, + offset: offset + }; +}; + +Bargraph.getStackedYRange = function (combinedData, groupRanges, groupIds, groupLabel, orientation) { + if (combinedData.length > 0) { + // sort by time and by group + sort$2(combinedData).call(combinedData, function (a, b) { + if (a.screen_x === b.screen_x) { + return a.groupId < b.groupId ? -1 : 1; + } else { + return a.screen_x - b.screen_x; + } + }); + + var intersections = {}; + + Bargraph._getDataIntersections(intersections, combinedData); + + groupRanges[groupLabel] = Bargraph._getStackedYRange(intersections, combinedData); + groupRanges[groupLabel].yAxisOrientation = orientation; + groupIds.push(groupLabel); + } +}; + +Bargraph._getStackedYRange = function (intersections, combinedData) { + var key; + var yMin = combinedData[0].screen_y; + var yMax = combinedData[0].screen_y; + + for (var i = 0; i < combinedData.length; i++) { + key = combinedData[i].screen_x; + + if (intersections[key] === undefined) { + yMin = yMin > combinedData[i].screen_y ? combinedData[i].screen_y : yMin; + yMax = yMax < combinedData[i].screen_y ? combinedData[i].screen_y : yMax; + } else { + if (combinedData[i].screen_y < 0) { + intersections[key].accumulatedNegative += combinedData[i].screen_y; + } else { + intersections[key].accumulatedPositive += combinedData[i].screen_y; + } + } + } + + for (var xpos in intersections) { + if (intersections.hasOwnProperty(xpos)) { + yMin = yMin > intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMin; + yMin = yMin > intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMin; + yMax = yMax < intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMax; + yMax = yMax < intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMax; + } + } + + return { + min: yMin, + max: yMax + }; +}; + +/** + * + * @param {vis.GraphGroup.id} groupId + * @param {Object} options // TODO: Describe options + * @constructor Line + */ + +function Line(groupId, options) {// eslint-disable-line no-unused-vars +} + +Line.calcPath = function (dataset, group) { + if (dataset != null) { + if (dataset.length > 0) { + var d = []; // construct path from dataset + + if (group.options.interpolation.enabled == true) { + d = Line._catmullRom(dataset, group); + } else { + d = Line._linear(dataset); + } + + return d; + } + } +}; + +Line.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) { + var fillHeight = iconHeight * 0.5; + var path, fillPath; + var outline = getSVGElement("rect", framework.svgElements, framework.svg); + outline.setAttributeNS(null, "x", x); + outline.setAttributeNS(null, "y", y - fillHeight); + outline.setAttributeNS(null, "width", iconWidth); + outline.setAttributeNS(null, "height", 2 * fillHeight); + outline.setAttributeNS(null, "class", "vis-outline"); + path = getSVGElement("path", framework.svgElements, framework.svg); + path.setAttributeNS(null, "class", group.className); + + if (group.style !== undefined) { + path.setAttributeNS(null, "style", group.style); + } + + path.setAttributeNS(null, "d", "M" + x + "," + y + " L" + (x + iconWidth) + "," + y + ""); + + if (group.options.shaded.enabled == true) { + fillPath = getSVGElement("path", framework.svgElements, framework.svg); + + if (group.options.shaded.orientation == 'top') { + fillPath.setAttributeNS(null, "d", "M" + x + ", " + (y - fillHeight) + "L" + x + "," + y + " L" + (x + iconWidth) + "," + y + " L" + (x + iconWidth) + "," + (y - fillHeight)); + } else { + fillPath.setAttributeNS(null, "d", "M" + x + "," + y + " " + "L" + x + "," + (y + fillHeight) + " " + "L" + (x + iconWidth) + "," + (y + fillHeight) + "L" + (x + iconWidth) + "," + y); + } + + fillPath.setAttributeNS(null, "class", group.className + " vis-icon-fill"); + + if (group.options.shaded.style !== undefined && group.options.shaded.style !== "") { + fillPath.setAttributeNS(null, "style", group.options.shaded.style); + } + } + + if (group.options.drawPoints.enabled == true) { + var groupTemplate = { + style: group.options.drawPoints.style, + styles: group.options.drawPoints.styles, + size: group.options.drawPoints.size, + className: group.className + }; + drawPoint(x + 0.5 * iconWidth, y, groupTemplate, framework.svgElements, framework.svg); + } +}; + +Line.drawShading = function (pathArray, group, subPathArray, framework) { + // append shading to the path + if (group.options.shaded.enabled == true) { + var svgHeight = Number(framework.svg.style.height.replace('px', '')); + var fillPath = getSVGElement('path', framework.svgElements, framework.svg); + var type = "L"; + + if (group.options.interpolation.enabled == true) { + type = "C"; + } + + var dFill; + var zero = 0; + + if (group.options.shaded.orientation == 'top') { + zero = 0; + } else if (group.options.shaded.orientation == 'bottom') { + zero = svgHeight; + } else { + zero = Math.min(Math.max(0, group.zeroPosition), svgHeight); + } + + if (group.options.shaded.orientation == 'group' && subPathArray != null && subPathArray != undefined) { + dFill = 'M' + pathArray[0][0] + "," + pathArray[0][1] + " " + this.serializePath(pathArray, type, false) + ' L' + subPathArray[subPathArray.length - 1][0] + "," + subPathArray[subPathArray.length - 1][1] + " " + this.serializePath(subPathArray, type, true) + subPathArray[0][0] + "," + subPathArray[0][1] + " Z"; + } else { + dFill = 'M' + pathArray[0][0] + "," + pathArray[0][1] + " " + this.serializePath(pathArray, type, false) + ' V' + zero + ' H' + pathArray[0][0] + " Z"; + } + + fillPath.setAttributeNS(null, 'class', group.className + ' vis-fill'); + + if (group.options.shaded.style !== undefined) { + fillPath.setAttributeNS(null, 'style', group.options.shaded.style); + } + + fillPath.setAttributeNS(null, 'd', dFill); + } +}; +/** + * draw a line graph + * + * @param {Array.} pathArray + * @param {vis.Group} group + * @param {{svg: Object, svgElements: Array., options: Object, groups: Array.}} framework + */ + + +Line.draw = function (pathArray, group, framework) { + if (pathArray != null && pathArray != undefined) { + var path = getSVGElement('path', framework.svgElements, framework.svg); + path.setAttributeNS(null, "class", group.className); + + if (group.style !== undefined) { + path.setAttributeNS(null, "style", group.style); + } + + var type = "L"; + + if (group.options.interpolation.enabled == true) { + type = "C"; + } // copy properties to path for drawing. + + + path.setAttributeNS(null, 'd', 'M' + pathArray[0][0] + "," + pathArray[0][1] + " " + this.serializePath(pathArray, type, false)); + } +}; + +Line.serializePath = function (pathArray, type, inverse) { + if (pathArray.length < 2) { + //Too little data to create a path. + return ""; + } + + var d = type; + var i; + + if (inverse) { + for (i = pathArray.length - 2; i > 0; i--) { + d += pathArray[i][0] + "," + pathArray[i][1] + " "; + } + } else { + for (i = 1; i < pathArray.length; i++) { + d += pathArray[i][0] + "," + pathArray[i][1] + " "; + } + } + + return d; +}; +/** + * This uses an uniform parametrization of the interpolation algorithm: + * 'On the Parameterization of Catmull-Rom Curves' by Cem Yuksel et al. + * @param {Array.} data + * @returns {string} + * @private + */ + + +Line._catmullRomUniform = function (data) { + // catmull rom + var p0, p1, p2, p3, bp1, bp2; + var d = []; + d.push([Math.round(data[0].screen_x), Math.round(data[0].screen_y)]); + var normalization = 1 / 6; + var length = data.length; + + for (var i = 0; i < length - 1; i++) { + p0 = i == 0 ? data[0] : data[i - 1]; + p1 = data[i]; + p2 = data[i + 1]; + p3 = i + 2 < length ? data[i + 2] : p2; // Catmull-Rom to Cubic Bezier conversion matrix + // 0 1 0 0 + // -1/6 1 1/6 0 + // 0 1/6 1 -1/6 + // 0 0 1 0 + // bp0 = { x: p1.x, y: p1.y }; + + bp1 = { + screen_x: (-p0.screen_x + 6 * p1.screen_x + p2.screen_x) * normalization, + screen_y: (-p0.screen_y + 6 * p1.screen_y + p2.screen_y) * normalization + }; + bp2 = { + screen_x: (p1.screen_x + 6 * p2.screen_x - p3.screen_x) * normalization, + screen_y: (p1.screen_y + 6 * p2.screen_y - p3.screen_y) * normalization + }; // bp0 = { x: p2.x, y: p2.y }; + + d.push([bp1.screen_x, bp1.screen_y]); + d.push([bp2.screen_x, bp2.screen_y]); + d.push([p2.screen_x, p2.screen_y]); + } + + return d; +}; +/** + * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm. + * By default, the centripetal parameterization is used because this gives the nicest results. + * These parameterizations are relatively heavy because the distance between 4 points have to be calculated. + * + * One optimization can be used to reuse distances since this is a sliding window approach. + * @param {Array.} data + * @param {vis.GraphGroup} group + * @returns {string} + * @private + */ + + +Line._catmullRom = function (data, group) { + var alpha = group.options.interpolation.alpha; + + if (alpha == 0 || alpha === undefined) { + return this._catmullRomUniform(data); + } else { + var p0, p1, p2, p3, bp1, bp2, d1, d2, d3, A, B, N, M; + var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; + var d = []; + d.push([Math.round(data[0].screen_x), Math.round(data[0].screen_y)]); + var length = data.length; + + for (var i = 0; i < length - 1; i++) { + p0 = i == 0 ? data[0] : data[i - 1]; + p1 = data[i]; + p2 = data[i + 1]; + p3 = i + 2 < length ? data[i + 2] : p2; + d1 = Math.sqrt(Math.pow(p0.screen_x - p1.screen_x, 2) + Math.pow(p0.screen_y - p1.screen_y, 2)); + d2 = Math.sqrt(Math.pow(p1.screen_x - p2.screen_x, 2) + Math.pow(p1.screen_y - p2.screen_y, 2)); + d3 = Math.sqrt(Math.pow(p2.screen_x - p3.screen_x, 2) + Math.pow(p2.screen_y - p3.screen_y, 2)); // Catmull-Rom to Cubic Bezier conversion matrix + // A = 2d1^2a + 3d1^a * d2^a + d3^2a + // B = 2d3^2a + 3d3^a * d2^a + d2^2a + // [ 0 1 0 0 ] + // [ -d2^2a /N A/N d1^2a /N 0 ] + // [ 0 d3^2a /M B/M -d2^2a /M ] + // [ 0 0 1 0 ] + + d3powA = Math.pow(d3, alpha); + d3pow2A = Math.pow(d3, 2 * alpha); + d2powA = Math.pow(d2, alpha); + d2pow2A = Math.pow(d2, 2 * alpha); + d1powA = Math.pow(d1, alpha); + d1pow2A = Math.pow(d1, 2 * alpha); + A = 2 * d1pow2A + 3 * d1powA * d2powA + d2pow2A; + B = 2 * d3pow2A + 3 * d3powA * d2powA + d2pow2A; + N = 3 * d1powA * (d1powA + d2powA); + + if (N > 0) { + N = 1 / N; + } + + M = 3 * d3powA * (d3powA + d2powA); + + if (M > 0) { + M = 1 / M; + } + + bp1 = { + screen_x: (-d2pow2A * p0.screen_x + A * p1.screen_x + d1pow2A * p2.screen_x) * N, + screen_y: (-d2pow2A * p0.screen_y + A * p1.screen_y + d1pow2A * p2.screen_y) * N + }; + bp2 = { + screen_x: (d3pow2A * p1.screen_x + B * p2.screen_x - d2pow2A * p3.screen_x) * M, + screen_y: (d3pow2A * p1.screen_y + B * p2.screen_y - d2pow2A * p3.screen_y) * M + }; + + if (bp1.screen_x == 0 && bp1.screen_y == 0) { + bp1 = p1; + } + + if (bp2.screen_x == 0 && bp2.screen_y == 0) { + bp2 = p2; + } + + d.push([bp1.screen_x, bp1.screen_y]); + d.push([bp2.screen_x, bp2.screen_y]); + d.push([p2.screen_x, p2.screen_y]); + } + + return d; + } +}; +/** + * this generates the SVG path for a linear drawing between datapoints. + * @param {Array.} data + * @returns {string} + * @private + */ + + +Line._linear = function (data) { + // linear + var d = []; + + for (var i = 0; i < data.length; i++) { + d.push([data[i].screen_x, data[i].screen_y]); + } + + return d; +}; + +/** + * /** + * @param {object} group | the object of the group from the dataset + * @param {string} groupId | ID of the group + * @param {object} options | the default options + * @param {array} groupsUsingDefaultStyles | this array has one entree. + * It is passed as an array so it is passed by reference. + * It enumerates through the default styles + * @constructor GraphGroup + */ + +function GraphGroup(group, groupId, options, groupsUsingDefaultStyles) { + this.id = groupId; + var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'drawPoints', 'shaded', 'interpolation', 'zIndex', 'excludeFromStacking', 'excludeFromLegend']; + this.options = util$2.selectiveBridgeObject(fields, options); + this.usingDefaultStyle = group.className === undefined; + this.groupsUsingDefaultStyles = groupsUsingDefaultStyles; + this.zeroPosition = 0; + this.update(group); + + if (this.usingDefaultStyle == true) { + this.groupsUsingDefaultStyles[0] += 1; + } + + this.itemsData = []; + this.visible = group.visible === undefined ? true : group.visible; +} +/** + * this loads a reference to all items in this group into this group. + * @param {array} items + */ + + +GraphGroup.prototype.setItems = function (items) { + if (items != null) { + this.itemsData = items; + + if (sort$2(this.options) == true) { + util$2.insertSort(this.itemsData, function (a, b) { + return a.x > b.x ? 1 : -1; + }); + } + } else { + this.itemsData = []; + } +}; + +GraphGroup.prototype.getItems = function () { + return this.itemsData; +}; +/** + * this is used for barcharts and shading, this way, we only have to calculate it once. + * @param {number} pos + */ + + +GraphGroup.prototype.setZeroPosition = function (pos) { + this.zeroPosition = pos; +}; +/** + * set the options of the graph group over the default options. + * @param {Object} options + */ + + +GraphGroup.prototype.setOptions = function (options) { + if (options !== undefined) { + var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'zIndex', 'excludeFromStacking', 'excludeFromLegend']; + util$2.selectiveDeepExtend(fields, this.options, options); // if the group's drawPoints is a function delegate the callback to the onRender property + + if (typeof options.drawPoints == 'function') { + options.drawPoints = { + onRender: options.drawPoints + }; + } + + util$2.mergeOptions(this.options, options, 'interpolation'); + util$2.mergeOptions(this.options, options, 'drawPoints'); + util$2.mergeOptions(this.options, options, 'shaded'); + + if (options.interpolation) { + if (_typeof_1$2(options.interpolation) == 'object') { + if (options.interpolation.parametrization) { + if (options.interpolation.parametrization == 'uniform') { + this.options.interpolation.alpha = 0; + } else if (options.interpolation.parametrization == 'chordal') { + this.options.interpolation.alpha = 1.0; + } else { + this.options.interpolation.parametrization = 'centripetal'; + this.options.interpolation.alpha = 0.5; + } + } + } + } + } +}; +/** + * this updates the current group class with the latest group dataset entree, used in _updateGroup in linegraph + * @param {vis.Group} group + */ + + +GraphGroup.prototype.update = function (group) { + this.group = group; + this.content = group.content || 'graph'; + this.className = group.className || this.className || 'vis-graph-group' + this.groupsUsingDefaultStyles[0] % 10; + this.visible = group.visible === undefined ? true : group.visible; + this.style = group.style; + this.setOptions(group.options); +}; +/** + * return the legend entree for this group. + * + * @param {number} iconWidth + * @param {number} iconHeight + * @param {{svg: (*|Element), svgElements: Object, options: Object, groups: Array.}} framework + * @param {number} x + * @param {number} y + * @returns {{icon: (*|Element), label: (*|string), orientation: *}} + */ + + +GraphGroup.prototype.getLegend = function (iconWidth, iconHeight, framework, x, y) { + if (framework == undefined || framework == null) { + var svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + framework = { + svg: svg, + svgElements: {}, + options: this.options, + groups: [this] + }; + } + + if (x == undefined || x == null) { + x = 0; + } + + if (y == undefined || y == null) { + y = 0.5 * iconHeight; + } + + switch (this.options.style) { + case "line": + Line.drawIcon(this, x, y, iconWidth, iconHeight, framework); + break; + + case "points": //explicit no break + + case "point": + Points.drawIcon(this, x, y, iconWidth, iconHeight, framework); + break; + + case "bar": + Bargraph.drawIcon(this, x, y, iconWidth, iconHeight, framework); + break; + } + + return { + icon: framework.svg, + label: this.content, + orientation: this.options.yAxisOrientation + }; +}; + +GraphGroup.prototype.getYRange = function (groupData) { + var yMin = groupData[0].y; + var yMax = groupData[0].y; + + for (var j = 0; j < groupData.length; j++) { + yMin = yMin > groupData[j].y ? groupData[j].y : yMin; + yMax = yMax < groupData[j].y ? groupData[j].y : yMax; + } + + return { + min: yMin, + max: yMax, + yAxisOrientation: this.options.yAxisOrientation + }; +}; + +/** + * Legend for Graph2d + * + * @param {vis.Graph2d.body} body + * @param {vis.Graph2d.options} options + * @param {number} side + * @param {vis.LineGraph.options} linegraphOptions + * @constructor Legend + * @extends Component + */ + +function Legend(body, options, side, linegraphOptions) { + this.body = body; + this.defaultOptions = { + enabled: false, + icons: true, + iconSize: 20, + iconSpacing: 6, + left: { + visible: true, + position: 'top-left' // top/bottom - left,center,right + + }, + right: { + visible: true, + position: 'top-right' // top/bottom - left,center,right + + } + }; + this.side = side; + this.options = util$2.extend({}, this.defaultOptions); + this.linegraphOptions = linegraphOptions; + this.svgElements = {}; + this.dom = {}; + this.groups = {}; + this.amountOfGroups = 0; + + this._create(); + + this.framework = { + svg: this.svg, + svgElements: this.svgElements, + options: this.options, + groups: this.groups + }; + this.setOptions(options); +} + +Legend.prototype = new Component(); + +Legend.prototype.clear = function () { + this.groups = {}; + this.amountOfGroups = 0; +}; + +Legend.prototype.addGroup = function (label, graphOptions) { + // Include a group only if the group option 'excludeFromLegend: false' is not set. + if (graphOptions.options.excludeFromLegend != true) { + if (!this.groups.hasOwnProperty(label)) { + this.groups[label] = graphOptions; + } + + this.amountOfGroups += 1; + } +}; + +Legend.prototype.updateGroup = function (label, graphOptions) { + this.groups[label] = graphOptions; +}; + +Legend.prototype.removeGroup = function (label) { + if (this.groups.hasOwnProperty(label)) { + delete this.groups[label]; + this.amountOfGroups -= 1; + } +}; + +Legend.prototype._create = function () { + this.dom.frame = document.createElement('div'); + this.dom.frame.className = 'vis-legend'; + this.dom.frame.style.position = "absolute"; + this.dom.frame.style.top = "10px"; + this.dom.frame.style.display = "block"; + this.dom.textArea = document.createElement('div'); + this.dom.textArea.className = 'vis-legend-text'; + this.dom.textArea.style.position = "relative"; + this.dom.textArea.style.top = "0px"; + this.svg = document.createElementNS('http://www.w3.org/2000/svg', "svg"); + this.svg.style.position = 'absolute'; + this.svg.style.top = 0 + 'px'; + this.svg.style.width = this.options.iconSize + 5 + 'px'; + this.svg.style.height = '100%'; + this.dom.frame.appendChild(this.svg); + this.dom.frame.appendChild(this.dom.textArea); +}; +/** + * Hide the component from the DOM + */ + + +Legend.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } +}; +/** + * Show the component in the DOM (when not already visible). + */ + + +Legend.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } +}; + +Legend.prototype.setOptions = function (options) { + var fields = ['enabled', 'orientation', 'icons', 'left', 'right']; + util$2.selectiveDeepExtend(fields, this.options, options); +}; + +Legend.prototype.redraw = function () { + var activeGroups = 0; + + var groupArray = keys$3(this.groups); + + sort$2(groupArray).call(groupArray, function (a, b) { + return a < b ? -1 : 1; + }); + + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + activeGroups++; + } + } + + if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) { + this.hide(); + } else { + this.show(); + + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'bottom-left') { + this.dom.frame.style.left = '4px'; + this.dom.frame.style.textAlign = "left"; + this.dom.textArea.style.textAlign = "left"; + this.dom.textArea.style.left = this.options.iconSize + 15 + 'px'; + this.dom.textArea.style.right = ''; + this.svg.style.left = 0 + 'px'; + this.svg.style.right = ''; + } else { + this.dom.frame.style.right = '4px'; + this.dom.frame.style.textAlign = "right"; + this.dom.textArea.style.textAlign = "right"; + this.dom.textArea.style.right = this.options.iconSize + 15 + 'px'; + this.dom.textArea.style.left = ''; + this.svg.style.right = 0 + 'px'; + this.svg.style.left = ''; + } + + if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') { + this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace("px", "")) + 'px'; + this.dom.frame.style.bottom = ''; + } else { + var scrollableHeight = this.body.domProps.center.height - this.body.domProps.centerContainer.height; + this.dom.frame.style.bottom = 4 + scrollableHeight + Number(this.body.dom.center.style.top.replace("px", "")) + 'px'; + this.dom.frame.style.top = ''; + } + + if (this.options.icons == false) { + this.dom.frame.style.width = this.dom.textArea.offsetWidth + 10 + 'px'; + this.dom.textArea.style.right = ''; + this.dom.textArea.style.left = ''; + this.svg.style.width = '0px'; + } else { + this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px'; + this.drawLegendIcons(); + } + + var content = ''; + + for (i = 0; i < groupArray.length; i++) { + groupId = groupArray[i]; + + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + content += this.groups[groupId].content + '
'; + } + } + + this.dom.textArea.innerHTML = content; + this.dom.textArea.style.lineHeight = 0.75 * this.options.iconSize + this.options.iconSpacing + 'px'; + } +}; + +Legend.prototype.drawLegendIcons = function () { + if (this.dom.frame.parentNode) { + var groupArray = keys$3(this.groups); + + sort$2(groupArray).call(groupArray, function (a, b) { + return a < b ? -1 : 1; + }); // this resets the elements so the order is maintained + + + resetElements(this.svgElements); + var padding = window.getComputedStyle(this.dom.frame).paddingTop; + var iconOffset = Number(padding.replace('px', '')); + var x = iconOffset; + var iconWidth = this.options.iconSize; + var iconHeight = 0.75 * this.options.iconSize; + var y = iconOffset + 0.5 * iconHeight + 3; + this.svg.style.width = iconWidth + 5 + iconOffset + 'px'; + + for (var i = 0; i < groupArray.length; i++) { + var groupId = groupArray[i]; + + if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) { + this.groups[groupId].getLegend(iconWidth, iconHeight, this.framework, x, y); + y += iconHeight + this.options.iconSpacing; + } + } + } +}; + +var UNGROUPED$3 = '__ungrouped__'; // reserved group id for ungrouped items + +/** + * This is the constructor of the LineGraph. It requires a Timeline body and options. + * + * @param {vis.Timeline.body} body + * @param {Object} options + * @constructor LineGraph + * @extends Component + */ + +function LineGraph(body, options) { + this.id = util$2.randomUUID(); + this.body = body; + this.defaultOptions = { + yAxisOrientation: 'left', + defaultGroup: 'default', + sort: true, + sampling: true, + stack: false, + graphHeight: '400px', + shaded: { + enabled: false, + orientation: 'bottom' // top, bottom, zero + + }, + style: 'line', + // line, bar + barChart: { + width: 50, + sideBySide: false, + align: 'center' // left, center, right + + }, + interpolation: { + enabled: true, + parametrization: 'centripetal', + // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: 0.5 + }, + drawPoints: { + enabled: true, + size: 6, + style: 'square' // square, circle + + }, + dataAxis: {}, + //Defaults are done on DataAxis level + legend: {}, + //Defaults are done on Legend level + groups: { + visibility: {} + } + }; // options is shared by this lineGraph and all its items + + this.options = util$2.extend({}, this.defaultOptions); + this.dom = {}; + this.props = {}; + this.hammer = null; + this.groups = {}; + this.abortedGraphUpdate = false; + this.updateSVGheight = false; + this.updateSVGheightOnResize = false; + this.forceGraphUpdate = true; + var me = this; + this.itemsData = null; // DataSet + + this.groupsData = null; // DataSet + // listeners for the DataSet of the items + + this.itemListeners = { + 'add': function add(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onAdd(params.items); + }, + 'update': function update(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onUpdate(params.items); + }, + 'remove': function remove(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onRemove(params.items); + } + }; // listeners for the DataSet of the groups + + this.groupListeners = { + 'add': function add(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onAddGroups(params.items); + }, + 'update': function update(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onUpdateGroups(params.items); + }, + 'remove': function remove(event, params, senderId) { + // eslint-disable-line no-unused-vars + me._onRemoveGroups(params.items); + } + }; + this.items = {}; // object with an Item for every data item + + this.selection = []; // list with the ids of all selected nodes + + this.lastStart = this.body.range.start; + this.touchParams = {}; // stores properties while dragging + + this.svgElements = {}; + this.setOptions(options); + this.groupsUsingDefaultStyles = [0]; + this.body.emitter.on('rangechanged', function () { + me.lastStart = me.body.range.start; + me.svg.style.left = util$2.option.asSize(-me.props.width); + me.forceGraphUpdate = true; //Is this local redraw necessary? (Core also does a change event!) + + me.redraw.call(me); + }); // create the HTML DOM + + this._create(); + + this.framework = { + svg: this.svg, + svgElements: this.svgElements, + options: this.options, + groups: this.groups + }; +} + +LineGraph.prototype = new Component(); +/** + * Create the HTML DOM for the ItemSet + */ + +LineGraph.prototype._create = function () { + var frame = document.createElement('div'); + frame.className = 'vis-line-graph'; + this.dom.frame = frame; // create svg element for graph drawing. + + this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg'); + this.svg.style.position = 'relative'; + this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px'; + this.svg.style.display = 'block'; + frame.appendChild(this.svg); // data axis + + this.options.dataAxis.orientation = 'left'; + this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + this.options.dataAxis.orientation = 'right'; + this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups); + delete this.options.dataAxis.orientation; // legends + + this.legendLeft = new Legend(this.body, this.options.legend, 'left', this.options.groups); + this.legendRight = new Legend(this.body, this.options.legend, 'right', this.options.groups); + this.show(); +}; +/** + * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element. + * @param {object} options + */ + + +LineGraph.prototype.setOptions = function (options) { + if (options) { + var fields = ['sampling', 'defaultGroup', 'stack', 'height', 'graphHeight', 'yAxisOrientation', 'style', 'barChart', 'dataAxis', 'sort', 'groups']; + + if (options.graphHeight === undefined && options.height !== undefined) { + this.updateSVGheight = true; + this.updateSVGheightOnResize = true; + } else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) { + if (_parseInt$3((options.graphHeight + '').replace("px", '')) < this.body.domProps.centerContainer.height) { + this.updateSVGheight = true; + } + } + + util$2.selectiveDeepExtend(fields, this.options, options); + util$2.mergeOptions(this.options, options, 'interpolation'); + util$2.mergeOptions(this.options, options, 'drawPoints'); + util$2.mergeOptions(this.options, options, 'shaded'); + util$2.mergeOptions(this.options, options, 'legend'); + + if (options.interpolation) { + if (_typeof_1$2(options.interpolation) == 'object') { + if (options.interpolation.parametrization) { + if (options.interpolation.parametrization == 'uniform') { + this.options.interpolation.alpha = 0; + } else if (options.interpolation.parametrization == 'chordal') { + this.options.interpolation.alpha = 1.0; + } else { + this.options.interpolation.parametrization = 'centripetal'; + this.options.interpolation.alpha = 0.5; + } + } + } + } + + if (this.yAxisLeft) { + if (options.dataAxis !== undefined) { + this.yAxisLeft.setOptions(this.options.dataAxis); + this.yAxisRight.setOptions(this.options.dataAxis); + } + } + + if (this.legendLeft) { + if (options.legend !== undefined) { + this.legendLeft.setOptions(this.options.legend); + this.legendRight.setOptions(this.options.legend); + } + } + + if (this.groups.hasOwnProperty(UNGROUPED$3)) { + this.groups[UNGROUPED$3].setOptions(options); + } + } // this is used to redraw the graph if the visibility of the groups is changed. + + + if (this.dom.frame) { + //not on initial run? + this.forceGraphUpdate = true; + this.body.emitter.emit("_change", { + queue: true + }); + } +}; +/** + * Hide the component from the DOM + */ + + +LineGraph.prototype.hide = function () { + // remove the frame containing the items + if (this.dom.frame.parentNode) { + this.dom.frame.parentNode.removeChild(this.dom.frame); + } +}; +/** + * Show the component in the DOM (when not already visible). + */ + + +LineGraph.prototype.show = function () { + // show frame containing the items + if (!this.dom.frame.parentNode) { + this.body.dom.center.appendChild(this.dom.frame); + } +}; +/** + * Set items + * @param {vis.DataSet | null} items + */ + + +LineGraph.prototype.setItems = function (items) { + var me = this, + ids, + oldItemsData = this.itemsData; // replace the dataset + + if (!items) { + this.itemsData = null; + } else if (items instanceof DataSet || items instanceof DataView) { + this.itemsData = items; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (oldItemsData) { + // unsubscribe from old dataset + forEach$3(util$2).call(util$2, this.itemListeners, function (callback, event) { + oldItemsData.off(event, callback); + }); // remove all drawn items + + + ids = oldItemsData.getIds(); + + this._onRemove(ids); + } + + if (this.itemsData) { + // subscribe to new dataset + var id = this.id; + + forEach$3(util$2).call(util$2, this.itemListeners, function (callback, event) { + me.itemsData.on(event, callback, id); + }); // add all new items + + + ids = this.itemsData.getIds(); + + this._onAdd(ids); + } +}; +/** + * Set groups + * @param {vis.DataSet} groups + */ + + +LineGraph.prototype.setGroups = function (groups) { + var me = this; + var ids; // unsubscribe from current dataset + + if (this.groupsData) { + forEach$3(util$2).call(util$2, this.groupListeners, function (callback, event) { + me.groupsData.off(event, callback); + }); // remove all drawn groups + + + ids = this.groupsData.getIds(); + this.groupsData = null; + + for (var i = 0; i < ids.length; i++) { + this._removeGroup(ids[i]); + } + } // replace the dataset + + + if (!groups) { + this.groupsData = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + this.groupsData = groups; + } else { + throw new TypeError('Data must be an instance of DataSet or DataView'); + } + + if (this.groupsData) { + // subscribe to new dataset + var id = this.id; + + forEach$3(util$2).call(util$2, this.groupListeners, function (callback, event) { + me.groupsData.on(event, callback, id); + }); // draw all ms + + + ids = this.groupsData.getIds(); + + this._onAddGroups(ids); + } +}; + +LineGraph.prototype._onUpdate = function (ids) { + this._updateAllGroupData(ids); +}; + +LineGraph.prototype._onAdd = function (ids) { + this._onUpdate(ids); +}; + +LineGraph.prototype._onRemove = function (ids) { + this._onUpdate(ids); +}; + +LineGraph.prototype._onUpdateGroups = function (groupIds) { + this._updateAllGroupData(null, groupIds); +}; + +LineGraph.prototype._onAddGroups = function (groupIds) { + this._onUpdateGroups(groupIds); +}; +/** + * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph + * @param {Array} groupIds + * @private + */ + + +LineGraph.prototype._onRemoveGroups = function (groupIds) { + for (var i = 0; i < groupIds.length; i++) { + this._removeGroup(groupIds[i]); + } + + this.forceGraphUpdate = true; + this.body.emitter.emit("_change", { + queue: true + }); +}; +/** + * this cleans the group out off the legends and the dataaxis + * @param {vis.GraphGroup.id} groupId + * @private + */ + + +LineGraph.prototype._removeGroup = function (groupId) { + if (this.groups.hasOwnProperty(groupId)) { + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.removeGroup(groupId); + this.legendRight.removeGroup(groupId); + this.legendRight.redraw(); + } else { + this.yAxisLeft.removeGroup(groupId); + this.legendLeft.removeGroup(groupId); + this.legendLeft.redraw(); + } + + delete this.groups[groupId]; + } +}; +/** + * update a group object with the group dataset entree + * + * @param {vis.GraphGroup} group + * @param {vis.GraphGroup.id} groupId + * @private + */ + + +LineGraph.prototype._updateGroup = function (group, groupId) { + if (!this.groups.hasOwnProperty(groupId)) { + this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles); + + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.addGroup(groupId, this.groups[groupId]); + this.legendRight.addGroup(groupId, this.groups[groupId]); + } else { + this.yAxisLeft.addGroup(groupId, this.groups[groupId]); + this.legendLeft.addGroup(groupId, this.groups[groupId]); + } + } else { + this.groups[groupId].update(group); + + if (this.groups[groupId].options.yAxisOrientation == 'right') { + this.yAxisRight.updateGroup(groupId, this.groups[groupId]); + this.legendRight.updateGroup(groupId, this.groups[groupId]); //If yAxisOrientation changed, clean out the group from the other axis. + + this.yAxisLeft.removeGroup(groupId); + this.legendLeft.removeGroup(groupId); + } else { + this.yAxisLeft.updateGroup(groupId, this.groups[groupId]); + this.legendLeft.updateGroup(groupId, this.groups[groupId]); //If yAxisOrientation changed, clean out the group from the other axis. + + this.yAxisRight.removeGroup(groupId); + this.legendRight.removeGroup(groupId); + } + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); +}; +/** + * this updates all groups, it is used when there is an update the the itemset. + * + * @param {Array} ids + * @param {Array} groupIds + * @private + */ + + +LineGraph.prototype._updateAllGroupData = function (ids, groupIds) { + if (this.itemsData != null) { + var groupsContent = {}; + var items = this.itemsData.get(); + var fieldId = this.itemsData._idProp; + var idMap = {}; + + if (ids) { + map$2(ids).call(ids, function (id) { + idMap[id] = id; + }); + } //pre-Determine array sizes, for more efficient memory claim + + + var groupCounts = {}; + + for (var i = 0; i < items.length; i++) { + var item = items[i]; + var groupId = item.group; + + if (groupId === null || groupId === undefined) { + groupId = UNGROUPED$3; + } + + groupCounts.hasOwnProperty(groupId) ? groupCounts[groupId]++ : groupCounts[groupId] = 1; + } //Pre-load arrays from existing groups if items are not changed (not in ids) + + + var existingItemsMap = {}; + + if (!groupIds && ids) { + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + group = this.groups[groupId]; + var existing_items = group.getItems(); + groupsContent[groupId] = filter$2(existing_items).call(existing_items, function (item) { + existingItemsMap[item[fieldId]] = item[fieldId]; + return item[fieldId] !== idMap[item[fieldId]]; + }); + var newLength = groupCounts[groupId]; + groupCounts[groupId] -= groupsContent[groupId].length; + + if (groupsContent[groupId].length < newLength) { + groupsContent[groupId][newLength - 1] = {}; + } + } + } + } //Now insert data into the arrays. + + + for (i = 0; i < items.length; i++) { + item = items[i]; + groupId = item.group; + + if (groupId === null || groupId === undefined) { + groupId = UNGROUPED$3; + } + + if (!groupIds && ids && item[fieldId] !== idMap[item[fieldId]] && existingItemsMap.hasOwnProperty(item[fieldId])) { + continue; + } + + if (!groupsContent.hasOwnProperty(groupId)) { + groupsContent[groupId] = new Array(groupCounts[groupId]); + } //Copy data (because of unmodifiable DataView input. + + + var extended = util$2.bridgeObject(item); + extended.x = util$2.convert(item.x, 'Date'); + extended.end = util$2.convert(item.end, 'Date'); + extended.orginalY = item.y; //real Y + + extended.y = Number(item.y); + extended[fieldId] = item[fieldId]; + var index = groupsContent[groupId].length - groupCounts[groupId]--; + groupsContent[groupId][index] = extended; + } //Make sure all groups are present, to allow removal of old groups + + + for (groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + if (!groupsContent.hasOwnProperty(groupId)) { + groupsContent[groupId] = new Array(0); + } + } + } //Update legendas, style and axis + + + for (groupId in groupsContent) { + if (groupsContent.hasOwnProperty(groupId)) { + if (groupsContent[groupId].length == 0) { + if (this.groups.hasOwnProperty(groupId)) { + this._removeGroup(groupId); + } + } else { + var group = undefined; + + if (this.groupsData != undefined) { + group = this.groupsData.get(groupId); + } + + if (group == undefined) { + group = { + id: groupId, + content: this.options.defaultGroup + groupId + }; + } + + this._updateGroup(group, groupId); + + this.groups[groupId].setItems(groupsContent[groupId]); + } + } + } + + this.forceGraphUpdate = true; + this.body.emitter.emit("_change", { + queue: true + }); + } +}; +/** + * Redraw the component, mandatory function + * @return {boolean} Returns true if the component is resized + */ + + +LineGraph.prototype.redraw = function () { + var resized = false; // calculate actual size and position + + this.props.width = this.dom.frame.offsetWidth; + this.props.height = this.body.domProps.centerContainer.height - this.body.domProps.border.top - this.body.domProps.border.bottom; // check if this component is resized + + resized = this._isResized() || resized; // check whether zoomed (in that case we need to re-stack everything) + + var visibleInterval = this.body.range.end - this.body.range.start; + var zoomed = visibleInterval != this.lastVisibleInterval; + this.lastVisibleInterval = visibleInterval; // the svg element is three times as big as the width, this allows for fully dragging left and right + // without reloading the graph. the controls for this are bound to events in the constructor + + if (resized == true) { + var _context; + + this.svg.style.width = util$2.option.asSize(3 * this.props.width); + this.svg.style.left = util$2.option.asSize(-this.props.width); // if the height of the graph is set as proportional, change the height of the svg + + if (indexOf$3(_context = this.options.height + '').call(_context, "%") != -1 || this.updateSVGheightOnResize == true) { + this.updateSVGheight = true; + } + } // update the height of the graph on each redraw of the graph. + + + if (this.updateSVGheight == true) { + if (this.options.graphHeight != this.props.height + 'px') { + this.options.graphHeight = this.props.height + 'px'; + this.svg.style.height = this.props.height + 'px'; + } + + this.updateSVGheight = false; + } else { + this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px'; + } // zoomed is here to ensure that animations are shown correctly. + + + if (resized == true || zoomed == true || this.abortedGraphUpdate == true || this.forceGraphUpdate == true) { + resized = this._updateGraph() || resized; + this.forceGraphUpdate = false; + } else { + // move the whole svg while dragging + if (this.lastStart != 0) { + var offset = this.body.range.start - this.lastStart; + var range = this.body.range.end - this.body.range.start; + + if (this.props.width != 0) { + var rangePerPixelInv = this.props.width / range; + var xOffset = offset * rangePerPixelInv; + this.svg.style.left = -this.props.width - xOffset + 'px'; + } + } + } + + this.legendLeft.redraw(); + this.legendRight.redraw(); + return resized; +}; + +LineGraph.prototype._getSortedGroupIds = function () { + // getting group Ids + var grouplist = []; + + for (var groupId in this.groups) { + if (this.groups.hasOwnProperty(groupId)) { + var group = this.groups[groupId]; + + if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) { + grouplist.push({ + id: groupId, + zIndex: group.options.zIndex + }); + } + } + } + + util$2.insertSort(grouplist, function (a, b) { + var az = a.zIndex; + var bz = b.zIndex; + if (az === undefined) az = 0; + if (bz === undefined) bz = 0; + return az == bz ? 0 : az < bz ? -1 : 1; + }); + var groupIds = new Array(grouplist.length); + + for (var i = 0; i < grouplist.length; i++) { + groupIds[i] = grouplist[i].id; + } + + return groupIds; +}; +/** + * Update and redraw the graph. + * + * @returns {boolean} + * @private + */ + + +LineGraph.prototype._updateGraph = function () { + // reset the svg elements + prepareElements(this.svgElements); + + if (this.props.width != 0 && this.itemsData != null) { + var group, i; + var groupRanges = {}; + var changeCalled = false; // this is the range of the SVG canvas + + var minDate = this.body.util.toGlobalTime(-this.body.domProps.root.width); + var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width); // getting group Ids + + var groupIds = this._getSortedGroupIds(); + + if (groupIds.length > 0) { + var groupsData = {}; // fill groups data, this only loads the data we require based on the timewindow + + this._getRelevantData(groupIds, groupsData, minDate, maxDate); // apply sampling, if disabled, it will pass through this function. + + + this._applySampling(groupIds, groupsData); // we transform the X coordinates to detect collisions + + + for (i = 0; i < groupIds.length; i++) { + this._convertXcoordinates(groupsData[groupIds[i]]); + } // now all needed data has been collected we start the processing. + + + this._getYRanges(groupIds, groupsData, groupRanges); // update the Y axis first, we use this data to draw at the correct Y points + + + changeCalled = this._updateYAxis(groupIds, groupRanges); // at changeCalled, abort this update cycle as the graph needs another update with new Width input from the Redraw container. + // Cleanup SVG elements on abort. + + if (changeCalled == true) { + cleanupElements(this.svgElements); + this.abortedGraphUpdate = true; + return true; + } + + this.abortedGraphUpdate = false; // With the yAxis scaled correctly, use this to get the Y values of the points. + + var below = undefined; + + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + + if (this.options.stack === true && this.options.style === 'line') { + if (group.options.excludeFromStacking == undefined || !group.options.excludeFromStacking) { + if (below != undefined) { + this._stack(groupsData[group.id], groupsData[below.id]); + + if (group.options.shaded.enabled == true && group.options.shaded.orientation !== "group") { + if (group.options.shaded.orientation == "top" && below.options.shaded.orientation !== "group") { + below.options.shaded.orientation = "group"; + below.options.shaded.groupId = group.id; + } else { + group.options.shaded.orientation = "group"; + group.options.shaded.groupId = below.id; + } + } + } + + below = group; + } + } + + this._convertYcoordinates(groupsData[groupIds[i]], group); + } //Precalculate paths and draw shading if appropriate. This will make sure the shading is always behind any lines. + + + var paths = {}; + + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + + if (group.options.style === 'line' && group.options.shaded.enabled == true) { + var dataset = groupsData[groupIds[i]]; + + if (dataset == null || dataset.length == 0) { + continue; + } + + if (!paths.hasOwnProperty(groupIds[i])) { + paths[groupIds[i]] = Line.calcPath(dataset, group); + } + + if (group.options.shaded.orientation === "group") { + var subGroupId = group.options.shaded.groupId; + + if (indexOf$3(groupIds).call(groupIds, subGroupId) === -1) { + console.log(group.id + ": Unknown shading group target given:" + subGroupId); + continue; + } + + if (!paths.hasOwnProperty(subGroupId)) { + paths[subGroupId] = Line.calcPath(groupsData[subGroupId], this.groups[subGroupId]); + } + + Line.drawShading(paths[groupIds[i]], group, paths[subGroupId], this.framework); + } else { + Line.drawShading(paths[groupIds[i]], group, undefined, this.framework); + } + } + } // draw the groups, calculating paths if still necessary. + + + Bargraph.draw(groupIds, groupsData, this.framework); + + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + + if (groupsData[groupIds[i]].length > 0) { + switch (group.options.style) { + case "line": + if (!paths.hasOwnProperty(groupIds[i])) { + paths[groupIds[i]] = Line.calcPath(groupsData[groupIds[i]], group); + } + + Line.draw(paths[groupIds[i]], group, this.framework); + // eslint-disable-line no-fallthrough + + case "point": // eslint-disable-line no-fallthrough + + case "points": + if (group.options.style == "point" || group.options.style == "points" || group.options.drawPoints.enabled == true) { + Points.draw(groupsData[groupIds[i]], group, this.framework); + } + + break; + + case "bar": // bar needs to be drawn enmasse + // eslint-disable-line no-fallthrough + + default: //do nothing... + + } + } + } + } + } // cleanup unused svg elements + + + cleanupElements(this.svgElements); + return false; +}; + +LineGraph.prototype._stack = function (data, subData) { + var index, dx, dy, subPrevPoint, subNextPoint; + index = 0; // for each data point we look for a matching on in the set below + + for (var j = 0; j < data.length; j++) { + subPrevPoint = undefined; + subNextPoint = undefined; // we look for time matches or a before-after point + + for (var k = index; k < subData.length; k++) { + // if times match exactly + if (subData[k].x === data[j].x) { + subPrevPoint = subData[k]; + subNextPoint = subData[k]; + index = k; + break; + } else if (subData[k].x > data[j].x) { + // overshoot + subNextPoint = subData[k]; + + if (k == 0) { + subPrevPoint = subNextPoint; + } else { + subPrevPoint = subData[k - 1]; + } + + index = k; + break; + } + } // in case the last data point has been used, we assume it stays like this. + + + if (subNextPoint === undefined) { + subPrevPoint = subData[subData.length - 1]; + subNextPoint = subData[subData.length - 1]; + } // linear interpolation + + + dx = subNextPoint.x - subPrevPoint.x; + dy = subNextPoint.y - subPrevPoint.y; + + if (dx == 0) { + data[j].y = data[j].orginalY + subNextPoint.y; + } else { + data[j].y = data[j].orginalY + dy / dx * (data[j].x - subPrevPoint.x) + subPrevPoint.y; // ax + b where b is data[j].y + } + } +}; +/** + * first select and preprocess the data from the datasets. + * the groups have their preselection of data, we now loop over this data to see + * what data we need to draw. Sorted data is much faster. + * more optimization is possible by doing the sampling before and using the binary search + * to find the end date to determine the increment. + * + * @param {array} groupIds + * @param {object} groupsData + * @param {date} minDate + * @param {date} maxDate + * @private + */ + + +LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) { + var group, i, j, item; + + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + var itemsData = group.getItems(); // optimization for sorted data + + if (sort$2(group.options) == true) { + var dateComparator = function dateComparator(a, b) { + return a.getTime() == b.getTime() ? 0 : a < b ? -1 : 1; + }; + + var first = Math.max(0, util$2.binarySearchValue(itemsData, minDate, 'x', 'before', dateComparator)); + var last = Math.min(itemsData.length, util$2.binarySearchValue(itemsData, maxDate, 'x', 'after', dateComparator) + 1); + + if (last <= 0) { + last = itemsData.length; + } + + var dataContainer = new Array(last - first); + + for (j = first; j < last; j++) { + item = group.itemsData[j]; + dataContainer[j - first] = item; + } + + groupsData[groupIds[i]] = dataContainer; + } else { + // If unsorted data, all data is relevant, just returning entire structure + groupsData[groupIds[i]] = group.itemsData; + } + } + } +}; +/** + * + * @param {Array.} groupIds + * @param {vis.DataSet} groupsData + * @private + */ + + +LineGraph.prototype._applySampling = function (groupIds, groupsData) { + var group; + + if (groupIds.length > 0) { + for (var i = 0; i < groupIds.length; i++) { + group = this.groups[groupIds[i]]; + + if (group.options.sampling == true) { + var dataContainer = groupsData[groupIds[i]]; + + if (dataContainer.length > 0) { + var increment = 1; + var amountOfPoints = dataContainer.length; // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop + // of width changing of the yAxis. + //TODO: This assumes sorted data, but that's not guaranteed! + + var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x); + var pointsPerPixel = amountOfPoints / xDistance; + increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel))); + var sampledData = new Array(amountOfPoints); + + for (var j = 0; j < amountOfPoints; j += increment) { + var idx = Math.round(j / increment); + sampledData[idx] = dataContainer[j]; + } + + groupsData[groupIds[i]] = splice$2(sampledData).call(sampledData, 0, Math.round(amountOfPoints / increment)); + } + } + } + } +}; +/** + * + * @param {Array.} groupIds + * @param {vis.DataSet} groupsData + * @param {object} groupRanges | this is being filled here + * @private + */ + + +LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) { + var groupData, group, i; + var combinedDataLeft = []; + var combinedDataRight = []; + var options; + + if (groupIds.length > 0) { + for (i = 0; i < groupIds.length; i++) { + groupData = groupsData[groupIds[i]]; + options = this.groups[groupIds[i]].options; + + if (groupData.length > 0) { + group = this.groups[groupIds[i]]; // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + + if (options.stack === true && options.style === 'bar') { + if (options.yAxisOrientation === 'left') { + combinedDataLeft = concat$2(combinedDataLeft).call(combinedDataLeft, groupData); + } else { + combinedDataRight = concat$2(combinedDataRight).call(combinedDataRight, groupData); + } + } else { + groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]); + } + } + } // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups. + + + Bargraph.getStackedYRange(combinedDataLeft, groupRanges, groupIds, '__barStackLeft', 'left'); + Bargraph.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__barStackRight', 'right'); + } +}; +/** + * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden. + * @param {Array.} groupIds + * @param {Object} groupRanges + * @returns {boolean} resized + * @private + */ + + +LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) { + var resized = false; + var yAxisLeftUsed = false; + var yAxisRightUsed = false; + var minLeft = 1e9, + minRight = 1e9, + maxLeft = -1e9, + maxRight = -1e9, + minVal, + maxVal; // if groups are present + + if (groupIds.length > 0) { + // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop. + for (var i = 0; i < groupIds.length; i++) { + var group = this.groups[groupIds[i]]; + + if (group && group.options.yAxisOrientation != 'right') { + yAxisLeftUsed = true; + minLeft = 1e9; + maxLeft = -1e9; + } else if (group && group.options.yAxisOrientation) { + yAxisRightUsed = true; + minRight = 1e9; + maxRight = -1e9; + } + } // if there are items: + + + for (i = 0; i < groupIds.length; i++) { + if (groupRanges.hasOwnProperty(groupIds[i])) { + if (groupRanges[groupIds[i]].ignore !== true) { + minVal = groupRanges[groupIds[i]].min; + maxVal = groupRanges[groupIds[i]].max; + + if (groupRanges[groupIds[i]].yAxisOrientation != 'right') { + yAxisLeftUsed = true; + minLeft = minLeft > minVal ? minVal : minLeft; + maxLeft = maxLeft < maxVal ? maxVal : maxLeft; + } else { + yAxisRightUsed = true; + minRight = minRight > minVal ? minVal : minRight; + maxRight = maxRight < maxVal ? maxVal : maxRight; + } + } + } + } + + if (yAxisLeftUsed == true) { + this.yAxisLeft.setRange(minLeft, maxLeft); + } + + if (yAxisRightUsed == true) { + this.yAxisRight.setRange(minRight, maxRight); + } + } + + resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized; + resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized; + + if (yAxisRightUsed == true && yAxisLeftUsed == true) { + this.yAxisLeft.drawIcons = true; + this.yAxisRight.drawIcons = true; + } else { + this.yAxisLeft.drawIcons = false; + this.yAxisRight.drawIcons = false; + } + + this.yAxisRight.master = !yAxisLeftUsed; + this.yAxisRight.masterAxis = this.yAxisLeft; + + if (this.yAxisRight.master == false) { + if (yAxisRightUsed == true) { + this.yAxisLeft.lineOffset = this.yAxisRight.width; + } else { + this.yAxisLeft.lineOffset = 0; + } + + resized = this.yAxisLeft.redraw() || resized; + resized = this.yAxisRight.redraw() || resized; + } else { + resized = this.yAxisRight.redraw() || resized; + } // clean the accumulated lists + + + var tempGroups = ['__barStackLeft', '__barStackRight', '__lineStackLeft', '__lineStackRight']; + + for (i = 0; i < tempGroups.length; i++) { + if (indexOf$3(groupIds).call(groupIds, tempGroups[i]) != -1) { + splice$2(groupIds).call(groupIds, indexOf$3(groupIds).call(groupIds, tempGroups[i]), 1); + } + } + + return resized; +}; +/** + * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function + * + * @param {boolean} axisUsed + * @param {vis.DataAxis} axis + * @returns {boolean} + * @private + */ + + +LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) { + var changed = false; + + if (axisUsed == false) { + if (axis.dom.frame.parentNode && axis.hidden == false) { + axis.hide(); + changed = true; + } + } else { + if (!axis.dom.frame.parentNode && axis.hidden == true) { + axis.show(); + changed = true; + } + } + + return changed; +}; +/** + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param {Array.} datapoints + * @private + */ + + +LineGraph.prototype._convertXcoordinates = function (datapoints) { + var toScreen = this.body.util.toScreen; + + for (var i = 0; i < datapoints.length; i++) { + datapoints[i].screen_x = toScreen(datapoints[i].x) + this.props.width; + datapoints[i].screen_y = datapoints[i].y; //starting point for range calculations + + if (datapoints[i].end != undefined) { + datapoints[i].screen_end = toScreen(datapoints[i].end) + this.props.width; + } else { + datapoints[i].screen_end = undefined; + } + } +}; +/** + * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the + * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for + * the yAxis. + * + * @param {Array.} datapoints + * @param {vis.GraphGroup} group + * @private + */ + + +LineGraph.prototype._convertYcoordinates = function (datapoints, group) { + var axis = this.yAxisLeft; + var svgHeight = Number(this.svg.style.height.replace('px', '')); + + if (group.options.yAxisOrientation == 'right') { + axis = this.yAxisRight; + } + + for (var i = 0; i < datapoints.length; i++) { + datapoints[i].screen_y = Math.round(axis.convertValue(datapoints[i].y)); + } + + group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0))); +}; + +/** + * This object contains all possible options. It will check if the types are correct, if required if the option is one + * of the allowed values. + * + * __any__ means that the name of the property does not matter. + * __type__ is a required field for all objects and contains the allowed types of all objects + */ +var string$1 = 'string'; +var bool$1 = 'boolean'; +var number$1 = 'number'; +var array$1 = 'array'; +var date$1 = 'date'; +var object$1 = 'object'; // should only be in a __type__ property + +var dom$1 = 'dom'; +var moment$5 = 'moment'; +var any$1 = 'any'; +var allOptions$2 = { + configure: { + enabled: { + 'boolean': bool$1 + }, + filter: { + 'boolean': bool$1, + 'function': 'function' + }, + container: { + dom: dom$1 + }, + __type__: { + object: object$1, + 'boolean': bool$1, + 'function': 'function' + } + }, + //globals : + alignCurrentTime: { + string: string$1, + 'undefined': 'undefined' + }, + yAxisOrientation: { + string: ['left', 'right'] + }, + defaultGroup: { + string: string$1 + }, + sort: { + 'boolean': bool$1 + }, + sampling: { + 'boolean': bool$1 + }, + stack: { + 'boolean': bool$1 + }, + graphHeight: { + string: string$1, + number: number$1 + }, + shaded: { + enabled: { + 'boolean': bool$1 + }, + orientation: { + string: ['bottom', 'top', 'zero', 'group'] + }, + // top, bottom, zero, group + groupId: { + object: object$1 + }, + __type__: { + 'boolean': bool$1, + object: object$1 + } + }, + style: { + string: ['line', 'bar', 'points'] + }, + // line, bar + barChart: { + width: { + number: number$1 + }, + minWidth: { + number: number$1 + }, + sideBySide: { + 'boolean': bool$1 + }, + align: { + string: ['left', 'center', 'right'] + }, + __type__: { + object: object$1 + } + }, + interpolation: { + enabled: { + 'boolean': bool$1 + }, + parametrization: { + string: ['centripetal', 'chordal', 'uniform'] + }, + // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + alpha: { + number: number$1 + }, + __type__: { + object: object$1, + 'boolean': bool$1 + } + }, + drawPoints: { + enabled: { + 'boolean': bool$1 + }, + onRender: { + 'function': 'function' + }, + size: { + number: number$1 + }, + style: { + string: ['square', 'circle'] + }, + // square, circle + __type__: { + object: object$1, + 'boolean': bool$1, + 'function': 'function' + } + }, + dataAxis: { + showMinorLabels: { + 'boolean': bool$1 + }, + showMajorLabels: { + 'boolean': bool$1 + }, + icons: { + 'boolean': bool$1 + }, + width: { + string: string$1, + number: number$1 + }, + visible: { + 'boolean': bool$1 + }, + alignZeros: { + 'boolean': bool$1 + }, + left: { + range: { + min: { + number: number$1, + 'undefined': 'undefined' + }, + max: { + number: number$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + format: { + 'function': 'function' + }, + title: { + text: { + string: string$1, + number: number$1, + 'undefined': 'undefined' + }, + style: { + string: string$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + __type__: { + object: object$1 + } + }, + right: { + range: { + min: { + number: number$1, + 'undefined': 'undefined' + }, + max: { + number: number$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + format: { + 'function': 'function' + }, + title: { + text: { + string: string$1, + number: number$1, + 'undefined': 'undefined' + }, + style: { + string: string$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + __type__: { + object: object$1 + } + }, + __type__: { + object: object$1 + } + }, + legend: { + enabled: { + 'boolean': bool$1 + }, + icons: { + 'boolean': bool$1 + }, + left: { + visible: { + 'boolean': bool$1 + }, + position: { + string: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] + }, + __type__: { + object: object$1 + } + }, + right: { + visible: { + 'boolean': bool$1 + }, + position: { + string: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] + }, + __type__: { + object: object$1 + } + }, + __type__: { + object: object$1, + 'boolean': bool$1 + } + }, + groups: { + visibility: { + any: any$1 + }, + __type__: { + object: object$1 + } + }, + autoResize: { + 'boolean': bool$1 + }, + throttleRedraw: { + number: number$1 + }, + // TODO: DEPRICATED see https://github.com/almende/vis/issues/2511 + clickToUse: { + 'boolean': bool$1 + }, + end: { + number: number$1, + date: date$1, + string: string$1, + moment: moment$5 + }, + format: { + minorLabels: { + millisecond: { + string: string$1, + 'undefined': 'undefined' + }, + second: { + string: string$1, + 'undefined': 'undefined' + }, + minute: { + string: string$1, + 'undefined': 'undefined' + }, + hour: { + string: string$1, + 'undefined': 'undefined' + }, + weekday: { + string: string$1, + 'undefined': 'undefined' + }, + day: { + string: string$1, + 'undefined': 'undefined' + }, + week: { + string: string$1, + 'undefined': 'undefined' + }, + month: { + string: string$1, + 'undefined': 'undefined' + }, + quarter: { + string: string$1, + 'undefined': 'undefined' + }, + year: { + string: string$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + majorLabels: { + millisecond: { + string: string$1, + 'undefined': 'undefined' + }, + second: { + string: string$1, + 'undefined': 'undefined' + }, + minute: { + string: string$1, + 'undefined': 'undefined' + }, + hour: { + string: string$1, + 'undefined': 'undefined' + }, + weekday: { + string: string$1, + 'undefined': 'undefined' + }, + day: { + string: string$1, + 'undefined': 'undefined' + }, + week: { + string: string$1, + 'undefined': 'undefined' + }, + month: { + string: string$1, + 'undefined': 'undefined' + }, + quarter: { + string: string$1, + 'undefined': 'undefined' + }, + year: { + string: string$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + __type__: { + object: object$1 + } + }, + moment: { + 'function': 'function' + }, + height: { + string: string$1, + number: number$1 + }, + hiddenDates: { + start: { + date: date$1, + number: number$1, + string: string$1, + moment: moment$5 + }, + end: { + date: date$1, + number: number$1, + string: string$1, + moment: moment$5 + }, + repeat: { + string: string$1 + }, + __type__: { + object: object$1, + array: array$1 + } + }, + locale: { + string: string$1 + }, + locales: { + __any__: { + any: any$1 + }, + __type__: { + object: object$1 + } + }, + max: { + date: date$1, + number: number$1, + string: string$1, + moment: moment$5 + }, + maxHeight: { + number: number$1, + string: string$1 + }, + maxMinorChars: { + number: number$1 + }, + min: { + date: date$1, + number: number$1, + string: string$1, + moment: moment$5 + }, + minHeight: { + number: number$1, + string: string$1 + }, + moveable: { + 'boolean': bool$1 + }, + multiselect: { + 'boolean': bool$1 + }, + orientation: { + string: string$1 + }, + showCurrentTime: { + 'boolean': bool$1 + }, + showMajorLabels: { + 'boolean': bool$1 + }, + showMinorLabels: { + 'boolean': bool$1 + }, + start: { + date: date$1, + number: number$1, + string: string$1, + moment: moment$5 + }, + timeAxis: { + scale: { + string: string$1, + 'undefined': 'undefined' + }, + step: { + number: number$1, + 'undefined': 'undefined' + }, + __type__: { + object: object$1 + } + }, + width: { + string: string$1, + number: number$1 + }, + zoomable: { + 'boolean': bool$1 + }, + zoomKey: { + string: ['ctrlKey', 'altKey', 'metaKey', ''] + }, + zoomMax: { + number: number$1 + }, + zoomMin: { + number: number$1 + }, + zIndex: { + number: number$1 + }, + __type__: { + object: object$1 + } +}; +var configureOptions$1 = { + global: { + alignCurrentTime: ['none', 'year', 'month', 'quarter', 'week', 'isoWeek', 'day', 'date', 'hour', 'minute', 'second'], + //yAxisOrientation: ['left','right'], // TDOO: enable as soon as Grahp2d doesn't crash when changing this on the fly + sort: true, + sampling: true, + stack: false, + shaded: { + enabled: false, + orientation: ['zero', 'top', 'bottom', 'group'] // zero, top, bottom + + }, + style: ['line', 'bar', 'points'], + // line, bar + barChart: { + width: [50, 5, 100, 5], + minWidth: [50, 5, 100, 5], + sideBySide: false, + align: ['left', 'center', 'right'] // left, center, right + + }, + interpolation: { + enabled: true, + parametrization: ['centripetal', 'chordal', 'uniform'] // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5) + + }, + drawPoints: { + enabled: true, + size: [6, 2, 30, 1], + style: ['square', 'circle'] // square, circle + + }, + dataAxis: { + showMinorLabels: true, + showMajorLabels: true, + icons: false, + width: [40, 0, 200, 1], + visible: true, + alignZeros: true, + left: { + //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined}, + //format: function (value) {return value;}, + title: { + text: '', + style: '' + } + }, + right: { + //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined}, + //format: function (value) {return value;}, + title: { + text: '', + style: '' + } + } + }, + legend: { + enabled: false, + icons: true, + left: { + visible: true, + position: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] // top/bottom - left,right + + }, + right: { + visible: true, + position: ['top-right', 'bottom-right', 'top-left', 'bottom-left'] // top/bottom - left,right + + } + }, + autoResize: true, + clickToUse: false, + end: '', + format: { + minorLabels: { + millisecond: 'SSS', + second: 's', + minute: 'HH:mm', + hour: 'HH:mm', + weekday: 'ddd D', + day: 'D', + week: 'w', + month: 'MMM', + quarter: '[Q]Q', + year: 'YYYY' + }, + majorLabels: { + millisecond: 'HH:mm:ss', + second: 'D MMMM HH:mm', + minute: 'ddd D MMMM', + hour: 'ddd D MMMM', + weekday: 'MMMM YYYY', + day: 'MMMM YYYY', + week: 'MMMM YYYY', + month: 'YYYY', + quarter: 'YYYY', + year: '' + } + }, + height: '', + locale: '', + max: '', + maxHeight: '', + maxMinorChars: [7, 0, 20, 1], + min: '', + minHeight: '', + moveable: true, + orientation: ['both', 'bottom', 'top'], + showCurrentTime: false, + showMajorLabels: true, + showMinorLabels: true, + start: '', + width: '100%', + zoomable: true, + zoomKey: ['ctrlKey', 'altKey', 'metaKey', ''], + zoomMax: [315360000000000, 10, 315360000000000, 1], + zoomMin: [10, 10, 315360000000000, 1], + zIndex: 0 + } +}; + +/** + * Create a timeline visualization + * @param {HTMLElement} container + * @param {vis.DataSet | Array} [items] + * @param {vis.DataSet | Array | vis.DataView | Object} [groups] + * @param {Object} [options] See Graph2d.setOptions for the available options. + * @constructor Graph2d + * @extends Core + */ + +function Graph2d(container, items, groups, options) { + var _context, _context2, _context3, _context4, _context5, _context6, _context7; + + // if the third element is options, the forth is groups (optionally); + if (!(isArray$3(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) { + var forthArgument = options; + options = groups; + groups = forthArgument; + } // TODO: REMOVE THIS in the next MAJOR release + // see https://github.com/almende/vis/issues/2511 + + + if (options && options.throttleRedraw) { + console.warn("Graph2d option \"throttleRedraw\" is DEPRICATED and no longer supported. It will be removed in the next MAJOR release."); + } + + var me = this; + this.defaultOptions = { + start: null, + end: null, + autoResize: true, + orientation: { + axis: 'bottom', + // axis orientation: 'bottom', 'top', or 'both' + item: 'bottom' // not relevant for Graph2d + + }, + moment: moment$3, + width: null, + height: null, + maxHeight: null, + minHeight: null + }; + this.options = util$2.deepExtend({}, this.defaultOptions); // Create the DOM, props, and emitter + + this._create(container); // all components listed here will be repainted automatically + + + this.components = []; + this.body = { + dom: this.dom, + domProps: this.props, + emitter: { + on: bind$2(_context = this.on).call(_context, this), + off: bind$2(_context2 = this.off).call(_context2, this), + emit: bind$2(_context3 = this.emit).call(_context3, this) + }, + hiddenDates: [], + util: { + toScreen: bind$2(_context4 = me._toScreen).call(_context4, me), + toGlobalScreen: bind$2(_context5 = me._toGlobalScreen).call(_context5, me), + // this refers to the root.width + toTime: bind$2(_context6 = me._toTime).call(_context6, me), + toGlobalTime: bind$2(_context7 = me._toGlobalTime).call(_context7, me) + } + }; // range + + this.range = new Range(this.body); + this.components.push(this.range); + this.body.range = this.range; // time axis + + this.timeAxis = new TimeAxis(this.body); + this.components.push(this.timeAxis); //this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis); + // current time bar + + this.currentTime = new CurrentTime(this.body); + this.components.push(this.currentTime); // item set + + this.linegraph = new LineGraph(this.body); + this.components.push(this.linegraph); + this.itemsData = null; // DataSet + + this.groupsData = null; // DataSet + + this.on('tap', function (event) { + me.emit('click', me.getEventProperties(event)); + }); + this.on('doubletap', function (event) { + me.emit('doubleClick', me.getEventProperties(event)); + }); + + this.dom.root.oncontextmenu = function (event) { + me.emit('contextmenu', me.getEventProperties(event)); + }; //Single time autoscale/fit + + + this.initialFitDone = false; + this.on('changed', function () { + if (me.itemsData == null) return; + + if (!me.initialFitDone && !me.options.rollingMode) { + me.initialFitDone = true; + + if (me.options.start != undefined || me.options.end != undefined) { + if (me.options.start == undefined || me.options.end == undefined) { + var range = me.getItemRange(); + } + + var start = me.options.start != undefined ? me.options.start : range.min; + var end = me.options.end != undefined ? me.options.end : range.max; + me.setWindow(start, end, { + animation: false + }); + } else { + me.fit({ + animation: false + }); + } + } + + if (!me.initialDrawDone && (me.initialRangeChangeDone || !me.options.start && !me.options.end || me.options.rollingMode)) { + me.initialDrawDone = true; + me.dom.root.style.visibility = 'visible'; + me.dom.loadingScreen.parentNode.removeChild(me.dom.loadingScreen); + + if (me.options.onInitialDrawComplete) { + setTimeout$2(function () { + return me.options.onInitialDrawComplete(); + }, 0); + } + } + }); // apply options + + if (options) { + this.setOptions(options); + } // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS! + + + if (groups) { + this.setGroups(groups); + } // create itemset + + + if (items) { + this.setItems(items); + } // draw for the first time + + + this._redraw(); +} // Extend the functionality from Core + + +Graph2d.prototype = new Core(); + +Graph2d.prototype.setOptions = function (options) { + // validate options + var errorFound = Validator.validate(options, allOptions$2); + + if (errorFound === true) { + console.log('%cErrors have been found in the supplied options object.', printStyle); + } + + Core.prototype.setOptions.call(this, options); +}; +/** + * Set items + * @param {vis.DataSet | Array | null} items + */ + + +Graph2d.prototype.setItems = function (items) { + var initialLoad = this.itemsData == null; // convert to type DataSet when needed + + var newDataSet; + + if (!items) { + newDataSet = null; + } else if (items instanceof DataSet || items instanceof DataView) { + newDataSet = items; + } else { + // turn an array into a dataset + newDataSet = new DataSet(items, { + type: { + start: 'Date', + end: 'Date' + } + }); + } // set items + + + this.itemsData = newDataSet; + this.linegraph && this.linegraph.setItems(newDataSet); + + if (initialLoad) { + if (this.options.start != undefined || this.options.end != undefined) { + var start = this.options.start != undefined ? this.options.start : null; + var end = this.options.end != undefined ? this.options.end : null; + this.setWindow(start, end, { + animation: false + }); + } else { + this.fit({ + animation: false + }); + } + } +}; +/** + * Set groups + * @param {vis.DataSet | Array} groups + */ + + +Graph2d.prototype.setGroups = function (groups) { + // convert to type DataSet when needed + var newDataSet; + + if (!groups) { + newDataSet = null; + } else if (groups instanceof DataSet || groups instanceof DataView) { + newDataSet = groups; + } else { + // turn an array into a dataset + newDataSet = new DataSet(groups); + } + + this.groupsData = newDataSet; + this.linegraph.setGroups(newDataSet); +}; +/** + * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right). + * @param {vis.GraphGroup.id} groupId + * @param {number} width + * @param {number} height + * @returns {{icon: SVGElement, label: string, orientation: string}|string} + */ + + +Graph2d.prototype.getLegend = function (groupId, width, height) { + if (width === undefined) { + width = 15; + } + + if (height === undefined) { + height = 15; + } + + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].getLegend(width, height); + } else { + return "cannot find group:'" + groupId + "'"; + } +}; +/** + * This checks if the visible option of the supplied group (by ID) is true or false. + * @param {vis.GraphGroup.id} groupId + * @returns {boolean} + */ + + +Graph2d.prototype.isGroupVisible = function (groupId) { + if (this.linegraph.groups[groupId] !== undefined) { + return this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true); + } else { + return false; + } +}; +/** + * Get the data range of the item set. + * @returns {{min: Date, max: Date}} range A range with a start and end Date. + * When no minimum is found, min==null + * When no maximum is found, max==null + */ + + +Graph2d.prototype.getDataRange = function () { + var min = null; + var max = null; // calculate min from start filed + + for (var groupId in this.linegraph.groups) { + if (this.linegraph.groups.hasOwnProperty(groupId)) { + if (this.linegraph.groups[groupId].visible == true) { + for (var i = 0; i < this.linegraph.groups[groupId].itemsData.length; i++) { + var item = this.linegraph.groups[groupId].itemsData[i]; + var value = util$2.convert(item.x, 'Date').valueOf(); + min = min == null ? value : min > value ? value : min; + max = max == null ? value : max < value ? value : max; + } + } + } + } + + return { + min: min != null ? new Date(min) : null, + max: max != null ? new Date(max) : null + }; +}; +/** + * Generate Timeline related information from an event + * @param {Event} event + * @return {Object} An object with related information, like on which area + * The event happened, whether clicked on an item, etc. + */ + + +Graph2d.prototype.getEventProperties = function (event) { + var clientX = event.center ? event.center.x : event.clientX; + var clientY = event.center ? event.center.y : event.clientY; + var x = clientX - util$2.getAbsoluteLeft(this.dom.centerContainer); + var y = clientY - util$2.getAbsoluteTop(this.dom.centerContainer); + + var time = this._toTime(x); + + var customTime = CustomTime.customTimeFromTarget(event); + var element = util$2.getTarget(event); + var what = null; + + if (util$2.hasParent(element, this.timeAxis.dom.foreground)) { + what = 'axis'; + } else if (this.timeAxis2 && util$2.hasParent(element, this.timeAxis2.dom.foreground)) { + what = 'axis'; + } else if (util$2.hasParent(element, this.linegraph.yAxisLeft.dom.frame)) { + what = 'data-axis'; + } else if (util$2.hasParent(element, this.linegraph.yAxisRight.dom.frame)) { + what = 'data-axis'; + } else if (util$2.hasParent(element, this.linegraph.legendLeft.dom.frame)) { + what = 'legend'; + } else if (util$2.hasParent(element, this.linegraph.legendRight.dom.frame)) { + what = 'legend'; + } else if (customTime != null) { + what = 'custom-time'; + } else if (util$2.hasParent(element, this.currentTime.bar)) { + what = 'current-time'; + } else if (util$2.hasParent(element, this.dom.center)) { + what = 'background'; + } + + var value = []; + var yAxisLeft = this.linegraph.yAxisLeft; + var yAxisRight = this.linegraph.yAxisRight; + + if (!yAxisLeft.hidden && this.itemsData.length > 0) { + value.push(yAxisLeft.screenToValue(y)); + } + + if (!yAxisRight.hidden && this.itemsData.length > 0) { + value.push(yAxisRight.screenToValue(y)); + } + + return { + event: event, + customTime: customTime ? customTime.options.id : null, + what: what, + pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX, + pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY, + x: x, + y: y, + time: time, + value: value + }; +}; +/** + * Load a configurator + * @return {Object} + * @private + */ + + +Graph2d.prototype._createConfigurator = function () { + return new Configurator(this, this.dom.container, configureOptions$1); +}; + +// utils +var defaultLanguage = getNavigatorLanguage(); +moment$3.locale(defaultLanguage); +var timeline = { + Core: Core, + DateUtil: DateUtil, + Range: Range, + stack: stack$1, + TimeStep: TimeStep, + components: { + items: { + Item: Item, + BackgroundItem: BackgroundItem, + BoxItem: BoxItem, + PointItem: PointItem, + RangeItem: RangeItem + }, + BackgroundGroup: BackgroundGroup, + Component: Component, + CurrentTime: CurrentTime, + CustomTime: CustomTime, + DataAxis: DataAxis, + DataScale: DataScale, + GraphGroup: GraphGroup, + Group: Group, + ItemSet: ItemSet, + Legend: Legend, + LineGraph: LineGraph, + TimeAxis: TimeAxis + } +}; +var index = { + util: util, + DOMutil: DOMutil, + DataSet: DataSet, + DataView: DataView, + Queue: Queue, + Timeline: Timeline, + Graph2d: Graph2d, + timeline: timeline, + moment: moment$3, + Hammer: Hammer$1, + keycharm: keycharm +}; + +export default index; +export { DOMutil, DataSet, DataView, Graph2d, Hammer$1 as Hammer, Queue, Timeline, keycharm, moment$3 as moment, timeline, util }; +//# sourceMappingURL=vis-timeline-graph2d.esm.js.map diff --git a/includes/js/vis/dist/vis-timeline-graph2d.esm.js.map b/includes/js/vis/dist/vis-timeline-graph2d.esm.js.map new file mode 100644 index 0000000..f37eccf --- /dev/null +++ b/includes/js/vis/dist/vis-timeline-graph2d.esm.js.map @@ -0,0 +1 @@ +{"version":3,"file":"vis-timeline-graph2d.esm.js","sources":["../node_modules/vis-util/dist/esm.js","../lib/DOMutil.js","../node_modules/vis-data/dist/esm.js","../node_modules/core-js-pure/internals/fails.js","../node_modules/core-js-pure/internals/classof-raw.js","../node_modules/core-js-pure/internals/indexed-object.js","../node_modules/core-js-pure/internals/require-object-coercible.js","../node_modules/core-js-pure/internals/to-indexed-object.js","../node_modules/core-js-pure/internals/iterators.js","../node_modules/core-js-pure/internals/global.js","../node_modules/core-js-pure/internals/descriptors.js","../node_modules/core-js-pure/internals/is-object.js","../node_modules/core-js-pure/internals/document-create-element.js","../node_modules/core-js-pure/internals/ie8-dom-define.js","../node_modules/core-js-pure/internals/an-object.js","../node_modules/core-js-pure/internals/to-primitive.js","../node_modules/core-js-pure/internals/object-define-property.js","../node_modules/core-js-pure/internals/create-property-descriptor.js","../node_modules/core-js-pure/internals/hide.js","../node_modules/core-js-pure/internals/set-global.js","../node_modules/core-js-pure/internals/shared.js","../node_modules/core-js-pure/internals/function-to-string.js","../node_modules/core-js-pure/internals/native-weak-map.js","../node_modules/core-js-pure/internals/has.js","../node_modules/core-js-pure/internals/uid.js","../node_modules/core-js-pure/internals/shared-key.js","../node_modules/core-js-pure/internals/hidden-keys.js","../node_modules/core-js-pure/internals/internal-state.js","../node_modules/core-js-pure/internals/object-property-is-enumerable.js","../node_modules/core-js-pure/internals/object-get-own-property-descriptor.js","../node_modules/core-js-pure/internals/is-forced.js","../node_modules/core-js-pure/internals/path.js","../node_modules/core-js-pure/internals/a-function.js","../node_modules/core-js-pure/internals/bind-context.js","../node_modules/core-js-pure/internals/export.js","../node_modules/core-js-pure/internals/to-object.js","../node_modules/core-js-pure/internals/correct-prototype-getter.js","../node_modules/core-js-pure/internals/object-get-prototype-of.js","../node_modules/core-js-pure/internals/native-symbol.js","../node_modules/core-js-pure/internals/well-known-symbol.js","../node_modules/core-js-pure/internals/iterators-core.js","../node_modules/core-js-pure/internals/to-integer.js","../node_modules/core-js-pure/internals/to-length.js","../node_modules/core-js-pure/internals/to-absolute-index.js","../node_modules/core-js-pure/internals/array-includes.js","../node_modules/core-js-pure/internals/object-keys-internal.js","../node_modules/core-js-pure/internals/enum-bug-keys.js","../node_modules/core-js-pure/internals/object-keys.js","../node_modules/core-js-pure/internals/object-define-properties.js","../node_modules/core-js-pure/internals/get-built-in.js","../node_modules/core-js-pure/internals/html.js","../node_modules/core-js-pure/internals/object-create.js","../node_modules/core-js-pure/internals/classof.js","../node_modules/core-js-pure/internals/object-to-string.js","../node_modules/core-js-pure/internals/set-to-string-tag.js","../node_modules/core-js-pure/internals/create-iterator-constructor.js","../node_modules/core-js-pure/internals/a-possible-prototype.js","../node_modules/core-js-pure/internals/object-set-prototype-of.js","../node_modules/core-js-pure/internals/redefine.js","../node_modules/core-js-pure/internals/define-iterator.js","../node_modules/core-js-pure/modules/es.array.iterator.js","../node_modules/core-js-pure/internals/dom-iterables.js","../node_modules/core-js-pure/modules/web.dom-collections.iterator.js","../node_modules/core-js-pure/internals/is-array.js","../node_modules/core-js-pure/internals/array-species-create.js","../node_modules/core-js-pure/internals/array-iteration.js","../node_modules/core-js-pure/internals/sloppy-array-method.js","../node_modules/core-js-pure/internals/array-for-each.js","../node_modules/core-js-pure/modules/es.array.for-each.js","../node_modules/core-js-pure/internals/entry-virtual.js","../node_modules/core-js-pure/es/array/virtual/for-each.js","../node_modules/core-js-pure/stable/array/virtual/for-each.js","../node_modules/core-js-pure/stable/instance/for-each.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/for-each.js","../node_modules/core-js-pure/internals/array-method-has-species-support.js","../node_modules/core-js-pure/modules/es.array.filter.js","../node_modules/core-js-pure/es/array/virtual/filter.js","../node_modules/core-js-pure/es/instance/filter.js","../node_modules/core-js-pure/stable/instance/filter.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/filter.js","../node_modules/core-js-pure/internals/user-agent.js","../node_modules/core-js-pure/modules/web.timers.js","../node_modules/core-js-pure/stable/set-timeout.js","../node_modules/@babel/runtime-corejs3/core-js-stable/set-timeout.js","../node_modules/core-js-pure/internals/function-bind.js","../node_modules/core-js-pure/modules/es.function.bind.js","../node_modules/core-js-pure/es/function/virtual/bind.js","../node_modules/core-js-pure/es/instance/bind.js","../node_modules/core-js-pure/stable/instance/bind.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/bind.js","../node_modules/core-js-pure/modules/es.array.is-array.js","../node_modules/core-js-pure/es/array/is-array.js","../node_modules/core-js-pure/stable/array/is-array.js","../node_modules/@babel/runtime-corejs3/core-js-stable/array/is-array.js","../node_modules/@babel/runtime-corejs3/helpers/classCallCheck.js","../node_modules/core-js-pure/modules/es.object.define-property.js","../node_modules/core-js-pure/es/object/define-property.js","../node_modules/core-js-pure/features/object/define-property.js","../node_modules/@babel/runtime-corejs3/core-js/object/define-property.js","../node_modules/@babel/runtime-corejs3/helpers/createClass.js","../node_modules/core-js-pure/internals/wrapped-well-known-symbol.js","../node_modules/core-js-pure/internals/define-well-known-symbol.js","../node_modules/core-js-pure/modules/es.symbol.iterator.js","../node_modules/core-js-pure/internals/string-multibyte.js","../node_modules/core-js-pure/modules/es.string.iterator.js","../node_modules/core-js-pure/es/symbol/iterator.js","../node_modules/core-js-pure/features/symbol/iterator.js","../node_modules/@babel/runtime-corejs3/core-js/symbol/iterator.js","../node_modules/core-js-pure/internals/create-property.js","../node_modules/core-js-pure/modules/es.array.concat.js","../node_modules/core-js-pure/internals/object-get-own-property-names.js","../node_modules/core-js-pure/internals/object-get-own-property-names-external.js","../node_modules/core-js-pure/internals/object-get-own-property-symbols.js","../node_modules/core-js-pure/modules/es.symbol.js","../node_modules/core-js-pure/modules/es.symbol.async-iterator.js","../node_modules/core-js-pure/modules/es.symbol.has-instance.js","../node_modules/core-js-pure/modules/es.symbol.is-concat-spreadable.js","../node_modules/core-js-pure/modules/es.symbol.match.js","../node_modules/core-js-pure/modules/es.symbol.match-all.js","../node_modules/core-js-pure/modules/es.symbol.replace.js","../node_modules/core-js-pure/modules/es.symbol.search.js","../node_modules/core-js-pure/modules/es.symbol.species.js","../node_modules/core-js-pure/modules/es.symbol.split.js","../node_modules/core-js-pure/modules/es.symbol.to-primitive.js","../node_modules/core-js-pure/modules/es.symbol.to-string-tag.js","../node_modules/core-js-pure/modules/es.symbol.unscopables.js","../node_modules/core-js-pure/modules/es.math.to-string-tag.js","../node_modules/core-js-pure/modules/es.json.to-string-tag.js","../node_modules/core-js-pure/es/symbol/index.js","../node_modules/core-js-pure/modules/esnext.symbol.async-dispose.js","../node_modules/core-js-pure/modules/esnext.symbol.dispose.js","../node_modules/core-js-pure/modules/esnext.symbol.observable.js","../node_modules/core-js-pure/modules/esnext.symbol.pattern-match.js","../node_modules/core-js-pure/modules/esnext.symbol.replace-all.js","../node_modules/core-js-pure/features/symbol/index.js","../node_modules/@babel/runtime-corejs3/core-js/symbol.js","../node_modules/@babel/runtime-corejs3/helpers/typeof.js","../node_modules/@babel/runtime-corejs3/helpers/assertThisInitialized.js","../node_modules/@babel/runtime-corejs3/helpers/possibleConstructorReturn.js","../node_modules/core-js-pure/modules/es.object.get-prototype-of.js","../node_modules/core-js-pure/es/object/get-prototype-of.js","../node_modules/core-js-pure/features/object/get-prototype-of.js","../node_modules/@babel/runtime-corejs3/core-js/object/get-prototype-of.js","../node_modules/core-js-pure/modules/es.object.set-prototype-of.js","../node_modules/core-js-pure/es/object/set-prototype-of.js","../node_modules/core-js-pure/features/object/set-prototype-of.js","../node_modules/@babel/runtime-corejs3/core-js/object/set-prototype-of.js","../node_modules/@babel/runtime-corejs3/helpers/getPrototypeOf.js","../node_modules/core-js-pure/modules/es.object.create.js","../node_modules/core-js-pure/es/object/create.js","../node_modules/core-js-pure/features/object/create.js","../node_modules/@babel/runtime-corejs3/core-js/object/create.js","../node_modules/@babel/runtime-corejs3/helpers/setPrototypeOf.js","../node_modules/@babel/runtime-corejs3/helpers/inherits.js","../node_modules/moment/moment.js","../lib/module/moment.js","../node_modules/core-js-pure/stable/object/define-property.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/define-property.js","../node_modules/core-js-pure/modules/es.object.define-properties.js","../node_modules/core-js-pure/es/object/define-properties.js","../node_modules/core-js-pure/stable/object/define-properties.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/define-properties.js","../node_modules/core-js-pure/internals/own-keys.js","../node_modules/core-js-pure/modules/es.object.get-own-property-descriptors.js","../node_modules/core-js-pure/es/object/get-own-property-descriptors.js","../node_modules/core-js-pure/stable/object/get-own-property-descriptors.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptors.js","../node_modules/core-js-pure/modules/es.object.get-own-property-descriptor.js","../node_modules/core-js-pure/es/object/get-own-property-descriptor.js","../node_modules/core-js-pure/stable/object/get-own-property-descriptor.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/get-own-property-descriptor.js","../node_modules/core-js-pure/es/object/get-own-property-symbols.js","../node_modules/core-js-pure/stable/object/get-own-property-symbols.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/get-own-property-symbols.js","../node_modules/core-js-pure/modules/es.object.keys.js","../node_modules/core-js-pure/es/object/keys.js","../node_modules/core-js-pure/stable/object/keys.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/keys.js","../node_modules/@babel/runtime-corejs3/helpers/defineProperty.js","../lib/util.js","../node_modules/core-js-pure/internals/whitespaces.js","../node_modules/core-js-pure/internals/string-trim.js","../node_modules/core-js-pure/internals/parse-float.js","../node_modules/core-js-pure/modules/es.parse-float.js","../node_modules/core-js-pure/es/parse-float.js","../node_modules/core-js-pure/stable/parse-float.js","../node_modules/@babel/runtime-corejs3/core-js-stable/parse-float.js","../node_modules/core-js-pure/modules/es.date.now.js","../node_modules/core-js-pure/es/date/now.js","../node_modules/core-js-pure/stable/date/now.js","../node_modules/@babel/runtime-corejs3/core-js-stable/date/now.js","../node_modules/core-js-pure/es/json/stringify.js","../node_modules/core-js-pure/stable/json/stringify.js","../node_modules/@babel/runtime-corejs3/core-js-stable/json/stringify.js","../node_modules/core-js-pure/es/array/virtual/concat.js","../node_modules/core-js-pure/es/instance/concat.js","../node_modules/core-js-pure/stable/instance/concat.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/concat.js","../lib/timeline/component/Component.js","../node_modules/core-js-pure/modules/es.array.sort.js","../node_modules/core-js-pure/es/array/virtual/sort.js","../node_modules/core-js-pure/es/instance/sort.js","../node_modules/core-js-pure/stable/instance/sort.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/sort.js","../node_modules/core-js-pure/internals/string-repeat.js","../node_modules/core-js-pure/modules/es.string.repeat.js","../node_modules/core-js-pure/es/string/virtual/repeat.js","../node_modules/core-js-pure/es/instance/repeat.js","../node_modules/core-js-pure/stable/instance/repeat.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/repeat.js","../lib/timeline/DateUtil.js","../lib/timeline/Range.js","../node_modules/core-js-pure/stable/set-interval.js","../node_modules/@babel/runtime-corejs3/core-js-stable/set-interval.js","../node_modules/core-js-pure/modules/es.array.some.js","../node_modules/core-js-pure/es/array/virtual/some.js","../node_modules/core-js-pure/es/instance/some.js","../node_modules/core-js-pure/stable/instance/some.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/some.js","../node_modules/core-js-pure/modules/es.array.splice.js","../node_modules/core-js-pure/es/array/virtual/splice.js","../node_modules/core-js-pure/es/instance/splice.js","../node_modules/core-js-pure/stable/instance/splice.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/splice.js","../node_modules/core-js-pure/modules/es.array.index-of.js","../node_modules/core-js-pure/es/array/virtual/index-of.js","../node_modules/core-js-pure/es/instance/index-of.js","../node_modules/core-js-pure/stable/instance/index-of.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/index-of.js","../node_modules/emitter-component/index.js","../node_modules/propagating-hammerjs/propagating.js","../node_modules/@egjs/hammerjs/dist/hammer.esm.js","../lib/module/hammer.js","../lib/hammerUtil.js","../node_modules/core-js-pure/internals/parse-int.js","../node_modules/core-js-pure/modules/es.parse-int.js","../node_modules/core-js-pure/es/parse-int.js","../node_modules/core-js-pure/stable/parse-int.js","../node_modules/@babel/runtime-corejs3/core-js-stable/parse-int.js","../lib/timeline/TimeStep.js","../lib/timeline/component/TimeAxis.js","../node_modules/keycharm/keycharm.js","../lib/shared/Activator.js","../node_modules/moment/locale/it.js","../node_modules/moment/locale/nl.js","../node_modules/moment/locale/de.js","../node_modules/moment/locale/fr.js","../node_modules/moment/locale/es.js","../node_modules/moment/locale/uk.js","../node_modules/moment/locale/ru.js","../node_modules/moment/locale/ja.js","../lib/timeline/locales.js","../lib/timeline/component/CustomTime.js","../lib/timeline/Core.js","../lib/timeline/component/CurrentTime.js","../node_modules/core-js-pure/internals/freezing.js","../node_modules/core-js-pure/internals/internal-metadata.js","../node_modules/core-js-pure/internals/is-array-iterator-method.js","../node_modules/core-js-pure/internals/get-iterator-method.js","../node_modules/core-js-pure/internals/call-with-safe-iteration-closing.js","../node_modules/core-js-pure/internals/iterate.js","../node_modules/core-js-pure/internals/an-instance.js","../node_modules/core-js-pure/internals/collection.js","../node_modules/core-js-pure/internals/redefine-all.js","../node_modules/core-js-pure/internals/set-species.js","../node_modules/core-js-pure/internals/collection-strong.js","../node_modules/core-js-pure/modules/es.set.js","../node_modules/core-js-pure/es/set/index.js","../node_modules/core-js-pure/stable/set/index.js","../node_modules/@babel/runtime-corejs3/core-js-stable/set.js","../node_modules/core-js-pure/modules/es.array.map.js","../node_modules/core-js-pure/es/array/virtual/map.js","../node_modules/core-js-pure/es/instance/map.js","../node_modules/core-js-pure/stable/instance/map.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/map.js","../node_modules/core-js-pure/stable/object/create.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/create.js","../node_modules/core-js-pure/modules/es.array.find.js","../node_modules/core-js-pure/es/array/virtual/find.js","../node_modules/core-js-pure/es/instance/find.js","../node_modules/core-js-pure/stable/instance/find.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/find.js","../node_modules/core-js-pure/internals/get-iterator.js","../node_modules/core-js-pure/features/get-iterator.js","../node_modules/@babel/runtime-corejs3/core-js/get-iterator.js","../node_modules/core-js-pure/features/array/is-array.js","../node_modules/@babel/runtime-corejs3/core-js/array/is-array.js","../node_modules/@babel/runtime-corejs3/helpers/arrayWithoutHoles.js","../node_modules/core-js-pure/internals/array-from.js","../node_modules/core-js-pure/internals/check-correctness-of-iteration.js","../node_modules/core-js-pure/modules/es.array.from.js","../node_modules/core-js-pure/es/array/from.js","../node_modules/core-js-pure/features/array/from.js","../node_modules/@babel/runtime-corejs3/core-js/array/from.js","../node_modules/core-js-pure/internals/is-iterable.js","../node_modules/core-js-pure/features/is-iterable.js","../node_modules/@babel/runtime-corejs3/core-js/is-iterable.js","../node_modules/@babel/runtime-corejs3/helpers/iterableToArray.js","../node_modules/@babel/runtime-corejs3/helpers/nonIterableSpread.js","../node_modules/@babel/runtime-corejs3/helpers/toConsumableArray.js","../node_modules/core-js-pure/internals/object-assign.js","../node_modules/core-js-pure/modules/es.object.assign.js","../node_modules/core-js-pure/es/object/assign.js","../node_modules/core-js-pure/stable/object/assign.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/assign.js","../node_modules/core-js-pure/modules/es.array.includes.js","../node_modules/core-js-pure/es/array/virtual/includes.js","../node_modules/core-js-pure/internals/is-regexp.js","../node_modules/core-js-pure/internals/not-a-regexp.js","../node_modules/core-js-pure/internals/correct-is-regexp-logic.js","../node_modules/core-js-pure/modules/es.string.includes.js","../node_modules/core-js-pure/es/string/virtual/includes.js","../node_modules/core-js-pure/es/instance/includes.js","../node_modules/core-js-pure/stable/instance/includes.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/includes.js","../node_modules/core-js-pure/modules/es.array.slice.js","../node_modules/core-js-pure/es/array/virtual/slice.js","../node_modules/core-js-pure/es/instance/slice.js","../node_modules/core-js-pure/stable/instance/slice.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/slice.js","../lib/timeline/Stack.js","../lib/timeline/component/Group.js","../lib/timeline/component/BackgroundGroup.js","../lib/timeline/component/item/Item.js","../lib/timeline/component/item/BoxItem.js","../lib/timeline/component/item/PointItem.js","../lib/timeline/component/item/RangeItem.js","../lib/timeline/component/item/BackgroundItem.js","../lib/shared/Popup.js","../node_modules/core-js-pure/modules/es.array.every.js","../node_modules/core-js-pure/es/array/virtual/every.js","../node_modules/core-js-pure/es/instance/every.js","../node_modules/core-js-pure/stable/instance/every.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/every.js","../node_modules/core-js-pure/internals/object-to-array.js","../node_modules/core-js-pure/modules/es.object.values.js","../node_modules/core-js-pure/es/object/values.js","../node_modules/core-js-pure/stable/object/values.js","../node_modules/@babel/runtime-corejs3/core-js-stable/object/values.js","../node_modules/core-js-pure/internals/array-reduce.js","../node_modules/core-js-pure/modules/es.array.reduce.js","../node_modules/core-js-pure/es/array/virtual/reduce.js","../node_modules/core-js-pure/es/instance/reduce.js","../node_modules/core-js-pure/stable/instance/reduce.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/reduce.js","../lib/timeline/component/item/ClusterItem.js","../lib/timeline/component/ClusterGenerator.js","../lib/timeline/component/ItemSet.js","../lib/shared/Validator.js","../lib/timeline/optionsTimeline.js","../node_modules/core-js-pure/internals/array-fill.js","../node_modules/core-js-pure/modules/es.array.fill.js","../node_modules/core-js-pure/es/array/virtual/fill.js","../node_modules/core-js-pure/es/instance/fill.js","../node_modules/core-js-pure/stable/instance/fill.js","../node_modules/@babel/runtime-corejs3/core-js-stable/instance/fill.js","../lib/shared/ColorPicker.js","../lib/shared/Configurator.js","../lib/timeline/Timeline.js","../lib/timeline/component/DataScale.js","../lib/timeline/component/DataAxis.js","../lib/timeline/component/graph2d_types/points.js","../lib/timeline/component/graph2d_types/bar.js","../lib/timeline/component/graph2d_types/line.js","../lib/timeline/component/GraphGroup.js","../lib/timeline/component/Legend.js","../lib/timeline/component/LineGraph.js","../lib/timeline/optionsGraph2d.js","../lib/timeline/Graph2d.js","../index.js"],"sourcesContent":["function _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nvar defineProperty = _defineProperty;\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n }\n}\n\nvar arrayWithoutHoles = _arrayWithoutHoles;\n\nfunction _iterableToArray(iter) {\n if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return Array.from(iter);\n}\n\nvar iterableToArray = _iterableToArray;\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}\n\nvar nonIterableSpread = _nonIterableSpread;\n\nfunction _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread();\n}\n\nvar toConsumableArray = _toConsumableArray;\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nfunction commonjsRequire () {\n\tthrow new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar _typeof_1 = createCommonjsModule(function (module) {\n function _typeof2(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof2 = function _typeof2(obj) {\n return typeof obj;\n };\n } else {\n _typeof2 = function _typeof2(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof2(obj);\n }\n\n function _typeof(obj) {\n if (typeof Symbol === \"function\" && _typeof2(Symbol.iterator) === \"symbol\") {\n module.exports = _typeof = function _typeof(obj) {\n return _typeof2(obj);\n };\n } else {\n module.exports = _typeof = function _typeof(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : _typeof2(obj);\n };\n }\n\n return _typeof(obj);\n }\n\n module.exports = _typeof;\n});\n\nvar moment = createCommonjsModule(function (module, exports) {\n\n (function (global, factory) {\n module.exports = factory() ;\n })(commonjsGlobal, function () {\n\n var hookCallback;\n\n function hooks() {\n return hookCallback.apply(null, arguments);\n } // This is done to register the method called with moment()\n // without creating circular dependencies.\n\n\n function setHookCallback(callback) {\n hookCallback = callback;\n }\n\n function isArray(input) {\n return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';\n }\n\n function isObject(input) {\n // IE8 will treat undefined and null as object if it wasn't for\n // input != null\n return input != null && Object.prototype.toString.call(input) === '[object Object]';\n }\n\n function isObjectEmpty(obj) {\n if (Object.getOwnPropertyNames) {\n return Object.getOwnPropertyNames(obj).length === 0;\n } else {\n var k;\n\n for (k in obj) {\n if (obj.hasOwnProperty(k)) {\n return false;\n }\n }\n\n return true;\n }\n }\n\n function isUndefined(input) {\n return input === void 0;\n }\n\n function isNumber(input) {\n return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';\n }\n\n function isDate(input) {\n return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';\n }\n\n function map(arr, fn) {\n var res = [],\n i;\n\n for (i = 0; i < arr.length; ++i) {\n res.push(fn(arr[i], i));\n }\n\n return res;\n }\n\n function hasOwnProp(a, b) {\n return Object.prototype.hasOwnProperty.call(a, b);\n }\n\n function extend(a, b) {\n for (var i in b) {\n if (hasOwnProp(b, i)) {\n a[i] = b[i];\n }\n }\n\n if (hasOwnProp(b, 'toString')) {\n a.toString = b.toString;\n }\n\n if (hasOwnProp(b, 'valueOf')) {\n a.valueOf = b.valueOf;\n }\n\n return a;\n }\n\n function createUTC(input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, true).utc();\n }\n\n function defaultParsingFlags() {\n // We need to deep clone this object.\n return {\n empty: false,\n unusedTokens: [],\n unusedInput: [],\n overflow: -2,\n charsLeftOver: 0,\n nullInput: false,\n invalidMonth: null,\n invalidFormat: false,\n userInvalidated: false,\n iso: false,\n parsedDateParts: [],\n meridiem: null,\n rfc2822: false,\n weekdayMismatch: false\n };\n }\n\n function getParsingFlags(m) {\n if (m._pf == null) {\n m._pf = defaultParsingFlags();\n }\n\n return m._pf;\n }\n\n var some;\n\n if (Array.prototype.some) {\n some = Array.prototype.some;\n } else {\n some = function (fun) {\n var t = Object(this);\n var len = t.length >>> 0;\n\n for (var i = 0; i < len; i++) {\n if (i in t && fun.call(this, t[i], i, t)) {\n return true;\n }\n }\n\n return false;\n };\n }\n\n function isValid(m) {\n if (m._isValid == null) {\n var flags = getParsingFlags(m);\n var parsedParts = some.call(flags.parsedDateParts, function (i) {\n return i != null;\n });\n var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts);\n\n if (m._strict) {\n isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined;\n }\n\n if (Object.isFrozen == null || !Object.isFrozen(m)) {\n m._isValid = isNowValid;\n } else {\n return isNowValid;\n }\n }\n\n return m._isValid;\n }\n\n function createInvalid(flags) {\n var m = createUTC(NaN);\n\n if (flags != null) {\n extend(getParsingFlags(m), flags);\n } else {\n getParsingFlags(m).userInvalidated = true;\n }\n\n return m;\n } // Plugins that add properties should also add the key here (null value),\n // so we can properly clone ourselves.\n\n\n var momentProperties = hooks.momentProperties = [];\n\n function copyConfig(to, from) {\n var i, prop, val;\n\n if (!isUndefined(from._isAMomentObject)) {\n to._isAMomentObject = from._isAMomentObject;\n }\n\n if (!isUndefined(from._i)) {\n to._i = from._i;\n }\n\n if (!isUndefined(from._f)) {\n to._f = from._f;\n }\n\n if (!isUndefined(from._l)) {\n to._l = from._l;\n }\n\n if (!isUndefined(from._strict)) {\n to._strict = from._strict;\n }\n\n if (!isUndefined(from._tzm)) {\n to._tzm = from._tzm;\n }\n\n if (!isUndefined(from._isUTC)) {\n to._isUTC = from._isUTC;\n }\n\n if (!isUndefined(from._offset)) {\n to._offset = from._offset;\n }\n\n if (!isUndefined(from._pf)) {\n to._pf = getParsingFlags(from);\n }\n\n if (!isUndefined(from._locale)) {\n to._locale = from._locale;\n }\n\n if (momentProperties.length > 0) {\n for (i = 0; i < momentProperties.length; i++) {\n prop = momentProperties[i];\n val = from[prop];\n\n if (!isUndefined(val)) {\n to[prop] = val;\n }\n }\n }\n\n return to;\n }\n\n var updateInProgress = false; // Moment prototype object\n\n function Moment(config) {\n copyConfig(this, config);\n this._d = new Date(config._d != null ? config._d.getTime() : NaN);\n\n if (!this.isValid()) {\n this._d = new Date(NaN);\n } // Prevent infinite loop in case updateOffset creates new moment\n // objects.\n\n\n if (updateInProgress === false) {\n updateInProgress = true;\n hooks.updateOffset(this);\n updateInProgress = false;\n }\n }\n\n function isMoment(obj) {\n return obj instanceof Moment || obj != null && obj._isAMomentObject != null;\n }\n\n function absFloor(number) {\n if (number < 0) {\n // -0 -> 0\n return Math.ceil(number) || 0;\n } else {\n return Math.floor(number);\n }\n }\n\n function toInt(argumentForCoercion) {\n var coercedNumber = +argumentForCoercion,\n value = 0;\n\n if (coercedNumber !== 0 && isFinite(coercedNumber)) {\n value = absFloor(coercedNumber);\n }\n\n return value;\n } // compare two arrays, return the number of differences\n\n\n function compareArrays(array1, array2, dontConvert) {\n var len = Math.min(array1.length, array2.length),\n lengthDiff = Math.abs(array1.length - array2.length),\n diffs = 0,\n i;\n\n for (i = 0; i < len; i++) {\n if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) {\n diffs++;\n }\n }\n\n return diffs + lengthDiff;\n }\n\n function warn(msg) {\n if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) {\n console.warn('Deprecation warning: ' + msg);\n }\n }\n\n function deprecate(msg, fn) {\n var firstTime = true;\n return extend(function () {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(null, msg);\n }\n\n if (firstTime) {\n var args = [];\n var arg;\n\n for (var i = 0; i < arguments.length; i++) {\n arg = '';\n\n if (typeof arguments[i] === 'object') {\n arg += '\\n[' + i + '] ';\n\n for (var key in arguments[0]) {\n arg += key + ': ' + arguments[0][key] + ', ';\n }\n\n arg = arg.slice(0, -2); // Remove trailing comma and space\n } else {\n arg = arguments[i];\n }\n\n args.push(arg);\n }\n\n warn(msg + '\\nArguments: ' + Array.prototype.slice.call(args).join('') + '\\n' + new Error().stack);\n firstTime = false;\n }\n\n return fn.apply(this, arguments);\n }, fn);\n }\n\n var deprecations = {};\n\n function deprecateSimple(name, msg) {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(name, msg);\n }\n\n if (!deprecations[name]) {\n warn(msg);\n deprecations[name] = true;\n }\n }\n\n hooks.suppressDeprecationWarnings = false;\n hooks.deprecationHandler = null;\n\n function isFunction(input) {\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\n }\n\n function set(config) {\n var prop, i;\n\n for (i in config) {\n prop = config[i];\n\n if (isFunction(prop)) {\n this[i] = prop;\n } else {\n this['_' + i] = prop;\n }\n }\n\n this._config = config; // Lenient ordinal parsing accepts just a number in addition to\n // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n\n this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\\d{1,2}/.source);\n }\n\n function mergeConfigs(parentConfig, childConfig) {\n var res = extend({}, parentConfig),\n prop;\n\n for (prop in childConfig) {\n if (hasOwnProp(childConfig, prop)) {\n if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {\n res[prop] = {};\n extend(res[prop], parentConfig[prop]);\n extend(res[prop], childConfig[prop]);\n } else if (childConfig[prop] != null) {\n res[prop] = childConfig[prop];\n } else {\n delete res[prop];\n }\n }\n }\n\n for (prop in parentConfig) {\n if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) {\n // make sure changes to properties don't modify parent config\n res[prop] = extend({}, res[prop]);\n }\n }\n\n return res;\n }\n\n function Locale(config) {\n if (config != null) {\n this.set(config);\n }\n }\n\n var keys;\n\n if (Object.keys) {\n keys = Object.keys;\n } else {\n keys = function (obj) {\n var i,\n res = [];\n\n for (i in obj) {\n if (hasOwnProp(obj, i)) {\n res.push(i);\n }\n }\n\n return res;\n };\n }\n\n var defaultCalendar = {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L'\n };\n\n function calendar(key, mom, now) {\n var output = this._calendar[key] || this._calendar['sameElse'];\n return isFunction(output) ? output.call(mom, now) : output;\n }\n\n var defaultLongDateFormat = {\n LTS: 'h:mm:ss A',\n LT: 'h:mm A',\n L: 'MM/DD/YYYY',\n LL: 'MMMM D, YYYY',\n LLL: 'MMMM D, YYYY h:mm A',\n LLLL: 'dddd, MMMM D, YYYY h:mm A'\n };\n\n function longDateFormat(key) {\n var format = this._longDateFormat[key],\n formatUpper = this._longDateFormat[key.toUpperCase()];\n\n if (format || !formatUpper) {\n return format;\n }\n\n this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {\n return val.slice(1);\n });\n return this._longDateFormat[key];\n }\n\n var defaultInvalidDate = 'Invalid date';\n\n function invalidDate() {\n return this._invalidDate;\n }\n\n var defaultOrdinal = '%d';\n var defaultDayOfMonthOrdinalParse = /\\d{1,2}/;\n\n function ordinal(number) {\n return this._ordinal.replace('%d', number);\n }\n\n var defaultRelativeTime = {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years'\n };\n\n function relativeTime(number, withoutSuffix, string, isFuture) {\n var output = this._relativeTime[string];\n return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number);\n }\n\n function pastFuture(diff, output) {\n var format = this._relativeTime[diff > 0 ? 'future' : 'past'];\n return isFunction(format) ? format(output) : format.replace(/%s/i, output);\n }\n\n var aliases = {};\n\n function addUnitAlias(unit, shorthand) {\n var lowerCase = unit.toLowerCase();\n aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;\n }\n\n function normalizeUnits(units) {\n return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;\n }\n\n function normalizeObjectUnits(inputObject) {\n var normalizedInput = {},\n normalizedProp,\n prop;\n\n for (prop in inputObject) {\n if (hasOwnProp(inputObject, prop)) {\n normalizedProp = normalizeUnits(prop);\n\n if (normalizedProp) {\n normalizedInput[normalizedProp] = inputObject[prop];\n }\n }\n }\n\n return normalizedInput;\n }\n\n var priorities = {};\n\n function addUnitPriority(unit, priority) {\n priorities[unit] = priority;\n }\n\n function getPrioritizedUnits(unitsObj) {\n var units = [];\n\n for (var u in unitsObj) {\n units.push({\n unit: u,\n priority: priorities[u]\n });\n }\n\n units.sort(function (a, b) {\n return a.priority - b.priority;\n });\n return units;\n }\n\n function zeroFill(number, targetLength, forceSign) {\n var absNumber = '' + Math.abs(number),\n zerosToFill = targetLength - absNumber.length,\n sign = number >= 0;\n return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;\n }\n\n var formattingTokens = /(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g;\n var localFormattingTokens = /(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g;\n var formatFunctions = {};\n var formatTokenFunctions = {}; // token: 'M'\n // padded: ['MM', 2]\n // ordinal: 'Mo'\n // callback: function () { this.month() + 1 }\n\n function addFormatToken(token, padded, ordinal, callback) {\n var func = callback;\n\n if (typeof callback === 'string') {\n func = function () {\n return this[callback]();\n };\n }\n\n if (token) {\n formatTokenFunctions[token] = func;\n }\n\n if (padded) {\n formatTokenFunctions[padded[0]] = function () {\n return zeroFill(func.apply(this, arguments), padded[1], padded[2]);\n };\n }\n\n if (ordinal) {\n formatTokenFunctions[ordinal] = function () {\n return this.localeData().ordinal(func.apply(this, arguments), token);\n };\n }\n }\n\n function removeFormattingTokens(input) {\n if (input.match(/\\[[\\s\\S]/)) {\n return input.replace(/^\\[|\\]$/g, '');\n }\n\n return input.replace(/\\\\/g, '');\n }\n\n function makeFormatFunction(format) {\n var array = format.match(formattingTokens),\n i,\n length;\n\n for (i = 0, length = array.length; i < length; i++) {\n if (formatTokenFunctions[array[i]]) {\n array[i] = formatTokenFunctions[array[i]];\n } else {\n array[i] = removeFormattingTokens(array[i]);\n }\n }\n\n return function (mom) {\n var output = '',\n i;\n\n for (i = 0; i < length; i++) {\n output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];\n }\n\n return output;\n };\n } // format date using native date object\n\n\n function formatMoment(m, format) {\n if (!m.isValid()) {\n return m.localeData().invalidDate();\n }\n\n format = expandFormat(format, m.localeData());\n formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);\n return formatFunctions[format](m);\n }\n\n function expandFormat(format, locale) {\n var i = 5;\n\n function replaceLongDateFormatTokens(input) {\n return locale.longDateFormat(input) || input;\n }\n\n localFormattingTokens.lastIndex = 0;\n\n while (i >= 0 && localFormattingTokens.test(format)) {\n format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);\n localFormattingTokens.lastIndex = 0;\n i -= 1;\n }\n\n return format;\n }\n\n var match1 = /\\d/; // 0 - 9\n\n var match2 = /\\d\\d/; // 00 - 99\n\n var match3 = /\\d{3}/; // 000 - 999\n\n var match4 = /\\d{4}/; // 0000 - 9999\n\n var match6 = /[+-]?\\d{6}/; // -999999 - 999999\n\n var match1to2 = /\\d\\d?/; // 0 - 99\n\n var match3to4 = /\\d\\d\\d\\d?/; // 999 - 9999\n\n var match5to6 = /\\d\\d\\d\\d\\d\\d?/; // 99999 - 999999\n\n var match1to3 = /\\d{1,3}/; // 0 - 999\n\n var match1to4 = /\\d{1,4}/; // 0 - 9999\n\n var match1to6 = /[+-]?\\d{1,6}/; // -999999 - 999999\n\n var matchUnsigned = /\\d+/; // 0 - inf\n\n var matchSigned = /[+-]?\\d+/; // -inf - inf\n\n var matchOffset = /Z|[+-]\\d\\d:?\\d\\d/gi; // +00:00 -00:00 +0000 -0000 or Z\n\n var matchShortOffset = /Z|[+-]\\d\\d(?::?\\d\\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z\n\n var matchTimestamp = /[+-]?\\d+(\\.\\d{1,3})?/; // 123456789 123456789.123\n // any word (or two) characters or numbers including two/three word month in arabic.\n // includes scottish gaelic two word and hyphenated months\n\n var matchWord = /[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i;\n var regexes = {};\n\n function addRegexToken(token, regex, strictRegex) {\n regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {\n return isStrict && strictRegex ? strictRegex : regex;\n };\n }\n\n function getParseRegexForToken(token, config) {\n if (!hasOwnProp(regexes, token)) {\n return new RegExp(unescapeFormat(token));\n }\n\n return regexes[token](config._strict, config._locale);\n } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript\n\n\n function unescapeFormat(s) {\n return regexEscape(s.replace('\\\\', '').replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g, function (matched, p1, p2, p3, p4) {\n return p1 || p2 || p3 || p4;\n }));\n }\n\n function regexEscape(s) {\n return s.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n }\n\n var tokens = {};\n\n function addParseToken(token, callback) {\n var i,\n func = callback;\n\n if (typeof token === 'string') {\n token = [token];\n }\n\n if (isNumber(callback)) {\n func = function (input, array) {\n array[callback] = toInt(input);\n };\n }\n\n for (i = 0; i < token.length; i++) {\n tokens[token[i]] = func;\n }\n }\n\n function addWeekParseToken(token, callback) {\n addParseToken(token, function (input, array, config, token) {\n config._w = config._w || {};\n callback(input, config._w, config, token);\n });\n }\n\n function addTimeToArrayFromToken(token, input, config) {\n if (input != null && hasOwnProp(tokens, token)) {\n tokens[token](input, config._a, config, token);\n }\n }\n\n var YEAR = 0;\n var MONTH = 1;\n var DATE = 2;\n var HOUR = 3;\n var MINUTE = 4;\n var SECOND = 5;\n var MILLISECOND = 6;\n var WEEK = 7;\n var WEEKDAY = 8; // FORMATTING\n\n addFormatToken('Y', 0, 0, function () {\n var y = this.year();\n return y <= 9999 ? '' + y : '+' + y;\n });\n addFormatToken(0, ['YY', 2], 0, function () {\n return this.year() % 100;\n });\n addFormatToken(0, ['YYYY', 4], 0, 'year');\n addFormatToken(0, ['YYYYY', 5], 0, 'year');\n addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES\n\n addUnitAlias('year', 'y'); // PRIORITIES\n\n addUnitPriority('year', 1); // PARSING\n\n addRegexToken('Y', matchSigned);\n addRegexToken('YY', match1to2, match2);\n addRegexToken('YYYY', match1to4, match4);\n addRegexToken('YYYYY', match1to6, match6);\n addRegexToken('YYYYYY', match1to6, match6);\n addParseToken(['YYYYY', 'YYYYYY'], YEAR);\n addParseToken('YYYY', function (input, array) {\n array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);\n });\n addParseToken('YY', function (input, array) {\n array[YEAR] = hooks.parseTwoDigitYear(input);\n });\n addParseToken('Y', function (input, array) {\n array[YEAR] = parseInt(input, 10);\n }); // HELPERS\n\n function daysInYear(year) {\n return isLeapYear(year) ? 366 : 365;\n }\n\n function isLeapYear(year) {\n return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;\n } // HOOKS\n\n\n hooks.parseTwoDigitYear = function (input) {\n return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);\n }; // MOMENTS\n\n\n var getSetYear = makeGetSet('FullYear', true);\n\n function getIsLeapYear() {\n return isLeapYear(this.year());\n }\n\n function makeGetSet(unit, keepTime) {\n return function (value) {\n if (value != null) {\n set$1(this, unit, value);\n hooks.updateOffset(this, keepTime);\n return this;\n } else {\n return get(this, unit);\n }\n };\n }\n\n function get(mom, unit) {\n return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;\n }\n\n function set$1(mom, unit, value) {\n if (mom.isValid() && !isNaN(value)) {\n if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));\n } else {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);\n }\n }\n } // MOMENTS\n\n\n function stringGet(units) {\n units = normalizeUnits(units);\n\n if (isFunction(this[units])) {\n return this[units]();\n }\n\n return this;\n }\n\n function stringSet(units, value) {\n if (typeof units === 'object') {\n units = normalizeObjectUnits(units);\n var prioritized = getPrioritizedUnits(units);\n\n for (var i = 0; i < prioritized.length; i++) {\n this[prioritized[i].unit](units[prioritized[i].unit]);\n }\n } else {\n units = normalizeUnits(units);\n\n if (isFunction(this[units])) {\n return this[units](value);\n }\n }\n\n return this;\n }\n\n function mod(n, x) {\n return (n % x + x) % x;\n }\n\n var indexOf;\n\n if (Array.prototype.indexOf) {\n indexOf = Array.prototype.indexOf;\n } else {\n indexOf = function (o) {\n // I know\n var i;\n\n for (i = 0; i < this.length; ++i) {\n if (this[i] === o) {\n return i;\n }\n }\n\n return -1;\n };\n }\n\n function daysInMonth(year, month) {\n if (isNaN(year) || isNaN(month)) {\n return NaN;\n }\n\n var modMonth = mod(month, 12);\n year += (month - modMonth) / 12;\n return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2;\n } // FORMATTING\n\n\n addFormatToken('M', ['MM', 2], 'Mo', function () {\n return this.month() + 1;\n });\n addFormatToken('MMM', 0, 0, function (format) {\n return this.localeData().monthsShort(this, format);\n });\n addFormatToken('MMMM', 0, 0, function (format) {\n return this.localeData().months(this, format);\n }); // ALIASES\n\n addUnitAlias('month', 'M'); // PRIORITY\n\n addUnitPriority('month', 8); // PARSING\n\n addRegexToken('M', match1to2);\n addRegexToken('MM', match1to2, match2);\n addRegexToken('MMM', function (isStrict, locale) {\n return locale.monthsShortRegex(isStrict);\n });\n addRegexToken('MMMM', function (isStrict, locale) {\n return locale.monthsRegex(isStrict);\n });\n addParseToken(['M', 'MM'], function (input, array) {\n array[MONTH] = toInt(input) - 1;\n });\n addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {\n var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid.\n\n\n if (month != null) {\n array[MONTH] = month;\n } else {\n getParsingFlags(config).invalidMonth = input;\n }\n }); // LOCALES\n\n var MONTHS_IN_FORMAT = /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?/;\n var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');\n\n function localeMonths(m, format) {\n if (!m) {\n return isArray(this._months) ? this._months : this._months['standalone'];\n }\n\n return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');\n\n function localeMonthsShort(m, format) {\n if (!m) {\n return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone'];\n }\n\n return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n function handleStrictParse(monthName, format, strict) {\n var i,\n ii,\n mom,\n llc = monthName.toLocaleLowerCase();\n\n if (!this._monthsParse) {\n // this is not used\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n\n for (i = 0; i < 12; ++i) {\n mom = createUTC([2000, i]);\n this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();\n this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeMonthsParse(monthName, format, strict) {\n var i, mom, regex;\n\n if (this._monthsParseExact) {\n return handleStrictParse.call(this, monthName, format, strict);\n }\n\n if (!this._monthsParse) {\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n } // TODO: add sorting\n // Sorting makes sure if one month (or abbr) is a prefix of another\n // see sorting in computeMonthsParse\n\n\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n\n if (strict && !this._longMonthsParse[i]) {\n this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');\n this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');\n }\n\n if (!strict && !this._monthsParse[i]) {\n regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');\n this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');\n } // test the regex\n\n\n if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {\n return i;\n } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {\n return i;\n } else if (!strict && this._monthsParse[i].test(monthName)) {\n return i;\n }\n }\n } // MOMENTS\n\n\n function setMonth(mom, value) {\n var dayOfMonth;\n\n if (!mom.isValid()) {\n // No op\n return mom;\n }\n\n if (typeof value === 'string') {\n if (/^\\d+$/.test(value)) {\n value = toInt(value);\n } else {\n value = mom.localeData().monthsParse(value); // TODO: Another silent failure?\n\n if (!isNumber(value)) {\n return mom;\n }\n }\n }\n\n dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));\n\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);\n\n return mom;\n }\n\n function getSetMonth(value) {\n if (value != null) {\n setMonth(this, value);\n hooks.updateOffset(this, true);\n return this;\n } else {\n return get(this, 'Month');\n }\n }\n\n function getDaysInMonth() {\n return daysInMonth(this.year(), this.month());\n }\n\n var defaultMonthsShortRegex = matchWord;\n\n function monthsShortRegex(isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n\n if (isStrict) {\n return this._monthsShortStrictRegex;\n } else {\n return this._monthsShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsShortRegex')) {\n this._monthsShortRegex = defaultMonthsShortRegex;\n }\n\n return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex;\n }\n }\n\n var defaultMonthsRegex = matchWord;\n\n function monthsRegex(isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n\n if (isStrict) {\n return this._monthsStrictRegex;\n } else {\n return this._monthsRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsRegex')) {\n this._monthsRegex = defaultMonthsRegex;\n }\n\n return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex;\n }\n }\n\n function computeMonthsParse() {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var shortPieces = [],\n longPieces = [],\n mixedPieces = [],\n i,\n mom;\n\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n shortPieces.push(this.monthsShort(mom, ''));\n longPieces.push(this.months(mom, ''));\n mixedPieces.push(this.months(mom, ''));\n mixedPieces.push(this.monthsShort(mom, ''));\n } // Sorting makes sure if one month (or abbr) is a prefix of another it\n // will match the longer piece.\n\n\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n\n for (i = 0; i < 12; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n }\n\n for (i = 0; i < 24; i++) {\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._monthsShortRegex = this._monthsRegex;\n this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n }\n\n function createDate(y, m, d, h, M, s, ms) {\n // can't just apply() to create a date:\n // https://stackoverflow.com/q/181348\n var date; // the date constructor remaps years 0-99 to 1900-1999\n\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n date = new Date(y + 400, m, d, h, M, s, ms);\n\n if (isFinite(date.getFullYear())) {\n date.setFullYear(y);\n }\n } else {\n date = new Date(y, m, d, h, M, s, ms);\n }\n\n return date;\n }\n\n function createUTCDate(y) {\n var date; // the Date.UTC function remaps years 0-99 to 1900-1999\n\n if (y < 100 && y >= 0) {\n var args = Array.prototype.slice.call(arguments); // preserve leap years using a full 400 year cycle, then reset\n\n args[0] = y + 400;\n date = new Date(Date.UTC.apply(null, args));\n\n if (isFinite(date.getUTCFullYear())) {\n date.setUTCFullYear(y);\n }\n } else {\n date = new Date(Date.UTC.apply(null, arguments));\n }\n\n return date;\n } // start-of-first-week - start-of-year\n\n\n function firstWeekOffset(year, dow, doy) {\n var // first-week day -- which january is always in the first week (4 for iso, 1 for other)\n fwd = 7 + dow - doy,\n // first-week day local weekday -- which local weekday is fwd\n fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;\n return -fwdlw + fwd - 1;\n } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday\n\n\n function dayOfYearFromWeeks(year, week, weekday, dow, doy) {\n var localWeekday = (7 + weekday - dow) % 7,\n weekOffset = firstWeekOffset(year, dow, doy),\n dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,\n resYear,\n resDayOfYear;\n\n if (dayOfYear <= 0) {\n resYear = year - 1;\n resDayOfYear = daysInYear(resYear) + dayOfYear;\n } else if (dayOfYear > daysInYear(year)) {\n resYear = year + 1;\n resDayOfYear = dayOfYear - daysInYear(year);\n } else {\n resYear = year;\n resDayOfYear = dayOfYear;\n }\n\n return {\n year: resYear,\n dayOfYear: resDayOfYear\n };\n }\n\n function weekOfYear(mom, dow, doy) {\n var weekOffset = firstWeekOffset(mom.year(), dow, doy),\n week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,\n resWeek,\n resYear;\n\n if (week < 1) {\n resYear = mom.year() - 1;\n resWeek = week + weeksInYear(resYear, dow, doy);\n } else if (week > weeksInYear(mom.year(), dow, doy)) {\n resWeek = week - weeksInYear(mom.year(), dow, doy);\n resYear = mom.year() + 1;\n } else {\n resYear = mom.year();\n resWeek = week;\n }\n\n return {\n week: resWeek,\n year: resYear\n };\n }\n\n function weeksInYear(year, dow, doy) {\n var weekOffset = firstWeekOffset(year, dow, doy),\n weekOffsetNext = firstWeekOffset(year + 1, dow, doy);\n return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;\n } // FORMATTING\n\n\n addFormatToken('w', ['ww', 2], 'wo', 'week');\n addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES\n\n addUnitAlias('week', 'w');\n addUnitAlias('isoWeek', 'W'); // PRIORITIES\n\n addUnitPriority('week', 5);\n addUnitPriority('isoWeek', 5); // PARSING\n\n addRegexToken('w', match1to2);\n addRegexToken('ww', match1to2, match2);\n addRegexToken('W', match1to2);\n addRegexToken('WW', match1to2, match2);\n addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {\n week[token.substr(0, 1)] = toInt(input);\n }); // HELPERS\n // LOCALES\n\n function localeWeek(mom) {\n return weekOfYear(mom, this._week.dow, this._week.doy).week;\n }\n\n var defaultLocaleWeek = {\n dow: 0,\n // Sunday is the first day of the week.\n doy: 6 // The week that contains Jan 6th is the first week of the year.\n\n };\n\n function localeFirstDayOfWeek() {\n return this._week.dow;\n }\n\n function localeFirstDayOfYear() {\n return this._week.doy;\n } // MOMENTS\n\n\n function getSetWeek(input) {\n var week = this.localeData().week(this);\n return input == null ? week : this.add((input - week) * 7, 'd');\n }\n\n function getSetISOWeek(input) {\n var week = weekOfYear(this, 1, 4).week;\n return input == null ? week : this.add((input - week) * 7, 'd');\n } // FORMATTING\n\n\n addFormatToken('d', 0, 'do', 'day');\n addFormatToken('dd', 0, 0, function (format) {\n return this.localeData().weekdaysMin(this, format);\n });\n addFormatToken('ddd', 0, 0, function (format) {\n return this.localeData().weekdaysShort(this, format);\n });\n addFormatToken('dddd', 0, 0, function (format) {\n return this.localeData().weekdays(this, format);\n });\n addFormatToken('e', 0, 0, 'weekday');\n addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES\n\n addUnitAlias('day', 'd');\n addUnitAlias('weekday', 'e');\n addUnitAlias('isoWeekday', 'E'); // PRIORITY\n\n addUnitPriority('day', 11);\n addUnitPriority('weekday', 11);\n addUnitPriority('isoWeekday', 11); // PARSING\n\n addRegexToken('d', match1to2);\n addRegexToken('e', match1to2);\n addRegexToken('E', match1to2);\n addRegexToken('dd', function (isStrict, locale) {\n return locale.weekdaysMinRegex(isStrict);\n });\n addRegexToken('ddd', function (isStrict, locale) {\n return locale.weekdaysShortRegex(isStrict);\n });\n addRegexToken('dddd', function (isStrict, locale) {\n return locale.weekdaysRegex(isStrict);\n });\n addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {\n var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid\n\n\n if (weekday != null) {\n week.d = weekday;\n } else {\n getParsingFlags(config).invalidWeekday = input;\n }\n });\n addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {\n week[token] = toInt(input);\n }); // HELPERS\n\n function parseWeekday(input, locale) {\n if (typeof input !== 'string') {\n return input;\n }\n\n if (!isNaN(input)) {\n return parseInt(input, 10);\n }\n\n input = locale.weekdaysParse(input);\n\n if (typeof input === 'number') {\n return input;\n }\n\n return null;\n }\n\n function parseIsoWeekday(input, locale) {\n if (typeof input === 'string') {\n return locale.weekdaysParse(input) % 7 || 7;\n }\n\n return isNaN(input) ? null : input;\n } // LOCALES\n\n\n function shiftWeekdays(ws, n) {\n return ws.slice(n, 7).concat(ws.slice(0, n));\n }\n\n var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');\n\n function localeWeekdays(m, format) {\n var weekdays = isArray(this._weekdays) ? this._weekdays : this._weekdays[m && m !== true && this._weekdays.isFormat.test(format) ? 'format' : 'standalone'];\n return m === true ? shiftWeekdays(weekdays, this._week.dow) : m ? weekdays[m.day()] : weekdays;\n }\n\n var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');\n\n function localeWeekdaysShort(m) {\n return m === true ? shiftWeekdays(this._weekdaysShort, this._week.dow) : m ? this._weekdaysShort[m.day()] : this._weekdaysShort;\n }\n\n var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');\n\n function localeWeekdaysMin(m) {\n return m === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m ? this._weekdaysMin[m.day()] : this._weekdaysMin;\n }\n\n function handleStrictParse$1(weekdayName, format, strict) {\n var i,\n ii,\n mom,\n llc = weekdayName.toLocaleLowerCase();\n\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._minWeekdaysParse = [];\n\n for (i = 0; i < 7; ++i) {\n mom = createUTC([2000, 1]).day(i);\n this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();\n this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();\n this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeWeekdaysParse(weekdayName, format, strict) {\n var i, mom, regex;\n\n if (this._weekdaysParseExact) {\n return handleStrictParse$1.call(this, weekdayName, format, strict);\n }\n\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._minWeekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._fullWeekdaysParse = [];\n }\n\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, 1]).day(i);\n\n if (strict && !this._fullWeekdaysParse[i]) {\n this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\\\.?') + '$', 'i');\n }\n\n if (!this._weekdaysParse[i]) {\n regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');\n this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');\n } // test the regex\n\n\n if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {\n return i;\n }\n }\n } // MOMENTS\n\n\n function getSetDayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();\n\n if (input != null) {\n input = parseWeekday(input, this.localeData());\n return this.add(input - day, 'd');\n } else {\n return day;\n }\n }\n\n function getSetLocaleDayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;\n return input == null ? weekday : this.add(input - weekday, 'd');\n }\n\n function getSetISODayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n } // behaves the same as moment#day except\n // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)\n // as a setter, sunday should belong to the previous week.\n\n\n if (input != null) {\n var weekday = parseIsoWeekday(input, this.localeData());\n return this.day(this.day() % 7 ? weekday : weekday - 7);\n } else {\n return this.day() || 7;\n }\n }\n\n var defaultWeekdaysRegex = matchWord;\n\n function weekdaysRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysStrictRegex;\n } else {\n return this._weekdaysRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this._weekdaysRegex = defaultWeekdaysRegex;\n }\n\n return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex;\n }\n }\n\n var defaultWeekdaysShortRegex = matchWord;\n\n function weekdaysShortRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysShortStrictRegex;\n } else {\n return this._weekdaysShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysShortRegex')) {\n this._weekdaysShortRegex = defaultWeekdaysShortRegex;\n }\n\n return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex;\n }\n }\n\n var defaultWeekdaysMinRegex = matchWord;\n\n function weekdaysMinRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysMinStrictRegex;\n } else {\n return this._weekdaysMinRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysMinRegex')) {\n this._weekdaysMinRegex = defaultWeekdaysMinRegex;\n }\n\n return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex;\n }\n }\n\n function computeWeekdaysParse() {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var minPieces = [],\n shortPieces = [],\n longPieces = [],\n mixedPieces = [],\n i,\n mom,\n minp,\n shortp,\n longp;\n\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, 1]).day(i);\n minp = this.weekdaysMin(mom, '');\n shortp = this.weekdaysShort(mom, '');\n longp = this.weekdays(mom, '');\n minPieces.push(minp);\n shortPieces.push(shortp);\n longPieces.push(longp);\n mixedPieces.push(minp);\n mixedPieces.push(shortp);\n mixedPieces.push(longp);\n } // Sorting makes sure if one weekday (or abbr) is a prefix of another it\n // will match the longer piece.\n\n\n minPieces.sort(cmpLenRev);\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n\n for (i = 0; i < 7; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._weekdaysShortRegex = this._weekdaysRegex;\n this._weekdaysMinRegex = this._weekdaysRegex;\n this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');\n } // FORMATTING\n\n\n function hFormat() {\n return this.hours() % 12 || 12;\n }\n\n function kFormat() {\n return this.hours() || 24;\n }\n\n addFormatToken('H', ['HH', 2], 0, 'hour');\n addFormatToken('h', ['hh', 2], 0, hFormat);\n addFormatToken('k', ['kk', 2], 0, kFormat);\n addFormatToken('hmm', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);\n });\n addFormatToken('hmmss', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\n });\n addFormatToken('Hmm', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2);\n });\n addFormatToken('Hmmss', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\n });\n\n function meridiem(token, lowercase) {\n addFormatToken(token, 0, 0, function () {\n return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);\n });\n }\n\n meridiem('a', true);\n meridiem('A', false); // ALIASES\n\n addUnitAlias('hour', 'h'); // PRIORITY\n\n addUnitPriority('hour', 13); // PARSING\n\n function matchMeridiem(isStrict, locale) {\n return locale._meridiemParse;\n }\n\n addRegexToken('a', matchMeridiem);\n addRegexToken('A', matchMeridiem);\n addRegexToken('H', match1to2);\n addRegexToken('h', match1to2);\n addRegexToken('k', match1to2);\n addRegexToken('HH', match1to2, match2);\n addRegexToken('hh', match1to2, match2);\n addRegexToken('kk', match1to2, match2);\n addRegexToken('hmm', match3to4);\n addRegexToken('hmmss', match5to6);\n addRegexToken('Hmm', match3to4);\n addRegexToken('Hmmss', match5to6);\n addParseToken(['H', 'HH'], HOUR);\n addParseToken(['k', 'kk'], function (input, array, config) {\n var kInput = toInt(input);\n array[HOUR] = kInput === 24 ? 0 : kInput;\n });\n addParseToken(['a', 'A'], function (input, array, config) {\n config._isPm = config._locale.isPM(input);\n config._meridiem = input;\n });\n addParseToken(['h', 'hh'], function (input, array, config) {\n array[HOUR] = toInt(input);\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('Hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n });\n addParseToken('Hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n }); // LOCALES\n\n function localeIsPM(input) {\n // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays\n // Using charAt should be more compatible.\n return (input + '').toLowerCase().charAt(0) === 'p';\n }\n\n var defaultLocaleMeridiemParse = /[ap]\\.?m?\\.?/i;\n\n function localeMeridiem(hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'pm' : 'PM';\n } else {\n return isLower ? 'am' : 'AM';\n }\n } // MOMENTS\n // Setting the hour should keep the time, because the user explicitly\n // specified which hour they want. So trying to maintain the same hour (in\n // a new timezone) makes sense. Adding/subtracting hours does not follow\n // this rule.\n\n\n var getSetHour = makeGetSet('Hours', true);\n var baseConfig = {\n calendar: defaultCalendar,\n longDateFormat: defaultLongDateFormat,\n invalidDate: defaultInvalidDate,\n ordinal: defaultOrdinal,\n dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,\n relativeTime: defaultRelativeTime,\n months: defaultLocaleMonths,\n monthsShort: defaultLocaleMonthsShort,\n week: defaultLocaleWeek,\n weekdays: defaultLocaleWeekdays,\n weekdaysMin: defaultLocaleWeekdaysMin,\n weekdaysShort: defaultLocaleWeekdaysShort,\n meridiemParse: defaultLocaleMeridiemParse\n }; // internal storage for locale config files\n\n var locales = {};\n var localeFamilies = {};\n var globalLocale;\n\n function normalizeLocale(key) {\n return key ? key.toLowerCase().replace('_', '-') : key;\n } // pick the locale from the array\n // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each\n // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root\n\n\n function chooseLocale(names) {\n var i = 0,\n j,\n next,\n locale,\n split;\n\n while (i < names.length) {\n split = normalizeLocale(names[i]).split('-');\n j = split.length;\n next = normalizeLocale(names[i + 1]);\n next = next ? next.split('-') : null;\n\n while (j > 0) {\n locale = loadLocale(split.slice(0, j).join('-'));\n\n if (locale) {\n return locale;\n }\n\n if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {\n //the next array item is better than a shallower substring of this one\n break;\n }\n\n j--;\n }\n\n i++;\n }\n\n return globalLocale;\n }\n\n function loadLocale(name) {\n var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node\n\n if (!locales[name] && 'object' !== 'undefined' && module && module.exports) {\n try {\n oldLocale = globalLocale._abbr;\n var aliasedRequire = commonjsRequire;\n aliasedRequire('./locale/' + name);\n getSetGlobalLocale(oldLocale);\n } catch (e) {}\n }\n\n return locales[name];\n } // This function will load locale and then set the global locale. If\n // no arguments are passed in, it will simply return the current global\n // locale key.\n\n\n function getSetGlobalLocale(key, values) {\n var data;\n\n if (key) {\n if (isUndefined(values)) {\n data = getLocale(key);\n } else {\n data = defineLocale(key, values);\n }\n\n if (data) {\n // moment.duration._locale = moment._locale = data;\n globalLocale = data;\n } else {\n if (typeof console !== 'undefined' && console.warn) {\n //warn user if arguments are passed but the locale could not be set\n console.warn('Locale ' + key + ' not found. Did you forget to load it?');\n }\n }\n }\n\n return globalLocale._abbr;\n }\n\n function defineLocale(name, config) {\n if (config !== null) {\n var locale,\n parentConfig = baseConfig;\n config.abbr = name;\n\n if (locales[name] != null) {\n deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');\n parentConfig = locales[name]._config;\n } else if (config.parentLocale != null) {\n if (locales[config.parentLocale] != null) {\n parentConfig = locales[config.parentLocale]._config;\n } else {\n locale = loadLocale(config.parentLocale);\n\n if (locale != null) {\n parentConfig = locale._config;\n } else {\n if (!localeFamilies[config.parentLocale]) {\n localeFamilies[config.parentLocale] = [];\n }\n\n localeFamilies[config.parentLocale].push({\n name: name,\n config: config\n });\n return null;\n }\n }\n }\n\n locales[name] = new Locale(mergeConfigs(parentConfig, config));\n\n if (localeFamilies[name]) {\n localeFamilies[name].forEach(function (x) {\n defineLocale(x.name, x.config);\n });\n } // backwards compat for now: also set the locale\n // make sure we set the locale AFTER all child locales have been\n // created, so we won't end up with the child locale set.\n\n\n getSetGlobalLocale(name);\n return locales[name];\n } else {\n // useful for testing\n delete locales[name];\n return null;\n }\n }\n\n function updateLocale(name, config) {\n if (config != null) {\n var locale,\n tmpLocale,\n parentConfig = baseConfig; // MERGE\n\n tmpLocale = loadLocale(name);\n\n if (tmpLocale != null) {\n parentConfig = tmpLocale._config;\n }\n\n config = mergeConfigs(parentConfig, config);\n locale = new Locale(config);\n locale.parentLocale = locales[name];\n locales[name] = locale; // backwards compat for now: also set the locale\n\n getSetGlobalLocale(name);\n } else {\n // pass null for config to unupdate, useful for tests\n if (locales[name] != null) {\n if (locales[name].parentLocale != null) {\n locales[name] = locales[name].parentLocale;\n } else if (locales[name] != null) {\n delete locales[name];\n }\n }\n }\n\n return locales[name];\n } // returns locale data\n\n\n function getLocale(key) {\n var locale;\n\n if (key && key._locale && key._locale._abbr) {\n key = key._locale._abbr;\n }\n\n if (!key) {\n return globalLocale;\n }\n\n if (!isArray(key)) {\n //short-circuit everything else\n locale = loadLocale(key);\n\n if (locale) {\n return locale;\n }\n\n key = [key];\n }\n\n return chooseLocale(key);\n }\n\n function listLocales() {\n return keys(locales);\n }\n\n function checkOverflow(m) {\n var overflow;\n var a = m._a;\n\n if (a && getParsingFlags(m).overflow === -2) {\n overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1;\n\n if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {\n overflow = DATE;\n }\n\n if (getParsingFlags(m)._overflowWeeks && overflow === -1) {\n overflow = WEEK;\n }\n\n if (getParsingFlags(m)._overflowWeekday && overflow === -1) {\n overflow = WEEKDAY;\n }\n\n getParsingFlags(m).overflow = overflow;\n }\n\n return m;\n } // Pick the first defined of two or three arguments.\n\n\n function defaults(a, b, c) {\n if (a != null) {\n return a;\n }\n\n if (b != null) {\n return b;\n }\n\n return c;\n }\n\n function currentDateArray(config) {\n // hooks is actually the exported moment object\n var nowValue = new Date(hooks.now());\n\n if (config._useUTC) {\n return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];\n }\n\n return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];\n } // convert an array to a date.\n // the array should mirror the parameters below\n // note: all values past the year are optional and will default to the lowest possible value.\n // [year, month, day , hour, minute, second, millisecond]\n\n\n function configFromArray(config) {\n var i,\n date,\n input = [],\n currentDate,\n expectedWeekday,\n yearToUse;\n\n if (config._d) {\n return;\n }\n\n currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays\n\n if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {\n dayOfYearFromWeekInfo(config);\n } //if the day of the year is set, figure out what it is\n\n\n if (config._dayOfYear != null) {\n yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);\n\n if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {\n getParsingFlags(config)._overflowDayOfYear = true;\n }\n\n date = createUTCDate(yearToUse, 0, config._dayOfYear);\n config._a[MONTH] = date.getUTCMonth();\n config._a[DATE] = date.getUTCDate();\n } // Default to current date.\n // * if no year, month, day of month are given, default to today\n // * if day of month is given, default month and year\n // * if month is given, default only year\n // * if year is given, don't default anything\n\n\n for (i = 0; i < 3 && config._a[i] == null; ++i) {\n config._a[i] = input[i] = currentDate[i];\n } // Zero out whatever was not defaulted, including time\n\n\n for (; i < 7; i++) {\n config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i];\n } // Check for 24:00:00.000\n\n\n if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) {\n config._nextDay = true;\n config._a[HOUR] = 0;\n }\n\n config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);\n expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed\n // with parseZone.\n\n if (config._tzm != null) {\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n }\n\n if (config._nextDay) {\n config._a[HOUR] = 24;\n } // check for mismatching day of week\n\n\n if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {\n getParsingFlags(config).weekdayMismatch = true;\n }\n }\n\n function dayOfYearFromWeekInfo(config) {\n var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;\n w = config._w;\n\n if (w.GG != null || w.W != null || w.E != null) {\n dow = 1;\n doy = 4; // TODO: We need to take the current isoWeekYear, but that depends on\n // how we interpret now (local, utc, fixed offset). So create\n // a now version of current config (take local/utc/offset flags, and\n // create now).\n\n weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);\n week = defaults(w.W, 1);\n weekday = defaults(w.E, 1);\n\n if (weekday < 1 || weekday > 7) {\n weekdayOverflow = true;\n }\n } else {\n dow = config._locale._week.dow;\n doy = config._locale._week.doy;\n var curWeek = weekOfYear(createLocal(), dow, doy);\n weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week.\n\n week = defaults(w.w, curWeek.week);\n\n if (w.d != null) {\n // weekday -- low day numbers are considered next week\n weekday = w.d;\n\n if (weekday < 0 || weekday > 6) {\n weekdayOverflow = true;\n }\n } else if (w.e != null) {\n // local weekday -- counting starts from beginning of week\n weekday = w.e + dow;\n\n if (w.e < 0 || w.e > 6) {\n weekdayOverflow = true;\n }\n } else {\n // default to beginning of week\n weekday = dow;\n }\n }\n\n if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {\n getParsingFlags(config)._overflowWeeks = true;\n } else if (weekdayOverflow != null) {\n getParsingFlags(config)._overflowWeekday = true;\n } else {\n temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);\n config._a[YEAR] = temp.year;\n config._dayOfYear = temp.dayOfYear;\n }\n } // iso 8601 regex\n // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)\n\n\n var extendedIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n var basicIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n var tzRegex = /Z|[+-]\\d\\d(?::?\\d\\d)?/;\n var isoDates = [['YYYYYY-MM-DD', /[+-]\\d{6}-\\d\\d-\\d\\d/], ['YYYY-MM-DD', /\\d{4}-\\d\\d-\\d\\d/], ['GGGG-[W]WW-E', /\\d{4}-W\\d\\d-\\d/], ['GGGG-[W]WW', /\\d{4}-W\\d\\d/, false], ['YYYY-DDD', /\\d{4}-\\d{3}/], ['YYYY-MM', /\\d{4}-\\d\\d/, false], ['YYYYYYMMDD', /[+-]\\d{10}/], ['YYYYMMDD', /\\d{8}/], // YYYYMM is NOT allowed by the standard\n ['GGGG[W]WWE', /\\d{4}W\\d{3}/], ['GGGG[W]WW', /\\d{4}W\\d{2}/, false], ['YYYYDDD', /\\d{7}/]]; // iso time formats and regexes\n\n var isoTimes = [['HH:mm:ss.SSSS', /\\d\\d:\\d\\d:\\d\\d\\.\\d+/], ['HH:mm:ss,SSSS', /\\d\\d:\\d\\d:\\d\\d,\\d+/], ['HH:mm:ss', /\\d\\d:\\d\\d:\\d\\d/], ['HH:mm', /\\d\\d:\\d\\d/], ['HHmmss.SSSS', /\\d\\d\\d\\d\\d\\d\\.\\d+/], ['HHmmss,SSSS', /\\d\\d\\d\\d\\d\\d,\\d+/], ['HHmmss', /\\d\\d\\d\\d\\d\\d/], ['HHmm', /\\d\\d\\d\\d/], ['HH', /\\d\\d/]];\n var aspNetJsonRegex = /^\\/?Date\\((\\-?\\d+)/i; // date from iso format\n\n function configFromISO(config) {\n var i,\n l,\n string = config._i,\n match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),\n allowTime,\n dateFormat,\n timeFormat,\n tzFormat;\n\n if (match) {\n getParsingFlags(config).iso = true;\n\n for (i = 0, l = isoDates.length; i < l; i++) {\n if (isoDates[i][1].exec(match[1])) {\n dateFormat = isoDates[i][0];\n allowTime = isoDates[i][2] !== false;\n break;\n }\n }\n\n if (dateFormat == null) {\n config._isValid = false;\n return;\n }\n\n if (match[3]) {\n for (i = 0, l = isoTimes.length; i < l; i++) {\n if (isoTimes[i][1].exec(match[3])) {\n // match[2] should be 'T' or space\n timeFormat = (match[2] || ' ') + isoTimes[i][0];\n break;\n }\n }\n\n if (timeFormat == null) {\n config._isValid = false;\n return;\n }\n }\n\n if (!allowTime && timeFormat != null) {\n config._isValid = false;\n return;\n }\n\n if (match[4]) {\n if (tzRegex.exec(match[4])) {\n tzFormat = 'Z';\n } else {\n config._isValid = false;\n return;\n }\n }\n\n config._f = dateFormat + (timeFormat || '') + (tzFormat || '');\n configFromStringAndFormat(config);\n } else {\n config._isValid = false;\n }\n } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3\n\n\n var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\\s)?(\\d{1,2})\\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s(\\d{2,4})\\s(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\\d{4}))$/;\n\n function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {\n var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)];\n\n if (secondStr) {\n result.push(parseInt(secondStr, 10));\n }\n\n return result;\n }\n\n function untruncateYear(yearStr) {\n var year = parseInt(yearStr, 10);\n\n if (year <= 49) {\n return 2000 + year;\n } else if (year <= 999) {\n return 1900 + year;\n }\n\n return year;\n }\n\n function preprocessRFC2822(s) {\n // Remove comments and folding whitespace and replace multiple-spaces with a single space\n return s.replace(/\\([^)]*\\)|[\\n\\t]/g, ' ').replace(/(\\s\\s+)/g, ' ').replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n }\n\n function checkWeekday(weekdayStr, parsedInput, config) {\n if (weekdayStr) {\n // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.\n var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr),\n weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();\n\n if (weekdayProvided !== weekdayActual) {\n getParsingFlags(config).weekdayMismatch = true;\n config._isValid = false;\n return false;\n }\n }\n\n return true;\n }\n\n var obsOffsets = {\n UT: 0,\n GMT: 0,\n EDT: -4 * 60,\n EST: -5 * 60,\n CDT: -5 * 60,\n CST: -6 * 60,\n MDT: -6 * 60,\n MST: -7 * 60,\n PDT: -7 * 60,\n PST: -8 * 60\n };\n\n function calculateOffset(obsOffset, militaryOffset, numOffset) {\n if (obsOffset) {\n return obsOffsets[obsOffset];\n } else if (militaryOffset) {\n // the only allowed military tz is Z\n return 0;\n } else {\n var hm = parseInt(numOffset, 10);\n var m = hm % 100,\n h = (hm - m) / 100;\n return h * 60 + m;\n }\n } // date and time from ref 2822 format\n\n\n function configFromRFC2822(config) {\n var match = rfc2822.exec(preprocessRFC2822(config._i));\n\n if (match) {\n var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);\n\n if (!checkWeekday(match[1], parsedArray, config)) {\n return;\n }\n\n config._a = parsedArray;\n config._tzm = calculateOffset(match[8], match[9], match[10]);\n config._d = createUTCDate.apply(null, config._a);\n\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n\n getParsingFlags(config).rfc2822 = true;\n } else {\n config._isValid = false;\n }\n } // date from iso format or fallback\n\n\n function configFromString(config) {\n var matched = aspNetJsonRegex.exec(config._i);\n\n if (matched !== null) {\n config._d = new Date(+matched[1]);\n return;\n }\n\n configFromISO(config);\n\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n }\n\n configFromRFC2822(config);\n\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n } // Final attempt, use Input Fallback\n\n\n hooks.createFromInputFallback(config);\n }\n\n hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) {\n config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));\n }); // constant that refers to the ISO standard\n\n hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form\n\n\n hooks.RFC_2822 = function () {}; // date from string and format string\n\n\n function configFromStringAndFormat(config) {\n // TODO: Move this to another part of the creation flow to prevent circular deps\n if (config._f === hooks.ISO_8601) {\n configFromISO(config);\n return;\n }\n\n if (config._f === hooks.RFC_2822) {\n configFromRFC2822(config);\n return;\n }\n\n config._a = [];\n getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC`\n\n var string = '' + config._i,\n i,\n parsedInput,\n tokens,\n token,\n skipped,\n stringLength = string.length,\n totalParsedInputLength = 0;\n tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];\n\n for (i = 0; i < tokens.length; i++) {\n token = tokens[i];\n parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput,\n // 'regex', getParseRegexForToken(token, config));\n\n if (parsedInput) {\n skipped = string.substr(0, string.indexOf(parsedInput));\n\n if (skipped.length > 0) {\n getParsingFlags(config).unusedInput.push(skipped);\n }\n\n string = string.slice(string.indexOf(parsedInput) + parsedInput.length);\n totalParsedInputLength += parsedInput.length;\n } // don't parse if it's not a known token\n\n\n if (formatTokenFunctions[token]) {\n if (parsedInput) {\n getParsingFlags(config).empty = false;\n } else {\n getParsingFlags(config).unusedTokens.push(token);\n }\n\n addTimeToArrayFromToken(token, parsedInput, config);\n } else if (config._strict && !parsedInput) {\n getParsingFlags(config).unusedTokens.push(token);\n }\n } // add remaining unparsed input length to the string\n\n\n getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;\n\n if (string.length > 0) {\n getParsingFlags(config).unusedInput.push(string);\n } // clear _12h flag if hour is <= 12\n\n\n if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) {\n getParsingFlags(config).bigHour = undefined;\n }\n\n getParsingFlags(config).parsedDateParts = config._a.slice(0);\n getParsingFlags(config).meridiem = config._meridiem; // handle meridiem\n\n config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);\n configFromArray(config);\n checkOverflow(config);\n }\n\n function meridiemFixWrap(locale, hour, meridiem) {\n var isPm;\n\n if (meridiem == null) {\n // nothing to do\n return hour;\n }\n\n if (locale.meridiemHour != null) {\n return locale.meridiemHour(hour, meridiem);\n } else if (locale.isPM != null) {\n // Fallback\n isPm = locale.isPM(meridiem);\n\n if (isPm && hour < 12) {\n hour += 12;\n }\n\n if (!isPm && hour === 12) {\n hour = 0;\n }\n\n return hour;\n } else {\n // this is not supposed to happen\n return hour;\n }\n } // date from string and array of format strings\n\n\n function configFromStringAndArray(config) {\n var tempConfig, bestMoment, scoreToBeat, i, currentScore;\n\n if (config._f.length === 0) {\n getParsingFlags(config).invalidFormat = true;\n config._d = new Date(NaN);\n return;\n }\n\n for (i = 0; i < config._f.length; i++) {\n currentScore = 0;\n tempConfig = copyConfig({}, config);\n\n if (config._useUTC != null) {\n tempConfig._useUTC = config._useUTC;\n }\n\n tempConfig._f = config._f[i];\n configFromStringAndFormat(tempConfig);\n\n if (!isValid(tempConfig)) {\n continue;\n } // if there is any input that was not parsed add a penalty for that format\n\n\n currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens\n\n currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;\n getParsingFlags(tempConfig).score = currentScore;\n\n if (scoreToBeat == null || currentScore < scoreToBeat) {\n scoreToBeat = currentScore;\n bestMoment = tempConfig;\n }\n }\n\n extend(config, bestMoment || tempConfig);\n }\n\n function configFromObject(config) {\n if (config._d) {\n return;\n }\n\n var i = normalizeObjectUnits(config._i);\n config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {\n return obj && parseInt(obj, 10);\n });\n configFromArray(config);\n }\n\n function createFromConfig(config) {\n var res = new Moment(checkOverflow(prepareConfig(config)));\n\n if (res._nextDay) {\n // Adding is smart enough around DST\n res.add(1, 'd');\n res._nextDay = undefined;\n }\n\n return res;\n }\n\n function prepareConfig(config) {\n var input = config._i,\n format = config._f;\n config._locale = config._locale || getLocale(config._l);\n\n if (input === null || format === undefined && input === '') {\n return createInvalid({\n nullInput: true\n });\n }\n\n if (typeof input === 'string') {\n config._i = input = config._locale.preparse(input);\n }\n\n if (isMoment(input)) {\n return new Moment(checkOverflow(input));\n } else if (isDate(input)) {\n config._d = input;\n } else if (isArray(format)) {\n configFromStringAndArray(config);\n } else if (format) {\n configFromStringAndFormat(config);\n } else {\n configFromInput(config);\n }\n\n if (!isValid(config)) {\n config._d = null;\n }\n\n return config;\n }\n\n function configFromInput(config) {\n var input = config._i;\n\n if (isUndefined(input)) {\n config._d = new Date(hooks.now());\n } else if (isDate(input)) {\n config._d = new Date(input.valueOf());\n } else if (typeof input === 'string') {\n configFromString(config);\n } else if (isArray(input)) {\n config._a = map(input.slice(0), function (obj) {\n return parseInt(obj, 10);\n });\n configFromArray(config);\n } else if (isObject(input)) {\n configFromObject(config);\n } else if (isNumber(input)) {\n // from milliseconds\n config._d = new Date(input);\n } else {\n hooks.createFromInputFallback(config);\n }\n }\n\n function createLocalOrUTC(input, format, locale, strict, isUTC) {\n var c = {};\n\n if (locale === true || locale === false) {\n strict = locale;\n locale = undefined;\n }\n\n if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) {\n input = undefined;\n } // object construction must be done this way.\n // https://github.com/moment/moment/issues/1423\n\n\n c._isAMomentObject = true;\n c._useUTC = c._isUTC = isUTC;\n c._l = locale;\n c._i = input;\n c._f = format;\n c._strict = strict;\n return createFromConfig(c);\n }\n\n function createLocal(input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, false);\n }\n\n var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\n var other = createLocal.apply(null, arguments);\n\n if (this.isValid() && other.isValid()) {\n return other < this ? this : other;\n } else {\n return createInvalid();\n }\n });\n var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\n var other = createLocal.apply(null, arguments);\n\n if (this.isValid() && other.isValid()) {\n return other > this ? this : other;\n } else {\n return createInvalid();\n }\n }); // Pick a moment m from moments so that m[fn](other) is true for all\n // other. This relies on the function fn to be transitive.\n //\n // moments should either be an array of moment objects or an array, whose\n // first element is an array of moment objects.\n\n function pickBy(fn, moments) {\n var res, i;\n\n if (moments.length === 1 && isArray(moments[0])) {\n moments = moments[0];\n }\n\n if (!moments.length) {\n return createLocal();\n }\n\n res = moments[0];\n\n for (i = 1; i < moments.length; ++i) {\n if (!moments[i].isValid() || moments[i][fn](res)) {\n res = moments[i];\n }\n }\n\n return res;\n } // TODO: Use [].sort instead?\n\n\n function min() {\n var args = [].slice.call(arguments, 0);\n return pickBy('isBefore', args);\n }\n\n function max() {\n var args = [].slice.call(arguments, 0);\n return pickBy('isAfter', args);\n }\n\n var now = function () {\n return Date.now ? Date.now() : +new Date();\n };\n\n var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];\n\n function isDurationValid(m) {\n for (var key in m) {\n if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) {\n return false;\n }\n }\n\n var unitHasDecimal = false;\n\n for (var i = 0; i < ordering.length; ++i) {\n if (m[ordering[i]]) {\n if (unitHasDecimal) {\n return false; // only allow non-integers for smallest unit\n }\n\n if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {\n unitHasDecimal = true;\n }\n }\n }\n\n return true;\n }\n\n function isValid$1() {\n return this._isValid;\n }\n\n function createInvalid$1() {\n return createDuration(NaN);\n }\n\n function Duration(duration) {\n var normalizedInput = normalizeObjectUnits(duration),\n years = normalizedInput.year || 0,\n quarters = normalizedInput.quarter || 0,\n months = normalizedInput.month || 0,\n weeks = normalizedInput.week || normalizedInput.isoWeek || 0,\n days = normalizedInput.day || 0,\n hours = normalizedInput.hour || 0,\n minutes = normalizedInput.minute || 0,\n seconds = normalizedInput.second || 0,\n milliseconds = normalizedInput.millisecond || 0;\n this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove\n\n this._milliseconds = +milliseconds + seconds * 1e3 + // 1000\n minutes * 6e4 + // 1000 * 60\n hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978\n // Because of dateAddRemove treats 24 hours as different from a\n // day when working around DST, we need to store them separately\n\n this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing\n // which months you are are talking about, so we have to store\n // it separately.\n\n this._months = +months + quarters * 3 + years * 12;\n this._data = {};\n this._locale = getLocale();\n\n this._bubble();\n }\n\n function isDuration(obj) {\n return obj instanceof Duration;\n }\n\n function absRound(number) {\n if (number < 0) {\n return Math.round(-1 * number) * -1;\n } else {\n return Math.round(number);\n }\n } // FORMATTING\n\n\n function offset(token, separator) {\n addFormatToken(token, 0, 0, function () {\n var offset = this.utcOffset();\n var sign = '+';\n\n if (offset < 0) {\n offset = -offset;\n sign = '-';\n }\n\n return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2);\n });\n }\n\n offset('Z', ':');\n offset('ZZ', ''); // PARSING\n\n addRegexToken('Z', matchShortOffset);\n addRegexToken('ZZ', matchShortOffset);\n addParseToken(['Z', 'ZZ'], function (input, array, config) {\n config._useUTC = true;\n config._tzm = offsetFromString(matchShortOffset, input);\n }); // HELPERS\n // timezone chunker\n // '+10:00' > ['10', '00']\n // '-1530' > ['-15', '30']\n\n var chunkOffset = /([\\+\\-]|\\d\\d)/gi;\n\n function offsetFromString(matcher, string) {\n var matches = (string || '').match(matcher);\n\n if (matches === null) {\n return null;\n }\n\n var chunk = matches[matches.length - 1] || [];\n var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];\n var minutes = +(parts[1] * 60) + toInt(parts[2]);\n return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes;\n } // Return a moment from input, that is local/utc/zone equivalent to model.\n\n\n function cloneWithOffset(input, model) {\n var res, diff;\n\n if (model._isUTC) {\n res = model.clone();\n diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api.\n\n res._d.setTime(res._d.valueOf() + diff);\n\n hooks.updateOffset(res, false);\n return res;\n } else {\n return createLocal(input).local();\n }\n }\n\n function getDateOffset(m) {\n // On Firefox.24 Date#getTimezoneOffset returns a floating point.\n // https://github.com/moment/moment/pull/1871\n return -Math.round(m._d.getTimezoneOffset() / 15) * 15;\n } // HOOKS\n // This function will be called whenever a moment is mutated.\n // It is intended to keep the offset in sync with the timezone.\n\n\n hooks.updateOffset = function () {}; // MOMENTS\n // keepLocalTime = true means only change the timezone, without\n // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->\n // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset\n // +0200, so we adjust the time as needed, to be valid.\n //\n // Keeping the time actually adds/subtracts (one hour)\n // from the actual represented time. That is why we call updateOffset\n // a second time. In case it wants us to change the offset again\n // _changeInProgress == true case, then we have to adjust, because\n // there is no such time in the given timezone.\n\n\n function getSetOffset(input, keepLocalTime, keepMinutes) {\n var offset = this._offset || 0,\n localAdjust;\n\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n if (input != null) {\n if (typeof input === 'string') {\n input = offsetFromString(matchShortOffset, input);\n\n if (input === null) {\n return this;\n }\n } else if (Math.abs(input) < 16 && !keepMinutes) {\n input = input * 60;\n }\n\n if (!this._isUTC && keepLocalTime) {\n localAdjust = getDateOffset(this);\n }\n\n this._offset = input;\n this._isUTC = true;\n\n if (localAdjust != null) {\n this.add(localAdjust, 'm');\n }\n\n if (offset !== input) {\n if (!keepLocalTime || this._changeInProgress) {\n addSubtract(this, createDuration(input - offset, 'm'), 1, false);\n } else if (!this._changeInProgress) {\n this._changeInProgress = true;\n hooks.updateOffset(this, true);\n this._changeInProgress = null;\n }\n }\n\n return this;\n } else {\n return this._isUTC ? offset : getDateOffset(this);\n }\n }\n\n function getSetZone(input, keepLocalTime) {\n if (input != null) {\n if (typeof input !== 'string') {\n input = -input;\n }\n\n this.utcOffset(input, keepLocalTime);\n return this;\n } else {\n return -this.utcOffset();\n }\n }\n\n function setOffsetToUTC(keepLocalTime) {\n return this.utcOffset(0, keepLocalTime);\n }\n\n function setOffsetToLocal(keepLocalTime) {\n if (this._isUTC) {\n this.utcOffset(0, keepLocalTime);\n this._isUTC = false;\n\n if (keepLocalTime) {\n this.subtract(getDateOffset(this), 'm');\n }\n }\n\n return this;\n }\n\n function setOffsetToParsedOffset() {\n if (this._tzm != null) {\n this.utcOffset(this._tzm, false, true);\n } else if (typeof this._i === 'string') {\n var tZone = offsetFromString(matchOffset, this._i);\n\n if (tZone != null) {\n this.utcOffset(tZone);\n } else {\n this.utcOffset(0, true);\n }\n }\n\n return this;\n }\n\n function hasAlignedHourOffset(input) {\n if (!this.isValid()) {\n return false;\n }\n\n input = input ? createLocal(input).utcOffset() : 0;\n return (this.utcOffset() - input) % 60 === 0;\n }\n\n function isDaylightSavingTime() {\n return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset();\n }\n\n function isDaylightSavingTimeShifted() {\n if (!isUndefined(this._isDSTShifted)) {\n return this._isDSTShifted;\n }\n\n var c = {};\n copyConfig(c, this);\n c = prepareConfig(c);\n\n if (c._a) {\n var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);\n this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0;\n } else {\n this._isDSTShifted = false;\n }\n\n return this._isDSTShifted;\n }\n\n function isLocal() {\n return this.isValid() ? !this._isUTC : false;\n }\n\n function isUtcOffset() {\n return this.isValid() ? this._isUTC : false;\n }\n\n function isUtc() {\n return this.isValid() ? this._isUTC && this._offset === 0 : false;\n } // ASP.NET json date format regex\n\n\n var aspNetRegex = /^(\\-|\\+)?(?:(\\d*)[. ])?(\\d+)\\:(\\d+)(?:\\:(\\d+)(\\.\\d*)?)?$/; // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html\n // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere\n // and further modified to allow for strings containing both week and day\n\n var isoRegex = /^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\n\n function createDuration(input, key) {\n var duration = input,\n // matching against regexp is expensive, do it on demand\n match = null,\n sign,\n ret,\n diffRes;\n\n if (isDuration(input)) {\n duration = {\n ms: input._milliseconds,\n d: input._days,\n M: input._months\n };\n } else if (isNumber(input)) {\n duration = {};\n\n if (key) {\n duration[key] = input;\n } else {\n duration.milliseconds = input;\n }\n } else if (!!(match = aspNetRegex.exec(input))) {\n sign = match[1] === '-' ? -1 : 1;\n duration = {\n y: 0,\n d: toInt(match[DATE]) * sign,\n h: toInt(match[HOUR]) * sign,\n m: toInt(match[MINUTE]) * sign,\n s: toInt(match[SECOND]) * sign,\n ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match\n\n };\n } else if (!!(match = isoRegex.exec(input))) {\n sign = match[1] === '-' ? -1 : 1;\n duration = {\n y: parseIso(match[2], sign),\n M: parseIso(match[3], sign),\n w: parseIso(match[4], sign),\n d: parseIso(match[5], sign),\n h: parseIso(match[6], sign),\n m: parseIso(match[7], sign),\n s: parseIso(match[8], sign)\n };\n } else if (duration == null) {\n // checks for null or undefined\n duration = {};\n } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {\n diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));\n duration = {};\n duration.ms = diffRes.milliseconds;\n duration.M = diffRes.months;\n }\n\n ret = new Duration(duration);\n\n if (isDuration(input) && hasOwnProp(input, '_locale')) {\n ret._locale = input._locale;\n }\n\n return ret;\n }\n\n createDuration.fn = Duration.prototype;\n createDuration.invalid = createInvalid$1;\n\n function parseIso(inp, sign) {\n // We'd normally use ~~inp for this, but unfortunately it also\n // converts floats to ints.\n // inp may be undefined, so careful calling replace on it.\n var res = inp && parseFloat(inp.replace(',', '.')); // apply sign while we're at it\n\n return (isNaN(res) ? 0 : res) * sign;\n }\n\n function positiveMomentsDifference(base, other) {\n var res = {};\n res.months = other.month() - base.month() + (other.year() - base.year()) * 12;\n\n if (base.clone().add(res.months, 'M').isAfter(other)) {\n --res.months;\n }\n\n res.milliseconds = +other - +base.clone().add(res.months, 'M');\n return res;\n }\n\n function momentsDifference(base, other) {\n var res;\n\n if (!(base.isValid() && other.isValid())) {\n return {\n milliseconds: 0,\n months: 0\n };\n }\n\n other = cloneWithOffset(other, base);\n\n if (base.isBefore(other)) {\n res = positiveMomentsDifference(base, other);\n } else {\n res = positiveMomentsDifference(other, base);\n res.milliseconds = -res.milliseconds;\n res.months = -res.months;\n }\n\n return res;\n } // TODO: remove 'name' arg after deprecation is removed\n\n\n function createAdder(direction, name) {\n return function (val, period) {\n var dur, tmp; //invert the arguments, but complain about it\n\n if (period !== null && !isNaN(+period)) {\n deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');\n tmp = val;\n val = period;\n period = tmp;\n }\n\n val = typeof val === 'string' ? +val : val;\n dur = createDuration(val, period);\n addSubtract(this, dur, direction);\n return this;\n };\n }\n\n function addSubtract(mom, duration, isAdding, updateOffset) {\n var milliseconds = duration._milliseconds,\n days = absRound(duration._days),\n months = absRound(duration._months);\n\n if (!mom.isValid()) {\n // No op\n return;\n }\n\n updateOffset = updateOffset == null ? true : updateOffset;\n\n if (months) {\n setMonth(mom, get(mom, 'Month') + months * isAdding);\n }\n\n if (days) {\n set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);\n }\n\n if (milliseconds) {\n mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);\n }\n\n if (updateOffset) {\n hooks.updateOffset(mom, days || months);\n }\n }\n\n var add = createAdder(1, 'add');\n var subtract = createAdder(-1, 'subtract');\n\n function getCalendarFormat(myMoment, now) {\n var diff = myMoment.diff(now, 'days', true);\n return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse';\n }\n\n function calendar$1(time, formats) {\n // We want to compare the start of today, vs this.\n // Getting start-of-today depends on whether we're local/utc/offset or not.\n var now = time || createLocal(),\n sod = cloneWithOffset(now, this).startOf('day'),\n format = hooks.calendarFormat(this, sod) || 'sameElse';\n var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);\n return this.format(output || this.localeData().calendar(format, this, createLocal(now)));\n }\n\n function clone() {\n return new Moment(this);\n }\n\n function isAfter(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() > localInput.valueOf();\n } else {\n return localInput.valueOf() < this.clone().startOf(units).valueOf();\n }\n }\n\n function isBefore(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() < localInput.valueOf();\n } else {\n return this.clone().endOf(units).valueOf() < localInput.valueOf();\n }\n }\n\n function isBetween(from, to, units, inclusivity) {\n var localFrom = isMoment(from) ? from : createLocal(from),\n localTo = isMoment(to) ? to : createLocal(to);\n\n if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) {\n return false;\n }\n\n inclusivity = inclusivity || '()';\n return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) && (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units));\n }\n\n function isSame(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input),\n inputMs;\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() === localInput.valueOf();\n } else {\n inputMs = localInput.valueOf();\n return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();\n }\n }\n\n function isSameOrAfter(input, units) {\n return this.isSame(input, units) || this.isAfter(input, units);\n }\n\n function isSameOrBefore(input, units) {\n return this.isSame(input, units) || this.isBefore(input, units);\n }\n\n function diff(input, units, asFloat) {\n var that, zoneDelta, output;\n\n if (!this.isValid()) {\n return NaN;\n }\n\n that = cloneWithOffset(input, this);\n\n if (!that.isValid()) {\n return NaN;\n }\n\n zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;\n units = normalizeUnits(units);\n\n switch (units) {\n case 'year':\n output = monthDiff(this, that) / 12;\n break;\n\n case 'month':\n output = monthDiff(this, that);\n break;\n\n case 'quarter':\n output = monthDiff(this, that) / 3;\n break;\n\n case 'second':\n output = (this - that) / 1e3;\n break;\n // 1000\n\n case 'minute':\n output = (this - that) / 6e4;\n break;\n // 1000 * 60\n\n case 'hour':\n output = (this - that) / 36e5;\n break;\n // 1000 * 60 * 60\n\n case 'day':\n output = (this - that - zoneDelta) / 864e5;\n break;\n // 1000 * 60 * 60 * 24, negate dst\n\n case 'week':\n output = (this - that - zoneDelta) / 6048e5;\n break;\n // 1000 * 60 * 60 * 24 * 7, negate dst\n\n default:\n output = this - that;\n }\n\n return asFloat ? output : absFloor(output);\n }\n\n function monthDiff(a, b) {\n // difference in months\n var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()),\n // b is in (anchor - 1 month, anchor + 1 month)\n anchor = a.clone().add(wholeMonthDiff, 'months'),\n anchor2,\n adjust;\n\n if (b - anchor < 0) {\n anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month\n\n adjust = (b - anchor) / (anchor - anchor2);\n } else {\n anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month\n\n adjust = (b - anchor) / (anchor2 - anchor);\n } //check for negative zero, return zero if negative zero\n\n\n return -(wholeMonthDiff + adjust) || 0;\n }\n\n hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';\n hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';\n\n function toString() {\n return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');\n }\n\n function toISOString(keepOffset) {\n if (!this.isValid()) {\n return null;\n }\n\n var utc = keepOffset !== true;\n var m = utc ? this.clone().utc() : this;\n\n if (m.year() < 0 || m.year() > 9999) {\n return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n\n if (isFunction(Date.prototype.toISOString)) {\n // native implementation is ~50x faster, use it when we can\n if (utc) {\n return this.toDate().toISOString();\n } else {\n return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z'));\n }\n }\n\n return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n /**\n * Return a human readable representation of a moment that can\n * also be evaluated to get a new moment which is the same\n *\n * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects\n */\n\n\n function inspect() {\n if (!this.isValid()) {\n return 'moment.invalid(/* ' + this._i + ' */)';\n }\n\n var func = 'moment';\n var zone = '';\n\n if (!this.isLocal()) {\n func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';\n zone = 'Z';\n }\n\n var prefix = '[' + func + '(\"]';\n var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY';\n var datetime = '-MM-DD[T]HH:mm:ss.SSS';\n var suffix = zone + '[\")]';\n return this.format(prefix + year + datetime + suffix);\n }\n\n function format(inputString) {\n if (!inputString) {\n inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;\n }\n\n var output = formatMoment(this, inputString);\n return this.localeData().postformat(output);\n }\n\n function from(time, withoutSuffix) {\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\n return createDuration({\n to: this,\n from: time\n }).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function fromNow(withoutSuffix) {\n return this.from(createLocal(), withoutSuffix);\n }\n\n function to(time, withoutSuffix) {\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\n return createDuration({\n from: this,\n to: time\n }).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function toNow(withoutSuffix) {\n return this.to(createLocal(), withoutSuffix);\n } // If passed a locale key, it will set the locale for this\n // instance. Otherwise, it will return the locale configuration\n // variables for this instance.\n\n\n function locale(key) {\n var newLocaleData;\n\n if (key === undefined) {\n return this._locale._abbr;\n } else {\n newLocaleData = getLocale(key);\n\n if (newLocaleData != null) {\n this._locale = newLocaleData;\n }\n\n return this;\n }\n }\n\n var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) {\n if (key === undefined) {\n return this.localeData();\n } else {\n return this.locale(key);\n }\n });\n\n function localeData() {\n return this._locale;\n }\n\n var MS_PER_SECOND = 1000;\n var MS_PER_MINUTE = 60 * MS_PER_SECOND;\n var MS_PER_HOUR = 60 * MS_PER_MINUTE;\n var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; // actual modulo - handles negative numbers (for dates before 1970):\n\n function mod$1(dividend, divisor) {\n return (dividend % divisor + divisor) % divisor;\n }\n\n function localStartOfDate(y, m, d) {\n // the date constructor remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return new Date(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return new Date(y, m, d).valueOf();\n }\n }\n\n function utcStartOfDate(y, m, d) {\n // Date.UTC remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return Date.UTC(y, m, d);\n }\n }\n\n function startOf(units) {\n var time;\n units = normalizeUnits(units);\n\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year(), 0, 1);\n break;\n\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3, 1);\n break;\n\n case 'month':\n time = startOfDate(this.year(), this.month(), 1);\n break;\n\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday());\n break;\n\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1));\n break;\n\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date());\n break;\n\n case 'hour':\n time = this._d.valueOf();\n time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);\n break;\n\n case 'minute':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_MINUTE);\n break;\n\n case 'second':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_SECOND);\n break;\n }\n\n this._d.setTime(time);\n\n hooks.updateOffset(this, true);\n return this;\n }\n\n function endOf(units) {\n var time;\n units = normalizeUnits(units);\n\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year() + 1, 0, 1) - 1;\n break;\n\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1;\n break;\n\n case 'month':\n time = startOfDate(this.year(), this.month() + 1, 1) - 1;\n break;\n\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1;\n break;\n\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1;\n break;\n\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date() + 1) - 1;\n break;\n\n case 'hour':\n time = this._d.valueOf();\n time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;\n break;\n\n case 'minute':\n time = this._d.valueOf();\n time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1;\n break;\n\n case 'second':\n time = this._d.valueOf();\n time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1;\n break;\n }\n\n this._d.setTime(time);\n\n hooks.updateOffset(this, true);\n return this;\n }\n\n function valueOf() {\n return this._d.valueOf() - (this._offset || 0) * 60000;\n }\n\n function unix() {\n return Math.floor(this.valueOf() / 1000);\n }\n\n function toDate() {\n return new Date(this.valueOf());\n }\n\n function toArray() {\n var m = this;\n return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];\n }\n\n function toObject() {\n var m = this;\n return {\n years: m.year(),\n months: m.month(),\n date: m.date(),\n hours: m.hours(),\n minutes: m.minutes(),\n seconds: m.seconds(),\n milliseconds: m.milliseconds()\n };\n }\n\n function toJSON() {\n // new Date(NaN).toJSON() === null\n return this.isValid() ? this.toISOString() : null;\n }\n\n function isValid$2() {\n return isValid(this);\n }\n\n function parsingFlags() {\n return extend({}, getParsingFlags(this));\n }\n\n function invalidAt() {\n return getParsingFlags(this).overflow;\n }\n\n function creationData() {\n return {\n input: this._i,\n format: this._f,\n locale: this._locale,\n isUTC: this._isUTC,\n strict: this._strict\n };\n } // FORMATTING\n\n\n addFormatToken(0, ['gg', 2], 0, function () {\n return this.weekYear() % 100;\n });\n addFormatToken(0, ['GG', 2], 0, function () {\n return this.isoWeekYear() % 100;\n });\n\n function addWeekYearFormatToken(token, getter) {\n addFormatToken(0, [token, token.length], 0, getter);\n }\n\n addWeekYearFormatToken('gggg', 'weekYear');\n addWeekYearFormatToken('ggggg', 'weekYear');\n addWeekYearFormatToken('GGGG', 'isoWeekYear');\n addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES\n\n addUnitAlias('weekYear', 'gg');\n addUnitAlias('isoWeekYear', 'GG'); // PRIORITY\n\n addUnitPriority('weekYear', 1);\n addUnitPriority('isoWeekYear', 1); // PARSING\n\n addRegexToken('G', matchSigned);\n addRegexToken('g', matchSigned);\n addRegexToken('GG', match1to2, match2);\n addRegexToken('gg', match1to2, match2);\n addRegexToken('GGGG', match1to4, match4);\n addRegexToken('gggg', match1to4, match4);\n addRegexToken('GGGGG', match1to6, match6);\n addRegexToken('ggggg', match1to6, match6);\n addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {\n week[token.substr(0, 2)] = toInt(input);\n });\n addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {\n week[token] = hooks.parseTwoDigitYear(input);\n }); // MOMENTS\n\n function getSetWeekYear(input) {\n return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy);\n }\n\n function getSetISOWeekYear(input) {\n return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4);\n }\n\n function getISOWeeksInYear() {\n return weeksInYear(this.year(), 1, 4);\n }\n\n function getWeeksInYear() {\n var weekInfo = this.localeData()._week;\n\n return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);\n }\n\n function getSetWeekYearHelper(input, week, weekday, dow, doy) {\n var weeksTarget;\n\n if (input == null) {\n return weekOfYear(this, dow, doy).year;\n } else {\n weeksTarget = weeksInYear(input, dow, doy);\n\n if (week > weeksTarget) {\n week = weeksTarget;\n }\n\n return setWeekAll.call(this, input, week, weekday, dow, doy);\n }\n }\n\n function setWeekAll(weekYear, week, weekday, dow, doy) {\n var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),\n date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);\n this.year(date.getUTCFullYear());\n this.month(date.getUTCMonth());\n this.date(date.getUTCDate());\n return this;\n } // FORMATTING\n\n\n addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES\n\n addUnitAlias('quarter', 'Q'); // PRIORITY\n\n addUnitPriority('quarter', 7); // PARSING\n\n addRegexToken('Q', match1);\n addParseToken('Q', function (input, array) {\n array[MONTH] = (toInt(input) - 1) * 3;\n }); // MOMENTS\n\n function getSetQuarter(input) {\n return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);\n } // FORMATTING\n\n\n addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES\n\n addUnitAlias('date', 'D'); // PRIORITY\n\n addUnitPriority('date', 9); // PARSING\n\n addRegexToken('D', match1to2);\n addRegexToken('DD', match1to2, match2);\n addRegexToken('Do', function (isStrict, locale) {\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient;\n });\n addParseToken(['D', 'DD'], DATE);\n addParseToken('Do', function (input, array) {\n array[DATE] = toInt(input.match(match1to2)[0]);\n }); // MOMENTS\n\n var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING\n\n addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES\n\n addUnitAlias('dayOfYear', 'DDD'); // PRIORITY\n\n addUnitPriority('dayOfYear', 4); // PARSING\n\n addRegexToken('DDD', match1to3);\n addRegexToken('DDDD', match3);\n addParseToken(['DDD', 'DDDD'], function (input, array, config) {\n config._dayOfYear = toInt(input);\n }); // HELPERS\n // MOMENTS\n\n function getSetDayOfYear(input) {\n var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;\n return input == null ? dayOfYear : this.add(input - dayOfYear, 'd');\n } // FORMATTING\n\n\n addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES\n\n addUnitAlias('minute', 'm'); // PRIORITY\n\n addUnitPriority('minute', 14); // PARSING\n\n addRegexToken('m', match1to2);\n addRegexToken('mm', match1to2, match2);\n addParseToken(['m', 'mm'], MINUTE); // MOMENTS\n\n var getSetMinute = makeGetSet('Minutes', false); // FORMATTING\n\n addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES\n\n addUnitAlias('second', 's'); // PRIORITY\n\n addUnitPriority('second', 15); // PARSING\n\n addRegexToken('s', match1to2);\n addRegexToken('ss', match1to2, match2);\n addParseToken(['s', 'ss'], SECOND); // MOMENTS\n\n var getSetSecond = makeGetSet('Seconds', false); // FORMATTING\n\n addFormatToken('S', 0, 0, function () {\n return ~~(this.millisecond() / 100);\n });\n addFormatToken(0, ['SS', 2], 0, function () {\n return ~~(this.millisecond() / 10);\n });\n addFormatToken(0, ['SSS', 3], 0, 'millisecond');\n addFormatToken(0, ['SSSS', 4], 0, function () {\n return this.millisecond() * 10;\n });\n addFormatToken(0, ['SSSSS', 5], 0, function () {\n return this.millisecond() * 100;\n });\n addFormatToken(0, ['SSSSSS', 6], 0, function () {\n return this.millisecond() * 1000;\n });\n addFormatToken(0, ['SSSSSSS', 7], 0, function () {\n return this.millisecond() * 10000;\n });\n addFormatToken(0, ['SSSSSSSS', 8], 0, function () {\n return this.millisecond() * 100000;\n });\n addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {\n return this.millisecond() * 1000000;\n }); // ALIASES\n\n addUnitAlias('millisecond', 'ms'); // PRIORITY\n\n addUnitPriority('millisecond', 16); // PARSING\n\n addRegexToken('S', match1to3, match1);\n addRegexToken('SS', match1to3, match2);\n addRegexToken('SSS', match1to3, match3);\n var token;\n\n for (token = 'SSSS'; token.length <= 9; token += 'S') {\n addRegexToken(token, matchUnsigned);\n }\n\n function parseMs(input, array) {\n array[MILLISECOND] = toInt(('0.' + input) * 1000);\n }\n\n for (token = 'S'; token.length <= 9; token += 'S') {\n addParseToken(token, parseMs);\n } // MOMENTS\n\n\n var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING\n\n addFormatToken('z', 0, 0, 'zoneAbbr');\n addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS\n\n function getZoneAbbr() {\n return this._isUTC ? 'UTC' : '';\n }\n\n function getZoneName() {\n return this._isUTC ? 'Coordinated Universal Time' : '';\n }\n\n var proto = Moment.prototype;\n proto.add = add;\n proto.calendar = calendar$1;\n proto.clone = clone;\n proto.diff = diff;\n proto.endOf = endOf;\n proto.format = format;\n proto.from = from;\n proto.fromNow = fromNow;\n proto.to = to;\n proto.toNow = toNow;\n proto.get = stringGet;\n proto.invalidAt = invalidAt;\n proto.isAfter = isAfter;\n proto.isBefore = isBefore;\n proto.isBetween = isBetween;\n proto.isSame = isSame;\n proto.isSameOrAfter = isSameOrAfter;\n proto.isSameOrBefore = isSameOrBefore;\n proto.isValid = isValid$2;\n proto.lang = lang;\n proto.locale = locale;\n proto.localeData = localeData;\n proto.max = prototypeMax;\n proto.min = prototypeMin;\n proto.parsingFlags = parsingFlags;\n proto.set = stringSet;\n proto.startOf = startOf;\n proto.subtract = subtract;\n proto.toArray = toArray;\n proto.toObject = toObject;\n proto.toDate = toDate;\n proto.toISOString = toISOString;\n proto.inspect = inspect;\n proto.toJSON = toJSON;\n proto.toString = toString;\n proto.unix = unix;\n proto.valueOf = valueOf;\n proto.creationData = creationData;\n proto.year = getSetYear;\n proto.isLeapYear = getIsLeapYear;\n proto.weekYear = getSetWeekYear;\n proto.isoWeekYear = getSetISOWeekYear;\n proto.quarter = proto.quarters = getSetQuarter;\n proto.month = getSetMonth;\n proto.daysInMonth = getDaysInMonth;\n proto.week = proto.weeks = getSetWeek;\n proto.isoWeek = proto.isoWeeks = getSetISOWeek;\n proto.weeksInYear = getWeeksInYear;\n proto.isoWeeksInYear = getISOWeeksInYear;\n proto.date = getSetDayOfMonth;\n proto.day = proto.days = getSetDayOfWeek;\n proto.weekday = getSetLocaleDayOfWeek;\n proto.isoWeekday = getSetISODayOfWeek;\n proto.dayOfYear = getSetDayOfYear;\n proto.hour = proto.hours = getSetHour;\n proto.minute = proto.minutes = getSetMinute;\n proto.second = proto.seconds = getSetSecond;\n proto.millisecond = proto.milliseconds = getSetMillisecond;\n proto.utcOffset = getSetOffset;\n proto.utc = setOffsetToUTC;\n proto.local = setOffsetToLocal;\n proto.parseZone = setOffsetToParsedOffset;\n proto.hasAlignedHourOffset = hasAlignedHourOffset;\n proto.isDST = isDaylightSavingTime;\n proto.isLocal = isLocal;\n proto.isUtcOffset = isUtcOffset;\n proto.isUtc = isUtc;\n proto.isUTC = isUtc;\n proto.zoneAbbr = getZoneAbbr;\n proto.zoneName = getZoneName;\n proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);\n proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);\n proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);\n proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);\n proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);\n\n function createUnix(input) {\n return createLocal(input * 1000);\n }\n\n function createInZone() {\n return createLocal.apply(null, arguments).parseZone();\n }\n\n function preParsePostFormat(string) {\n return string;\n }\n\n var proto$1 = Locale.prototype;\n proto$1.calendar = calendar;\n proto$1.longDateFormat = longDateFormat;\n proto$1.invalidDate = invalidDate;\n proto$1.ordinal = ordinal;\n proto$1.preparse = preParsePostFormat;\n proto$1.postformat = preParsePostFormat;\n proto$1.relativeTime = relativeTime;\n proto$1.pastFuture = pastFuture;\n proto$1.set = set;\n proto$1.months = localeMonths;\n proto$1.monthsShort = localeMonthsShort;\n proto$1.monthsParse = localeMonthsParse;\n proto$1.monthsRegex = monthsRegex;\n proto$1.monthsShortRegex = monthsShortRegex;\n proto$1.week = localeWeek;\n proto$1.firstDayOfYear = localeFirstDayOfYear;\n proto$1.firstDayOfWeek = localeFirstDayOfWeek;\n proto$1.weekdays = localeWeekdays;\n proto$1.weekdaysMin = localeWeekdaysMin;\n proto$1.weekdaysShort = localeWeekdaysShort;\n proto$1.weekdaysParse = localeWeekdaysParse;\n proto$1.weekdaysRegex = weekdaysRegex;\n proto$1.weekdaysShortRegex = weekdaysShortRegex;\n proto$1.weekdaysMinRegex = weekdaysMinRegex;\n proto$1.isPM = localeIsPM;\n proto$1.meridiem = localeMeridiem;\n\n function get$1(format, index, field, setter) {\n var locale = getLocale();\n var utc = createUTC().set(setter, index);\n return locale[field](utc, format);\n }\n\n function listMonthsImpl(format, index, field) {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n\n if (index != null) {\n return get$1(format, index, field, 'month');\n }\n\n var i;\n var out = [];\n\n for (i = 0; i < 12; i++) {\n out[i] = get$1(format, i, field, 'month');\n }\n\n return out;\n } // ()\n // (5)\n // (fmt, 5)\n // (fmt)\n // (true)\n // (true, 5)\n // (true, fmt, 5)\n // (true, fmt)\n\n\n function listWeekdaysImpl(localeSorted, format, index, field) {\n if (typeof localeSorted === 'boolean') {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n } else {\n format = localeSorted;\n index = format;\n localeSorted = false;\n\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n }\n\n var locale = getLocale(),\n shift = localeSorted ? locale._week.dow : 0;\n\n if (index != null) {\n return get$1(format, (index + shift) % 7, field, 'day');\n }\n\n var i;\n var out = [];\n\n for (i = 0; i < 7; i++) {\n out[i] = get$1(format, (i + shift) % 7, field, 'day');\n }\n\n return out;\n }\n\n function listMonths(format, index) {\n return listMonthsImpl(format, index, 'months');\n }\n\n function listMonthsShort(format, index) {\n return listMonthsImpl(format, index, 'monthsShort');\n }\n\n function listWeekdays(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdays');\n }\n\n function listWeekdaysShort(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');\n }\n\n function listWeekdaysMin(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');\n }\n\n getSetGlobalLocale('en', {\n dayOfMonthOrdinalParse: /\\d{1,2}(th|st|nd|rd)/,\n ordinal: function (number) {\n var b = number % 10,\n output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\n return number + output;\n }\n }); // Side effect imports\n\n hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);\n hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);\n var mathAbs = Math.abs;\n\n function abs() {\n var data = this._data;\n this._milliseconds = mathAbs(this._milliseconds);\n this._days = mathAbs(this._days);\n this._months = mathAbs(this._months);\n data.milliseconds = mathAbs(data.milliseconds);\n data.seconds = mathAbs(data.seconds);\n data.minutes = mathAbs(data.minutes);\n data.hours = mathAbs(data.hours);\n data.months = mathAbs(data.months);\n data.years = mathAbs(data.years);\n return this;\n }\n\n function addSubtract$1(duration, input, value, direction) {\n var other = createDuration(input, value);\n duration._milliseconds += direction * other._milliseconds;\n duration._days += direction * other._days;\n duration._months += direction * other._months;\n return duration._bubble();\n } // supports only 2.0-style add(1, 's') or add(duration)\n\n\n function add$1(input, value) {\n return addSubtract$1(this, input, value, 1);\n } // supports only 2.0-style subtract(1, 's') or subtract(duration)\n\n\n function subtract$1(input, value) {\n return addSubtract$1(this, input, value, -1);\n }\n\n function absCeil(number) {\n if (number < 0) {\n return Math.floor(number);\n } else {\n return Math.ceil(number);\n }\n }\n\n function bubble() {\n var milliseconds = this._milliseconds;\n var days = this._days;\n var months = this._months;\n var data = this._data;\n var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first\n // check: https://github.com/moment/moment/issues/2166\n\n if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) {\n milliseconds += absCeil(monthsToDays(months) + days) * 864e5;\n days = 0;\n months = 0;\n } // The following code bubbles up values, see the tests for\n // examples of what that means.\n\n\n data.milliseconds = milliseconds % 1000;\n seconds = absFloor(milliseconds / 1000);\n data.seconds = seconds % 60;\n minutes = absFloor(seconds / 60);\n data.minutes = minutes % 60;\n hours = absFloor(minutes / 60);\n data.hours = hours % 24;\n days += absFloor(hours / 24); // convert days to months\n\n monthsFromDays = absFloor(daysToMonths(days));\n months += monthsFromDays;\n days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year\n\n years = absFloor(months / 12);\n months %= 12;\n data.days = days;\n data.months = months;\n data.years = years;\n return this;\n }\n\n function daysToMonths(days) {\n // 400 years have 146097 days (taking into account leap year rules)\n // 400 years have 12 months === 4800\n return days * 4800 / 146097;\n }\n\n function monthsToDays(months) {\n // the reverse of daysToMonths\n return months * 146097 / 4800;\n }\n\n function as(units) {\n if (!this.isValid()) {\n return NaN;\n }\n\n var days;\n var months;\n var milliseconds = this._milliseconds;\n units = normalizeUnits(units);\n\n if (units === 'month' || units === 'quarter' || units === 'year') {\n days = this._days + milliseconds / 864e5;\n months = this._months + daysToMonths(days);\n\n switch (units) {\n case 'month':\n return months;\n\n case 'quarter':\n return months / 3;\n\n case 'year':\n return months / 12;\n }\n } else {\n // handle milliseconds separately because of floating point math errors (issue #1867)\n days = this._days + Math.round(monthsToDays(this._months));\n\n switch (units) {\n case 'week':\n return days / 7 + milliseconds / 6048e5;\n\n case 'day':\n return days + milliseconds / 864e5;\n\n case 'hour':\n return days * 24 + milliseconds / 36e5;\n\n case 'minute':\n return days * 1440 + milliseconds / 6e4;\n\n case 'second':\n return days * 86400 + milliseconds / 1000;\n // Math.floor prevents floating point math errors here\n\n case 'millisecond':\n return Math.floor(days * 864e5) + milliseconds;\n\n default:\n throw new Error('Unknown unit ' + units);\n }\n }\n } // TODO: Use this.as('ms')?\n\n\n function valueOf$1() {\n if (!this.isValid()) {\n return NaN;\n }\n\n return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6;\n }\n\n function makeAs(alias) {\n return function () {\n return this.as(alias);\n };\n }\n\n var asMilliseconds = makeAs('ms');\n var asSeconds = makeAs('s');\n var asMinutes = makeAs('m');\n var asHours = makeAs('h');\n var asDays = makeAs('d');\n var asWeeks = makeAs('w');\n var asMonths = makeAs('M');\n var asQuarters = makeAs('Q');\n var asYears = makeAs('y');\n\n function clone$1() {\n return createDuration(this);\n }\n\n function get$2(units) {\n units = normalizeUnits(units);\n return this.isValid() ? this[units + 's']() : NaN;\n }\n\n function makeGetter(name) {\n return function () {\n return this.isValid() ? this._data[name] : NaN;\n };\n }\n\n var milliseconds = makeGetter('milliseconds');\n var seconds = makeGetter('seconds');\n var minutes = makeGetter('minutes');\n var hours = makeGetter('hours');\n var days = makeGetter('days');\n var months = makeGetter('months');\n var years = makeGetter('years');\n\n function weeks() {\n return absFloor(this.days() / 7);\n }\n\n var round = Math.round;\n var thresholds = {\n ss: 44,\n // a few seconds to seconds\n s: 45,\n // seconds to minute\n m: 45,\n // minutes to hour\n h: 22,\n // hours to day\n d: 26,\n // days to month\n M: 11 // months to year\n\n }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize\n\n function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {\n return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);\n }\n\n function relativeTime$1(posNegDuration, withoutSuffix, locale) {\n var duration = createDuration(posNegDuration).abs();\n var seconds = round(duration.as('s'));\n var minutes = round(duration.as('m'));\n var hours = round(duration.as('h'));\n var days = round(duration.as('d'));\n var months = round(duration.as('M'));\n var years = round(duration.as('y'));\n var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years];\n a[2] = withoutSuffix;\n a[3] = +posNegDuration > 0;\n a[4] = locale;\n return substituteTimeAgo.apply(null, a);\n } // This function allows you to set the rounding function for relative time strings\n\n\n function getSetRelativeTimeRounding(roundingFunction) {\n if (roundingFunction === undefined) {\n return round;\n }\n\n if (typeof roundingFunction === 'function') {\n round = roundingFunction;\n return true;\n }\n\n return false;\n } // This function allows you to set a threshold for relative time strings\n\n\n function getSetRelativeTimeThreshold(threshold, limit) {\n if (thresholds[threshold] === undefined) {\n return false;\n }\n\n if (limit === undefined) {\n return thresholds[threshold];\n }\n\n thresholds[threshold] = limit;\n\n if (threshold === 's') {\n thresholds.ss = limit - 1;\n }\n\n return true;\n }\n\n function humanize(withSuffix) {\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var locale = this.localeData();\n var output = relativeTime$1(this, !withSuffix, locale);\n\n if (withSuffix) {\n output = locale.pastFuture(+this, output);\n }\n\n return locale.postformat(output);\n }\n\n var abs$1 = Math.abs;\n\n function sign(x) {\n return (x > 0) - (x < 0) || +x;\n }\n\n function toISOString$1() {\n // for ISO strings we do not use the normal bubbling rules:\n // * milliseconds bubble up until they become hours\n // * days do not bubble at all\n // * months bubble up until they become years\n // This is because there is no context-free conversion between hours and days\n // (think of clock changes)\n // and also not between days and months (28-31 days per month)\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var seconds = abs$1(this._milliseconds) / 1000;\n var days = abs$1(this._days);\n var months = abs$1(this._months);\n var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour\n\n minutes = absFloor(seconds / 60);\n hours = absFloor(minutes / 60);\n seconds %= 60;\n minutes %= 60; // 12 months -> 1 year\n\n years = absFloor(months / 12);\n months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js\n\n var Y = years;\n var M = months;\n var D = days;\n var h = hours;\n var m = minutes;\n var s = seconds ? seconds.toFixed(3).replace(/\\.?0+$/, '') : '';\n var total = this.asSeconds();\n\n if (!total) {\n // this is the same as C#'s (Noda) and python (isodate)...\n // but not other JS (goog.date)\n return 'P0D';\n }\n\n var totalSign = total < 0 ? '-' : '';\n var ymSign = sign(this._months) !== sign(total) ? '-' : '';\n var daysSign = sign(this._days) !== sign(total) ? '-' : '';\n var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : '';\n return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : '');\n }\n\n var proto$2 = Duration.prototype;\n proto$2.isValid = isValid$1;\n proto$2.abs = abs;\n proto$2.add = add$1;\n proto$2.subtract = subtract$1;\n proto$2.as = as;\n proto$2.asMilliseconds = asMilliseconds;\n proto$2.asSeconds = asSeconds;\n proto$2.asMinutes = asMinutes;\n proto$2.asHours = asHours;\n proto$2.asDays = asDays;\n proto$2.asWeeks = asWeeks;\n proto$2.asMonths = asMonths;\n proto$2.asQuarters = asQuarters;\n proto$2.asYears = asYears;\n proto$2.valueOf = valueOf$1;\n proto$2._bubble = bubble;\n proto$2.clone = clone$1;\n proto$2.get = get$2;\n proto$2.milliseconds = milliseconds;\n proto$2.seconds = seconds;\n proto$2.minutes = minutes;\n proto$2.hours = hours;\n proto$2.days = days;\n proto$2.weeks = weeks;\n proto$2.months = months;\n proto$2.years = years;\n proto$2.humanize = humanize;\n proto$2.toISOString = toISOString$1;\n proto$2.toString = toISOString$1;\n proto$2.toJSON = toISOString$1;\n proto$2.locale = locale;\n proto$2.localeData = localeData;\n proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);\n proto$2.lang = lang; // Side effect imports\n // FORMATTING\n\n addFormatToken('X', 0, 0, 'unix');\n addFormatToken('x', 0, 0, 'valueOf'); // PARSING\n\n addRegexToken('x', matchSigned);\n addRegexToken('X', matchTimestamp);\n addParseToken('X', function (input, array, config) {\n config._d = new Date(parseFloat(input, 10) * 1000);\n });\n addParseToken('x', function (input, array, config) {\n config._d = new Date(toInt(input));\n }); // Side effect imports\n\n hooks.version = '2.24.0';\n setHookCallback(createLocal);\n hooks.fn = proto;\n hooks.min = min;\n hooks.max = max;\n hooks.now = now;\n hooks.utc = createUTC;\n hooks.unix = createUnix;\n hooks.months = listMonths;\n hooks.isDate = isDate;\n hooks.locale = getSetGlobalLocale;\n hooks.invalid = createInvalid;\n hooks.duration = createDuration;\n hooks.isMoment = isMoment;\n hooks.weekdays = listWeekdays;\n hooks.parseZone = createInZone;\n hooks.localeData = getLocale;\n hooks.isDuration = isDuration;\n hooks.monthsShort = listMonthsShort;\n hooks.weekdaysMin = listWeekdaysMin;\n hooks.defineLocale = defineLocale;\n hooks.updateLocale = updateLocale;\n hooks.locales = listLocales;\n hooks.weekdaysShort = listWeekdaysShort;\n hooks.normalizeUnits = normalizeUnits;\n hooks.relativeTimeRounding = getSetRelativeTimeRounding;\n hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;\n hooks.calendarFormat = getCalendarFormat;\n hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats\n\n hooks.HTML5_FMT = {\n DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm',\n // \n DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss',\n // \n DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS',\n // \n DATE: 'YYYY-MM-DD',\n // \n TIME: 'HH:mm',\n // \n TIME_SECONDS: 'HH:mm:ss',\n // \n TIME_MS: 'HH:mm:ss.SSS',\n // \n WEEK: 'GGGG-[W]WW',\n // \n MONTH: 'YYYY-MM' // \n\n };\n return hooks;\n });\n});\n\n// Maps for number <-> hex string conversion\nvar byteToHex = [];\n\nfor (var i = 0; i < 256; i++) {\n byteToHex[i] = (i + 0x100).toString(16).substr(1);\n}\n/**\n * Represent binary UUID into it's string representation.\n *\n * @param buf - Buffer containing UUID bytes.\n * @param offset - Offset from the start of the buffer where the UUID is saved (not needed if the buffer starts with the UUID).\n *\n * @returns String representation of the UUID.\n */\n\n\nfunction stringifyUUID(buf, offset) {\n var i = offset || 0;\n var bth = byteToHex;\n return bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]];\n}\n/**\n * Generate 16 random bytes to be used as a base for UUID.\n *\n * @ignore\n */\n\n\nvar random = function () {\n if (typeof crypto !== 'undefined' && crypto.getRandomValues) {\n // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto\n // Moderately fast, high quality\n var _rnds8 = new Uint8Array(16);\n\n return function whatwgRNG() {\n crypto.getRandomValues(_rnds8);\n return _rnds8;\n };\n } // Math.random()-based (RNG)\n //\n // If all else fails, use Math.random().\n // It's fast, but is of unspecified quality.\n\n\n var _rnds = new Array(16);\n\n return function () {\n for (var i = 0, r; i < 16; i++) {\n if ((i & 0x03) === 0) {\n r = Math.random() * 0x100000000;\n }\n\n _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;\n }\n\n return _rnds;\n }; // uuid.js\n //\n // Copyright (c) 2010-2012 Robert Kieffer\n // MIT License - http://opensource.org/licenses/mit-license.php\n // Unique ID creation requires a high quality random # generator. We feature\n // detect to determine the best RNG source, normalizing to a function that\n // returns 128-bits of randomness, since that's what's usually required\n // return require('./rng');\n}();\n\nvar byteToHex$1 = [];\n\nfor (var i$1 = 0; i$1 < 256; i$1++) {\n byteToHex$1[i$1] = (i$1 + 0x100).toString(16).substr(1);\n} // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n// random #'s we need to init node and clockseq\n\n\nvar seedBytes = random(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n\nvar defaultNodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; // Per 4.2.2, randomize (14 bit) clockseq\n\nvar defaultClockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; // Previous uuid creation time\n/**\n * UUIDv4 options.\n */\n\n/**\n * Generate UUIDv4\n *\n * @param options - Options to be used instead of default generated values.\n * String 'binary' is a shorthand for uuid4({}, new Array(16)).\n * @param buf - If present the buffer will be filled with the generated UUID.\n * @param offset - Offset of the UUID from the start of the buffer.\n *\n * @returns UUIDv4\n */\n\n\nfunction uuid4() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var buf = arguments.length > 1 ? arguments[1] : undefined;\n var offset = arguments.length > 2 ? arguments[2] : undefined; // Deprecated - 'format' argument, as supported in v1.2\n\n var i = buf && offset || 0;\n\n if (typeof options === 'string') {\n buf = options === 'binary' ? new Array(16) : undefined;\n options = {};\n }\n\n var rnds = options.random || (options.rng || random)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n\n rnds[6] = rnds[6] & 0x0f | 0x40;\n rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided\n\n if (buf) {\n for (var ii = 0; ii < 16; ii++) {\n buf[i + ii] = rnds[ii];\n }\n }\n\n return buf || stringifyUUID(rnds);\n} // Rollup will complain about mixing default and named exports in UMD build,\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { keys.push.apply(keys, Object.getOwnPropertySymbols(object)); } if (enumerableOnly) keys = keys.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n// for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/'\n// code from http://momentjs.com/\n\nvar ASPDateRegex = /^\\/?Date\\((-?\\d+)/i; // Hex color\n\nvar fullHexRE = /^#?([a-f\\d]{2})([a-f\\d]{2})([a-f\\d]{2})$/i;\nvar shortHexRE = /^#?([a-f\\d])([a-f\\d])([a-f\\d])$/i;\n/**\n * Hue, Saturation, Value.\n */\n\n/**\n * Test whether given object is a number\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if number, false otherwise.\n */\nfunction isNumber(value) {\n return value instanceof Number || typeof value === 'number';\n}\n/**\n * Remove everything in the DOM object\n *\n * @param DOMobject - Node whose child nodes will be recursively deleted.\n */\n\nfunction recursiveDOMDelete(DOMobject) {\n if (DOMobject) {\n while (DOMobject.hasChildNodes() === true) {\n var child = DOMobject.firstChild;\n\n if (child) {\n recursiveDOMDelete(child);\n DOMobject.removeChild(child);\n }\n }\n }\n}\n/**\n * Test whether given object is a string\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if string, false otherwise.\n */\n\nfunction isString(value) {\n return value instanceof String || typeof value === 'string';\n}\n/**\n * Test whether given object is a object (not primitive or null).\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if not null object, false otherwise.\n */\n\nfunction isObject(value) {\n return _typeof_1(value) === 'object' && value !== null;\n}\n/**\n * Test whether given object is a Date, or a String containing a Date\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if Date instance or string date representation, false otherwise.\n */\n\nfunction isDate(value) {\n if (value instanceof Date) {\n return true;\n } else if (isString(value)) {\n // test whether this string contains a date\n var match = ASPDateRegex.exec(value);\n\n if (match) {\n return true;\n } else if (!isNaN(Date.parse(value))) {\n return true;\n }\n }\n\n return false;\n}\n/**\n * Test whether given object is a Moment date.\n * @TODO: This is basically a workaround, if Moment was imported property it wouldn't necessary as moment.isMoment is a TS type guard.\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if Moment instance, false otherwise.\n */\n\nfunction isMoment(value) {\n return moment.isMoment(value);\n}\n/**\n * Copy property from b to a if property present in a.\n * If property in b explicitly set to null, delete it if `allowDeletion` set.\n *\n * Internal helper routine, should not be exported. Not added to `exports` for that reason.\n *\n * @param a - Target object.\n * @param b - Source object.\n * @param prop - Name of property to copy from b to a.\n * @param allowDeletion if true, delete property in a if explicitly set to null in b\n */\n\nfunction copyOrDelete(a, b, prop, allowDeletion) {\n var doDeletion = false;\n\n if (allowDeletion === true) {\n doDeletion = b[prop] === null && a[prop] !== undefined;\n }\n\n if (doDeletion) {\n delete a[prop];\n } else {\n a[prop] = b[prop]; // Remember, this is a reference copy!\n }\n}\n/**\n * Fill an object with a possibly partially defined other object.\n *\n * Only copies values for the properties already present in a.\n * That means an object is not created on a property if only the b object has it.\n *\n * @param a - The object that will have it's properties updated.\n * @param b - The object with property updates.\n * @param allowDeletion - if true, delete properties in a that are explicitly set to null in b\n */\n\n\nfunction fillIfDefined(a, b) {\n var allowDeletion = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n // NOTE: iteration of properties of a\n // NOTE: prototype properties iterated over as well\n for (var prop in a) {\n if (b[prop] !== undefined) {\n if (b[prop] === null || _typeof_1(b[prop]) !== 'object') {\n // Note: typeof null === 'object'\n copyOrDelete(a, b, prop, allowDeletion);\n } else {\n var aProp = a[prop];\n var bProp = b[prop];\n\n if (isObject(aProp) && isObject(bProp)) {\n fillIfDefined(aProp, bProp, allowDeletion);\n }\n }\n }\n }\n}\n/**\n * Copy the values of all of the enumerable own properties from one or more source objects to a\n * target object. Returns the target object.\n *\n * @param target - The target object to copy to.\n * @param source - The source object from which to copy properties.\n *\n * @return The target object.\n */\n\nvar extend = Object.assign;\n/**\n * Extend object a with selected properties of object b or a series of objects\n * Only properties with defined values are copied\n *\n * @param props - Properties to be copied to a.\n * @param a - The target.\n * @param others - The sources.\n *\n * @returns Argument a.\n */\n\nfunction selectiveExtend(props, a) {\n if (!Array.isArray(props)) {\n throw new Error('Array with property names expected as first argument');\n }\n\n for (var _len = arguments.length, others = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++) {\n others[_key - 2] = arguments[_key];\n }\n\n for (var _i = 0, _others = others; _i < _others.length; _i++) {\n var other = _others[_i];\n\n for (var p = 0; p < props.length; p++) {\n var prop = props[p];\n\n if (other && Object.prototype.hasOwnProperty.call(other, prop)) {\n a[prop] = other[prop];\n }\n }\n }\n\n return a;\n}\n/**\n * Extend object a with selected properties of object b.\n * Only properties with defined values are copied.\n *\n * **Note:** Previous version of this routine implied that multiple source objects\n * could be used; however, the implementation was **wrong**.\n * Since multiple (>1) sources weren't used anywhere in the `vis.js` code,\n * this has been removed\n *\n * @param props - Names of first-level properties to copy over.\n * @param a - Target object.\n * @param b - Source object.\n * @param allowDeletion - If true, delete property in a if explicitly set to null in b.\n *\n * @returns Argument a.\n */\n\nfunction selectiveDeepExtend(props, a, b) {\n var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;\n\n // TODO: add support for Arrays to deepExtend\n if (Array.isArray(b)) {\n throw new TypeError('Arrays are not supported by deepExtend');\n }\n\n for (var p = 0; p < props.length; p++) {\n var prop = props[p];\n\n if (Object.prototype.hasOwnProperty.call(b, prop)) {\n if (b[prop] && b[prop].constructor === Object) {\n if (a[prop] === undefined) {\n a[prop] = {};\n }\n\n if (a[prop].constructor === Object) {\n deepExtend(a[prop], b[prop], false, allowDeletion);\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n } else if (Array.isArray(b[prop])) {\n throw new TypeError('Arrays are not supported by deepExtend');\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n }\n }\n\n return a;\n}\n/**\n * Extend object `a` with properties of object `b`, ignoring properties which are explicitly\n * specified to be excluded.\n *\n * The properties of `b` are considered for copying.\n * Properties which are themselves objects are are also extended.\n * Only properties with defined values are copied\n *\n * @param propsToExclude - Names of properties which should *not* be copied.\n * @param a - Object to extend.\n * @param b - Object to take properties from for extension.\n * @param allowDeletion - If true, delete properties in a that are explicitly set to null in b.\n *\n * @returns Argument a.\n */\n\nfunction selectiveNotDeepExtend(propsToExclude, a, b) {\n var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;\n\n // TODO: add support for Arrays to deepExtend\n // NOTE: array properties have an else-below; apparently, there is a problem here.\n if (Array.isArray(b)) {\n throw new TypeError('Arrays are not supported by deepExtend');\n }\n\n for (var prop in b) {\n if (!Object.prototype.hasOwnProperty.call(b, prop)) {\n continue;\n } // Handle local properties only\n\n\n if (propsToExclude.indexOf(prop) !== -1) {\n continue;\n } // In exclusion list, skip\n\n\n if (b[prop] && b[prop].constructor === Object) {\n if (a[prop] === undefined) {\n a[prop] = {};\n }\n\n if (a[prop].constructor === Object) {\n deepExtend(a[prop], b[prop]); // NOTE: allowDeletion not propagated!\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n } else if (Array.isArray(b[prop])) {\n a[prop] = [];\n\n for (var i = 0; i < b[prop].length; i++) {\n a[prop].push(b[prop][i]);\n }\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n }\n\n return a;\n}\n/**\n * Deep extend an object a with the properties of object b\n *\n * @param a - Target object.\n * @param b - Source object.\n * @param protoExtend - If true, the prototype values will also be extended\n * (ie. the options objects that inherit from others will also get the inherited options).\n * @param allowDeletion - If true, the values of fields that are null will be deleted.\n *\n * @returns Argument a.\n */\n\nfunction deepExtend(a, b) {\n var protoExtend = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n var allowDeletion = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;\n\n for (var prop in b) {\n if (Object.prototype.hasOwnProperty.call(b, prop) || protoExtend === true) {\n if (b[prop] && b[prop].constructor === Object) {\n if (a[prop] === undefined) {\n a[prop] = {};\n }\n\n if (a[prop].constructor === Object) {\n deepExtend(a[prop], b[prop], protoExtend); // NOTE: allowDeletion not propagated!\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n } else if (Array.isArray(b[prop])) {\n a[prop] = [];\n\n for (var i = 0; i < b[prop].length; i++) {\n a[prop].push(b[prop][i]);\n }\n } else {\n copyOrDelete(a, b, prop, allowDeletion);\n }\n }\n }\n\n return a;\n}\n/**\n * Test whether all elements in two arrays are equal.\n *\n * @param a - First array.\n * @param b - Second array.\n *\n * @returns True if both arrays have the same length and same elements (1 = '1').\n */\n\nfunction equalArray(a, b) {\n if (a.length !== b.length) {\n return false;\n }\n\n for (var i = 0, len = a.length; i < len; i++) {\n if (a[i] != b[i]) {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Convert an object into another type\n *\n * @param object - Value of unknown type.\n * @param type - Name of the desired type.\n *\n * @returns Object in the desired type.\n * @throws Error\n */\nfunction convert(object, type) {\n var match;\n\n if (object === undefined) {\n return undefined;\n }\n\n if (object === null) {\n return null;\n }\n\n if (!type) {\n return object;\n }\n\n if (!(typeof type === 'string') && !(type instanceof String)) {\n throw new Error('Type must be a string');\n } //noinspection FallthroughInSwitchStatementJS\n\n\n switch (type) {\n case 'boolean':\n case 'Boolean':\n return Boolean(object);\n\n case 'number':\n case 'Number':\n if (isString(object) && !isNaN(Date.parse(object))) {\n return moment(object).valueOf();\n } else {\n // @TODO: I don't think that Number and String constructors are a good idea.\n // This could also fail if the object doesn't have valueOf method or if it's redefined.\n // For example: Object.create(null) or { valueOf: 7 }.\n return Number(object.valueOf());\n }\n\n case 'string':\n case 'String':\n return String(object);\n\n case 'Date':\n if (isNumber(object)) {\n return new Date(object);\n }\n\n if (object instanceof Date) {\n return new Date(object.valueOf());\n } else if (isMoment(object)) {\n return new Date(object.valueOf());\n }\n\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])); // parse number\n } else {\n return moment(new Date(object)).toDate(); // parse string\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date');\n }\n\n case 'Moment':\n if (isNumber(object)) {\n return moment(object);\n }\n\n if (object instanceof Date) {\n return moment(object.valueOf());\n } else if (isMoment(object)) {\n return moment(object);\n }\n\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return moment(Number(match[1])); // parse number\n } else {\n return moment(object); // parse string\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date');\n }\n\n case 'ISODate':\n if (isNumber(object)) {\n return new Date(object);\n } else if (object instanceof Date) {\n return object.toISOString();\n } else if (isMoment(object)) {\n return object.toDate().toISOString();\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])).toISOString(); // parse number\n } else {\n return moment(object).format(); // ISO 8601\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type ISODate');\n }\n\n case 'ASPDate':\n if (isNumber(object)) {\n return '/Date(' + object + ')/';\n } else if (object instanceof Date || isMoment(object)) {\n return '/Date(' + object.valueOf() + ')/';\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n var _value;\n\n if (match) {\n // object is an ASP date\n _value = new Date(Number(match[1])).valueOf(); // parse number\n } else {\n _value = new Date(object).valueOf(); // parse string\n }\n\n return '/Date(' + _value + ')/';\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type ASPDate');\n }\n\n default:\n var never = type;\n throw new Error(\"Unknown type \".concat(never));\n }\n}\n/**\n * Get the type of an object, for example exports.getType([]) returns 'Array'\n *\n * @param object - Input value of unknown type.\n *\n * @returns Detected type.\n */\n\nfunction getType(object) {\n var type = _typeof_1(object);\n\n if (type === 'object') {\n if (object === null) {\n return 'null';\n }\n\n if (object instanceof Boolean) {\n return 'Boolean';\n }\n\n if (object instanceof Number) {\n return 'Number';\n }\n\n if (object instanceof String) {\n return 'String';\n }\n\n if (Array.isArray(object)) {\n return 'Array';\n }\n\n if (object instanceof Date) {\n return 'Date';\n }\n\n return 'Object';\n }\n\n if (type === 'number') {\n return 'Number';\n }\n\n if (type === 'boolean') {\n return 'Boolean';\n }\n\n if (type === 'string') {\n return 'String';\n }\n\n if (type === undefined) {\n return 'undefined';\n }\n\n return type;\n}\n\n/**\n * Used to extend an array and copy it. This is used to propagate paths recursively.\n *\n * @param arr - First part.\n * @param newValue - The value to be aadded into the array.\n *\n * @returns A new array with all items from arr and newValue (which is last).\n */\nfunction copyAndExtendArray(arr, newValue) {\n return [].concat(toConsumableArray(arr), [newValue]);\n}\n/**\n * Used to extend an array and copy it. This is used to propagate paths recursively.\n *\n * @param arr - The array to be copied.\n *\n * @returns Shallow copy of arr.\n */\n\nfunction copyArray(arr) {\n return arr.slice();\n}\n/**\n * Retrieve the absolute left value of a DOM element\n *\n * @param elem - A dom element, for example a div.\n *\n * @returns The absolute left position of this element in the browser page.\n */\n\nfunction getAbsoluteLeft(elem) {\n return elem.getBoundingClientRect().left;\n}\n/**\n * Retrieve the absolute right value of a DOM element\n *\n * @param elem - A dom element, for example a div.\n *\n * @returns The absolute right position of this element in the browser page.\n */\n\nfunction getAbsoluteRight(elem) {\n return elem.getBoundingClientRect().right;\n}\n/**\n * Retrieve the absolute top value of a DOM element\n *\n * @param elem - A dom element, for example a div.\n *\n * @returns The absolute top position of this element in the browser page.\n */\n\nfunction getAbsoluteTop(elem) {\n return elem.getBoundingClientRect().top;\n}\n/**\n * Add a className to the given elements style.\n *\n * @param elem - The element to which the classes will be added.\n * @param classNames - Space separated list of classes.\n */\n\nfunction addClassName(elem, classNames) {\n var classes = elem.className.split(' ');\n var newClasses = classNames.split(' ');\n classes = classes.concat(newClasses.filter(function (className) {\n return classes.indexOf(className) < 0;\n }));\n elem.className = classes.join(' ');\n}\n/**\n * Remove a className from the given elements style.\n *\n * @param elem - The element from which the classes will be removed.\n * @param classNames - Space separated list of classes.\n */\n\nfunction removeClassName(elem, classNames) {\n var classes = elem.className.split(' ');\n var oldClasses = classNames.split(' ');\n classes = classes.filter(function (className) {\n return oldClasses.indexOf(className) < 0;\n });\n elem.className = classes.join(' ');\n}\n\n/**\n * For each method for both arrays and objects.\n * In case of an array, the built-in Array.forEach() is applied (**No, it's not!**).\n * In case of an Object, the method loops over all properties of the object.\n *\n * @param object - An Object or Array to be iterated over.\n * @param callback - Array.forEach-like callback.\n */\nfunction forEach(object, callback) {\n if (Array.isArray(object)) {\n // array\n var len = object.length;\n\n for (var i = 0; i < len; i++) {\n callback(object[i], i, object);\n }\n } else {\n // object\n for (var _key2 in object) {\n if (Object.prototype.hasOwnProperty.call(object, _key2)) {\n callback(object[_key2], _key2, object);\n }\n }\n }\n}\n/**\n * Convert an object into an array: all objects properties are put into the array. The resulting array is unordered.\n *\n * @param o - Object that contains the properties and methods.\n *\n * @returns An array of unordered values.\n */\n\nvar toArray = Object.values;\n/**\n * Update a property in an object\n *\n * @param object - The object whose property will be updated.\n * @param key - Name of the property to be updated.\n * @param value - The new value to be assigned.\n *\n * @returns Whether the value was updated (true) or already strictly the same in the original object (false).\n */\n\nfunction updateProperty(object, key, value) {\n if (object[key] !== value) {\n object[key] = value;\n return true;\n } else {\n return false;\n }\n}\n/**\n * Throttle the given function to be only executed once per animation frame.\n *\n * @param fn - The original function.\n *\n * @returns The throttled function.\n */\n\nfunction throttle(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n requestAnimationFrame(function () {\n scheduled = false;\n fn();\n });\n }\n };\n}\n/**\n * Add and event listener. Works for all browsers.\n *\n * @param element - The element to bind the event listener to.\n * @param action - Same as Element.addEventListener(action, —, —).\n * @param listener - Same as Element.addEventListener(—, listener, —).\n * @param useCapture - Same as Element.addEventListener(—, —, useCapture).\n */\n\nfunction addEventListener(element, action, listener, useCapture) {\n if (element.addEventListener) {\n if (useCapture === undefined) {\n useCapture = false;\n }\n\n if (action === 'mousewheel' && navigator.userAgent.indexOf('Firefox') >= 0) {\n action = 'DOMMouseScroll'; // For Firefox\n }\n\n element.addEventListener(action, listener, useCapture);\n } else {\n element.attachEvent('on' + action, listener); // IE browsers\n }\n}\n/**\n * Remove an event listener from an element\n *\n * @param element - The element to bind the event listener to.\n * @param action - Same as Element.removeEventListener(action, —, —).\n * @param listener - Same as Element.removeEventListener(—, listener, —).\n * @param useCapture - Same as Element.removeEventListener(—, —, useCapture).\n */\n\nfunction removeEventListener(element, action, listener, useCapture) {\n if (element.removeEventListener) {\n // non-IE browsers\n if (useCapture === undefined) {\n useCapture = false;\n }\n\n if (action === 'mousewheel' && navigator.userAgent.indexOf('Firefox') >= 0) {\n action = 'DOMMouseScroll'; // For Firefox\n }\n\n element.removeEventListener(action, listener, useCapture);\n } else {\n element.detachEvent('on' + action, listener); // IE browsers\n }\n}\n/**\n * Cancels the event's default action if it is cancelable, without stopping further propagation of the event.\n *\n * @param event - The event whose default action should be prevented.\n */\n\nfunction preventDefault(event) {\n if (!event) {\n event = window.event;\n }\n\n if (!event) ; else if (event.preventDefault) {\n event.preventDefault(); // non-IE browsers\n } else {\n event.returnValue = false; // IE browsers\n }\n}\n/**\n * Get HTML element which is the target of the event.\n *\n * @param event - The event.\n *\n * @returns The element or null if not obtainable.\n */\n\nfunction getTarget() {\n var event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : window.event;\n // code from http://www.quirksmode.org/js/events_properties.html\n // @TODO: EventTarget can be almost anything, is it okay to return only Elements?\n var target = null;\n\n if (!event) ; else if (event.target) {\n target = event.target;\n } else if (event.srcElement) {\n target = event.srcElement;\n }\n\n if (!(target instanceof Element)) {\n return null;\n }\n\n if (target.nodeType != null && target.nodeType == 3) {\n // defeat Safari bug\n target = target.parentNode;\n\n if (!(target instanceof Element)) {\n return null;\n }\n }\n\n return target;\n}\n/**\n * Check if given element contains given parent somewhere in the DOM tree\n *\n * @param element - The element to be tested.\n * @param parent - The ancestor (not necessarily parent) of the element.\n *\n * @returns True if parent is an ancestor of the element, false otherwise.\n */\n\nfunction hasParent(element, parent) {\n var elem = element;\n\n while (elem) {\n if (elem === parent) {\n return true;\n } else if (elem.parentNode) {\n elem = elem.parentNode;\n } else {\n return false;\n }\n }\n\n return false;\n}\nvar option = {\n /**\n * Convert a value into a boolean.\n *\n * @param value - Value to be converted intoboolean, a function will be executed as (() => unknown).\n * @param defaultValue - If the value or the return value of the function == null then this will be returned.\n *\n * @returns Corresponding boolean value, if none then the default value, if none then null.\n */\n asBoolean: function asBoolean(value, defaultValue) {\n if (typeof value == 'function') {\n value = value();\n }\n\n if (value != null) {\n return value != false;\n }\n\n return defaultValue || null;\n },\n\n /**\n * Convert a value into a number.\n *\n * @param value - Value to be converted intonumber, a function will be executed as (() => unknown).\n * @param defaultValue - If the value or the return value of the function == null then this will be returned.\n *\n * @returns Corresponding **boxed** number value, if none then the default value, if none then null.\n */\n asNumber: function asNumber(value, defaultValue) {\n if (typeof value == 'function') {\n value = value();\n }\n\n if (value != null) {\n return Number(value) || defaultValue || null;\n }\n\n return defaultValue || null;\n },\n\n /**\n * Convert a value into a string.\n *\n * @param value - Value to be converted intostring, a function will be executed as (() => unknown).\n * @param defaultValue - If the value or the return value of the function == null then this will be returned.\n *\n * @returns Corresponding **boxed** string value, if none then the default value, if none then null.\n */\n asString: function asString(value, defaultValue) {\n if (typeof value == 'function') {\n value = value();\n }\n\n if (value != null) {\n return String(value);\n }\n\n return defaultValue || null;\n },\n\n /**\n * Convert a value into a size.\n *\n * @param value - Value to be converted intosize, a function will be executed as (() => unknown).\n * @param defaultValue - If the value or the return value of the function == null then this will be returned.\n *\n * @returns Corresponding string value (number + 'px'), if none then the default value, if none then null.\n */\n asSize: function asSize(value, defaultValue) {\n if (typeof value == 'function') {\n value = value();\n }\n\n if (isString(value)) {\n return value;\n } else if (isNumber(value)) {\n return value + 'px';\n } else {\n return defaultValue || null;\n }\n },\n\n /**\n * Convert a value into a DOM Element.\n *\n * @param value - Value to be converted into DOM Element, a function will be executed as (() => unknown).\n * @param defaultValue - If the value or the return value of the function == null then this will be returned.\n *\n * @returns The DOM Element, if none then the default value, if none then null.\n */\n asElement: function asElement(value, defaultValue) {\n if (typeof value == 'function') {\n value = value();\n }\n\n return value || defaultValue || null;\n }\n};\n/**\n * Convert hex color string into RGB color object.\n * http://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb\n *\n * @param hex - Hex color string (3 or 6 digits, with or without #).\n *\n * @returns RGB color object.\n */\n\nfunction hexToRGB(hex) {\n var result;\n\n switch (hex.length) {\n case 3:\n case 4:\n result = shortHexRE.exec(hex);\n return result ? {\n r: parseInt(result[1] + result[1], 16),\n g: parseInt(result[2] + result[2], 16),\n b: parseInt(result[3] + result[3], 16)\n } : null;\n\n case 6:\n case 7:\n result = fullHexRE.exec(hex);\n return result ? {\n r: parseInt(result[1], 16),\n g: parseInt(result[2], 16),\n b: parseInt(result[3], 16)\n } : null;\n\n default:\n return null;\n }\n}\n/**\n * This function takes string color in hex or RGB format and adds the opacity, RGBA is passed through unchanged.\n *\n * @param color - The color string (hex, RGB, RGBA).\n * @param opacity - The new opacity.\n *\n * @returns RGBA string, for example 'rgba(255, 0, 127, 0.3)'.\n */\n\nfunction overrideOpacity(color, opacity) {\n if (color.indexOf('rgba') !== -1) {\n return color;\n } else if (color.indexOf('rgb') !== -1) {\n var rgb = color.substr(color.indexOf('(') + 1).replace(')', '').split(',');\n return 'rgba(' + rgb[0] + ',' + rgb[1] + ',' + rgb[2] + ',' + opacity + ')';\n } else {\n var _rgb = hexToRGB(color);\n\n if (_rgb == null) {\n return color;\n } else {\n return 'rgba(' + _rgb.r + ',' + _rgb.g + ',' + _rgb.b + ',' + opacity + ')';\n }\n }\n}\n/**\n * Convert RGB <0, 255> into hex color string.\n *\n * @param red - Red channel.\n * @param green - Green channel.\n * @param blue - Blue channel.\n *\n * @returns Hex color string (for example: '#0acdc0').\n */\n\nfunction RGBToHex(red, green, blue) {\n return '#' + ((1 << 24) + (red << 16) + (green << 8) + blue).toString(16).slice(1);\n}\n\n/**\n * Parse a color property into an object with border, background, and highlight colors\n *\n * @param inputColor - Shorthand color string or input color object.\n * @param defaultColor - Full color object to fill in missing values in inputColor.\n *\n * @returns Color object.\n */\nfunction parseColor(inputColor, defaultColor) {\n if (isString(inputColor)) {\n var colorStr = inputColor;\n\n if (isValidRGB(colorStr)) {\n var rgb = colorStr.substr(4).substr(0, colorStr.length - 5).split(',').map(function (value) {\n return parseInt(value);\n });\n colorStr = RGBToHex(rgb[0], rgb[1], rgb[2]);\n }\n\n if (isValidHex(colorStr) === true) {\n var hsv = hexToHSV(colorStr);\n var lighterColorHSV = {\n h: hsv.h,\n s: hsv.s * 0.8,\n v: Math.min(1, hsv.v * 1.02)\n };\n var darkerColorHSV = {\n h: hsv.h,\n s: Math.min(1, hsv.s * 1.25),\n v: hsv.v * 0.8\n };\n var darkerColorHex = HSVToHex(darkerColorHSV.h, darkerColorHSV.s, darkerColorHSV.v);\n var lighterColorHex = HSVToHex(lighterColorHSV.h, lighterColorHSV.s, lighterColorHSV.v);\n return {\n background: colorStr,\n border: darkerColorHex,\n highlight: {\n background: lighterColorHex,\n border: darkerColorHex\n },\n hover: {\n background: lighterColorHex,\n border: darkerColorHex\n }\n };\n } else {\n return {\n background: colorStr,\n border: colorStr,\n highlight: {\n background: colorStr,\n border: colorStr\n },\n hover: {\n background: colorStr,\n border: colorStr\n }\n };\n }\n } else {\n if (defaultColor) {\n var color = {\n background: inputColor.background || defaultColor.background,\n border: inputColor.border || defaultColor.border,\n highlight: isString(inputColor.highlight) ? {\n border: inputColor.highlight,\n background: inputColor.highlight\n } : {\n background: inputColor.highlight && inputColor.highlight.background || defaultColor.highlight.background,\n border: inputColor.highlight && inputColor.highlight.border || defaultColor.highlight.border\n },\n hover: isString(inputColor.hover) ? {\n border: inputColor.hover,\n background: inputColor.hover\n } : {\n border: inputColor.hover && inputColor.hover.border || defaultColor.hover.border,\n background: inputColor.hover && inputColor.hover.background || defaultColor.hover.background\n }\n };\n return color;\n } else {\n var _color = {\n background: inputColor.background || undefined,\n border: inputColor.border || undefined,\n highlight: isString(inputColor.highlight) ? {\n border: inputColor.highlight,\n background: inputColor.highlight\n } : {\n background: inputColor.highlight && inputColor.highlight.background || undefined,\n border: inputColor.highlight && inputColor.highlight.border || undefined\n },\n hover: isString(inputColor.hover) ? {\n border: inputColor.hover,\n background: inputColor.hover\n } : {\n border: inputColor.hover && inputColor.hover.border || undefined,\n background: inputColor.hover && inputColor.hover.background || undefined\n }\n };\n return _color;\n }\n }\n}\n/**\n * Convert RGB <0, 255> into HSV object.\n * http://www.javascripter.net/faq/rgb2hsv.htm\n *\n * @param red - Red channel.\n * @param green - Green channel.\n * @param blue - Blue channel.\n *\n * @returns HSV color object.\n */\n\nfunction RGBToHSV(red, green, blue) {\n red = red / 255;\n green = green / 255;\n blue = blue / 255;\n var minRGB = Math.min(red, Math.min(green, blue));\n var maxRGB = Math.max(red, Math.max(green, blue)); // Black-gray-white\n\n if (minRGB === maxRGB) {\n return {\n h: 0,\n s: 0,\n v: minRGB\n };\n } // Colors other than black-gray-white:\n\n\n var d = red === minRGB ? green - blue : blue === minRGB ? red - green : blue - red;\n var h = red === minRGB ? 3 : blue === minRGB ? 1 : 5;\n var hue = 60 * (h - d / (maxRGB - minRGB)) / 360;\n var saturation = (maxRGB - minRGB) / maxRGB;\n var value = maxRGB;\n return {\n h: hue,\n s: saturation,\n v: value\n };\n}\nvar cssUtil = {\n // split a string with css styles into an object with key/values\n split: function split(cssText) {\n var styles = {};\n cssText.split(';').forEach(function (style) {\n if (style.trim() != '') {\n var parts = style.split(':');\n\n var _key3 = parts[0].trim();\n\n var _value2 = parts[1].trim();\n\n styles[_key3] = _value2;\n }\n });\n return styles;\n },\n // build a css text string from an object with key/values\n join: function join(styles) {\n return Object.keys(styles).map(function (key) {\n return key + ': ' + styles[key];\n }).join('; ');\n }\n};\n/**\n * Append a string with css styles to an element\n *\n * @param element - The element that will receive new styles.\n * @param cssText - The styles to be appended.\n */\n\nfunction addCssText(element, cssText) {\n var currentStyles = cssUtil.split(element.style.cssText);\n var newStyles = cssUtil.split(cssText);\n\n var styles = _objectSpread({}, currentStyles, {}, newStyles);\n\n element.style.cssText = cssUtil.join(styles);\n}\n/**\n * Remove a string with css styles from an element\n *\n * @param element - The element from which styles should be removed.\n * @param cssText - The styles to be removed.\n */\n\nfunction removeCssText(element, cssText) {\n var styles = cssUtil.split(element.style.cssText);\n var removeStyles = cssUtil.split(cssText);\n\n for (var _key4 in removeStyles) {\n if (Object.prototype.hasOwnProperty.call(removeStyles, _key4)) {\n delete styles[_key4];\n }\n }\n\n element.style.cssText = cssUtil.join(styles);\n}\n/**\n * Convert HSV <0, 1> into RGB color object.\n * https://gist.github.com/mjijackson/5311256\n *\n * @param h - Hue\n * @param s - Saturation\n * @param v - Value\n *\n * @returns RGB color object.\n */\n\nfunction HSVToRGB(h, s, v) {\n var r;\n var g;\n var b;\n var i = Math.floor(h * 6);\n var f = h * 6 - i;\n var p = v * (1 - s);\n var q = v * (1 - f * s);\n var t = v * (1 - (1 - f) * s);\n\n switch (i % 6) {\n case 0:\n r = v, g = t, b = p;\n break;\n\n case 1:\n r = q, g = v, b = p;\n break;\n\n case 2:\n r = p, g = v, b = t;\n break;\n\n case 3:\n r = p, g = q, b = v;\n break;\n\n case 4:\n r = t, g = p, b = v;\n break;\n\n case 5:\n r = v, g = p, b = q;\n break;\n }\n\n return {\n r: Math.floor(r * 255),\n g: Math.floor(g * 255),\n b: Math.floor(b * 255)\n };\n}\n/**\n * Convert HSV <0, 1> into hex color string.\n *\n * @param h - Hue\n * @param s - Saturation\n * @param v - Value\n *\n * @returns Hex color string.\n */\n\nfunction HSVToHex(h, s, v) {\n var rgb = HSVToRGB(h, s, v);\n return RGBToHex(rgb.r, rgb.g, rgb.b);\n}\n/**\n * Convert hex color string into HSV <0, 1>.\n *\n * @param hex - Hex color string.\n *\n * @returns HSV color object.\n */\n\nfunction hexToHSV(hex) {\n var rgb = hexToRGB(hex);\n\n if (!rgb) {\n throw new TypeError(\"'\".concat(hex, \"' is not a valid color.\"));\n }\n\n return RGBToHSV(rgb.r, rgb.g, rgb.b);\n}\n/**\n * Validate hex color string.\n *\n * @param hex - Unknown string that may contain a color.\n *\n * @returns True if the string is valid, false otherwise.\n */\n\nfunction isValidHex(hex) {\n var isOk = /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(hex);\n return isOk;\n}\n/**\n * Validate RGB color string.\n *\n * @param rgb - Unknown string that may contain a color.\n *\n * @returns True if the string is valid, false otherwise.\n */\n\nfunction isValidRGB(rgb) {\n rgb = rgb.replace(' ', '');\n var isOk = /rgb\\((\\d{1,3}),(\\d{1,3}),(\\d{1,3})\\)/i.test(rgb);\n return isOk;\n}\n/**\n * Validate RGBA color string.\n *\n * @param rgba - Unknown string that may contain a color.\n *\n * @returns True if the string is valid, false otherwise.\n */\n\nfunction isValidRGBA(rgba) {\n rgba = rgba.replace(' ', '');\n var isOk = /rgba\\((\\d{1,3}),(\\d{1,3}),(\\d{1,3}),(0?.{1,3})\\)/i.test(rgba);\n return isOk;\n}\n/**\n * This recursively redirects the prototype of JSON objects to the referenceObject.\n * This is used for default options.\n *\n * @param fields - Names of properties to be bridged.\n * @param referenceObject - The original object.\n *\n * @returns A new object inheriting from the referenceObject.\n */\n\nfunction selectiveBridgeObject(fields, referenceObject) {\n if (referenceObject !== null && _typeof_1(referenceObject) === 'object') {\n // !!! typeof null === 'object'\n var objectTo = Object.create(referenceObject);\n\n for (var i = 0; i < fields.length; i++) {\n if (Object.prototype.hasOwnProperty.call(referenceObject, fields[i])) {\n if (_typeof_1(referenceObject[fields[i]]) == 'object') {\n objectTo[fields[i]] = bridgeObject(referenceObject[fields[i]]);\n }\n }\n }\n\n return objectTo;\n } else {\n return null;\n }\n}\n\n/**\n * This recursively redirects the prototype of JSON objects to the referenceObject.\n * This is used for default options.\n *\n * @param referenceObject - The original object.\n *\n * @returns The Element if the referenceObject is an Element, or a new object inheriting from the referenceObject.\n */\nfunction bridgeObject(referenceObject) {\n if (referenceObject === null || _typeof_1(referenceObject) !== 'object') {\n return null;\n }\n\n if (referenceObject instanceof Element) {\n // Avoid bridging DOM objects\n return referenceObject;\n }\n\n var objectTo = Object.create(referenceObject);\n\n for (var i in referenceObject) {\n if (Object.prototype.hasOwnProperty.call(referenceObject, i)) {\n if (_typeof_1(referenceObject[i]) == 'object') {\n objectTo[i] = bridgeObject(referenceObject[i]);\n }\n }\n }\n\n return objectTo;\n}\n/**\n * This method provides a stable sort implementation, very fast for presorted data.\n *\n * @param a - The array to be sorted (in-place).\n * @param compare - An order comparator.\n *\n * @returns The argument a.\n */\n\nfunction insertSort(a, compare) {\n for (var i = 0; i < a.length; i++) {\n var k = a[i];\n var j = void 0;\n\n for (j = i; j > 0 && compare(k, a[j - 1]) < 0; j--) {\n a[j] = a[j - 1];\n }\n\n a[j] = k;\n }\n\n return a;\n}\n/**\n * This is used to set the options of subobjects in the options object.\n *\n * A requirement of these subobjects is that they have an 'enabled' element\n * which is optional for the user but mandatory for the program.\n *\n * The added value here of the merge is that option 'enabled' is set as required.\n *\n * @param mergeTarget - Either this.options or the options used for the groups.\n * @param options - Options.\n * @param option - Option key in the options argument.\n * @param globalOptions - Global options, passed in to determine value of option 'enabled'.\n */\n\nfunction mergeOptions(mergeTarget, options, option) {\n var globalOptions = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};\n\n // Local helpers\n var isPresent = function isPresent(obj) {\n return obj !== null && obj !== undefined;\n };\n\n var isObject = function isObject(obj) {\n return obj !== null && _typeof_1(obj) === 'object';\n }; // https://stackoverflow.com/a/34491287/1223531\n\n\n var isEmpty = function isEmpty(obj) {\n for (var x in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, x)) {\n return false;\n }\n }\n\n return true;\n }; // Guards\n\n\n if (!isObject(mergeTarget)) {\n throw new Error('Parameter mergeTarget must be an object');\n }\n\n if (!isObject(options)) {\n throw new Error('Parameter options must be an object');\n }\n\n if (!isPresent(option)) {\n throw new Error('Parameter option must have a value');\n }\n\n if (!isObject(globalOptions)) {\n throw new Error('Parameter globalOptions must be an object');\n } //\n // Actual merge routine, separated from main logic\n // Only a single level of options is merged. Deeper levels are ref'd. This may actually be an issue.\n //\n\n\n var doMerge = function doMerge(target, options, option) {\n if (!isObject(target[option])) {\n target[option] = {};\n }\n\n var src = options[option];\n var dst = target[option];\n\n for (var prop in src) {\n if (Object.prototype.hasOwnProperty.call(src, prop)) {\n dst[prop] = src[prop];\n }\n }\n }; // Local initialization\n\n\n var srcOption = options[option];\n var globalPassed = isObject(globalOptions) && !isEmpty(globalOptions);\n var globalOption = globalPassed ? globalOptions[option] : undefined;\n var globalEnabled = globalOption ? globalOption.enabled : undefined; /////////////////////////////////////////\n // Main routine\n /////////////////////////////////////////\n\n if (srcOption === undefined) {\n return; // Nothing to do\n }\n\n if (typeof srcOption === 'boolean') {\n if (!isObject(mergeTarget[option])) {\n mergeTarget[option] = {};\n }\n\n mergeTarget[option].enabled = srcOption;\n return;\n }\n\n if (srcOption === null && !isObject(mergeTarget[option])) {\n // If possible, explicit copy from globals\n if (isPresent(globalOption)) {\n mergeTarget[option] = Object.create(globalOption);\n } else {\n return; // Nothing to do\n }\n }\n\n if (!isObject(srcOption)) {\n return;\n } //\n // Ensure that 'enabled' is properly set. It is required internally\n // Note that the value from options will always overwrite the existing value\n //\n\n\n var enabled = true; // default value\n\n if (srcOption.enabled !== undefined) {\n enabled = srcOption.enabled;\n } else {\n // Take from globals, if present\n if (globalEnabled !== undefined) {\n enabled = globalOption.enabled;\n }\n }\n\n doMerge(mergeTarget, options, option);\n mergeTarget[option].enabled = enabled;\n}\n\n/**\n * This function does a binary search for a visible item in a sorted list. If we find a visible item, the code that uses\n * this function will then iterate in both directions over this sorted list to find all visible items.\n *\n * @param orderedItems - Items ordered by start\n * @param comparator - -1 is lower, 0 is equal, 1 is higher\n * @param field - Property name on an item (i.e. item[field]).\n * @param field2 - Second property name on an item (i.e. item[field][field2]).\n *\n * @returns Index of the found item or -1 if nothing was found.\n */\nfunction binarySearchCustom(orderedItems, comparator, field, field2) {\n var maxIterations = 10000;\n var iteration = 0;\n var low = 0;\n var high = orderedItems.length - 1;\n\n while (low <= high && iteration < maxIterations) {\n var middle = Math.floor((low + high) / 2);\n var item = orderedItems[middle];\n\n var _value3 = field2 === undefined ? item[field] : item[field][field2];\n\n var searchResult = comparator(_value3);\n\n if (searchResult == 0) {\n // jihaa, found a visible item!\n return middle;\n } else if (searchResult == -1) {\n // it is too small --> increase low\n low = middle + 1;\n } else {\n // it is too big --> decrease high\n high = middle - 1;\n }\n\n iteration++;\n }\n\n return -1;\n}\n/**\n * This function does a binary search for a specific value in a sorted array. If it does not exist but is in between of\n * two values, we return either the one before or the one after, depending on user input\n * If it is found, we return the index, else -1.\n *\n * @param orderedItems - Sorted array.\n * @param target - The searched value.\n * @param field - Name of the property in items to be searched.\n * @param sidePreference - If the target is between two values, should the index of the before or the after be returned?\n * @param comparator - An optional comparator, returning -1, 0, 1 for <, ===, >.\n *\n * @returns The index of found value or -1 if nothing was found.\n */\n\nfunction binarySearchValue(orderedItems, target, field, sidePreference, comparator) {\n var maxIterations = 10000;\n var iteration = 0;\n var low = 0;\n var high = orderedItems.length - 1;\n var prevValue;\n var value;\n var nextValue;\n var middle;\n comparator = comparator != undefined ? comparator : function (a, b) {\n return a == b ? 0 : a < b ? -1 : 1;\n };\n\n while (low <= high && iteration < maxIterations) {\n // get a new guess\n middle = Math.floor(0.5 * (high + low));\n prevValue = orderedItems[Math.max(0, middle - 1)][field];\n value = orderedItems[middle][field];\n nextValue = orderedItems[Math.min(orderedItems.length - 1, middle + 1)][field];\n\n if (comparator(value, target) == 0) {\n // we found the target\n return middle;\n } else if (comparator(prevValue, target) < 0 && comparator(value, target) > 0) {\n // target is in between of the previous and the current\n return sidePreference == 'before' ? Math.max(0, middle - 1) : middle;\n } else if (comparator(value, target) < 0 && comparator(nextValue, target) > 0) {\n // target is in between of the current and the next\n return sidePreference == 'before' ? middle : Math.min(orderedItems.length - 1, middle + 1);\n } else {\n // didnt find the target, we need to change our boundaries.\n if (comparator(value, target) < 0) {\n // it is too small --> increase low\n low = middle + 1;\n } else {\n // it is too big --> decrease high\n high = middle - 1;\n }\n }\n\n iteration++;\n } // didnt find anything. Return -1.\n\n\n return -1;\n}\n/*\n * Easing Functions.\n * Only considering the t value for the range [0, 1] => [0, 1].\n *\n * Inspiration: from http://gizma.com/easing/\n * https://gist.github.com/gre/1650294\n */\n\nvar easingFunctions = {\n /**\n * no easing, no acceleration\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n linear: function linear(t) {\n return t;\n },\n\n /**\n * accelerating from zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInQuad: function easeInQuad(t) {\n return t * t;\n },\n\n /**\n * decelerating to zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeOutQuad: function easeOutQuad(t) {\n return t * (2 - t);\n },\n\n /**\n * acceleration until halfway, then deceleration\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInOutQuad: function easeInOutQuad(t) {\n return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t;\n },\n\n /**\n * accelerating from zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInCubic: function easeInCubic(t) {\n return t * t * t;\n },\n\n /**\n * decelerating to zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeOutCubic: function easeOutCubic(t) {\n return --t * t * t + 1;\n },\n\n /**\n * acceleration until halfway, then deceleration\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInOutCubic: function easeInOutCubic(t) {\n return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1;\n },\n\n /**\n * accelerating from zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInQuart: function easeInQuart(t) {\n return t * t * t * t;\n },\n\n /**\n * decelerating to zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeOutQuart: function easeOutQuart(t) {\n return 1 - --t * t * t * t;\n },\n\n /**\n * acceleration until halfway, then deceleration\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInOutQuart: function easeInOutQuart(t) {\n return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t;\n },\n\n /**\n * accelerating from zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInQuint: function easeInQuint(t) {\n return t * t * t * t * t;\n },\n\n /**\n * decelerating to zero velocity\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeOutQuint: function easeOutQuint(t) {\n return 1 + --t * t * t * t * t;\n },\n\n /**\n * acceleration until halfway, then deceleration\n *\n * @param t - Time.\n *\n * @returns Value at time t.\n */\n easeInOutQuint: function easeInOutQuint(t) {\n return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t;\n }\n};\n/**\n * Experimentaly compute the width of the scrollbar for this browser.\n *\n * @returns The width in pixels.\n */\n\nfunction getScrollBarWidth() {\n var inner = document.createElement('p');\n inner.style.width = '100%';\n inner.style.height = '200px';\n var outer = document.createElement('div');\n outer.style.position = 'absolute';\n outer.style.top = '0px';\n outer.style.left = '0px';\n outer.style.visibility = 'hidden';\n outer.style.width = '200px';\n outer.style.height = '150px';\n outer.style.overflow = 'hidden';\n outer.appendChild(inner);\n document.body.appendChild(outer);\n var w1 = inner.offsetWidth;\n outer.style.overflow = 'scroll';\n var w2 = inner.offsetWidth;\n\n if (w1 == w2) {\n w2 = outer.clientWidth;\n }\n\n document.body.removeChild(outer);\n return w1 - w2;\n} // @TODO: This doesn't work properly.\n// It works only for single property objects,\n// otherwise it combines all of the types in a union.\n// export function topMost (\n// pile: Record[],\n// accessors: K1 | [K1]\n// ): undefined | V1\n// export function topMost (\n// pile: Record>[],\n// accessors: [K1, K2]\n// ): undefined | V1 | V2\n// export function topMost (\n// pile: Record>>[],\n// accessors: [K1, K2, K3]\n// ): undefined | V1 | V2 | V3\n\n/**\n * Get the top most property value from a pile of objects.\n *\n * @param pile - Array of objects, no required format.\n * @param accessors - Array of property names (e.g. object['foo']['bar'] → ['foo', 'bar']).\n *\n * @returns Value of the property with given accessors path from the first pile item where it's not undefined.\n */\n\nfunction topMost(pile, accessors) {\n var candidate;\n\n if (!Array.isArray(accessors)) {\n accessors = [accessors];\n }\n\n var _iteratorNormalCompletion = true;\n var _didIteratorError = false;\n var _iteratorError = undefined;\n\n try {\n for (var _iterator = pile[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n var member = _step.value;\n\n if (member) {\n candidate = member[accessors[0]];\n\n for (var i = 1; i < accessors.length; i++) {\n if (candidate) {\n candidate = candidate[accessors[i]];\n }\n }\n\n if (typeof candidate !== 'undefined') {\n break;\n }\n }\n }\n } catch (err) {\n _didIteratorError = true;\n _iteratorError = err;\n } finally {\n try {\n if (!_iteratorNormalCompletion && _iterator.return != null) {\n _iterator.return();\n }\n } finally {\n if (_didIteratorError) {\n throw _iteratorError;\n }\n }\n }\n\n return candidate;\n}\n\nvar util = /*#__PURE__*/Object.freeze({\n isNumber: isNumber,\n recursiveDOMDelete: recursiveDOMDelete,\n isString: isString,\n isObject: isObject,\n isDate: isDate,\n isMoment: isMoment,\n fillIfDefined: fillIfDefined,\n extend: extend,\n selectiveExtend: selectiveExtend,\n selectiveDeepExtend: selectiveDeepExtend,\n selectiveNotDeepExtend: selectiveNotDeepExtend,\n deepExtend: deepExtend,\n equalArray: equalArray,\n convert: convert,\n getType: getType,\n copyAndExtendArray: copyAndExtendArray,\n copyArray: copyArray,\n getAbsoluteLeft: getAbsoluteLeft,\n getAbsoluteRight: getAbsoluteRight,\n getAbsoluteTop: getAbsoluteTop,\n addClassName: addClassName,\n removeClassName: removeClassName,\n forEach: forEach,\n toArray: toArray,\n updateProperty: updateProperty,\n throttle: throttle,\n addEventListener: addEventListener,\n removeEventListener: removeEventListener,\n preventDefault: preventDefault,\n getTarget: getTarget,\n hasParent: hasParent,\n option: option,\n hexToRGB: hexToRGB,\n overrideOpacity: overrideOpacity,\n RGBToHex: RGBToHex,\n parseColor: parseColor,\n RGBToHSV: RGBToHSV,\n addCssText: addCssText,\n removeCssText: removeCssText,\n HSVToRGB: HSVToRGB,\n HSVToHex: HSVToHex,\n hexToHSV: hexToHSV,\n isValidHex: isValidHex,\n isValidRGB: isValidRGB,\n isValidRGBA: isValidRGBA,\n selectiveBridgeObject: selectiveBridgeObject,\n bridgeObject: bridgeObject,\n insertSort: insertSort,\n mergeOptions: mergeOptions,\n binarySearchCustom: binarySearchCustom,\n binarySearchValue: binarySearchValue,\n easingFunctions: easingFunctions,\n getScrollBarWidth: getScrollBarWidth,\n topMost: topMost,\n randomUUID: uuid4\n});\n\n// New API (tree shakeable).\n\nexport default util;\nexport { HSVToHex, HSVToRGB, RGBToHSV, RGBToHex, addClassName, addCssText, addEventListener, binarySearchCustom, binarySearchValue, bridgeObject, convert, copyAndExtendArray, copyArray, deepExtend, easingFunctions, equalArray, extend, fillIfDefined, forEach, getAbsoluteLeft, getAbsoluteRight, getAbsoluteTop, getScrollBarWidth, getTarget, getType, hasParent, hexToHSV, hexToRGB, insertSort, isDate, isMoment, isNumber, isObject, isString, isValidHex, isValidRGB, isValidRGBA, mergeOptions, option, overrideOpacity, parseColor, preventDefault, uuid4 as randomUUID, recursiveDOMDelete, removeClassName, removeCssText, removeEventListener, selectiveBridgeObject, selectiveDeepExtend, selectiveExtend, selectiveNotDeepExtend, throttle, toArray, topMost, updateProperty };\n","// DOM utility methods\n\n/**\n * this prepares the JSON container for allocating SVG elements\n * @param {Object} JSONcontainer\n * @private\n */\nexport function prepareElements(JSONcontainer) {\n // cleanup the redundant svgElements;\n for (var elementType in JSONcontainer) {\n if (JSONcontainer.hasOwnProperty(elementType)) {\n JSONcontainer[elementType].redundant = JSONcontainer[elementType].used;\n JSONcontainer[elementType].used = [];\n }\n }\n}\n\n/**\n * this cleans up all the unused SVG elements. By asking for the parentNode, we only need to supply the JSON container from\n * which to remove the redundant elements.\n *\n * @param {Object} JSONcontainer\n * @private\n */\nexport function cleanupElements(JSONcontainer) {\n // cleanup the redundant svgElements;\n for (var elementType in JSONcontainer) {\n if (JSONcontainer.hasOwnProperty(elementType)) {\n if (JSONcontainer[elementType].redundant) {\n for (var i = 0; i < JSONcontainer[elementType].redundant.length; i++) {\n JSONcontainer[elementType].redundant[i].parentNode.removeChild(JSONcontainer[elementType].redundant[i]);\n }\n JSONcontainer[elementType].redundant = [];\n }\n }\n }\n}\n\n/**\n * Ensures that all elements are removed first up so they can be recreated cleanly\n * @param {Object} JSONcontainer\n */\nexport function resetElements(JSONcontainer) {\n prepareElements(JSONcontainer);\n cleanupElements(JSONcontainer);\n prepareElements(JSONcontainer);\n}\n\n/**\n * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer\n * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this.\n *\n * @param {string} elementType\n * @param {Object} JSONcontainer\n * @param {Object} svgContainer\n * @returns {Element}\n * @private\n */\nexport function getSVGElement(elementType, JSONcontainer, svgContainer) {\n var element;\n // allocate SVG element, if it doesnt yet exist, create one.\n if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before\n // check if there is an redundant element\n if (JSONcontainer[elementType].redundant.length > 0) {\n element = JSONcontainer[elementType].redundant[0];\n JSONcontainer[elementType].redundant.shift();\n }\n else {\n // create a new element and add it to the SVG\n element = document.createElementNS('http://www.w3.org/2000/svg', elementType);\n svgContainer.appendChild(element);\n }\n }\n else {\n // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it.\n element = document.createElementNS('http://www.w3.org/2000/svg', elementType);\n JSONcontainer[elementType] = {used: [], redundant: []};\n svgContainer.appendChild(element);\n }\n JSONcontainer[elementType].used.push(element);\n return element;\n}\n\n\n/**\n * Allocate or generate an SVG element if needed. Store a reference to it in the JSON container and draw it in the svgContainer\n * the JSON container and the SVG container have to be supplied so other svg containers (like the legend) can use this.\n *\n * @param {string} elementType\n * @param {Object} JSONcontainer\n * @param {Element} DOMContainer\n * @param {Element} insertBefore\n * @returns {*}\n */\nexport function getDOMElement(elementType, JSONcontainer, DOMContainer, insertBefore) {\n var element;\n // allocate DOM element, if it doesnt yet exist, create one.\n if (JSONcontainer.hasOwnProperty(elementType)) { // this element has been created before\n // check if there is an redundant element\n if (JSONcontainer[elementType].redundant.length > 0) {\n element = JSONcontainer[elementType].redundant[0];\n JSONcontainer[elementType].redundant.shift();\n }\n else {\n // create a new element and add it to the SVG\n element = document.createElement(elementType);\n if (insertBefore !== undefined) {\n DOMContainer.insertBefore(element, insertBefore);\n }\n else {\n DOMContainer.appendChild(element);\n }\n }\n }\n else {\n // create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it.\n element = document.createElement(elementType);\n JSONcontainer[elementType] = {used: [], redundant: []};\n if (insertBefore !== undefined) {\n DOMContainer.insertBefore(element, insertBefore);\n }\n else {\n DOMContainer.appendChild(element);\n }\n }\n JSONcontainer[elementType].used.push(element);\n return element;\n}\n\n\n\n\n/**\n * Draw a point object. This is a separate function because it can also be called by the legend.\n * The reason the JSONcontainer and the target SVG svgContainer have to be supplied is so the legend can use these functions\n * as well.\n *\n * @param {number} x\n * @param {number} y\n * @param {Object} groupTemplate: A template containing the necessary information to draw the datapoint e.g., {style: 'circle', size: 5, className: 'className' }\n * @param {Object} JSONcontainer\n * @param {Object} svgContainer\n * @param {Object} labelObj\n * @returns {vis.PointItem}\n */\nexport function drawPoint(x, y, groupTemplate, JSONcontainer, svgContainer, labelObj) {\n var point;\n if (groupTemplate.style == 'circle') {\n point = getSVGElement('circle', JSONcontainer, svgContainer);\n point.setAttributeNS(null, \"cx\", x);\n point.setAttributeNS(null, \"cy\", y);\n point.setAttributeNS(null, \"r\", 0.5 * groupTemplate.size);\n }\n else {\n point = getSVGElement('rect', JSONcontainer, svgContainer);\n point.setAttributeNS(null, \"x\", x - 0.5 * groupTemplate.size);\n point.setAttributeNS(null, \"y\", y - 0.5 * groupTemplate.size);\n point.setAttributeNS(null, \"width\", groupTemplate.size);\n point.setAttributeNS(null, \"height\", groupTemplate.size);\n }\n\n if (groupTemplate.styles !== undefined) {\n point.setAttributeNS(null, \"style\", groupTemplate.styles);\n }\n point.setAttributeNS(null, \"class\", groupTemplate.className + \" vis-point\");\n //handle label\n\n\n if (labelObj) {\n var label = getSVGElement('text', JSONcontainer, svgContainer);\n if (labelObj.xOffset) {\n x = x + labelObj.xOffset;\n }\n\n if (labelObj.yOffset) {\n y = y + labelObj.yOffset;\n }\n if (labelObj.content) {\n label.textContent = labelObj.content;\n }\n\n if (labelObj.className) {\n label.setAttributeNS(null, \"class\", labelObj.className + \" vis-label\");\n }\n label.setAttributeNS(null, \"x\", x);\n label.setAttributeNS(null, \"y\", y);\n }\n\n return point;\n}\n\n/**\n * draw a bar SVG element centered on the X coordinate\n *\n * @param {number} x\n * @param {number} y\n * @param {number} width\n * @param {number} height\n * @param {string} className\n * @param {Object} JSONcontainer\n * @param {Object} svgContainer\n * @param {string} style\n */\nexport function drawBar (x, y, width, height, className, JSONcontainer, svgContainer, style) {\n if (height != 0) {\n if (height < 0) {\n height *= -1;\n y -= height;\n }\n var rect = getSVGElement('rect',JSONcontainer, svgContainer);\n rect.setAttributeNS(null, \"x\", x - 0.5 * width);\n rect.setAttributeNS(null, \"y\", y);\n rect.setAttributeNS(null, \"width\", width);\n rect.setAttributeNS(null, \"height\", height);\n rect.setAttributeNS(null, \"class\", className);\n if (style) {\n rect.setAttributeNS(null, \"style\", style);\n }\n }\n}\n\n/**\n * get default language\n * @returns {string}\n */\nexport function getNavigatorLanguage() {\n if (!navigator) return 'en';\n if (navigator.languages && navigator.languages.length) {\n return navigator.languages;\n } else {\n return navigator.userLanguage || navigator.language || navigator.browserLanguage || 'en';\n }\n}\n","/** \n * vis-data - data\n * http://visjs.org/\n * \n * Manage unstructured data using DataSet. Add, update, and remove data, and listen for changes in the data.\n * \n * @version 6.1.0\n * @date 2019-07-16T13:37:00Z\n * \n * @copyright (c) 2011-2017 Almende B.V, http://almende.com\n * @copyright (c) 2018-2019 visjs contributors, https://github.com/visjs\n * \n * @license \n * vis.js is dual licensed under both\n * \n * 1. The Apache 2.0 License\n * http://www.apache.org/licenses/LICENSE-2.0\n * \n * and\n * \n * 2. The MIT License\n * http://opensource.org/licenses/MIT\n * \n * vis.js may be distributed under either license.\n */\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nvar defineProperty = _defineProperty;\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar _typeof_1 = createCommonjsModule(function (module) {\n function _typeof2(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof2 = function _typeof2(obj) {\n return typeof obj;\n };\n } else {\n _typeof2 = function _typeof2(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof2(obj);\n }\n\n function _typeof(obj) {\n if (typeof Symbol === \"function\" && _typeof2(Symbol.iterator) === \"symbol\") {\n module.exports = _typeof = function _typeof(obj) {\n return _typeof2(obj);\n };\n } else {\n module.exports = _typeof = function _typeof(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : _typeof2(obj);\n };\n }\n\n return _typeof(obj);\n }\n\n module.exports = _typeof;\n});\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nvar classCallCheck = _classCallCheck;\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nvar createClass = _createClass;\n\nfunction _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\nvar assertThisInitialized = _assertThisInitialized;\n\nfunction _possibleConstructorReturn(self, call) {\n if (call && (_typeof_1(call) === \"object\" || typeof call === \"function\")) {\n return call;\n }\n\n return assertThisInitialized(self);\n}\n\nvar possibleConstructorReturn = _possibleConstructorReturn;\n\nvar getPrototypeOf = createCommonjsModule(function (module) {\n function _getPrototypeOf(o) {\n module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {\n return o.__proto__ || Object.getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n }\n\n module.exports = _getPrototypeOf;\n});\n\nvar setPrototypeOf = createCommonjsModule(function (module) {\n function _setPrototypeOf(o, p) {\n module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n\n return _setPrototypeOf(o, p);\n }\n\n module.exports = _setPrototypeOf;\n});\n\nfunction _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n writable: true,\n configurable: true\n }\n });\n if (superClass) setPrototypeOf(subClass, superClass);\n}\n\nvar inherits = _inherits;\n\n// Maps for number <-> hex string conversion\nvar byteToHex = [];\n\nfor (var i = 0; i < 256; i++) {\n byteToHex[i] = (i + 0x100).toString(16).substr(1);\n}\n/**\n * Represent binary UUID into it's string representation.\n *\n * @param buf - Buffer containing UUID bytes.\n * @param offset - Offset from the start of the buffer where the UUID is saved (not needed if the buffer starts with the UUID).\n *\n * @returns String representation of the UUID.\n */\n\n\nfunction stringifyUUID(buf, offset) {\n var i = offset || 0;\n var bth = byteToHex;\n return bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + '-' + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]] + bth[buf[i++]];\n}\n/**\n * Generate 16 random bytes to be used as a base for UUID.\n *\n * @ignore\n */\n\n\nvar random = function () {\n if (typeof crypto !== 'undefined' && crypto.getRandomValues) {\n // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto\n // Moderately fast, high quality\n var _rnds8 = new Uint8Array(16);\n\n return function whatwgRNG() {\n crypto.getRandomValues(_rnds8);\n return _rnds8;\n };\n } // Math.random()-based (RNG)\n //\n // If all else fails, use Math.random().\n // It's fast, but is of unspecified quality.\n\n\n var _rnds = new Array(16);\n\n return function () {\n for (var i = 0, r; i < 16; i++) {\n if ((i & 0x03) === 0) {\n r = Math.random() * 0x100000000;\n }\n\n _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;\n }\n\n return _rnds;\n }; // uuid.js\n //\n // Copyright (c) 2010-2012 Robert Kieffer\n // MIT License - http://opensource.org/licenses/mit-license.php\n // Unique ID creation requires a high quality random # generator. We feature\n // detect to determine the best RNG source, normalizing to a function that\n // returns 128-bits of randomness, since that's what's usually required\n // return require('./rng');\n}();\n\nvar byteToHex$1 = [];\n\nfor (var i$1 = 0; i$1 < 256; i$1++) {\n byteToHex$1[i$1] = (i$1 + 0x100).toString(16).substr(1);\n} // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n// random #'s we need to init node and clockseq\n\n\nvar seedBytes = random(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n\nvar defaultNodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; // Per 4.2.2, randomize (14 bit) clockseq\n\nvar defaultClockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; // Previous uuid creation time\n/**\n * UUIDv4 options.\n */\n\n/**\n * Generate UUIDv4\n *\n * @param options - Options to be used instead of default generated values.\n * String 'binary' is a shorthand for uuid4({}, new Array(16)).\n * @param buf - If present the buffer will be filled with the generated UUID.\n * @param offset - Offset of the UUID from the start of the buffer.\n *\n * @returns UUIDv4\n */\n\n\nfunction uuid4() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var buf = arguments.length > 1 ? arguments[1] : undefined;\n var offset = arguments.length > 2 ? arguments[2] : undefined; // Deprecated - 'format' argument, as supported in v1.2\n\n var i = buf && offset || 0;\n\n if (typeof options === 'string') {\n buf = options === 'binary' ? new Array(16) : undefined;\n options = {};\n }\n\n var rnds = options.random || (options.rng || random)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`\n\n rnds[6] = rnds[6] & 0x0f | 0x40;\n rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided\n\n if (buf) {\n for (var ii = 0; ii < 16; ii++) {\n buf[i + ii] = rnds[ii];\n }\n }\n\n return buf || stringifyUUID(rnds);\n} // Rollup will complain about mixing default and named exports in UMD build,\n\nfunction _typeof(obj) {\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nvar commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\nfunction commonjsRequire() {\n throw new Error('Dynamic requires are not currently supported by rollup-plugin-commonjs');\n}\n\nfunction createCommonjsModule$1(fn, module) {\n return module = {\n exports: {}\n }, fn(module, module.exports), module.exports;\n}\n\nvar moment = createCommonjsModule$1(function (module, exports) {\n (function (global, factory) {\n module.exports = factory();\n })(commonjsGlobal, function () {\n var hookCallback;\n\n function hooks() {\n return hookCallback.apply(null, arguments);\n } // This is done to register the method called with moment()\n // without creating circular dependencies.\n\n\n function setHookCallback(callback) {\n hookCallback = callback;\n }\n\n function isArray(input) {\n return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';\n }\n\n function isObject(input) {\n // IE8 will treat undefined and null as object if it wasn't for\n // input != null\n return input != null && Object.prototype.toString.call(input) === '[object Object]';\n }\n\n function isObjectEmpty(obj) {\n if (Object.getOwnPropertyNames) {\n return Object.getOwnPropertyNames(obj).length === 0;\n } else {\n var k;\n\n for (k in obj) {\n if (obj.hasOwnProperty(k)) {\n return false;\n }\n }\n\n return true;\n }\n }\n\n function isUndefined(input) {\n return input === void 0;\n }\n\n function isNumber(input) {\n return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';\n }\n\n function isDate(input) {\n return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';\n }\n\n function map(arr, fn) {\n var res = [],\n i;\n\n for (i = 0; i < arr.length; ++i) {\n res.push(fn(arr[i], i));\n }\n\n return res;\n }\n\n function hasOwnProp(a, b) {\n return Object.prototype.hasOwnProperty.call(a, b);\n }\n\n function extend(a, b) {\n for (var i in b) {\n if (hasOwnProp(b, i)) {\n a[i] = b[i];\n }\n }\n\n if (hasOwnProp(b, 'toString')) {\n a.toString = b.toString;\n }\n\n if (hasOwnProp(b, 'valueOf')) {\n a.valueOf = b.valueOf;\n }\n\n return a;\n }\n\n function createUTC(input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, true).utc();\n }\n\n function defaultParsingFlags() {\n // We need to deep clone this object.\n return {\n empty: false,\n unusedTokens: [],\n unusedInput: [],\n overflow: -2,\n charsLeftOver: 0,\n nullInput: false,\n invalidMonth: null,\n invalidFormat: false,\n userInvalidated: false,\n iso: false,\n parsedDateParts: [],\n meridiem: null,\n rfc2822: false,\n weekdayMismatch: false\n };\n }\n\n function getParsingFlags(m) {\n if (m._pf == null) {\n m._pf = defaultParsingFlags();\n }\n\n return m._pf;\n }\n\n var some;\n\n if (Array.prototype.some) {\n some = Array.prototype.some;\n } else {\n some = function (fun) {\n var t = Object(this);\n var len = t.length >>> 0;\n\n for (var i = 0; i < len; i++) {\n if (i in t && fun.call(this, t[i], i, t)) {\n return true;\n }\n }\n\n return false;\n };\n }\n\n function isValid(m) {\n if (m._isValid == null) {\n var flags = getParsingFlags(m);\n var parsedParts = some.call(flags.parsedDateParts, function (i) {\n return i != null;\n });\n var isNowValid = !isNaN(m._d.getTime()) && flags.overflow < 0 && !flags.empty && !flags.invalidMonth && !flags.invalidWeekday && !flags.weekdayMismatch && !flags.nullInput && !flags.invalidFormat && !flags.userInvalidated && (!flags.meridiem || flags.meridiem && parsedParts);\n\n if (m._strict) {\n isNowValid = isNowValid && flags.charsLeftOver === 0 && flags.unusedTokens.length === 0 && flags.bigHour === undefined;\n }\n\n if (Object.isFrozen == null || !Object.isFrozen(m)) {\n m._isValid = isNowValid;\n } else {\n return isNowValid;\n }\n }\n\n return m._isValid;\n }\n\n function createInvalid(flags) {\n var m = createUTC(NaN);\n\n if (flags != null) {\n extend(getParsingFlags(m), flags);\n } else {\n getParsingFlags(m).userInvalidated = true;\n }\n\n return m;\n } // Plugins that add properties should also add the key here (null value),\n // so we can properly clone ourselves.\n\n\n var momentProperties = hooks.momentProperties = [];\n\n function copyConfig(to, from) {\n var i, prop, val;\n\n if (!isUndefined(from._isAMomentObject)) {\n to._isAMomentObject = from._isAMomentObject;\n }\n\n if (!isUndefined(from._i)) {\n to._i = from._i;\n }\n\n if (!isUndefined(from._f)) {\n to._f = from._f;\n }\n\n if (!isUndefined(from._l)) {\n to._l = from._l;\n }\n\n if (!isUndefined(from._strict)) {\n to._strict = from._strict;\n }\n\n if (!isUndefined(from._tzm)) {\n to._tzm = from._tzm;\n }\n\n if (!isUndefined(from._isUTC)) {\n to._isUTC = from._isUTC;\n }\n\n if (!isUndefined(from._offset)) {\n to._offset = from._offset;\n }\n\n if (!isUndefined(from._pf)) {\n to._pf = getParsingFlags(from);\n }\n\n if (!isUndefined(from._locale)) {\n to._locale = from._locale;\n }\n\n if (momentProperties.length > 0) {\n for (i = 0; i < momentProperties.length; i++) {\n prop = momentProperties[i];\n val = from[prop];\n\n if (!isUndefined(val)) {\n to[prop] = val;\n }\n }\n }\n\n return to;\n }\n\n var updateInProgress = false; // Moment prototype object\n\n function Moment(config) {\n copyConfig(this, config);\n this._d = new Date(config._d != null ? config._d.getTime() : NaN);\n\n if (!this.isValid()) {\n this._d = new Date(NaN);\n } // Prevent infinite loop in case updateOffset creates new moment\n // objects.\n\n\n if (updateInProgress === false) {\n updateInProgress = true;\n hooks.updateOffset(this);\n updateInProgress = false;\n }\n }\n\n function isMoment(obj) {\n return obj instanceof Moment || obj != null && obj._isAMomentObject != null;\n }\n\n function absFloor(number) {\n if (number < 0) {\n // -0 -> 0\n return Math.ceil(number) || 0;\n } else {\n return Math.floor(number);\n }\n }\n\n function toInt(argumentForCoercion) {\n var coercedNumber = +argumentForCoercion,\n value = 0;\n\n if (coercedNumber !== 0 && isFinite(coercedNumber)) {\n value = absFloor(coercedNumber);\n }\n\n return value;\n } // compare two arrays, return the number of differences\n\n\n function compareArrays(array1, array2, dontConvert) {\n var len = Math.min(array1.length, array2.length),\n lengthDiff = Math.abs(array1.length - array2.length),\n diffs = 0,\n i;\n\n for (i = 0; i < len; i++) {\n if (dontConvert && array1[i] !== array2[i] || !dontConvert && toInt(array1[i]) !== toInt(array2[i])) {\n diffs++;\n }\n }\n\n return diffs + lengthDiff;\n }\n\n function warn(msg) {\n if (hooks.suppressDeprecationWarnings === false && typeof console !== 'undefined' && console.warn) {\n console.warn('Deprecation warning: ' + msg);\n }\n }\n\n function deprecate(msg, fn) {\n var firstTime = true;\n return extend(function () {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(null, msg);\n }\n\n if (firstTime) {\n var args = [];\n var arg;\n\n for (var i = 0; i < arguments.length; i++) {\n arg = '';\n\n if (typeof arguments[i] === 'object') {\n arg += '\\n[' + i + '] ';\n\n for (var key in arguments[0]) {\n arg += key + ': ' + arguments[0][key] + ', ';\n }\n\n arg = arg.slice(0, -2); // Remove trailing comma and space\n } else {\n arg = arguments[i];\n }\n\n args.push(arg);\n }\n\n warn(msg + '\\nArguments: ' + Array.prototype.slice.call(args).join('') + '\\n' + new Error().stack);\n firstTime = false;\n }\n\n return fn.apply(this, arguments);\n }, fn);\n }\n\n var deprecations = {};\n\n function deprecateSimple(name, msg) {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(name, msg);\n }\n\n if (!deprecations[name]) {\n warn(msg);\n deprecations[name] = true;\n }\n }\n\n hooks.suppressDeprecationWarnings = false;\n hooks.deprecationHandler = null;\n\n function isFunction(input) {\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\n }\n\n function set(config) {\n var prop, i;\n\n for (i in config) {\n prop = config[i];\n\n if (isFunction(prop)) {\n this[i] = prop;\n } else {\n this['_' + i] = prop;\n }\n }\n\n this._config = config; // Lenient ordinal parsing accepts just a number in addition to\n // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n\n this._dayOfMonthOrdinalParseLenient = new RegExp((this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) + '|' + /\\d{1,2}/.source);\n }\n\n function mergeConfigs(parentConfig, childConfig) {\n var res = extend({}, parentConfig),\n prop;\n\n for (prop in childConfig) {\n if (hasOwnProp(childConfig, prop)) {\n if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {\n res[prop] = {};\n extend(res[prop], parentConfig[prop]);\n extend(res[prop], childConfig[prop]);\n } else if (childConfig[prop] != null) {\n res[prop] = childConfig[prop];\n } else {\n delete res[prop];\n }\n }\n }\n\n for (prop in parentConfig) {\n if (hasOwnProp(parentConfig, prop) && !hasOwnProp(childConfig, prop) && isObject(parentConfig[prop])) {\n // make sure changes to properties don't modify parent config\n res[prop] = extend({}, res[prop]);\n }\n }\n\n return res;\n }\n\n function Locale(config) {\n if (config != null) {\n this.set(config);\n }\n }\n\n var keys;\n\n if (Object.keys) {\n keys = Object.keys;\n } else {\n keys = function (obj) {\n var i,\n res = [];\n\n for (i in obj) {\n if (hasOwnProp(obj, i)) {\n res.push(i);\n }\n }\n\n return res;\n };\n }\n\n var defaultCalendar = {\n sameDay: '[Today at] LT',\n nextDay: '[Tomorrow at] LT',\n nextWeek: 'dddd [at] LT',\n lastDay: '[Yesterday at] LT',\n lastWeek: '[Last] dddd [at] LT',\n sameElse: 'L'\n };\n\n function calendar(key, mom, now) {\n var output = this._calendar[key] || this._calendar['sameElse'];\n return isFunction(output) ? output.call(mom, now) : output;\n }\n\n var defaultLongDateFormat = {\n LTS: 'h:mm:ss A',\n LT: 'h:mm A',\n L: 'MM/DD/YYYY',\n LL: 'MMMM D, YYYY',\n LLL: 'MMMM D, YYYY h:mm A',\n LLLL: 'dddd, MMMM D, YYYY h:mm A'\n };\n\n function longDateFormat(key) {\n var format = this._longDateFormat[key],\n formatUpper = this._longDateFormat[key.toUpperCase()];\n\n if (format || !formatUpper) {\n return format;\n }\n\n this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {\n return val.slice(1);\n });\n return this._longDateFormat[key];\n }\n\n var defaultInvalidDate = 'Invalid date';\n\n function invalidDate() {\n return this._invalidDate;\n }\n\n var defaultOrdinal = '%d';\n var defaultDayOfMonthOrdinalParse = /\\d{1,2}/;\n\n function ordinal(number) {\n return this._ordinal.replace('%d', number);\n }\n\n var defaultRelativeTime = {\n future: 'in %s',\n past: '%s ago',\n s: 'a few seconds',\n ss: '%d seconds',\n m: 'a minute',\n mm: '%d minutes',\n h: 'an hour',\n hh: '%d hours',\n d: 'a day',\n dd: '%d days',\n M: 'a month',\n MM: '%d months',\n y: 'a year',\n yy: '%d years'\n };\n\n function relativeTime(number, withoutSuffix, string, isFuture) {\n var output = this._relativeTime[string];\n return isFunction(output) ? output(number, withoutSuffix, string, isFuture) : output.replace(/%d/i, number);\n }\n\n function pastFuture(diff, output) {\n var format = this._relativeTime[diff > 0 ? 'future' : 'past'];\n return isFunction(format) ? format(output) : format.replace(/%s/i, output);\n }\n\n var aliases = {};\n\n function addUnitAlias(unit, shorthand) {\n var lowerCase = unit.toLowerCase();\n aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;\n }\n\n function normalizeUnits(units) {\n return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;\n }\n\n function normalizeObjectUnits(inputObject) {\n var normalizedInput = {},\n normalizedProp,\n prop;\n\n for (prop in inputObject) {\n if (hasOwnProp(inputObject, prop)) {\n normalizedProp = normalizeUnits(prop);\n\n if (normalizedProp) {\n normalizedInput[normalizedProp] = inputObject[prop];\n }\n }\n }\n\n return normalizedInput;\n }\n\n var priorities = {};\n\n function addUnitPriority(unit, priority) {\n priorities[unit] = priority;\n }\n\n function getPrioritizedUnits(unitsObj) {\n var units = [];\n\n for (var u in unitsObj) {\n units.push({\n unit: u,\n priority: priorities[u]\n });\n }\n\n units.sort(function (a, b) {\n return a.priority - b.priority;\n });\n return units;\n }\n\n function zeroFill(number, targetLength, forceSign) {\n var absNumber = '' + Math.abs(number),\n zerosToFill = targetLength - absNumber.length,\n sign = number >= 0;\n return (sign ? forceSign ? '+' : '' : '-') + Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;\n }\n\n var formattingTokens = /(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g;\n var localFormattingTokens = /(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g;\n var formatFunctions = {};\n var formatTokenFunctions = {}; // token: 'M'\n // padded: ['MM', 2]\n // ordinal: 'Mo'\n // callback: function () { this.month() + 1 }\n\n function addFormatToken(token, padded, ordinal, callback) {\n var func = callback;\n\n if (typeof callback === 'string') {\n func = function () {\n return this[callback]();\n };\n }\n\n if (token) {\n formatTokenFunctions[token] = func;\n }\n\n if (padded) {\n formatTokenFunctions[padded[0]] = function () {\n return zeroFill(func.apply(this, arguments), padded[1], padded[2]);\n };\n }\n\n if (ordinal) {\n formatTokenFunctions[ordinal] = function () {\n return this.localeData().ordinal(func.apply(this, arguments), token);\n };\n }\n }\n\n function removeFormattingTokens(input) {\n if (input.match(/\\[[\\s\\S]/)) {\n return input.replace(/^\\[|\\]$/g, '');\n }\n\n return input.replace(/\\\\/g, '');\n }\n\n function makeFormatFunction(format) {\n var array = format.match(formattingTokens),\n i,\n length;\n\n for (i = 0, length = array.length; i < length; i++) {\n if (formatTokenFunctions[array[i]]) {\n array[i] = formatTokenFunctions[array[i]];\n } else {\n array[i] = removeFormattingTokens(array[i]);\n }\n }\n\n return function (mom) {\n var output = '',\n i;\n\n for (i = 0; i < length; i++) {\n output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];\n }\n\n return output;\n };\n } // format date using native date object\n\n\n function formatMoment(m, format) {\n if (!m.isValid()) {\n return m.localeData().invalidDate();\n }\n\n format = expandFormat(format, m.localeData());\n formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);\n return formatFunctions[format](m);\n }\n\n function expandFormat(format, locale) {\n var i = 5;\n\n function replaceLongDateFormatTokens(input) {\n return locale.longDateFormat(input) || input;\n }\n\n localFormattingTokens.lastIndex = 0;\n\n while (i >= 0 && localFormattingTokens.test(format)) {\n format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);\n localFormattingTokens.lastIndex = 0;\n i -= 1;\n }\n\n return format;\n }\n\n var match1 = /\\d/; // 0 - 9\n\n var match2 = /\\d\\d/; // 00 - 99\n\n var match3 = /\\d{3}/; // 000 - 999\n\n var match4 = /\\d{4}/; // 0000 - 9999\n\n var match6 = /[+-]?\\d{6}/; // -999999 - 999999\n\n var match1to2 = /\\d\\d?/; // 0 - 99\n\n var match3to4 = /\\d\\d\\d\\d?/; // 999 - 9999\n\n var match5to6 = /\\d\\d\\d\\d\\d\\d?/; // 99999 - 999999\n\n var match1to3 = /\\d{1,3}/; // 0 - 999\n\n var match1to4 = /\\d{1,4}/; // 0 - 9999\n\n var match1to6 = /[+-]?\\d{1,6}/; // -999999 - 999999\n\n var matchUnsigned = /\\d+/; // 0 - inf\n\n var matchSigned = /[+-]?\\d+/; // -inf - inf\n\n var matchOffset = /Z|[+-]\\d\\d:?\\d\\d/gi; // +00:00 -00:00 +0000 -0000 or Z\n\n var matchShortOffset = /Z|[+-]\\d\\d(?::?\\d\\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z\n\n var matchTimestamp = /[+-]?\\d+(\\.\\d{1,3})?/; // 123456789 123456789.123\n // any word (or two) characters or numbers including two/three word month in arabic.\n // includes scottish gaelic two word and hyphenated months\n\n var matchWord = /[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i;\n var regexes = {};\n\n function addRegexToken(token, regex, strictRegex) {\n regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {\n return isStrict && strictRegex ? strictRegex : regex;\n };\n }\n\n function getParseRegexForToken(token, config) {\n if (!hasOwnProp(regexes, token)) {\n return new RegExp(unescapeFormat(token));\n }\n\n return regexes[token](config._strict, config._locale);\n } // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript\n\n\n function unescapeFormat(s) {\n return regexEscape(s.replace('\\\\', '').replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g, function (matched, p1, p2, p3, p4) {\n return p1 || p2 || p3 || p4;\n }));\n }\n\n function regexEscape(s) {\n return s.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n }\n\n var tokens = {};\n\n function addParseToken(token, callback) {\n var i,\n func = callback;\n\n if (typeof token === 'string') {\n token = [token];\n }\n\n if (isNumber(callback)) {\n func = function (input, array) {\n array[callback] = toInt(input);\n };\n }\n\n for (i = 0; i < token.length; i++) {\n tokens[token[i]] = func;\n }\n }\n\n function addWeekParseToken(token, callback) {\n addParseToken(token, function (input, array, config, token) {\n config._w = config._w || {};\n callback(input, config._w, config, token);\n });\n }\n\n function addTimeToArrayFromToken(token, input, config) {\n if (input != null && hasOwnProp(tokens, token)) {\n tokens[token](input, config._a, config, token);\n }\n }\n\n var YEAR = 0;\n var MONTH = 1;\n var DATE = 2;\n var HOUR = 3;\n var MINUTE = 4;\n var SECOND = 5;\n var MILLISECOND = 6;\n var WEEK = 7;\n var WEEKDAY = 8; // FORMATTING\n\n addFormatToken('Y', 0, 0, function () {\n var y = this.year();\n return y <= 9999 ? '' + y : '+' + y;\n });\n addFormatToken(0, ['YY', 2], 0, function () {\n return this.year() % 100;\n });\n addFormatToken(0, ['YYYY', 4], 0, 'year');\n addFormatToken(0, ['YYYYY', 5], 0, 'year');\n addFormatToken(0, ['YYYYYY', 6, true], 0, 'year'); // ALIASES\n\n addUnitAlias('year', 'y'); // PRIORITIES\n\n addUnitPriority('year', 1); // PARSING\n\n addRegexToken('Y', matchSigned);\n addRegexToken('YY', match1to2, match2);\n addRegexToken('YYYY', match1to4, match4);\n addRegexToken('YYYYY', match1to6, match6);\n addRegexToken('YYYYYY', match1to6, match6);\n addParseToken(['YYYYY', 'YYYYYY'], YEAR);\n addParseToken('YYYY', function (input, array) {\n array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);\n });\n addParseToken('YY', function (input, array) {\n array[YEAR] = hooks.parseTwoDigitYear(input);\n });\n addParseToken('Y', function (input, array) {\n array[YEAR] = parseInt(input, 10);\n }); // HELPERS\n\n function daysInYear(year) {\n return isLeapYear(year) ? 366 : 365;\n }\n\n function isLeapYear(year) {\n return year % 4 === 0 && year % 100 !== 0 || year % 400 === 0;\n } // HOOKS\n\n\n hooks.parseTwoDigitYear = function (input) {\n return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);\n }; // MOMENTS\n\n\n var getSetYear = makeGetSet('FullYear', true);\n\n function getIsLeapYear() {\n return isLeapYear(this.year());\n }\n\n function makeGetSet(unit, keepTime) {\n return function (value) {\n if (value != null) {\n set$1(this, unit, value);\n hooks.updateOffset(this, keepTime);\n return this;\n } else {\n return get(this, unit);\n }\n };\n }\n\n function get(mom, unit) {\n return mom.isValid() ? mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;\n }\n\n function set$1(mom, unit, value) {\n if (mom.isValid() && !isNaN(value)) {\n if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));\n } else {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);\n }\n }\n } // MOMENTS\n\n\n function stringGet(units) {\n units = normalizeUnits(units);\n\n if (isFunction(this[units])) {\n return this[units]();\n }\n\n return this;\n }\n\n function stringSet(units, value) {\n if (typeof units === 'object') {\n units = normalizeObjectUnits(units);\n var prioritized = getPrioritizedUnits(units);\n\n for (var i = 0; i < prioritized.length; i++) {\n this[prioritized[i].unit](units[prioritized[i].unit]);\n }\n } else {\n units = normalizeUnits(units);\n\n if (isFunction(this[units])) {\n return this[units](value);\n }\n }\n\n return this;\n }\n\n function mod(n, x) {\n return (n % x + x) % x;\n }\n\n var indexOf;\n\n if (Array.prototype.indexOf) {\n indexOf = Array.prototype.indexOf;\n } else {\n indexOf = function (o) {\n // I know\n var i;\n\n for (i = 0; i < this.length; ++i) {\n if (this[i] === o) {\n return i;\n }\n }\n\n return -1;\n };\n }\n\n function daysInMonth(year, month) {\n if (isNaN(year) || isNaN(month)) {\n return NaN;\n }\n\n var modMonth = mod(month, 12);\n year += (month - modMonth) / 12;\n return modMonth === 1 ? isLeapYear(year) ? 29 : 28 : 31 - modMonth % 7 % 2;\n } // FORMATTING\n\n\n addFormatToken('M', ['MM', 2], 'Mo', function () {\n return this.month() + 1;\n });\n addFormatToken('MMM', 0, 0, function (format) {\n return this.localeData().monthsShort(this, format);\n });\n addFormatToken('MMMM', 0, 0, function (format) {\n return this.localeData().months(this, format);\n }); // ALIASES\n\n addUnitAlias('month', 'M'); // PRIORITY\n\n addUnitPriority('month', 8); // PARSING\n\n addRegexToken('M', match1to2);\n addRegexToken('MM', match1to2, match2);\n addRegexToken('MMM', function (isStrict, locale) {\n return locale.monthsShortRegex(isStrict);\n });\n addRegexToken('MMMM', function (isStrict, locale) {\n return locale.monthsRegex(isStrict);\n });\n addParseToken(['M', 'MM'], function (input, array) {\n array[MONTH] = toInt(input) - 1;\n });\n addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {\n var month = config._locale.monthsParse(input, token, config._strict); // if we didn't find a month name, mark the date as invalid.\n\n\n if (month != null) {\n array[MONTH] = month;\n } else {\n getParsingFlags(config).invalidMonth = input;\n }\n }); // LOCALES\n\n var MONTHS_IN_FORMAT = /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?/;\n var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');\n\n function localeMonths(m, format) {\n if (!m) {\n return isArray(this._months) ? this._months : this._months['standalone'];\n }\n\n return isArray(this._months) ? this._months[m.month()] : this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');\n\n function localeMonthsShort(m, format) {\n if (!m) {\n return isArray(this._monthsShort) ? this._monthsShort : this._monthsShort['standalone'];\n }\n\n return isArray(this._monthsShort) ? this._monthsShort[m.month()] : this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n function handleStrictParse(monthName, format, strict) {\n var i,\n ii,\n mom,\n llc = monthName.toLocaleLowerCase();\n\n if (!this._monthsParse) {\n // this is not used\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n\n for (i = 0; i < 12; ++i) {\n mom = createUTC([2000, i]);\n this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();\n this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeMonthsParse(monthName, format, strict) {\n var i, mom, regex;\n\n if (this._monthsParseExact) {\n return handleStrictParse.call(this, monthName, format, strict);\n }\n\n if (!this._monthsParse) {\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n } // TODO: add sorting\n // Sorting makes sure if one month (or abbr) is a prefix of another\n // see sorting in computeMonthsParse\n\n\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n\n if (strict && !this._longMonthsParse[i]) {\n this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');\n this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');\n }\n\n if (!strict && !this._monthsParse[i]) {\n regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');\n this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');\n } // test the regex\n\n\n if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {\n return i;\n } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {\n return i;\n } else if (!strict && this._monthsParse[i].test(monthName)) {\n return i;\n }\n }\n } // MOMENTS\n\n\n function setMonth(mom, value) {\n var dayOfMonth;\n\n if (!mom.isValid()) {\n // No op\n return mom;\n }\n\n if (typeof value === 'string') {\n if (/^\\d+$/.test(value)) {\n value = toInt(value);\n } else {\n value = mom.localeData().monthsParse(value); // TODO: Another silent failure?\n\n if (!isNumber(value)) {\n return mom;\n }\n }\n }\n\n dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));\n\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);\n\n return mom;\n }\n\n function getSetMonth(value) {\n if (value != null) {\n setMonth(this, value);\n hooks.updateOffset(this, true);\n return this;\n } else {\n return get(this, 'Month');\n }\n }\n\n function getDaysInMonth() {\n return daysInMonth(this.year(), this.month());\n }\n\n var defaultMonthsShortRegex = matchWord;\n\n function monthsShortRegex(isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n\n if (isStrict) {\n return this._monthsShortStrictRegex;\n } else {\n return this._monthsShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsShortRegex')) {\n this._monthsShortRegex = defaultMonthsShortRegex;\n }\n\n return this._monthsShortStrictRegex && isStrict ? this._monthsShortStrictRegex : this._monthsShortRegex;\n }\n }\n\n var defaultMonthsRegex = matchWord;\n\n function monthsRegex(isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n\n if (isStrict) {\n return this._monthsStrictRegex;\n } else {\n return this._monthsRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsRegex')) {\n this._monthsRegex = defaultMonthsRegex;\n }\n\n return this._monthsStrictRegex && isStrict ? this._monthsStrictRegex : this._monthsRegex;\n }\n }\n\n function computeMonthsParse() {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var shortPieces = [],\n longPieces = [],\n mixedPieces = [],\n i,\n mom;\n\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n shortPieces.push(this.monthsShort(mom, ''));\n longPieces.push(this.months(mom, ''));\n mixedPieces.push(this.months(mom, ''));\n mixedPieces.push(this.monthsShort(mom, ''));\n } // Sorting makes sure if one month (or abbr) is a prefix of another it\n // will match the longer piece.\n\n\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n\n for (i = 0; i < 12; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n }\n\n for (i = 0; i < 24; i++) {\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._monthsShortRegex = this._monthsRegex;\n this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n }\n\n function createDate(y, m, d, h, M, s, ms) {\n // can't just apply() to create a date:\n // https://stackoverflow.com/q/181348\n var date; // the date constructor remaps years 0-99 to 1900-1999\n\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n date = new Date(y + 400, m, d, h, M, s, ms);\n\n if (isFinite(date.getFullYear())) {\n date.setFullYear(y);\n }\n } else {\n date = new Date(y, m, d, h, M, s, ms);\n }\n\n return date;\n }\n\n function createUTCDate(y) {\n var date; // the Date.UTC function remaps years 0-99 to 1900-1999\n\n if (y < 100 && y >= 0) {\n var args = Array.prototype.slice.call(arguments); // preserve leap years using a full 400 year cycle, then reset\n\n args[0] = y + 400;\n date = new Date(Date.UTC.apply(null, args));\n\n if (isFinite(date.getUTCFullYear())) {\n date.setUTCFullYear(y);\n }\n } else {\n date = new Date(Date.UTC.apply(null, arguments));\n }\n\n return date;\n } // start-of-first-week - start-of-year\n\n\n function firstWeekOffset(year, dow, doy) {\n var // first-week day -- which january is always in the first week (4 for iso, 1 for other)\n fwd = 7 + dow - doy,\n // first-week day local weekday -- which local weekday is fwd\n fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;\n return -fwdlw + fwd - 1;\n } // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday\n\n\n function dayOfYearFromWeeks(year, week, weekday, dow, doy) {\n var localWeekday = (7 + weekday - dow) % 7,\n weekOffset = firstWeekOffset(year, dow, doy),\n dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,\n resYear,\n resDayOfYear;\n\n if (dayOfYear <= 0) {\n resYear = year - 1;\n resDayOfYear = daysInYear(resYear) + dayOfYear;\n } else if (dayOfYear > daysInYear(year)) {\n resYear = year + 1;\n resDayOfYear = dayOfYear - daysInYear(year);\n } else {\n resYear = year;\n resDayOfYear = dayOfYear;\n }\n\n return {\n year: resYear,\n dayOfYear: resDayOfYear\n };\n }\n\n function weekOfYear(mom, dow, doy) {\n var weekOffset = firstWeekOffset(mom.year(), dow, doy),\n week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,\n resWeek,\n resYear;\n\n if (week < 1) {\n resYear = mom.year() - 1;\n resWeek = week + weeksInYear(resYear, dow, doy);\n } else if (week > weeksInYear(mom.year(), dow, doy)) {\n resWeek = week - weeksInYear(mom.year(), dow, doy);\n resYear = mom.year() + 1;\n } else {\n resYear = mom.year();\n resWeek = week;\n }\n\n return {\n week: resWeek,\n year: resYear\n };\n }\n\n function weeksInYear(year, dow, doy) {\n var weekOffset = firstWeekOffset(year, dow, doy),\n weekOffsetNext = firstWeekOffset(year + 1, dow, doy);\n return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;\n } // FORMATTING\n\n\n addFormatToken('w', ['ww', 2], 'wo', 'week');\n addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek'); // ALIASES\n\n addUnitAlias('week', 'w');\n addUnitAlias('isoWeek', 'W'); // PRIORITIES\n\n addUnitPriority('week', 5);\n addUnitPriority('isoWeek', 5); // PARSING\n\n addRegexToken('w', match1to2);\n addRegexToken('ww', match1to2, match2);\n addRegexToken('W', match1to2);\n addRegexToken('WW', match1to2, match2);\n addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {\n week[token.substr(0, 1)] = toInt(input);\n }); // HELPERS\n // LOCALES\n\n function localeWeek(mom) {\n return weekOfYear(mom, this._week.dow, this._week.doy).week;\n }\n\n var defaultLocaleWeek = {\n dow: 0,\n // Sunday is the first day of the week.\n doy: 6 // The week that contains Jan 6th is the first week of the year.\n\n };\n\n function localeFirstDayOfWeek() {\n return this._week.dow;\n }\n\n function localeFirstDayOfYear() {\n return this._week.doy;\n } // MOMENTS\n\n\n function getSetWeek(input) {\n var week = this.localeData().week(this);\n return input == null ? week : this.add((input - week) * 7, 'd');\n }\n\n function getSetISOWeek(input) {\n var week = weekOfYear(this, 1, 4).week;\n return input == null ? week : this.add((input - week) * 7, 'd');\n } // FORMATTING\n\n\n addFormatToken('d', 0, 'do', 'day');\n addFormatToken('dd', 0, 0, function (format) {\n return this.localeData().weekdaysMin(this, format);\n });\n addFormatToken('ddd', 0, 0, function (format) {\n return this.localeData().weekdaysShort(this, format);\n });\n addFormatToken('dddd', 0, 0, function (format) {\n return this.localeData().weekdays(this, format);\n });\n addFormatToken('e', 0, 0, 'weekday');\n addFormatToken('E', 0, 0, 'isoWeekday'); // ALIASES\n\n addUnitAlias('day', 'd');\n addUnitAlias('weekday', 'e');\n addUnitAlias('isoWeekday', 'E'); // PRIORITY\n\n addUnitPriority('day', 11);\n addUnitPriority('weekday', 11);\n addUnitPriority('isoWeekday', 11); // PARSING\n\n addRegexToken('d', match1to2);\n addRegexToken('e', match1to2);\n addRegexToken('E', match1to2);\n addRegexToken('dd', function (isStrict, locale) {\n return locale.weekdaysMinRegex(isStrict);\n });\n addRegexToken('ddd', function (isStrict, locale) {\n return locale.weekdaysShortRegex(isStrict);\n });\n addRegexToken('dddd', function (isStrict, locale) {\n return locale.weekdaysRegex(isStrict);\n });\n addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {\n var weekday = config._locale.weekdaysParse(input, token, config._strict); // if we didn't get a weekday name, mark the date as invalid\n\n\n if (weekday != null) {\n week.d = weekday;\n } else {\n getParsingFlags(config).invalidWeekday = input;\n }\n });\n addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {\n week[token] = toInt(input);\n }); // HELPERS\n\n function parseWeekday(input, locale) {\n if (typeof input !== 'string') {\n return input;\n }\n\n if (!isNaN(input)) {\n return parseInt(input, 10);\n }\n\n input = locale.weekdaysParse(input);\n\n if (typeof input === 'number') {\n return input;\n }\n\n return null;\n }\n\n function parseIsoWeekday(input, locale) {\n if (typeof input === 'string') {\n return locale.weekdaysParse(input) % 7 || 7;\n }\n\n return isNaN(input) ? null : input;\n } // LOCALES\n\n\n function shiftWeekdays(ws, n) {\n return ws.slice(n, 7).concat(ws.slice(0, n));\n }\n\n var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');\n\n function localeWeekdays(m, format) {\n var weekdays = isArray(this._weekdays) ? this._weekdays : this._weekdays[m && m !== true && this._weekdays.isFormat.test(format) ? 'format' : 'standalone'];\n return m === true ? shiftWeekdays(weekdays, this._week.dow) : m ? weekdays[m.day()] : weekdays;\n }\n\n var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');\n\n function localeWeekdaysShort(m) {\n return m === true ? shiftWeekdays(this._weekdaysShort, this._week.dow) : m ? this._weekdaysShort[m.day()] : this._weekdaysShort;\n }\n\n var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');\n\n function localeWeekdaysMin(m) {\n return m === true ? shiftWeekdays(this._weekdaysMin, this._week.dow) : m ? this._weekdaysMin[m.day()] : this._weekdaysMin;\n }\n\n function handleStrictParse$1(weekdayName, format, strict) {\n var i,\n ii,\n mom,\n llc = weekdayName.toLocaleLowerCase();\n\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._minWeekdaysParse = [];\n\n for (i = 0; i < 7; ++i) {\n mom = createUTC([2000, 1]).day(i);\n this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();\n this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();\n this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._weekdaysParse, llc);\n\n if (ii !== -1) {\n return ii;\n }\n\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeWeekdaysParse(weekdayName, format, strict) {\n var i, mom, regex;\n\n if (this._weekdaysParseExact) {\n return handleStrictParse$1.call(this, weekdayName, format, strict);\n }\n\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._minWeekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._fullWeekdaysParse = [];\n }\n\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, 1]).day(i);\n\n if (strict && !this._fullWeekdaysParse[i]) {\n this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\\\.?') + '$', 'i');\n }\n\n if (!this._weekdaysParse[i]) {\n regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');\n this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');\n } // test the regex\n\n\n if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {\n return i;\n }\n }\n } // MOMENTS\n\n\n function getSetDayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();\n\n if (input != null) {\n input = parseWeekday(input, this.localeData());\n return this.add(input - day, 'd');\n } else {\n return day;\n }\n }\n\n function getSetLocaleDayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;\n return input == null ? weekday : this.add(input - weekday, 'd');\n }\n\n function getSetISODayOfWeek(input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n } // behaves the same as moment#day except\n // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)\n // as a setter, sunday should belong to the previous week.\n\n\n if (input != null) {\n var weekday = parseIsoWeekday(input, this.localeData());\n return this.day(this.day() % 7 ? weekday : weekday - 7);\n } else {\n return this.day() || 7;\n }\n }\n\n var defaultWeekdaysRegex = matchWord;\n\n function weekdaysRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysStrictRegex;\n } else {\n return this._weekdaysRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this._weekdaysRegex = defaultWeekdaysRegex;\n }\n\n return this._weekdaysStrictRegex && isStrict ? this._weekdaysStrictRegex : this._weekdaysRegex;\n }\n }\n\n var defaultWeekdaysShortRegex = matchWord;\n\n function weekdaysShortRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysShortStrictRegex;\n } else {\n return this._weekdaysShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysShortRegex')) {\n this._weekdaysShortRegex = defaultWeekdaysShortRegex;\n }\n\n return this._weekdaysShortStrictRegex && isStrict ? this._weekdaysShortStrictRegex : this._weekdaysShortRegex;\n }\n }\n\n var defaultWeekdaysMinRegex = matchWord;\n\n function weekdaysMinRegex(isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n\n if (isStrict) {\n return this._weekdaysMinStrictRegex;\n } else {\n return this._weekdaysMinRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysMinRegex')) {\n this._weekdaysMinRegex = defaultWeekdaysMinRegex;\n }\n\n return this._weekdaysMinStrictRegex && isStrict ? this._weekdaysMinStrictRegex : this._weekdaysMinRegex;\n }\n }\n\n function computeWeekdaysParse() {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var minPieces = [],\n shortPieces = [],\n longPieces = [],\n mixedPieces = [],\n i,\n mom,\n minp,\n shortp,\n longp;\n\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, 1]).day(i);\n minp = this.weekdaysMin(mom, '');\n shortp = this.weekdaysShort(mom, '');\n longp = this.weekdays(mom, '');\n minPieces.push(minp);\n shortPieces.push(shortp);\n longPieces.push(longp);\n mixedPieces.push(minp);\n mixedPieces.push(shortp);\n mixedPieces.push(longp);\n } // Sorting makes sure if one weekday (or abbr) is a prefix of another it\n // will match the longer piece.\n\n\n minPieces.sort(cmpLenRev);\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n\n for (i = 0; i < 7; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._weekdaysShortRegex = this._weekdaysRegex;\n this._weekdaysMinRegex = this._weekdaysRegex;\n this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');\n } // FORMATTING\n\n\n function hFormat() {\n return this.hours() % 12 || 12;\n }\n\n function kFormat() {\n return this.hours() || 24;\n }\n\n addFormatToken('H', ['HH', 2], 0, 'hour');\n addFormatToken('h', ['hh', 2], 0, hFormat);\n addFormatToken('k', ['kk', 2], 0, kFormat);\n addFormatToken('hmm', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);\n });\n addFormatToken('hmmss', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\n });\n addFormatToken('Hmm', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2);\n });\n addFormatToken('Hmmss', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2) + zeroFill(this.seconds(), 2);\n });\n\n function meridiem(token, lowercase) {\n addFormatToken(token, 0, 0, function () {\n return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);\n });\n }\n\n meridiem('a', true);\n meridiem('A', false); // ALIASES\n\n addUnitAlias('hour', 'h'); // PRIORITY\n\n addUnitPriority('hour', 13); // PARSING\n\n function matchMeridiem(isStrict, locale) {\n return locale._meridiemParse;\n }\n\n addRegexToken('a', matchMeridiem);\n addRegexToken('A', matchMeridiem);\n addRegexToken('H', match1to2);\n addRegexToken('h', match1to2);\n addRegexToken('k', match1to2);\n addRegexToken('HH', match1to2, match2);\n addRegexToken('hh', match1to2, match2);\n addRegexToken('kk', match1to2, match2);\n addRegexToken('hmm', match3to4);\n addRegexToken('hmmss', match5to6);\n addRegexToken('Hmm', match3to4);\n addRegexToken('Hmmss', match5to6);\n addParseToken(['H', 'HH'], HOUR);\n addParseToken(['k', 'kk'], function (input, array, config) {\n var kInput = toInt(input);\n array[HOUR] = kInput === 24 ? 0 : kInput;\n });\n addParseToken(['a', 'A'], function (input, array, config) {\n config._isPm = config._locale.isPM(input);\n config._meridiem = input;\n });\n addParseToken(['h', 'hh'], function (input, array, config) {\n array[HOUR] = toInt(input);\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('Hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n });\n addParseToken('Hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n }); // LOCALES\n\n function localeIsPM(input) {\n // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays\n // Using charAt should be more compatible.\n return (input + '').toLowerCase().charAt(0) === 'p';\n }\n\n var defaultLocaleMeridiemParse = /[ap]\\.?m?\\.?/i;\n\n function localeMeridiem(hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'pm' : 'PM';\n } else {\n return isLower ? 'am' : 'AM';\n }\n } // MOMENTS\n // Setting the hour should keep the time, because the user explicitly\n // specified which hour they want. So trying to maintain the same hour (in\n // a new timezone) makes sense. Adding/subtracting hours does not follow\n // this rule.\n\n\n var getSetHour = makeGetSet('Hours', true);\n var baseConfig = {\n calendar: defaultCalendar,\n longDateFormat: defaultLongDateFormat,\n invalidDate: defaultInvalidDate,\n ordinal: defaultOrdinal,\n dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,\n relativeTime: defaultRelativeTime,\n months: defaultLocaleMonths,\n monthsShort: defaultLocaleMonthsShort,\n week: defaultLocaleWeek,\n weekdays: defaultLocaleWeekdays,\n weekdaysMin: defaultLocaleWeekdaysMin,\n weekdaysShort: defaultLocaleWeekdaysShort,\n meridiemParse: defaultLocaleMeridiemParse\n }; // internal storage for locale config files\n\n var locales = {};\n var localeFamilies = {};\n var globalLocale;\n\n function normalizeLocale(key) {\n return key ? key.toLowerCase().replace('_', '-') : key;\n } // pick the locale from the array\n // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each\n // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root\n\n\n function chooseLocale(names) {\n var i = 0,\n j,\n next,\n locale,\n split;\n\n while (i < names.length) {\n split = normalizeLocale(names[i]).split('-');\n j = split.length;\n next = normalizeLocale(names[i + 1]);\n next = next ? next.split('-') : null;\n\n while (j > 0) {\n locale = loadLocale(split.slice(0, j).join('-'));\n\n if (locale) {\n return locale;\n }\n\n if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {\n //the next array item is better than a shallower substring of this one\n break;\n }\n\n j--;\n }\n\n i++;\n }\n\n return globalLocale;\n }\n\n function loadLocale(name) {\n var oldLocale = null; // TODO: Find a better way to register and load all the locales in Node\n\n if (!locales[name] && 'object' !== 'undefined' && module && module.exports) {\n try {\n oldLocale = globalLocale._abbr;\n var aliasedRequire = commonjsRequire;\n aliasedRequire('./locale/' + name);\n getSetGlobalLocale(oldLocale);\n } catch (e) {}\n }\n\n return locales[name];\n } // This function will load locale and then set the global locale. If\n // no arguments are passed in, it will simply return the current global\n // locale key.\n\n\n function getSetGlobalLocale(key, values) {\n var data;\n\n if (key) {\n if (isUndefined(values)) {\n data = getLocale(key);\n } else {\n data = defineLocale(key, values);\n }\n\n if (data) {\n // moment.duration._locale = moment._locale = data;\n globalLocale = data;\n } else {\n if (typeof console !== 'undefined' && console.warn) {\n //warn user if arguments are passed but the locale could not be set\n console.warn('Locale ' + key + ' not found. Did you forget to load it?');\n }\n }\n }\n\n return globalLocale._abbr;\n }\n\n function defineLocale(name, config) {\n if (config !== null) {\n var locale,\n parentConfig = baseConfig;\n config.abbr = name;\n\n if (locales[name] != null) {\n deprecateSimple('defineLocaleOverride', 'use moment.updateLocale(localeName, config) to change ' + 'an existing locale. moment.defineLocale(localeName, ' + 'config) should only be used for creating a new locale ' + 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');\n parentConfig = locales[name]._config;\n } else if (config.parentLocale != null) {\n if (locales[config.parentLocale] != null) {\n parentConfig = locales[config.parentLocale]._config;\n } else {\n locale = loadLocale(config.parentLocale);\n\n if (locale != null) {\n parentConfig = locale._config;\n } else {\n if (!localeFamilies[config.parentLocale]) {\n localeFamilies[config.parentLocale] = [];\n }\n\n localeFamilies[config.parentLocale].push({\n name: name,\n config: config\n });\n return null;\n }\n }\n }\n\n locales[name] = new Locale(mergeConfigs(parentConfig, config));\n\n if (localeFamilies[name]) {\n localeFamilies[name].forEach(function (x) {\n defineLocale(x.name, x.config);\n });\n } // backwards compat for now: also set the locale\n // make sure we set the locale AFTER all child locales have been\n // created, so we won't end up with the child locale set.\n\n\n getSetGlobalLocale(name);\n return locales[name];\n } else {\n // useful for testing\n delete locales[name];\n return null;\n }\n }\n\n function updateLocale(name, config) {\n if (config != null) {\n var locale,\n tmpLocale,\n parentConfig = baseConfig; // MERGE\n\n tmpLocale = loadLocale(name);\n\n if (tmpLocale != null) {\n parentConfig = tmpLocale._config;\n }\n\n config = mergeConfigs(parentConfig, config);\n locale = new Locale(config);\n locale.parentLocale = locales[name];\n locales[name] = locale; // backwards compat for now: also set the locale\n\n getSetGlobalLocale(name);\n } else {\n // pass null for config to unupdate, useful for tests\n if (locales[name] != null) {\n if (locales[name].parentLocale != null) {\n locales[name] = locales[name].parentLocale;\n } else if (locales[name] != null) {\n delete locales[name];\n }\n }\n }\n\n return locales[name];\n } // returns locale data\n\n\n function getLocale(key) {\n var locale;\n\n if (key && key._locale && key._locale._abbr) {\n key = key._locale._abbr;\n }\n\n if (!key) {\n return globalLocale;\n }\n\n if (!isArray(key)) {\n //short-circuit everything else\n locale = loadLocale(key);\n\n if (locale) {\n return locale;\n }\n\n key = [key];\n }\n\n return chooseLocale(key);\n }\n\n function listLocales() {\n return keys(locales);\n }\n\n function checkOverflow(m) {\n var overflow;\n var a = m._a;\n\n if (a && getParsingFlags(m).overflow === -2) {\n overflow = a[MONTH] < 0 || a[MONTH] > 11 ? MONTH : a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE : a[HOUR] < 0 || a[HOUR] > 24 || a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0) ? HOUR : a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE : a[SECOND] < 0 || a[SECOND] > 59 ? SECOND : a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND : -1;\n\n if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {\n overflow = DATE;\n }\n\n if (getParsingFlags(m)._overflowWeeks && overflow === -1) {\n overflow = WEEK;\n }\n\n if (getParsingFlags(m)._overflowWeekday && overflow === -1) {\n overflow = WEEKDAY;\n }\n\n getParsingFlags(m).overflow = overflow;\n }\n\n return m;\n } // Pick the first defined of two or three arguments.\n\n\n function defaults(a, b, c) {\n if (a != null) {\n return a;\n }\n\n if (b != null) {\n return b;\n }\n\n return c;\n }\n\n function currentDateArray(config) {\n // hooks is actually the exported moment object\n var nowValue = new Date(hooks.now());\n\n if (config._useUTC) {\n return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];\n }\n\n return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];\n } // convert an array to a date.\n // the array should mirror the parameters below\n // note: all values past the year are optional and will default to the lowest possible value.\n // [year, month, day , hour, minute, second, millisecond]\n\n\n function configFromArray(config) {\n var i,\n date,\n input = [],\n currentDate,\n expectedWeekday,\n yearToUse;\n\n if (config._d) {\n return;\n }\n\n currentDate = currentDateArray(config); //compute day of the year from weeks and weekdays\n\n if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {\n dayOfYearFromWeekInfo(config);\n } //if the day of the year is set, figure out what it is\n\n\n if (config._dayOfYear != null) {\n yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);\n\n if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {\n getParsingFlags(config)._overflowDayOfYear = true;\n }\n\n date = createUTCDate(yearToUse, 0, config._dayOfYear);\n config._a[MONTH] = date.getUTCMonth();\n config._a[DATE] = date.getUTCDate();\n } // Default to current date.\n // * if no year, month, day of month are given, default to today\n // * if day of month is given, default month and year\n // * if month is given, default only year\n // * if year is given, don't default anything\n\n\n for (i = 0; i < 3 && config._a[i] == null; ++i) {\n config._a[i] = input[i] = currentDate[i];\n } // Zero out whatever was not defaulted, including time\n\n\n for (; i < 7; i++) {\n config._a[i] = input[i] = config._a[i] == null ? i === 2 ? 1 : 0 : config._a[i];\n } // Check for 24:00:00.000\n\n\n if (config._a[HOUR] === 24 && config._a[MINUTE] === 0 && config._a[SECOND] === 0 && config._a[MILLISECOND] === 0) {\n config._nextDay = true;\n config._a[HOUR] = 0;\n }\n\n config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);\n expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay(); // Apply timezone offset from input. The actual utcOffset can be changed\n // with parseZone.\n\n if (config._tzm != null) {\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n }\n\n if (config._nextDay) {\n config._a[HOUR] = 24;\n } // check for mismatching day of week\n\n\n if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {\n getParsingFlags(config).weekdayMismatch = true;\n }\n }\n\n function dayOfYearFromWeekInfo(config) {\n var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;\n w = config._w;\n\n if (w.GG != null || w.W != null || w.E != null) {\n dow = 1;\n doy = 4; // TODO: We need to take the current isoWeekYear, but that depends on\n // how we interpret now (local, utc, fixed offset). So create\n // a now version of current config (take local/utc/offset flags, and\n // create now).\n\n weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);\n week = defaults(w.W, 1);\n weekday = defaults(w.E, 1);\n\n if (weekday < 1 || weekday > 7) {\n weekdayOverflow = true;\n }\n } else {\n dow = config._locale._week.dow;\n doy = config._locale._week.doy;\n var curWeek = weekOfYear(createLocal(), dow, doy);\n weekYear = defaults(w.gg, config._a[YEAR], curWeek.year); // Default to current week.\n\n week = defaults(w.w, curWeek.week);\n\n if (w.d != null) {\n // weekday -- low day numbers are considered next week\n weekday = w.d;\n\n if (weekday < 0 || weekday > 6) {\n weekdayOverflow = true;\n }\n } else if (w.e != null) {\n // local weekday -- counting starts from beginning of week\n weekday = w.e + dow;\n\n if (w.e < 0 || w.e > 6) {\n weekdayOverflow = true;\n }\n } else {\n // default to beginning of week\n weekday = dow;\n }\n }\n\n if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {\n getParsingFlags(config)._overflowWeeks = true;\n } else if (weekdayOverflow != null) {\n getParsingFlags(config)._overflowWeekday = true;\n } else {\n temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);\n config._a[YEAR] = temp.year;\n config._dayOfYear = temp.dayOfYear;\n }\n } // iso 8601 regex\n // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)\n\n\n var extendedIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n var basicIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n var tzRegex = /Z|[+-]\\d\\d(?::?\\d\\d)?/;\n var isoDates = [['YYYYYY-MM-DD', /[+-]\\d{6}-\\d\\d-\\d\\d/], ['YYYY-MM-DD', /\\d{4}-\\d\\d-\\d\\d/], ['GGGG-[W]WW-E', /\\d{4}-W\\d\\d-\\d/], ['GGGG-[W]WW', /\\d{4}-W\\d\\d/, false], ['YYYY-DDD', /\\d{4}-\\d{3}/], ['YYYY-MM', /\\d{4}-\\d\\d/, false], ['YYYYYYMMDD', /[+-]\\d{10}/], ['YYYYMMDD', /\\d{8}/], // YYYYMM is NOT allowed by the standard\n ['GGGG[W]WWE', /\\d{4}W\\d{3}/], ['GGGG[W]WW', /\\d{4}W\\d{2}/, false], ['YYYYDDD', /\\d{7}/]]; // iso time formats and regexes\n\n var isoTimes = [['HH:mm:ss.SSSS', /\\d\\d:\\d\\d:\\d\\d\\.\\d+/], ['HH:mm:ss,SSSS', /\\d\\d:\\d\\d:\\d\\d,\\d+/], ['HH:mm:ss', /\\d\\d:\\d\\d:\\d\\d/], ['HH:mm', /\\d\\d:\\d\\d/], ['HHmmss.SSSS', /\\d\\d\\d\\d\\d\\d\\.\\d+/], ['HHmmss,SSSS', /\\d\\d\\d\\d\\d\\d,\\d+/], ['HHmmss', /\\d\\d\\d\\d\\d\\d/], ['HHmm', /\\d\\d\\d\\d/], ['HH', /\\d\\d/]];\n var aspNetJsonRegex = /^\\/?Date\\((\\-?\\d+)/i; // date from iso format\n\n function configFromISO(config) {\n var i,\n l,\n string = config._i,\n match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),\n allowTime,\n dateFormat,\n timeFormat,\n tzFormat;\n\n if (match) {\n getParsingFlags(config).iso = true;\n\n for (i = 0, l = isoDates.length; i < l; i++) {\n if (isoDates[i][1].exec(match[1])) {\n dateFormat = isoDates[i][0];\n allowTime = isoDates[i][2] !== false;\n break;\n }\n }\n\n if (dateFormat == null) {\n config._isValid = false;\n return;\n }\n\n if (match[3]) {\n for (i = 0, l = isoTimes.length; i < l; i++) {\n if (isoTimes[i][1].exec(match[3])) {\n // match[2] should be 'T' or space\n timeFormat = (match[2] || ' ') + isoTimes[i][0];\n break;\n }\n }\n\n if (timeFormat == null) {\n config._isValid = false;\n return;\n }\n }\n\n if (!allowTime && timeFormat != null) {\n config._isValid = false;\n return;\n }\n\n if (match[4]) {\n if (tzRegex.exec(match[4])) {\n tzFormat = 'Z';\n } else {\n config._isValid = false;\n return;\n }\n }\n\n config._f = dateFormat + (timeFormat || '') + (tzFormat || '');\n configFromStringAndFormat(config);\n } else {\n config._isValid = false;\n }\n } // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3\n\n\n var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\\s)?(\\d{1,2})\\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s(\\d{2,4})\\s(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\\d{4}))$/;\n\n function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {\n var result = [untruncateYear(yearStr), defaultLocaleMonthsShort.indexOf(monthStr), parseInt(dayStr, 10), parseInt(hourStr, 10), parseInt(minuteStr, 10)];\n\n if (secondStr) {\n result.push(parseInt(secondStr, 10));\n }\n\n return result;\n }\n\n function untruncateYear(yearStr) {\n var year = parseInt(yearStr, 10);\n\n if (year <= 49) {\n return 2000 + year;\n } else if (year <= 999) {\n return 1900 + year;\n }\n\n return year;\n }\n\n function preprocessRFC2822(s) {\n // Remove comments and folding whitespace and replace multiple-spaces with a single space\n return s.replace(/\\([^)]*\\)|[\\n\\t]/g, ' ').replace(/(\\s\\s+)/g, ' ').replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n }\n\n function checkWeekday(weekdayStr, parsedInput, config) {\n if (weekdayStr) {\n // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.\n var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr),\n weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();\n\n if (weekdayProvided !== weekdayActual) {\n getParsingFlags(config).weekdayMismatch = true;\n config._isValid = false;\n return false;\n }\n }\n\n return true;\n }\n\n var obsOffsets = {\n UT: 0,\n GMT: 0,\n EDT: -4 * 60,\n EST: -5 * 60,\n CDT: -5 * 60,\n CST: -6 * 60,\n MDT: -6 * 60,\n MST: -7 * 60,\n PDT: -7 * 60,\n PST: -8 * 60\n };\n\n function calculateOffset(obsOffset, militaryOffset, numOffset) {\n if (obsOffset) {\n return obsOffsets[obsOffset];\n } else if (militaryOffset) {\n // the only allowed military tz is Z\n return 0;\n } else {\n var hm = parseInt(numOffset, 10);\n var m = hm % 100,\n h = (hm - m) / 100;\n return h * 60 + m;\n }\n } // date and time from ref 2822 format\n\n\n function configFromRFC2822(config) {\n var match = rfc2822.exec(preprocessRFC2822(config._i));\n\n if (match) {\n var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);\n\n if (!checkWeekday(match[1], parsedArray, config)) {\n return;\n }\n\n config._a = parsedArray;\n config._tzm = calculateOffset(match[8], match[9], match[10]);\n config._d = createUTCDate.apply(null, config._a);\n\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n\n getParsingFlags(config).rfc2822 = true;\n } else {\n config._isValid = false;\n }\n } // date from iso format or fallback\n\n\n function configFromString(config) {\n var matched = aspNetJsonRegex.exec(config._i);\n\n if (matched !== null) {\n config._d = new Date(+matched[1]);\n return;\n }\n\n configFromISO(config);\n\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n }\n\n configFromRFC2822(config);\n\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n } // Final attempt, use Input Fallback\n\n\n hooks.createFromInputFallback(config);\n }\n\n hooks.createFromInputFallback = deprecate('value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' + 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' + 'discouraged and will be removed in an upcoming major release. Please refer to ' + 'http://momentjs.com/guides/#/warnings/js-date/ for more info.', function (config) {\n config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));\n }); // constant that refers to the ISO standard\n\n hooks.ISO_8601 = function () {}; // constant that refers to the RFC 2822 form\n\n\n hooks.RFC_2822 = function () {}; // date from string and format string\n\n\n function configFromStringAndFormat(config) {\n // TODO: Move this to another part of the creation flow to prevent circular deps\n if (config._f === hooks.ISO_8601) {\n configFromISO(config);\n return;\n }\n\n if (config._f === hooks.RFC_2822) {\n configFromRFC2822(config);\n return;\n }\n\n config._a = [];\n getParsingFlags(config).empty = true; // This array is used to make a Date, either with `new Date` or `Date.UTC`\n\n var string = '' + config._i,\n i,\n parsedInput,\n tokens,\n token,\n skipped,\n stringLength = string.length,\n totalParsedInputLength = 0;\n tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];\n\n for (i = 0; i < tokens.length; i++) {\n token = tokens[i];\n parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0]; // console.log('token', token, 'parsedInput', parsedInput,\n // 'regex', getParseRegexForToken(token, config));\n\n if (parsedInput) {\n skipped = string.substr(0, string.indexOf(parsedInput));\n\n if (skipped.length > 0) {\n getParsingFlags(config).unusedInput.push(skipped);\n }\n\n string = string.slice(string.indexOf(parsedInput) + parsedInput.length);\n totalParsedInputLength += parsedInput.length;\n } // don't parse if it's not a known token\n\n\n if (formatTokenFunctions[token]) {\n if (parsedInput) {\n getParsingFlags(config).empty = false;\n } else {\n getParsingFlags(config).unusedTokens.push(token);\n }\n\n addTimeToArrayFromToken(token, parsedInput, config);\n } else if (config._strict && !parsedInput) {\n getParsingFlags(config).unusedTokens.push(token);\n }\n } // add remaining unparsed input length to the string\n\n\n getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;\n\n if (string.length > 0) {\n getParsingFlags(config).unusedInput.push(string);\n } // clear _12h flag if hour is <= 12\n\n\n if (config._a[HOUR] <= 12 && getParsingFlags(config).bigHour === true && config._a[HOUR] > 0) {\n getParsingFlags(config).bigHour = undefined;\n }\n\n getParsingFlags(config).parsedDateParts = config._a.slice(0);\n getParsingFlags(config).meridiem = config._meridiem; // handle meridiem\n\n config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);\n configFromArray(config);\n checkOverflow(config);\n }\n\n function meridiemFixWrap(locale, hour, meridiem) {\n var isPm;\n\n if (meridiem == null) {\n // nothing to do\n return hour;\n }\n\n if (locale.meridiemHour != null) {\n return locale.meridiemHour(hour, meridiem);\n } else if (locale.isPM != null) {\n // Fallback\n isPm = locale.isPM(meridiem);\n\n if (isPm && hour < 12) {\n hour += 12;\n }\n\n if (!isPm && hour === 12) {\n hour = 0;\n }\n\n return hour;\n } else {\n // this is not supposed to happen\n return hour;\n }\n } // date from string and array of format strings\n\n\n function configFromStringAndArray(config) {\n var tempConfig, bestMoment, scoreToBeat, i, currentScore;\n\n if (config._f.length === 0) {\n getParsingFlags(config).invalidFormat = true;\n config._d = new Date(NaN);\n return;\n }\n\n for (i = 0; i < config._f.length; i++) {\n currentScore = 0;\n tempConfig = copyConfig({}, config);\n\n if (config._useUTC != null) {\n tempConfig._useUTC = config._useUTC;\n }\n\n tempConfig._f = config._f[i];\n configFromStringAndFormat(tempConfig);\n\n if (!isValid(tempConfig)) {\n continue;\n } // if there is any input that was not parsed add a penalty for that format\n\n\n currentScore += getParsingFlags(tempConfig).charsLeftOver; //or tokens\n\n currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;\n getParsingFlags(tempConfig).score = currentScore;\n\n if (scoreToBeat == null || currentScore < scoreToBeat) {\n scoreToBeat = currentScore;\n bestMoment = tempConfig;\n }\n }\n\n extend(config, bestMoment || tempConfig);\n }\n\n function configFromObject(config) {\n if (config._d) {\n return;\n }\n\n var i = normalizeObjectUnits(config._i);\n config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {\n return obj && parseInt(obj, 10);\n });\n configFromArray(config);\n }\n\n function createFromConfig(config) {\n var res = new Moment(checkOverflow(prepareConfig(config)));\n\n if (res._nextDay) {\n // Adding is smart enough around DST\n res.add(1, 'd');\n res._nextDay = undefined;\n }\n\n return res;\n }\n\n function prepareConfig(config) {\n var input = config._i,\n format = config._f;\n config._locale = config._locale || getLocale(config._l);\n\n if (input === null || format === undefined && input === '') {\n return createInvalid({\n nullInput: true\n });\n }\n\n if (typeof input === 'string') {\n config._i = input = config._locale.preparse(input);\n }\n\n if (isMoment(input)) {\n return new Moment(checkOverflow(input));\n } else if (isDate(input)) {\n config._d = input;\n } else if (isArray(format)) {\n configFromStringAndArray(config);\n } else if (format) {\n configFromStringAndFormat(config);\n } else {\n configFromInput(config);\n }\n\n if (!isValid(config)) {\n config._d = null;\n }\n\n return config;\n }\n\n function configFromInput(config) {\n var input = config._i;\n\n if (isUndefined(input)) {\n config._d = new Date(hooks.now());\n } else if (isDate(input)) {\n config._d = new Date(input.valueOf());\n } else if (typeof input === 'string') {\n configFromString(config);\n } else if (isArray(input)) {\n config._a = map(input.slice(0), function (obj) {\n return parseInt(obj, 10);\n });\n configFromArray(config);\n } else if (isObject(input)) {\n configFromObject(config);\n } else if (isNumber(input)) {\n // from milliseconds\n config._d = new Date(input);\n } else {\n hooks.createFromInputFallback(config);\n }\n }\n\n function createLocalOrUTC(input, format, locale, strict, isUTC) {\n var c = {};\n\n if (locale === true || locale === false) {\n strict = locale;\n locale = undefined;\n }\n\n if (isObject(input) && isObjectEmpty(input) || isArray(input) && input.length === 0) {\n input = undefined;\n } // object construction must be done this way.\n // https://github.com/moment/moment/issues/1423\n\n\n c._isAMomentObject = true;\n c._useUTC = c._isUTC = isUTC;\n c._l = locale;\n c._i = input;\n c._f = format;\n c._strict = strict;\n return createFromConfig(c);\n }\n\n function createLocal(input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, false);\n }\n\n var prototypeMin = deprecate('moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\n var other = createLocal.apply(null, arguments);\n\n if (this.isValid() && other.isValid()) {\n return other < this ? this : other;\n } else {\n return createInvalid();\n }\n });\n var prototypeMax = deprecate('moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/', function () {\n var other = createLocal.apply(null, arguments);\n\n if (this.isValid() && other.isValid()) {\n return other > this ? this : other;\n } else {\n return createInvalid();\n }\n }); // Pick a moment m from moments so that m[fn](other) is true for all\n // other. This relies on the function fn to be transitive.\n //\n // moments should either be an array of moment objects or an array, whose\n // first element is an array of moment objects.\n\n function pickBy(fn, moments) {\n var res, i;\n\n if (moments.length === 1 && isArray(moments[0])) {\n moments = moments[0];\n }\n\n if (!moments.length) {\n return createLocal();\n }\n\n res = moments[0];\n\n for (i = 1; i < moments.length; ++i) {\n if (!moments[i].isValid() || moments[i][fn](res)) {\n res = moments[i];\n }\n }\n\n return res;\n } // TODO: Use [].sort instead?\n\n\n function min() {\n var args = [].slice.call(arguments, 0);\n return pickBy('isBefore', args);\n }\n\n function max() {\n var args = [].slice.call(arguments, 0);\n return pickBy('isAfter', args);\n }\n\n var now = function () {\n return Date.now ? Date.now() : +new Date();\n };\n\n var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];\n\n function isDurationValid(m) {\n for (var key in m) {\n if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) {\n return false;\n }\n }\n\n var unitHasDecimal = false;\n\n for (var i = 0; i < ordering.length; ++i) {\n if (m[ordering[i]]) {\n if (unitHasDecimal) {\n return false; // only allow non-integers for smallest unit\n }\n\n if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {\n unitHasDecimal = true;\n }\n }\n }\n\n return true;\n }\n\n function isValid$1() {\n return this._isValid;\n }\n\n function createInvalid$1() {\n return createDuration(NaN);\n }\n\n function Duration(duration) {\n var normalizedInput = normalizeObjectUnits(duration),\n years = normalizedInput.year || 0,\n quarters = normalizedInput.quarter || 0,\n months = normalizedInput.month || 0,\n weeks = normalizedInput.week || normalizedInput.isoWeek || 0,\n days = normalizedInput.day || 0,\n hours = normalizedInput.hour || 0,\n minutes = normalizedInput.minute || 0,\n seconds = normalizedInput.second || 0,\n milliseconds = normalizedInput.millisecond || 0;\n this._isValid = isDurationValid(normalizedInput); // representation for dateAddRemove\n\n this._milliseconds = +milliseconds + seconds * 1e3 + // 1000\n minutes * 6e4 + // 1000 * 60\n hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978\n // Because of dateAddRemove treats 24 hours as different from a\n // day when working around DST, we need to store them separately\n\n this._days = +days + weeks * 7; // It is impossible to translate months into days without knowing\n // which months you are are talking about, so we have to store\n // it separately.\n\n this._months = +months + quarters * 3 + years * 12;\n this._data = {};\n this._locale = getLocale();\n\n this._bubble();\n }\n\n function isDuration(obj) {\n return obj instanceof Duration;\n }\n\n function absRound(number) {\n if (number < 0) {\n return Math.round(-1 * number) * -1;\n } else {\n return Math.round(number);\n }\n } // FORMATTING\n\n\n function offset(token, separator) {\n addFormatToken(token, 0, 0, function () {\n var offset = this.utcOffset();\n var sign = '+';\n\n if (offset < 0) {\n offset = -offset;\n sign = '-';\n }\n\n return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~offset % 60, 2);\n });\n }\n\n offset('Z', ':');\n offset('ZZ', ''); // PARSING\n\n addRegexToken('Z', matchShortOffset);\n addRegexToken('ZZ', matchShortOffset);\n addParseToken(['Z', 'ZZ'], function (input, array, config) {\n config._useUTC = true;\n config._tzm = offsetFromString(matchShortOffset, input);\n }); // HELPERS\n // timezone chunker\n // '+10:00' > ['10', '00']\n // '-1530' > ['-15', '30']\n\n var chunkOffset = /([\\+\\-]|\\d\\d)/gi;\n\n function offsetFromString(matcher, string) {\n var matches = (string || '').match(matcher);\n\n if (matches === null) {\n return null;\n }\n\n var chunk = matches[matches.length - 1] || [];\n var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];\n var minutes = +(parts[1] * 60) + toInt(parts[2]);\n return minutes === 0 ? 0 : parts[0] === '+' ? minutes : -minutes;\n } // Return a moment from input, that is local/utc/zone equivalent to model.\n\n\n function cloneWithOffset(input, model) {\n var res, diff;\n\n if (model._isUTC) {\n res = model.clone();\n diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf(); // Use low-level api, because this fn is low-level api.\n\n res._d.setTime(res._d.valueOf() + diff);\n\n hooks.updateOffset(res, false);\n return res;\n } else {\n return createLocal(input).local();\n }\n }\n\n function getDateOffset(m) {\n // On Firefox.24 Date#getTimezoneOffset returns a floating point.\n // https://github.com/moment/moment/pull/1871\n return -Math.round(m._d.getTimezoneOffset() / 15) * 15;\n } // HOOKS\n // This function will be called whenever a moment is mutated.\n // It is intended to keep the offset in sync with the timezone.\n\n\n hooks.updateOffset = function () {}; // MOMENTS\n // keepLocalTime = true means only change the timezone, without\n // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->\n // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset\n // +0200, so we adjust the time as needed, to be valid.\n //\n // Keeping the time actually adds/subtracts (one hour)\n // from the actual represented time. That is why we call updateOffset\n // a second time. In case it wants us to change the offset again\n // _changeInProgress == true case, then we have to adjust, because\n // there is no such time in the given timezone.\n\n\n function getSetOffset(input, keepLocalTime, keepMinutes) {\n var offset = this._offset || 0,\n localAdjust;\n\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n if (input != null) {\n if (typeof input === 'string') {\n input = offsetFromString(matchShortOffset, input);\n\n if (input === null) {\n return this;\n }\n } else if (Math.abs(input) < 16 && !keepMinutes) {\n input = input * 60;\n }\n\n if (!this._isUTC && keepLocalTime) {\n localAdjust = getDateOffset(this);\n }\n\n this._offset = input;\n this._isUTC = true;\n\n if (localAdjust != null) {\n this.add(localAdjust, 'm');\n }\n\n if (offset !== input) {\n if (!keepLocalTime || this._changeInProgress) {\n addSubtract(this, createDuration(input - offset, 'm'), 1, false);\n } else if (!this._changeInProgress) {\n this._changeInProgress = true;\n hooks.updateOffset(this, true);\n this._changeInProgress = null;\n }\n }\n\n return this;\n } else {\n return this._isUTC ? offset : getDateOffset(this);\n }\n }\n\n function getSetZone(input, keepLocalTime) {\n if (input != null) {\n if (typeof input !== 'string') {\n input = -input;\n }\n\n this.utcOffset(input, keepLocalTime);\n return this;\n } else {\n return -this.utcOffset();\n }\n }\n\n function setOffsetToUTC(keepLocalTime) {\n return this.utcOffset(0, keepLocalTime);\n }\n\n function setOffsetToLocal(keepLocalTime) {\n if (this._isUTC) {\n this.utcOffset(0, keepLocalTime);\n this._isUTC = false;\n\n if (keepLocalTime) {\n this.subtract(getDateOffset(this), 'm');\n }\n }\n\n return this;\n }\n\n function setOffsetToParsedOffset() {\n if (this._tzm != null) {\n this.utcOffset(this._tzm, false, true);\n } else if (typeof this._i === 'string') {\n var tZone = offsetFromString(matchOffset, this._i);\n\n if (tZone != null) {\n this.utcOffset(tZone);\n } else {\n this.utcOffset(0, true);\n }\n }\n\n return this;\n }\n\n function hasAlignedHourOffset(input) {\n if (!this.isValid()) {\n return false;\n }\n\n input = input ? createLocal(input).utcOffset() : 0;\n return (this.utcOffset() - input) % 60 === 0;\n }\n\n function isDaylightSavingTime() {\n return this.utcOffset() > this.clone().month(0).utcOffset() || this.utcOffset() > this.clone().month(5).utcOffset();\n }\n\n function isDaylightSavingTimeShifted() {\n if (!isUndefined(this._isDSTShifted)) {\n return this._isDSTShifted;\n }\n\n var c = {};\n copyConfig(c, this);\n c = prepareConfig(c);\n\n if (c._a) {\n var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);\n this._isDSTShifted = this.isValid() && compareArrays(c._a, other.toArray()) > 0;\n } else {\n this._isDSTShifted = false;\n }\n\n return this._isDSTShifted;\n }\n\n function isLocal() {\n return this.isValid() ? !this._isUTC : false;\n }\n\n function isUtcOffset() {\n return this.isValid() ? this._isUTC : false;\n }\n\n function isUtc() {\n return this.isValid() ? this._isUTC && this._offset === 0 : false;\n } // ASP.NET json date format regex\n\n\n var aspNetRegex = /^(\\-|\\+)?(?:(\\d*)[. ])?(\\d+)\\:(\\d+)(?:\\:(\\d+)(\\.\\d*)?)?$/; // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html\n // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere\n // and further modified to allow for strings containing both week and day\n\n var isoRegex = /^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\n\n function createDuration(input, key) {\n var duration = input,\n // matching against regexp is expensive, do it on demand\n match = null,\n sign,\n ret,\n diffRes;\n\n if (isDuration(input)) {\n duration = {\n ms: input._milliseconds,\n d: input._days,\n M: input._months\n };\n } else if (isNumber(input)) {\n duration = {};\n\n if (key) {\n duration[key] = input;\n } else {\n duration.milliseconds = input;\n }\n } else if (!!(match = aspNetRegex.exec(input))) {\n sign = match[1] === '-' ? -1 : 1;\n duration = {\n y: 0,\n d: toInt(match[DATE]) * sign,\n h: toInt(match[HOUR]) * sign,\n m: toInt(match[MINUTE]) * sign,\n s: toInt(match[SECOND]) * sign,\n ms: toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match\n\n };\n } else if (!!(match = isoRegex.exec(input))) {\n sign = match[1] === '-' ? -1 : 1;\n duration = {\n y: parseIso(match[2], sign),\n M: parseIso(match[3], sign),\n w: parseIso(match[4], sign),\n d: parseIso(match[5], sign),\n h: parseIso(match[6], sign),\n m: parseIso(match[7], sign),\n s: parseIso(match[8], sign)\n };\n } else if (duration == null) {\n // checks for null or undefined\n duration = {};\n } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {\n diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));\n duration = {};\n duration.ms = diffRes.milliseconds;\n duration.M = diffRes.months;\n }\n\n ret = new Duration(duration);\n\n if (isDuration(input) && hasOwnProp(input, '_locale')) {\n ret._locale = input._locale;\n }\n\n return ret;\n }\n\n createDuration.fn = Duration.prototype;\n createDuration.invalid = createInvalid$1;\n\n function parseIso(inp, sign) {\n // We'd normally use ~~inp for this, but unfortunately it also\n // converts floats to ints.\n // inp may be undefined, so careful calling replace on it.\n var res = inp && parseFloat(inp.replace(',', '.')); // apply sign while we're at it\n\n return (isNaN(res) ? 0 : res) * sign;\n }\n\n function positiveMomentsDifference(base, other) {\n var res = {};\n res.months = other.month() - base.month() + (other.year() - base.year()) * 12;\n\n if (base.clone().add(res.months, 'M').isAfter(other)) {\n --res.months;\n }\n\n res.milliseconds = +other - +base.clone().add(res.months, 'M');\n return res;\n }\n\n function momentsDifference(base, other) {\n var res;\n\n if (!(base.isValid() && other.isValid())) {\n return {\n milliseconds: 0,\n months: 0\n };\n }\n\n other = cloneWithOffset(other, base);\n\n if (base.isBefore(other)) {\n res = positiveMomentsDifference(base, other);\n } else {\n res = positiveMomentsDifference(other, base);\n res.milliseconds = -res.milliseconds;\n res.months = -res.months;\n }\n\n return res;\n } // TODO: remove 'name' arg after deprecation is removed\n\n\n function createAdder(direction, name) {\n return function (val, period) {\n var dur, tmp; //invert the arguments, but complain about it\n\n if (period !== null && !isNaN(+period)) {\n deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' + 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');\n tmp = val;\n val = period;\n period = tmp;\n }\n\n val = typeof val === 'string' ? +val : val;\n dur = createDuration(val, period);\n addSubtract(this, dur, direction);\n return this;\n };\n }\n\n function addSubtract(mom, duration, isAdding, updateOffset) {\n var milliseconds = duration._milliseconds,\n days = absRound(duration._days),\n months = absRound(duration._months);\n\n if (!mom.isValid()) {\n // No op\n return;\n }\n\n updateOffset = updateOffset == null ? true : updateOffset;\n\n if (months) {\n setMonth(mom, get(mom, 'Month') + months * isAdding);\n }\n\n if (days) {\n set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);\n }\n\n if (milliseconds) {\n mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);\n }\n\n if (updateOffset) {\n hooks.updateOffset(mom, days || months);\n }\n }\n\n var add = createAdder(1, 'add');\n var subtract = createAdder(-1, 'subtract');\n\n function getCalendarFormat(myMoment, now) {\n var diff = myMoment.diff(now, 'days', true);\n return diff < -6 ? 'sameElse' : diff < -1 ? 'lastWeek' : diff < 0 ? 'lastDay' : diff < 1 ? 'sameDay' : diff < 2 ? 'nextDay' : diff < 7 ? 'nextWeek' : 'sameElse';\n }\n\n function calendar$1(time, formats) {\n // We want to compare the start of today, vs this.\n // Getting start-of-today depends on whether we're local/utc/offset or not.\n var now = time || createLocal(),\n sod = cloneWithOffset(now, this).startOf('day'),\n format = hooks.calendarFormat(this, sod) || 'sameElse';\n var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);\n return this.format(output || this.localeData().calendar(format, this, createLocal(now)));\n }\n\n function clone() {\n return new Moment(this);\n }\n\n function isAfter(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() > localInput.valueOf();\n } else {\n return localInput.valueOf() < this.clone().startOf(units).valueOf();\n }\n }\n\n function isBefore(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() < localInput.valueOf();\n } else {\n return this.clone().endOf(units).valueOf() < localInput.valueOf();\n }\n }\n\n function isBetween(from, to, units, inclusivity) {\n var localFrom = isMoment(from) ? from : createLocal(from),\n localTo = isMoment(to) ? to : createLocal(to);\n\n if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) {\n return false;\n }\n\n inclusivity = inclusivity || '()';\n return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) && (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units));\n }\n\n function isSame(input, units) {\n var localInput = isMoment(input) ? input : createLocal(input),\n inputMs;\n\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n\n units = normalizeUnits(units) || 'millisecond';\n\n if (units === 'millisecond') {\n return this.valueOf() === localInput.valueOf();\n } else {\n inputMs = localInput.valueOf();\n return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();\n }\n }\n\n function isSameOrAfter(input, units) {\n return this.isSame(input, units) || this.isAfter(input, units);\n }\n\n function isSameOrBefore(input, units) {\n return this.isSame(input, units) || this.isBefore(input, units);\n }\n\n function diff(input, units, asFloat) {\n var that, zoneDelta, output;\n\n if (!this.isValid()) {\n return NaN;\n }\n\n that = cloneWithOffset(input, this);\n\n if (!that.isValid()) {\n return NaN;\n }\n\n zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;\n units = normalizeUnits(units);\n\n switch (units) {\n case 'year':\n output = monthDiff(this, that) / 12;\n break;\n\n case 'month':\n output = monthDiff(this, that);\n break;\n\n case 'quarter':\n output = monthDiff(this, that) / 3;\n break;\n\n case 'second':\n output = (this - that) / 1e3;\n break;\n // 1000\n\n case 'minute':\n output = (this - that) / 6e4;\n break;\n // 1000 * 60\n\n case 'hour':\n output = (this - that) / 36e5;\n break;\n // 1000 * 60 * 60\n\n case 'day':\n output = (this - that - zoneDelta) / 864e5;\n break;\n // 1000 * 60 * 60 * 24, negate dst\n\n case 'week':\n output = (this - that - zoneDelta) / 6048e5;\n break;\n // 1000 * 60 * 60 * 24 * 7, negate dst\n\n default:\n output = this - that;\n }\n\n return asFloat ? output : absFloor(output);\n }\n\n function monthDiff(a, b) {\n // difference in months\n var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month()),\n // b is in (anchor - 1 month, anchor + 1 month)\n anchor = a.clone().add(wholeMonthDiff, 'months'),\n anchor2,\n adjust;\n\n if (b - anchor < 0) {\n anchor2 = a.clone().add(wholeMonthDiff - 1, 'months'); // linear across the month\n\n adjust = (b - anchor) / (anchor - anchor2);\n } else {\n anchor2 = a.clone().add(wholeMonthDiff + 1, 'months'); // linear across the month\n\n adjust = (b - anchor) / (anchor2 - anchor);\n } //check for negative zero, return zero if negative zero\n\n\n return -(wholeMonthDiff + adjust) || 0;\n }\n\n hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';\n hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';\n\n function toString() {\n return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');\n }\n\n function toISOString(keepOffset) {\n if (!this.isValid()) {\n return null;\n }\n\n var utc = keepOffset !== true;\n var m = utc ? this.clone().utc() : this;\n\n if (m.year() < 0 || m.year() > 9999) {\n return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n\n if (isFunction(Date.prototype.toISOString)) {\n // native implementation is ~50x faster, use it when we can\n if (utc) {\n return this.toDate().toISOString();\n } else {\n return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z'));\n }\n }\n\n return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n /**\n * Return a human readable representation of a moment that can\n * also be evaluated to get a new moment which is the same\n *\n * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects\n */\n\n\n function inspect() {\n if (!this.isValid()) {\n return 'moment.invalid(/* ' + this._i + ' */)';\n }\n\n var func = 'moment';\n var zone = '';\n\n if (!this.isLocal()) {\n func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';\n zone = 'Z';\n }\n\n var prefix = '[' + func + '(\"]';\n var year = 0 <= this.year() && this.year() <= 9999 ? 'YYYY' : 'YYYYYY';\n var datetime = '-MM-DD[T]HH:mm:ss.SSS';\n var suffix = zone + '[\")]';\n return this.format(prefix + year + datetime + suffix);\n }\n\n function format(inputString) {\n if (!inputString) {\n inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;\n }\n\n var output = formatMoment(this, inputString);\n return this.localeData().postformat(output);\n }\n\n function from(time, withoutSuffix) {\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\n return createDuration({\n to: this,\n from: time\n }).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function fromNow(withoutSuffix) {\n return this.from(createLocal(), withoutSuffix);\n }\n\n function to(time, withoutSuffix) {\n if (this.isValid() && (isMoment(time) && time.isValid() || createLocal(time).isValid())) {\n return createDuration({\n from: this,\n to: time\n }).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function toNow(withoutSuffix) {\n return this.to(createLocal(), withoutSuffix);\n } // If passed a locale key, it will set the locale for this\n // instance. Otherwise, it will return the locale configuration\n // variables for this instance.\n\n\n function locale(key) {\n var newLocaleData;\n\n if (key === undefined) {\n return this._locale._abbr;\n } else {\n newLocaleData = getLocale(key);\n\n if (newLocaleData != null) {\n this._locale = newLocaleData;\n }\n\n return this;\n }\n }\n\n var lang = deprecate('moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.', function (key) {\n if (key === undefined) {\n return this.localeData();\n } else {\n return this.locale(key);\n }\n });\n\n function localeData() {\n return this._locale;\n }\n\n var MS_PER_SECOND = 1000;\n var MS_PER_MINUTE = 60 * MS_PER_SECOND;\n var MS_PER_HOUR = 60 * MS_PER_MINUTE;\n var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR; // actual modulo - handles negative numbers (for dates before 1970):\n\n function mod$1(dividend, divisor) {\n return (dividend % divisor + divisor) % divisor;\n }\n\n function localStartOfDate(y, m, d) {\n // the date constructor remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return new Date(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return new Date(y, m, d).valueOf();\n }\n }\n\n function utcStartOfDate(y, m, d) {\n // Date.UTC remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return Date.UTC(y, m, d);\n }\n }\n\n function startOf(units) {\n var time;\n units = normalizeUnits(units);\n\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year(), 0, 1);\n break;\n\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3, 1);\n break;\n\n case 'month':\n time = startOfDate(this.year(), this.month(), 1);\n break;\n\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday());\n break;\n\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1));\n break;\n\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date());\n break;\n\n case 'hour':\n time = this._d.valueOf();\n time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);\n break;\n\n case 'minute':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_MINUTE);\n break;\n\n case 'second':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_SECOND);\n break;\n }\n\n this._d.setTime(time);\n\n hooks.updateOffset(this, true);\n return this;\n }\n\n function endOf(units) {\n var time;\n units = normalizeUnits(units);\n\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year() + 1, 0, 1) - 1;\n break;\n\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1;\n break;\n\n case 'month':\n time = startOfDate(this.year(), this.month() + 1, 1) - 1;\n break;\n\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1;\n break;\n\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1;\n break;\n\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date() + 1) - 1;\n break;\n\n case 'hour':\n time = this._d.valueOf();\n time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;\n break;\n\n case 'minute':\n time = this._d.valueOf();\n time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1;\n break;\n\n case 'second':\n time = this._d.valueOf();\n time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1;\n break;\n }\n\n this._d.setTime(time);\n\n hooks.updateOffset(this, true);\n return this;\n }\n\n function valueOf() {\n return this._d.valueOf() - (this._offset || 0) * 60000;\n }\n\n function unix() {\n return Math.floor(this.valueOf() / 1000);\n }\n\n function toDate() {\n return new Date(this.valueOf());\n }\n\n function toArray() {\n var m = this;\n return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];\n }\n\n function toObject() {\n var m = this;\n return {\n years: m.year(),\n months: m.month(),\n date: m.date(),\n hours: m.hours(),\n minutes: m.minutes(),\n seconds: m.seconds(),\n milliseconds: m.milliseconds()\n };\n }\n\n function toJSON() {\n // new Date(NaN).toJSON() === null\n return this.isValid() ? this.toISOString() : null;\n }\n\n function isValid$2() {\n return isValid(this);\n }\n\n function parsingFlags() {\n return extend({}, getParsingFlags(this));\n }\n\n function invalidAt() {\n return getParsingFlags(this).overflow;\n }\n\n function creationData() {\n return {\n input: this._i,\n format: this._f,\n locale: this._locale,\n isUTC: this._isUTC,\n strict: this._strict\n };\n } // FORMATTING\n\n\n addFormatToken(0, ['gg', 2], 0, function () {\n return this.weekYear() % 100;\n });\n addFormatToken(0, ['GG', 2], 0, function () {\n return this.isoWeekYear() % 100;\n });\n\n function addWeekYearFormatToken(token, getter) {\n addFormatToken(0, [token, token.length], 0, getter);\n }\n\n addWeekYearFormatToken('gggg', 'weekYear');\n addWeekYearFormatToken('ggggg', 'weekYear');\n addWeekYearFormatToken('GGGG', 'isoWeekYear');\n addWeekYearFormatToken('GGGGG', 'isoWeekYear'); // ALIASES\n\n addUnitAlias('weekYear', 'gg');\n addUnitAlias('isoWeekYear', 'GG'); // PRIORITY\n\n addUnitPriority('weekYear', 1);\n addUnitPriority('isoWeekYear', 1); // PARSING\n\n addRegexToken('G', matchSigned);\n addRegexToken('g', matchSigned);\n addRegexToken('GG', match1to2, match2);\n addRegexToken('gg', match1to2, match2);\n addRegexToken('GGGG', match1to4, match4);\n addRegexToken('gggg', match1to4, match4);\n addRegexToken('GGGGG', match1to6, match6);\n addRegexToken('ggggg', match1to6, match6);\n addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {\n week[token.substr(0, 2)] = toInt(input);\n });\n addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {\n week[token] = hooks.parseTwoDigitYear(input);\n }); // MOMENTS\n\n function getSetWeekYear(input) {\n return getSetWeekYearHelper.call(this, input, this.week(), this.weekday(), this.localeData()._week.dow, this.localeData()._week.doy);\n }\n\n function getSetISOWeekYear(input) {\n return getSetWeekYearHelper.call(this, input, this.isoWeek(), this.isoWeekday(), 1, 4);\n }\n\n function getISOWeeksInYear() {\n return weeksInYear(this.year(), 1, 4);\n }\n\n function getWeeksInYear() {\n var weekInfo = this.localeData()._week;\n\n return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);\n }\n\n function getSetWeekYearHelper(input, week, weekday, dow, doy) {\n var weeksTarget;\n\n if (input == null) {\n return weekOfYear(this, dow, doy).year;\n } else {\n weeksTarget = weeksInYear(input, dow, doy);\n\n if (week > weeksTarget) {\n week = weeksTarget;\n }\n\n return setWeekAll.call(this, input, week, weekday, dow, doy);\n }\n }\n\n function setWeekAll(weekYear, week, weekday, dow, doy) {\n var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),\n date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);\n this.year(date.getUTCFullYear());\n this.month(date.getUTCMonth());\n this.date(date.getUTCDate());\n return this;\n } // FORMATTING\n\n\n addFormatToken('Q', 0, 'Qo', 'quarter'); // ALIASES\n\n addUnitAlias('quarter', 'Q'); // PRIORITY\n\n addUnitPriority('quarter', 7); // PARSING\n\n addRegexToken('Q', match1);\n addParseToken('Q', function (input, array) {\n array[MONTH] = (toInt(input) - 1) * 3;\n }); // MOMENTS\n\n function getSetQuarter(input) {\n return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);\n } // FORMATTING\n\n\n addFormatToken('D', ['DD', 2], 'Do', 'date'); // ALIASES\n\n addUnitAlias('date', 'D'); // PRIORITY\n\n addUnitPriority('date', 9); // PARSING\n\n addRegexToken('D', match1to2);\n addRegexToken('DD', match1to2, match2);\n addRegexToken('Do', function (isStrict, locale) {\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n return isStrict ? locale._dayOfMonthOrdinalParse || locale._ordinalParse : locale._dayOfMonthOrdinalParseLenient;\n });\n addParseToken(['D', 'DD'], DATE);\n addParseToken('Do', function (input, array) {\n array[DATE] = toInt(input.match(match1to2)[0]);\n }); // MOMENTS\n\n var getSetDayOfMonth = makeGetSet('Date', true); // FORMATTING\n\n addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear'); // ALIASES\n\n addUnitAlias('dayOfYear', 'DDD'); // PRIORITY\n\n addUnitPriority('dayOfYear', 4); // PARSING\n\n addRegexToken('DDD', match1to3);\n addRegexToken('DDDD', match3);\n addParseToken(['DDD', 'DDDD'], function (input, array, config) {\n config._dayOfYear = toInt(input);\n }); // HELPERS\n // MOMENTS\n\n function getSetDayOfYear(input) {\n var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;\n return input == null ? dayOfYear : this.add(input - dayOfYear, 'd');\n } // FORMATTING\n\n\n addFormatToken('m', ['mm', 2], 0, 'minute'); // ALIASES\n\n addUnitAlias('minute', 'm'); // PRIORITY\n\n addUnitPriority('minute', 14); // PARSING\n\n addRegexToken('m', match1to2);\n addRegexToken('mm', match1to2, match2);\n addParseToken(['m', 'mm'], MINUTE); // MOMENTS\n\n var getSetMinute = makeGetSet('Minutes', false); // FORMATTING\n\n addFormatToken('s', ['ss', 2], 0, 'second'); // ALIASES\n\n addUnitAlias('second', 's'); // PRIORITY\n\n addUnitPriority('second', 15); // PARSING\n\n addRegexToken('s', match1to2);\n addRegexToken('ss', match1to2, match2);\n addParseToken(['s', 'ss'], SECOND); // MOMENTS\n\n var getSetSecond = makeGetSet('Seconds', false); // FORMATTING\n\n addFormatToken('S', 0, 0, function () {\n return ~~(this.millisecond() / 100);\n });\n addFormatToken(0, ['SS', 2], 0, function () {\n return ~~(this.millisecond() / 10);\n });\n addFormatToken(0, ['SSS', 3], 0, 'millisecond');\n addFormatToken(0, ['SSSS', 4], 0, function () {\n return this.millisecond() * 10;\n });\n addFormatToken(0, ['SSSSS', 5], 0, function () {\n return this.millisecond() * 100;\n });\n addFormatToken(0, ['SSSSSS', 6], 0, function () {\n return this.millisecond() * 1000;\n });\n addFormatToken(0, ['SSSSSSS', 7], 0, function () {\n return this.millisecond() * 10000;\n });\n addFormatToken(0, ['SSSSSSSS', 8], 0, function () {\n return this.millisecond() * 100000;\n });\n addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {\n return this.millisecond() * 1000000;\n }); // ALIASES\n\n addUnitAlias('millisecond', 'ms'); // PRIORITY\n\n addUnitPriority('millisecond', 16); // PARSING\n\n addRegexToken('S', match1to3, match1);\n addRegexToken('SS', match1to3, match2);\n addRegexToken('SSS', match1to3, match3);\n var token;\n\n for (token = 'SSSS'; token.length <= 9; token += 'S') {\n addRegexToken(token, matchUnsigned);\n }\n\n function parseMs(input, array) {\n array[MILLISECOND] = toInt(('0.' + input) * 1000);\n }\n\n for (token = 'S'; token.length <= 9; token += 'S') {\n addParseToken(token, parseMs);\n } // MOMENTS\n\n\n var getSetMillisecond = makeGetSet('Milliseconds', false); // FORMATTING\n\n addFormatToken('z', 0, 0, 'zoneAbbr');\n addFormatToken('zz', 0, 0, 'zoneName'); // MOMENTS\n\n function getZoneAbbr() {\n return this._isUTC ? 'UTC' : '';\n }\n\n function getZoneName() {\n return this._isUTC ? 'Coordinated Universal Time' : '';\n }\n\n var proto = Moment.prototype;\n proto.add = add;\n proto.calendar = calendar$1;\n proto.clone = clone;\n proto.diff = diff;\n proto.endOf = endOf;\n proto.format = format;\n proto.from = from;\n proto.fromNow = fromNow;\n proto.to = to;\n proto.toNow = toNow;\n proto.get = stringGet;\n proto.invalidAt = invalidAt;\n proto.isAfter = isAfter;\n proto.isBefore = isBefore;\n proto.isBetween = isBetween;\n proto.isSame = isSame;\n proto.isSameOrAfter = isSameOrAfter;\n proto.isSameOrBefore = isSameOrBefore;\n proto.isValid = isValid$2;\n proto.lang = lang;\n proto.locale = locale;\n proto.localeData = localeData;\n proto.max = prototypeMax;\n proto.min = prototypeMin;\n proto.parsingFlags = parsingFlags;\n proto.set = stringSet;\n proto.startOf = startOf;\n proto.subtract = subtract;\n proto.toArray = toArray;\n proto.toObject = toObject;\n proto.toDate = toDate;\n proto.toISOString = toISOString;\n proto.inspect = inspect;\n proto.toJSON = toJSON;\n proto.toString = toString;\n proto.unix = unix;\n proto.valueOf = valueOf;\n proto.creationData = creationData;\n proto.year = getSetYear;\n proto.isLeapYear = getIsLeapYear;\n proto.weekYear = getSetWeekYear;\n proto.isoWeekYear = getSetISOWeekYear;\n proto.quarter = proto.quarters = getSetQuarter;\n proto.month = getSetMonth;\n proto.daysInMonth = getDaysInMonth;\n proto.week = proto.weeks = getSetWeek;\n proto.isoWeek = proto.isoWeeks = getSetISOWeek;\n proto.weeksInYear = getWeeksInYear;\n proto.isoWeeksInYear = getISOWeeksInYear;\n proto.date = getSetDayOfMonth;\n proto.day = proto.days = getSetDayOfWeek;\n proto.weekday = getSetLocaleDayOfWeek;\n proto.isoWeekday = getSetISODayOfWeek;\n proto.dayOfYear = getSetDayOfYear;\n proto.hour = proto.hours = getSetHour;\n proto.minute = proto.minutes = getSetMinute;\n proto.second = proto.seconds = getSetSecond;\n proto.millisecond = proto.milliseconds = getSetMillisecond;\n proto.utcOffset = getSetOffset;\n proto.utc = setOffsetToUTC;\n proto.local = setOffsetToLocal;\n proto.parseZone = setOffsetToParsedOffset;\n proto.hasAlignedHourOffset = hasAlignedHourOffset;\n proto.isDST = isDaylightSavingTime;\n proto.isLocal = isLocal;\n proto.isUtcOffset = isUtcOffset;\n proto.isUtc = isUtc;\n proto.isUTC = isUtc;\n proto.zoneAbbr = getZoneAbbr;\n proto.zoneName = getZoneName;\n proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);\n proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);\n proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);\n proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);\n proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);\n\n function createUnix(input) {\n return createLocal(input * 1000);\n }\n\n function createInZone() {\n return createLocal.apply(null, arguments).parseZone();\n }\n\n function preParsePostFormat(string) {\n return string;\n }\n\n var proto$1 = Locale.prototype;\n proto$1.calendar = calendar;\n proto$1.longDateFormat = longDateFormat;\n proto$1.invalidDate = invalidDate;\n proto$1.ordinal = ordinal;\n proto$1.preparse = preParsePostFormat;\n proto$1.postformat = preParsePostFormat;\n proto$1.relativeTime = relativeTime;\n proto$1.pastFuture = pastFuture;\n proto$1.set = set;\n proto$1.months = localeMonths;\n proto$1.monthsShort = localeMonthsShort;\n proto$1.monthsParse = localeMonthsParse;\n proto$1.monthsRegex = monthsRegex;\n proto$1.monthsShortRegex = monthsShortRegex;\n proto$1.week = localeWeek;\n proto$1.firstDayOfYear = localeFirstDayOfYear;\n proto$1.firstDayOfWeek = localeFirstDayOfWeek;\n proto$1.weekdays = localeWeekdays;\n proto$1.weekdaysMin = localeWeekdaysMin;\n proto$1.weekdaysShort = localeWeekdaysShort;\n proto$1.weekdaysParse = localeWeekdaysParse;\n proto$1.weekdaysRegex = weekdaysRegex;\n proto$1.weekdaysShortRegex = weekdaysShortRegex;\n proto$1.weekdaysMinRegex = weekdaysMinRegex;\n proto$1.isPM = localeIsPM;\n proto$1.meridiem = localeMeridiem;\n\n function get$1(format, index, field, setter) {\n var locale = getLocale();\n var utc = createUTC().set(setter, index);\n return locale[field](utc, format);\n }\n\n function listMonthsImpl(format, index, field) {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n\n if (index != null) {\n return get$1(format, index, field, 'month');\n }\n\n var i;\n var out = [];\n\n for (i = 0; i < 12; i++) {\n out[i] = get$1(format, i, field, 'month');\n }\n\n return out;\n } // ()\n // (5)\n // (fmt, 5)\n // (fmt)\n // (true)\n // (true, 5)\n // (true, fmt, 5)\n // (true, fmt)\n\n\n function listWeekdaysImpl(localeSorted, format, index, field) {\n if (typeof localeSorted === 'boolean') {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n } else {\n format = localeSorted;\n index = format;\n localeSorted = false;\n\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n }\n\n var locale = getLocale(),\n shift = localeSorted ? locale._week.dow : 0;\n\n if (index != null) {\n return get$1(format, (index + shift) % 7, field, 'day');\n }\n\n var i;\n var out = [];\n\n for (i = 0; i < 7; i++) {\n out[i] = get$1(format, (i + shift) % 7, field, 'day');\n }\n\n return out;\n }\n\n function listMonths(format, index) {\n return listMonthsImpl(format, index, 'months');\n }\n\n function listMonthsShort(format, index) {\n return listMonthsImpl(format, index, 'monthsShort');\n }\n\n function listWeekdays(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdays');\n }\n\n function listWeekdaysShort(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');\n }\n\n function listWeekdaysMin(localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');\n }\n\n getSetGlobalLocale('en', {\n dayOfMonthOrdinalParse: /\\d{1,2}(th|st|nd|rd)/,\n ordinal: function (number) {\n var b = number % 10,\n output = toInt(number % 100 / 10) === 1 ? 'th' : b === 1 ? 'st' : b === 2 ? 'nd' : b === 3 ? 'rd' : 'th';\n return number + output;\n }\n }); // Side effect imports\n\n hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);\n hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);\n var mathAbs = Math.abs;\n\n function abs() {\n var data = this._data;\n this._milliseconds = mathAbs(this._milliseconds);\n this._days = mathAbs(this._days);\n this._months = mathAbs(this._months);\n data.milliseconds = mathAbs(data.milliseconds);\n data.seconds = mathAbs(data.seconds);\n data.minutes = mathAbs(data.minutes);\n data.hours = mathAbs(data.hours);\n data.months = mathAbs(data.months);\n data.years = mathAbs(data.years);\n return this;\n }\n\n function addSubtract$1(duration, input, value, direction) {\n var other = createDuration(input, value);\n duration._milliseconds += direction * other._milliseconds;\n duration._days += direction * other._days;\n duration._months += direction * other._months;\n return duration._bubble();\n } // supports only 2.0-style add(1, 's') or add(duration)\n\n\n function add$1(input, value) {\n return addSubtract$1(this, input, value, 1);\n } // supports only 2.0-style subtract(1, 's') or subtract(duration)\n\n\n function subtract$1(input, value) {\n return addSubtract$1(this, input, value, -1);\n }\n\n function absCeil(number) {\n if (number < 0) {\n return Math.floor(number);\n } else {\n return Math.ceil(number);\n }\n }\n\n function bubble() {\n var milliseconds = this._milliseconds;\n var days = this._days;\n var months = this._months;\n var data = this._data;\n var seconds, minutes, hours, years, monthsFromDays; // if we have a mix of positive and negative values, bubble down first\n // check: https://github.com/moment/moment/issues/2166\n\n if (!(milliseconds >= 0 && days >= 0 && months >= 0 || milliseconds <= 0 && days <= 0 && months <= 0)) {\n milliseconds += absCeil(monthsToDays(months) + days) * 864e5;\n days = 0;\n months = 0;\n } // The following code bubbles up values, see the tests for\n // examples of what that means.\n\n\n data.milliseconds = milliseconds % 1000;\n seconds = absFloor(milliseconds / 1000);\n data.seconds = seconds % 60;\n minutes = absFloor(seconds / 60);\n data.minutes = minutes % 60;\n hours = absFloor(minutes / 60);\n data.hours = hours % 24;\n days += absFloor(hours / 24); // convert days to months\n\n monthsFromDays = absFloor(daysToMonths(days));\n months += monthsFromDays;\n days -= absCeil(monthsToDays(monthsFromDays)); // 12 months -> 1 year\n\n years = absFloor(months / 12);\n months %= 12;\n data.days = days;\n data.months = months;\n data.years = years;\n return this;\n }\n\n function daysToMonths(days) {\n // 400 years have 146097 days (taking into account leap year rules)\n // 400 years have 12 months === 4800\n return days * 4800 / 146097;\n }\n\n function monthsToDays(months) {\n // the reverse of daysToMonths\n return months * 146097 / 4800;\n }\n\n function as(units) {\n if (!this.isValid()) {\n return NaN;\n }\n\n var days;\n var months;\n var milliseconds = this._milliseconds;\n units = normalizeUnits(units);\n\n if (units === 'month' || units === 'quarter' || units === 'year') {\n days = this._days + milliseconds / 864e5;\n months = this._months + daysToMonths(days);\n\n switch (units) {\n case 'month':\n return months;\n\n case 'quarter':\n return months / 3;\n\n case 'year':\n return months / 12;\n }\n } else {\n // handle milliseconds separately because of floating point math errors (issue #1867)\n days = this._days + Math.round(monthsToDays(this._months));\n\n switch (units) {\n case 'week':\n return days / 7 + milliseconds / 6048e5;\n\n case 'day':\n return days + milliseconds / 864e5;\n\n case 'hour':\n return days * 24 + milliseconds / 36e5;\n\n case 'minute':\n return days * 1440 + milliseconds / 6e4;\n\n case 'second':\n return days * 86400 + milliseconds / 1000;\n // Math.floor prevents floating point math errors here\n\n case 'millisecond':\n return Math.floor(days * 864e5) + milliseconds;\n\n default:\n throw new Error('Unknown unit ' + units);\n }\n }\n } // TODO: Use this.as('ms')?\n\n\n function valueOf$1() {\n if (!this.isValid()) {\n return NaN;\n }\n\n return this._milliseconds + this._days * 864e5 + this._months % 12 * 2592e6 + toInt(this._months / 12) * 31536e6;\n }\n\n function makeAs(alias) {\n return function () {\n return this.as(alias);\n };\n }\n\n var asMilliseconds = makeAs('ms');\n var asSeconds = makeAs('s');\n var asMinutes = makeAs('m');\n var asHours = makeAs('h');\n var asDays = makeAs('d');\n var asWeeks = makeAs('w');\n var asMonths = makeAs('M');\n var asQuarters = makeAs('Q');\n var asYears = makeAs('y');\n\n function clone$1() {\n return createDuration(this);\n }\n\n function get$2(units) {\n units = normalizeUnits(units);\n return this.isValid() ? this[units + 's']() : NaN;\n }\n\n function makeGetter(name) {\n return function () {\n return this.isValid() ? this._data[name] : NaN;\n };\n }\n\n var milliseconds = makeGetter('milliseconds');\n var seconds = makeGetter('seconds');\n var minutes = makeGetter('minutes');\n var hours = makeGetter('hours');\n var days = makeGetter('days');\n var months = makeGetter('months');\n var years = makeGetter('years');\n\n function weeks() {\n return absFloor(this.days() / 7);\n }\n\n var round = Math.round;\n var thresholds = {\n ss: 44,\n // a few seconds to seconds\n s: 45,\n // seconds to minute\n m: 45,\n // minutes to hour\n h: 22,\n // hours to day\n d: 26,\n // days to month\n M: 11 // months to year\n\n }; // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize\n\n function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {\n return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);\n }\n\n function relativeTime$1(posNegDuration, withoutSuffix, locale) {\n var duration = createDuration(posNegDuration).abs();\n var seconds = round(duration.as('s'));\n var minutes = round(duration.as('m'));\n var hours = round(duration.as('h'));\n var days = round(duration.as('d'));\n var months = round(duration.as('M'));\n var years = round(duration.as('y'));\n var a = seconds <= thresholds.ss && ['s', seconds] || seconds < thresholds.s && ['ss', seconds] || minutes <= 1 && ['m'] || minutes < thresholds.m && ['mm', minutes] || hours <= 1 && ['h'] || hours < thresholds.h && ['hh', hours] || days <= 1 && ['d'] || days < thresholds.d && ['dd', days] || months <= 1 && ['M'] || months < thresholds.M && ['MM', months] || years <= 1 && ['y'] || ['yy', years];\n a[2] = withoutSuffix;\n a[3] = +posNegDuration > 0;\n a[4] = locale;\n return substituteTimeAgo.apply(null, a);\n } // This function allows you to set the rounding function for relative time strings\n\n\n function getSetRelativeTimeRounding(roundingFunction) {\n if (roundingFunction === undefined) {\n return round;\n }\n\n if (typeof roundingFunction === 'function') {\n round = roundingFunction;\n return true;\n }\n\n return false;\n } // This function allows you to set a threshold for relative time strings\n\n\n function getSetRelativeTimeThreshold(threshold, limit) {\n if (thresholds[threshold] === undefined) {\n return false;\n }\n\n if (limit === undefined) {\n return thresholds[threshold];\n }\n\n thresholds[threshold] = limit;\n\n if (threshold === 's') {\n thresholds.ss = limit - 1;\n }\n\n return true;\n }\n\n function humanize(withSuffix) {\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var locale = this.localeData();\n var output = relativeTime$1(this, !withSuffix, locale);\n\n if (withSuffix) {\n output = locale.pastFuture(+this, output);\n }\n\n return locale.postformat(output);\n }\n\n var abs$1 = Math.abs;\n\n function sign(x) {\n return (x > 0) - (x < 0) || +x;\n }\n\n function toISOString$1() {\n // for ISO strings we do not use the normal bubbling rules:\n // * milliseconds bubble up until they become hours\n // * days do not bubble at all\n // * months bubble up until they become years\n // This is because there is no context-free conversion between hours and days\n // (think of clock changes)\n // and also not between days and months (28-31 days per month)\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var seconds = abs$1(this._milliseconds) / 1000;\n var days = abs$1(this._days);\n var months = abs$1(this._months);\n var minutes, hours, years; // 3600 seconds -> 60 minutes -> 1 hour\n\n minutes = absFloor(seconds / 60);\n hours = absFloor(minutes / 60);\n seconds %= 60;\n minutes %= 60; // 12 months -> 1 year\n\n years = absFloor(months / 12);\n months %= 12; // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js\n\n var Y = years;\n var M = months;\n var D = days;\n var h = hours;\n var m = minutes;\n var s = seconds ? seconds.toFixed(3).replace(/\\.?0+$/, '') : '';\n var total = this.asSeconds();\n\n if (!total) {\n // this is the same as C#'s (Noda) and python (isodate)...\n // but not other JS (goog.date)\n return 'P0D';\n }\n\n var totalSign = total < 0 ? '-' : '';\n var ymSign = sign(this._months) !== sign(total) ? '-' : '';\n var daysSign = sign(this._days) !== sign(total) ? '-' : '';\n var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : '';\n return totalSign + 'P' + (Y ? ymSign + Y + 'Y' : '') + (M ? ymSign + M + 'M' : '') + (D ? daysSign + D + 'D' : '') + (h || m || s ? 'T' : '') + (h ? hmsSign + h + 'H' : '') + (m ? hmsSign + m + 'M' : '') + (s ? hmsSign + s + 'S' : '');\n }\n\n var proto$2 = Duration.prototype;\n proto$2.isValid = isValid$1;\n proto$2.abs = abs;\n proto$2.add = add$1;\n proto$2.subtract = subtract$1;\n proto$2.as = as;\n proto$2.asMilliseconds = asMilliseconds;\n proto$2.asSeconds = asSeconds;\n proto$2.asMinutes = asMinutes;\n proto$2.asHours = asHours;\n proto$2.asDays = asDays;\n proto$2.asWeeks = asWeeks;\n proto$2.asMonths = asMonths;\n proto$2.asQuarters = asQuarters;\n proto$2.asYears = asYears;\n proto$2.valueOf = valueOf$1;\n proto$2._bubble = bubble;\n proto$2.clone = clone$1;\n proto$2.get = get$2;\n proto$2.milliseconds = milliseconds;\n proto$2.seconds = seconds;\n proto$2.minutes = minutes;\n proto$2.hours = hours;\n proto$2.days = days;\n proto$2.weeks = weeks;\n proto$2.months = months;\n proto$2.years = years;\n proto$2.humanize = humanize;\n proto$2.toISOString = toISOString$1;\n proto$2.toString = toISOString$1;\n proto$2.toJSON = toISOString$1;\n proto$2.locale = locale;\n proto$2.localeData = localeData;\n proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);\n proto$2.lang = lang; // Side effect imports\n // FORMATTING\n\n addFormatToken('X', 0, 0, 'unix');\n addFormatToken('x', 0, 0, 'valueOf'); // PARSING\n\n addRegexToken('x', matchSigned);\n addRegexToken('X', matchTimestamp);\n addParseToken('X', function (input, array, config) {\n config._d = new Date(parseFloat(input, 10) * 1000);\n });\n addParseToken('x', function (input, array, config) {\n config._d = new Date(toInt(input));\n }); // Side effect imports\n\n hooks.version = '2.24.0';\n setHookCallback(createLocal);\n hooks.fn = proto;\n hooks.min = min;\n hooks.max = max;\n hooks.now = now;\n hooks.utc = createUTC;\n hooks.unix = createUnix;\n hooks.months = listMonths;\n hooks.isDate = isDate;\n hooks.locale = getSetGlobalLocale;\n hooks.invalid = createInvalid;\n hooks.duration = createDuration;\n hooks.isMoment = isMoment;\n hooks.weekdays = listWeekdays;\n hooks.parseZone = createInZone;\n hooks.localeData = getLocale;\n hooks.isDuration = isDuration;\n hooks.monthsShort = listMonthsShort;\n hooks.weekdaysMin = listWeekdaysMin;\n hooks.defineLocale = defineLocale;\n hooks.updateLocale = updateLocale;\n hooks.locales = listLocales;\n hooks.weekdaysShort = listWeekdaysShort;\n hooks.normalizeUnits = normalizeUnits;\n hooks.relativeTimeRounding = getSetRelativeTimeRounding;\n hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;\n hooks.calendarFormat = getCalendarFormat;\n hooks.prototype = proto; // currently HTML5 input type only supports 24-hour formats\n\n hooks.HTML5_FMT = {\n DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm',\n // \n DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss',\n // \n DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS',\n // \n DATE: 'YYYY-MM-DD',\n // \n TIME: 'HH:mm',\n // \n TIME_SECONDS: 'HH:mm:ss',\n // \n TIME_MS: 'HH:mm:ss.SSS',\n // \n WEEK: 'GGGG-[W]WW',\n // \n MONTH: 'YYYY-MM' // \n\n };\n return hooks;\n });\n}); // Maps for number <-> hex string conversion\n\nvar byteToHex$2 = [];\n\nfor (var i$2 = 0; i$2 < 256; i$2++) {\n byteToHex$2[i$2] = (i$2 + 0x100).toString(16).substr(1);\n}\n/**\n * Generate 16 random bytes to be used as a base for UUID.\n *\n * @ignore\n */\n\n\nvar random$1 = function () {\n if (typeof crypto !== 'undefined' && crypto.getRandomValues) {\n // WHATWG crypto-based RNG - http://wiki.whatwg.org/wiki/Crypto\n // Moderately fast, high quality\n var _rnds8 = new Uint8Array(16);\n\n return function whatwgRNG() {\n crypto.getRandomValues(_rnds8);\n return _rnds8;\n };\n } // Math.random()-based (RNG)\n //\n // If all else fails, use Math.random().\n // It's fast, but is of unspecified quality.\n\n\n var _rnds = new Array(16);\n\n return function () {\n for (var i = 0, r; i < 16; i++) {\n if ((i & 0x03) === 0) {\n r = Math.random() * 0x100000000;\n }\n\n _rnds[i] = r >>> ((i & 0x03) << 3) & 0xff;\n }\n\n return _rnds;\n }; // uuid.js\n //\n // Copyright (c) 2010-2012 Robert Kieffer\n // MIT License - http://opensource.org/licenses/mit-license.php\n // Unique ID creation requires a high quality random # generator. We feature\n // detect to determine the best RNG source, normalizing to a function that\n // returns 128-bits of randomness, since that's what's usually required\n // return require('./rng');\n}();\n\nvar byteToHex$1$1 = [];\n\nfor (var i$1$1 = 0; i$1$1 < 256; i$1$1++) {\n byteToHex$1$1[i$1$1] = (i$1$1 + 0x100).toString(16).substr(1);\n} // **`v1()` - Generate time-based UUID**\n//\n// Inspired by https://github.com/LiosK/UUID.js\n// and http://docs.python.org/library/uuid.html\n// random #'s we need to init node and clockseq\n\n\nvar seedBytes$1 = random$1(); // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)\n\nvar defaultNodeId$1 = [seedBytes$1[0] | 0x01, seedBytes$1[1], seedBytes$1[2], seedBytes$1[3], seedBytes$1[4], seedBytes$1[5]]; // Per 4.2.2, randomize (14 bit) clockseq\n\nvar defaultClockseq$1 = (seedBytes$1[6] << 8 | seedBytes$1[7]) & 0x3fff; // Previous uuid creation time\n// for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/'\n// code from http://momentjs.com/\n\n\nvar ASPDateRegex = /^\\/?Date\\((-?\\d+)/i; // Hex color\n/**\n * Hue, Saturation, Value.\n */\n\n/**\n * Test whether given object is a number\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if number, false otherwise.\n */\n\nfunction isNumber(value) {\n return value instanceof Number || typeof value === 'number';\n}\n/**\n * Test whether given object is a string\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if string, false otherwise.\n */\n\n\nfunction isString(value) {\n return value instanceof String || typeof value === 'string';\n}\n/**\n * Test whether given object is a Moment date.\n * @TODO: This is basically a workaround, if Moment was imported property it wouldn't necessary as moment.isMoment is a TS type guard.\n *\n * @param value - Input value of unknown type.\n *\n * @returns True if Moment instance, false otherwise.\n */\n\n\nfunction isMoment(value) {\n return moment.isMoment(value);\n}\n/**\n * Convert an object into another type\n *\n * @param object - Value of unknown type.\n * @param type - Name of the desired type.\n *\n * @returns Object in the desired type.\n * @throws Error\n */\n\n\nfunction convert(object, type) {\n var match;\n\n if (object === undefined) {\n return undefined;\n }\n\n if (object === null) {\n return null;\n }\n\n if (!type) {\n return object;\n }\n\n if (!(typeof type === 'string') && !(type instanceof String)) {\n throw new Error('Type must be a string');\n } //noinspection FallthroughInSwitchStatementJS\n\n\n switch (type) {\n case 'boolean':\n case 'Boolean':\n return Boolean(object);\n\n case 'number':\n case 'Number':\n if (isString(object) && !isNaN(Date.parse(object))) {\n return moment(object).valueOf();\n } else {\n // @TODO: I don't think that Number and String constructors are a good idea.\n // This could also fail if the object doesn't have valueOf method or if it's redefined.\n // For example: Object.create(null) or { valueOf: 7 }.\n return Number(object.valueOf());\n }\n\n case 'string':\n case 'String':\n return String(object);\n\n case 'Date':\n if (isNumber(object)) {\n return new Date(object);\n }\n\n if (object instanceof Date) {\n return new Date(object.valueOf());\n } else if (isMoment(object)) {\n return new Date(object.valueOf());\n }\n\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])); // parse number\n } else {\n return moment(new Date(object)).toDate(); // parse string\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date');\n }\n\n case 'Moment':\n if (isNumber(object)) {\n return moment(object);\n }\n\n if (object instanceof Date) {\n return moment(object.valueOf());\n } else if (isMoment(object)) {\n return moment(object);\n }\n\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return moment(Number(match[1])); // parse number\n } else {\n return moment(object); // parse string\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type Date');\n }\n\n case 'ISODate':\n if (isNumber(object)) {\n return new Date(object);\n } else if (object instanceof Date) {\n return object.toISOString();\n } else if (isMoment(object)) {\n return object.toDate().toISOString();\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])).toISOString(); // parse number\n } else {\n return moment(object).format(); // ISO 8601\n }\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type ISODate');\n }\n\n case 'ASPDate':\n if (isNumber(object)) {\n return '/Date(' + object + ')/';\n } else if (object instanceof Date) {\n return '/Date(' + object.valueOf() + ')/';\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n\n var _value;\n\n if (match) {\n // object is an ASP date\n _value = new Date(Number(match[1])).valueOf(); // parse number\n } else {\n _value = new Date(object).valueOf(); // parse string\n }\n\n return '/Date(' + _value + ')/';\n } else {\n throw new Error('Cannot convert object of type ' + getType(object) + ' to type ASPDate');\n }\n\n default:\n var never = type;\n throw new Error(\"Unknown type \".concat(never));\n }\n}\n/**\n * Get the type of an object, for example exports.getType([]) returns 'Array'\n *\n * @param object - Input value of unknown type.\n *\n * @returns Detected type.\n */\n\n\nfunction getType(object) {\n var type = _typeof(object);\n\n if (type === 'object') {\n if (object === null) {\n return 'null';\n }\n\n if (object instanceof Boolean) {\n return 'Boolean';\n }\n\n if (object instanceof Number) {\n return 'Number';\n }\n\n if (object instanceof String) {\n return 'String';\n }\n\n if (Array.isArray(object)) {\n return 'Array';\n }\n\n if (object instanceof Date) {\n return 'Date';\n }\n\n return 'Object';\n }\n\n if (type === 'number') {\n return 'Number';\n }\n\n if (type === 'boolean') {\n return 'Boolean';\n }\n\n if (type === 'string') {\n return 'String';\n }\n\n if (type === undefined) {\n return 'undefined';\n }\n\n return type;\n}\n\n/**\r\n * Determine whether a value can be used as an id.\r\n *\r\n * @param value - Input value of unknown type.\r\n *\r\n * @returns True if the value is valid id, false otherwise.\r\n */\nfunction isId(value) {\n return typeof value === 'string' || typeof value === 'number';\n}\n\n/**\r\n * A queue.\r\n *\r\n * @typeParam T - The type of method names to be replaced by queued versions.\r\n */\nvar Queue =\n/*#__PURE__*/\nfunction () {\n /**\r\n * Construct a new Queue.\r\n *\r\n * @param options - Queue configuration.\r\n */\n function Queue(options) {\n classCallCheck(this, Queue);\n\n this._queue = [];\n this._timeout = null;\n this._extended = null; // options\n\n this.delay = null;\n this.max = Infinity;\n this.setOptions(options);\n }\n /**\r\n * Update the configuration of the queue.\r\n *\r\n * @param options - Queue configuration.\r\n */\n\n\n createClass(Queue, [{\n key: \"setOptions\",\n value: function setOptions(options) {\n if (options && typeof options.delay !== 'undefined') {\n this.delay = options.delay;\n }\n\n if (options && typeof options.max !== 'undefined') {\n this.max = options.max;\n }\n\n this._flushIfNeeded();\n }\n /**\r\n * Extend an object with queuing functionality.\r\n * The object will be extended with a function flush, and the methods provided in options.replace will be replaced with queued ones.\r\n *\r\n * @param object - The object to be extended.\r\n * @param options - Additional options.\r\n *\r\n * @returns The created queue.\r\n */\n\n }, {\n key: \"destroy\",\n\n /**\r\n * Destroy the queue. The queue will first flush all queued actions, and in case it has extended an object, will restore the original object.\r\n */\n value: function destroy() {\n this.flush();\n\n if (this._extended) {\n var object = this._extended.object;\n var methods = this._extended.methods;\n\n for (var i = 0; i < methods.length; i++) {\n var method = methods[i];\n\n if (method.original) {\n object[method.name] = method.original;\n } else {\n // @TODO: better solution?\n delete object[method.name];\n }\n }\n\n this._extended = null;\n }\n }\n /**\r\n * Replace a method on an object with a queued version.\r\n *\r\n * @param object - Object having the method.\r\n * @param method - The method name.\r\n */\n\n }, {\n key: \"replace\",\n value: function replace(object, method) {\n var me = this;\n var original = object[method];\n\n if (!original) {\n throw new Error('Method ' + method + ' undefined');\n }\n\n object[method] = function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n // add this call to the queue\n me.queue({\n args: args,\n fn: original,\n context: this\n });\n };\n }\n /**\r\n * Queue a call.\r\n *\r\n * @param entry - The function or entry to be queued.\r\n */\n\n }, {\n key: \"queue\",\n value: function queue(entry) {\n if (typeof entry === 'function') {\n this._queue.push({\n fn: entry\n });\n } else {\n this._queue.push(entry);\n }\n\n this._flushIfNeeded();\n }\n /**\r\n * Check whether the queue needs to be flushed.\r\n */\n\n }, {\n key: \"_flushIfNeeded\",\n value: function _flushIfNeeded() {\n var _this = this;\n\n // flush when the maximum is exceeded.\n if (this._queue.length > this.max) {\n this.flush();\n } // flush after a period of inactivity when a delay is configured\n\n\n if (this._timeout != null) {\n clearTimeout(this._timeout);\n this._timeout = null;\n }\n\n if (this.queue.length > 0 && typeof this.delay === 'number') {\n this._timeout = setTimeout(function () {\n _this.flush();\n }, this.delay);\n }\n }\n /**\r\n * Flush all queued calls\r\n */\n\n }, {\n key: \"flush\",\n value: function flush() {\n this._queue.splice(0).forEach(function (entry) {\n entry.fn.apply(entry.context || entry.fn, entry.args || []);\n });\n }\n }], [{\n key: \"extend\",\n value: function extend(object, options) {\n var queue = new Queue(options);\n\n if (object.flush !== undefined) {\n throw new Error('Target object already has a property flush');\n }\n\n object.flush = function () {\n queue.flush();\n };\n\n var methods = [{\n name: 'flush',\n original: undefined\n }];\n\n if (options && options.replace) {\n for (var i = 0; i < options.replace.length; i++) {\n var name = options.replace[i];\n methods.push({\n name: name,\n // @TODO: better solution?\n original: object[name]\n }); // @TODO: better solution?\n\n queue.replace(object, name);\n }\n }\n\n queue._extended = {\n object: object,\n methods: methods\n };\n return queue;\n }\n }]);\n\n return Queue;\n}();\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n }\n}\n\nvar arrayWithoutHoles = _arrayWithoutHoles;\n\nfunction _iterableToArray(iter) {\n if (Symbol.iterator in Object(iter) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return Array.from(iter);\n}\n\nvar iterableToArray = _iterableToArray;\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}\n\nvar nonIterableSpread = _nonIterableSpread;\n\nfunction _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread();\n}\n\nvar toConsumableArray = _toConsumableArray;\n\n/**\r\n * [[DataSet]] code that can be reused in [[DataView]] or other similar implementations of [[DataInterface]].\r\n *\r\n * @typeParam Item - Item type that may or may not have an id.\r\n * @typeParam IdProp - Name of the property that contains the id.\r\n */\nvar DataSetPart =\n/*#__PURE__*/\nfunction () {\n function DataSetPart() {\n classCallCheck(this, DataSetPart);\n\n this._subscribers = {\n '*': [],\n add: [],\n remove: [],\n update: []\n };\n /**\r\n * @deprecated Use on instead (PS: DataView.subscribe === DataView.on).\r\n */\n\n this.subscribe = DataSetPart.prototype.on;\n /**\r\n * @deprecated Use off instead (PS: DataView.unsubscribe === DataView.off).\r\n */\n\n this.unsubscribe = DataSetPart.prototype.off;\n }\n /**\r\n * Trigger an event\r\n *\r\n * @param event - Event name.\r\n * @param payload - Event payload.\r\n * @param senderId - Id of the sender.\r\n */\n\n\n createClass(DataSetPart, [{\n key: \"_trigger\",\n value: function _trigger(event, payload, senderId) {\n if (event === '*') {\n throw new Error('Cannot trigger event *');\n }\n\n var subscribers = [].concat(toConsumableArray(this._subscribers[event]), toConsumableArray(this._subscribers['*']));\n\n for (var i = 0, len = subscribers.length; i < len; i++) {\n var subscriber = subscribers[i];\n\n if (subscriber.callback) {\n subscriber.callback(event, payload, senderId != null ? senderId : null);\n }\n }\n }\n /**\r\n * Subscribe to an event, add an event listener.\r\n *\r\n * @param event - Event name.\r\n * @param callback - Callback method.\r\n */\n\n }, {\n key: \"on\",\n value: function on(event, callback) {\n this._subscribers[event].push({\n callback: callback\n });\n }\n /**\r\n * Unsubscribe from an event, remove an event listener.\r\n *\r\n * @remarks If the same callback was subscribed more than once **all** occurences will be removed.\r\n *\r\n * @param event - Event name.\r\n * @param callback - Callback method.\r\n */\n\n }, {\n key: \"off\",\n value: function off(event, callback) {\n this._subscribers[event] = this._subscribers[event].filter(function (listener) {\n return listener.callback !== callback;\n });\n }\n }]);\n\n return DataSetPart;\n}();\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { keys.push.apply(keys, Object.getOwnPropertySymbols(object)); } if (enumerableOnly) keys = keys.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(source, true).forEach(function (key) { defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(source).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n/**\r\n * # DataSet\r\n *\r\n * Vis.js comes with a flexible DataSet, which can be used to hold and manipulate unstructured data and listen for changes in the data. The DataSet is key/value based. Data items can be added, updated and removed from the DataSet, and one can subscribe to changes in the DataSet. The data in the DataSet can be filtered and ordered, and fields (like dates) can be converted to a specific type. Data can be normalized when appending it to the DataSet as well.\r\n *\r\n * ## Example\r\n *\r\n * The following example shows how to use a DataSet.\r\n *\r\n * ```javascript\r\n * // create a DataSet\r\n * var options = {};\r\n * var data = new vis.DataSet(options);\r\n *\r\n * // add items\r\n * // note that the data items can contain different properties and data formats\r\n * data.add([\r\n * {id: 1, text: 'item 1', date: new Date(2013, 6, 20), group: 1, first: true},\r\n * {id: 2, text: 'item 2', date: '2013-06-23', group: 2},\r\n * {id: 3, text: 'item 3', date: '2013-06-25', group: 2},\r\n * {id: 4, text: 'item 4'}\r\n * ]);\r\n *\r\n * // subscribe to any change in the DataSet\r\n * data.on('*', function (event, properties, senderId) {\r\n * console.log('event', event, properties);\r\n * });\r\n *\r\n * // update an existing item\r\n * data.update({id: 2, group: 1});\r\n *\r\n * // remove an item\r\n * data.remove(4);\r\n *\r\n * // get all ids\r\n * var ids = data.getIds();\r\n * console.log('ids', ids);\r\n *\r\n * // get a specific item\r\n * var item1 = data.get(1);\r\n * console.log('item1', item1);\r\n *\r\n * // retrieve a filtered subset of the data\r\n * var items = data.get({\r\n * filter: function (item) {\r\n * return item.group == 1;\r\n * }\r\n * });\r\n * console.log('filtered items', items);\r\n *\r\n * // retrieve formatted items\r\n * var items = data.get({\r\n * fields: ['id', 'date'],\r\n * type: {\r\n * date: 'ISODate'\r\n * }\r\n * });\r\n * console.log('formatted items', items);\r\n * ```\r\n *\r\n * @typeParam Item - Item type that may or may not have an id.\r\n * @typeParam IdProp - Name of the property that contains the id.\r\n */\n\nvar DataSet =\n/*#__PURE__*/\nfunction (_DataSetPart) {\n inherits(DataSet, _DataSetPart);\n\n /**\r\n * Construct a new DataSet.\r\n *\r\n * @param data - Initial data or options.\r\n * @param options - Options (type error if data is also options).\r\n */\n function DataSet(data, options) {\n var _this;\n\n classCallCheck(this, DataSet);\n\n _this = possibleConstructorReturn(this, getPrototypeOf(DataSet).call(this)); // correctly read optional arguments\n\n if (data && !Array.isArray(data)) {\n options = data;\n data = [];\n }\n\n _this._options = options || {};\n _this._data = Object.create({}); // map with data indexed by id\n\n _this.length = 0; // number of items in the DataSet\n\n _this._idProp = _this._options.fieldId || 'id'; // name of the field containing id\n\n _this._type = {}; // internal field types (NOTE: this can differ from this._options.type)\n // all variants of a Date are internally stored as Date, so we can convert\n // from everything to everything (also from ISODate to Number for example)\n\n if (_this._options.type) {\n var fields = Object.keys(_this._options.type);\n\n for (var i = 0, len = fields.length; i < len; i++) {\n var field = fields[i];\n var value = _this._options.type[field];\n\n if (value == 'Date' || value == 'ISODate' || value == 'ASPDate') {\n _this._type[field] = 'Date';\n } else {\n _this._type[field] = value;\n }\n }\n } // add initial data when provided\n\n\n if (data && data.length) {\n _this.add(data);\n }\n\n _this.setOptions(options);\n\n return _this;\n }\n /**\r\n * Set new options.\r\n *\r\n * @param options - The new options.\r\n */\n\n\n createClass(DataSet, [{\n key: \"setOptions\",\n value: function setOptions(options) {\n if (options && options.queue !== undefined) {\n if (options.queue === false) {\n // delete queue if loaded\n if (this._queue) {\n this._queue.destroy();\n\n delete this._queue;\n }\n } else {\n // create queue and update its options\n if (!this._queue) {\n this._queue = Queue.extend(this, {\n replace: ['add', 'update', 'remove']\n });\n }\n\n if (options.queue && _typeof_1(options.queue) === 'object') {\n this._queue.setOptions(options.queue);\n }\n }\n }\n }\n /**\r\n * Add a data item or an array with items.\r\n *\r\n * After the items are added to the DataSet, the DataSet will trigger an event `add`. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers.\r\n *\r\n * ## Example\r\n *\r\n * ```javascript\r\n * // create a DataSet\r\n * const data = new vis.DataSet()\r\n *\r\n * // add items\r\n * const ids = data.add([\r\n * { id: 1, text: 'item 1' },\r\n * { id: 2, text: 'item 2' },\r\n * { text: 'item without an id' }\r\n * ])\r\n *\r\n * console.log(ids) // [1, 2, '']\r\n * ```\r\n *\r\n * @param data - Items to be added (ids will be generated if missing).\r\n * @param senderId - Sender id.\r\n *\r\n * @returns addedIds - Array with the ids (generated if not present) of the added items.\r\n *\r\n * @throws When an item with the same id as any of the added items already exists.\r\n */\n\n }, {\n key: \"add\",\n value: function add(data, senderId) {\n var addedIds = [];\n var id;\n\n if (Array.isArray(data)) {\n // Array\n for (var i = 0, len = data.length; i < len; i++) {\n id = this._addItem(data[i]);\n addedIds.push(id);\n }\n } else if (data && _typeof_1(data) === 'object') {\n // Single item\n id = this._addItem(data);\n addedIds.push(id);\n } else {\n throw new Error('Unknown dataType');\n }\n\n if (addedIds.length) {\n this._trigger('add', {\n items: addedIds\n }, senderId);\n }\n\n return addedIds;\n }\n /**\r\n * Update existing items. When an item does not exist, it will be created\r\n *\r\n * The provided properties will be merged in the existing item. When an item does not exist, it will be created.\r\n *\r\n * After the items are updated, the DataSet will trigger an event `add` for the added items, and an event `update`. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers.\r\n *\r\n * ## Example\r\n *\r\n * ```javascript\r\n * // create a DataSet\r\n * const data = new vis.DataSet([\r\n * { id: 1, text: 'item 1' },\r\n * { id: 2, text: 'item 2' },\r\n * { id: 3, text: 'item 3' }\r\n * ])\r\n *\r\n * // update items\r\n * const ids = data.update([\r\n * { id: 2, text: 'item 2 (updated)' },\r\n * { id: 4, text: 'item 4 (new)' }\r\n * ])\r\n *\r\n * console.log(ids) // [2, 4]\r\n * ```\r\n *\r\n * @param data - Items to be updated (if the id is already present) or added (if the id is missing).\r\n * @param senderId - Sender id.\r\n *\r\n * @returns updatedIds - The ids of the added (these may be newly generated if there was no id in the item from the data) or updated items.\r\n *\r\n * @throws When the supplied data is neither an item nor an array of items.\r\n */\n\n }, {\n key: \"update\",\n value: function update(data, senderId) {\n var _this2 = this;\n\n var addedIds = [];\n var updatedIds = [];\n var oldData = [];\n var updatedData = [];\n var idProp = this._idProp;\n\n var addOrUpdate = function addOrUpdate(item) {\n var origId = item[idProp];\n\n if (origId != null && _this2._data[origId]) {\n var fullItem = item; // it has an id, therefore it is a fullitem\n\n var oldItem = Object.assign({}, _this2._data[origId]); // update item\n\n var id = _this2._updateItem(fullItem);\n\n updatedIds.push(id);\n updatedData.push(fullItem);\n oldData.push(oldItem);\n } else {\n // add new item\n var _id = _this2._addItem(item);\n\n addedIds.push(_id);\n }\n };\n\n if (Array.isArray(data)) {\n // Array\n for (var i = 0, len = data.length; i < len; i++) {\n if (data[i] && _typeof_1(data[i]) === 'object') {\n addOrUpdate(data[i]);\n } else {\n console.warn('Ignoring input item, which is not an object at index ' + i);\n }\n }\n } else if (data && _typeof_1(data) === 'object') {\n // Single item\n addOrUpdate(data);\n } else {\n throw new Error('Unknown dataType');\n }\n\n if (addedIds.length) {\n this._trigger('add', {\n items: addedIds\n }, senderId);\n }\n\n if (updatedIds.length) {\n var props = {\n items: updatedIds,\n oldData: oldData,\n data: updatedData\n }; // TODO: remove deprecated property 'data' some day\n //Object.defineProperty(props, 'data', {\n // 'get': (function() {\n // console.warn('Property data is deprecated. Use DataSet.get(ids) to retrieve the new data, use the oldData property on this object to get the old data');\n // return updatedData;\n // }).bind(this)\n //});\n\n this._trigger('update', props, senderId);\n }\n\n return addedIds.concat(updatedIds);\n }\n /** @inheritdoc */\n\n }, {\n key: \"get\",\n value: function get(first, second) {\n // @TODO: Woudn't it be better to split this into multiple methods?\n // parse the arguments\n var id = undefined;\n var ids = undefined;\n var options = undefined;\n\n if (isId(first)) {\n // get(id [, options])\n id = first;\n options = second;\n } else if (Array.isArray(first)) {\n // get(ids [, options])\n ids = first;\n options = second;\n } else {\n // get([, options])\n options = first;\n } // determine the return type\n\n\n var returnType = options && options.returnType === 'Object' ? 'Object' : 'Array'; // @TODO: WTF is this? Or am I missing something?\n // var returnType\n // if (options && options.returnType) {\n // var allowedValues = ['Array', 'Object']\n // returnType =\n // allowedValues.indexOf(options.returnType) == -1\n // ? 'Array'\n // : options.returnType\n // } else {\n // returnType = 'Array'\n // }\n // build options\n\n var type = options && options.type || this._options.type;\n var filter = options && options.filter;\n var items = [];\n var item = null;\n var itemIds = null;\n var itemId = null; // convert items\n\n if (id != null) {\n // return a single item\n item = this._getItem(id, type);\n\n if (item && filter && !filter(item)) {\n item = null;\n }\n } else if (ids != null) {\n // return a subset of items\n for (var i = 0, len = ids.length; i < len; i++) {\n item = this._getItem(ids[i], type);\n\n if (item != null && (!filter || filter(item))) {\n items.push(item);\n }\n }\n } else {\n // return all items\n itemIds = Object.keys(this._data);\n\n for (var _i = 0, _len = itemIds.length; _i < _len; _i++) {\n itemId = itemIds[_i];\n item = this._getItem(itemId, type);\n\n if (item != null && (!filter || filter(item))) {\n items.push(item);\n }\n }\n } // order the results\n\n\n if (options && options.order && id == undefined) {\n this._sort(items, options.order);\n } // filter fields of the items\n\n\n if (options && options.fields) {\n var fields = options.fields;\n\n if (id != undefined && item != null) {\n item = this._filterFields(item, fields);\n } else {\n for (var _i2 = 0, _len2 = items.length; _i2 < _len2; _i2++) {\n items[_i2] = this._filterFields(items[_i2], fields);\n }\n }\n } // return the results\n\n\n if (returnType == 'Object') {\n var result = {};\n\n for (var _i3 = 0, _len3 = items.length; _i3 < _len3; _i3++) {\n var resultant = items[_i3]; // @TODO: Shoudn't this be this._fieldId?\n // result[resultant.id] = resultant\n\n var _id2 = resultant[this._idProp];\n result[_id2] = resultant;\n }\n\n return result;\n } else {\n if (id != null) {\n // a single item\n return item;\n } else {\n // just return our array\n return items;\n }\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"getIds\",\n value: function getIds(options) {\n var data = this._data;\n var filter = options && options.filter;\n var order = options && options.order;\n var type = options && options.type || this._options.type;\n var itemIds = Object.keys(data);\n var ids = [];\n var item;\n var items;\n\n if (filter) {\n // get filtered items\n if (order) {\n // create ordered list\n items = [];\n\n for (var i = 0, len = itemIds.length; i < len; i++) {\n var id = itemIds[i];\n item = this._getItem(id, type);\n\n if (filter(item)) {\n items.push(item);\n }\n }\n\n this._sort(items, order);\n\n for (var _i4 = 0, _len4 = items.length; _i4 < _len4; _i4++) {\n ids.push(items[_i4][this._idProp]);\n }\n } else {\n // create unordered list\n for (var _i5 = 0, _len5 = itemIds.length; _i5 < _len5; _i5++) {\n var _id3 = itemIds[_i5];\n item = this._getItem(_id3, type);\n\n if (filter(item)) {\n ids.push(item[this._idProp]);\n }\n }\n }\n } else {\n // get all items\n if (order) {\n // create an ordered list\n items = [];\n\n for (var _i6 = 0, _len6 = itemIds.length; _i6 < _len6; _i6++) {\n var _id4 = itemIds[_i6];\n items.push(data[_id4]);\n }\n\n this._sort(items, order);\n\n for (var _i7 = 0, _len7 = items.length; _i7 < _len7; _i7++) {\n ids.push(items[_i7][this._idProp]);\n }\n } else {\n // create unordered list\n for (var _i8 = 0, _len8 = itemIds.length; _i8 < _len8; _i8++) {\n var _id5 = itemIds[_i8];\n item = data[_id5];\n ids.push(item[this._idProp]);\n }\n }\n }\n\n return ids;\n }\n /** @inheritdoc */\n\n }, {\n key: \"getDataSet\",\n value: function getDataSet() {\n return this;\n }\n /** @inheritdoc */\n\n }, {\n key: \"forEach\",\n value: function forEach(callback, options) {\n var filter = options && options.filter;\n var type = options && options.type || this._options.type;\n var data = this._data;\n var itemIds = Object.keys(data);\n\n if (options && options.order) {\n // execute forEach on ordered list\n var items = this.get(options);\n\n for (var i = 0, len = items.length; i < len; i++) {\n var item = items[i];\n var id = item[this._idProp];\n callback(item, id);\n }\n } else {\n // unordered\n for (var _i9 = 0, _len9 = itemIds.length; _i9 < _len9; _i9++) {\n var _id6 = itemIds[_i9];\n\n var _item = this._getItem(_id6, type);\n\n if (!filter || filter(_item)) {\n callback(_item, _id6);\n }\n }\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"map\",\n value: function map(callback, options) {\n var filter = options && options.filter;\n var type = options && options.type || this._options.type;\n var mappedItems = [];\n var data = this._data;\n var itemIds = Object.keys(data); // convert and filter items\n\n for (var i = 0, len = itemIds.length; i < len; i++) {\n var id = itemIds[i];\n\n var item = this._getItem(id, type);\n\n if (!filter || filter(item)) {\n mappedItems.push(callback(item, id));\n }\n } // order items\n\n\n if (options && options.order) {\n this._sort(mappedItems, options.order);\n }\n\n return mappedItems;\n }\n /**\r\n * Filter the fields of an item.\r\n *\r\n * @param item - The item whose fields should be filtered.\r\n * @param fields - The names of the fields that will be kept.\r\n *\r\n * @typeParam K - Field name type.\r\n *\r\n * @returns The item without any additional fields.\r\n */\n\n }, {\n key: \"_filterFields\",\n value: function _filterFields(item, fields) {\n if (!item) {\n // item is null\n return item;\n }\n\n return (Array.isArray(fields) ? // Use the supplied array\n fields : // Use the keys of the supplied object\n Object.keys(fields)).reduce(function (filteredItem, field) {\n filteredItem[field] = item[field];\n return filteredItem;\n }, {});\n }\n /**\r\n * Sort the provided array with items.\r\n *\r\n * @param items - Items to be sorted in place.\r\n * @param order - A field name or custom sort function.\r\n *\r\n * @typeParam T - The type of the items in the items array.\r\n */\n\n }, {\n key: \"_sort\",\n value: function _sort(items, order) {\n if (typeof order === 'string') {\n // order by provided field name\n var name = order; // field name\n\n items.sort(function (a, b) {\n // @TODO: How to treat missing properties?\n var av = a[name];\n var bv = b[name];\n return av > bv ? 1 : av < bv ? -1 : 0;\n });\n } else if (typeof order === 'function') {\n // order by sort function\n items.sort(order);\n } else {\n // TODO: extend order by an Object {field:string, direction:string}\n // where direction can be 'asc' or 'desc'\n throw new TypeError('Order must be a function or a string');\n }\n }\n /**\r\n * Remove an item or multiple items by “reference” (only the id is used) or by id.\r\n *\r\n * The method ignores removal of non-existing items, and returns an array containing the ids of the items which are actually removed from the DataSet.\r\n *\r\n * After the items are removed, the DataSet will trigger an event `remove` for the removed items. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers.\r\n *\r\n * ## Example\r\n * ```javascript\r\n * // create a DataSet\r\n * const data = new vis.DataSet([\r\n * { id: 1, text: 'item 1' },\r\n * { id: 2, text: 'item 2' },\r\n * { id: 3, text: 'item 3' }\r\n * ])\r\n *\r\n * // remove items\r\n * const ids = data.remove([2, { id: 3 }, 4])\r\n *\r\n * console.log(ids) // [2, 3]\r\n * ```\r\n *\r\n * @param id - One or more items or ids of items to be removed.\r\n * @param senderId - Sender id.\r\n *\r\n * @returns The ids of the removed items.\r\n */\n\n }, {\n key: \"remove\",\n value: function remove(id, senderId) {\n var removedIds = [];\n var removedItems = []; // force everything to be an array for simplicity\n\n var ids = Array.isArray(id) ? id : [id];\n\n for (var i = 0, len = ids.length; i < len; i++) {\n var item = this._remove(ids[i]);\n\n if (item) {\n var itemId = item[this._idProp];\n\n if (itemId != null) {\n removedIds.push(itemId);\n removedItems.push(item);\n }\n }\n }\n\n if (removedIds.length) {\n this._trigger('remove', {\n items: removedIds,\n oldData: removedItems\n }, senderId);\n }\n\n return removedIds;\n }\n /**\r\n * Remove an item by its id or reference.\r\n *\r\n * @param id - Id of an item or the item itself.\r\n *\r\n * @returns The removed item if removed, null otherwise.\r\n */\n\n }, {\n key: \"_remove\",\n value: function _remove(id) {\n // @TODO: It origianlly returned the item although the docs say id.\n // The code expects the item, so probably an error in the docs.\n var ident; // confirm the id to use based on the args type\n\n if (isId(id)) {\n ident = id;\n } else if (id && _typeof_1(id) === 'object') {\n ident = id[this._idProp]; // look for the identifier field using ._idProp\n } // do the removing if the item is found\n\n\n if (ident != null && this._data[ident]) {\n var item = this._data[ident];\n delete this._data[ident];\n --this.length;\n return item;\n }\n\n return null;\n }\n /**\r\n * Clear the entire data set.\r\n *\r\n * After the items are removed, the [[DataSet]] will trigger an event `remove` for all removed items. When a `senderId` is provided, this id will be passed with the triggered event to all subscribers.\r\n *\r\n * @param senderId - Sender id.\r\n *\r\n * @returns removedIds - The ids of all removed items.\r\n */\n\n }, {\n key: \"clear\",\n value: function clear(senderId) {\n var ids = Object.keys(this._data);\n var items = [];\n\n for (var i = 0, len = ids.length; i < len; i++) {\n items.push(this._data[ids[i]]);\n }\n\n this._data = {};\n this.length = 0;\n\n this._trigger('remove', {\n items: ids,\n oldData: items\n }, senderId);\n\n return ids;\n }\n /**\r\n * Find the item with maximum value of a specified field.\r\n *\r\n * @param field - Name of the property that should be searched for max value.\r\n *\r\n * @returns Item containing max value, or null if no items.\r\n */\n\n }, {\n key: \"max\",\n value: function max(field) {\n var data = this._data;\n var itemIds = Object.keys(data);\n var max = null;\n var maxField = null;\n\n for (var i = 0, len = itemIds.length; i < len; i++) {\n var id = itemIds[i];\n var item = data[id];\n var itemField = item[field];\n\n if (itemField != null && (maxField == null || itemField > maxField)) {\n max = item;\n maxField = itemField;\n }\n }\n\n return max;\n }\n /**\r\n * Find the item with minimum value of a specified field.\r\n *\r\n * @param field - Name of the property that should be searched for min value.\r\n *\r\n * @returns Item containing min value, or null if no items.\r\n */\n\n }, {\n key: \"min\",\n value: function min(field) {\n var data = this._data;\n var itemIds = Object.keys(data);\n var min = null;\n var minField = null;\n\n for (var i = 0, len = itemIds.length; i < len; i++) {\n var id = itemIds[i];\n var item = data[id];\n var itemField = item[field];\n\n if (itemField != null && (minField == null || itemField < minField)) {\n min = item;\n minField = itemField;\n }\n }\n\n return min;\n }\n /**\r\n * Find all distinct values of a specified field\r\n *\r\n * @param prop - The property name whose distinct values should be returned.\r\n *\r\n * @returns Unordered array containing all distinct values. Items without specified property are ignored.\r\n */\n\n }, {\n key: \"distinct\",\n value: function distinct(prop) {\n var data = this._data;\n var itemIds = Object.keys(data);\n var values = [];\n var fieldType = this._options.type && this._options.type[prop] || null;\n var count = 0;\n\n for (var i = 0, len = itemIds.length; i < len; i++) {\n var id = itemIds[i];\n var item = data[id];\n var value = item[prop];\n var exists = false;\n\n for (var j = 0; j < count; j++) {\n if (values[j] == value) {\n exists = true;\n break;\n }\n }\n\n if (!exists && value !== undefined) {\n values[count] = value;\n count++;\n }\n }\n\n if (fieldType) {\n for (var _i10 = 0, _len10 = values.length; _i10 < _len10; _i10++) {\n values[_i10] = convert(values[_i10], fieldType);\n }\n }\n\n return values;\n }\n /**\r\n * Add a single item. Will fail when an item with the same id already exists.\r\n *\r\n * @param item - A new item to be added.\r\n *\r\n * @returns Added item's id. An id is generated when it is not present in the item.\r\n */\n\n }, {\n key: \"_addItem\",\n value: function _addItem(item) {\n var id = item[this._idProp];\n\n if (id != null) {\n // check whether this id is already taken\n if (this._data[id]) {\n // item already exists\n throw new Error('Cannot add item: item with id ' + id + ' already exists');\n }\n } else {\n // generate an id\n id = uuid4();\n item[this._idProp] = id;\n }\n\n var d = {};\n var fields = Object.keys(item);\n\n for (var i = 0, len = fields.length; i < len; i++) {\n var field = fields[i];\n var fieldType = this._type[field]; // type may be undefined\n\n d[field] = convert(item[field], fieldType);\n }\n\n this._data[id] = d;\n this.length++;\n return id;\n }\n /**\r\n * Get an item. Fields can be converted to a specific type\r\n *\r\n * @param id - Id of the requested item.\r\n * @param types - Property name to type name object map of type converstions.\r\n *\r\n * @returns The item, optionally after type conversion.\r\n */\n\n }, {\n key: \"_getItem\",\n value: function _getItem(id, types) {\n // @TODO: I have no idea how to type this.\n // get the item from the dataset\n var raw = this._data[id];\n\n if (!raw) {\n return null;\n } // convert the items field types\n\n\n var converted;\n var fields = Object.keys(raw);\n\n if (types) {\n converted = {};\n\n for (var i = 0, len = fields.length; i < len; i++) {\n var field = fields[i];\n var value = raw[field];\n converted[field] = convert(value, types[field]);\n }\n } else {\n // no field types specified, no converting needed\n converted = _objectSpread({}, raw);\n }\n\n if (converted[this._idProp] == null) {\n converted[this._idProp] = raw.id;\n }\n\n return converted;\n }\n /**\r\n * Update a single item: merge with existing item.\r\n * Will fail when the item has no id, or when there does not exist an item with the same id.\r\n *\r\n * @param item - The new item\r\n *\r\n * @returns The id of the updated item.\r\n */\n\n }, {\n key: \"_updateItem\",\n value: function _updateItem(item) {\n var id = item[this._idProp];\n\n if (id == null) {\n throw new Error('Cannot update item: item has no id (item: ' + JSON.stringify(item) + ')');\n }\n\n var d = this._data[id];\n\n if (!d) {\n // item doesn't exist\n throw new Error('Cannot update item: no item with id ' + id + ' found');\n } // merge with current item\n\n\n var fields = Object.keys(item);\n\n for (var i = 0, len = fields.length; i < len; i++) {\n var field = fields[i];\n var fieldType = this._type[field] // type may be undefined\n ;\n d[field] = convert(item[field], fieldType);\n }\n\n return id;\n }\n }]);\n\n return DataSet;\n}(DataSetPart);\n\n/**\r\n * DataView\r\n *\r\n * A DataView offers a filtered and/or formatted view on a DataSet. One can subscribe to changes in a DataView, and easily get filtered or formatted data without having to specify filters and field types all the time.\r\n *\r\n * ## Example\r\n * ```javascript\r\n * // create a DataSet\r\n * var data = new vis.DataSet();\r\n * data.add([\r\n * {id: 1, text: 'item 1', date: new Date(2013, 6, 20), group: 1, first: true},\r\n * {id: 2, text: 'item 2', date: '2013-06-23', group: 2},\r\n * {id: 3, text: 'item 3', date: '2013-06-25', group: 2},\r\n * {id: 4, text: 'item 4'}\r\n * ]);\r\n *\r\n * // create a DataView\r\n * // the view will only contain items having a property group with value 1,\r\n * // and will only output fields id, text, and date.\r\n * var view = new vis.DataView(data, {\r\n * filter: function (item) {\r\n * return (item.group == 1);\r\n * },\r\n * fields: ['id', 'text', 'date']\r\n * });\r\n *\r\n * // subscribe to any change in the DataView\r\n * view.on('*', function (event, properties, senderId) {\r\n * console.log('event', event, properties);\r\n * });\r\n *\r\n * // update an item in the data set\r\n * data.update({id: 2, group: 1});\r\n *\r\n * // get all ids in the view\r\n * var ids = view.getIds();\r\n * console.log('ids', ids); // will output [1, 2]\r\n *\r\n * // get all items in the view\r\n * var items = view.get();\r\n * ```\r\n *\r\n * @typeParam Item - Item type that may or may not have an id.\r\n * @typeParam IdProp - Name of the property that contains the id.\r\n */\n\nvar DataView =\n/*#__PURE__*/\nfunction (_DataSetPart) {\n inherits(DataView, _DataSetPart);\n\n /**\r\n * Create a DataView.\r\n *\r\n * @param data - The instance containing data (directly or indirectly).\r\n * @param options - Options to configure this data view.\r\n */\n function DataView(data, options) {\n var _this;\n\n classCallCheck(this, DataView);\n\n _this = possibleConstructorReturn(this, getPrototypeOf(DataView).call(this));\n /** @inheritdoc */\n\n _this.length = 0;\n _this._ids = {}; // ids of the items currently in memory (just contains a boolean true)\n\n _this._options = options || {};\n _this.listener = _this._onEvent.bind(assertThisInitialized(_this));\n\n _this.setData(data);\n\n return _this;\n } // TODO: implement a function .config() to dynamically update things like configured filter\n // and trigger changes accordingly\n\n /**\r\n * Set a data source for the view.\r\n *\r\n * @param data - The instance containing data (directly or indirectly).\r\n */\n\n\n createClass(DataView, [{\n key: \"setData\",\n value: function setData(data) {\n if (this._data) {\n // unsubscribe from current dataset\n if (this._data.off) {\n this._data.off('*', this.listener);\n } // trigger a remove of all items in memory\n\n\n var ids = this._data.getIds({\n filter: this._options.filter\n });\n\n var items = this._data.get(ids);\n\n this._ids = {};\n this.length = 0;\n\n this._trigger('remove', {\n items: ids,\n oldData: items\n });\n }\n\n if (data != null) {\n this._data = data; // trigger an add of all added items\n\n var _ids = this._data.getIds({\n filter: this._options.filter\n });\n\n for (var i = 0, len = _ids.length; i < len; i++) {\n var id = _ids[i];\n this._ids[id] = true;\n }\n\n this.length = _ids.length;\n\n this._trigger('add', {\n items: _ids\n });\n } else {\n this._data = new DataSet();\n } // subscribe to new dataset\n\n\n if (this._data.on) {\n this._data.on('*', this.listener);\n }\n }\n /**\r\n * Refresh the DataView.\r\n * Useful when the DataView has a filter function containing a variable parameter.\r\n */\n\n }, {\n key: \"refresh\",\n value: function refresh() {\n var ids = this._data.getIds({\n filter: this._options.filter\n });\n\n var oldIds = Object.keys(this._ids);\n var newIds = {};\n var addedIds = [];\n var removedIds = [];\n var removedItems = []; // check for additions\n\n for (var i = 0, len = ids.length; i < len; i++) {\n var id = ids[i];\n newIds[id] = true;\n\n if (!this._ids[id]) {\n addedIds.push(id);\n this._ids[id] = true;\n }\n } // check for removals\n\n\n for (var _i = 0, _len = oldIds.length; _i < _len; _i++) {\n var _id = oldIds[_i];\n\n var item = this._data.get(_id);\n\n if (item == null) {\n // @TODO: Investigate.\n // Doesn't happen during tests or examples.\n // Is it really impossible or could it eventually happen?\n // How to handle it if it does? The types guarantee non-nullable items.\n console.error('If you see this, report it please.');\n } else if (!newIds[_id]) {\n removedIds.push(_id);\n removedItems.push(item);\n delete this._ids[_id];\n }\n }\n\n this.length += addedIds.length - removedIds.length; // trigger events\n\n if (addedIds.length) {\n this._trigger('add', {\n items: addedIds\n });\n }\n\n if (removedIds.length) {\n this._trigger('remove', {\n items: removedIds,\n oldData: removedItems\n });\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"get\",\n value: function get(first, second) {\n if (this._data == null) {\n return null;\n } // parse the arguments\n\n\n var ids = null;\n var options;\n\n if (isId(first) || Array.isArray(first)) {\n ids = first;\n options = second;\n } else {\n options = first;\n } // extend the options with the default options and provided options\n\n\n var viewOptions = Object.assign({}, this._options, options); // create a combined filter method when needed\n\n var thisFilter = this._options.filter;\n var optionsFilter = options && options.filter;\n\n if (thisFilter && optionsFilter) {\n viewOptions.filter = function (item) {\n return thisFilter(item) && optionsFilter(item);\n };\n }\n\n if (ids == null) {\n return this._data.get(viewOptions);\n } else {\n return this._data.get(ids, viewOptions);\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"getIds\",\n value: function getIds(options) {\n if (this._data.length) {\n var defaultFilter = this._options.filter;\n var optionsFilter = options != null ? options.filter : null;\n var filter;\n\n if (optionsFilter) {\n if (defaultFilter) {\n filter = function filter(item) {\n return defaultFilter(item) && optionsFilter(item);\n };\n } else {\n filter = optionsFilter;\n }\n } else {\n filter = defaultFilter;\n }\n\n return this._data.getIds({\n filter: filter,\n order: options && options.order\n });\n } else {\n return [];\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"forEach\",\n value: function forEach(callback, options) {\n if (this._data) {\n var defaultFilter = this._options.filter;\n var optionsFilter = options && options.filter;\n var filter;\n\n if (optionsFilter) {\n if (defaultFilter) {\n filter = function filter(item) {\n return defaultFilter(item) && optionsFilter(item);\n };\n } else {\n filter = optionsFilter;\n }\n } else {\n filter = defaultFilter;\n }\n\n this._data.forEach(callback, {\n filter: filter,\n order: options && options.order\n });\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"map\",\n value: function map(callback, options) {\n if (this._data) {\n var defaultFilter = this._options.filter;\n var optionsFilter = options && options.filter;\n var filter;\n\n if (optionsFilter) {\n if (defaultFilter) {\n filter = function filter(item) {\n return defaultFilter(item) && optionsFilter(item);\n };\n } else {\n filter = optionsFilter;\n }\n } else {\n filter = defaultFilter;\n }\n\n return this._data.map(callback, {\n filter: filter,\n order: options && options.order\n });\n } else {\n return [];\n }\n }\n /** @inheritdoc */\n\n }, {\n key: \"getDataSet\",\n value: function getDataSet() {\n return this._data.getDataSet();\n }\n /**\r\n * Event listener. Will propagate all events from the connected data set to the subscribers of the DataView, but will filter the items and only trigger when there are changes in the filtered data set.\r\n *\r\n * @param event - The name of the event.\r\n * @param params - Parameters of the event.\r\n * @param senderId - Id supplied by the sender.\r\n */\n\n }, {\n key: \"_onEvent\",\n value: function _onEvent(event, params, senderId) {\n if (!params || !params.items || !this._data) {\n return;\n }\n\n var ids = params.items;\n var addedIds = [];\n var updatedIds = [];\n var removedIds = [];\n var oldItems = [];\n var updatedItems = [];\n var removedItems = [];\n\n switch (event) {\n case 'add':\n // filter the ids of the added items\n for (var i = 0, len = ids.length; i < len; i++) {\n var id = ids[i];\n var item = this.get(id);\n\n if (item) {\n this._ids[id] = true;\n addedIds.push(id);\n }\n }\n\n break;\n\n case 'update':\n // determine the event from the views viewpoint: an updated\n // item can be added, updated, or removed from this view.\n for (var _i2 = 0, _len2 = ids.length; _i2 < _len2; _i2++) {\n var _id2 = ids[_i2];\n\n var _item = this.get(_id2);\n\n if (_item) {\n if (this._ids[_id2]) {\n updatedIds.push(_id2);\n updatedItems.push(params.data[_i2]);\n oldItems.push(params.oldData[_i2]);\n } else {\n this._ids[_id2] = true;\n addedIds.push(_id2);\n }\n } else {\n if (this._ids[_id2]) {\n delete this._ids[_id2];\n removedIds.push(_id2);\n removedItems.push(params.oldData[_i2]);\n }\n }\n }\n\n break;\n\n case 'remove':\n // filter the ids of the removed items\n for (var _i3 = 0, _len3 = ids.length; _i3 < _len3; _i3++) {\n var _id3 = ids[_i3];\n\n if (this._ids[_id3]) {\n delete this._ids[_id3];\n removedIds.push(_id3);\n removedItems.push(params.oldData[_i3]);\n }\n }\n\n break;\n }\n\n this.length += addedIds.length - removedIds.length;\n\n if (addedIds.length) {\n this._trigger('add', {\n items: addedIds\n }, senderId);\n }\n\n if (updatedIds.length) {\n this._trigger('update', {\n items: updatedIds,\n oldData: oldItems,\n data: updatedItems\n }, senderId);\n }\n\n if (removedIds.length) {\n this._trigger('remove', {\n items: removedIds,\n oldData: removedItems\n }, senderId);\n }\n }\n }]);\n\n return DataView;\n}(DataSetPart);\n\nvar index = {\n DataSet: DataSet,\n DataView: DataView,\n Queue: Queue\n};\n\nexport default index;\nexport { DataSet, DataView, Queue };\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","module.exports = {};\n","var O = 'object';\nvar check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == O && globalThis) ||\n check(typeof window == O && window) ||\n check(typeof self == O && self) ||\n check(typeof global == O && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var global = require('../internals/global');\nvar hide = require('../internals/hide');\n\nmodule.exports = function (key, value) {\n try {\n hide(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\nvar IS_PURE = require('../internals/is-pure');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.2.1',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","var shared = require('../internals/shared');\n\nmodule.exports = shared('native-function-to-string', Function.toString);\n","var global = require('../internals/global');\nvar nativeFunctionToString = require('../internals/function-to-string');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(nativeFunctionToString.call(WeakMap));\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = {};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar hide = require('../internals/hide');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n hide(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","module.exports = {};\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","'use strict';\nvar global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar isForced = require('../internals/is-forced');\nvar path = require('../internals/path');\nvar bind = require('../internals/bind-context');\nvar hide = require('../internals/hide');\nvar has = require('../internals/has');\n\nvar wrapConstructor = function (NativeConstructor) {\n var Wrapper = function (a, b, c) {\n if (this instanceof NativeConstructor) {\n switch (arguments.length) {\n case 0: return new NativeConstructor();\n case 1: return new NativeConstructor(a);\n case 2: return new NativeConstructor(a, b);\n } return new NativeConstructor(a, b, c);\n } return NativeConstructor.apply(this, arguments);\n };\n Wrapper.prototype = NativeConstructor.prototype;\n return Wrapper;\n};\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var PROTO = options.proto;\n\n var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : (global[TARGET] || {}).prototype;\n\n var target = GLOBAL ? path : path[TARGET] || (path[TARGET] = {});\n var targetPrototype = target.prototype;\n\n var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE;\n var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor;\n\n for (key in source) {\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contains in native\n USE_NATIVE = !FORCED && nativeSource && has(nativeSource, key);\n\n targetProperty = target[key];\n\n if (USE_NATIVE) if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(nativeSource, key);\n nativeProperty = descriptor && descriptor.value;\n } else nativeProperty = nativeSource[key];\n\n // export native or implementation\n sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key];\n\n if (USE_NATIVE && typeof targetProperty === typeof sourceProperty) continue;\n\n // bind timers to global for call from export context\n if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global);\n // wrap global constructors for prevent changs in this version\n else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty);\n // make static versions for prototype methods\n else if (PROTO && typeof sourceProperty == 'function') resultProperty = bind(Function.call, sourceProperty);\n // default case\n else resultProperty = sourceProperty;\n\n // add a flag to not completely full polyfills\n if (options.sham || (sourceProperty && sourceProperty.sham) || (targetProperty && targetProperty.sham)) {\n hide(resultProperty, 'sham', true);\n }\n\n target[key] = resultProperty;\n\n if (PROTO) {\n VIRTUAL_PROTOTYPE = TARGET + 'Prototype';\n if (!has(path, VIRTUAL_PROTOTYPE)) hide(path, VIRTUAL_PROTOTYPE, {});\n // export virtual prototype methods\n path[VIRTUAL_PROTOTYPE][key] = sourceProperty;\n // export real prototype methods\n if (options.real && targetPrototype && !targetPrototype[key]) hide(targetPrototype, key, sourceProperty);\n }\n }\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\n\nvar Symbol = global.Symbol;\nvar store = shared('wks');\n\nmodule.exports = function (name) {\n return store[name] || (store[name] = NATIVE_SYMBOL && Symbol[name]\n || (NATIVE_SYMBOL ? Symbol : uid)('Symbol.' + name));\n};\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar hide = require('../internals/hide');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) hide(IteratorPrototype, ITERATOR, returnThis);\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(length, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar PROTOTYPE = 'prototype';\nvar Empty = function () { /* empty */ };\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var length = enumBugKeys.length;\n var lt = '<';\n var script = 'script';\n var gt = '>';\n var js = 'java' + script + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n iframe.src = String(js);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];\n return createDict();\n};\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n\nhiddenKeys[IE_PROTO] = true;\n","var classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","'use strict';\nvar classof = require('../internals/classof');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = String(test) !== '[object z]' ? function toString() {\n return '[object ' + classof(this) + ']';\n} : test.toString;\n","var defineProperty = require('../internals/object-define-property').f;\nvar hide = require('../internals/hide');\nvar has = require('../internals/has');\nvar toString = require('../internals/object-to-string');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar METHOD_REQUIRED = toString !== ({}).toString;\n\nmodule.exports = function (it, TAG, STATIC, SET_METHOD) {\n if (it) {\n var target = STATIC ? it : it.prototype;\n if (!has(target, TO_STRING_TAG)) {\n defineProperty(target, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n if (SET_METHOD && METHOD_REQUIRED) hide(target, 'toString', toString);\n }\n};\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hide = require('../internals/hide');\n\nmodule.exports = function (target, key, value, options) {\n if (options && options.enumerable) target[key] = value;\n else hide(target, key, value);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar hide = require('../internals/hide');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n hide(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n hide(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","require('./es.array.iterator');\nvar DOMIterables = require('../internals/dom-iterables');\nvar global = require('../internals/global');\nvar hide = require('../internals/hide');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype && !CollectionPrototype[TO_STRING_TAG]) {\n hide(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n Iterators[COLLECTION_NAME] = Iterators.Array;\n}\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var bind = require('../internals/bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !method || !fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","'use strict';\nvar $ = require('../internals/export');\nvar forEach = require('../internals/array-for-each');\n\n// `Array.prototype.forEach` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {\n forEach: forEach\n});\n","var path = require('../internals/path');\n\nmodule.exports = function (CONSTRUCTOR) {\n return path[CONSTRUCTOR + 'Prototype'];\n};\n","require('../../../modules/es.array.for-each');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').forEach;\n","module.exports = require('../../../es/array/virtual/for-each');\n","require('../../modules/web.dom-collections.iterator');\nvar forEach = require('../array/virtual/for-each');\nvar classof = require('../../internals/classof');\nvar ArrayPrototype = Array.prototype;\n\nvar DOMIterables = {\n DOMTokenList: true,\n NodeList: true\n};\n\nmodule.exports = function (it) {\n var own = it.forEach;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.forEach)\n // eslint-disable-next-line no-prototype-builtins\n || DOMIterables.hasOwnProperty(classof(it)) ? forEach : own;\n};\n","module.exports = require(\"core-js-pure/stable/instance/for-each\");","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n return !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('filter') }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.filter');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').filter;\n","var filter = require('../array/virtual/filter');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.filter;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.filter) ? filter : own;\n};\n","module.exports = require('../../es/instance/filter');\n","module.exports = require(\"core-js-pure/stable/instance/filter\");","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var $ = require('../internals/export');\nvar global = require('../internals/global');\nvar userAgent = require('../internals/user-agent');\n\nvar slice = [].slice;\nvar MSIE = /MSIE .\\./.test(userAgent); // <- dirty ie9- check\n\nvar wrap = function (scheduler) {\n return function (handler, timeout /* , ...arguments */) {\n var boundArgs = arguments.length > 2;\n var args = boundArgs ? slice.call(arguments, 2) : undefined;\n return scheduler(boundArgs ? function () {\n // eslint-disable-next-line no-new-func\n (typeof handler == 'function' ? handler : Function(handler)).apply(this, args);\n } : handler, timeout);\n };\n};\n\n// ie9- setTimeout & setInterval additional parameters fix\n// https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers\n$({ global: true, bind: true, forced: MSIE }, {\n // `setTimeout` method\n // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-settimeout\n setTimeout: wrap(global.setTimeout),\n // `setInterval` method\n // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#dom-setinterval\n setInterval: wrap(global.setInterval)\n});\n","require('../modules/web.timers');\n\nmodule.exports = require('../internals/path').setTimeout;\n","module.exports = require(\"core-js-pure/stable/set-timeout\");","'use strict';\nvar aFunction = require('../internals/a-function');\nvar isObject = require('../internals/is-object');\n\nvar slice = [].slice;\nvar factories = {};\n\nvar construct = function (C, argsLength, args) {\n if (!(argsLength in factories)) {\n for (var list = [], i = 0; i < argsLength; i++) list[i] = 'a[' + i + ']';\n // eslint-disable-next-line no-new-func\n factories[argsLength] = Function('C,a', 'return new C(' + list.join(',') + ')');\n } return factories[argsLength](C, args);\n};\n\n// `Function.prototype.bind` method implementation\n// https://tc39.github.io/ecma262/#sec-function.prototype.bind\nmodule.exports = Function.bind || function bind(that /* , ...args */) {\n var fn = aFunction(this);\n var partArgs = slice.call(arguments, 1);\n var boundFunction = function bound(/* args... */) {\n var args = partArgs.concat(slice.call(arguments));\n return this instanceof boundFunction ? construct(fn, args.length, args) : fn.apply(that, args);\n };\n if (isObject(fn.prototype)) boundFunction.prototype = fn.prototype;\n return boundFunction;\n};\n","var $ = require('../internals/export');\nvar bind = require('../internals/function-bind');\n\n// `Function.prototype.bind` method\n// https://tc39.github.io/ecma262/#sec-function.prototype.bind\n$({ target: 'Function', proto: true }, {\n bind: bind\n});\n","require('../../../modules/es.function.bind');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Function').bind;\n","var bind = require('../function/virtual/bind');\n\nvar FunctionPrototype = Function.prototype;\n\nmodule.exports = function (it) {\n var own = it.bind;\n return it === FunctionPrototype || (it instanceof Function && own === FunctionPrototype.bind) ? bind : own;\n};\n","module.exports = require('../../es/instance/bind');\n","module.exports = require(\"core-js-pure/stable/instance/bind\");","var $ = require('../internals/export');\nvar isArray = require('../internals/is-array');\n\n// `Array.isArray` method\n// https://tc39.github.io/ecma262/#sec-array.isarray\n$({ target: 'Array', stat: true }, {\n isArray: isArray\n});\n","require('../../modules/es.array.is-array');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Array.isArray;\n","module.exports = require('../../es/array/is-array');\n","module.exports = require(\"core-js-pure/stable/array/is-array\");","function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nmodule.exports = _classCallCheck;","var $ = require('../internals/export');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar objectDefinePropertyModile = require('../internals/object-define-property');\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\n$({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {\n defineProperty: objectDefinePropertyModile.f\n});\n","require('../../modules/es.object.define-property');\nvar path = require('../../internals/path');\n\nvar Object = path.Object;\n\nvar defineProperty = module.exports = function defineProperty(it, key, desc) {\n return Object.defineProperty(it, key, desc);\n};\n\nif (Object.defineProperty.sham) defineProperty.sham = true;\n","module.exports = require('../../es/object/define-property');\n","module.exports = require(\"core-js-pure/features/object/define-property\");","var _Object$defineProperty = require(\"../core-js/object/define-property\");\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n\n _Object$defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nmodule.exports = _createClass;","exports.f = require('../internals/well-known-symbol');\n","var path = require('../internals/path');\nvar has = require('../internals/has');\nvar wrappedWellKnownSymbolModule = require('../internals/wrapped-well-known-symbol');\nvar defineProperty = require('../internals/object-define-property').f;\n\nmodule.exports = function (NAME) {\n var Symbol = path.Symbol || (path.Symbol = {});\n if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {\n value: wrappedWellKnownSymbolModule.f(NAME)\n });\n};\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.iterator` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.iterator\ndefineWellKnownSymbol('iterator');\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","require('../../modules/es.symbol.iterator');\nrequire('../../modules/es.string.iterator');\nrequire('../../modules/web.dom-collections.iterator');\nvar WrappedWellKnownSymbolModule = require('../../internals/wrapped-well-known-symbol');\n\nmodule.exports = WrappedWellKnownSymbolModule.f('iterator');\n","module.exports = require('../../es/symbol/iterator');\n","module.exports = require(\"core-js-pure/features/symbol/iterator\");","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\nvar IS_CONCAT_SPREADABLE_SUPPORT = !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar nativeGetOwnPropertyNames = require('../internals/object-get-own-property-names').f;\n\nvar toString = {}.toString;\n\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames\n ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n try {\n return nativeGetOwnPropertyNames(it);\n } catch (error) {\n return windowNames.slice();\n }\n};\n\n// fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\nmodule.exports.f = function getOwnPropertyNames(it) {\n return windowNames && toString.call(it) == '[object Window]'\n ? getWindowNames(it)\n : nativeGetOwnPropertyNames(toIndexedObject(it));\n};\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar IS_PURE = require('../internals/is-pure');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar anObject = require('../internals/an-object');\nvar toObject = require('../internals/to-object');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar nativeObjectCreate = require('../internals/object-create');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertyNamesExternal = require('../internals/object-get-own-property-names-external');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar hide = require('../internals/hide');\nvar redefine = require('../internals/redefine');\nvar shared = require('../internals/shared');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar uid = require('../internals/uid');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar wrappedWellKnownSymbolModule = require('../internals/wrapped-well-known-symbol');\nvar defineWellKnownSymbol = require('../internals/define-well-known-symbol');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar InternalStateModule = require('../internals/internal-state');\nvar $forEach = require('../internals/array-iteration').forEach;\n\nvar HIDDEN = sharedKey('hidden');\nvar SYMBOL = 'Symbol';\nvar PROTOTYPE = 'prototype';\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(SYMBOL);\nvar ObjectPrototype = Object[PROTOTYPE];\nvar $Symbol = global.Symbol;\nvar JSON = global.JSON;\nvar nativeJSONStringify = JSON && JSON.stringify;\nvar nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\nvar nativeDefineProperty = definePropertyModule.f;\nvar nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;\nvar nativePropertyIsEnumerable = propertyIsEnumerableModule.f;\nvar AllSymbols = shared('symbols');\nvar ObjectPrototypeSymbols = shared('op-symbols');\nvar StringToSymbolRegistry = shared('string-to-symbol-registry');\nvar SymbolToStringRegistry = shared('symbol-to-string-registry');\nvar WellKnownSymbolsStore = shared('wks');\nvar QObject = global.QObject;\n// Don't use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\nvar USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild;\n\n// fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\nvar setSymbolDescriptor = DESCRIPTORS && fails(function () {\n return nativeObjectCreate(nativeDefineProperty({}, 'a', {\n get: function () { return nativeDefineProperty(this, 'a', { value: 7 }).a; }\n })).a != 7;\n}) ? function (O, P, Attributes) {\n var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);\n if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];\n nativeDefineProperty(O, P, Attributes);\n if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {\n nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);\n }\n} : nativeDefineProperty;\n\nvar wrap = function (tag, description) {\n var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]);\n setInternalState(symbol, {\n type: SYMBOL,\n tag: tag,\n description: description\n });\n if (!DESCRIPTORS) symbol.description = description;\n return symbol;\n};\n\nvar isSymbol = NATIVE_SYMBOL && typeof $Symbol.iterator == 'symbol' ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n return Object(it) instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(O, P, Attributes) {\n if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);\n anObject(O);\n var key = toPrimitive(P, true);\n anObject(Attributes);\n if (has(AllSymbols, key)) {\n if (!Attributes.enumerable) {\n if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));\n O[HIDDEN][key] = true;\n } else {\n if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;\n Attributes = nativeObjectCreate(Attributes, { enumerable: createPropertyDescriptor(0, false) });\n } return setSymbolDescriptor(O, key, Attributes);\n } return nativeDefineProperty(O, key, Attributes);\n};\n\nvar $defineProperties = function defineProperties(O, Properties) {\n anObject(O);\n var properties = toIndexedObject(Properties);\n var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));\n $forEach(keys, function (key) {\n if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);\n });\n return O;\n};\n\nvar $create = function create(O, Properties) {\n return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);\n};\n\nvar $propertyIsEnumerable = function propertyIsEnumerable(V) {\n var P = toPrimitive(V, true);\n var enumerable = nativePropertyIsEnumerable.call(this, P);\n if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;\n return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;\n};\n\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {\n var it = toIndexedObject(O);\n var key = toPrimitive(P, true);\n if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;\n var descriptor = nativeGetOwnPropertyDescriptor(it, key);\n if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {\n descriptor.enumerable = true;\n }\n return descriptor;\n};\n\nvar $getOwnPropertyNames = function getOwnPropertyNames(O) {\n var names = nativeGetOwnPropertyNames(toIndexedObject(O));\n var result = [];\n $forEach(names, function (key) {\n if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);\n });\n return result;\n};\n\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(O) {\n var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;\n var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));\n var result = [];\n $forEach(names, function (key) {\n if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {\n result.push(AllSymbols[key]);\n }\n });\n return result;\n};\n\n// `Symbol` constructor\n// https://tc39.github.io/ecma262/#sec-symbol-constructor\nif (!NATIVE_SYMBOL) {\n $Symbol = function Symbol() {\n if (this instanceof $Symbol) throw TypeError('Symbol is not a constructor');\n var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);\n var tag = uid(description);\n var setter = function (value) {\n if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);\n if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));\n };\n if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, { configurable: true, set: setter });\n return wrap(tag, description);\n };\n\n redefine($Symbol[PROTOTYPE], 'toString', function toString() {\n return getInternalState(this).tag;\n });\n\n propertyIsEnumerableModule.f = $propertyIsEnumerable;\n definePropertyModule.f = $defineProperty;\n getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;\n getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;\n getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;\n\n if (DESCRIPTORS) {\n // https://github.com/tc39/proposal-Symbol-description\n nativeDefineProperty($Symbol[PROTOTYPE], 'description', {\n configurable: true,\n get: function description() {\n return getInternalState(this).description;\n }\n });\n if (!IS_PURE) {\n redefine(ObjectPrototype, 'propertyIsEnumerable', $propertyIsEnumerable, { unsafe: true });\n }\n }\n\n wrappedWellKnownSymbolModule.f = function (name) {\n return wrap(wellKnownSymbol(name), name);\n };\n}\n\n$({ global: true, wrap: true, forced: !NATIVE_SYMBOL, sham: !NATIVE_SYMBOL }, {\n Symbol: $Symbol\n});\n\n$forEach(objectKeys(WellKnownSymbolsStore), function (name) {\n defineWellKnownSymbol(name);\n});\n\n$({ target: SYMBOL, stat: true, forced: !NATIVE_SYMBOL }, {\n // `Symbol.for` method\n // https://tc39.github.io/ecma262/#sec-symbol.for\n 'for': function (key) {\n var string = String(key);\n if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];\n var symbol = $Symbol(string);\n StringToSymbolRegistry[string] = symbol;\n SymbolToStringRegistry[symbol] = string;\n return symbol;\n },\n // `Symbol.keyFor` method\n // https://tc39.github.io/ecma262/#sec-symbol.keyfor\n keyFor: function keyFor(sym) {\n if (!isSymbol(sym)) throw TypeError(sym + ' is not a symbol');\n if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];\n },\n useSetter: function () { USE_SETTER = true; },\n useSimple: function () { USE_SETTER = false; }\n});\n\n$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL, sham: !DESCRIPTORS }, {\n // `Object.create` method\n // https://tc39.github.io/ecma262/#sec-object.create\n create: $create,\n // `Object.defineProperty` method\n // https://tc39.github.io/ecma262/#sec-object.defineproperty\n defineProperty: $defineProperty,\n // `Object.defineProperties` method\n // https://tc39.github.io/ecma262/#sec-object.defineproperties\n defineProperties: $defineProperties,\n // `Object.getOwnPropertyDescriptor` method\n // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors\n getOwnPropertyDescriptor: $getOwnPropertyDescriptor\n});\n\n$({ target: 'Object', stat: true, forced: !NATIVE_SYMBOL }, {\n // `Object.getOwnPropertyNames` method\n // https://tc39.github.io/ecma262/#sec-object.getownpropertynames\n getOwnPropertyNames: $getOwnPropertyNames,\n // `Object.getOwnPropertySymbols` method\n // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols\n getOwnPropertySymbols: $getOwnPropertySymbols\n});\n\n// Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives\n// https://bugs.chromium.org/p/v8/issues/detail?id=3443\n$({ target: 'Object', stat: true, forced: fails(function () { getOwnPropertySymbolsModule.f(1); }) }, {\n getOwnPropertySymbols: function getOwnPropertySymbols(it) {\n return getOwnPropertySymbolsModule.f(toObject(it));\n }\n});\n\n// `JSON.stringify` method behavior with symbols\n// https://tc39.github.io/ecma262/#sec-json.stringify\nJSON && $({ target: 'JSON', stat: true, forced: !NATIVE_SYMBOL || fails(function () {\n var symbol = $Symbol();\n // MS Edge converts symbol values to JSON as {}\n return nativeJSONStringify([symbol]) != '[null]'\n // WebKit converts symbol values to JSON as null\n || nativeJSONStringify({ a: symbol }) != '{}'\n // V8 throws on boxed symbols\n || nativeJSONStringify(Object(symbol)) != '{}';\n}) }, {\n stringify: function stringify(it) {\n var args = [it];\n var index = 1;\n var replacer, $replacer;\n while (arguments.length > index) args.push(arguments[index++]);\n $replacer = replacer = args[1];\n if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n if (!isArray(replacer)) replacer = function (key, value) {\n if (typeof $replacer == 'function') value = $replacer.call(this, key, value);\n if (!isSymbol(value)) return value;\n };\n args[1] = replacer;\n return nativeJSONStringify.apply(JSON, args);\n }\n});\n\n// `Symbol.prototype[@@toPrimitive]` method\n// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive\nif (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) hide($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n// `Symbol.prototype[@@toStringTag]` property\n// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag\nsetToStringTag($Symbol, SYMBOL);\n\nhiddenKeys[HIDDEN] = true;\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.asyncIterator` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.asynciterator\ndefineWellKnownSymbol('asyncIterator');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.hasInstance` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.hasinstance\ndefineWellKnownSymbol('hasInstance');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.isConcatSpreadable` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.isconcatspreadable\ndefineWellKnownSymbol('isConcatSpreadable');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.match` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.match\ndefineWellKnownSymbol('match');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.matchAll` well-known symbol\ndefineWellKnownSymbol('matchAll');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.replace` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.replace\ndefineWellKnownSymbol('replace');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.search` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.search\ndefineWellKnownSymbol('search');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.species` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.species\ndefineWellKnownSymbol('species');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.split` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.split\ndefineWellKnownSymbol('split');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.toPrimitive` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.toprimitive\ndefineWellKnownSymbol('toPrimitive');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.toStringTag` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.tostringtag\ndefineWellKnownSymbol('toStringTag');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.unscopables` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.unscopables\ndefineWellKnownSymbol('unscopables');\n","var setToStringTag = require('../internals/set-to-string-tag');\n\n// Math[@@toStringTag] property\n// https://tc39.github.io/ecma262/#sec-math-@@tostringtag\nsetToStringTag(Math, 'Math', true);\n","var global = require('../internals/global');\nvar setToStringTag = require('../internals/set-to-string-tag');\n\n// JSON[@@toStringTag] property\n// https://tc39.github.io/ecma262/#sec-json-@@tostringtag\nsetToStringTag(global.JSON, 'JSON', true);\n","require('../../modules/es.array.concat');\nrequire('../../modules/es.object.to-string');\nrequire('../../modules/es.symbol');\nrequire('../../modules/es.symbol.async-iterator');\nrequire('../../modules/es.symbol.description');\nrequire('../../modules/es.symbol.has-instance');\nrequire('../../modules/es.symbol.is-concat-spreadable');\nrequire('../../modules/es.symbol.iterator');\nrequire('../../modules/es.symbol.match');\nrequire('../../modules/es.symbol.match-all');\nrequire('../../modules/es.symbol.replace');\nrequire('../../modules/es.symbol.search');\nrequire('../../modules/es.symbol.species');\nrequire('../../modules/es.symbol.split');\nrequire('../../modules/es.symbol.to-primitive');\nrequire('../../modules/es.symbol.to-string-tag');\nrequire('../../modules/es.symbol.unscopables');\nrequire('../../modules/es.math.to-string-tag');\nrequire('../../modules/es.json.to-string-tag');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Symbol;\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.asyncDispose` well-known symbol\n// https://github.com/tc39/proposal-using-statement\ndefineWellKnownSymbol('asyncDispose');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.dispose` well-known symbol\n// https://github.com/tc39/proposal-using-statement\ndefineWellKnownSymbol('dispose');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.observable` well-known symbol\n// https://github.com/tc39/proposal-observable\ndefineWellKnownSymbol('observable');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.patternMatch` well-known symbol\n// https://github.com/tc39/proposal-pattern-matching\ndefineWellKnownSymbol('patternMatch');\n","var defineWellKnownSymbol = require('../internals/define-well-known-symbol');\n\n// `Symbol.replaceAll` well-known symbol\n// https://tc39.github.io/proposal-string-replaceall/\ndefineWellKnownSymbol('replaceAll');\n","module.exports = require('../../es/symbol');\n\nrequire('../../modules/esnext.symbol.async-dispose');\nrequire('../../modules/esnext.symbol.dispose');\nrequire('../../modules/esnext.symbol.observable');\nrequire('../../modules/esnext.symbol.pattern-match');\nrequire('../../modules/esnext.symbol.replace-all');\n","module.exports = require(\"core-js-pure/features/symbol\");","var _Symbol$iterator = require(\"../core-js/symbol/iterator\");\n\nvar _Symbol = require(\"../core-js/symbol\");\n\nfunction _typeof(obj) {\n if (typeof _Symbol === \"function\" && typeof _Symbol$iterator === \"symbol\") {\n module.exports = _typeof = function _typeof(obj) {\n return typeof obj;\n };\n } else {\n module.exports = _typeof = function _typeof(obj) {\n return obj && typeof _Symbol === \"function\" && obj.constructor === _Symbol && obj !== _Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nmodule.exports = _typeof;","function _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\nmodule.exports = _assertThisInitialized;","var _typeof = require(\"../helpers/typeof\");\n\nvar assertThisInitialized = require(\"./assertThisInitialized\");\n\nfunction _possibleConstructorReturn(self, call) {\n if (call && (_typeof(call) === \"object\" || typeof call === \"function\")) {\n return call;\n }\n\n return assertThisInitialized(self);\n}\n\nmodule.exports = _possibleConstructorReturn;","var $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar toObject = require('../internals/to-object');\nvar nativeGetPrototypeOf = require('../internals/object-get-prototype-of');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar FAILS_ON_PRIMITIVES = fails(function () { nativeGetPrototypeOf(1); });\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\n$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES, sham: !CORRECT_PROTOTYPE_GETTER }, {\n getPrototypeOf: function getPrototypeOf(it) {\n return nativeGetPrototypeOf(toObject(it));\n }\n});\n\n","require('../../modules/es.object.get-prototype-of');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.getPrototypeOf;\n","module.exports = require('../../es/object/get-prototype-of');\n","module.exports = require(\"core-js-pure/features/object/get-prototype-of\");","var $ = require('../internals/export');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n$({ target: 'Object', stat: true }, {\n setPrototypeOf: setPrototypeOf\n});\n","require('../../modules/es.object.set-prototype-of');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.setPrototypeOf;\n","module.exports = require('../../es/object/set-prototype-of');\n","module.exports = require(\"core-js-pure/features/object/set-prototype-of\");","var _Object$getPrototypeOf = require(\"../core-js/object/get-prototype-of\");\n\nvar _Object$setPrototypeOf = require(\"../core-js/object/set-prototype-of\");\n\nfunction _getPrototypeOf(o) {\n module.exports = _getPrototypeOf = _Object$setPrototypeOf ? _Object$getPrototypeOf : function _getPrototypeOf(o) {\n return o.__proto__ || _Object$getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n}\n\nmodule.exports = _getPrototypeOf;","var $ = require('../internals/export');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar create = require('../internals/object-create');\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\n$({ target: 'Object', stat: true, sham: !DESCRIPTORS }, {\n create: create\n});\n","require('../../modules/es.object.create');\nvar path = require('../../internals/path');\n\nvar Object = path.Object;\n\nmodule.exports = function create(P, D) {\n return Object.create(P, D);\n};\n","module.exports = require('../../es/object/create');\n","module.exports = require(\"core-js-pure/features/object/create\");","var _Object$setPrototypeOf = require(\"../core-js/object/set-prototype-of\");\n\nfunction _setPrototypeOf(o, p) {\n module.exports = _setPrototypeOf = _Object$setPrototypeOf || function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n\n return _setPrototypeOf(o, p);\n}\n\nmodule.exports = _setPrototypeOf;","var _Object$create = require(\"../core-js/object/create\");\n\nvar setPrototypeOf = require(\"./setPrototypeOf\");\n\nfunction _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = _Object$create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n writable: true,\n configurable: true\n }\n });\n if (superClass) setPrototypeOf(subClass, superClass);\n}\n\nmodule.exports = _inherits;","//! moment.js\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n global.moment = factory()\n}(this, (function () { 'use strict';\n\n var hookCallback;\n\n function hooks () {\n return hookCallback.apply(null, arguments);\n }\n\n // This is done to register the method called with moment()\n // without creating circular dependencies.\n function setHookCallback (callback) {\n hookCallback = callback;\n }\n\n function isArray(input) {\n return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';\n }\n\n function isObject(input) {\n // IE8 will treat undefined and null as object if it wasn't for\n // input != null\n return input != null && Object.prototype.toString.call(input) === '[object Object]';\n }\n\n function isObjectEmpty(obj) {\n if (Object.getOwnPropertyNames) {\n return (Object.getOwnPropertyNames(obj).length === 0);\n } else {\n var k;\n for (k in obj) {\n if (obj.hasOwnProperty(k)) {\n return false;\n }\n }\n return true;\n }\n }\n\n function isUndefined(input) {\n return input === void 0;\n }\n\n function isNumber(input) {\n return typeof input === 'number' || Object.prototype.toString.call(input) === '[object Number]';\n }\n\n function isDate(input) {\n return input instanceof Date || Object.prototype.toString.call(input) === '[object Date]';\n }\n\n function map(arr, fn) {\n var res = [], i;\n for (i = 0; i < arr.length; ++i) {\n res.push(fn(arr[i], i));\n }\n return res;\n }\n\n function hasOwnProp(a, b) {\n return Object.prototype.hasOwnProperty.call(a, b);\n }\n\n function extend(a, b) {\n for (var i in b) {\n if (hasOwnProp(b, i)) {\n a[i] = b[i];\n }\n }\n\n if (hasOwnProp(b, 'toString')) {\n a.toString = b.toString;\n }\n\n if (hasOwnProp(b, 'valueOf')) {\n a.valueOf = b.valueOf;\n }\n\n return a;\n }\n\n function createUTC (input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, true).utc();\n }\n\n function defaultParsingFlags() {\n // We need to deep clone this object.\n return {\n empty : false,\n unusedTokens : [],\n unusedInput : [],\n overflow : -2,\n charsLeftOver : 0,\n nullInput : false,\n invalidMonth : null,\n invalidFormat : false,\n userInvalidated : false,\n iso : false,\n parsedDateParts : [],\n meridiem : null,\n rfc2822 : false,\n weekdayMismatch : false\n };\n }\n\n function getParsingFlags(m) {\n if (m._pf == null) {\n m._pf = defaultParsingFlags();\n }\n return m._pf;\n }\n\n var some;\n if (Array.prototype.some) {\n some = Array.prototype.some;\n } else {\n some = function (fun) {\n var t = Object(this);\n var len = t.length >>> 0;\n\n for (var i = 0; i < len; i++) {\n if (i in t && fun.call(this, t[i], i, t)) {\n return true;\n }\n }\n\n return false;\n };\n }\n\n function isValid(m) {\n if (m._isValid == null) {\n var flags = getParsingFlags(m);\n var parsedParts = some.call(flags.parsedDateParts, function (i) {\n return i != null;\n });\n var isNowValid = !isNaN(m._d.getTime()) &&\n flags.overflow < 0 &&\n !flags.empty &&\n !flags.invalidMonth &&\n !flags.invalidWeekday &&\n !flags.weekdayMismatch &&\n !flags.nullInput &&\n !flags.invalidFormat &&\n !flags.userInvalidated &&\n (!flags.meridiem || (flags.meridiem && parsedParts));\n\n if (m._strict) {\n isNowValid = isNowValid &&\n flags.charsLeftOver === 0 &&\n flags.unusedTokens.length === 0 &&\n flags.bigHour === undefined;\n }\n\n if (Object.isFrozen == null || !Object.isFrozen(m)) {\n m._isValid = isNowValid;\n }\n else {\n return isNowValid;\n }\n }\n return m._isValid;\n }\n\n function createInvalid (flags) {\n var m = createUTC(NaN);\n if (flags != null) {\n extend(getParsingFlags(m), flags);\n }\n else {\n getParsingFlags(m).userInvalidated = true;\n }\n\n return m;\n }\n\n // Plugins that add properties should also add the key here (null value),\n // so we can properly clone ourselves.\n var momentProperties = hooks.momentProperties = [];\n\n function copyConfig(to, from) {\n var i, prop, val;\n\n if (!isUndefined(from._isAMomentObject)) {\n to._isAMomentObject = from._isAMomentObject;\n }\n if (!isUndefined(from._i)) {\n to._i = from._i;\n }\n if (!isUndefined(from._f)) {\n to._f = from._f;\n }\n if (!isUndefined(from._l)) {\n to._l = from._l;\n }\n if (!isUndefined(from._strict)) {\n to._strict = from._strict;\n }\n if (!isUndefined(from._tzm)) {\n to._tzm = from._tzm;\n }\n if (!isUndefined(from._isUTC)) {\n to._isUTC = from._isUTC;\n }\n if (!isUndefined(from._offset)) {\n to._offset = from._offset;\n }\n if (!isUndefined(from._pf)) {\n to._pf = getParsingFlags(from);\n }\n if (!isUndefined(from._locale)) {\n to._locale = from._locale;\n }\n\n if (momentProperties.length > 0) {\n for (i = 0; i < momentProperties.length; i++) {\n prop = momentProperties[i];\n val = from[prop];\n if (!isUndefined(val)) {\n to[prop] = val;\n }\n }\n }\n\n return to;\n }\n\n var updateInProgress = false;\n\n // Moment prototype object\n function Moment(config) {\n copyConfig(this, config);\n this._d = new Date(config._d != null ? config._d.getTime() : NaN);\n if (!this.isValid()) {\n this._d = new Date(NaN);\n }\n // Prevent infinite loop in case updateOffset creates new moment\n // objects.\n if (updateInProgress === false) {\n updateInProgress = true;\n hooks.updateOffset(this);\n updateInProgress = false;\n }\n }\n\n function isMoment (obj) {\n return obj instanceof Moment || (obj != null && obj._isAMomentObject != null);\n }\n\n function absFloor (number) {\n if (number < 0) {\n // -0 -> 0\n return Math.ceil(number) || 0;\n } else {\n return Math.floor(number);\n }\n }\n\n function toInt(argumentForCoercion) {\n var coercedNumber = +argumentForCoercion,\n value = 0;\n\n if (coercedNumber !== 0 && isFinite(coercedNumber)) {\n value = absFloor(coercedNumber);\n }\n\n return value;\n }\n\n // compare two arrays, return the number of differences\n function compareArrays(array1, array2, dontConvert) {\n var len = Math.min(array1.length, array2.length),\n lengthDiff = Math.abs(array1.length - array2.length),\n diffs = 0,\n i;\n for (i = 0; i < len; i++) {\n if ((dontConvert && array1[i] !== array2[i]) ||\n (!dontConvert && toInt(array1[i]) !== toInt(array2[i]))) {\n diffs++;\n }\n }\n return diffs + lengthDiff;\n }\n\n function warn(msg) {\n if (hooks.suppressDeprecationWarnings === false &&\n (typeof console !== 'undefined') && console.warn) {\n console.warn('Deprecation warning: ' + msg);\n }\n }\n\n function deprecate(msg, fn) {\n var firstTime = true;\n\n return extend(function () {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(null, msg);\n }\n if (firstTime) {\n var args = [];\n var arg;\n for (var i = 0; i < arguments.length; i++) {\n arg = '';\n if (typeof arguments[i] === 'object') {\n arg += '\\n[' + i + '] ';\n for (var key in arguments[0]) {\n arg += key + ': ' + arguments[0][key] + ', ';\n }\n arg = arg.slice(0, -2); // Remove trailing comma and space\n } else {\n arg = arguments[i];\n }\n args.push(arg);\n }\n warn(msg + '\\nArguments: ' + Array.prototype.slice.call(args).join('') + '\\n' + (new Error()).stack);\n firstTime = false;\n }\n return fn.apply(this, arguments);\n }, fn);\n }\n\n var deprecations = {};\n\n function deprecateSimple(name, msg) {\n if (hooks.deprecationHandler != null) {\n hooks.deprecationHandler(name, msg);\n }\n if (!deprecations[name]) {\n warn(msg);\n deprecations[name] = true;\n }\n }\n\n hooks.suppressDeprecationWarnings = false;\n hooks.deprecationHandler = null;\n\n function isFunction(input) {\n return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';\n }\n\n function set (config) {\n var prop, i;\n for (i in config) {\n prop = config[i];\n if (isFunction(prop)) {\n this[i] = prop;\n } else {\n this['_' + i] = prop;\n }\n }\n this._config = config;\n // Lenient ordinal parsing accepts just a number in addition to\n // number + (possibly) stuff coming from _dayOfMonthOrdinalParse.\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n this._dayOfMonthOrdinalParseLenient = new RegExp(\n (this._dayOfMonthOrdinalParse.source || this._ordinalParse.source) +\n '|' + (/\\d{1,2}/).source);\n }\n\n function mergeConfigs(parentConfig, childConfig) {\n var res = extend({}, parentConfig), prop;\n for (prop in childConfig) {\n if (hasOwnProp(childConfig, prop)) {\n if (isObject(parentConfig[prop]) && isObject(childConfig[prop])) {\n res[prop] = {};\n extend(res[prop], parentConfig[prop]);\n extend(res[prop], childConfig[prop]);\n } else if (childConfig[prop] != null) {\n res[prop] = childConfig[prop];\n } else {\n delete res[prop];\n }\n }\n }\n for (prop in parentConfig) {\n if (hasOwnProp(parentConfig, prop) &&\n !hasOwnProp(childConfig, prop) &&\n isObject(parentConfig[prop])) {\n // make sure changes to properties don't modify parent config\n res[prop] = extend({}, res[prop]);\n }\n }\n return res;\n }\n\n function Locale(config) {\n if (config != null) {\n this.set(config);\n }\n }\n\n var keys;\n\n if (Object.keys) {\n keys = Object.keys;\n } else {\n keys = function (obj) {\n var i, res = [];\n for (i in obj) {\n if (hasOwnProp(obj, i)) {\n res.push(i);\n }\n }\n return res;\n };\n }\n\n var defaultCalendar = {\n sameDay : '[Today at] LT',\n nextDay : '[Tomorrow at] LT',\n nextWeek : 'dddd [at] LT',\n lastDay : '[Yesterday at] LT',\n lastWeek : '[Last] dddd [at] LT',\n sameElse : 'L'\n };\n\n function calendar (key, mom, now) {\n var output = this._calendar[key] || this._calendar['sameElse'];\n return isFunction(output) ? output.call(mom, now) : output;\n }\n\n var defaultLongDateFormat = {\n LTS : 'h:mm:ss A',\n LT : 'h:mm A',\n L : 'MM/DD/YYYY',\n LL : 'MMMM D, YYYY',\n LLL : 'MMMM D, YYYY h:mm A',\n LLLL : 'dddd, MMMM D, YYYY h:mm A'\n };\n\n function longDateFormat (key) {\n var format = this._longDateFormat[key],\n formatUpper = this._longDateFormat[key.toUpperCase()];\n\n if (format || !formatUpper) {\n return format;\n }\n\n this._longDateFormat[key] = formatUpper.replace(/MMMM|MM|DD|dddd/g, function (val) {\n return val.slice(1);\n });\n\n return this._longDateFormat[key];\n }\n\n var defaultInvalidDate = 'Invalid date';\n\n function invalidDate () {\n return this._invalidDate;\n }\n\n var defaultOrdinal = '%d';\n var defaultDayOfMonthOrdinalParse = /\\d{1,2}/;\n\n function ordinal (number) {\n return this._ordinal.replace('%d', number);\n }\n\n var defaultRelativeTime = {\n future : 'in %s',\n past : '%s ago',\n s : 'a few seconds',\n ss : '%d seconds',\n m : 'a minute',\n mm : '%d minutes',\n h : 'an hour',\n hh : '%d hours',\n d : 'a day',\n dd : '%d days',\n M : 'a month',\n MM : '%d months',\n y : 'a year',\n yy : '%d years'\n };\n\n function relativeTime (number, withoutSuffix, string, isFuture) {\n var output = this._relativeTime[string];\n return (isFunction(output)) ?\n output(number, withoutSuffix, string, isFuture) :\n output.replace(/%d/i, number);\n }\n\n function pastFuture (diff, output) {\n var format = this._relativeTime[diff > 0 ? 'future' : 'past'];\n return isFunction(format) ? format(output) : format.replace(/%s/i, output);\n }\n\n var aliases = {};\n\n function addUnitAlias (unit, shorthand) {\n var lowerCase = unit.toLowerCase();\n aliases[lowerCase] = aliases[lowerCase + 's'] = aliases[shorthand] = unit;\n }\n\n function normalizeUnits(units) {\n return typeof units === 'string' ? aliases[units] || aliases[units.toLowerCase()] : undefined;\n }\n\n function normalizeObjectUnits(inputObject) {\n var normalizedInput = {},\n normalizedProp,\n prop;\n\n for (prop in inputObject) {\n if (hasOwnProp(inputObject, prop)) {\n normalizedProp = normalizeUnits(prop);\n if (normalizedProp) {\n normalizedInput[normalizedProp] = inputObject[prop];\n }\n }\n }\n\n return normalizedInput;\n }\n\n var priorities = {};\n\n function addUnitPriority(unit, priority) {\n priorities[unit] = priority;\n }\n\n function getPrioritizedUnits(unitsObj) {\n var units = [];\n for (var u in unitsObj) {\n units.push({unit: u, priority: priorities[u]});\n }\n units.sort(function (a, b) {\n return a.priority - b.priority;\n });\n return units;\n }\n\n function zeroFill(number, targetLength, forceSign) {\n var absNumber = '' + Math.abs(number),\n zerosToFill = targetLength - absNumber.length,\n sign = number >= 0;\n return (sign ? (forceSign ? '+' : '') : '-') +\n Math.pow(10, Math.max(0, zerosToFill)).toString().substr(1) + absNumber;\n }\n\n var formattingTokens = /(\\[[^\\[]*\\])|(\\\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g;\n\n var localFormattingTokens = /(\\[[^\\[]*\\])|(\\\\)?(LTS|LT|LL?L?L?|l{1,4})/g;\n\n var formatFunctions = {};\n\n var formatTokenFunctions = {};\n\n // token: 'M'\n // padded: ['MM', 2]\n // ordinal: 'Mo'\n // callback: function () { this.month() + 1 }\n function addFormatToken (token, padded, ordinal, callback) {\n var func = callback;\n if (typeof callback === 'string') {\n func = function () {\n return this[callback]();\n };\n }\n if (token) {\n formatTokenFunctions[token] = func;\n }\n if (padded) {\n formatTokenFunctions[padded[0]] = function () {\n return zeroFill(func.apply(this, arguments), padded[1], padded[2]);\n };\n }\n if (ordinal) {\n formatTokenFunctions[ordinal] = function () {\n return this.localeData().ordinal(func.apply(this, arguments), token);\n };\n }\n }\n\n function removeFormattingTokens(input) {\n if (input.match(/\\[[\\s\\S]/)) {\n return input.replace(/^\\[|\\]$/g, '');\n }\n return input.replace(/\\\\/g, '');\n }\n\n function makeFormatFunction(format) {\n var array = format.match(formattingTokens), i, length;\n\n for (i = 0, length = array.length; i < length; i++) {\n if (formatTokenFunctions[array[i]]) {\n array[i] = formatTokenFunctions[array[i]];\n } else {\n array[i] = removeFormattingTokens(array[i]);\n }\n }\n\n return function (mom) {\n var output = '', i;\n for (i = 0; i < length; i++) {\n output += isFunction(array[i]) ? array[i].call(mom, format) : array[i];\n }\n return output;\n };\n }\n\n // format date using native date object\n function formatMoment(m, format) {\n if (!m.isValid()) {\n return m.localeData().invalidDate();\n }\n\n format = expandFormat(format, m.localeData());\n formatFunctions[format] = formatFunctions[format] || makeFormatFunction(format);\n\n return formatFunctions[format](m);\n }\n\n function expandFormat(format, locale) {\n var i = 5;\n\n function replaceLongDateFormatTokens(input) {\n return locale.longDateFormat(input) || input;\n }\n\n localFormattingTokens.lastIndex = 0;\n while (i >= 0 && localFormattingTokens.test(format)) {\n format = format.replace(localFormattingTokens, replaceLongDateFormatTokens);\n localFormattingTokens.lastIndex = 0;\n i -= 1;\n }\n\n return format;\n }\n\n var match1 = /\\d/; // 0 - 9\n var match2 = /\\d\\d/; // 00 - 99\n var match3 = /\\d{3}/; // 000 - 999\n var match4 = /\\d{4}/; // 0000 - 9999\n var match6 = /[+-]?\\d{6}/; // -999999 - 999999\n var match1to2 = /\\d\\d?/; // 0 - 99\n var match3to4 = /\\d\\d\\d\\d?/; // 999 - 9999\n var match5to6 = /\\d\\d\\d\\d\\d\\d?/; // 99999 - 999999\n var match1to3 = /\\d{1,3}/; // 0 - 999\n var match1to4 = /\\d{1,4}/; // 0 - 9999\n var match1to6 = /[+-]?\\d{1,6}/; // -999999 - 999999\n\n var matchUnsigned = /\\d+/; // 0 - inf\n var matchSigned = /[+-]?\\d+/; // -inf - inf\n\n var matchOffset = /Z|[+-]\\d\\d:?\\d\\d/gi; // +00:00 -00:00 +0000 -0000 or Z\n var matchShortOffset = /Z|[+-]\\d\\d(?::?\\d\\d)?/gi; // +00 -00 +00:00 -00:00 +0000 -0000 or Z\n\n var matchTimestamp = /[+-]?\\d+(\\.\\d{1,3})?/; // 123456789 123456789.123\n\n // any word (or two) characters or numbers including two/three word month in arabic.\n // includes scottish gaelic two word and hyphenated months\n var matchWord = /[0-9]{0,256}['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFF07\\uFF10-\\uFFEF]{1,256}|[\\u0600-\\u06FF\\/]{1,256}(\\s*?[\\u0600-\\u06FF]{1,256}){1,2}/i;\n\n var regexes = {};\n\n function addRegexToken (token, regex, strictRegex) {\n regexes[token] = isFunction(regex) ? regex : function (isStrict, localeData) {\n return (isStrict && strictRegex) ? strictRegex : regex;\n };\n }\n\n function getParseRegexForToken (token, config) {\n if (!hasOwnProp(regexes, token)) {\n return new RegExp(unescapeFormat(token));\n }\n\n return regexes[token](config._strict, config._locale);\n }\n\n // Code from http://stackoverflow.com/questions/3561493/is-there-a-regexp-escape-function-in-javascript\n function unescapeFormat(s) {\n return regexEscape(s.replace('\\\\', '').replace(/\\\\(\\[)|\\\\(\\])|\\[([^\\]\\[]*)\\]|\\\\(.)/g, function (matched, p1, p2, p3, p4) {\n return p1 || p2 || p3 || p4;\n }));\n }\n\n function regexEscape(s) {\n return s.replace(/[-\\/\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n }\n\n var tokens = {};\n\n function addParseToken (token, callback) {\n var i, func = callback;\n if (typeof token === 'string') {\n token = [token];\n }\n if (isNumber(callback)) {\n func = function (input, array) {\n array[callback] = toInt(input);\n };\n }\n for (i = 0; i < token.length; i++) {\n tokens[token[i]] = func;\n }\n }\n\n function addWeekParseToken (token, callback) {\n addParseToken(token, function (input, array, config, token) {\n config._w = config._w || {};\n callback(input, config._w, config, token);\n });\n }\n\n function addTimeToArrayFromToken(token, input, config) {\n if (input != null && hasOwnProp(tokens, token)) {\n tokens[token](input, config._a, config, token);\n }\n }\n\n var YEAR = 0;\n var MONTH = 1;\n var DATE = 2;\n var HOUR = 3;\n var MINUTE = 4;\n var SECOND = 5;\n var MILLISECOND = 6;\n var WEEK = 7;\n var WEEKDAY = 8;\n\n // FORMATTING\n\n addFormatToken('Y', 0, 0, function () {\n var y = this.year();\n return y <= 9999 ? '' + y : '+' + y;\n });\n\n addFormatToken(0, ['YY', 2], 0, function () {\n return this.year() % 100;\n });\n\n addFormatToken(0, ['YYYY', 4], 0, 'year');\n addFormatToken(0, ['YYYYY', 5], 0, 'year');\n addFormatToken(0, ['YYYYYY', 6, true], 0, 'year');\n\n // ALIASES\n\n addUnitAlias('year', 'y');\n\n // PRIORITIES\n\n addUnitPriority('year', 1);\n\n // PARSING\n\n addRegexToken('Y', matchSigned);\n addRegexToken('YY', match1to2, match2);\n addRegexToken('YYYY', match1to4, match4);\n addRegexToken('YYYYY', match1to6, match6);\n addRegexToken('YYYYYY', match1to6, match6);\n\n addParseToken(['YYYYY', 'YYYYYY'], YEAR);\n addParseToken('YYYY', function (input, array) {\n array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);\n });\n addParseToken('YY', function (input, array) {\n array[YEAR] = hooks.parseTwoDigitYear(input);\n });\n addParseToken('Y', function (input, array) {\n array[YEAR] = parseInt(input, 10);\n });\n\n // HELPERS\n\n function daysInYear(year) {\n return isLeapYear(year) ? 366 : 365;\n }\n\n function isLeapYear(year) {\n return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;\n }\n\n // HOOKS\n\n hooks.parseTwoDigitYear = function (input) {\n return toInt(input) + (toInt(input) > 68 ? 1900 : 2000);\n };\n\n // MOMENTS\n\n var getSetYear = makeGetSet('FullYear', true);\n\n function getIsLeapYear () {\n return isLeapYear(this.year());\n }\n\n function makeGetSet (unit, keepTime) {\n return function (value) {\n if (value != null) {\n set$1(this, unit, value);\n hooks.updateOffset(this, keepTime);\n return this;\n } else {\n return get(this, unit);\n }\n };\n }\n\n function get (mom, unit) {\n return mom.isValid() ?\n mom._d['get' + (mom._isUTC ? 'UTC' : '') + unit]() : NaN;\n }\n\n function set$1 (mom, unit, value) {\n if (mom.isValid() && !isNaN(value)) {\n if (unit === 'FullYear' && isLeapYear(mom.year()) && mom.month() === 1 && mom.date() === 29) {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value, mom.month(), daysInMonth(value, mom.month()));\n }\n else {\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + unit](value);\n }\n }\n }\n\n // MOMENTS\n\n function stringGet (units) {\n units = normalizeUnits(units);\n if (isFunction(this[units])) {\n return this[units]();\n }\n return this;\n }\n\n\n function stringSet (units, value) {\n if (typeof units === 'object') {\n units = normalizeObjectUnits(units);\n var prioritized = getPrioritizedUnits(units);\n for (var i = 0; i < prioritized.length; i++) {\n this[prioritized[i].unit](units[prioritized[i].unit]);\n }\n } else {\n units = normalizeUnits(units);\n if (isFunction(this[units])) {\n return this[units](value);\n }\n }\n return this;\n }\n\n function mod(n, x) {\n return ((n % x) + x) % x;\n }\n\n var indexOf;\n\n if (Array.prototype.indexOf) {\n indexOf = Array.prototype.indexOf;\n } else {\n indexOf = function (o) {\n // I know\n var i;\n for (i = 0; i < this.length; ++i) {\n if (this[i] === o) {\n return i;\n }\n }\n return -1;\n };\n }\n\n function daysInMonth(year, month) {\n if (isNaN(year) || isNaN(month)) {\n return NaN;\n }\n var modMonth = mod(month, 12);\n year += (month - modMonth) / 12;\n return modMonth === 1 ? (isLeapYear(year) ? 29 : 28) : (31 - modMonth % 7 % 2);\n }\n\n // FORMATTING\n\n addFormatToken('M', ['MM', 2], 'Mo', function () {\n return this.month() + 1;\n });\n\n addFormatToken('MMM', 0, 0, function (format) {\n return this.localeData().monthsShort(this, format);\n });\n\n addFormatToken('MMMM', 0, 0, function (format) {\n return this.localeData().months(this, format);\n });\n\n // ALIASES\n\n addUnitAlias('month', 'M');\n\n // PRIORITY\n\n addUnitPriority('month', 8);\n\n // PARSING\n\n addRegexToken('M', match1to2);\n addRegexToken('MM', match1to2, match2);\n addRegexToken('MMM', function (isStrict, locale) {\n return locale.monthsShortRegex(isStrict);\n });\n addRegexToken('MMMM', function (isStrict, locale) {\n return locale.monthsRegex(isStrict);\n });\n\n addParseToken(['M', 'MM'], function (input, array) {\n array[MONTH] = toInt(input) - 1;\n });\n\n addParseToken(['MMM', 'MMMM'], function (input, array, config, token) {\n var month = config._locale.monthsParse(input, token, config._strict);\n // if we didn't find a month name, mark the date as invalid.\n if (month != null) {\n array[MONTH] = month;\n } else {\n getParsingFlags(config).invalidMonth = input;\n }\n });\n\n // LOCALES\n\n var MONTHS_IN_FORMAT = /D[oD]?(\\[[^\\[\\]]*\\]|\\s)+MMMM?/;\n var defaultLocaleMonths = 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_');\n function localeMonths (m, format) {\n if (!m) {\n return isArray(this._months) ? this._months :\n this._months['standalone'];\n }\n return isArray(this._months) ? this._months[m.month()] :\n this._months[(this._months.isFormat || MONTHS_IN_FORMAT).test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n var defaultLocaleMonthsShort = 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_');\n function localeMonthsShort (m, format) {\n if (!m) {\n return isArray(this._monthsShort) ? this._monthsShort :\n this._monthsShort['standalone'];\n }\n return isArray(this._monthsShort) ? this._monthsShort[m.month()] :\n this._monthsShort[MONTHS_IN_FORMAT.test(format) ? 'format' : 'standalone'][m.month()];\n }\n\n function handleStrictParse(monthName, format, strict) {\n var i, ii, mom, llc = monthName.toLocaleLowerCase();\n if (!this._monthsParse) {\n // this is not used\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n for (i = 0; i < 12; ++i) {\n mom = createUTC([2000, i]);\n this._shortMonthsParse[i] = this.monthsShort(mom, '').toLocaleLowerCase();\n this._longMonthsParse[i] = this.months(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'MMM') {\n ii = indexOf.call(this._shortMonthsParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._longMonthsParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._longMonthsParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._shortMonthsParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeMonthsParse (monthName, format, strict) {\n var i, mom, regex;\n\n if (this._monthsParseExact) {\n return handleStrictParse.call(this, monthName, format, strict);\n }\n\n if (!this._monthsParse) {\n this._monthsParse = [];\n this._longMonthsParse = [];\n this._shortMonthsParse = [];\n }\n\n // TODO: add sorting\n // Sorting makes sure if one month (or abbr) is a prefix of another\n // see sorting in computeMonthsParse\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n if (strict && !this._longMonthsParse[i]) {\n this._longMonthsParse[i] = new RegExp('^' + this.months(mom, '').replace('.', '') + '$', 'i');\n this._shortMonthsParse[i] = new RegExp('^' + this.monthsShort(mom, '').replace('.', '') + '$', 'i');\n }\n if (!strict && !this._monthsParse[i]) {\n regex = '^' + this.months(mom, '') + '|^' + this.monthsShort(mom, '');\n this._monthsParse[i] = new RegExp(regex.replace('.', ''), 'i');\n }\n // test the regex\n if (strict && format === 'MMMM' && this._longMonthsParse[i].test(monthName)) {\n return i;\n } else if (strict && format === 'MMM' && this._shortMonthsParse[i].test(monthName)) {\n return i;\n } else if (!strict && this._monthsParse[i].test(monthName)) {\n return i;\n }\n }\n }\n\n // MOMENTS\n\n function setMonth (mom, value) {\n var dayOfMonth;\n\n if (!mom.isValid()) {\n // No op\n return mom;\n }\n\n if (typeof value === 'string') {\n if (/^\\d+$/.test(value)) {\n value = toInt(value);\n } else {\n value = mom.localeData().monthsParse(value);\n // TODO: Another silent failure?\n if (!isNumber(value)) {\n return mom;\n }\n }\n }\n\n dayOfMonth = Math.min(mom.date(), daysInMonth(mom.year(), value));\n mom._d['set' + (mom._isUTC ? 'UTC' : '') + 'Month'](value, dayOfMonth);\n return mom;\n }\n\n function getSetMonth (value) {\n if (value != null) {\n setMonth(this, value);\n hooks.updateOffset(this, true);\n return this;\n } else {\n return get(this, 'Month');\n }\n }\n\n function getDaysInMonth () {\n return daysInMonth(this.year(), this.month());\n }\n\n var defaultMonthsShortRegex = matchWord;\n function monthsShortRegex (isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n if (isStrict) {\n return this._monthsShortStrictRegex;\n } else {\n return this._monthsShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsShortRegex')) {\n this._monthsShortRegex = defaultMonthsShortRegex;\n }\n return this._monthsShortStrictRegex && isStrict ?\n this._monthsShortStrictRegex : this._monthsShortRegex;\n }\n }\n\n var defaultMonthsRegex = matchWord;\n function monthsRegex (isStrict) {\n if (this._monthsParseExact) {\n if (!hasOwnProp(this, '_monthsRegex')) {\n computeMonthsParse.call(this);\n }\n if (isStrict) {\n return this._monthsStrictRegex;\n } else {\n return this._monthsRegex;\n }\n } else {\n if (!hasOwnProp(this, '_monthsRegex')) {\n this._monthsRegex = defaultMonthsRegex;\n }\n return this._monthsStrictRegex && isStrict ?\n this._monthsStrictRegex : this._monthsRegex;\n }\n }\n\n function computeMonthsParse () {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var shortPieces = [], longPieces = [], mixedPieces = [],\n i, mom;\n for (i = 0; i < 12; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, i]);\n shortPieces.push(this.monthsShort(mom, ''));\n longPieces.push(this.months(mom, ''));\n mixedPieces.push(this.months(mom, ''));\n mixedPieces.push(this.monthsShort(mom, ''));\n }\n // Sorting makes sure if one month (or abbr) is a prefix of another it\n // will match the longer piece.\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n for (i = 0; i < 12; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n }\n for (i = 0; i < 24; i++) {\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._monthsRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._monthsShortRegex = this._monthsRegex;\n this._monthsStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._monthsShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n }\n\n function createDate (y, m, d, h, M, s, ms) {\n // can't just apply() to create a date:\n // https://stackoverflow.com/q/181348\n var date;\n // the date constructor remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n date = new Date(y + 400, m, d, h, M, s, ms);\n if (isFinite(date.getFullYear())) {\n date.setFullYear(y);\n }\n } else {\n date = new Date(y, m, d, h, M, s, ms);\n }\n\n return date;\n }\n\n function createUTCDate (y) {\n var date;\n // the Date.UTC function remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n var args = Array.prototype.slice.call(arguments);\n // preserve leap years using a full 400 year cycle, then reset\n args[0] = y + 400;\n date = new Date(Date.UTC.apply(null, args));\n if (isFinite(date.getUTCFullYear())) {\n date.setUTCFullYear(y);\n }\n } else {\n date = new Date(Date.UTC.apply(null, arguments));\n }\n\n return date;\n }\n\n // start-of-first-week - start-of-year\n function firstWeekOffset(year, dow, doy) {\n var // first-week day -- which january is always in the first week (4 for iso, 1 for other)\n fwd = 7 + dow - doy,\n // first-week day local weekday -- which local weekday is fwd\n fwdlw = (7 + createUTCDate(year, 0, fwd).getUTCDay() - dow) % 7;\n\n return -fwdlw + fwd - 1;\n }\n\n // https://en.wikipedia.org/wiki/ISO_week_date#Calculating_a_date_given_the_year.2C_week_number_and_weekday\n function dayOfYearFromWeeks(year, week, weekday, dow, doy) {\n var localWeekday = (7 + weekday - dow) % 7,\n weekOffset = firstWeekOffset(year, dow, doy),\n dayOfYear = 1 + 7 * (week - 1) + localWeekday + weekOffset,\n resYear, resDayOfYear;\n\n if (dayOfYear <= 0) {\n resYear = year - 1;\n resDayOfYear = daysInYear(resYear) + dayOfYear;\n } else if (dayOfYear > daysInYear(year)) {\n resYear = year + 1;\n resDayOfYear = dayOfYear - daysInYear(year);\n } else {\n resYear = year;\n resDayOfYear = dayOfYear;\n }\n\n return {\n year: resYear,\n dayOfYear: resDayOfYear\n };\n }\n\n function weekOfYear(mom, dow, doy) {\n var weekOffset = firstWeekOffset(mom.year(), dow, doy),\n week = Math.floor((mom.dayOfYear() - weekOffset - 1) / 7) + 1,\n resWeek, resYear;\n\n if (week < 1) {\n resYear = mom.year() - 1;\n resWeek = week + weeksInYear(resYear, dow, doy);\n } else if (week > weeksInYear(mom.year(), dow, doy)) {\n resWeek = week - weeksInYear(mom.year(), dow, doy);\n resYear = mom.year() + 1;\n } else {\n resYear = mom.year();\n resWeek = week;\n }\n\n return {\n week: resWeek,\n year: resYear\n };\n }\n\n function weeksInYear(year, dow, doy) {\n var weekOffset = firstWeekOffset(year, dow, doy),\n weekOffsetNext = firstWeekOffset(year + 1, dow, doy);\n return (daysInYear(year) - weekOffset + weekOffsetNext) / 7;\n }\n\n // FORMATTING\n\n addFormatToken('w', ['ww', 2], 'wo', 'week');\n addFormatToken('W', ['WW', 2], 'Wo', 'isoWeek');\n\n // ALIASES\n\n addUnitAlias('week', 'w');\n addUnitAlias('isoWeek', 'W');\n\n // PRIORITIES\n\n addUnitPriority('week', 5);\n addUnitPriority('isoWeek', 5);\n\n // PARSING\n\n addRegexToken('w', match1to2);\n addRegexToken('ww', match1to2, match2);\n addRegexToken('W', match1to2);\n addRegexToken('WW', match1to2, match2);\n\n addWeekParseToken(['w', 'ww', 'W', 'WW'], function (input, week, config, token) {\n week[token.substr(0, 1)] = toInt(input);\n });\n\n // HELPERS\n\n // LOCALES\n\n function localeWeek (mom) {\n return weekOfYear(mom, this._week.dow, this._week.doy).week;\n }\n\n var defaultLocaleWeek = {\n dow : 0, // Sunday is the first day of the week.\n doy : 6 // The week that contains Jan 6th is the first week of the year.\n };\n\n function localeFirstDayOfWeek () {\n return this._week.dow;\n }\n\n function localeFirstDayOfYear () {\n return this._week.doy;\n }\n\n // MOMENTS\n\n function getSetWeek (input) {\n var week = this.localeData().week(this);\n return input == null ? week : this.add((input - week) * 7, 'd');\n }\n\n function getSetISOWeek (input) {\n var week = weekOfYear(this, 1, 4).week;\n return input == null ? week : this.add((input - week) * 7, 'd');\n }\n\n // FORMATTING\n\n addFormatToken('d', 0, 'do', 'day');\n\n addFormatToken('dd', 0, 0, function (format) {\n return this.localeData().weekdaysMin(this, format);\n });\n\n addFormatToken('ddd', 0, 0, function (format) {\n return this.localeData().weekdaysShort(this, format);\n });\n\n addFormatToken('dddd', 0, 0, function (format) {\n return this.localeData().weekdays(this, format);\n });\n\n addFormatToken('e', 0, 0, 'weekday');\n addFormatToken('E', 0, 0, 'isoWeekday');\n\n // ALIASES\n\n addUnitAlias('day', 'd');\n addUnitAlias('weekday', 'e');\n addUnitAlias('isoWeekday', 'E');\n\n // PRIORITY\n addUnitPriority('day', 11);\n addUnitPriority('weekday', 11);\n addUnitPriority('isoWeekday', 11);\n\n // PARSING\n\n addRegexToken('d', match1to2);\n addRegexToken('e', match1to2);\n addRegexToken('E', match1to2);\n addRegexToken('dd', function (isStrict, locale) {\n return locale.weekdaysMinRegex(isStrict);\n });\n addRegexToken('ddd', function (isStrict, locale) {\n return locale.weekdaysShortRegex(isStrict);\n });\n addRegexToken('dddd', function (isStrict, locale) {\n return locale.weekdaysRegex(isStrict);\n });\n\n addWeekParseToken(['dd', 'ddd', 'dddd'], function (input, week, config, token) {\n var weekday = config._locale.weekdaysParse(input, token, config._strict);\n // if we didn't get a weekday name, mark the date as invalid\n if (weekday != null) {\n week.d = weekday;\n } else {\n getParsingFlags(config).invalidWeekday = input;\n }\n });\n\n addWeekParseToken(['d', 'e', 'E'], function (input, week, config, token) {\n week[token] = toInt(input);\n });\n\n // HELPERS\n\n function parseWeekday(input, locale) {\n if (typeof input !== 'string') {\n return input;\n }\n\n if (!isNaN(input)) {\n return parseInt(input, 10);\n }\n\n input = locale.weekdaysParse(input);\n if (typeof input === 'number') {\n return input;\n }\n\n return null;\n }\n\n function parseIsoWeekday(input, locale) {\n if (typeof input === 'string') {\n return locale.weekdaysParse(input) % 7 || 7;\n }\n return isNaN(input) ? null : input;\n }\n\n // LOCALES\n function shiftWeekdays (ws, n) {\n return ws.slice(n, 7).concat(ws.slice(0, n));\n }\n\n var defaultLocaleWeekdays = 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_');\n function localeWeekdays (m, format) {\n var weekdays = isArray(this._weekdays) ? this._weekdays :\n this._weekdays[(m && m !== true && this._weekdays.isFormat.test(format)) ? 'format' : 'standalone'];\n return (m === true) ? shiftWeekdays(weekdays, this._week.dow)\n : (m) ? weekdays[m.day()] : weekdays;\n }\n\n var defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_');\n function localeWeekdaysShort (m) {\n return (m === true) ? shiftWeekdays(this._weekdaysShort, this._week.dow)\n : (m) ? this._weekdaysShort[m.day()] : this._weekdaysShort;\n }\n\n var defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_');\n function localeWeekdaysMin (m) {\n return (m === true) ? shiftWeekdays(this._weekdaysMin, this._week.dow)\n : (m) ? this._weekdaysMin[m.day()] : this._weekdaysMin;\n }\n\n function handleStrictParse$1(weekdayName, format, strict) {\n var i, ii, mom, llc = weekdayName.toLocaleLowerCase();\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._minWeekdaysParse = [];\n\n for (i = 0; i < 7; ++i) {\n mom = createUTC([2000, 1]).day(i);\n this._minWeekdaysParse[i] = this.weekdaysMin(mom, '').toLocaleLowerCase();\n this._shortWeekdaysParse[i] = this.weekdaysShort(mom, '').toLocaleLowerCase();\n this._weekdaysParse[i] = this.weekdays(mom, '').toLocaleLowerCase();\n }\n }\n\n if (strict) {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n } else {\n if (format === 'dddd') {\n ii = indexOf.call(this._weekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else if (format === 'ddd') {\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._weekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._minWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n } else {\n ii = indexOf.call(this._minWeekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._weekdaysParse, llc);\n if (ii !== -1) {\n return ii;\n }\n ii = indexOf.call(this._shortWeekdaysParse, llc);\n return ii !== -1 ? ii : null;\n }\n }\n }\n\n function localeWeekdaysParse (weekdayName, format, strict) {\n var i, mom, regex;\n\n if (this._weekdaysParseExact) {\n return handleStrictParse$1.call(this, weekdayName, format, strict);\n }\n\n if (!this._weekdaysParse) {\n this._weekdaysParse = [];\n this._minWeekdaysParse = [];\n this._shortWeekdaysParse = [];\n this._fullWeekdaysParse = [];\n }\n\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n\n mom = createUTC([2000, 1]).day(i);\n if (strict && !this._fullWeekdaysParse[i]) {\n this._fullWeekdaysParse[i] = new RegExp('^' + this.weekdays(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._shortWeekdaysParse[i] = new RegExp('^' + this.weekdaysShort(mom, '').replace('.', '\\\\.?') + '$', 'i');\n this._minWeekdaysParse[i] = new RegExp('^' + this.weekdaysMin(mom, '').replace('.', '\\\\.?') + '$', 'i');\n }\n if (!this._weekdaysParse[i]) {\n regex = '^' + this.weekdays(mom, '') + '|^' + this.weekdaysShort(mom, '') + '|^' + this.weekdaysMin(mom, '');\n this._weekdaysParse[i] = new RegExp(regex.replace('.', ''), 'i');\n }\n // test the regex\n if (strict && format === 'dddd' && this._fullWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'ddd' && this._shortWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (strict && format === 'dd' && this._minWeekdaysParse[i].test(weekdayName)) {\n return i;\n } else if (!strict && this._weekdaysParse[i].test(weekdayName)) {\n return i;\n }\n }\n }\n\n // MOMENTS\n\n function getSetDayOfWeek (input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n var day = this._isUTC ? this._d.getUTCDay() : this._d.getDay();\n if (input != null) {\n input = parseWeekday(input, this.localeData());\n return this.add(input - day, 'd');\n } else {\n return day;\n }\n }\n\n function getSetLocaleDayOfWeek (input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n var weekday = (this.day() + 7 - this.localeData()._week.dow) % 7;\n return input == null ? weekday : this.add(input - weekday, 'd');\n }\n\n function getSetISODayOfWeek (input) {\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n\n // behaves the same as moment#day except\n // as a getter, returns 7 instead of 0 (1-7 range instead of 0-6)\n // as a setter, sunday should belong to the previous week.\n\n if (input != null) {\n var weekday = parseIsoWeekday(input, this.localeData());\n return this.day(this.day() % 7 ? weekday : weekday - 7);\n } else {\n return this.day() || 7;\n }\n }\n\n var defaultWeekdaysRegex = matchWord;\n function weekdaysRegex (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n if (isStrict) {\n return this._weekdaysStrictRegex;\n } else {\n return this._weekdaysRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n this._weekdaysRegex = defaultWeekdaysRegex;\n }\n return this._weekdaysStrictRegex && isStrict ?\n this._weekdaysStrictRegex : this._weekdaysRegex;\n }\n }\n\n var defaultWeekdaysShortRegex = matchWord;\n function weekdaysShortRegex (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n if (isStrict) {\n return this._weekdaysShortStrictRegex;\n } else {\n return this._weekdaysShortRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysShortRegex')) {\n this._weekdaysShortRegex = defaultWeekdaysShortRegex;\n }\n return this._weekdaysShortStrictRegex && isStrict ?\n this._weekdaysShortStrictRegex : this._weekdaysShortRegex;\n }\n }\n\n var defaultWeekdaysMinRegex = matchWord;\n function weekdaysMinRegex (isStrict) {\n if (this._weekdaysParseExact) {\n if (!hasOwnProp(this, '_weekdaysRegex')) {\n computeWeekdaysParse.call(this);\n }\n if (isStrict) {\n return this._weekdaysMinStrictRegex;\n } else {\n return this._weekdaysMinRegex;\n }\n } else {\n if (!hasOwnProp(this, '_weekdaysMinRegex')) {\n this._weekdaysMinRegex = defaultWeekdaysMinRegex;\n }\n return this._weekdaysMinStrictRegex && isStrict ?\n this._weekdaysMinStrictRegex : this._weekdaysMinRegex;\n }\n }\n\n\n function computeWeekdaysParse () {\n function cmpLenRev(a, b) {\n return b.length - a.length;\n }\n\n var minPieces = [], shortPieces = [], longPieces = [], mixedPieces = [],\n i, mom, minp, shortp, longp;\n for (i = 0; i < 7; i++) {\n // make the regex if we don't have it already\n mom = createUTC([2000, 1]).day(i);\n minp = this.weekdaysMin(mom, '');\n shortp = this.weekdaysShort(mom, '');\n longp = this.weekdays(mom, '');\n minPieces.push(minp);\n shortPieces.push(shortp);\n longPieces.push(longp);\n mixedPieces.push(minp);\n mixedPieces.push(shortp);\n mixedPieces.push(longp);\n }\n // Sorting makes sure if one weekday (or abbr) is a prefix of another it\n // will match the longer piece.\n minPieces.sort(cmpLenRev);\n shortPieces.sort(cmpLenRev);\n longPieces.sort(cmpLenRev);\n mixedPieces.sort(cmpLenRev);\n for (i = 0; i < 7; i++) {\n shortPieces[i] = regexEscape(shortPieces[i]);\n longPieces[i] = regexEscape(longPieces[i]);\n mixedPieces[i] = regexEscape(mixedPieces[i]);\n }\n\n this._weekdaysRegex = new RegExp('^(' + mixedPieces.join('|') + ')', 'i');\n this._weekdaysShortRegex = this._weekdaysRegex;\n this._weekdaysMinRegex = this._weekdaysRegex;\n\n this._weekdaysStrictRegex = new RegExp('^(' + longPieces.join('|') + ')', 'i');\n this._weekdaysShortStrictRegex = new RegExp('^(' + shortPieces.join('|') + ')', 'i');\n this._weekdaysMinStrictRegex = new RegExp('^(' + minPieces.join('|') + ')', 'i');\n }\n\n // FORMATTING\n\n function hFormat() {\n return this.hours() % 12 || 12;\n }\n\n function kFormat() {\n return this.hours() || 24;\n }\n\n addFormatToken('H', ['HH', 2], 0, 'hour');\n addFormatToken('h', ['hh', 2], 0, hFormat);\n addFormatToken('k', ['kk', 2], 0, kFormat);\n\n addFormatToken('hmm', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2);\n });\n\n addFormatToken('hmmss', 0, 0, function () {\n return '' + hFormat.apply(this) + zeroFill(this.minutes(), 2) +\n zeroFill(this.seconds(), 2);\n });\n\n addFormatToken('Hmm', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2);\n });\n\n addFormatToken('Hmmss', 0, 0, function () {\n return '' + this.hours() + zeroFill(this.minutes(), 2) +\n zeroFill(this.seconds(), 2);\n });\n\n function meridiem (token, lowercase) {\n addFormatToken(token, 0, 0, function () {\n return this.localeData().meridiem(this.hours(), this.minutes(), lowercase);\n });\n }\n\n meridiem('a', true);\n meridiem('A', false);\n\n // ALIASES\n\n addUnitAlias('hour', 'h');\n\n // PRIORITY\n addUnitPriority('hour', 13);\n\n // PARSING\n\n function matchMeridiem (isStrict, locale) {\n return locale._meridiemParse;\n }\n\n addRegexToken('a', matchMeridiem);\n addRegexToken('A', matchMeridiem);\n addRegexToken('H', match1to2);\n addRegexToken('h', match1to2);\n addRegexToken('k', match1to2);\n addRegexToken('HH', match1to2, match2);\n addRegexToken('hh', match1to2, match2);\n addRegexToken('kk', match1to2, match2);\n\n addRegexToken('hmm', match3to4);\n addRegexToken('hmmss', match5to6);\n addRegexToken('Hmm', match3to4);\n addRegexToken('Hmmss', match5to6);\n\n addParseToken(['H', 'HH'], HOUR);\n addParseToken(['k', 'kk'], function (input, array, config) {\n var kInput = toInt(input);\n array[HOUR] = kInput === 24 ? 0 : kInput;\n });\n addParseToken(['a', 'A'], function (input, array, config) {\n config._isPm = config._locale.isPM(input);\n config._meridiem = input;\n });\n addParseToken(['h', 'hh'], function (input, array, config) {\n array[HOUR] = toInt(input);\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n getParsingFlags(config).bigHour = true;\n });\n addParseToken('Hmm', function (input, array, config) {\n var pos = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos));\n array[MINUTE] = toInt(input.substr(pos));\n });\n addParseToken('Hmmss', function (input, array, config) {\n var pos1 = input.length - 4;\n var pos2 = input.length - 2;\n array[HOUR] = toInt(input.substr(0, pos1));\n array[MINUTE] = toInt(input.substr(pos1, 2));\n array[SECOND] = toInt(input.substr(pos2));\n });\n\n // LOCALES\n\n function localeIsPM (input) {\n // IE8 Quirks Mode & IE7 Standards Mode do not allow accessing strings like arrays\n // Using charAt should be more compatible.\n return ((input + '').toLowerCase().charAt(0) === 'p');\n }\n\n var defaultLocaleMeridiemParse = /[ap]\\.?m?\\.?/i;\n function localeMeridiem (hours, minutes, isLower) {\n if (hours > 11) {\n return isLower ? 'pm' : 'PM';\n } else {\n return isLower ? 'am' : 'AM';\n }\n }\n\n\n // MOMENTS\n\n // Setting the hour should keep the time, because the user explicitly\n // specified which hour they want. So trying to maintain the same hour (in\n // a new timezone) makes sense. Adding/subtracting hours does not follow\n // this rule.\n var getSetHour = makeGetSet('Hours', true);\n\n var baseConfig = {\n calendar: defaultCalendar,\n longDateFormat: defaultLongDateFormat,\n invalidDate: defaultInvalidDate,\n ordinal: defaultOrdinal,\n dayOfMonthOrdinalParse: defaultDayOfMonthOrdinalParse,\n relativeTime: defaultRelativeTime,\n\n months: defaultLocaleMonths,\n monthsShort: defaultLocaleMonthsShort,\n\n week: defaultLocaleWeek,\n\n weekdays: defaultLocaleWeekdays,\n weekdaysMin: defaultLocaleWeekdaysMin,\n weekdaysShort: defaultLocaleWeekdaysShort,\n\n meridiemParse: defaultLocaleMeridiemParse\n };\n\n // internal storage for locale config files\n var locales = {};\n var localeFamilies = {};\n var globalLocale;\n\n function normalizeLocale(key) {\n return key ? key.toLowerCase().replace('_', '-') : key;\n }\n\n // pick the locale from the array\n // try ['en-au', 'en-gb'] as 'en-au', 'en-gb', 'en', as in move through the list trying each\n // substring from most specific to least, but move to the next array item if it's a more specific variant than the current root\n function chooseLocale(names) {\n var i = 0, j, next, locale, split;\n\n while (i < names.length) {\n split = normalizeLocale(names[i]).split('-');\n j = split.length;\n next = normalizeLocale(names[i + 1]);\n next = next ? next.split('-') : null;\n while (j > 0) {\n locale = loadLocale(split.slice(0, j).join('-'));\n if (locale) {\n return locale;\n }\n if (next && next.length >= j && compareArrays(split, next, true) >= j - 1) {\n //the next array item is better than a shallower substring of this one\n break;\n }\n j--;\n }\n i++;\n }\n return globalLocale;\n }\n\n function loadLocale(name) {\n var oldLocale = null;\n // TODO: Find a better way to register and load all the locales in Node\n if (!locales[name] && (typeof module !== 'undefined') &&\n module && module.exports) {\n try {\n oldLocale = globalLocale._abbr;\n var aliasedRequire = require;\n aliasedRequire('./locale/' + name);\n getSetGlobalLocale(oldLocale);\n } catch (e) {}\n }\n return locales[name];\n }\n\n // This function will load locale and then set the global locale. If\n // no arguments are passed in, it will simply return the current global\n // locale key.\n function getSetGlobalLocale (key, values) {\n var data;\n if (key) {\n if (isUndefined(values)) {\n data = getLocale(key);\n }\n else {\n data = defineLocale(key, values);\n }\n\n if (data) {\n // moment.duration._locale = moment._locale = data;\n globalLocale = data;\n }\n else {\n if ((typeof console !== 'undefined') && console.warn) {\n //warn user if arguments are passed but the locale could not be set\n console.warn('Locale ' + key + ' not found. Did you forget to load it?');\n }\n }\n }\n\n return globalLocale._abbr;\n }\n\n function defineLocale (name, config) {\n if (config !== null) {\n var locale, parentConfig = baseConfig;\n config.abbr = name;\n if (locales[name] != null) {\n deprecateSimple('defineLocaleOverride',\n 'use moment.updateLocale(localeName, config) to change ' +\n 'an existing locale. moment.defineLocale(localeName, ' +\n 'config) should only be used for creating a new locale ' +\n 'See http://momentjs.com/guides/#/warnings/define-locale/ for more info.');\n parentConfig = locales[name]._config;\n } else if (config.parentLocale != null) {\n if (locales[config.parentLocale] != null) {\n parentConfig = locales[config.parentLocale]._config;\n } else {\n locale = loadLocale(config.parentLocale);\n if (locale != null) {\n parentConfig = locale._config;\n } else {\n if (!localeFamilies[config.parentLocale]) {\n localeFamilies[config.parentLocale] = [];\n }\n localeFamilies[config.parentLocale].push({\n name: name,\n config: config\n });\n return null;\n }\n }\n }\n locales[name] = new Locale(mergeConfigs(parentConfig, config));\n\n if (localeFamilies[name]) {\n localeFamilies[name].forEach(function (x) {\n defineLocale(x.name, x.config);\n });\n }\n\n // backwards compat for now: also set the locale\n // make sure we set the locale AFTER all child locales have been\n // created, so we won't end up with the child locale set.\n getSetGlobalLocale(name);\n\n\n return locales[name];\n } else {\n // useful for testing\n delete locales[name];\n return null;\n }\n }\n\n function updateLocale(name, config) {\n if (config != null) {\n var locale, tmpLocale, parentConfig = baseConfig;\n // MERGE\n tmpLocale = loadLocale(name);\n if (tmpLocale != null) {\n parentConfig = tmpLocale._config;\n }\n config = mergeConfigs(parentConfig, config);\n locale = new Locale(config);\n locale.parentLocale = locales[name];\n locales[name] = locale;\n\n // backwards compat for now: also set the locale\n getSetGlobalLocale(name);\n } else {\n // pass null for config to unupdate, useful for tests\n if (locales[name] != null) {\n if (locales[name].parentLocale != null) {\n locales[name] = locales[name].parentLocale;\n } else if (locales[name] != null) {\n delete locales[name];\n }\n }\n }\n return locales[name];\n }\n\n // returns locale data\n function getLocale (key) {\n var locale;\n\n if (key && key._locale && key._locale._abbr) {\n key = key._locale._abbr;\n }\n\n if (!key) {\n return globalLocale;\n }\n\n if (!isArray(key)) {\n //short-circuit everything else\n locale = loadLocale(key);\n if (locale) {\n return locale;\n }\n key = [key];\n }\n\n return chooseLocale(key);\n }\n\n function listLocales() {\n return keys(locales);\n }\n\n function checkOverflow (m) {\n var overflow;\n var a = m._a;\n\n if (a && getParsingFlags(m).overflow === -2) {\n overflow =\n a[MONTH] < 0 || a[MONTH] > 11 ? MONTH :\n a[DATE] < 1 || a[DATE] > daysInMonth(a[YEAR], a[MONTH]) ? DATE :\n a[HOUR] < 0 || a[HOUR] > 24 || (a[HOUR] === 24 && (a[MINUTE] !== 0 || a[SECOND] !== 0 || a[MILLISECOND] !== 0)) ? HOUR :\n a[MINUTE] < 0 || a[MINUTE] > 59 ? MINUTE :\n a[SECOND] < 0 || a[SECOND] > 59 ? SECOND :\n a[MILLISECOND] < 0 || a[MILLISECOND] > 999 ? MILLISECOND :\n -1;\n\n if (getParsingFlags(m)._overflowDayOfYear && (overflow < YEAR || overflow > DATE)) {\n overflow = DATE;\n }\n if (getParsingFlags(m)._overflowWeeks && overflow === -1) {\n overflow = WEEK;\n }\n if (getParsingFlags(m)._overflowWeekday && overflow === -1) {\n overflow = WEEKDAY;\n }\n\n getParsingFlags(m).overflow = overflow;\n }\n\n return m;\n }\n\n // Pick the first defined of two or three arguments.\n function defaults(a, b, c) {\n if (a != null) {\n return a;\n }\n if (b != null) {\n return b;\n }\n return c;\n }\n\n function currentDateArray(config) {\n // hooks is actually the exported moment object\n var nowValue = new Date(hooks.now());\n if (config._useUTC) {\n return [nowValue.getUTCFullYear(), nowValue.getUTCMonth(), nowValue.getUTCDate()];\n }\n return [nowValue.getFullYear(), nowValue.getMonth(), nowValue.getDate()];\n }\n\n // convert an array to a date.\n // the array should mirror the parameters below\n // note: all values past the year are optional and will default to the lowest possible value.\n // [year, month, day , hour, minute, second, millisecond]\n function configFromArray (config) {\n var i, date, input = [], currentDate, expectedWeekday, yearToUse;\n\n if (config._d) {\n return;\n }\n\n currentDate = currentDateArray(config);\n\n //compute day of the year from weeks and weekdays\n if (config._w && config._a[DATE] == null && config._a[MONTH] == null) {\n dayOfYearFromWeekInfo(config);\n }\n\n //if the day of the year is set, figure out what it is\n if (config._dayOfYear != null) {\n yearToUse = defaults(config._a[YEAR], currentDate[YEAR]);\n\n if (config._dayOfYear > daysInYear(yearToUse) || config._dayOfYear === 0) {\n getParsingFlags(config)._overflowDayOfYear = true;\n }\n\n date = createUTCDate(yearToUse, 0, config._dayOfYear);\n config._a[MONTH] = date.getUTCMonth();\n config._a[DATE] = date.getUTCDate();\n }\n\n // Default to current date.\n // * if no year, month, day of month are given, default to today\n // * if day of month is given, default month and year\n // * if month is given, default only year\n // * if year is given, don't default anything\n for (i = 0; i < 3 && config._a[i] == null; ++i) {\n config._a[i] = input[i] = currentDate[i];\n }\n\n // Zero out whatever was not defaulted, including time\n for (; i < 7; i++) {\n config._a[i] = input[i] = (config._a[i] == null) ? (i === 2 ? 1 : 0) : config._a[i];\n }\n\n // Check for 24:00:00.000\n if (config._a[HOUR] === 24 &&\n config._a[MINUTE] === 0 &&\n config._a[SECOND] === 0 &&\n config._a[MILLISECOND] === 0) {\n config._nextDay = true;\n config._a[HOUR] = 0;\n }\n\n config._d = (config._useUTC ? createUTCDate : createDate).apply(null, input);\n expectedWeekday = config._useUTC ? config._d.getUTCDay() : config._d.getDay();\n\n // Apply timezone offset from input. The actual utcOffset can be changed\n // with parseZone.\n if (config._tzm != null) {\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n }\n\n if (config._nextDay) {\n config._a[HOUR] = 24;\n }\n\n // check for mismatching day of week\n if (config._w && typeof config._w.d !== 'undefined' && config._w.d !== expectedWeekday) {\n getParsingFlags(config).weekdayMismatch = true;\n }\n }\n\n function dayOfYearFromWeekInfo(config) {\n var w, weekYear, week, weekday, dow, doy, temp, weekdayOverflow;\n\n w = config._w;\n if (w.GG != null || w.W != null || w.E != null) {\n dow = 1;\n doy = 4;\n\n // TODO: We need to take the current isoWeekYear, but that depends on\n // how we interpret now (local, utc, fixed offset). So create\n // a now version of current config (take local/utc/offset flags, and\n // create now).\n weekYear = defaults(w.GG, config._a[YEAR], weekOfYear(createLocal(), 1, 4).year);\n week = defaults(w.W, 1);\n weekday = defaults(w.E, 1);\n if (weekday < 1 || weekday > 7) {\n weekdayOverflow = true;\n }\n } else {\n dow = config._locale._week.dow;\n doy = config._locale._week.doy;\n\n var curWeek = weekOfYear(createLocal(), dow, doy);\n\n weekYear = defaults(w.gg, config._a[YEAR], curWeek.year);\n\n // Default to current week.\n week = defaults(w.w, curWeek.week);\n\n if (w.d != null) {\n // weekday -- low day numbers are considered next week\n weekday = w.d;\n if (weekday < 0 || weekday > 6) {\n weekdayOverflow = true;\n }\n } else if (w.e != null) {\n // local weekday -- counting starts from beginning of week\n weekday = w.e + dow;\n if (w.e < 0 || w.e > 6) {\n weekdayOverflow = true;\n }\n } else {\n // default to beginning of week\n weekday = dow;\n }\n }\n if (week < 1 || week > weeksInYear(weekYear, dow, doy)) {\n getParsingFlags(config)._overflowWeeks = true;\n } else if (weekdayOverflow != null) {\n getParsingFlags(config)._overflowWeekday = true;\n } else {\n temp = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy);\n config._a[YEAR] = temp.year;\n config._dayOfYear = temp.dayOfYear;\n }\n }\n\n // iso 8601 regex\n // 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)\n var extendedIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})-(?:\\d\\d-\\d\\d|W\\d\\d-\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?::\\d\\d(?::\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n var basicIsoRegex = /^\\s*((?:[+-]\\d{6}|\\d{4})(?:\\d\\d\\d\\d|W\\d\\d\\d|W\\d\\d|\\d\\d\\d|\\d\\d))(?:(T| )(\\d\\d(?:\\d\\d(?:\\d\\d(?:[.,]\\d+)?)?)?)([\\+\\-]\\d\\d(?::?\\d\\d)?|\\s*Z)?)?$/;\n\n var tzRegex = /Z|[+-]\\d\\d(?::?\\d\\d)?/;\n\n var isoDates = [\n ['YYYYYY-MM-DD', /[+-]\\d{6}-\\d\\d-\\d\\d/],\n ['YYYY-MM-DD', /\\d{4}-\\d\\d-\\d\\d/],\n ['GGGG-[W]WW-E', /\\d{4}-W\\d\\d-\\d/],\n ['GGGG-[W]WW', /\\d{4}-W\\d\\d/, false],\n ['YYYY-DDD', /\\d{4}-\\d{3}/],\n ['YYYY-MM', /\\d{4}-\\d\\d/, false],\n ['YYYYYYMMDD', /[+-]\\d{10}/],\n ['YYYYMMDD', /\\d{8}/],\n // YYYYMM is NOT allowed by the standard\n ['GGGG[W]WWE', /\\d{4}W\\d{3}/],\n ['GGGG[W]WW', /\\d{4}W\\d{2}/, false],\n ['YYYYDDD', /\\d{7}/]\n ];\n\n // iso time formats and regexes\n var isoTimes = [\n ['HH:mm:ss.SSSS', /\\d\\d:\\d\\d:\\d\\d\\.\\d+/],\n ['HH:mm:ss,SSSS', /\\d\\d:\\d\\d:\\d\\d,\\d+/],\n ['HH:mm:ss', /\\d\\d:\\d\\d:\\d\\d/],\n ['HH:mm', /\\d\\d:\\d\\d/],\n ['HHmmss.SSSS', /\\d\\d\\d\\d\\d\\d\\.\\d+/],\n ['HHmmss,SSSS', /\\d\\d\\d\\d\\d\\d,\\d+/],\n ['HHmmss', /\\d\\d\\d\\d\\d\\d/],\n ['HHmm', /\\d\\d\\d\\d/],\n ['HH', /\\d\\d/]\n ];\n\n var aspNetJsonRegex = /^\\/?Date\\((\\-?\\d+)/i;\n\n // date from iso format\n function configFromISO(config) {\n var i, l,\n string = config._i,\n match = extendedIsoRegex.exec(string) || basicIsoRegex.exec(string),\n allowTime, dateFormat, timeFormat, tzFormat;\n\n if (match) {\n getParsingFlags(config).iso = true;\n\n for (i = 0, l = isoDates.length; i < l; i++) {\n if (isoDates[i][1].exec(match[1])) {\n dateFormat = isoDates[i][0];\n allowTime = isoDates[i][2] !== false;\n break;\n }\n }\n if (dateFormat == null) {\n config._isValid = false;\n return;\n }\n if (match[3]) {\n for (i = 0, l = isoTimes.length; i < l; i++) {\n if (isoTimes[i][1].exec(match[3])) {\n // match[2] should be 'T' or space\n timeFormat = (match[2] || ' ') + isoTimes[i][0];\n break;\n }\n }\n if (timeFormat == null) {\n config._isValid = false;\n return;\n }\n }\n if (!allowTime && timeFormat != null) {\n config._isValid = false;\n return;\n }\n if (match[4]) {\n if (tzRegex.exec(match[4])) {\n tzFormat = 'Z';\n } else {\n config._isValid = false;\n return;\n }\n }\n config._f = dateFormat + (timeFormat || '') + (tzFormat || '');\n configFromStringAndFormat(config);\n } else {\n config._isValid = false;\n }\n }\n\n // RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3\n var rfc2822 = /^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\\s)?(\\d{1,2})\\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\\s(\\d{2,4})\\s(\\d\\d):(\\d\\d)(?::(\\d\\d))?\\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\\d{4}))$/;\n\n function extractFromRFC2822Strings(yearStr, monthStr, dayStr, hourStr, minuteStr, secondStr) {\n var result = [\n untruncateYear(yearStr),\n defaultLocaleMonthsShort.indexOf(monthStr),\n parseInt(dayStr, 10),\n parseInt(hourStr, 10),\n parseInt(minuteStr, 10)\n ];\n\n if (secondStr) {\n result.push(parseInt(secondStr, 10));\n }\n\n return result;\n }\n\n function untruncateYear(yearStr) {\n var year = parseInt(yearStr, 10);\n if (year <= 49) {\n return 2000 + year;\n } else if (year <= 999) {\n return 1900 + year;\n }\n return year;\n }\n\n function preprocessRFC2822(s) {\n // Remove comments and folding whitespace and replace multiple-spaces with a single space\n return s.replace(/\\([^)]*\\)|[\\n\\t]/g, ' ').replace(/(\\s\\s+)/g, ' ').replace(/^\\s\\s*/, '').replace(/\\s\\s*$/, '');\n }\n\n function checkWeekday(weekdayStr, parsedInput, config) {\n if (weekdayStr) {\n // TODO: Replace the vanilla JS Date object with an indepentent day-of-week check.\n var weekdayProvided = defaultLocaleWeekdaysShort.indexOf(weekdayStr),\n weekdayActual = new Date(parsedInput[0], parsedInput[1], parsedInput[2]).getDay();\n if (weekdayProvided !== weekdayActual) {\n getParsingFlags(config).weekdayMismatch = true;\n config._isValid = false;\n return false;\n }\n }\n return true;\n }\n\n var obsOffsets = {\n UT: 0,\n GMT: 0,\n EDT: -4 * 60,\n EST: -5 * 60,\n CDT: -5 * 60,\n CST: -6 * 60,\n MDT: -6 * 60,\n MST: -7 * 60,\n PDT: -7 * 60,\n PST: -8 * 60\n };\n\n function calculateOffset(obsOffset, militaryOffset, numOffset) {\n if (obsOffset) {\n return obsOffsets[obsOffset];\n } else if (militaryOffset) {\n // the only allowed military tz is Z\n return 0;\n } else {\n var hm = parseInt(numOffset, 10);\n var m = hm % 100, h = (hm - m) / 100;\n return h * 60 + m;\n }\n }\n\n // date and time from ref 2822 format\n function configFromRFC2822(config) {\n var match = rfc2822.exec(preprocessRFC2822(config._i));\n if (match) {\n var parsedArray = extractFromRFC2822Strings(match[4], match[3], match[2], match[5], match[6], match[7]);\n if (!checkWeekday(match[1], parsedArray, config)) {\n return;\n }\n\n config._a = parsedArray;\n config._tzm = calculateOffset(match[8], match[9], match[10]);\n\n config._d = createUTCDate.apply(null, config._a);\n config._d.setUTCMinutes(config._d.getUTCMinutes() - config._tzm);\n\n getParsingFlags(config).rfc2822 = true;\n } else {\n config._isValid = false;\n }\n }\n\n // date from iso format or fallback\n function configFromString(config) {\n var matched = aspNetJsonRegex.exec(config._i);\n\n if (matched !== null) {\n config._d = new Date(+matched[1]);\n return;\n }\n\n configFromISO(config);\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n }\n\n configFromRFC2822(config);\n if (config._isValid === false) {\n delete config._isValid;\n } else {\n return;\n }\n\n // Final attempt, use Input Fallback\n hooks.createFromInputFallback(config);\n }\n\n hooks.createFromInputFallback = deprecate(\n 'value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), ' +\n 'which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are ' +\n 'discouraged and will be removed in an upcoming major release. Please refer to ' +\n 'http://momentjs.com/guides/#/warnings/js-date/ for more info.',\n function (config) {\n config._d = new Date(config._i + (config._useUTC ? ' UTC' : ''));\n }\n );\n\n // constant that refers to the ISO standard\n hooks.ISO_8601 = function () {};\n\n // constant that refers to the RFC 2822 form\n hooks.RFC_2822 = function () {};\n\n // date from string and format string\n function configFromStringAndFormat(config) {\n // TODO: Move this to another part of the creation flow to prevent circular deps\n if (config._f === hooks.ISO_8601) {\n configFromISO(config);\n return;\n }\n if (config._f === hooks.RFC_2822) {\n configFromRFC2822(config);\n return;\n }\n config._a = [];\n getParsingFlags(config).empty = true;\n\n // This array is used to make a Date, either with `new Date` or `Date.UTC`\n var string = '' + config._i,\n i, parsedInput, tokens, token, skipped,\n stringLength = string.length,\n totalParsedInputLength = 0;\n\n tokens = expandFormat(config._f, config._locale).match(formattingTokens) || [];\n\n for (i = 0; i < tokens.length; i++) {\n token = tokens[i];\n parsedInput = (string.match(getParseRegexForToken(token, config)) || [])[0];\n // console.log('token', token, 'parsedInput', parsedInput,\n // 'regex', getParseRegexForToken(token, config));\n if (parsedInput) {\n skipped = string.substr(0, string.indexOf(parsedInput));\n if (skipped.length > 0) {\n getParsingFlags(config).unusedInput.push(skipped);\n }\n string = string.slice(string.indexOf(parsedInput) + parsedInput.length);\n totalParsedInputLength += parsedInput.length;\n }\n // don't parse if it's not a known token\n if (formatTokenFunctions[token]) {\n if (parsedInput) {\n getParsingFlags(config).empty = false;\n }\n else {\n getParsingFlags(config).unusedTokens.push(token);\n }\n addTimeToArrayFromToken(token, parsedInput, config);\n }\n else if (config._strict && !parsedInput) {\n getParsingFlags(config).unusedTokens.push(token);\n }\n }\n\n // add remaining unparsed input length to the string\n getParsingFlags(config).charsLeftOver = stringLength - totalParsedInputLength;\n if (string.length > 0) {\n getParsingFlags(config).unusedInput.push(string);\n }\n\n // clear _12h flag if hour is <= 12\n if (config._a[HOUR] <= 12 &&\n getParsingFlags(config).bigHour === true &&\n config._a[HOUR] > 0) {\n getParsingFlags(config).bigHour = undefined;\n }\n\n getParsingFlags(config).parsedDateParts = config._a.slice(0);\n getParsingFlags(config).meridiem = config._meridiem;\n // handle meridiem\n config._a[HOUR] = meridiemFixWrap(config._locale, config._a[HOUR], config._meridiem);\n\n configFromArray(config);\n checkOverflow(config);\n }\n\n\n function meridiemFixWrap (locale, hour, meridiem) {\n var isPm;\n\n if (meridiem == null) {\n // nothing to do\n return hour;\n }\n if (locale.meridiemHour != null) {\n return locale.meridiemHour(hour, meridiem);\n } else if (locale.isPM != null) {\n // Fallback\n isPm = locale.isPM(meridiem);\n if (isPm && hour < 12) {\n hour += 12;\n }\n if (!isPm && hour === 12) {\n hour = 0;\n }\n return hour;\n } else {\n // this is not supposed to happen\n return hour;\n }\n }\n\n // date from string and array of format strings\n function configFromStringAndArray(config) {\n var tempConfig,\n bestMoment,\n\n scoreToBeat,\n i,\n currentScore;\n\n if (config._f.length === 0) {\n getParsingFlags(config).invalidFormat = true;\n config._d = new Date(NaN);\n return;\n }\n\n for (i = 0; i < config._f.length; i++) {\n currentScore = 0;\n tempConfig = copyConfig({}, config);\n if (config._useUTC != null) {\n tempConfig._useUTC = config._useUTC;\n }\n tempConfig._f = config._f[i];\n configFromStringAndFormat(tempConfig);\n\n if (!isValid(tempConfig)) {\n continue;\n }\n\n // if there is any input that was not parsed add a penalty for that format\n currentScore += getParsingFlags(tempConfig).charsLeftOver;\n\n //or tokens\n currentScore += getParsingFlags(tempConfig).unusedTokens.length * 10;\n\n getParsingFlags(tempConfig).score = currentScore;\n\n if (scoreToBeat == null || currentScore < scoreToBeat) {\n scoreToBeat = currentScore;\n bestMoment = tempConfig;\n }\n }\n\n extend(config, bestMoment || tempConfig);\n }\n\n function configFromObject(config) {\n if (config._d) {\n return;\n }\n\n var i = normalizeObjectUnits(config._i);\n config._a = map([i.year, i.month, i.day || i.date, i.hour, i.minute, i.second, i.millisecond], function (obj) {\n return obj && parseInt(obj, 10);\n });\n\n configFromArray(config);\n }\n\n function createFromConfig (config) {\n var res = new Moment(checkOverflow(prepareConfig(config)));\n if (res._nextDay) {\n // Adding is smart enough around DST\n res.add(1, 'd');\n res._nextDay = undefined;\n }\n\n return res;\n }\n\n function prepareConfig (config) {\n var input = config._i,\n format = config._f;\n\n config._locale = config._locale || getLocale(config._l);\n\n if (input === null || (format === undefined && input === '')) {\n return createInvalid({nullInput: true});\n }\n\n if (typeof input === 'string') {\n config._i = input = config._locale.preparse(input);\n }\n\n if (isMoment(input)) {\n return new Moment(checkOverflow(input));\n } else if (isDate(input)) {\n config._d = input;\n } else if (isArray(format)) {\n configFromStringAndArray(config);\n } else if (format) {\n configFromStringAndFormat(config);\n } else {\n configFromInput(config);\n }\n\n if (!isValid(config)) {\n config._d = null;\n }\n\n return config;\n }\n\n function configFromInput(config) {\n var input = config._i;\n if (isUndefined(input)) {\n config._d = new Date(hooks.now());\n } else if (isDate(input)) {\n config._d = new Date(input.valueOf());\n } else if (typeof input === 'string') {\n configFromString(config);\n } else if (isArray(input)) {\n config._a = map(input.slice(0), function (obj) {\n return parseInt(obj, 10);\n });\n configFromArray(config);\n } else if (isObject(input)) {\n configFromObject(config);\n } else if (isNumber(input)) {\n // from milliseconds\n config._d = new Date(input);\n } else {\n hooks.createFromInputFallback(config);\n }\n }\n\n function createLocalOrUTC (input, format, locale, strict, isUTC) {\n var c = {};\n\n if (locale === true || locale === false) {\n strict = locale;\n locale = undefined;\n }\n\n if ((isObject(input) && isObjectEmpty(input)) ||\n (isArray(input) && input.length === 0)) {\n input = undefined;\n }\n // object construction must be done this way.\n // https://github.com/moment/moment/issues/1423\n c._isAMomentObject = true;\n c._useUTC = c._isUTC = isUTC;\n c._l = locale;\n c._i = input;\n c._f = format;\n c._strict = strict;\n\n return createFromConfig(c);\n }\n\n function createLocal (input, format, locale, strict) {\n return createLocalOrUTC(input, format, locale, strict, false);\n }\n\n var prototypeMin = deprecate(\n 'moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/',\n function () {\n var other = createLocal.apply(null, arguments);\n if (this.isValid() && other.isValid()) {\n return other < this ? this : other;\n } else {\n return createInvalid();\n }\n }\n );\n\n var prototypeMax = deprecate(\n 'moment().max is deprecated, use moment.min instead. http://momentjs.com/guides/#/warnings/min-max/',\n function () {\n var other = createLocal.apply(null, arguments);\n if (this.isValid() && other.isValid()) {\n return other > this ? this : other;\n } else {\n return createInvalid();\n }\n }\n );\n\n // Pick a moment m from moments so that m[fn](other) is true for all\n // other. This relies on the function fn to be transitive.\n //\n // moments should either be an array of moment objects or an array, whose\n // first element is an array of moment objects.\n function pickBy(fn, moments) {\n var res, i;\n if (moments.length === 1 && isArray(moments[0])) {\n moments = moments[0];\n }\n if (!moments.length) {\n return createLocal();\n }\n res = moments[0];\n for (i = 1; i < moments.length; ++i) {\n if (!moments[i].isValid() || moments[i][fn](res)) {\n res = moments[i];\n }\n }\n return res;\n }\n\n // TODO: Use [].sort instead?\n function min () {\n var args = [].slice.call(arguments, 0);\n\n return pickBy('isBefore', args);\n }\n\n function max () {\n var args = [].slice.call(arguments, 0);\n\n return pickBy('isAfter', args);\n }\n\n var now = function () {\n return Date.now ? Date.now() : +(new Date());\n };\n\n var ordering = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'millisecond'];\n\n function isDurationValid(m) {\n for (var key in m) {\n if (!(indexOf.call(ordering, key) !== -1 && (m[key] == null || !isNaN(m[key])))) {\n return false;\n }\n }\n\n var unitHasDecimal = false;\n for (var i = 0; i < ordering.length; ++i) {\n if (m[ordering[i]]) {\n if (unitHasDecimal) {\n return false; // only allow non-integers for smallest unit\n }\n if (parseFloat(m[ordering[i]]) !== toInt(m[ordering[i]])) {\n unitHasDecimal = true;\n }\n }\n }\n\n return true;\n }\n\n function isValid$1() {\n return this._isValid;\n }\n\n function createInvalid$1() {\n return createDuration(NaN);\n }\n\n function Duration (duration) {\n var normalizedInput = normalizeObjectUnits(duration),\n years = normalizedInput.year || 0,\n quarters = normalizedInput.quarter || 0,\n months = normalizedInput.month || 0,\n weeks = normalizedInput.week || normalizedInput.isoWeek || 0,\n days = normalizedInput.day || 0,\n hours = normalizedInput.hour || 0,\n minutes = normalizedInput.minute || 0,\n seconds = normalizedInput.second || 0,\n milliseconds = normalizedInput.millisecond || 0;\n\n this._isValid = isDurationValid(normalizedInput);\n\n // representation for dateAddRemove\n this._milliseconds = +milliseconds +\n seconds * 1e3 + // 1000\n minutes * 6e4 + // 1000 * 60\n hours * 1000 * 60 * 60; //using 1000 * 60 * 60 instead of 36e5 to avoid floating point rounding errors https://github.com/moment/moment/issues/2978\n // Because of dateAddRemove treats 24 hours as different from a\n // day when working around DST, we need to store them separately\n this._days = +days +\n weeks * 7;\n // It is impossible to translate months into days without knowing\n // which months you are are talking about, so we have to store\n // it separately.\n this._months = +months +\n quarters * 3 +\n years * 12;\n\n this._data = {};\n\n this._locale = getLocale();\n\n this._bubble();\n }\n\n function isDuration (obj) {\n return obj instanceof Duration;\n }\n\n function absRound (number) {\n if (number < 0) {\n return Math.round(-1 * number) * -1;\n } else {\n return Math.round(number);\n }\n }\n\n // FORMATTING\n\n function offset (token, separator) {\n addFormatToken(token, 0, 0, function () {\n var offset = this.utcOffset();\n var sign = '+';\n if (offset < 0) {\n offset = -offset;\n sign = '-';\n }\n return sign + zeroFill(~~(offset / 60), 2) + separator + zeroFill(~~(offset) % 60, 2);\n });\n }\n\n offset('Z', ':');\n offset('ZZ', '');\n\n // PARSING\n\n addRegexToken('Z', matchShortOffset);\n addRegexToken('ZZ', matchShortOffset);\n addParseToken(['Z', 'ZZ'], function (input, array, config) {\n config._useUTC = true;\n config._tzm = offsetFromString(matchShortOffset, input);\n });\n\n // HELPERS\n\n // timezone chunker\n // '+10:00' > ['10', '00']\n // '-1530' > ['-15', '30']\n var chunkOffset = /([\\+\\-]|\\d\\d)/gi;\n\n function offsetFromString(matcher, string) {\n var matches = (string || '').match(matcher);\n\n if (matches === null) {\n return null;\n }\n\n var chunk = matches[matches.length - 1] || [];\n var parts = (chunk + '').match(chunkOffset) || ['-', 0, 0];\n var minutes = +(parts[1] * 60) + toInt(parts[2]);\n\n return minutes === 0 ?\n 0 :\n parts[0] === '+' ? minutes : -minutes;\n }\n\n // Return a moment from input, that is local/utc/zone equivalent to model.\n function cloneWithOffset(input, model) {\n var res, diff;\n if (model._isUTC) {\n res = model.clone();\n diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.valueOf();\n // Use low-level api, because this fn is low-level api.\n res._d.setTime(res._d.valueOf() + diff);\n hooks.updateOffset(res, false);\n return res;\n } else {\n return createLocal(input).local();\n }\n }\n\n function getDateOffset (m) {\n // On Firefox.24 Date#getTimezoneOffset returns a floating point.\n // https://github.com/moment/moment/pull/1871\n return -Math.round(m._d.getTimezoneOffset() / 15) * 15;\n }\n\n // HOOKS\n\n // This function will be called whenever a moment is mutated.\n // It is intended to keep the offset in sync with the timezone.\n hooks.updateOffset = function () {};\n\n // MOMENTS\n\n // keepLocalTime = true means only change the timezone, without\n // affecting the local hour. So 5:31:26 +0300 --[utcOffset(2, true)]-->\n // 5:31:26 +0200 It is possible that 5:31:26 doesn't exist with offset\n // +0200, so we adjust the time as needed, to be valid.\n //\n // Keeping the time actually adds/subtracts (one hour)\n // from the actual represented time. That is why we call updateOffset\n // a second time. In case it wants us to change the offset again\n // _changeInProgress == true case, then we have to adjust, because\n // there is no such time in the given timezone.\n function getSetOffset (input, keepLocalTime, keepMinutes) {\n var offset = this._offset || 0,\n localAdjust;\n if (!this.isValid()) {\n return input != null ? this : NaN;\n }\n if (input != null) {\n if (typeof input === 'string') {\n input = offsetFromString(matchShortOffset, input);\n if (input === null) {\n return this;\n }\n } else if (Math.abs(input) < 16 && !keepMinutes) {\n input = input * 60;\n }\n if (!this._isUTC && keepLocalTime) {\n localAdjust = getDateOffset(this);\n }\n this._offset = input;\n this._isUTC = true;\n if (localAdjust != null) {\n this.add(localAdjust, 'm');\n }\n if (offset !== input) {\n if (!keepLocalTime || this._changeInProgress) {\n addSubtract(this, createDuration(input - offset, 'm'), 1, false);\n } else if (!this._changeInProgress) {\n this._changeInProgress = true;\n hooks.updateOffset(this, true);\n this._changeInProgress = null;\n }\n }\n return this;\n } else {\n return this._isUTC ? offset : getDateOffset(this);\n }\n }\n\n function getSetZone (input, keepLocalTime) {\n if (input != null) {\n if (typeof input !== 'string') {\n input = -input;\n }\n\n this.utcOffset(input, keepLocalTime);\n\n return this;\n } else {\n return -this.utcOffset();\n }\n }\n\n function setOffsetToUTC (keepLocalTime) {\n return this.utcOffset(0, keepLocalTime);\n }\n\n function setOffsetToLocal (keepLocalTime) {\n if (this._isUTC) {\n this.utcOffset(0, keepLocalTime);\n this._isUTC = false;\n\n if (keepLocalTime) {\n this.subtract(getDateOffset(this), 'm');\n }\n }\n return this;\n }\n\n function setOffsetToParsedOffset () {\n if (this._tzm != null) {\n this.utcOffset(this._tzm, false, true);\n } else if (typeof this._i === 'string') {\n var tZone = offsetFromString(matchOffset, this._i);\n if (tZone != null) {\n this.utcOffset(tZone);\n }\n else {\n this.utcOffset(0, true);\n }\n }\n return this;\n }\n\n function hasAlignedHourOffset (input) {\n if (!this.isValid()) {\n return false;\n }\n input = input ? createLocal(input).utcOffset() : 0;\n\n return (this.utcOffset() - input) % 60 === 0;\n }\n\n function isDaylightSavingTime () {\n return (\n this.utcOffset() > this.clone().month(0).utcOffset() ||\n this.utcOffset() > this.clone().month(5).utcOffset()\n );\n }\n\n function isDaylightSavingTimeShifted () {\n if (!isUndefined(this._isDSTShifted)) {\n return this._isDSTShifted;\n }\n\n var c = {};\n\n copyConfig(c, this);\n c = prepareConfig(c);\n\n if (c._a) {\n var other = c._isUTC ? createUTC(c._a) : createLocal(c._a);\n this._isDSTShifted = this.isValid() &&\n compareArrays(c._a, other.toArray()) > 0;\n } else {\n this._isDSTShifted = false;\n }\n\n return this._isDSTShifted;\n }\n\n function isLocal () {\n return this.isValid() ? !this._isUTC : false;\n }\n\n function isUtcOffset () {\n return this.isValid() ? this._isUTC : false;\n }\n\n function isUtc () {\n return this.isValid() ? this._isUTC && this._offset === 0 : false;\n }\n\n // ASP.NET json date format regex\n var aspNetRegex = /^(\\-|\\+)?(?:(\\d*)[. ])?(\\d+)\\:(\\d+)(?:\\:(\\d+)(\\.\\d*)?)?$/;\n\n // from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html\n // somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere\n // and further modified to allow for strings containing both week and day\n var isoRegex = /^(-|\\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;\n\n function createDuration (input, key) {\n var duration = input,\n // matching against regexp is expensive, do it on demand\n match = null,\n sign,\n ret,\n diffRes;\n\n if (isDuration(input)) {\n duration = {\n ms : input._milliseconds,\n d : input._days,\n M : input._months\n };\n } else if (isNumber(input)) {\n duration = {};\n if (key) {\n duration[key] = input;\n } else {\n duration.milliseconds = input;\n }\n } else if (!!(match = aspNetRegex.exec(input))) {\n sign = (match[1] === '-') ? -1 : 1;\n duration = {\n y : 0,\n d : toInt(match[DATE]) * sign,\n h : toInt(match[HOUR]) * sign,\n m : toInt(match[MINUTE]) * sign,\n s : toInt(match[SECOND]) * sign,\n ms : toInt(absRound(match[MILLISECOND] * 1000)) * sign // the millisecond decimal point is included in the match\n };\n } else if (!!(match = isoRegex.exec(input))) {\n sign = (match[1] === '-') ? -1 : 1;\n duration = {\n y : parseIso(match[2], sign),\n M : parseIso(match[3], sign),\n w : parseIso(match[4], sign),\n d : parseIso(match[5], sign),\n h : parseIso(match[6], sign),\n m : parseIso(match[7], sign),\n s : parseIso(match[8], sign)\n };\n } else if (duration == null) {// checks for null or undefined\n duration = {};\n } else if (typeof duration === 'object' && ('from' in duration || 'to' in duration)) {\n diffRes = momentsDifference(createLocal(duration.from), createLocal(duration.to));\n\n duration = {};\n duration.ms = diffRes.milliseconds;\n duration.M = diffRes.months;\n }\n\n ret = new Duration(duration);\n\n if (isDuration(input) && hasOwnProp(input, '_locale')) {\n ret._locale = input._locale;\n }\n\n return ret;\n }\n\n createDuration.fn = Duration.prototype;\n createDuration.invalid = createInvalid$1;\n\n function parseIso (inp, sign) {\n // We'd normally use ~~inp for this, but unfortunately it also\n // converts floats to ints.\n // inp may be undefined, so careful calling replace on it.\n var res = inp && parseFloat(inp.replace(',', '.'));\n // apply sign while we're at it\n return (isNaN(res) ? 0 : res) * sign;\n }\n\n function positiveMomentsDifference(base, other) {\n var res = {};\n\n res.months = other.month() - base.month() +\n (other.year() - base.year()) * 12;\n if (base.clone().add(res.months, 'M').isAfter(other)) {\n --res.months;\n }\n\n res.milliseconds = +other - +(base.clone().add(res.months, 'M'));\n\n return res;\n }\n\n function momentsDifference(base, other) {\n var res;\n if (!(base.isValid() && other.isValid())) {\n return {milliseconds: 0, months: 0};\n }\n\n other = cloneWithOffset(other, base);\n if (base.isBefore(other)) {\n res = positiveMomentsDifference(base, other);\n } else {\n res = positiveMomentsDifference(other, base);\n res.milliseconds = -res.milliseconds;\n res.months = -res.months;\n }\n\n return res;\n }\n\n // TODO: remove 'name' arg after deprecation is removed\n function createAdder(direction, name) {\n return function (val, period) {\n var dur, tmp;\n //invert the arguments, but complain about it\n if (period !== null && !isNaN(+period)) {\n deprecateSimple(name, 'moment().' + name + '(period, number) is deprecated. Please use moment().' + name + '(number, period). ' +\n 'See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.');\n tmp = val; val = period; period = tmp;\n }\n\n val = typeof val === 'string' ? +val : val;\n dur = createDuration(val, period);\n addSubtract(this, dur, direction);\n return this;\n };\n }\n\n function addSubtract (mom, duration, isAdding, updateOffset) {\n var milliseconds = duration._milliseconds,\n days = absRound(duration._days),\n months = absRound(duration._months);\n\n if (!mom.isValid()) {\n // No op\n return;\n }\n\n updateOffset = updateOffset == null ? true : updateOffset;\n\n if (months) {\n setMonth(mom, get(mom, 'Month') + months * isAdding);\n }\n if (days) {\n set$1(mom, 'Date', get(mom, 'Date') + days * isAdding);\n }\n if (milliseconds) {\n mom._d.setTime(mom._d.valueOf() + milliseconds * isAdding);\n }\n if (updateOffset) {\n hooks.updateOffset(mom, days || months);\n }\n }\n\n var add = createAdder(1, 'add');\n var subtract = createAdder(-1, 'subtract');\n\n function getCalendarFormat(myMoment, now) {\n var diff = myMoment.diff(now, 'days', true);\n return diff < -6 ? 'sameElse' :\n diff < -1 ? 'lastWeek' :\n diff < 0 ? 'lastDay' :\n diff < 1 ? 'sameDay' :\n diff < 2 ? 'nextDay' :\n diff < 7 ? 'nextWeek' : 'sameElse';\n }\n\n function calendar$1 (time, formats) {\n // We want to compare the start of today, vs this.\n // Getting start-of-today depends on whether we're local/utc/offset or not.\n var now = time || createLocal(),\n sod = cloneWithOffset(now, this).startOf('day'),\n format = hooks.calendarFormat(this, sod) || 'sameElse';\n\n var output = formats && (isFunction(formats[format]) ? formats[format].call(this, now) : formats[format]);\n\n return this.format(output || this.localeData().calendar(format, this, createLocal(now)));\n }\n\n function clone () {\n return new Moment(this);\n }\n\n function isAfter (input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n units = normalizeUnits(units) || 'millisecond';\n if (units === 'millisecond') {\n return this.valueOf() > localInput.valueOf();\n } else {\n return localInput.valueOf() < this.clone().startOf(units).valueOf();\n }\n }\n\n function isBefore (input, units) {\n var localInput = isMoment(input) ? input : createLocal(input);\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n units = normalizeUnits(units) || 'millisecond';\n if (units === 'millisecond') {\n return this.valueOf() < localInput.valueOf();\n } else {\n return this.clone().endOf(units).valueOf() < localInput.valueOf();\n }\n }\n\n function isBetween (from, to, units, inclusivity) {\n var localFrom = isMoment(from) ? from : createLocal(from),\n localTo = isMoment(to) ? to : createLocal(to);\n if (!(this.isValid() && localFrom.isValid() && localTo.isValid())) {\n return false;\n }\n inclusivity = inclusivity || '()';\n return (inclusivity[0] === '(' ? this.isAfter(localFrom, units) : !this.isBefore(localFrom, units)) &&\n (inclusivity[1] === ')' ? this.isBefore(localTo, units) : !this.isAfter(localTo, units));\n }\n\n function isSame (input, units) {\n var localInput = isMoment(input) ? input : createLocal(input),\n inputMs;\n if (!(this.isValid() && localInput.isValid())) {\n return false;\n }\n units = normalizeUnits(units) || 'millisecond';\n if (units === 'millisecond') {\n return this.valueOf() === localInput.valueOf();\n } else {\n inputMs = localInput.valueOf();\n return this.clone().startOf(units).valueOf() <= inputMs && inputMs <= this.clone().endOf(units).valueOf();\n }\n }\n\n function isSameOrAfter (input, units) {\n return this.isSame(input, units) || this.isAfter(input, units);\n }\n\n function isSameOrBefore (input, units) {\n return this.isSame(input, units) || this.isBefore(input, units);\n }\n\n function diff (input, units, asFloat) {\n var that,\n zoneDelta,\n output;\n\n if (!this.isValid()) {\n return NaN;\n }\n\n that = cloneWithOffset(input, this);\n\n if (!that.isValid()) {\n return NaN;\n }\n\n zoneDelta = (that.utcOffset() - this.utcOffset()) * 6e4;\n\n units = normalizeUnits(units);\n\n switch (units) {\n case 'year': output = monthDiff(this, that) / 12; break;\n case 'month': output = monthDiff(this, that); break;\n case 'quarter': output = monthDiff(this, that) / 3; break;\n case 'second': output = (this - that) / 1e3; break; // 1000\n case 'minute': output = (this - that) / 6e4; break; // 1000 * 60\n case 'hour': output = (this - that) / 36e5; break; // 1000 * 60 * 60\n case 'day': output = (this - that - zoneDelta) / 864e5; break; // 1000 * 60 * 60 * 24, negate dst\n case 'week': output = (this - that - zoneDelta) / 6048e5; break; // 1000 * 60 * 60 * 24 * 7, negate dst\n default: output = this - that;\n }\n\n return asFloat ? output : absFloor(output);\n }\n\n function monthDiff (a, b) {\n // difference in months\n var wholeMonthDiff = ((b.year() - a.year()) * 12) + (b.month() - a.month()),\n // b is in (anchor - 1 month, anchor + 1 month)\n anchor = a.clone().add(wholeMonthDiff, 'months'),\n anchor2, adjust;\n\n if (b - anchor < 0) {\n anchor2 = a.clone().add(wholeMonthDiff - 1, 'months');\n // linear across the month\n adjust = (b - anchor) / (anchor - anchor2);\n } else {\n anchor2 = a.clone().add(wholeMonthDiff + 1, 'months');\n // linear across the month\n adjust = (b - anchor) / (anchor2 - anchor);\n }\n\n //check for negative zero, return zero if negative zero\n return -(wholeMonthDiff + adjust) || 0;\n }\n\n hooks.defaultFormat = 'YYYY-MM-DDTHH:mm:ssZ';\n hooks.defaultFormatUtc = 'YYYY-MM-DDTHH:mm:ss[Z]';\n\n function toString () {\n return this.clone().locale('en').format('ddd MMM DD YYYY HH:mm:ss [GMT]ZZ');\n }\n\n function toISOString(keepOffset) {\n if (!this.isValid()) {\n return null;\n }\n var utc = keepOffset !== true;\n var m = utc ? this.clone().utc() : this;\n if (m.year() < 0 || m.year() > 9999) {\n return formatMoment(m, utc ? 'YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n if (isFunction(Date.prototype.toISOString)) {\n // native implementation is ~50x faster, use it when we can\n if (utc) {\n return this.toDate().toISOString();\n } else {\n return new Date(this.valueOf() + this.utcOffset() * 60 * 1000).toISOString().replace('Z', formatMoment(m, 'Z'));\n }\n }\n return formatMoment(m, utc ? 'YYYY-MM-DD[T]HH:mm:ss.SSS[Z]' : 'YYYY-MM-DD[T]HH:mm:ss.SSSZ');\n }\n\n /**\n * Return a human readable representation of a moment that can\n * also be evaluated to get a new moment which is the same\n *\n * @link https://nodejs.org/dist/latest/docs/api/util.html#util_custom_inspect_function_on_objects\n */\n function inspect () {\n if (!this.isValid()) {\n return 'moment.invalid(/* ' + this._i + ' */)';\n }\n var func = 'moment';\n var zone = '';\n if (!this.isLocal()) {\n func = this.utcOffset() === 0 ? 'moment.utc' : 'moment.parseZone';\n zone = 'Z';\n }\n var prefix = '[' + func + '(\"]';\n var year = (0 <= this.year() && this.year() <= 9999) ? 'YYYY' : 'YYYYYY';\n var datetime = '-MM-DD[T]HH:mm:ss.SSS';\n var suffix = zone + '[\")]';\n\n return this.format(prefix + year + datetime + suffix);\n }\n\n function format (inputString) {\n if (!inputString) {\n inputString = this.isUtc() ? hooks.defaultFormatUtc : hooks.defaultFormat;\n }\n var output = formatMoment(this, inputString);\n return this.localeData().postformat(output);\n }\n\n function from (time, withoutSuffix) {\n if (this.isValid() &&\n ((isMoment(time) && time.isValid()) ||\n createLocal(time).isValid())) {\n return createDuration({to: this, from: time}).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function fromNow (withoutSuffix) {\n return this.from(createLocal(), withoutSuffix);\n }\n\n function to (time, withoutSuffix) {\n if (this.isValid() &&\n ((isMoment(time) && time.isValid()) ||\n createLocal(time).isValid())) {\n return createDuration({from: this, to: time}).locale(this.locale()).humanize(!withoutSuffix);\n } else {\n return this.localeData().invalidDate();\n }\n }\n\n function toNow (withoutSuffix) {\n return this.to(createLocal(), withoutSuffix);\n }\n\n // If passed a locale key, it will set the locale for this\n // instance. Otherwise, it will return the locale configuration\n // variables for this instance.\n function locale (key) {\n var newLocaleData;\n\n if (key === undefined) {\n return this._locale._abbr;\n } else {\n newLocaleData = getLocale(key);\n if (newLocaleData != null) {\n this._locale = newLocaleData;\n }\n return this;\n }\n }\n\n var lang = deprecate(\n 'moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.',\n function (key) {\n if (key === undefined) {\n return this.localeData();\n } else {\n return this.locale(key);\n }\n }\n );\n\n function localeData () {\n return this._locale;\n }\n\n var MS_PER_SECOND = 1000;\n var MS_PER_MINUTE = 60 * MS_PER_SECOND;\n var MS_PER_HOUR = 60 * MS_PER_MINUTE;\n var MS_PER_400_YEARS = (365 * 400 + 97) * 24 * MS_PER_HOUR;\n\n // actual modulo - handles negative numbers (for dates before 1970):\n function mod$1(dividend, divisor) {\n return (dividend % divisor + divisor) % divisor;\n }\n\n function localStartOfDate(y, m, d) {\n // the date constructor remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return new Date(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return new Date(y, m, d).valueOf();\n }\n }\n\n function utcStartOfDate(y, m, d) {\n // Date.UTC remaps years 0-99 to 1900-1999\n if (y < 100 && y >= 0) {\n // preserve leap years using a full 400 year cycle, then reset\n return Date.UTC(y + 400, m, d) - MS_PER_400_YEARS;\n } else {\n return Date.UTC(y, m, d);\n }\n }\n\n function startOf (units) {\n var time;\n units = normalizeUnits(units);\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year(), 0, 1);\n break;\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3, 1);\n break;\n case 'month':\n time = startOfDate(this.year(), this.month(), 1);\n break;\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday());\n break;\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1));\n break;\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date());\n break;\n case 'hour':\n time = this._d.valueOf();\n time -= mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR);\n break;\n case 'minute':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_MINUTE);\n break;\n case 'second':\n time = this._d.valueOf();\n time -= mod$1(time, MS_PER_SECOND);\n break;\n }\n\n this._d.setTime(time);\n hooks.updateOffset(this, true);\n return this;\n }\n\n function endOf (units) {\n var time;\n units = normalizeUnits(units);\n if (units === undefined || units === 'millisecond' || !this.isValid()) {\n return this;\n }\n\n var startOfDate = this._isUTC ? utcStartOfDate : localStartOfDate;\n\n switch (units) {\n case 'year':\n time = startOfDate(this.year() + 1, 0, 1) - 1;\n break;\n case 'quarter':\n time = startOfDate(this.year(), this.month() - this.month() % 3 + 3, 1) - 1;\n break;\n case 'month':\n time = startOfDate(this.year(), this.month() + 1, 1) - 1;\n break;\n case 'week':\n time = startOfDate(this.year(), this.month(), this.date() - this.weekday() + 7) - 1;\n break;\n case 'isoWeek':\n time = startOfDate(this.year(), this.month(), this.date() - (this.isoWeekday() - 1) + 7) - 1;\n break;\n case 'day':\n case 'date':\n time = startOfDate(this.year(), this.month(), this.date() + 1) - 1;\n break;\n case 'hour':\n time = this._d.valueOf();\n time += MS_PER_HOUR - mod$1(time + (this._isUTC ? 0 : this.utcOffset() * MS_PER_MINUTE), MS_PER_HOUR) - 1;\n break;\n case 'minute':\n time = this._d.valueOf();\n time += MS_PER_MINUTE - mod$1(time, MS_PER_MINUTE) - 1;\n break;\n case 'second':\n time = this._d.valueOf();\n time += MS_PER_SECOND - mod$1(time, MS_PER_SECOND) - 1;\n break;\n }\n\n this._d.setTime(time);\n hooks.updateOffset(this, true);\n return this;\n }\n\n function valueOf () {\n return this._d.valueOf() - ((this._offset || 0) * 60000);\n }\n\n function unix () {\n return Math.floor(this.valueOf() / 1000);\n }\n\n function toDate () {\n return new Date(this.valueOf());\n }\n\n function toArray () {\n var m = this;\n return [m.year(), m.month(), m.date(), m.hour(), m.minute(), m.second(), m.millisecond()];\n }\n\n function toObject () {\n var m = this;\n return {\n years: m.year(),\n months: m.month(),\n date: m.date(),\n hours: m.hours(),\n minutes: m.minutes(),\n seconds: m.seconds(),\n milliseconds: m.milliseconds()\n };\n }\n\n function toJSON () {\n // new Date(NaN).toJSON() === null\n return this.isValid() ? this.toISOString() : null;\n }\n\n function isValid$2 () {\n return isValid(this);\n }\n\n function parsingFlags () {\n return extend({}, getParsingFlags(this));\n }\n\n function invalidAt () {\n return getParsingFlags(this).overflow;\n }\n\n function creationData() {\n return {\n input: this._i,\n format: this._f,\n locale: this._locale,\n isUTC: this._isUTC,\n strict: this._strict\n };\n }\n\n // FORMATTING\n\n addFormatToken(0, ['gg', 2], 0, function () {\n return this.weekYear() % 100;\n });\n\n addFormatToken(0, ['GG', 2], 0, function () {\n return this.isoWeekYear() % 100;\n });\n\n function addWeekYearFormatToken (token, getter) {\n addFormatToken(0, [token, token.length], 0, getter);\n }\n\n addWeekYearFormatToken('gggg', 'weekYear');\n addWeekYearFormatToken('ggggg', 'weekYear');\n addWeekYearFormatToken('GGGG', 'isoWeekYear');\n addWeekYearFormatToken('GGGGG', 'isoWeekYear');\n\n // ALIASES\n\n addUnitAlias('weekYear', 'gg');\n addUnitAlias('isoWeekYear', 'GG');\n\n // PRIORITY\n\n addUnitPriority('weekYear', 1);\n addUnitPriority('isoWeekYear', 1);\n\n\n // PARSING\n\n addRegexToken('G', matchSigned);\n addRegexToken('g', matchSigned);\n addRegexToken('GG', match1to2, match2);\n addRegexToken('gg', match1to2, match2);\n addRegexToken('GGGG', match1to4, match4);\n addRegexToken('gggg', match1to4, match4);\n addRegexToken('GGGGG', match1to6, match6);\n addRegexToken('ggggg', match1to6, match6);\n\n addWeekParseToken(['gggg', 'ggggg', 'GGGG', 'GGGGG'], function (input, week, config, token) {\n week[token.substr(0, 2)] = toInt(input);\n });\n\n addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {\n week[token] = hooks.parseTwoDigitYear(input);\n });\n\n // MOMENTS\n\n function getSetWeekYear (input) {\n return getSetWeekYearHelper.call(this,\n input,\n this.week(),\n this.weekday(),\n this.localeData()._week.dow,\n this.localeData()._week.doy);\n }\n\n function getSetISOWeekYear (input) {\n return getSetWeekYearHelper.call(this,\n input, this.isoWeek(), this.isoWeekday(), 1, 4);\n }\n\n function getISOWeeksInYear () {\n return weeksInYear(this.year(), 1, 4);\n }\n\n function getWeeksInYear () {\n var weekInfo = this.localeData()._week;\n return weeksInYear(this.year(), weekInfo.dow, weekInfo.doy);\n }\n\n function getSetWeekYearHelper(input, week, weekday, dow, doy) {\n var weeksTarget;\n if (input == null) {\n return weekOfYear(this, dow, doy).year;\n } else {\n weeksTarget = weeksInYear(input, dow, doy);\n if (week > weeksTarget) {\n week = weeksTarget;\n }\n return setWeekAll.call(this, input, week, weekday, dow, doy);\n }\n }\n\n function setWeekAll(weekYear, week, weekday, dow, doy) {\n var dayOfYearData = dayOfYearFromWeeks(weekYear, week, weekday, dow, doy),\n date = createUTCDate(dayOfYearData.year, 0, dayOfYearData.dayOfYear);\n\n this.year(date.getUTCFullYear());\n this.month(date.getUTCMonth());\n this.date(date.getUTCDate());\n return this;\n }\n\n // FORMATTING\n\n addFormatToken('Q', 0, 'Qo', 'quarter');\n\n // ALIASES\n\n addUnitAlias('quarter', 'Q');\n\n // PRIORITY\n\n addUnitPriority('quarter', 7);\n\n // PARSING\n\n addRegexToken('Q', match1);\n addParseToken('Q', function (input, array) {\n array[MONTH] = (toInt(input) - 1) * 3;\n });\n\n // MOMENTS\n\n function getSetQuarter (input) {\n return input == null ? Math.ceil((this.month() + 1) / 3) : this.month((input - 1) * 3 + this.month() % 3);\n }\n\n // FORMATTING\n\n addFormatToken('D', ['DD', 2], 'Do', 'date');\n\n // ALIASES\n\n addUnitAlias('date', 'D');\n\n // PRIORITY\n addUnitPriority('date', 9);\n\n // PARSING\n\n addRegexToken('D', match1to2);\n addRegexToken('DD', match1to2, match2);\n addRegexToken('Do', function (isStrict, locale) {\n // TODO: Remove \"ordinalParse\" fallback in next major release.\n return isStrict ?\n (locale._dayOfMonthOrdinalParse || locale._ordinalParse) :\n locale._dayOfMonthOrdinalParseLenient;\n });\n\n addParseToken(['D', 'DD'], DATE);\n addParseToken('Do', function (input, array) {\n array[DATE] = toInt(input.match(match1to2)[0]);\n });\n\n // MOMENTS\n\n var getSetDayOfMonth = makeGetSet('Date', true);\n\n // FORMATTING\n\n addFormatToken('DDD', ['DDDD', 3], 'DDDo', 'dayOfYear');\n\n // ALIASES\n\n addUnitAlias('dayOfYear', 'DDD');\n\n // PRIORITY\n addUnitPriority('dayOfYear', 4);\n\n // PARSING\n\n addRegexToken('DDD', match1to3);\n addRegexToken('DDDD', match3);\n addParseToken(['DDD', 'DDDD'], function (input, array, config) {\n config._dayOfYear = toInt(input);\n });\n\n // HELPERS\n\n // MOMENTS\n\n function getSetDayOfYear (input) {\n var dayOfYear = Math.round((this.clone().startOf('day') - this.clone().startOf('year')) / 864e5) + 1;\n return input == null ? dayOfYear : this.add((input - dayOfYear), 'd');\n }\n\n // FORMATTING\n\n addFormatToken('m', ['mm', 2], 0, 'minute');\n\n // ALIASES\n\n addUnitAlias('minute', 'm');\n\n // PRIORITY\n\n addUnitPriority('minute', 14);\n\n // PARSING\n\n addRegexToken('m', match1to2);\n addRegexToken('mm', match1to2, match2);\n addParseToken(['m', 'mm'], MINUTE);\n\n // MOMENTS\n\n var getSetMinute = makeGetSet('Minutes', false);\n\n // FORMATTING\n\n addFormatToken('s', ['ss', 2], 0, 'second');\n\n // ALIASES\n\n addUnitAlias('second', 's');\n\n // PRIORITY\n\n addUnitPriority('second', 15);\n\n // PARSING\n\n addRegexToken('s', match1to2);\n addRegexToken('ss', match1to2, match2);\n addParseToken(['s', 'ss'], SECOND);\n\n // MOMENTS\n\n var getSetSecond = makeGetSet('Seconds', false);\n\n // FORMATTING\n\n addFormatToken('S', 0, 0, function () {\n return ~~(this.millisecond() / 100);\n });\n\n addFormatToken(0, ['SS', 2], 0, function () {\n return ~~(this.millisecond() / 10);\n });\n\n addFormatToken(0, ['SSS', 3], 0, 'millisecond');\n addFormatToken(0, ['SSSS', 4], 0, function () {\n return this.millisecond() * 10;\n });\n addFormatToken(0, ['SSSSS', 5], 0, function () {\n return this.millisecond() * 100;\n });\n addFormatToken(0, ['SSSSSS', 6], 0, function () {\n return this.millisecond() * 1000;\n });\n addFormatToken(0, ['SSSSSSS', 7], 0, function () {\n return this.millisecond() * 10000;\n });\n addFormatToken(0, ['SSSSSSSS', 8], 0, function () {\n return this.millisecond() * 100000;\n });\n addFormatToken(0, ['SSSSSSSSS', 9], 0, function () {\n return this.millisecond() * 1000000;\n });\n\n\n // ALIASES\n\n addUnitAlias('millisecond', 'ms');\n\n // PRIORITY\n\n addUnitPriority('millisecond', 16);\n\n // PARSING\n\n addRegexToken('S', match1to3, match1);\n addRegexToken('SS', match1to3, match2);\n addRegexToken('SSS', match1to3, match3);\n\n var token;\n for (token = 'SSSS'; token.length <= 9; token += 'S') {\n addRegexToken(token, matchUnsigned);\n }\n\n function parseMs(input, array) {\n array[MILLISECOND] = toInt(('0.' + input) * 1000);\n }\n\n for (token = 'S'; token.length <= 9; token += 'S') {\n addParseToken(token, parseMs);\n }\n // MOMENTS\n\n var getSetMillisecond = makeGetSet('Milliseconds', false);\n\n // FORMATTING\n\n addFormatToken('z', 0, 0, 'zoneAbbr');\n addFormatToken('zz', 0, 0, 'zoneName');\n\n // MOMENTS\n\n function getZoneAbbr () {\n return this._isUTC ? 'UTC' : '';\n }\n\n function getZoneName () {\n return this._isUTC ? 'Coordinated Universal Time' : '';\n }\n\n var proto = Moment.prototype;\n\n proto.add = add;\n proto.calendar = calendar$1;\n proto.clone = clone;\n proto.diff = diff;\n proto.endOf = endOf;\n proto.format = format;\n proto.from = from;\n proto.fromNow = fromNow;\n proto.to = to;\n proto.toNow = toNow;\n proto.get = stringGet;\n proto.invalidAt = invalidAt;\n proto.isAfter = isAfter;\n proto.isBefore = isBefore;\n proto.isBetween = isBetween;\n proto.isSame = isSame;\n proto.isSameOrAfter = isSameOrAfter;\n proto.isSameOrBefore = isSameOrBefore;\n proto.isValid = isValid$2;\n proto.lang = lang;\n proto.locale = locale;\n proto.localeData = localeData;\n proto.max = prototypeMax;\n proto.min = prototypeMin;\n proto.parsingFlags = parsingFlags;\n proto.set = stringSet;\n proto.startOf = startOf;\n proto.subtract = subtract;\n proto.toArray = toArray;\n proto.toObject = toObject;\n proto.toDate = toDate;\n proto.toISOString = toISOString;\n proto.inspect = inspect;\n proto.toJSON = toJSON;\n proto.toString = toString;\n proto.unix = unix;\n proto.valueOf = valueOf;\n proto.creationData = creationData;\n proto.year = getSetYear;\n proto.isLeapYear = getIsLeapYear;\n proto.weekYear = getSetWeekYear;\n proto.isoWeekYear = getSetISOWeekYear;\n proto.quarter = proto.quarters = getSetQuarter;\n proto.month = getSetMonth;\n proto.daysInMonth = getDaysInMonth;\n proto.week = proto.weeks = getSetWeek;\n proto.isoWeek = proto.isoWeeks = getSetISOWeek;\n proto.weeksInYear = getWeeksInYear;\n proto.isoWeeksInYear = getISOWeeksInYear;\n proto.date = getSetDayOfMonth;\n proto.day = proto.days = getSetDayOfWeek;\n proto.weekday = getSetLocaleDayOfWeek;\n proto.isoWeekday = getSetISODayOfWeek;\n proto.dayOfYear = getSetDayOfYear;\n proto.hour = proto.hours = getSetHour;\n proto.minute = proto.minutes = getSetMinute;\n proto.second = proto.seconds = getSetSecond;\n proto.millisecond = proto.milliseconds = getSetMillisecond;\n proto.utcOffset = getSetOffset;\n proto.utc = setOffsetToUTC;\n proto.local = setOffsetToLocal;\n proto.parseZone = setOffsetToParsedOffset;\n proto.hasAlignedHourOffset = hasAlignedHourOffset;\n proto.isDST = isDaylightSavingTime;\n proto.isLocal = isLocal;\n proto.isUtcOffset = isUtcOffset;\n proto.isUtc = isUtc;\n proto.isUTC = isUtc;\n proto.zoneAbbr = getZoneAbbr;\n proto.zoneName = getZoneName;\n proto.dates = deprecate('dates accessor is deprecated. Use date instead.', getSetDayOfMonth);\n proto.months = deprecate('months accessor is deprecated. Use month instead', getSetMonth);\n proto.years = deprecate('years accessor is deprecated. Use year instead', getSetYear);\n proto.zone = deprecate('moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/', getSetZone);\n proto.isDSTShifted = deprecate('isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information', isDaylightSavingTimeShifted);\n\n function createUnix (input) {\n return createLocal(input * 1000);\n }\n\n function createInZone () {\n return createLocal.apply(null, arguments).parseZone();\n }\n\n function preParsePostFormat (string) {\n return string;\n }\n\n var proto$1 = Locale.prototype;\n\n proto$1.calendar = calendar;\n proto$1.longDateFormat = longDateFormat;\n proto$1.invalidDate = invalidDate;\n proto$1.ordinal = ordinal;\n proto$1.preparse = preParsePostFormat;\n proto$1.postformat = preParsePostFormat;\n proto$1.relativeTime = relativeTime;\n proto$1.pastFuture = pastFuture;\n proto$1.set = set;\n\n proto$1.months = localeMonths;\n proto$1.monthsShort = localeMonthsShort;\n proto$1.monthsParse = localeMonthsParse;\n proto$1.monthsRegex = monthsRegex;\n proto$1.monthsShortRegex = monthsShortRegex;\n proto$1.week = localeWeek;\n proto$1.firstDayOfYear = localeFirstDayOfYear;\n proto$1.firstDayOfWeek = localeFirstDayOfWeek;\n\n proto$1.weekdays = localeWeekdays;\n proto$1.weekdaysMin = localeWeekdaysMin;\n proto$1.weekdaysShort = localeWeekdaysShort;\n proto$1.weekdaysParse = localeWeekdaysParse;\n\n proto$1.weekdaysRegex = weekdaysRegex;\n proto$1.weekdaysShortRegex = weekdaysShortRegex;\n proto$1.weekdaysMinRegex = weekdaysMinRegex;\n\n proto$1.isPM = localeIsPM;\n proto$1.meridiem = localeMeridiem;\n\n function get$1 (format, index, field, setter) {\n var locale = getLocale();\n var utc = createUTC().set(setter, index);\n return locale[field](utc, format);\n }\n\n function listMonthsImpl (format, index, field) {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n\n if (index != null) {\n return get$1(format, index, field, 'month');\n }\n\n var i;\n var out = [];\n for (i = 0; i < 12; i++) {\n out[i] = get$1(format, i, field, 'month');\n }\n return out;\n }\n\n // ()\n // (5)\n // (fmt, 5)\n // (fmt)\n // (true)\n // (true, 5)\n // (true, fmt, 5)\n // (true, fmt)\n function listWeekdaysImpl (localeSorted, format, index, field) {\n if (typeof localeSorted === 'boolean') {\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n } else {\n format = localeSorted;\n index = format;\n localeSorted = false;\n\n if (isNumber(format)) {\n index = format;\n format = undefined;\n }\n\n format = format || '';\n }\n\n var locale = getLocale(),\n shift = localeSorted ? locale._week.dow : 0;\n\n if (index != null) {\n return get$1(format, (index + shift) % 7, field, 'day');\n }\n\n var i;\n var out = [];\n for (i = 0; i < 7; i++) {\n out[i] = get$1(format, (i + shift) % 7, field, 'day');\n }\n return out;\n }\n\n function listMonths (format, index) {\n return listMonthsImpl(format, index, 'months');\n }\n\n function listMonthsShort (format, index) {\n return listMonthsImpl(format, index, 'monthsShort');\n }\n\n function listWeekdays (localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdays');\n }\n\n function listWeekdaysShort (localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysShort');\n }\n\n function listWeekdaysMin (localeSorted, format, index) {\n return listWeekdaysImpl(localeSorted, format, index, 'weekdaysMin');\n }\n\n getSetGlobalLocale('en', {\n dayOfMonthOrdinalParse: /\\d{1,2}(th|st|nd|rd)/,\n ordinal : function (number) {\n var b = number % 10,\n output = (toInt(number % 100 / 10) === 1) ? 'th' :\n (b === 1) ? 'st' :\n (b === 2) ? 'nd' :\n (b === 3) ? 'rd' : 'th';\n return number + output;\n }\n });\n\n // Side effect imports\n\n hooks.lang = deprecate('moment.lang is deprecated. Use moment.locale instead.', getSetGlobalLocale);\n hooks.langData = deprecate('moment.langData is deprecated. Use moment.localeData instead.', getLocale);\n\n var mathAbs = Math.abs;\n\n function abs () {\n var data = this._data;\n\n this._milliseconds = mathAbs(this._milliseconds);\n this._days = mathAbs(this._days);\n this._months = mathAbs(this._months);\n\n data.milliseconds = mathAbs(data.milliseconds);\n data.seconds = mathAbs(data.seconds);\n data.minutes = mathAbs(data.minutes);\n data.hours = mathAbs(data.hours);\n data.months = mathAbs(data.months);\n data.years = mathAbs(data.years);\n\n return this;\n }\n\n function addSubtract$1 (duration, input, value, direction) {\n var other = createDuration(input, value);\n\n duration._milliseconds += direction * other._milliseconds;\n duration._days += direction * other._days;\n duration._months += direction * other._months;\n\n return duration._bubble();\n }\n\n // supports only 2.0-style add(1, 's') or add(duration)\n function add$1 (input, value) {\n return addSubtract$1(this, input, value, 1);\n }\n\n // supports only 2.0-style subtract(1, 's') or subtract(duration)\n function subtract$1 (input, value) {\n return addSubtract$1(this, input, value, -1);\n }\n\n function absCeil (number) {\n if (number < 0) {\n return Math.floor(number);\n } else {\n return Math.ceil(number);\n }\n }\n\n function bubble () {\n var milliseconds = this._milliseconds;\n var days = this._days;\n var months = this._months;\n var data = this._data;\n var seconds, minutes, hours, years, monthsFromDays;\n\n // if we have a mix of positive and negative values, bubble down first\n // check: https://github.com/moment/moment/issues/2166\n if (!((milliseconds >= 0 && days >= 0 && months >= 0) ||\n (milliseconds <= 0 && days <= 0 && months <= 0))) {\n milliseconds += absCeil(monthsToDays(months) + days) * 864e5;\n days = 0;\n months = 0;\n }\n\n // The following code bubbles up values, see the tests for\n // examples of what that means.\n data.milliseconds = milliseconds % 1000;\n\n seconds = absFloor(milliseconds / 1000);\n data.seconds = seconds % 60;\n\n minutes = absFloor(seconds / 60);\n data.minutes = minutes % 60;\n\n hours = absFloor(minutes / 60);\n data.hours = hours % 24;\n\n days += absFloor(hours / 24);\n\n // convert days to months\n monthsFromDays = absFloor(daysToMonths(days));\n months += monthsFromDays;\n days -= absCeil(monthsToDays(monthsFromDays));\n\n // 12 months -> 1 year\n years = absFloor(months / 12);\n months %= 12;\n\n data.days = days;\n data.months = months;\n data.years = years;\n\n return this;\n }\n\n function daysToMonths (days) {\n // 400 years have 146097 days (taking into account leap year rules)\n // 400 years have 12 months === 4800\n return days * 4800 / 146097;\n }\n\n function monthsToDays (months) {\n // the reverse of daysToMonths\n return months * 146097 / 4800;\n }\n\n function as (units) {\n if (!this.isValid()) {\n return NaN;\n }\n var days;\n var months;\n var milliseconds = this._milliseconds;\n\n units = normalizeUnits(units);\n\n if (units === 'month' || units === 'quarter' || units === 'year') {\n days = this._days + milliseconds / 864e5;\n months = this._months + daysToMonths(days);\n switch (units) {\n case 'month': return months;\n case 'quarter': return months / 3;\n case 'year': return months / 12;\n }\n } else {\n // handle milliseconds separately because of floating point math errors (issue #1867)\n days = this._days + Math.round(monthsToDays(this._months));\n switch (units) {\n case 'week' : return days / 7 + milliseconds / 6048e5;\n case 'day' : return days + milliseconds / 864e5;\n case 'hour' : return days * 24 + milliseconds / 36e5;\n case 'minute' : return days * 1440 + milliseconds / 6e4;\n case 'second' : return days * 86400 + milliseconds / 1000;\n // Math.floor prevents floating point math errors here\n case 'millisecond': return Math.floor(days * 864e5) + milliseconds;\n default: throw new Error('Unknown unit ' + units);\n }\n }\n }\n\n // TODO: Use this.as('ms')?\n function valueOf$1 () {\n if (!this.isValid()) {\n return NaN;\n }\n return (\n this._milliseconds +\n this._days * 864e5 +\n (this._months % 12) * 2592e6 +\n toInt(this._months / 12) * 31536e6\n );\n }\n\n function makeAs (alias) {\n return function () {\n return this.as(alias);\n };\n }\n\n var asMilliseconds = makeAs('ms');\n var asSeconds = makeAs('s');\n var asMinutes = makeAs('m');\n var asHours = makeAs('h');\n var asDays = makeAs('d');\n var asWeeks = makeAs('w');\n var asMonths = makeAs('M');\n var asQuarters = makeAs('Q');\n var asYears = makeAs('y');\n\n function clone$1 () {\n return createDuration(this);\n }\n\n function get$2 (units) {\n units = normalizeUnits(units);\n return this.isValid() ? this[units + 's']() : NaN;\n }\n\n function makeGetter(name) {\n return function () {\n return this.isValid() ? this._data[name] : NaN;\n };\n }\n\n var milliseconds = makeGetter('milliseconds');\n var seconds = makeGetter('seconds');\n var minutes = makeGetter('minutes');\n var hours = makeGetter('hours');\n var days = makeGetter('days');\n var months = makeGetter('months');\n var years = makeGetter('years');\n\n function weeks () {\n return absFloor(this.days() / 7);\n }\n\n var round = Math.round;\n var thresholds = {\n ss: 44, // a few seconds to seconds\n s : 45, // seconds to minute\n m : 45, // minutes to hour\n h : 22, // hours to day\n d : 26, // days to month\n M : 11 // months to year\n };\n\n // helper function for moment.fn.from, moment.fn.fromNow, and moment.duration.fn.humanize\n function substituteTimeAgo(string, number, withoutSuffix, isFuture, locale) {\n return locale.relativeTime(number || 1, !!withoutSuffix, string, isFuture);\n }\n\n function relativeTime$1 (posNegDuration, withoutSuffix, locale) {\n var duration = createDuration(posNegDuration).abs();\n var seconds = round(duration.as('s'));\n var minutes = round(duration.as('m'));\n var hours = round(duration.as('h'));\n var days = round(duration.as('d'));\n var months = round(duration.as('M'));\n var years = round(duration.as('y'));\n\n var a = seconds <= thresholds.ss && ['s', seconds] ||\n seconds < thresholds.s && ['ss', seconds] ||\n minutes <= 1 && ['m'] ||\n minutes < thresholds.m && ['mm', minutes] ||\n hours <= 1 && ['h'] ||\n hours < thresholds.h && ['hh', hours] ||\n days <= 1 && ['d'] ||\n days < thresholds.d && ['dd', days] ||\n months <= 1 && ['M'] ||\n months < thresholds.M && ['MM', months] ||\n years <= 1 && ['y'] || ['yy', years];\n\n a[2] = withoutSuffix;\n a[3] = +posNegDuration > 0;\n a[4] = locale;\n return substituteTimeAgo.apply(null, a);\n }\n\n // This function allows you to set the rounding function for relative time strings\n function getSetRelativeTimeRounding (roundingFunction) {\n if (roundingFunction === undefined) {\n return round;\n }\n if (typeof(roundingFunction) === 'function') {\n round = roundingFunction;\n return true;\n }\n return false;\n }\n\n // This function allows you to set a threshold for relative time strings\n function getSetRelativeTimeThreshold (threshold, limit) {\n if (thresholds[threshold] === undefined) {\n return false;\n }\n if (limit === undefined) {\n return thresholds[threshold];\n }\n thresholds[threshold] = limit;\n if (threshold === 's') {\n thresholds.ss = limit - 1;\n }\n return true;\n }\n\n function humanize (withSuffix) {\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var locale = this.localeData();\n var output = relativeTime$1(this, !withSuffix, locale);\n\n if (withSuffix) {\n output = locale.pastFuture(+this, output);\n }\n\n return locale.postformat(output);\n }\n\n var abs$1 = Math.abs;\n\n function sign(x) {\n return ((x > 0) - (x < 0)) || +x;\n }\n\n function toISOString$1() {\n // for ISO strings we do not use the normal bubbling rules:\n // * milliseconds bubble up until they become hours\n // * days do not bubble at all\n // * months bubble up until they become years\n // This is because there is no context-free conversion between hours and days\n // (think of clock changes)\n // and also not between days and months (28-31 days per month)\n if (!this.isValid()) {\n return this.localeData().invalidDate();\n }\n\n var seconds = abs$1(this._milliseconds) / 1000;\n var days = abs$1(this._days);\n var months = abs$1(this._months);\n var minutes, hours, years;\n\n // 3600 seconds -> 60 minutes -> 1 hour\n minutes = absFloor(seconds / 60);\n hours = absFloor(minutes / 60);\n seconds %= 60;\n minutes %= 60;\n\n // 12 months -> 1 year\n years = absFloor(months / 12);\n months %= 12;\n\n\n // inspired by https://github.com/dordille/moment-isoduration/blob/master/moment.isoduration.js\n var Y = years;\n var M = months;\n var D = days;\n var h = hours;\n var m = minutes;\n var s = seconds ? seconds.toFixed(3).replace(/\\.?0+$/, '') : '';\n var total = this.asSeconds();\n\n if (!total) {\n // this is the same as C#'s (Noda) and python (isodate)...\n // but not other JS (goog.date)\n return 'P0D';\n }\n\n var totalSign = total < 0 ? '-' : '';\n var ymSign = sign(this._months) !== sign(total) ? '-' : '';\n var daysSign = sign(this._days) !== sign(total) ? '-' : '';\n var hmsSign = sign(this._milliseconds) !== sign(total) ? '-' : '';\n\n return totalSign + 'P' +\n (Y ? ymSign + Y + 'Y' : '') +\n (M ? ymSign + M + 'M' : '') +\n (D ? daysSign + D + 'D' : '') +\n ((h || m || s) ? 'T' : '') +\n (h ? hmsSign + h + 'H' : '') +\n (m ? hmsSign + m + 'M' : '') +\n (s ? hmsSign + s + 'S' : '');\n }\n\n var proto$2 = Duration.prototype;\n\n proto$2.isValid = isValid$1;\n proto$2.abs = abs;\n proto$2.add = add$1;\n proto$2.subtract = subtract$1;\n proto$2.as = as;\n proto$2.asMilliseconds = asMilliseconds;\n proto$2.asSeconds = asSeconds;\n proto$2.asMinutes = asMinutes;\n proto$2.asHours = asHours;\n proto$2.asDays = asDays;\n proto$2.asWeeks = asWeeks;\n proto$2.asMonths = asMonths;\n proto$2.asQuarters = asQuarters;\n proto$2.asYears = asYears;\n proto$2.valueOf = valueOf$1;\n proto$2._bubble = bubble;\n proto$2.clone = clone$1;\n proto$2.get = get$2;\n proto$2.milliseconds = milliseconds;\n proto$2.seconds = seconds;\n proto$2.minutes = minutes;\n proto$2.hours = hours;\n proto$2.days = days;\n proto$2.weeks = weeks;\n proto$2.months = months;\n proto$2.years = years;\n proto$2.humanize = humanize;\n proto$2.toISOString = toISOString$1;\n proto$2.toString = toISOString$1;\n proto$2.toJSON = toISOString$1;\n proto$2.locale = locale;\n proto$2.localeData = localeData;\n\n proto$2.toIsoString = deprecate('toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)', toISOString$1);\n proto$2.lang = lang;\n\n // Side effect imports\n\n // FORMATTING\n\n addFormatToken('X', 0, 0, 'unix');\n addFormatToken('x', 0, 0, 'valueOf');\n\n // PARSING\n\n addRegexToken('x', matchSigned);\n addRegexToken('X', matchTimestamp);\n addParseToken('X', function (input, array, config) {\n config._d = new Date(parseFloat(input, 10) * 1000);\n });\n addParseToken('x', function (input, array, config) {\n config._d = new Date(toInt(input));\n });\n\n // Side effect imports\n\n\n hooks.version = '2.24.0';\n\n setHookCallback(createLocal);\n\n hooks.fn = proto;\n hooks.min = min;\n hooks.max = max;\n hooks.now = now;\n hooks.utc = createUTC;\n hooks.unix = createUnix;\n hooks.months = listMonths;\n hooks.isDate = isDate;\n hooks.locale = getSetGlobalLocale;\n hooks.invalid = createInvalid;\n hooks.duration = createDuration;\n hooks.isMoment = isMoment;\n hooks.weekdays = listWeekdays;\n hooks.parseZone = createInZone;\n hooks.localeData = getLocale;\n hooks.isDuration = isDuration;\n hooks.monthsShort = listMonthsShort;\n hooks.weekdaysMin = listWeekdaysMin;\n hooks.defineLocale = defineLocale;\n hooks.updateLocale = updateLocale;\n hooks.locales = listLocales;\n hooks.weekdaysShort = listWeekdaysShort;\n hooks.normalizeUnits = normalizeUnits;\n hooks.relativeTimeRounding = getSetRelativeTimeRounding;\n hooks.relativeTimeThreshold = getSetRelativeTimeThreshold;\n hooks.calendarFormat = getCalendarFormat;\n hooks.prototype = proto;\n\n // currently HTML5 input type only supports 24-hour formats\n hooks.HTML5_FMT = {\n DATETIME_LOCAL: 'YYYY-MM-DDTHH:mm', // \n DATETIME_LOCAL_SECONDS: 'YYYY-MM-DDTHH:mm:ss', // \n DATETIME_LOCAL_MS: 'YYYY-MM-DDTHH:mm:ss.SSS', // \n DATE: 'YYYY-MM-DD', // \n TIME: 'HH:mm', // \n TIME_SECONDS: 'HH:mm:ss', // \n TIME_MS: 'HH:mm:ss.SSS', // \n WEEK: 'GGGG-[W]WW', // \n MONTH: 'YYYY-MM' // \n };\n\n return hooks;\n\n})));\n","// first check if moment.js is already loaded in the browser window, if so,\n// use this instance. Else, load via commonjs.\nmodule.exports = (typeof window !== 'undefined') && window['moment'] || require('moment');","module.exports = require('../../es/object/define-property');\n","module.exports = require(\"core-js-pure/stable/object/define-property\");","var $ = require('../internals/export');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar defineProperties = require('../internals/object-define-properties');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\n$({ target: 'Object', stat: true, forced: !DESCRIPTORS, sham: !DESCRIPTORS }, {\n defineProperties: defineProperties\n});\n","require('../../modules/es.object.define-properties');\nvar path = require('../../internals/path');\n\nvar Object = path.Object;\n\nvar defineProperties = module.exports = function defineProperties(T, D) {\n return Object.defineProperties(T, D);\n};\n\nif (Object.defineProperties.sham) defineProperties.sham = true;\n","module.exports = require('../../es/object/define-properties');\n","module.exports = require(\"core-js-pure/stable/object/define-properties\");","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var $ = require('../internals/export');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar ownKeys = require('../internals/own-keys');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar createProperty = require('../internals/create-property');\n\n// `Object.getOwnPropertyDescriptors` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors\n$({ target: 'Object', stat: true, sham: !DESCRIPTORS }, {\n getOwnPropertyDescriptors: function getOwnPropertyDescriptors(object) {\n var O = toIndexedObject(object);\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n var keys = ownKeys(O);\n var result = {};\n var index = 0;\n var key, descriptor;\n while (keys.length > index) {\n descriptor = getOwnPropertyDescriptor(O, key = keys[index++]);\n if (descriptor !== undefined) createProperty(result, key, descriptor);\n }\n return result;\n }\n});\n","require('../../modules/es.object.get-own-property-descriptors');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.getOwnPropertyDescriptors;\n","module.exports = require('../../es/object/get-own-property-descriptors');\n","module.exports = require(\"core-js-pure/stable/object/get-own-property-descriptors\");","var $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar nativeGetOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar FAILS_ON_PRIMITIVES = fails(function () { nativeGetOwnPropertyDescriptor(1); });\nvar FORCED = !DESCRIPTORS || FAILS_ON_PRIMITIVES;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\n$({ target: 'Object', stat: true, forced: FORCED, sham: !DESCRIPTORS }, {\n getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) {\n return nativeGetOwnPropertyDescriptor(toIndexedObject(it), key);\n }\n});\n","require('../../modules/es.object.get-own-property-descriptor');\nvar path = require('../../internals/path');\n\nvar Object = path.Object;\n\nvar getOwnPropertyDescriptor = module.exports = function getOwnPropertyDescriptor(it, key) {\n return Object.getOwnPropertyDescriptor(it, key);\n};\n\nif (Object.getOwnPropertyDescriptor.sham) getOwnPropertyDescriptor.sham = true;\n","module.exports = require('../../es/object/get-own-property-descriptor');\n","module.exports = require(\"core-js-pure/stable/object/get-own-property-descriptor\");","require('../../modules/es.symbol');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.getOwnPropertySymbols;\n","module.exports = require('../../es/object/get-own-property-symbols');\n","module.exports = require(\"core-js-pure/stable/object/get-own-property-symbols\");","var $ = require('../internals/export');\nvar toObject = require('../internals/to-object');\nvar nativeKeys = require('../internals/object-keys');\nvar fails = require('../internals/fails');\n\nvar FAILS_ON_PRIMITIVES = fails(function () { nativeKeys(1); });\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\n$({ target: 'Object', stat: true, forced: FAILS_ON_PRIMITIVES }, {\n keys: function keys(it) {\n return nativeKeys(toObject(it));\n }\n});\n","require('../../modules/es.object.keys');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.keys;\n","module.exports = require('../../es/object/keys');\n","module.exports = require(\"core-js-pure/stable/object/keys\");","var _Object$defineProperty = require(\"../core-js/object/define-property\");\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n _Object$defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nmodule.exports = _defineProperty;","// utility functions\n\nexport * from \"vis-util\";\nimport * as util from \"vis-util\";\nimport { getType, isNumber, isString } from \"vis-util\";\n\nimport moment from \"moment\";\n\n// parse ASP.Net Date pattern,\n// for example '/Date(1198908717056)/' or '/Date(1198908717056-0700)/'\n// code from http://momentjs.com/\nconst ASPDateRegex = /^\\/?Date\\((-?\\d+)/i;\n\n/**\n * Convert an object into another type\n *\n * @param object - Value of unknown type.\n * @param type - Name of the desired type.\n *\n * @returns Object in the desired type.\n * @throws Error\n */\nexport function convert(object, type) {\n let match;\n\n if (object === undefined) {\n return undefined;\n }\n if (object === null) {\n return null;\n }\n\n if (!type) {\n return object;\n }\n if (!(typeof type === \"string\") && !(type instanceof String)) {\n throw new Error(\"Type must be a string\");\n }\n\n //noinspection FallthroughInSwitchStatementJS\n switch (type) {\n case \"boolean\":\n case \"Boolean\":\n return Boolean(object);\n\n case \"number\":\n case \"Number\":\n if (isString(object) && !isNaN(Date.parse(object))) {\n return moment(object).valueOf();\n } else {\n // @TODO: I don't think that Number and String constructors are a good idea.\n // This could also fail if the object doesn't have valueOf method or if it's redefined.\n // For example: Object.create(null) or { valueOf: 7 }.\n return Number(object.valueOf());\n }\n case \"string\":\n case \"String\":\n return String(object);\n\n case \"Date\":\n if (isNumber(object)) {\n return new Date(object);\n }\n if (object instanceof Date) {\n return new Date(object.valueOf());\n } else if (moment.isMoment(object)) {\n return new Date(object.valueOf());\n }\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])); // parse number\n } else {\n return moment(new Date(object)).toDate(); // parse string\n }\n } else {\n throw new Error(\n \"Cannot convert object of type \" + getType(object) + \" to type Date\"\n );\n }\n\n case \"Moment\":\n if (isNumber(object)) {\n return moment(object);\n }\n if (object instanceof Date) {\n return moment(object.valueOf());\n } else if (moment.isMoment(object)) {\n return moment(object);\n }\n if (isString(object)) {\n match = ASPDateRegex.exec(object);\n if (match) {\n // object is an ASP date\n return moment(Number(match[1])); // parse number\n } else {\n return moment(object); // parse string\n }\n } else {\n throw new Error(\n \"Cannot convert object of type \" + getType(object) + \" to type Date\"\n );\n }\n\n case \"ISODate\":\n if (isNumber(object)) {\n return new Date(object);\n } else if (object instanceof Date) {\n return object.toISOString();\n } else if (moment.isMoment(object)) {\n return object.toDate().toISOString();\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n if (match) {\n // object is an ASP date\n return new Date(Number(match[1])).toISOString(); // parse number\n } else {\n return moment(object).format(); // ISO 8601\n }\n } else {\n throw new Error(\n \"Cannot convert object of type \" +\n getType(object) +\n \" to type ISODate\"\n );\n }\n\n case \"ASPDate\":\n if (isNumber(object)) {\n return \"/Date(\" + object + \")/\";\n } else if (object instanceof Date || moment.isMoment(object)) {\n return \"/Date(\" + object.valueOf() + \")/\";\n } else if (isString(object)) {\n match = ASPDateRegex.exec(object);\n let value;\n if (match) {\n // object is an ASP date\n value = new Date(Number(match[1])).valueOf(); // parse number\n } else {\n value = new Date(object).valueOf(); // parse string\n }\n return \"/Date(\" + value + \")/\";\n } else {\n throw new Error(\n \"Cannot convert object of type \" +\n getType(object) +\n \" to type ASPDate\"\n );\n }\n\n default:\n throw new Error(`Unknown type ${type}`);\n }\n}\n\nexport default {\n ...util,\n convert\n};\n","// a string of all valid unicode whitespaces\n// eslint-disable-next-line max-len\nmodule.exports = '\\u0009\\u000A\\u000B\\u000C\\u000D\\u0020\\u00A0\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n","var requireObjectCoercible = require('../internals/require-object-coercible');\nvar whitespaces = require('../internals/whitespaces');\n\nvar whitespace = '[' + whitespaces + ']';\nvar ltrim = RegExp('^' + whitespace + whitespace + '*');\nvar rtrim = RegExp(whitespace + whitespace + '*$');\n\n// `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\nvar createMethod = function (TYPE) {\n return function ($this) {\n var string = String(requireObjectCoercible($this));\n if (TYPE & 1) string = string.replace(ltrim, '');\n if (TYPE & 2) string = string.replace(rtrim, '');\n return string;\n };\n};\n\nmodule.exports = {\n // `String.prototype.{ trimLeft, trimStart }` methods\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart\n start: createMethod(1),\n // `String.prototype.{ trimRight, trimEnd }` methods\n // https://tc39.github.io/ecma262/#sec-string.prototype.trimend\n end: createMethod(2),\n // `String.prototype.trim` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.trim\n trim: createMethod(3)\n};\n","var global = require('../internals/global');\nvar trim = require('../internals/string-trim').trim;\nvar whitespaces = require('../internals/whitespaces');\n\nvar nativeParseFloat = global.parseFloat;\nvar FORCED = 1 / nativeParseFloat(whitespaces + '-0') !== -Infinity;\n\n// `parseFloat` method\n// https://tc39.github.io/ecma262/#sec-parsefloat-string\nmodule.exports = FORCED ? function parseFloat(string) {\n var trimmedString = trim(String(string));\n var result = nativeParseFloat(trimmedString);\n return result === 0 && trimmedString.charAt(0) == '-' ? -0 : result;\n} : nativeParseFloat;\n","var $ = require('../internals/export');\nvar parseFloatImplementation = require('../internals/parse-float');\n\n// `parseFloat` method\n// https://tc39.github.io/ecma262/#sec-parsefloat-string\n$({ global: true, forced: parseFloat != parseFloatImplementation }, {\n parseFloat: parseFloatImplementation\n});\n","require('../modules/es.parse-float');\nvar path = require('../internals/path');\n\nmodule.exports = path.parseFloat;\n","module.exports = require('../es/parse-float');\n","module.exports = require(\"core-js-pure/stable/parse-float\");","var $ = require('../internals/export');\n\n// `Date.now` method\n// https://tc39.github.io/ecma262/#sec-date.now\n$({ target: 'Date', stat: true }, {\n now: function now() {\n return new Date().getTime();\n }\n});\n","require('../../modules/es.date.now');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Date.now;\n","module.exports = require('../../es/date/now');\n","module.exports = require(\"core-js-pure/stable/date/now\");","var core = require('../../internals/path');\nvar $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });\n\nmodule.exports = function stringify(it) { // eslint-disable-line no-unused-vars\n return $JSON.stringify.apply($JSON, arguments);\n};\n","module.exports = require('../../es/json/stringify');\n","module.exports = require(\"core-js-pure/stable/json/stringify\");","require('../../../modules/es.array.concat');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').concat;\n","var concat = require('../array/virtual/concat');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.concat;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.concat) ? concat : own;\n};\n","module.exports = require('../../es/instance/concat');\n","module.exports = require(\"core-js-pure/stable/instance/concat\");","import util from '../../util';\n\n/** Prototype for visual components */\nexport default class Component {\n /**\n * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} [body]\n * @param {Object} [options]\n */\n constructor(body, options) { // eslint-disable-line no-unused-vars\n this.options = null;\n this.props = null;\n }\n\n /**\n * Set options for the component. The new options will be merged into the\n * current options.\n * @param {Object} options\n */\n setOptions(options) {\n if (options) {\n util.extend(this.options, options);\n }\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n // should be implemented by the component\n return false;\n }\n\n /**\n * Destroy the component. Cleanup DOM and event listeners\n */\n destroy() {\n // should be implemented by the component\n }\n\n /**\n * Test whether the component is resized since the last time _isResized() was\n * called.\n * @return {Boolean} Returns true if the component is resized\n * @protected\n */\n _isResized() {\n const resized = (\n this.props._previousWidth !== this.props.width ||\n this.props._previousHeight !== this.props.height\n );\n\n this.props._previousWidth = this.props.width;\n this.props._previousHeight = this.props.height;\n\n return resized;\n }\n}\n","'use strict';\nvar $ = require('../internals/export');\nvar aFunction = require('../internals/a-function');\nvar toObject = require('../internals/to-object');\nvar fails = require('../internals/fails');\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\nvar nativeSort = [].sort;\nvar test = [1, 2, 3];\n\n// IE8-\nvar FAILS_ON_UNDEFINED = fails(function () {\n test.sort(undefined);\n});\n// V8 bug\nvar FAILS_ON_NULL = fails(function () {\n test.sort(null);\n});\n// Old WebKit\nvar SLOPPY_METHOD = sloppyArrayMethod('sort');\n\nvar FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || SLOPPY_METHOD;\n\n// `Array.prototype.sort` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.sort\n$({ target: 'Array', proto: true, forced: FORCED }, {\n sort: function sort(comparefn) {\n return comparefn === undefined\n ? nativeSort.call(toObject(this))\n : nativeSort.call(toObject(this), aFunction(comparefn));\n }\n});\n","require('../../../modules/es.array.sort');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').sort;\n","var sort = require('../array/virtual/sort');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.sort;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.sort) ? sort : own;\n};\n","module.exports = require('../../es/instance/sort');\n","module.exports = require(\"core-js-pure/stable/instance/sort\");","'use strict';\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.repeat` method implementation\n// https://tc39.github.io/ecma262/#sec-string.prototype.repeat\nmodule.exports = ''.repeat || function repeat(count) {\n var str = String(requireObjectCoercible(this));\n var result = '';\n var n = toInteger(count);\n if (n < 0 || n == Infinity) throw RangeError('Wrong number of repetitions');\n for (;n > 0; (n >>>= 1) && (str += str)) if (n & 1) result += str;\n return result;\n};\n","var $ = require('../internals/export');\nvar repeat = require('../internals/string-repeat');\n\n// `String.prototype.repeat` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.repeat\n$({ target: 'String', proto: true }, {\n repeat: repeat\n});\n","require('../../../modules/es.string.repeat');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('String').repeat;\n","var repeat = require('../string/virtual/repeat');\n\nvar StringPrototype = String.prototype;\n\nmodule.exports = function (it) {\n var own = it.repeat;\n return typeof it === 'string' || it === StringPrototype\n || (it instanceof String && own === StringPrototype.repeat) ? repeat : own;\n};\n","module.exports = require('../../es/instance/repeat');\n","module.exports = require(\"core-js-pure/stable/instance/repeat\");","\n/**\n * used in Core to convert the options into a volatile variable\n * \n * @param {function} moment\n * @param {Object} body\n * @param {Array | Object} hiddenDates\n * @returns {number}\n */\nexport function convertHiddenOptions(moment, body, hiddenDates) {\n if (hiddenDates && !Array.isArray(hiddenDates)) {\n return convertHiddenOptions(moment, body, [hiddenDates])\n }\n\n body.hiddenDates = [];\n if (hiddenDates) {\n if (Array.isArray(hiddenDates) == true) {\n for (let i = 0; i < hiddenDates.length; i++) {\n if (hiddenDates[i].repeat === undefined) {\n const dateItem = {};\n dateItem.start = moment(hiddenDates[i].start).toDate().valueOf();\n dateItem.end = moment(hiddenDates[i].end).toDate().valueOf();\n body.hiddenDates.push(dateItem);\n }\n }\n body.hiddenDates.sort((a, b) => a.start - b.start); // sort by start time\n }\n }\n}\n\n/**\n * create new entrees for the repeating hidden dates\n *\n * @param {function} moment\n * @param {Object} body\n * @param {Array | Object} hiddenDates\n * @returns {null}\n */\nexport function updateHiddenDates(moment, body, hiddenDates) {\n if (hiddenDates && !Array.isArray(hiddenDates)) {\n return updateHiddenDates(moment, body, [hiddenDates])\n }\n\n if (hiddenDates && body.domProps.centerContainer.width !== undefined) {\n convertHiddenOptions(moment, body, hiddenDates);\n\n const start = moment(body.range.start);\n const end = moment(body.range.end);\n\n const totalRange = (body.range.end - body.range.start);\n const pixelTime = totalRange / body.domProps.centerContainer.width;\n\n for (let i = 0; i < hiddenDates.length; i++) {\n if (hiddenDates[i].repeat !== undefined) {\n const startDate = moment(hiddenDates[i].start);\n let endDate = moment(hiddenDates[i].end);\n\n if (startDate._d == \"Invalid Date\") {\n throw new Error(`Supplied start date is not valid: ${hiddenDates[i].start}`);\n }\n if (endDate._d == \"Invalid Date\") {\n throw new Error(`Supplied end date is not valid: ${hiddenDates[i].end}`);\n }\n\n const duration = endDate - startDate;\n if (duration >= 4 * pixelTime) {\n\n let offset = 0;\n const runUntil = end.clone();\n switch (hiddenDates[i].repeat) {\n case \"daily\": // case of time\n if (startDate.day() != endDate.day()) {\n offset = 1;\n }\n startDate.dayOfYear(start.dayOfYear());\n startDate.year(start.year());\n startDate.subtract(7,'days');\n\n endDate.dayOfYear(start.dayOfYear());\n endDate.year(start.year());\n endDate.subtract(7 - offset,'days');\n\n runUntil.add(1, 'weeks');\n break;\n case \"weekly\": {\n const dayOffset = endDate.diff(startDate,'days');\n const day = startDate.day();\n\n // set the start date to the range.start\n startDate.date(start.date());\n startDate.month(start.month());\n startDate.year(start.year());\n endDate = startDate.clone();\n\n // force\n startDate.day(day);\n endDate.day(day);\n endDate.add(dayOffset,'days');\n\n startDate.subtract(1,'weeks');\n endDate.subtract(1,'weeks');\n\n runUntil.add(1, 'weeks');\n break;\n }\n case \"monthly\":\n if (startDate.month() != endDate.month()) {\n offset = 1;\n }\n startDate.month(start.month());\n startDate.year(start.year());\n startDate.subtract(1,'months');\n\n endDate.month(start.month());\n endDate.year(start.year());\n endDate.subtract(1,'months');\n endDate.add(offset,'months');\n\n runUntil.add(1, 'months');\n break;\n case \"yearly\":\n if (startDate.year() != endDate.year()) {\n offset = 1;\n }\n startDate.year(start.year());\n startDate.subtract(1,'years');\n endDate.year(start.year());\n endDate.subtract(1,'years');\n endDate.add(offset,'years');\n\n runUntil.add(1, 'years');\n break;\n default:\n console.log(\"Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:\", hiddenDates[i].repeat);\n return;\n }\n while (startDate < runUntil) {\n body.hiddenDates.push({start: startDate.valueOf(), end: endDate.valueOf()});\n switch (hiddenDates[i].repeat) {\n case \"daily\":\n startDate.add(1, 'days');\n endDate.add(1, 'days');\n break;\n case \"weekly\":\n startDate.add(1, 'weeks');\n endDate.add(1, 'weeks');\n break;\n case \"monthly\":\n startDate.add(1, 'months');\n endDate.add(1, 'months');\n break;\n case \"yearly\":\n startDate.add(1, 'y');\n endDate.add(1, 'y');\n break;\n default:\n console.log(\"Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:\", hiddenDates[i].repeat);\n return;\n }\n }\n body.hiddenDates.push({start: startDate.valueOf(), end: endDate.valueOf()});\n }\n }\n }\n // remove duplicates, merge where possible\n removeDuplicates(body);\n // ensure the new positions are not on hidden dates\n const startHidden = getIsHidden(body.range.start, body.hiddenDates);\n const endHidden = getIsHidden(body.range.end,body.hiddenDates);\n let rangeStart = body.range.start;\n let rangeEnd = body.range.end;\n if (startHidden.hidden == true) {rangeStart = body.range.startToFront == true ? startHidden.startDate - 1 : startHidden.endDate + 1;}\n if (endHidden.hidden == true) {rangeEnd = body.range.endToFront == true ? endHidden.startDate - 1 : endHidden.endDate + 1;}\n if (startHidden.hidden == true || endHidden.hidden == true) {\n body.range._applyRange(rangeStart, rangeEnd);\n }\n }\n\n}\n\n/**\n * remove duplicates from the hidden dates list. Duplicates are evil. They mess everything up.\n * Scales with N^2\n *\n * @param {Object} body\n */\nexport function removeDuplicates(body) {\n const hiddenDates = body.hiddenDates;\n const safeDates = [];\n for (var i = 0; i < hiddenDates.length; i++) {\n for (let j = 0; j < hiddenDates.length; j++) {\n if (i != j && hiddenDates[j].remove != true && hiddenDates[i].remove != true) {\n // j inside i\n if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) {\n hiddenDates[j].remove = true;\n }\n // j start inside i\n else if (hiddenDates[j].start >= hiddenDates[i].start && hiddenDates[j].start <= hiddenDates[i].end) {\n hiddenDates[i].end = hiddenDates[j].end;\n hiddenDates[j].remove = true;\n }\n // j end inside i\n else if (hiddenDates[j].end >= hiddenDates[i].start && hiddenDates[j].end <= hiddenDates[i].end) {\n hiddenDates[i].start = hiddenDates[j].start;\n hiddenDates[j].remove = true;\n }\n }\n }\n }\n\n for (i = 0; i < hiddenDates.length; i++) {\n if (hiddenDates[i].remove !== true) {\n safeDates.push(hiddenDates[i]);\n }\n }\n\n body.hiddenDates = safeDates;\n body.hiddenDates.sort((a, b) => a.start - b.start); // sort by start time\n}\n\n/**\n * Prints dates to console\n * @param {array} dates\n */\nexport function printDates(dates) {\n for (let i =0; i < dates.length; i++) {\n console.log(i, new Date(dates[i].start),new Date(dates[i].end), dates[i].start, dates[i].end, dates[i].remove);\n }\n}\n\n/**\n * Used in TimeStep to avoid the hidden times.\n * @param {function} moment\n * @param {TimeStep} timeStep\n * @param {Date} previousTime\n */\nexport function stepOverHiddenDates(moment, timeStep, previousTime) {\n let stepInHidden = false;\n const currentValue = timeStep.current.valueOf();\n for (let i = 0; i < timeStep.hiddenDates.length; i++) {\n const startDate = timeStep.hiddenDates[i].start;\n var endDate = timeStep.hiddenDates[i].end;\n if (currentValue >= startDate && currentValue < endDate) {\n stepInHidden = true;\n break;\n }\n }\n\n if (stepInHidden == true && currentValue < timeStep._end.valueOf() && currentValue != previousTime) {\n const prevValue = moment(previousTime);\n const newValue = moment(endDate);\n //check if the next step should be major\n if (prevValue.year() != newValue.year()) {timeStep.switchedYear = true;}\n else if (prevValue.month() != newValue.month()) {timeStep.switchedMonth = true;}\n else if (prevValue.dayOfYear() != newValue.dayOfYear()) {timeStep.switchedDay = true;}\n\n timeStep.current = newValue;\n }\n}\n\n///**\n// * Used in TimeStep to avoid the hidden times.\n// * @param timeStep\n// * @param previousTime\n// */\n//checkFirstStep = function(timeStep) {\n// var stepInHidden = false;\n// var currentValue = timeStep.current.valueOf();\n// for (var i = 0; i < timeStep.hiddenDates.length; i++) {\n// var startDate = timeStep.hiddenDates[i].start;\n// var endDate = timeStep.hiddenDates[i].end;\n// if (currentValue >= startDate && currentValue < endDate) {\n// stepInHidden = true;\n// break;\n// }\n// }\n//\n// if (stepInHidden == true && currentValue <= timeStep._end.valueOf()) {\n// var newValue = moment(endDate);\n// timeStep.current = newValue.toDate();\n// }\n//};\n\n/**\n * replaces the Core toScreen methods\n *\n * @param {timeline.Core} Core\n * @param {Date} time\n * @param {number} width\n * @returns {number}\n */\nexport function toScreen(Core, time, width) {\n let conversion;\n if (Core.body.hiddenDates.length == 0) {\n conversion = Core.range.conversion(width);\n return (time.valueOf() - conversion.offset) * conversion.scale;\n } else {\n const hidden = getIsHidden(time, Core.body.hiddenDates);\n if (hidden.hidden == true) {\n time = hidden.startDate;\n }\n\n const duration = getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end);\n if (time < Core.range.start) {\n conversion = Core.range.conversion(width, duration);\n const hiddenBeforeStart = getHiddenDurationBeforeStart(Core.body.hiddenDates, time, conversion.offset);\n time = Core.options.moment(time).toDate().valueOf();\n time = time + hiddenBeforeStart;\n return -(conversion.offset - time.valueOf()) * conversion.scale;\n \n } else if (time > Core.range.end) {\n const rangeAfterEnd = {start: Core.range.start, end: time};\n time = correctTimeForHidden(Core.options.moment, Core.body.hiddenDates, rangeAfterEnd, time);\n conversion = Core.range.conversion(width, duration);\n return (time.valueOf() - conversion.offset) * conversion.scale;\n\n } else {\n time = correctTimeForHidden(Core.options.moment, Core.body.hiddenDates, Core.range, time);\n conversion = Core.range.conversion(width, duration);\n return (time.valueOf() - conversion.offset) * conversion.scale;\n }\n }\n }\n\n/**\n * Replaces the core toTime methods\n *\n * @param {timeline.Core} Core\n * @param {number} x\n * @param {number} width\n * @returns {Date}\n */\nexport function toTime(Core, x, width) {\n if (Core.body.hiddenDates.length == 0) {\n const conversion = Core.range.conversion(width);\n return new Date(x / conversion.scale + conversion.offset);\n }\n else {\n const hiddenDuration = getHiddenDurationBetween(Core.body.hiddenDates, Core.range.start, Core.range.end);\n const totalDuration = Core.range.end - Core.range.start - hiddenDuration;\n const partialDuration = totalDuration * x / width;\n const accumulatedHiddenDuration = getAccumulatedHiddenDuration(Core.body.hiddenDates, Core.range, partialDuration);\n\n return new Date(accumulatedHiddenDuration + partialDuration + Core.range.start);\n }\n}\n\n/**\n * Support function\n *\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {number} start\n * @param {number} end\n * @returns {number}\n */\nexport function getHiddenDurationBetween(hiddenDates, start, end) {\n let duration = 0;\n for (let i = 0; i < hiddenDates.length; i++) {\n const startDate = hiddenDates[i].start;\n const endDate = hiddenDates[i].end;\n // if time after the cutout, and the\n if (startDate >= start && endDate < end) {\n duration += endDate - startDate;\n }\n }\n return duration;\n}\n\n/**\n * Support function\n *\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {number} start\n * @param {number} end\n * @returns {number}\n */\nexport function getHiddenDurationBeforeStart(hiddenDates, start, end) {\n let duration = 0;\n for (let i = 0; i < hiddenDates.length; i++) {\n const startDate = hiddenDates[i].start;\n const endDate = hiddenDates[i].end;\n\n if (startDate >= start && endDate <= end) {\n duration += endDate - startDate;\n }\n }\n return duration;\n}\n\n/**\n * Support function\n * @param {function} moment\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {{start: number, end: number}} range\n * @param {Date} time\n * @returns {number}\n */\nexport function correctTimeForHidden(moment, hiddenDates, range, time) {\n time = moment(time).toDate().valueOf();\n time -= getHiddenDurationBefore(moment, hiddenDates,range,time);\n return time;\n}\n\n/**\n * Support function\n * @param {function} moment\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {{start: number, end: number}} range\n * @param {Date} time\n * @returns {number}\n */\nexport function getHiddenDurationBefore(moment, hiddenDates, range, time) {\n let timeOffset = 0;\n time = moment(time).toDate().valueOf();\n\n for (let i = 0; i < hiddenDates.length; i++) {\n const startDate = hiddenDates[i].start;\n const endDate = hiddenDates[i].end;\n // if time after the cutout, and the\n if (startDate >= range.start && endDate < range.end) {\n if (time >= endDate) {\n timeOffset += (endDate - startDate);\n }\n }\n }\n return timeOffset;\n}\n\n/**\n * sum the duration from start to finish, including the hidden duration,\n * until the required amount has been reached, return the accumulated hidden duration\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {{start: number, end: number}} range\n * @param {number} [requiredDuration=0]\n * @returns {number}\n */\nexport function getAccumulatedHiddenDuration(hiddenDates, range, requiredDuration) {\n let hiddenDuration = 0;\n let duration = 0;\n let previousPoint = range.start;\n //printDates(hiddenDates)\n for (let i = 0; i < hiddenDates.length; i++) {\n const startDate = hiddenDates[i].start;\n const endDate = hiddenDates[i].end;\n // if time after the cutout, and the\n if (startDate >= range.start && endDate < range.end) {\n duration += startDate - previousPoint;\n previousPoint = endDate;\n if (duration >= requiredDuration) {\n break;\n }\n else {\n hiddenDuration += endDate - startDate;\n }\n }\n }\n\n return hiddenDuration;\n}\n\n/**\n * used to step over to either side of a hidden block. Correction is disabled on tablets, might be set to true\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @param {Date} time\n * @param {number} direction\n * @param {boolean} correctionEnabled\n * @returns {Date|number}\n */\nexport function snapAwayFromHidden(hiddenDates, time, direction, correctionEnabled) {\n const isHidden = getIsHidden(time, hiddenDates);\n if (isHidden.hidden == true) {\n if (direction < 0) {\n if (correctionEnabled == true) {\n return isHidden.startDate - (isHidden.endDate - time) - 1;\n }\n else {\n return isHidden.startDate - 1;\n }\n }\n else {\n if (correctionEnabled == true) {\n return isHidden.endDate + (time - isHidden.startDate) + 1;\n }\n else {\n return isHidden.endDate + 1;\n }\n }\n }\n else {\n return time;\n }\n\n}\n\n/**\n * Check if a time is hidden\n *\n * @param {Date} time\n * @param {Array.<{start: Window.start, end: *}>} hiddenDates\n * @returns {{hidden: boolean, startDate: Window.start, endDate: *}}\n */\nexport function getIsHidden(time, hiddenDates) {\n for (let i = 0; i < hiddenDates.length; i++) {\n var startDate = hiddenDates[i].start;\n var endDate = hiddenDates[i].end;\n\n if (time >= startDate && time < endDate) { // if the start is entering a hidden zone\n return {hidden: true, startDate, endDate};\n }\n }\n return {hidden: false, startDate, endDate};\n}\n","import util from '../util';\nimport moment from '../module/moment';\nimport Component from './component/Component';\nimport * as DateUtil from './DateUtil';\n\n/**\n * A Range controls a numeric range with a start and end value.\n * The Range adjusts the range based on mouse events or programmatic changes,\n * and triggers events when the range is changing or has been changed.\n */\nexport default class Range extends Component {\n /**\n * @param {{dom: Object, domProps: Object, emitter: Emitter}} body\n * @param {Object} [options] See description at Range.setOptions\n * @constructor Range\n * @extends Component\n */\n constructor(body, options) {\n super();\n const now = moment().hours(0).minutes(0).seconds(0).milliseconds(0);\n const start = now.clone().add(-3, 'days').valueOf();\n const end = now.clone().add(3, 'days').valueOf(); \n this.millisecondsPerPixelCache = undefined;\n \n if(options === undefined) {\n this.start = start;\n this.end = end;\n } else {\n this.start = options.start || start;\n this.end = options.end || end\n }\n\n this.rolling = false;\n\n this.body = body;\n this.deltaDifference = 0;\n this.scaleOffset = 0;\n this.startToFront = false;\n this.endToFront = true;\n\n // default options\n this.defaultOptions = {\n rtl: false,\n start: null,\n end: null,\n moment,\n direction: 'horizontal', // 'horizontal' or 'vertical'\n moveable: true,\n zoomable: true,\n min: null,\n max: null,\n zoomMin: 10, // milliseconds\n zoomMax: 1000 * 60 * 60 * 24 * 365 * 10000, // milliseconds\n rollingMode: {\n follow: false,\n offset: 0.5\n }\n };\n this.options = util.extend({}, this.defaultOptions);\n this.props = {\n touch: {}\n };\n this.animationTimer = null;\n\n // drag listeners for dragging\n this.body.emitter.on('panstart', this._onDragStart.bind(this));\n this.body.emitter.on('panmove', this._onDrag.bind(this));\n this.body.emitter.on('panend', this._onDragEnd.bind(this));\n\n // mouse wheel for zooming\n this.body.emitter.on('mousewheel', this._onMouseWheel.bind(this));\n\n // pinch to zoom\n this.body.emitter.on('touch', this._onTouch.bind(this));\n this.body.emitter.on('pinch', this._onPinch.bind(this));\n\n // on click of rolling mode button\n this.body.dom.rollingModeBtn.addEventListener('click', this.startRolling.bind(this));\n\n this.setOptions(options);\n }\n\n /**\n * Set options for the range controller\n * @param {Object} options Available options:\n * {number | Date | String} start Start date for the range\n * {number | Date | String} end End date for the range\n * {number} min Minimum value for start\n * {number} max Maximum value for end\n * {number} zoomMin Set a minimum value for\n * (end - start).\n * {number} zoomMax Set a maximum value for\n * (end - start).\n * {boolean} moveable Enable moving of the range\n * by dragging. True by default\n * {boolean} zoomable Enable zooming of the range\n * by pinching/scrolling. True by default\n */\n setOptions(options) {\n if (options) {\n // copy the options that we know\n const fields = [\n 'animation', 'direction', 'min', 'max', 'zoomMin', 'zoomMax', 'moveable', 'zoomable',\n 'moment', 'activate', 'hiddenDates', 'zoomKey', 'zoomFriction', 'rtl', 'showCurrentTime', 'rollingMode', 'horizontalScroll'\n ];\n util.selectiveExtend(fields, this.options, options);\n\n if (options.rollingMode && options.rollingMode.follow) {\n this.startRolling();\n }\n if ('start' in options || 'end' in options) {\n // apply a new range. both start and end are optional\n this.setRange(options.start, options.end);\n }\n }\n }\n\n /**\n * Start auto refreshing the current time bar\n */\n startRolling() {\n const me = this;\n\n /**\n * Updates the current time.\n */\n function update () {\n me.stopRolling();\n me.rolling = true;\n\n\n let interval = me.end - me.start;\n const t = util.convert(new Date(), 'Date').valueOf();\n const rollingModeOffset = me.options.rollingMode && me.options.rollingMode.offset || 0.5\n\n const start = t - interval * (rollingModeOffset);\n const end = t + interval * (1 - rollingModeOffset);\n\n const options = {\n animation: false\n };\n me.setRange(start, end, options);\n\n // determine interval to refresh\n const scale = me.conversion(me.body.domProps.center.width).scale;\n interval = 1 / scale / 10;\n if (interval < 30) interval = 30;\n if (interval > 1000) interval = 1000;\n\n me.body.dom.rollingModeBtn.style.visibility = \"hidden\";\n // start a renderTimer to adjust for the new time\n me.currentTimeTimer = setTimeout(update, interval);\n }\n\n update();\n }\n\n /**\n * Stop auto refreshing the current time bar\n */\n stopRolling() {\n if (this.currentTimeTimer !== undefined) {\n clearTimeout(this.currentTimeTimer);\n this.rolling = false;\n this.body.dom.rollingModeBtn.style.visibility = \"visible\";\n }\n }\n\n /**\n * Set a new start and end range\n * @param {Date | number | string} start\n * @param {Date | number | string} end\n * @param {Object} options Available options:\n * {boolean | {duration: number, easingFunction: string}} [animation=false]\n * If true, the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * {boolean} [byUser=false]\n * {Event} event Mouse event\n * @param {Function} callback a callback function to be executed at the end of this function \n * @param {Function} frameCallback a callback function executed each frame of the range animation.\n * The callback will be passed three parameters:\n * {number} easeCoefficient an easing coefficent\n * {boolean} willDraw If true the caller will redraw after the callback completes\n * {boolean} done If true then animation is ending after the current frame\n * @return {void}\n */\n setRange(start, end, options, callback, frameCallback) {\n if (!options) {\n options = {};\n }\n if (options.byUser !== true) {\n options.byUser = false;\n }\n const me = this;\n const finalStart = start != undefined ? util.convert(start, 'Date').valueOf() : null;\n const finalEnd = end != undefined ? util.convert(end, 'Date').valueOf() : null;\n this._cancelAnimation();\n this.millisecondsPerPixelCache = undefined;\n\n if (options.animation) { // true or an Object\n const initStart = this.start;\n const initEnd = this.end;\n const duration = (typeof options.animation === 'object' && 'duration' in options.animation) ? options.animation.duration : 500;\n const easingName = (typeof options.animation === 'object' && 'easingFunction' in options.animation) ? options.animation.easingFunction : 'easeInOutQuad';\n const easingFunction = util.easingFunctions[easingName];\n if (!easingFunction) {\n throw new Error(`Unknown easing function ${JSON.stringify(easingName)}. Choose from: ${Object.keys(util.easingFunctions).join(', ')}`);\n }\n\n const initTime = Date.now();\n let anyChanged = false;\n\n const next = () => {\n if (!me.props.touch.dragging) {\n const now = Date.now();\n const time = now - initTime;\n const ease = easingFunction(time / duration);\n const done = time > duration;\n const s = (done || finalStart === null) ? finalStart : initStart + (finalStart - initStart) * ease;\n const e = (done || finalEnd === null) ? finalEnd : initEnd + (finalEnd - initEnd) * ease;\n\n changed = me._applyRange(s, e);\n DateUtil.updateHiddenDates(me.options.moment, me.body, me.options.hiddenDates);\n anyChanged = anyChanged || changed;\n\n const params = {\n start: new Date(me.start), \n end: new Date(me.end), \n byUser: options.byUser,\n event: options.event\n };\n\n if (frameCallback) { frameCallback(ease, changed, done); }\n\n if (changed) { \n me.body.emitter.emit('rangechange', params);\n }\n\n if (done) {\n if (anyChanged) {\n me.body.emitter.emit('rangechanged', params);\n if (callback) { return callback() }\n }\n }\n else {\n // animate with as high as possible frame rate, leave 20 ms in between\n // each to prevent the browser from blocking\n me.animationTimer = setTimeout(next, 20);\n }\n }\n };\n\n return next();\n }\n else {\n var changed = this._applyRange(finalStart, finalEnd);\n DateUtil.updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates);\n if (changed) {\n const params = {\n start: new Date(this.start), \n end: new Date(this.end), \n byUser: options.byUser, \n event: options.event\n };\n\n this.body.emitter.emit('rangechange', params);\n clearTimeout( me.timeoutID );\n me.timeoutID = setTimeout( () => {\n me.body.emitter.emit('rangechanged', params);\n }, 200 );\n if (callback) { return callback() }\n }\n }\n }\n\n /**\n * Get the number of milliseconds per pixel.\n *\n * @returns {undefined|number}\n */\n getMillisecondsPerPixel() {\n if (this.millisecondsPerPixelCache === undefined) {\n this.millisecondsPerPixelCache = (this.end - this.start) / this.body.dom.center.clientWidth;\n }\n return this.millisecondsPerPixelCache;\n }\n\n /**\n * Stop an animation\n * @private\n */\n _cancelAnimation() {\n if (this.animationTimer) {\n clearTimeout(this.animationTimer);\n this.animationTimer = null;\n }\n }\n\n /**\n * Set a new start and end range. This method is the same as setRange, but\n * does not trigger a range change and range changed event, and it returns\n * true when the range is changed\n * @param {number} [start]\n * @param {number} [end]\n * @return {boolean} changed\n * @private\n */\n _applyRange(start, end) {\n let newStart = (start != null) ? util.convert(start, 'Date').valueOf() : this.start;\n let newEnd = (end != null) ? util.convert(end, 'Date').valueOf() : this.end;\n const max = (this.options.max != null) ? util.convert(this.options.max, 'Date').valueOf() : null;\n const min = (this.options.min != null) ? util.convert(this.options.min, 'Date').valueOf() : null;\n let diff;\n\n // check for valid number\n if (isNaN(newStart) || newStart === null) {\n throw new Error(`Invalid start \"${start}\"`);\n }\n if (isNaN(newEnd) || newEnd === null) {\n throw new Error(`Invalid end \"${end}\"`);\n }\n\n // prevent end < start\n if (newEnd < newStart) {\n newEnd = newStart;\n }\n\n // prevent start < min\n if (min !== null) {\n if (newStart < min) {\n diff = (min - newStart);\n newStart += diff;\n newEnd += diff;\n\n // prevent end > max\n if (max != null) {\n if (newEnd > max) {\n newEnd = max;\n }\n }\n }\n }\n\n // prevent end > max\n if (max !== null) {\n if (newEnd > max) {\n diff = (newEnd - max);\n newStart -= diff;\n newEnd -= diff;\n\n // prevent start < min\n if (min != null) {\n if (newStart < min) {\n newStart = min;\n }\n }\n }\n }\n\n // prevent (end-start) < zoomMin\n if (this.options.zoomMin !== null) {\n let zoomMin = parseFloat(this.options.zoomMin);\n if (zoomMin < 0) {\n zoomMin = 0;\n }\n if ((newEnd - newStart) < zoomMin) {\n // compensate for a scale of 0.5 ms\n const compensation = 0.5;\n if ((this.end - this.start) === zoomMin && newStart >= this.start - compensation && newEnd <= this.end) {\n // ignore this action, we are already zoomed to the minimum\n newStart = this.start;\n newEnd = this.end;\n }\n else {\n // zoom to the minimum\n diff = (zoomMin - (newEnd - newStart));\n newStart -= diff / 2;\n newEnd += diff / 2;\n }\n }\n }\n\n // prevent (end-start) > zoomMax\n if (this.options.zoomMax !== null) {\n let zoomMax = parseFloat(this.options.zoomMax);\n if (zoomMax < 0) {\n zoomMax = 0;\n }\n\n if ((newEnd - newStart) > zoomMax) {\n if ((this.end - this.start) === zoomMax && newStart < this.start && newEnd > this.end) {\n // ignore this action, we are already zoomed to the maximum\n newStart = this.start;\n newEnd = this.end;\n }\n else {\n // zoom to the maximum\n diff = ((newEnd - newStart) - zoomMax);\n newStart += diff / 2;\n newEnd -= diff / 2;\n }\n }\n }\n\n const changed = (this.start != newStart || this.end != newEnd);\n\n // if the new range does NOT overlap with the old range, emit checkRangedItems to avoid not showing ranged items (ranged meaning has end time, not necessarily of type Range)\n if (!((newStart >= this.start && newStart <= this.end) || (newEnd >= this.start && newEnd <= this.end)) &&\n !((this.start >= newStart && this.start <= newEnd) || (this.end >= newStart && this.end <= newEnd) )) {\n this.body.emitter.emit('checkRangedItems');\n }\n\n this.start = newStart;\n this.end = newEnd;\n return changed;\n }\n\n /**\n * Retrieve the current range.\n * @return {Object} An object with start and end properties\n */\n getRange() {\n return {\n start: this.start,\n end: this.end\n };\n }\n\n /**\n * Calculate the conversion offset and scale for current range, based on\n * the provided width\n * @param {number} width\n * @param {number} [totalHidden=0]\n * @returns {{offset: number, scale: number}} conversion\n */\n conversion(width, totalHidden) {\n return Range.conversion(this.start, this.end, width, totalHidden);\n }\n\n /**\n * Static method to calculate the conversion offset and scale for a range,\n * based on the provided start, end, and width\n * @param {number} start\n * @param {number} end\n * @param {number} width\n * @param {number} [totalHidden=0]\n * @returns {{offset: number, scale: number}} conversion\n */\n static conversion(start, end, width, totalHidden) {\n if (totalHidden === undefined) {\n totalHidden = 0;\n }\n if (width != 0 && (end - start != 0)) {\n return {\n offset: start,\n scale: width / (end - start - totalHidden)\n }\n }\n else {\n return {\n offset: 0,\n scale: 1\n };\n }\n }\n\n /**\n * Start dragging horizontally or vertically\n * @param {Event} event\n * @private\n */\n _onDragStart(event) {\n this.deltaDifference = 0;\n this.previousDelta = 0;\n\n // only allow dragging when configured as movable\n if (!this.options.moveable) return;\n\n // only start dragging when the mouse is inside the current range\n if (!this._isInsideRange(event)) return;\n\n // refuse to drag when we where pinching to prevent the timeline make a jump\n // when releasing the fingers in opposite order from the touch screen\n if (!this.props.touch.allowDragging) return;\n\n this.stopRolling();\n\n this.props.touch.start = this.start;\n this.props.touch.end = this.end;\n this.props.touch.dragging = true;\n\n if (this.body.dom.root) {\n this.body.dom.root.style.cursor = 'move';\n }\n }\n\n /**\n * Perform dragging operation\n * @param {Event} event\n * @private\n */\n _onDrag(event) {\n if (!event) return;\n\n if (!this.props.touch.dragging) return;\n\n // only allow dragging when configured as movable\n if (!this.options.moveable) return;\n\n // TODO: this may be redundant in hammerjs2\n // refuse to drag when we where pinching to prevent the timeline make a jump\n // when releasing the fingers in opposite order from the touch screen\n if (!this.props.touch.allowDragging) return;\n\n const direction = this.options.direction;\n validateDirection(direction);\n let delta = (direction == 'horizontal') ? event.deltaX : event.deltaY;\n delta -= this.deltaDifference;\n let interval = (this.props.touch.end - this.props.touch.start);\n\n // normalize dragging speed if cutout is in between.\n const duration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end);\n interval -= duration;\n\n const width = (direction == 'horizontal') ? this.body.domProps.center.width : this.body.domProps.center.height;\n let diffRange;\n if (this.options.rtl) {\n diffRange = delta / width * interval;\n } else {\n diffRange = -delta / width * interval;\n }\n\n const newStart = this.props.touch.start + diffRange;\n const newEnd = this.props.touch.end + diffRange;\n\n // snapping times away from hidden zones\n const safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, this.previousDelta-delta, true);\n const safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, this.previousDelta-delta, true);\n if (safeStart != newStart || safeEnd != newEnd) {\n this.deltaDifference += delta;\n this.props.touch.start = safeStart;\n this.props.touch.end = safeEnd;\n this._onDrag(event);\n return;\n }\n\n this.previousDelta = delta;\n this._applyRange(newStart, newEnd);\n\n\n const startDate = new Date(this.start);\n const endDate = new Date(this.end);\n\n // fire a rangechange event\n this.body.emitter.emit('rangechange', {\n start: startDate,\n end: endDate,\n byUser: true,\n event\n });\n\n // fire a panmove event\n this.body.emitter.emit('panmove');\n }\n\n /**\n * Stop dragging operation\n * @param {event} event\n * @private\n */\n _onDragEnd(event) {\n if (!this.props.touch.dragging) return;\n\n // only allow dragging when configured as movable\n if (!this.options.moveable) return;\n\n // TODO: this may be redundant in hammerjs2\n // refuse to drag when we where pinching to prevent the timeline make a jump\n // when releasing the fingers in opposite order from the touch screen\n if (!this.props.touch.allowDragging) return;\n\n this.props.touch.dragging = false;\n if (this.body.dom.root) {\n this.body.dom.root.style.cursor = 'auto';\n }\n\n // fire a rangechanged event\n this.body.emitter.emit('rangechanged', {\n start: new Date(this.start),\n end: new Date(this.end),\n byUser: true,\n event\n });\n }\n\n /**\n * Event handler for mouse wheel event, used to zoom\n * Code from http://adomas.org/javascript-mouse-wheel/\n * @param {Event} event\n * @private\n */\n _onMouseWheel(event) {\n // retrieve delta\n let delta = 0;\n if (event.wheelDelta) { /* IE/Opera. */\n delta = event.wheelDelta / 120;\n } else if (event.detail) { /* Mozilla case. */\n // In Mozilla, sign of delta is different than in IE.\n // Also, delta is multiple of 3.\n delta = -event.detail / 3;\n } else if (event.deltaY) {\n delta = -event.deltaY / 3;\n } \n\n // don't allow zoom when the according key is pressed and the zoomKey option or not zoomable but movable\n if ((this.options.zoomKey && !event[this.options.zoomKey] && this.options.zoomable) \n || (!this.options.zoomable && this.options.moveable)) {\n return;\n }\n\n // only allow zooming when configured as zoomable and moveable\n if (!(this.options.zoomable && this.options.moveable)) return;\n \n // only zoom when the mouse is inside the current range\n if (!this._isInsideRange(event)) return;\n\n // If delta is nonzero, handle it.\n // Basically, delta is now positive if wheel was scrolled up,\n // and negative, if wheel was scrolled down.\n if (delta) {\n // perform the zoom action. Delta is normally 1 or -1\n\n // adjust a negative delta such that zooming in with delta 0.1\n // equals zooming out with a delta -0.1\n\n const zoomFriction = this.options.zoomFriction || 5;\n let scale;\n if (delta < 0) {\n scale = 1 - (delta / zoomFriction);\n }\n else {\n scale = 1 / (1 + (delta / zoomFriction)) ;\n }\n\n // calculate center, the date to zoom around\n let pointerDate;\n if (this.rolling) {\n const rollingModeOffset = this.options.rollingMode && this.options.rollingMode.offset || 0.5;\n pointerDate = this.start + ((this.end - this.start) * rollingModeOffset);\n } else {\n const pointer = this.getPointer({x: event.clientX, y: event.clientY}, this.body.dom.center);\n pointerDate = this._pointerToDate(pointer);\n }\n this.zoom(scale, pointerDate, delta, event);\n\n // Prevent default actions caused by mouse wheel\n // (else the page and timeline both scroll)\n event.preventDefault();\n }\n }\n\n /**\n * Start of a touch gesture\n * @param {Event} event\n * @private\n */\n _onTouch(event) { // eslint-disable-line no-unused-vars\n this.props.touch.start = this.start;\n this.props.touch.end = this.end;\n this.props.touch.allowDragging = true;\n this.props.touch.center = null;\n this.scaleOffset = 0;\n this.deltaDifference = 0;\n // Disable the browser default handling of this event.\n util.preventDefault(event);\n }\n\n /**\n * Handle pinch event\n * @param {Event} event\n * @private\n */\n _onPinch(event) {\n // only allow zooming when configured as zoomable and moveable\n if (!(this.options.zoomable && this.options.moveable)) return;\n\n // Disable the browser default handling of this event.\n util.preventDefault(event);\n\n this.props.touch.allowDragging = false;\n\n if (!this.props.touch.center) {\n this.props.touch.center = this.getPointer(event.center, this.body.dom.center);\n }\n\n this.stopRolling();\n\n const scale = 1 / (event.scale + this.scaleOffset);\n const centerDate = this._pointerToDate(this.props.touch.center);\n\n const hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end);\n const hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, centerDate);\n const hiddenDurationAfter = hiddenDuration - hiddenDurationBefore;\n\n // calculate new start and end\n let newStart = (centerDate - hiddenDurationBefore) + (this.props.touch.start - (centerDate - hiddenDurationBefore)) * scale;\n let newEnd = (centerDate + hiddenDurationAfter) + (this.props.touch.end - (centerDate + hiddenDurationAfter)) * scale;\n\n // snapping times away from hidden zones\n this.startToFront = 1 - scale <= 0; // used to do the right auto correction with periodic hidden times\n this.endToFront = scale - 1 <= 0; // used to do the right auto correction with periodic hidden times\n\n const safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, 1 - scale, true);\n const safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, scale - 1, true);\n if (safeStart != newStart || safeEnd != newEnd) {\n this.props.touch.start = safeStart;\n this.props.touch.end = safeEnd;\n this.scaleOffset = 1 - event.scale;\n newStart = safeStart;\n newEnd = safeEnd;\n }\n\n const options = {\n animation: false,\n byUser: true,\n event\n };\n this.setRange(newStart, newEnd, options);\n\n this.startToFront = false; // revert to default\n this.endToFront = true; // revert to default\n }\n\n /**\n * Test whether the mouse from a mouse event is inside the visible window,\n * between the current start and end date\n * @param {Object} event\n * @return {boolean} Returns true when inside the visible window\n * @private\n */\n _isInsideRange(event) {\n // calculate the time where the mouse is, check whether inside\n // and no scroll action should happen.\n const clientX = event.center ? event.center.x : event.clientX;\n const centerContainerRect = this.body.dom.centerContainer.getBoundingClientRect();\n const x = this.options.rtl ? clientX - centerContainerRect.left : centerContainerRect.right - clientX;\n const time = this.body.util.toTime(x);\n\n return time >= this.start && time <= this.end;\n }\n\n /**\n * Helper function to calculate the center date for zooming\n * @param {{x: number, y: number}} pointer\n * @return {number} date\n * @private\n */\n _pointerToDate(pointer) {\n let conversion;\n const direction = this.options.direction;\n\n validateDirection(direction);\n\n if (direction == 'horizontal') {\n return this.body.util.toTime(pointer.x).valueOf();\n }\n else {\n const height = this.body.domProps.center.height;\n conversion = this.conversion(height);\n return pointer.y / conversion.scale + conversion.offset;\n }\n }\n\n /**\n * Get the pointer location relative to the location of the dom element\n * @param {{x: number, y: number}} touch\n * @param {Element} element HTML DOM element\n * @return {{x: number, y: number}} pointer\n * @private\n */\n getPointer(touch, element) {\n const elementRect = element.getBoundingClientRect();\n if (this.options.rtl) {\n return {\n x: elementRect.right - touch.x,\n y: touch.y - elementRect.top\n };\n } else {\n return {\n x: touch.x - elementRect.left,\n y: touch.y - elementRect.top\n };\n }\n }\n\n /**\n * Zoom the range the given scale in or out. Start and end date will\n * be adjusted, and the timeline will be redrawn. You can optionally give a\n * date around which to zoom.\n * For example, try scale = 0.9 or 1.1\n * @param {number} scale Scaling factor. Values above 1 will zoom out,\n * values below 1 will zoom in.\n * @param {number} [center] Value representing a date around which will\n * be zoomed.\n * @param {number} delta\n * @param {Event} event\n */\n zoom(scale, center, delta, event) {\n // if centerDate is not provided, take it half between start Date and end Date\n if (center == null) {\n center = (this.start + this.end) / 2;\n }\n\n const hiddenDuration = DateUtil.getHiddenDurationBetween(this.body.hiddenDates, this.start, this.end);\n const hiddenDurationBefore = DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this, center);\n const hiddenDurationAfter = hiddenDuration - hiddenDurationBefore;\n\n // calculate new start and end\n let newStart = (center-hiddenDurationBefore) + (this.start - (center-hiddenDurationBefore)) * scale;\n let newEnd = (center+hiddenDurationAfter) + (this.end - (center+hiddenDurationAfter)) * scale;\n\n // snapping times away from hidden zones\n this.startToFront = delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times\n this.endToFront = -delta > 0 ? false : true; // used to do the right autocorrection with periodic hidden times\n const safeStart = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newStart, delta, true);\n const safeEnd = DateUtil.snapAwayFromHidden(this.body.hiddenDates, newEnd, -delta, true);\n if (safeStart != newStart || safeEnd != newEnd) {\n newStart = safeStart;\n newEnd = safeEnd;\n }\n\n const options = {\n animation: false,\n byUser: true,\n event\n };\n this.setRange(newStart, newEnd, options);\n\n this.startToFront = false; // revert to default\n this.endToFront = true; // revert to default\n }\n\n /**\n * Move the range with a given delta to the left or right. Start and end\n * value will be adjusted. For example, try delta = 0.1 or -0.1\n * @param {number} delta Moving amount. Positive value will move right,\n * negative value will move left\n */\n move(delta) {\n // zoom start Date and end Date relative to the centerDate\n const diff = (this.end - this.start);\n\n // apply new values\n const newStart = this.start + diff * delta;\n const newEnd = this.end + diff * delta;\n\n // TODO: reckon with min and max range\n\n this.start = newStart;\n this.end = newEnd;\n }\n\n /**\n * Move the range to a new center point\n * @param {number} moveTo New center point of the range\n */\n moveTo(moveTo) {\n const center = (this.start + this.end) / 2;\n\n const diff = center - moveTo;\n\n // calculate new start and end\n const newStart = this.start - diff;\n const newEnd = this.end - diff;\n\n const options = {\n animation: false,\n byUser: true,\n event: null\n };\n this.setRange(newStart, newEnd, options);\n }\n}\n\n/**\n * Test whether direction has a valid value\n * @param {string} direction 'horizontal' or 'vertical'\n */\nfunction validateDirection (direction) {\n if (direction != 'horizontal' && direction != 'vertical') {\n throw new TypeError(`Unknown direction \"${direction}\". Choose \"horizontal\" or \"vertical\".`);\n }\n}\n","require('../modules/web.timers');\n\nmodule.exports = require('../internals/path').setInterval;\n","module.exports = require(\"core-js-pure/stable/set-interval\");","'use strict';\nvar $ = require('../internals/export');\nvar $some = require('../internals/array-iteration').some;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\n// `Array.prototype.some` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.some\n$({ target: 'Array', proto: true, forced: sloppyArrayMethod('some') }, {\n some: function some(callbackfn /* , thisArg */) {\n return $some(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.some');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').some;\n","var some = require('../array/virtual/some');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.some;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.some) ? some : own;\n};\n","module.exports = require('../../es/instance/some');\n","module.exports = require(\"core-js-pure/stable/instance/some\");","'use strict';\nvar $ = require('../internals/export');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toInteger = require('../internals/to-integer');\nvar toLength = require('../internals/to-length');\nvar toObject = require('../internals/to-object');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar createProperty = require('../internals/create-property');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\n\nvar max = Math.max;\nvar min = Math.min;\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_LENGTH_EXCEEDED = 'Maximum allowed length exceeded';\n\n// `Array.prototype.splice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.splice\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('splice') }, {\n splice: function splice(start, deleteCount /* , ...items */) {\n var O = toObject(this);\n var len = toLength(O.length);\n var actualStart = toAbsoluteIndex(start, len);\n var argumentsLength = arguments.length;\n var insertCount, actualDeleteCount, A, k, from, to;\n if (argumentsLength === 0) {\n insertCount = actualDeleteCount = 0;\n } else if (argumentsLength === 1) {\n insertCount = 0;\n actualDeleteCount = len - actualStart;\n } else {\n insertCount = argumentsLength - 2;\n actualDeleteCount = min(max(toInteger(deleteCount), 0), len - actualStart);\n }\n if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) {\n throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED);\n }\n A = arraySpeciesCreate(O, actualDeleteCount);\n for (k = 0; k < actualDeleteCount; k++) {\n from = actualStart + k;\n if (from in O) createProperty(A, k, O[from]);\n }\n A.length = actualDeleteCount;\n if (insertCount < actualDeleteCount) {\n for (k = actualStart; k < len - actualDeleteCount; k++) {\n from = k + actualDeleteCount;\n to = k + insertCount;\n if (from in O) O[to] = O[from];\n else delete O[to];\n }\n for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1];\n } else if (insertCount > actualDeleteCount) {\n for (k = len - actualDeleteCount; k > actualStart; k--) {\n from = k + actualDeleteCount - 1;\n to = k + insertCount - 1;\n if (from in O) O[to] = O[from];\n else delete O[to];\n }\n }\n for (k = 0; k < insertCount; k++) {\n O[k + actualStart] = arguments[k + 2];\n }\n O.length = len - actualDeleteCount + insertCount;\n return A;\n }\n});\n","require('../../../modules/es.array.splice');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').splice;\n","var splice = require('../array/virtual/splice');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.splice;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.splice) ? splice : own;\n};\n","module.exports = require('../../es/instance/splice');\n","module.exports = require(\"core-js-pure/stable/instance/splice\");","'use strict';\nvar $ = require('../internals/export');\nvar $indexOf = require('../internals/array-includes').indexOf;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\nvar nativeIndexOf = [].indexOf;\n\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar SLOPPY_METHOD = sloppyArrayMethod('indexOf');\n\n// `Array.prototype.indexOf` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? nativeIndexOf.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.index-of');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').indexOf;\n","var indexOf = require('../array/virtual/index-of');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.indexOf;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.indexOf) ? indexOf : own;\n};\n","module.exports = require('../../es/instance/index-of');\n","module.exports = require(\"core-js-pure/stable/instance/index-of\");","\n/**\n * Expose `Emitter`.\n */\n\nmodule.exports = Emitter;\n\n/**\n * Initialize a new `Emitter`.\n *\n * @api public\n */\n\nfunction Emitter(obj) {\n if (obj) return mixin(obj);\n};\n\n/**\n * Mixin the emitter properties.\n *\n * @param {Object} obj\n * @return {Object}\n * @api private\n */\n\nfunction mixin(obj) {\n for (var key in Emitter.prototype) {\n obj[key] = Emitter.prototype[key];\n }\n return obj;\n}\n\n/**\n * Listen on the given `event` with `fn`.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.on =\nEmitter.prototype.addEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n (this._callbacks[event] = this._callbacks[event] || [])\n .push(fn);\n return this;\n};\n\n/**\n * Adds an `event` listener that will be invoked a single\n * time then automatically removed.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.once = function(event, fn){\n var self = this;\n this._callbacks = this._callbacks || {};\n\n function on() {\n self.off(event, on);\n fn.apply(this, arguments);\n }\n\n on.fn = fn;\n this.on(event, on);\n return this;\n};\n\n/**\n * Remove the given callback for `event` or all\n * registered callbacks.\n *\n * @param {String} event\n * @param {Function} fn\n * @return {Emitter}\n * @api public\n */\n\nEmitter.prototype.off =\nEmitter.prototype.removeListener =\nEmitter.prototype.removeAllListeners =\nEmitter.prototype.removeEventListener = function(event, fn){\n this._callbacks = this._callbacks || {};\n\n // all\n if (0 == arguments.length) {\n this._callbacks = {};\n return this;\n }\n\n // specific event\n var callbacks = this._callbacks[event];\n if (!callbacks) return this;\n\n // remove all handlers\n if (1 == arguments.length) {\n delete this._callbacks[event];\n return this;\n }\n\n // remove specific handler\n var cb;\n for (var i = 0; i < callbacks.length; i++) {\n cb = callbacks[i];\n if (cb === fn || cb.fn === fn) {\n callbacks.splice(i, 1);\n break;\n }\n }\n return this;\n};\n\n/**\n * Emit `event` with the given args.\n *\n * @param {String} event\n * @param {Mixed} ...\n * @return {Emitter}\n */\n\nEmitter.prototype.emit = function(event){\n this._callbacks = this._callbacks || {};\n var args = [].slice.call(arguments, 1)\n , callbacks = this._callbacks[event];\n\n if (callbacks) {\n callbacks = callbacks.slice(0);\n for (var i = 0, len = callbacks.length; i < len; ++i) {\n callbacks[i].apply(this, args);\n }\n }\n\n return this;\n};\n\n/**\n * Return array of callbacks for `event`.\n *\n * @param {String} event\n * @return {Array}\n * @api public\n */\n\nEmitter.prototype.listeners = function(event){\n this._callbacks = this._callbacks || {};\n return this._callbacks[event] || [];\n};\n\n/**\n * Check if this emitter has `event` handlers.\n *\n * @param {String} event\n * @return {Boolean}\n * @api public\n */\n\nEmitter.prototype.hasListeners = function(event){\n return !! this.listeners(event).length;\n};\n","'use strict';\n\n(function (factory) {\n if (typeof define === 'function' && define.amd) {\n // AMD. Register as an anonymous module.\n define([], factory);\n } else if (typeof exports === 'object') {\n // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory();\n } else {\n // Browser globals (root is window)\n window.propagating = factory();\n }\n}(function () {\n var _firstTarget = null; // singleton, will contain the target element where the touch event started\n\n /**\n * Extend an Hammer.js instance with event propagation.\n *\n * Features:\n * - Events emitted by hammer will propagate in order from child to parent\n * elements.\n * - Events are extended with a function `event.stopPropagation()` to stop\n * propagation to parent elements.\n * - An option `preventDefault` to stop all default browser behavior.\n *\n * Usage:\n * var hammer = propagatingHammer(new Hammer(element));\n * var hammer = propagatingHammer(new Hammer(element), {preventDefault: true});\n *\n * @param {Hammer.Manager} hammer An hammer instance.\n * @param {Object} [options] Available options:\n * - `preventDefault: true | false | 'mouse' | 'touch' | 'pen'`.\n * Enforce preventing the default browser behavior.\n * Cannot be set to `false`.\n * @return {Hammer.Manager} Returns the same hammer instance with extended\n * functionality\n */\n return function propagating(hammer, options) {\n var _options = options || {\n preventDefault: false\n };\n\n if (hammer.Manager) {\n // This looks like the Hammer constructor.\n // Overload the constructors with our own.\n var Hammer = hammer;\n\n var PropagatingHammer = function(element, options) {\n var o = Object.create(_options);\n if (options) Hammer.assign(o, options);\n return propagating(new Hammer(element, o), o);\n };\n Hammer.assign(PropagatingHammer, Hammer);\n\n PropagatingHammer.Manager = function (element, options) {\n var o = Object.create(_options);\n if (options) Hammer.assign(o, options);\n return propagating(new Hammer.Manager(element, o), o);\n };\n\n return PropagatingHammer;\n }\n\n // create a wrapper object which will override the functions\n // `on`, `off`, `destroy`, and `emit` of the hammer instance\n var wrapper = Object.create(hammer);\n\n // attach to DOM element\n var element = hammer.element;\n\n if(!element.hammer) element.hammer = [];\n element.hammer.push(wrapper);\n\n // register an event to catch the start of a gesture and store the\n // target in a singleton\n hammer.on('hammer.input', function (event) {\n if (_options.preventDefault === true || (_options.preventDefault === event.pointerType)) {\n event.preventDefault();\n }\n if (event.isFirst) {\n _firstTarget = event.target;\n }\n });\n\n /** @type {Object.>} */\n wrapper._handlers = {};\n\n /**\n * Register a handler for one or multiple events\n * @param {String} events A space separated string with events\n * @param {function} handler A callback function, called as handler(event)\n * @returns {Hammer.Manager} Returns the hammer instance\n */\n wrapper.on = function (events, handler) {\n // register the handler\n split(events).forEach(function (event) {\n var _handlers = wrapper._handlers[event];\n if (!_handlers) {\n wrapper._handlers[event] = _handlers = [];\n\n // register the static, propagated handler\n hammer.on(event, propagatedHandler);\n }\n _handlers.push(handler);\n });\n\n return wrapper;\n };\n\n /**\n * Unregister a handler for one or multiple events\n * @param {String} events A space separated string with events\n * @param {function} [handler] Optional. The registered handler. If not\n * provided, all handlers for given events\n * are removed.\n * @returns {Hammer.Manager} Returns the hammer instance\n */\n wrapper.off = function (events, handler) {\n // unregister the handler\n split(events).forEach(function (event) {\n var _handlers = wrapper._handlers[event];\n if (_handlers) {\n _handlers = handler ? _handlers.filter(function (h) {\n return h !== handler;\n }) : [];\n\n if (_handlers.length > 0) {\n wrapper._handlers[event] = _handlers;\n }\n else {\n // remove static, propagated handler\n hammer.off(event, propagatedHandler);\n delete wrapper._handlers[event];\n }\n }\n });\n\n return wrapper;\n };\n\n /**\n * Emit to the event listeners\n * @param {string} eventType\n * @param {Event} event\n */\n wrapper.emit = function(eventType, event) {\n _firstTarget = event.target;\n hammer.emit(eventType, event);\n };\n\n wrapper.destroy = function () {\n // Detach from DOM element\n var hammers = hammer.element.hammer;\n var idx = hammers.indexOf(wrapper);\n if(idx !== -1) hammers.splice(idx,1);\n if(!hammers.length) delete hammer.element.hammer;\n\n // clear all handlers\n wrapper._handlers = {};\n\n // call original hammer destroy\n hammer.destroy();\n };\n\n // split a string with space separated words\n function split(events) {\n return events.match(/[^ ]+/g);\n }\n\n /**\n * A static event handler, applying event propagation.\n * @param {Object} event\n */\n function propagatedHandler(event) {\n // let only a single hammer instance handle this event\n if (event.type !== 'hammer.input') {\n // it is possible that the same srcEvent is used with multiple hammer events,\n // we keep track on which events are handled in an object _handled\n if (!event.srcEvent._handled) {\n event.srcEvent._handled = {};\n }\n\n if (event.srcEvent._handled[event.type]) {\n return;\n }\n else {\n event.srcEvent._handled[event.type] = true;\n }\n }\n\n // attach a stopPropagation function to the event\n var stopped = false;\n event.stopPropagation = function () {\n stopped = true;\n };\n\n //wrap the srcEvent's stopPropagation to also stop hammer propagation:\n var srcStop = event.srcEvent.stopPropagation.bind(event.srcEvent);\n if(typeof srcStop == \"function\") {\n event.srcEvent.stopPropagation = function(){\n srcStop();\n event.stopPropagation();\n }\n }\n\n // attach firstTarget property to the event\n event.firstTarget = _firstTarget;\n\n // propagate over all elements (until stopped)\n var elem = _firstTarget;\n while (elem && !stopped) {\n var elemHammer = elem.hammer;\n if(elemHammer){\n var _handlers;\n for(var k = 0; k < elemHammer.length; k++){\n _handlers = elemHammer[k]._handlers[event.type];\n if(_handlers) for (var i = 0; i < _handlers.length && !stopped; i++) {\n _handlers[i](event);\n }\n }\n }\n elem = elem.parentNode;\n }\n }\n\n return wrapper;\n };\n}));\n","/*! Hammer.JS - v2.0.17-rc - 2019-12-16\n * http://naver.github.io/egjs\n *\n * Forked By Naver egjs\n * Copyright (c) hammerjs\n * Licensed under the MIT license */\nfunction _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n}\n\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\n\nfunction _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n}\n\n/**\n * @private\n * extend object.\n * means that properties in dest will be overwritten by the ones in src.\n * @param {Object} target\n * @param {...Object} objects_to_assign\n * @returns {Object} target\n */\nvar assign;\n\nif (typeof Object.assign !== 'function') {\n assign = function assign(target) {\n if (target === undefined || target === null) {\n throw new TypeError('Cannot convert undefined or null to object');\n }\n\n var output = Object(target);\n\n for (var index = 1; index < arguments.length; index++) {\n var source = arguments[index];\n\n if (source !== undefined && source !== null) {\n for (var nextKey in source) {\n if (source.hasOwnProperty(nextKey)) {\n output[nextKey] = source[nextKey];\n }\n }\n }\n }\n\n return output;\n };\n} else {\n assign = Object.assign;\n}\n\nvar assign$1 = assign;\n\nvar VENDOR_PREFIXES = ['', 'webkit', 'Moz', 'MS', 'ms', 'o'];\nvar TEST_ELEMENT = typeof document === \"undefined\" ? {\n style: {}\n} : document.createElement('div');\nvar TYPE_FUNCTION = 'function';\nvar round = Math.round,\n abs = Math.abs;\nvar now = Date.now;\n\n/**\n * @private\n * get the prefixed property\n * @param {Object} obj\n * @param {String} property\n * @returns {String|Undefined} prefixed\n */\n\nfunction prefixed(obj, property) {\n var prefix;\n var prop;\n var camelProp = property[0].toUpperCase() + property.slice(1);\n var i = 0;\n\n while (i < VENDOR_PREFIXES.length) {\n prefix = VENDOR_PREFIXES[i];\n prop = prefix ? prefix + camelProp : property;\n\n if (prop in obj) {\n return prop;\n }\n\n i++;\n }\n\n return undefined;\n}\n\n/* eslint-disable no-new-func, no-nested-ternary */\nvar win;\n\nif (typeof window === \"undefined\") {\n // window is undefined in node.js\n win = {};\n} else {\n win = window;\n}\n\nvar PREFIXED_TOUCH_ACTION = prefixed(TEST_ELEMENT.style, 'touchAction');\nvar NATIVE_TOUCH_ACTION = PREFIXED_TOUCH_ACTION !== undefined;\nfunction getTouchActionProps() {\n if (!NATIVE_TOUCH_ACTION) {\n return false;\n }\n\n var touchMap = {};\n var cssSupports = win.CSS && win.CSS.supports;\n ['auto', 'manipulation', 'pan-y', 'pan-x', 'pan-x pan-y', 'none'].forEach(function (val) {\n // If css.supports is not supported but there is native touch-action assume it supports\n // all values. This is the case for IE 10 and 11.\n return touchMap[val] = cssSupports ? win.CSS.supports('touch-action', val) : true;\n });\n return touchMap;\n}\n\nvar TOUCH_ACTION_COMPUTE = 'compute';\nvar TOUCH_ACTION_AUTO = 'auto';\nvar TOUCH_ACTION_MANIPULATION = 'manipulation'; // not implemented\n\nvar TOUCH_ACTION_NONE = 'none';\nvar TOUCH_ACTION_PAN_X = 'pan-x';\nvar TOUCH_ACTION_PAN_Y = 'pan-y';\nvar TOUCH_ACTION_MAP = getTouchActionProps();\n\nvar MOBILE_REGEX = /mobile|tablet|ip(ad|hone|od)|android/i;\nvar SUPPORT_TOUCH = 'ontouchstart' in win;\nvar SUPPORT_POINTER_EVENTS = prefixed(win, 'PointerEvent') !== undefined;\nvar SUPPORT_ONLY_TOUCH = SUPPORT_TOUCH && MOBILE_REGEX.test(navigator.userAgent);\nvar INPUT_TYPE_TOUCH = 'touch';\nvar INPUT_TYPE_PEN = 'pen';\nvar INPUT_TYPE_MOUSE = 'mouse';\nvar INPUT_TYPE_KINECT = 'kinect';\nvar COMPUTE_INTERVAL = 25;\nvar INPUT_START = 1;\nvar INPUT_MOVE = 2;\nvar INPUT_END = 4;\nvar INPUT_CANCEL = 8;\nvar DIRECTION_NONE = 1;\nvar DIRECTION_LEFT = 2;\nvar DIRECTION_RIGHT = 4;\nvar DIRECTION_UP = 8;\nvar DIRECTION_DOWN = 16;\nvar DIRECTION_HORIZONTAL = DIRECTION_LEFT | DIRECTION_RIGHT;\nvar DIRECTION_VERTICAL = DIRECTION_UP | DIRECTION_DOWN;\nvar DIRECTION_ALL = DIRECTION_HORIZONTAL | DIRECTION_VERTICAL;\nvar PROPS_XY = ['x', 'y'];\nvar PROPS_CLIENT_XY = ['clientX', 'clientY'];\n\n/**\n * @private\n * walk objects and arrays\n * @param {Object} obj\n * @param {Function} iterator\n * @param {Object} context\n */\nfunction each(obj, iterator, context) {\n var i;\n\n if (!obj) {\n return;\n }\n\n if (obj.forEach) {\n obj.forEach(iterator, context);\n } else if (obj.length !== undefined) {\n i = 0;\n\n while (i < obj.length) {\n iterator.call(context, obj[i], i, obj);\n i++;\n }\n } else {\n for (i in obj) {\n obj.hasOwnProperty(i) && iterator.call(context, obj[i], i, obj);\n }\n }\n}\n\n/**\n * @private\n * let a boolean value also be a function that must return a boolean\n * this first item in args will be used as the context\n * @param {Boolean|Function} val\n * @param {Array} [args]\n * @returns {Boolean}\n */\n\nfunction boolOrFn(val, args) {\n if (typeof val === TYPE_FUNCTION) {\n return val.apply(args ? args[0] || undefined : undefined, args);\n }\n\n return val;\n}\n\n/**\n * @private\n * small indexOf wrapper\n * @param {String} str\n * @param {String} find\n * @returns {Boolean} found\n */\nfunction inStr(str, find) {\n return str.indexOf(find) > -1;\n}\n\n/**\n * @private\n * when the touchActions are collected they are not a valid value, so we need to clean things up. *\n * @param {String} actions\n * @returns {*}\n */\n\nfunction cleanTouchActions(actions) {\n // none\n if (inStr(actions, TOUCH_ACTION_NONE)) {\n return TOUCH_ACTION_NONE;\n }\n\n var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X);\n var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y); // if both pan-x and pan-y are set (different recognizers\n // for different directions, e.g. horizontal pan but vertical swipe?)\n // we need none (as otherwise with pan-x pan-y combined none of these\n // recognizers will work, since the browser would handle all panning\n\n if (hasPanX && hasPanY) {\n return TOUCH_ACTION_NONE;\n } // pan-x OR pan-y\n\n\n if (hasPanX || hasPanY) {\n return hasPanX ? TOUCH_ACTION_PAN_X : TOUCH_ACTION_PAN_Y;\n } // manipulation\n\n\n if (inStr(actions, TOUCH_ACTION_MANIPULATION)) {\n return TOUCH_ACTION_MANIPULATION;\n }\n\n return TOUCH_ACTION_AUTO;\n}\n\n/**\n * @private\n * Touch Action\n * sets the touchAction property or uses the js alternative\n * @param {Manager} manager\n * @param {String} value\n * @constructor\n */\n\nvar TouchAction =\n/*#__PURE__*/\nfunction () {\n function TouchAction(manager, value) {\n this.manager = manager;\n this.set(value);\n }\n /**\n * @private\n * set the touchAction value on the element or enable the polyfill\n * @param {String} value\n */\n\n\n var _proto = TouchAction.prototype;\n\n _proto.set = function set(value) {\n // find out the touch-action by the event handlers\n if (value === TOUCH_ACTION_COMPUTE) {\n value = this.compute();\n }\n\n if (NATIVE_TOUCH_ACTION && this.manager.element.style && TOUCH_ACTION_MAP[value]) {\n this.manager.element.style[PREFIXED_TOUCH_ACTION] = value;\n }\n\n this.actions = value.toLowerCase().trim();\n };\n /**\n * @private\n * just re-set the touchAction value\n */\n\n\n _proto.update = function update() {\n this.set(this.manager.options.touchAction);\n };\n /**\n * @private\n * compute the value for the touchAction property based on the recognizer's settings\n * @returns {String} value\n */\n\n\n _proto.compute = function compute() {\n var actions = [];\n each(this.manager.recognizers, function (recognizer) {\n if (boolOrFn(recognizer.options.enable, [recognizer])) {\n actions = actions.concat(recognizer.getTouchAction());\n }\n });\n return cleanTouchActions(actions.join(' '));\n };\n /**\n * @private\n * this method is called on each input cycle and provides the preventing of the browser behavior\n * @param {Object} input\n */\n\n\n _proto.preventDefaults = function preventDefaults(input) {\n var srcEvent = input.srcEvent;\n var direction = input.offsetDirection; // if the touch action did prevented once this session\n\n if (this.manager.session.prevented) {\n srcEvent.preventDefault();\n return;\n }\n\n var actions = this.actions;\n var hasNone = inStr(actions, TOUCH_ACTION_NONE) && !TOUCH_ACTION_MAP[TOUCH_ACTION_NONE];\n var hasPanY = inStr(actions, TOUCH_ACTION_PAN_Y) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_Y];\n var hasPanX = inStr(actions, TOUCH_ACTION_PAN_X) && !TOUCH_ACTION_MAP[TOUCH_ACTION_PAN_X];\n\n if (hasNone) {\n // do not prevent defaults if this is a tap gesture\n var isTapPointer = input.pointers.length === 1;\n var isTapMovement = input.distance < 2;\n var isTapTouchTime = input.deltaTime < 250;\n\n if (isTapPointer && isTapMovement && isTapTouchTime) {\n return;\n }\n }\n\n if (hasPanX && hasPanY) {\n // `pan-x pan-y` means browser handles all scrolling/panning, do not prevent\n return;\n }\n\n if (hasNone || hasPanY && direction & DIRECTION_HORIZONTAL || hasPanX && direction & DIRECTION_VERTICAL) {\n return this.preventSrc(srcEvent);\n }\n };\n /**\n * @private\n * call preventDefault to prevent the browser's default behavior (scrolling in most cases)\n * @param {Object} srcEvent\n */\n\n\n _proto.preventSrc = function preventSrc(srcEvent) {\n this.manager.session.prevented = true;\n srcEvent.preventDefault();\n };\n\n return TouchAction;\n}();\n\n/**\n * @private\n * find if a node is in the given parent\n * @method hasParent\n * @param {HTMLElement} node\n * @param {HTMLElement} parent\n * @return {Boolean} found\n */\nfunction hasParent(node, parent) {\n while (node) {\n if (node === parent) {\n return true;\n }\n\n node = node.parentNode;\n }\n\n return false;\n}\n\n/**\n * @private\n * get the center of all the pointers\n * @param {Array} pointers\n * @return {Object} center contains `x` and `y` properties\n */\n\nfunction getCenter(pointers) {\n var pointersLength = pointers.length; // no need to loop when only one touch\n\n if (pointersLength === 1) {\n return {\n x: round(pointers[0].clientX),\n y: round(pointers[0].clientY)\n };\n }\n\n var x = 0;\n var y = 0;\n var i = 0;\n\n while (i < pointersLength) {\n x += pointers[i].clientX;\n y += pointers[i].clientY;\n i++;\n }\n\n return {\n x: round(x / pointersLength),\n y: round(y / pointersLength)\n };\n}\n\n/**\n * @private\n * create a simple clone from the input used for storage of firstInput and firstMultiple\n * @param {Object} input\n * @returns {Object} clonedInputData\n */\n\nfunction simpleCloneInputData(input) {\n // make a simple copy of the pointers because we will get a reference if we don't\n // we only need clientXY for the calculations\n var pointers = [];\n var i = 0;\n\n while (i < input.pointers.length) {\n pointers[i] = {\n clientX: round(input.pointers[i].clientX),\n clientY: round(input.pointers[i].clientY)\n };\n i++;\n }\n\n return {\n timeStamp: now(),\n pointers: pointers,\n center: getCenter(pointers),\n deltaX: input.deltaX,\n deltaY: input.deltaY\n };\n}\n\n/**\n * @private\n * calculate the absolute distance between two points\n * @param {Object} p1 {x, y}\n * @param {Object} p2 {x, y}\n * @param {Array} [props] containing x and y keys\n * @return {Number} distance\n */\n\nfunction getDistance(p1, p2, props) {\n if (!props) {\n props = PROPS_XY;\n }\n\n var x = p2[props[0]] - p1[props[0]];\n var y = p2[props[1]] - p1[props[1]];\n return Math.sqrt(x * x + y * y);\n}\n\n/**\n * @private\n * calculate the angle between two coordinates\n * @param {Object} p1\n * @param {Object} p2\n * @param {Array} [props] containing x and y keys\n * @return {Number} angle\n */\n\nfunction getAngle(p1, p2, props) {\n if (!props) {\n props = PROPS_XY;\n }\n\n var x = p2[props[0]] - p1[props[0]];\n var y = p2[props[1]] - p1[props[1]];\n return Math.atan2(y, x) * 180 / Math.PI;\n}\n\n/**\n * @private\n * get the direction between two points\n * @param {Number} x\n * @param {Number} y\n * @return {Number} direction\n */\n\nfunction getDirection(x, y) {\n if (x === y) {\n return DIRECTION_NONE;\n }\n\n if (abs(x) >= abs(y)) {\n return x < 0 ? DIRECTION_LEFT : DIRECTION_RIGHT;\n }\n\n return y < 0 ? DIRECTION_UP : DIRECTION_DOWN;\n}\n\nfunction computeDeltaXY(session, input) {\n var center = input.center; // let { offsetDelta:offset = {}, prevDelta = {}, prevInput = {} } = session;\n // jscs throwing error on defalut destructured values and without defaults tests fail\n\n var offset = session.offsetDelta || {};\n var prevDelta = session.prevDelta || {};\n var prevInput = session.prevInput || {};\n\n if (input.eventType === INPUT_START || prevInput.eventType === INPUT_END) {\n prevDelta = session.prevDelta = {\n x: prevInput.deltaX || 0,\n y: prevInput.deltaY || 0\n };\n offset = session.offsetDelta = {\n x: center.x,\n y: center.y\n };\n }\n\n input.deltaX = prevDelta.x + (center.x - offset.x);\n input.deltaY = prevDelta.y + (center.y - offset.y);\n}\n\n/**\n * @private\n * calculate the velocity between two points. unit is in px per ms.\n * @param {Number} deltaTime\n * @param {Number} x\n * @param {Number} y\n * @return {Object} velocity `x` and `y`\n */\nfunction getVelocity(deltaTime, x, y) {\n return {\n x: x / deltaTime || 0,\n y: y / deltaTime || 0\n };\n}\n\n/**\n * @private\n * calculate the scale factor between two pointersets\n * no scale is 1, and goes down to 0 when pinched together, and bigger when pinched out\n * @param {Array} start array of pointers\n * @param {Array} end array of pointers\n * @return {Number} scale\n */\n\nfunction getScale(start, end) {\n return getDistance(end[0], end[1], PROPS_CLIENT_XY) / getDistance(start[0], start[1], PROPS_CLIENT_XY);\n}\n\n/**\n * @private\n * calculate the rotation degrees between two pointersets\n * @param {Array} start array of pointers\n * @param {Array} end array of pointers\n * @return {Number} rotation\n */\n\nfunction getRotation(start, end) {\n return getAngle(end[1], end[0], PROPS_CLIENT_XY) + getAngle(start[1], start[0], PROPS_CLIENT_XY);\n}\n\n/**\n * @private\n * velocity is calculated every x ms\n * @param {Object} session\n * @param {Object} input\n */\n\nfunction computeIntervalInputData(session, input) {\n var last = session.lastInterval || input;\n var deltaTime = input.timeStamp - last.timeStamp;\n var velocity;\n var velocityX;\n var velocityY;\n var direction;\n\n if (input.eventType !== INPUT_CANCEL && (deltaTime > COMPUTE_INTERVAL || last.velocity === undefined)) {\n var deltaX = input.deltaX - last.deltaX;\n var deltaY = input.deltaY - last.deltaY;\n var v = getVelocity(deltaTime, deltaX, deltaY);\n velocityX = v.x;\n velocityY = v.y;\n velocity = abs(v.x) > abs(v.y) ? v.x : v.y;\n direction = getDirection(deltaX, deltaY);\n session.lastInterval = input;\n } else {\n // use latest velocity info if it doesn't overtake a minimum period\n velocity = last.velocity;\n velocityX = last.velocityX;\n velocityY = last.velocityY;\n direction = last.direction;\n }\n\n input.velocity = velocity;\n input.velocityX = velocityX;\n input.velocityY = velocityY;\n input.direction = direction;\n}\n\n/**\n* @private\n * extend the data with some usable properties like scale, rotate, velocity etc\n * @param {Object} manager\n * @param {Object} input\n */\n\nfunction computeInputData(manager, input) {\n var session = manager.session;\n var pointers = input.pointers;\n var pointersLength = pointers.length; // store the first input to calculate the distance and direction\n\n if (!session.firstInput) {\n session.firstInput = simpleCloneInputData(input);\n } // to compute scale and rotation we need to store the multiple touches\n\n\n if (pointersLength > 1 && !session.firstMultiple) {\n session.firstMultiple = simpleCloneInputData(input);\n } else if (pointersLength === 1) {\n session.firstMultiple = false;\n }\n\n var firstInput = session.firstInput,\n firstMultiple = session.firstMultiple;\n var offsetCenter = firstMultiple ? firstMultiple.center : firstInput.center;\n var center = input.center = getCenter(pointers);\n input.timeStamp = now();\n input.deltaTime = input.timeStamp - firstInput.timeStamp;\n input.angle = getAngle(offsetCenter, center);\n input.distance = getDistance(offsetCenter, center);\n computeDeltaXY(session, input);\n input.offsetDirection = getDirection(input.deltaX, input.deltaY);\n var overallVelocity = getVelocity(input.deltaTime, input.deltaX, input.deltaY);\n input.overallVelocityX = overallVelocity.x;\n input.overallVelocityY = overallVelocity.y;\n input.overallVelocity = abs(overallVelocity.x) > abs(overallVelocity.y) ? overallVelocity.x : overallVelocity.y;\n input.scale = firstMultiple ? getScale(firstMultiple.pointers, pointers) : 1;\n input.rotation = firstMultiple ? getRotation(firstMultiple.pointers, pointers) : 0;\n input.maxPointers = !session.prevInput ? input.pointers.length : input.pointers.length > session.prevInput.maxPointers ? input.pointers.length : session.prevInput.maxPointers;\n computeIntervalInputData(session, input); // find the correct target\n\n var target = manager.element;\n var srcEvent = input.srcEvent;\n var srcEventTarget;\n\n if (srcEvent.composedPath) {\n srcEventTarget = srcEvent.composedPath()[0];\n } else if (srcEvent.path) {\n srcEventTarget = srcEvent.path[0];\n } else {\n srcEventTarget = srcEvent.target;\n }\n\n if (hasParent(srcEventTarget, target)) {\n target = srcEventTarget;\n }\n\n input.target = target;\n}\n\n/**\n * @private\n * handle input events\n * @param {Manager} manager\n * @param {String} eventType\n * @param {Object} input\n */\n\nfunction inputHandler(manager, eventType, input) {\n var pointersLen = input.pointers.length;\n var changedPointersLen = input.changedPointers.length;\n var isFirst = eventType & INPUT_START && pointersLen - changedPointersLen === 0;\n var isFinal = eventType & (INPUT_END | INPUT_CANCEL) && pointersLen - changedPointersLen === 0;\n input.isFirst = !!isFirst;\n input.isFinal = !!isFinal;\n\n if (isFirst) {\n manager.session = {};\n } // source event is the normalized value of the domEvents\n // like 'touchstart, mouseup, pointerdown'\n\n\n input.eventType = eventType; // compute scale, rotation etc\n\n computeInputData(manager, input); // emit secret event\n\n manager.emit('hammer.input', input);\n manager.recognize(input);\n manager.session.prevInput = input;\n}\n\n/**\n * @private\n * split string on whitespace\n * @param {String} str\n * @returns {Array} words\n */\nfunction splitStr(str) {\n return str.trim().split(/\\s+/g);\n}\n\n/**\n * @private\n * addEventListener with multiple events at once\n * @param {EventTarget} target\n * @param {String} types\n * @param {Function} handler\n */\n\nfunction addEventListeners(target, types, handler) {\n each(splitStr(types), function (type) {\n target.addEventListener(type, handler, false);\n });\n}\n\n/**\n * @private\n * removeEventListener with multiple events at once\n * @param {EventTarget} target\n * @param {String} types\n * @param {Function} handler\n */\n\nfunction removeEventListeners(target, types, handler) {\n each(splitStr(types), function (type) {\n target.removeEventListener(type, handler, false);\n });\n}\n\n/**\n * @private\n * get the window object of an element\n * @param {HTMLElement} element\n * @returns {DocumentView|Window}\n */\nfunction getWindowForElement(element) {\n var doc = element.ownerDocument || element;\n return doc.defaultView || doc.parentWindow || window;\n}\n\n/**\n * @private\n * create new input type manager\n * @param {Manager} manager\n * @param {Function} callback\n * @returns {Input}\n * @constructor\n */\n\nvar Input =\n/*#__PURE__*/\nfunction () {\n function Input(manager, callback) {\n var self = this;\n this.manager = manager;\n this.callback = callback;\n this.element = manager.element;\n this.target = manager.options.inputTarget; // smaller wrapper around the handler, for the scope and the enabled state of the manager,\n // so when disabled the input events are completely bypassed.\n\n this.domHandler = function (ev) {\n if (boolOrFn(manager.options.enable, [manager])) {\n self.handler(ev);\n }\n };\n\n this.init();\n }\n /**\n * @private\n * should handle the inputEvent data and trigger the callback\n * @virtual\n */\n\n\n var _proto = Input.prototype;\n\n _proto.handler = function handler() {};\n /**\n * @private\n * bind the events\n */\n\n\n _proto.init = function init() {\n this.evEl && addEventListeners(this.element, this.evEl, this.domHandler);\n this.evTarget && addEventListeners(this.target, this.evTarget, this.domHandler);\n this.evWin && addEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler);\n };\n /**\n * @private\n * unbind the events\n */\n\n\n _proto.destroy = function destroy() {\n this.evEl && removeEventListeners(this.element, this.evEl, this.domHandler);\n this.evTarget && removeEventListeners(this.target, this.evTarget, this.domHandler);\n this.evWin && removeEventListeners(getWindowForElement(this.element), this.evWin, this.domHandler);\n };\n\n return Input;\n}();\n\n/**\n * @private\n * find if a array contains the object using indexOf or a simple polyFill\n * @param {Array} src\n * @param {String} find\n * @param {String} [findByKey]\n * @return {Boolean|Number} false when not found, or the index\n */\nfunction inArray(src, find, findByKey) {\n if (src.indexOf && !findByKey) {\n return src.indexOf(find);\n } else {\n var i = 0;\n\n while (i < src.length) {\n if (findByKey && src[i][findByKey] == find || !findByKey && src[i] === find) {\n // do not use === here, test fails\n return i;\n }\n\n i++;\n }\n\n return -1;\n }\n}\n\nvar POINTER_INPUT_MAP = {\n pointerdown: INPUT_START,\n pointermove: INPUT_MOVE,\n pointerup: INPUT_END,\n pointercancel: INPUT_CANCEL,\n pointerout: INPUT_CANCEL\n}; // in IE10 the pointer types is defined as an enum\n\nvar IE10_POINTER_TYPE_ENUM = {\n 2: INPUT_TYPE_TOUCH,\n 3: INPUT_TYPE_PEN,\n 4: INPUT_TYPE_MOUSE,\n 5: INPUT_TYPE_KINECT // see https://twitter.com/jacobrossi/status/480596438489890816\n\n};\nvar POINTER_ELEMENT_EVENTS = 'pointerdown';\nvar POINTER_WINDOW_EVENTS = 'pointermove pointerup pointercancel'; // IE10 has prefixed support, and case-sensitive\n\nif (win.MSPointerEvent && !win.PointerEvent) {\n POINTER_ELEMENT_EVENTS = 'MSPointerDown';\n POINTER_WINDOW_EVENTS = 'MSPointerMove MSPointerUp MSPointerCancel';\n}\n/**\n * @private\n * Pointer events input\n * @constructor\n * @extends Input\n */\n\n\nvar PointerEventInput =\n/*#__PURE__*/\nfunction (_Input) {\n _inheritsLoose(PointerEventInput, _Input);\n\n function PointerEventInput() {\n var _this;\n\n var proto = PointerEventInput.prototype;\n proto.evEl = POINTER_ELEMENT_EVENTS;\n proto.evWin = POINTER_WINDOW_EVENTS;\n _this = _Input.apply(this, arguments) || this;\n _this.store = _this.manager.session.pointerEvents = [];\n return _this;\n }\n /**\n * @private\n * handle mouse events\n * @param {Object} ev\n */\n\n\n var _proto = PointerEventInput.prototype;\n\n _proto.handler = function handler(ev) {\n var store = this.store;\n var removePointer = false;\n var eventTypeNormalized = ev.type.toLowerCase().replace('ms', '');\n var eventType = POINTER_INPUT_MAP[eventTypeNormalized];\n var pointerType = IE10_POINTER_TYPE_ENUM[ev.pointerType] || ev.pointerType;\n var isTouch = pointerType === INPUT_TYPE_TOUCH; // get index of the event in the store\n\n var storeIndex = inArray(store, ev.pointerId, 'pointerId'); // start and mouse must be down\n\n if (eventType & INPUT_START && (ev.button === 0 || isTouch)) {\n if (storeIndex < 0) {\n store.push(ev);\n storeIndex = store.length - 1;\n }\n } else if (eventType & (INPUT_END | INPUT_CANCEL)) {\n removePointer = true;\n } // it not found, so the pointer hasn't been down (so it's probably a hover)\n\n\n if (storeIndex < 0) {\n return;\n } // update the event in the store\n\n\n store[storeIndex] = ev;\n this.callback(this.manager, eventType, {\n pointers: store,\n changedPointers: [ev],\n pointerType: pointerType,\n srcEvent: ev\n });\n\n if (removePointer) {\n // remove from the store\n store.splice(storeIndex, 1);\n }\n };\n\n return PointerEventInput;\n}(Input);\n\n/**\n * @private\n * convert array-like objects to real arrays\n * @param {Object} obj\n * @returns {Array}\n */\nfunction toArray(obj) {\n return Array.prototype.slice.call(obj, 0);\n}\n\n/**\n * @private\n * unique array with objects based on a key (like 'id') or just by the array's value\n * @param {Array} src [{id:1},{id:2},{id:1}]\n * @param {String} [key]\n * @param {Boolean} [sort=False]\n * @returns {Array} [{id:1},{id:2}]\n */\n\nfunction uniqueArray(src, key, sort) {\n var results = [];\n var values = [];\n var i = 0;\n\n while (i < src.length) {\n var val = key ? src[i][key] : src[i];\n\n if (inArray(values, val) < 0) {\n results.push(src[i]);\n }\n\n values[i] = val;\n i++;\n }\n\n if (sort) {\n if (!key) {\n results = results.sort();\n } else {\n results = results.sort(function (a, b) {\n return a[key] > b[key];\n });\n }\n }\n\n return results;\n}\n\nvar TOUCH_INPUT_MAP = {\n touchstart: INPUT_START,\n touchmove: INPUT_MOVE,\n touchend: INPUT_END,\n touchcancel: INPUT_CANCEL\n};\nvar TOUCH_TARGET_EVENTS = 'touchstart touchmove touchend touchcancel';\n/**\n * @private\n * Multi-user touch events input\n * @constructor\n * @extends Input\n */\n\nvar TouchInput =\n/*#__PURE__*/\nfunction (_Input) {\n _inheritsLoose(TouchInput, _Input);\n\n function TouchInput() {\n var _this;\n\n TouchInput.prototype.evTarget = TOUCH_TARGET_EVENTS;\n _this = _Input.apply(this, arguments) || this;\n _this.targetIds = {}; // this.evTarget = TOUCH_TARGET_EVENTS;\n\n return _this;\n }\n\n var _proto = TouchInput.prototype;\n\n _proto.handler = function handler(ev) {\n var type = TOUCH_INPUT_MAP[ev.type];\n var touches = getTouches.call(this, ev, type);\n\n if (!touches) {\n return;\n }\n\n this.callback(this.manager, type, {\n pointers: touches[0],\n changedPointers: touches[1],\n pointerType: INPUT_TYPE_TOUCH,\n srcEvent: ev\n });\n };\n\n return TouchInput;\n}(Input);\n\nfunction getTouches(ev, type) {\n var allTouches = toArray(ev.touches);\n var targetIds = this.targetIds; // when there is only one touch, the process can be simplified\n\n if (type & (INPUT_START | INPUT_MOVE) && allTouches.length === 1) {\n targetIds[allTouches[0].identifier] = true;\n return [allTouches, allTouches];\n }\n\n var i;\n var targetTouches;\n var changedTouches = toArray(ev.changedTouches);\n var changedTargetTouches = [];\n var target = this.target; // get target touches from touches\n\n targetTouches = allTouches.filter(function (touch) {\n return hasParent(touch.target, target);\n }); // collect touches\n\n if (type === INPUT_START) {\n i = 0;\n\n while (i < targetTouches.length) {\n targetIds[targetTouches[i].identifier] = true;\n i++;\n }\n } // filter changed touches to only contain touches that exist in the collected target ids\n\n\n i = 0;\n\n while (i < changedTouches.length) {\n if (targetIds[changedTouches[i].identifier]) {\n changedTargetTouches.push(changedTouches[i]);\n } // cleanup removed touches\n\n\n if (type & (INPUT_END | INPUT_CANCEL)) {\n delete targetIds[changedTouches[i].identifier];\n }\n\n i++;\n }\n\n if (!changedTargetTouches.length) {\n return;\n }\n\n return [// merge targetTouches with changedTargetTouches so it contains ALL touches, including 'end' and 'cancel'\n uniqueArray(targetTouches.concat(changedTargetTouches), 'identifier', true), changedTargetTouches];\n}\n\nvar MOUSE_INPUT_MAP = {\n mousedown: INPUT_START,\n mousemove: INPUT_MOVE,\n mouseup: INPUT_END\n};\nvar MOUSE_ELEMENT_EVENTS = 'mousedown';\nvar MOUSE_WINDOW_EVENTS = 'mousemove mouseup';\n/**\n * @private\n * Mouse events input\n * @constructor\n * @extends Input\n */\n\nvar MouseInput =\n/*#__PURE__*/\nfunction (_Input) {\n _inheritsLoose(MouseInput, _Input);\n\n function MouseInput() {\n var _this;\n\n var proto = MouseInput.prototype;\n proto.evEl = MOUSE_ELEMENT_EVENTS;\n proto.evWin = MOUSE_WINDOW_EVENTS;\n _this = _Input.apply(this, arguments) || this;\n _this.pressed = false; // mousedown state\n\n return _this;\n }\n /**\n * @private\n * handle mouse events\n * @param {Object} ev\n */\n\n\n var _proto = MouseInput.prototype;\n\n _proto.handler = function handler(ev) {\n var eventType = MOUSE_INPUT_MAP[ev.type]; // on start we want to have the left mouse button down\n\n if (eventType & INPUT_START && ev.button === 0) {\n this.pressed = true;\n }\n\n if (eventType & INPUT_MOVE && ev.which !== 1) {\n eventType = INPUT_END;\n } // mouse must be down\n\n\n if (!this.pressed) {\n return;\n }\n\n if (eventType & INPUT_END) {\n this.pressed = false;\n }\n\n this.callback(this.manager, eventType, {\n pointers: [ev],\n changedPointers: [ev],\n pointerType: INPUT_TYPE_MOUSE,\n srcEvent: ev\n });\n };\n\n return MouseInput;\n}(Input);\n\n/**\n * @private\n * Combined touch and mouse input\n *\n * Touch has a higher priority then mouse, and while touching no mouse events are allowed.\n * This because touch devices also emit mouse events while doing a touch.\n *\n * @constructor\n * @extends Input\n */\n\nvar DEDUP_TIMEOUT = 2500;\nvar DEDUP_DISTANCE = 25;\n\nfunction setLastTouch(eventData) {\n var _eventData$changedPoi = eventData.changedPointers,\n touch = _eventData$changedPoi[0];\n\n if (touch.identifier === this.primaryTouch) {\n var lastTouch = {\n x: touch.clientX,\n y: touch.clientY\n };\n var lts = this.lastTouches;\n this.lastTouches.push(lastTouch);\n\n var removeLastTouch = function removeLastTouch() {\n var i = lts.indexOf(lastTouch);\n\n if (i > -1) {\n lts.splice(i, 1);\n }\n };\n\n setTimeout(removeLastTouch, DEDUP_TIMEOUT);\n }\n}\n\nfunction recordTouches(eventType, eventData) {\n if (eventType & INPUT_START) {\n this.primaryTouch = eventData.changedPointers[0].identifier;\n setLastTouch.call(this, eventData);\n } else if (eventType & (INPUT_END | INPUT_CANCEL)) {\n setLastTouch.call(this, eventData);\n }\n}\n\nfunction isSyntheticEvent(eventData) {\n var x = eventData.srcEvent.clientX;\n var y = eventData.srcEvent.clientY;\n\n for (var i = 0; i < this.lastTouches.length; i++) {\n var t = this.lastTouches[i];\n var dx = Math.abs(x - t.x);\n var dy = Math.abs(y - t.y);\n\n if (dx <= DEDUP_DISTANCE && dy <= DEDUP_DISTANCE) {\n return true;\n }\n }\n\n return false;\n}\n\nvar TouchMouseInput =\n/*#__PURE__*/\nfunction () {\n var TouchMouseInput =\n /*#__PURE__*/\n function (_Input) {\n _inheritsLoose(TouchMouseInput, _Input);\n\n function TouchMouseInput(_manager, callback) {\n var _this;\n\n _this = _Input.call(this, _manager, callback) || this;\n\n _this.handler = function (manager, inputEvent, inputData) {\n var isTouch = inputData.pointerType === INPUT_TYPE_TOUCH;\n var isMouse = inputData.pointerType === INPUT_TYPE_MOUSE;\n\n if (isMouse && inputData.sourceCapabilities && inputData.sourceCapabilities.firesTouchEvents) {\n return;\n } // when we're in a touch event, record touches to de-dupe synthetic mouse event\n\n\n if (isTouch) {\n recordTouches.call(_assertThisInitialized(_assertThisInitialized(_this)), inputEvent, inputData);\n } else if (isMouse && isSyntheticEvent.call(_assertThisInitialized(_assertThisInitialized(_this)), inputData)) {\n return;\n }\n\n _this.callback(manager, inputEvent, inputData);\n };\n\n _this.touch = new TouchInput(_this.manager, _this.handler);\n _this.mouse = new MouseInput(_this.manager, _this.handler);\n _this.primaryTouch = null;\n _this.lastTouches = [];\n return _this;\n }\n /**\n * @private\n * handle mouse and touch events\n * @param {Hammer} manager\n * @param {String} inputEvent\n * @param {Object} inputData\n */\n\n\n var _proto = TouchMouseInput.prototype;\n\n /**\n * @private\n * remove the event listeners\n */\n _proto.destroy = function destroy() {\n this.touch.destroy();\n this.mouse.destroy();\n };\n\n return TouchMouseInput;\n }(Input);\n\n return TouchMouseInput;\n}();\n\n/**\n * @private\n * create new input type manager\n * called by the Manager constructor\n * @param {Hammer} manager\n * @returns {Input}\n */\n\nfunction createInputInstance(manager) {\n var Type; // let inputClass = manager.options.inputClass;\n\n var inputClass = manager.options.inputClass;\n\n if (inputClass) {\n Type = inputClass;\n } else if (SUPPORT_POINTER_EVENTS) {\n Type = PointerEventInput;\n } else if (SUPPORT_ONLY_TOUCH) {\n Type = TouchInput;\n } else if (!SUPPORT_TOUCH) {\n Type = MouseInput;\n } else {\n Type = TouchMouseInput;\n }\n\n return new Type(manager, inputHandler);\n}\n\n/**\n * @private\n * if the argument is an array, we want to execute the fn on each entry\n * if it aint an array we don't want to do a thing.\n * this is used by all the methods that accept a single and array argument.\n * @param {*|Array} arg\n * @param {String} fn\n * @param {Object} [context]\n * @returns {Boolean}\n */\n\nfunction invokeArrayArg(arg, fn, context) {\n if (Array.isArray(arg)) {\n each(arg, context[fn], context);\n return true;\n }\n\n return false;\n}\n\nvar STATE_POSSIBLE = 1;\nvar STATE_BEGAN = 2;\nvar STATE_CHANGED = 4;\nvar STATE_ENDED = 8;\nvar STATE_RECOGNIZED = STATE_ENDED;\nvar STATE_CANCELLED = 16;\nvar STATE_FAILED = 32;\n\n/**\n * @private\n * get a unique id\n * @returns {number} uniqueId\n */\nvar _uniqueId = 1;\nfunction uniqueId() {\n return _uniqueId++;\n}\n\n/**\n * @private\n * get a recognizer by name if it is bound to a manager\n * @param {Recognizer|String} otherRecognizer\n * @param {Recognizer} recognizer\n * @returns {Recognizer}\n */\nfunction getRecognizerByNameIfManager(otherRecognizer, recognizer) {\n var manager = recognizer.manager;\n\n if (manager) {\n return manager.get(otherRecognizer);\n }\n\n return otherRecognizer;\n}\n\n/**\n * @private\n * get a usable string, used as event postfix\n * @param {constant} state\n * @returns {String} state\n */\n\nfunction stateStr(state) {\n if (state & STATE_CANCELLED) {\n return 'cancel';\n } else if (state & STATE_ENDED) {\n return 'end';\n } else if (state & STATE_CHANGED) {\n return 'move';\n } else if (state & STATE_BEGAN) {\n return 'start';\n }\n\n return '';\n}\n\n/**\n * @private\n * Recognizer flow explained; *\n * All recognizers have the initial state of POSSIBLE when a input session starts.\n * The definition of a input session is from the first input until the last input, with all it's movement in it. *\n * Example session for mouse-input: mousedown -> mousemove -> mouseup\n *\n * On each recognizing cycle (see Manager.recognize) the .recognize() method is executed\n * which determines with state it should be.\n *\n * If the recognizer has the state FAILED, CANCELLED or RECOGNIZED (equals ENDED), it is reset to\n * POSSIBLE to give it another change on the next cycle.\n *\n * Possible\n * |\n * +-----+---------------+\n * | |\n * +-----+-----+ |\n * | | |\n * Failed Cancelled |\n * +-------+------+\n * | |\n * Recognized Began\n * |\n * Changed\n * |\n * Ended/Recognized\n */\n\n/**\n * @private\n * Recognizer\n * Every recognizer needs to extend from this class.\n * @constructor\n * @param {Object} options\n */\n\nvar Recognizer =\n/*#__PURE__*/\nfunction () {\n function Recognizer(options) {\n if (options === void 0) {\n options = {};\n }\n\n this.options = _extends({\n enable: true\n }, options);\n this.id = uniqueId();\n this.manager = null; // default is enable true\n\n this.state = STATE_POSSIBLE;\n this.simultaneous = {};\n this.requireFail = [];\n }\n /**\n * @private\n * set options\n * @param {Object} options\n * @return {Recognizer}\n */\n\n\n var _proto = Recognizer.prototype;\n\n _proto.set = function set(options) {\n assign$1(this.options, options); // also update the touchAction, in case something changed about the directions/enabled state\n\n this.manager && this.manager.touchAction.update();\n return this;\n };\n /**\n * @private\n * recognize simultaneous with an other recognizer.\n * @param {Recognizer} otherRecognizer\n * @returns {Recognizer} this\n */\n\n\n _proto.recognizeWith = function recognizeWith(otherRecognizer) {\n if (invokeArrayArg(otherRecognizer, 'recognizeWith', this)) {\n return this;\n }\n\n var simultaneous = this.simultaneous;\n otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);\n\n if (!simultaneous[otherRecognizer.id]) {\n simultaneous[otherRecognizer.id] = otherRecognizer;\n otherRecognizer.recognizeWith(this);\n }\n\n return this;\n };\n /**\n * @private\n * drop the simultaneous link. it doesnt remove the link on the other recognizer.\n * @param {Recognizer} otherRecognizer\n * @returns {Recognizer} this\n */\n\n\n _proto.dropRecognizeWith = function dropRecognizeWith(otherRecognizer) {\n if (invokeArrayArg(otherRecognizer, 'dropRecognizeWith', this)) {\n return this;\n }\n\n otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);\n delete this.simultaneous[otherRecognizer.id];\n return this;\n };\n /**\n * @private\n * recognizer can only run when an other is failing\n * @param {Recognizer} otherRecognizer\n * @returns {Recognizer} this\n */\n\n\n _proto.requireFailure = function requireFailure(otherRecognizer) {\n if (invokeArrayArg(otherRecognizer, 'requireFailure', this)) {\n return this;\n }\n\n var requireFail = this.requireFail;\n otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);\n\n if (inArray(requireFail, otherRecognizer) === -1) {\n requireFail.push(otherRecognizer);\n otherRecognizer.requireFailure(this);\n }\n\n return this;\n };\n /**\n * @private\n * drop the requireFailure link. it does not remove the link on the other recognizer.\n * @param {Recognizer} otherRecognizer\n * @returns {Recognizer} this\n */\n\n\n _proto.dropRequireFailure = function dropRequireFailure(otherRecognizer) {\n if (invokeArrayArg(otherRecognizer, 'dropRequireFailure', this)) {\n return this;\n }\n\n otherRecognizer = getRecognizerByNameIfManager(otherRecognizer, this);\n var index = inArray(this.requireFail, otherRecognizer);\n\n if (index > -1) {\n this.requireFail.splice(index, 1);\n }\n\n return this;\n };\n /**\n * @private\n * has require failures boolean\n * @returns {boolean}\n */\n\n\n _proto.hasRequireFailures = function hasRequireFailures() {\n return this.requireFail.length > 0;\n };\n /**\n * @private\n * if the recognizer can recognize simultaneous with an other recognizer\n * @param {Recognizer} otherRecognizer\n * @returns {Boolean}\n */\n\n\n _proto.canRecognizeWith = function canRecognizeWith(otherRecognizer) {\n return !!this.simultaneous[otherRecognizer.id];\n };\n /**\n * @private\n * You should use `tryEmit` instead of `emit` directly to check\n * that all the needed recognizers has failed before emitting.\n * @param {Object} input\n */\n\n\n _proto.emit = function emit(input) {\n var self = this;\n var state = this.state;\n\n function emit(event) {\n self.manager.emit(event, input);\n } // 'panstart' and 'panmove'\n\n\n if (state < STATE_ENDED) {\n emit(self.options.event + stateStr(state));\n }\n\n emit(self.options.event); // simple 'eventName' events\n\n if (input.additionalEvent) {\n // additional event(panleft, panright, pinchin, pinchout...)\n emit(input.additionalEvent);\n } // panend and pancancel\n\n\n if (state >= STATE_ENDED) {\n emit(self.options.event + stateStr(state));\n }\n };\n /**\n * @private\n * Check that all the require failure recognizers has failed,\n * if true, it emits a gesture event,\n * otherwise, setup the state to FAILED.\n * @param {Object} input\n */\n\n\n _proto.tryEmit = function tryEmit(input) {\n if (this.canEmit()) {\n return this.emit(input);\n } // it's failing anyway\n\n\n this.state = STATE_FAILED;\n };\n /**\n * @private\n * can we emit?\n * @returns {boolean}\n */\n\n\n _proto.canEmit = function canEmit() {\n var i = 0;\n\n while (i < this.requireFail.length) {\n if (!(this.requireFail[i].state & (STATE_FAILED | STATE_POSSIBLE))) {\n return false;\n }\n\n i++;\n }\n\n return true;\n };\n /**\n * @private\n * update the recognizer\n * @param {Object} inputData\n */\n\n\n _proto.recognize = function recognize(inputData) {\n // make a new copy of the inputData\n // so we can change the inputData without messing up the other recognizers\n var inputDataClone = assign$1({}, inputData); // is is enabled and allow recognizing?\n\n if (!boolOrFn(this.options.enable, [this, inputDataClone])) {\n this.reset();\n this.state = STATE_FAILED;\n return;\n } // reset when we've reached the end\n\n\n if (this.state & (STATE_RECOGNIZED | STATE_CANCELLED | STATE_FAILED)) {\n this.state = STATE_POSSIBLE;\n }\n\n this.state = this.process(inputDataClone); // the recognizer has recognized a gesture\n // so trigger an event\n\n if (this.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED | STATE_CANCELLED)) {\n this.tryEmit(inputDataClone);\n }\n };\n /**\n * @private\n * return the state of the recognizer\n * the actual recognizing happens in this method\n * @virtual\n * @param {Object} inputData\n * @returns {constant} STATE\n */\n\n /* jshint ignore:start */\n\n\n _proto.process = function process(inputData) {};\n /* jshint ignore:end */\n\n /**\n * @private\n * return the preferred touch-action\n * @virtual\n * @returns {Array}\n */\n\n\n _proto.getTouchAction = function getTouchAction() {};\n /**\n * @private\n * called when the gesture isn't allowed to recognize\n * like when another is being recognized or it is disabled\n * @virtual\n */\n\n\n _proto.reset = function reset() {};\n\n return Recognizer;\n}();\n\n/**\n * @private\n * A tap is recognized when the pointer is doing a small tap/click. Multiple taps are recognized if they occur\n * between the given interval and position. The delay option can be used to recognize multi-taps without firing\n * a single tap.\n *\n * The eventData from the emitted event contains the property `tapCount`, which contains the amount of\n * multi-taps being recognized.\n * @constructor\n * @extends Recognizer\n */\n\nvar TapRecognizer =\n/*#__PURE__*/\nfunction (_Recognizer) {\n _inheritsLoose(TapRecognizer, _Recognizer);\n\n function TapRecognizer(options) {\n var _this;\n\n if (options === void 0) {\n options = {};\n }\n\n _this = _Recognizer.call(this, _extends({\n event: 'tap',\n pointers: 1,\n taps: 1,\n interval: 300,\n // max time between the multi-tap taps\n time: 250,\n // max time of the pointer to be down (like finger on the screen)\n threshold: 9,\n // a minimal movement is ok, but keep it low\n posThreshold: 10\n }, options)) || this; // previous time and center,\n // used for tap counting\n\n _this.pTime = false;\n _this.pCenter = false;\n _this._timer = null;\n _this._input = null;\n _this.count = 0;\n return _this;\n }\n\n var _proto = TapRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n return [TOUCH_ACTION_MANIPULATION];\n };\n\n _proto.process = function process(input) {\n var _this2 = this;\n\n var options = this.options;\n var validPointers = input.pointers.length === options.pointers;\n var validMovement = input.distance < options.threshold;\n var validTouchTime = input.deltaTime < options.time;\n this.reset();\n\n if (input.eventType & INPUT_START && this.count === 0) {\n return this.failTimeout();\n } // we only allow little movement\n // and we've reached an end event, so a tap is possible\n\n\n if (validMovement && validTouchTime && validPointers) {\n if (input.eventType !== INPUT_END) {\n return this.failTimeout();\n }\n\n var validInterval = this.pTime ? input.timeStamp - this.pTime < options.interval : true;\n var validMultiTap = !this.pCenter || getDistance(this.pCenter, input.center) < options.posThreshold;\n this.pTime = input.timeStamp;\n this.pCenter = input.center;\n\n if (!validMultiTap || !validInterval) {\n this.count = 1;\n } else {\n this.count += 1;\n }\n\n this._input = input; // if tap count matches we have recognized it,\n // else it has began recognizing...\n\n var tapCount = this.count % options.taps;\n\n if (tapCount === 0) {\n // no failing requirements, immediately trigger the tap event\n // or wait as long as the multitap interval to trigger\n if (!this.hasRequireFailures()) {\n return STATE_RECOGNIZED;\n } else {\n this._timer = setTimeout(function () {\n _this2.state = STATE_RECOGNIZED;\n\n _this2.tryEmit();\n }, options.interval);\n return STATE_BEGAN;\n }\n }\n }\n\n return STATE_FAILED;\n };\n\n _proto.failTimeout = function failTimeout() {\n var _this3 = this;\n\n this._timer = setTimeout(function () {\n _this3.state = STATE_FAILED;\n }, this.options.interval);\n return STATE_FAILED;\n };\n\n _proto.reset = function reset() {\n clearTimeout(this._timer);\n };\n\n _proto.emit = function emit() {\n if (this.state === STATE_RECOGNIZED) {\n this._input.tapCount = this.count;\n this.manager.emit(this.options.event, this._input);\n }\n };\n\n return TapRecognizer;\n}(Recognizer);\n\n/**\n * @private\n * This recognizer is just used as a base for the simple attribute recognizers.\n * @constructor\n * @extends Recognizer\n */\n\nvar AttrRecognizer =\n/*#__PURE__*/\nfunction (_Recognizer) {\n _inheritsLoose(AttrRecognizer, _Recognizer);\n\n function AttrRecognizer(options) {\n if (options === void 0) {\n options = {};\n }\n\n return _Recognizer.call(this, _extends({\n pointers: 1\n }, options)) || this;\n }\n /**\n * @private\n * Used to check if it the recognizer receives valid input, like input.distance > 10.\n * @memberof AttrRecognizer\n * @param {Object} input\n * @returns {Boolean} recognized\n */\n\n\n var _proto = AttrRecognizer.prototype;\n\n _proto.attrTest = function attrTest(input) {\n var optionPointers = this.options.pointers;\n return optionPointers === 0 || input.pointers.length === optionPointers;\n };\n /**\n * @private\n * Process the input and return the state for the recognizer\n * @memberof AttrRecognizer\n * @param {Object} input\n * @returns {*} State\n */\n\n\n _proto.process = function process(input) {\n var state = this.state;\n var eventType = input.eventType;\n var isRecognized = state & (STATE_BEGAN | STATE_CHANGED);\n var isValid = this.attrTest(input); // on cancel input and we've recognized before, return STATE_CANCELLED\n\n if (isRecognized && (eventType & INPUT_CANCEL || !isValid)) {\n return state | STATE_CANCELLED;\n } else if (isRecognized || isValid) {\n if (eventType & INPUT_END) {\n return state | STATE_ENDED;\n } else if (!(state & STATE_BEGAN)) {\n return STATE_BEGAN;\n }\n\n return state | STATE_CHANGED;\n }\n\n return STATE_FAILED;\n };\n\n return AttrRecognizer;\n}(Recognizer);\n\n/**\n * @private\n * direction cons to string\n * @param {constant} direction\n * @returns {String}\n */\n\nfunction directionStr(direction) {\n if (direction === DIRECTION_DOWN) {\n return 'down';\n } else if (direction === DIRECTION_UP) {\n return 'up';\n } else if (direction === DIRECTION_LEFT) {\n return 'left';\n } else if (direction === DIRECTION_RIGHT) {\n return 'right';\n }\n\n return '';\n}\n\n/**\n * @private\n * Pan\n * Recognized when the pointer is down and moved in the allowed direction.\n * @constructor\n * @extends AttrRecognizer\n */\n\nvar PanRecognizer =\n/*#__PURE__*/\nfunction (_AttrRecognizer) {\n _inheritsLoose(PanRecognizer, _AttrRecognizer);\n\n function PanRecognizer(options) {\n var _this;\n\n if (options === void 0) {\n options = {};\n }\n\n _this = _AttrRecognizer.call(this, _extends({\n event: 'pan',\n threshold: 10,\n pointers: 1,\n direction: DIRECTION_ALL\n }, options)) || this;\n _this.pX = null;\n _this.pY = null;\n return _this;\n }\n\n var _proto = PanRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n var direction = this.options.direction;\n var actions = [];\n\n if (direction & DIRECTION_HORIZONTAL) {\n actions.push(TOUCH_ACTION_PAN_Y);\n }\n\n if (direction & DIRECTION_VERTICAL) {\n actions.push(TOUCH_ACTION_PAN_X);\n }\n\n return actions;\n };\n\n _proto.directionTest = function directionTest(input) {\n var options = this.options;\n var hasMoved = true;\n var distance = input.distance;\n var direction = input.direction;\n var x = input.deltaX;\n var y = input.deltaY; // lock to axis?\n\n if (!(direction & options.direction)) {\n if (options.direction & DIRECTION_HORIZONTAL) {\n direction = x === 0 ? DIRECTION_NONE : x < 0 ? DIRECTION_LEFT : DIRECTION_RIGHT;\n hasMoved = x !== this.pX;\n distance = Math.abs(input.deltaX);\n } else {\n direction = y === 0 ? DIRECTION_NONE : y < 0 ? DIRECTION_UP : DIRECTION_DOWN;\n hasMoved = y !== this.pY;\n distance = Math.abs(input.deltaY);\n }\n }\n\n input.direction = direction;\n return hasMoved && distance > options.threshold && direction & options.direction;\n };\n\n _proto.attrTest = function attrTest(input) {\n return AttrRecognizer.prototype.attrTest.call(this, input) && ( // replace with a super call\n this.state & STATE_BEGAN || !(this.state & STATE_BEGAN) && this.directionTest(input));\n };\n\n _proto.emit = function emit(input) {\n this.pX = input.deltaX;\n this.pY = input.deltaY;\n var direction = directionStr(input.direction);\n\n if (direction) {\n input.additionalEvent = this.options.event + direction;\n }\n\n _AttrRecognizer.prototype.emit.call(this, input);\n };\n\n return PanRecognizer;\n}(AttrRecognizer);\n\n/**\n * @private\n * Swipe\n * Recognized when the pointer is moving fast (velocity), with enough distance in the allowed direction.\n * @constructor\n * @extends AttrRecognizer\n */\n\nvar SwipeRecognizer =\n/*#__PURE__*/\nfunction (_AttrRecognizer) {\n _inheritsLoose(SwipeRecognizer, _AttrRecognizer);\n\n function SwipeRecognizer(options) {\n if (options === void 0) {\n options = {};\n }\n\n return _AttrRecognizer.call(this, _extends({\n event: 'swipe',\n threshold: 10,\n velocity: 0.3,\n direction: DIRECTION_HORIZONTAL | DIRECTION_VERTICAL,\n pointers: 1\n }, options)) || this;\n }\n\n var _proto = SwipeRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n return PanRecognizer.prototype.getTouchAction.call(this);\n };\n\n _proto.attrTest = function attrTest(input) {\n var direction = this.options.direction;\n var velocity;\n\n if (direction & (DIRECTION_HORIZONTAL | DIRECTION_VERTICAL)) {\n velocity = input.overallVelocity;\n } else if (direction & DIRECTION_HORIZONTAL) {\n velocity = input.overallVelocityX;\n } else if (direction & DIRECTION_VERTICAL) {\n velocity = input.overallVelocityY;\n }\n\n return _AttrRecognizer.prototype.attrTest.call(this, input) && direction & input.offsetDirection && input.distance > this.options.threshold && input.maxPointers === this.options.pointers && abs(velocity) > this.options.velocity && input.eventType & INPUT_END;\n };\n\n _proto.emit = function emit(input) {\n var direction = directionStr(input.offsetDirection);\n\n if (direction) {\n this.manager.emit(this.options.event + direction, input);\n }\n\n this.manager.emit(this.options.event, input);\n };\n\n return SwipeRecognizer;\n}(AttrRecognizer);\n\n/**\n * @private\n * Pinch\n * Recognized when two or more pointers are moving toward (zoom-in) or away from each other (zoom-out).\n * @constructor\n * @extends AttrRecognizer\n */\n\nvar PinchRecognizer =\n/*#__PURE__*/\nfunction (_AttrRecognizer) {\n _inheritsLoose(PinchRecognizer, _AttrRecognizer);\n\n function PinchRecognizer(options) {\n if (options === void 0) {\n options = {};\n }\n\n return _AttrRecognizer.call(this, _extends({\n event: 'pinch',\n threshold: 0,\n pointers: 2\n }, options)) || this;\n }\n\n var _proto = PinchRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n return [TOUCH_ACTION_NONE];\n };\n\n _proto.attrTest = function attrTest(input) {\n return _AttrRecognizer.prototype.attrTest.call(this, input) && (Math.abs(input.scale - 1) > this.options.threshold || this.state & STATE_BEGAN);\n };\n\n _proto.emit = function emit(input) {\n if (input.scale !== 1) {\n var inOut = input.scale < 1 ? 'in' : 'out';\n input.additionalEvent = this.options.event + inOut;\n }\n\n _AttrRecognizer.prototype.emit.call(this, input);\n };\n\n return PinchRecognizer;\n}(AttrRecognizer);\n\n/**\n * @private\n * Rotate\n * Recognized when two or more pointer are moving in a circular motion.\n * @constructor\n * @extends AttrRecognizer\n */\n\nvar RotateRecognizer =\n/*#__PURE__*/\nfunction (_AttrRecognizer) {\n _inheritsLoose(RotateRecognizer, _AttrRecognizer);\n\n function RotateRecognizer(options) {\n if (options === void 0) {\n options = {};\n }\n\n return _AttrRecognizer.call(this, _extends({\n event: 'rotate',\n threshold: 0,\n pointers: 2\n }, options)) || this;\n }\n\n var _proto = RotateRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n return [TOUCH_ACTION_NONE];\n };\n\n _proto.attrTest = function attrTest(input) {\n return _AttrRecognizer.prototype.attrTest.call(this, input) && (Math.abs(input.rotation) > this.options.threshold || this.state & STATE_BEGAN);\n };\n\n return RotateRecognizer;\n}(AttrRecognizer);\n\n/**\n * @private\n * Press\n * Recognized when the pointer is down for x ms without any movement.\n * @constructor\n * @extends Recognizer\n */\n\nvar PressRecognizer =\n/*#__PURE__*/\nfunction (_Recognizer) {\n _inheritsLoose(PressRecognizer, _Recognizer);\n\n function PressRecognizer(options) {\n var _this;\n\n if (options === void 0) {\n options = {};\n }\n\n _this = _Recognizer.call(this, _extends({\n event: 'press',\n pointers: 1,\n time: 251,\n // minimal time of the pointer to be pressed\n threshold: 9\n }, options)) || this;\n _this._timer = null;\n _this._input = null;\n return _this;\n }\n\n var _proto = PressRecognizer.prototype;\n\n _proto.getTouchAction = function getTouchAction() {\n return [TOUCH_ACTION_AUTO];\n };\n\n _proto.process = function process(input) {\n var _this2 = this;\n\n var options = this.options;\n var validPointers = input.pointers.length === options.pointers;\n var validMovement = input.distance < options.threshold;\n var validTime = input.deltaTime > options.time;\n this._input = input; // we only allow little movement\n // and we've reached an end event, so a tap is possible\n\n if (!validMovement || !validPointers || input.eventType & (INPUT_END | INPUT_CANCEL) && !validTime) {\n this.reset();\n } else if (input.eventType & INPUT_START) {\n this.reset();\n this._timer = setTimeout(function () {\n _this2.state = STATE_RECOGNIZED;\n\n _this2.tryEmit();\n }, options.time);\n } else if (input.eventType & INPUT_END) {\n return STATE_RECOGNIZED;\n }\n\n return STATE_FAILED;\n };\n\n _proto.reset = function reset() {\n clearTimeout(this._timer);\n };\n\n _proto.emit = function emit(input) {\n if (this.state !== STATE_RECOGNIZED) {\n return;\n }\n\n if (input && input.eventType & INPUT_END) {\n this.manager.emit(this.options.event + \"up\", input);\n } else {\n this._input.timeStamp = now();\n this.manager.emit(this.options.event, this._input);\n }\n };\n\n return PressRecognizer;\n}(Recognizer);\n\nvar defaults = {\n /**\n * @private\n * set if DOM events are being triggered.\n * But this is slower and unused by simple implementations, so disabled by default.\n * @type {Boolean}\n * @default false\n */\n domEvents: false,\n\n /**\n * @private\n * The value for the touchAction property/fallback.\n * When set to `compute` it will magically set the correct value based on the added recognizers.\n * @type {String}\n * @default compute\n */\n touchAction: TOUCH_ACTION_COMPUTE,\n\n /**\n * @private\n * @type {Boolean}\n * @default true\n */\n enable: true,\n\n /**\n * @private\n * EXPERIMENTAL FEATURE -- can be removed/changed\n * Change the parent input target element.\n * If Null, then it is being set the to main element.\n * @type {Null|EventTarget}\n * @default null\n */\n inputTarget: null,\n\n /**\n * @private\n * force an input class\n * @type {Null|Function}\n * @default null\n */\n inputClass: null,\n\n /**\n * @private\n * Some CSS properties can be used to improve the working of Hammer.\n * Add them to this method and they will be set when creating a new Manager.\n * @namespace\n */\n cssProps: {\n /**\n * @private\n * Disables text selection to improve the dragging gesture. Mainly for desktop browsers.\n * @type {String}\n * @default 'none'\n */\n userSelect: \"none\",\n\n /**\n * @private\n * Disable the Windows Phone grippers when pressing an element.\n * @type {String}\n * @default 'none'\n */\n touchSelect: \"none\",\n\n /**\n * @private\n * Disables the default callout shown when you touch and hold a touch target.\n * On iOS, when you touch and hold a touch target such as a link, Safari displays\n * a callout containing information about the link. This property allows you to disable that callout.\n * @type {String}\n * @default 'none'\n */\n touchCallout: \"none\",\n\n /**\n * @private\n * Specifies whether zooming is enabled. Used by IE10>\n * @type {String}\n * @default 'none'\n */\n contentZooming: \"none\",\n\n /**\n * @private\n * Specifies that an entire element should be draggable instead of its contents. Mainly for desktop browsers.\n * @type {String}\n * @default 'none'\n */\n userDrag: \"none\",\n\n /**\n * @private\n * Overrides the highlight color shown when the user taps a link or a JavaScript\n * clickable element in iOS. This property obeys the alpha value, if specified.\n * @type {String}\n * @default 'rgba(0,0,0,0)'\n */\n tapHighlightColor: \"rgba(0,0,0,0)\"\n }\n};\n/**\n * @private\n * Default recognizer setup when calling `Hammer()`\n * When creating a new Manager these will be skipped.\n * This is separated with other defaults because of tree-shaking.\n * @type {Array}\n */\n\nvar preset = [[RotateRecognizer, {\n enable: false\n}], [PinchRecognizer, {\n enable: false\n}, ['rotate']], [SwipeRecognizer, {\n direction: DIRECTION_HORIZONTAL\n}], [PanRecognizer, {\n direction: DIRECTION_HORIZONTAL\n}, ['swipe']], [TapRecognizer], [TapRecognizer, {\n event: 'doubletap',\n taps: 2\n}, ['tap']], [PressRecognizer]];\n\nvar STOP = 1;\nvar FORCED_STOP = 2;\n/**\n * @private\n * add/remove the css properties as defined in manager.options.cssProps\n * @param {Manager} manager\n * @param {Boolean} add\n */\n\nfunction toggleCssProps(manager, add) {\n var element = manager.element;\n\n if (!element.style) {\n return;\n }\n\n var prop;\n each(manager.options.cssProps, function (value, name) {\n prop = prefixed(element.style, name);\n\n if (add) {\n manager.oldCssProps[prop] = element.style[prop];\n element.style[prop] = value;\n } else {\n element.style[prop] = manager.oldCssProps[prop] || \"\";\n }\n });\n\n if (!add) {\n manager.oldCssProps = {};\n }\n}\n/**\n * @private\n * trigger dom event\n * @param {String} event\n * @param {Object} data\n */\n\n\nfunction triggerDomEvent(event, data) {\n var gestureEvent = document.createEvent(\"Event\");\n gestureEvent.initEvent(event, true, true);\n gestureEvent.gesture = data;\n data.target.dispatchEvent(gestureEvent);\n}\n/**\n* @private\n * Manager\n * @param {HTMLElement} element\n * @param {Object} [options]\n * @constructor\n */\n\n\nvar Manager =\n/*#__PURE__*/\nfunction () {\n function Manager(element, options) {\n var _this = this;\n\n this.options = assign$1({}, defaults, options || {});\n this.options.inputTarget = this.options.inputTarget || element;\n this.handlers = {};\n this.session = {};\n this.recognizers = [];\n this.oldCssProps = {};\n this.element = element;\n this.input = createInputInstance(this);\n this.touchAction = new TouchAction(this, this.options.touchAction);\n toggleCssProps(this, true);\n each(this.options.recognizers, function (item) {\n var recognizer = _this.add(new item[0](item[1]));\n\n item[2] && recognizer.recognizeWith(item[2]);\n item[3] && recognizer.requireFailure(item[3]);\n }, this);\n }\n /**\n * @private\n * set options\n * @param {Object} options\n * @returns {Manager}\n */\n\n\n var _proto = Manager.prototype;\n\n _proto.set = function set(options) {\n assign$1(this.options, options); // Options that need a little more setup\n\n if (options.touchAction) {\n this.touchAction.update();\n }\n\n if (options.inputTarget) {\n // Clean up existing event listeners and reinitialize\n this.input.destroy();\n this.input.target = options.inputTarget;\n this.input.init();\n }\n\n return this;\n };\n /**\n * @private\n * stop recognizing for this session.\n * This session will be discarded, when a new [input]start event is fired.\n * When forced, the recognizer cycle is stopped immediately.\n * @param {Boolean} [force]\n */\n\n\n _proto.stop = function stop(force) {\n this.session.stopped = force ? FORCED_STOP : STOP;\n };\n /**\n * @private\n * run the recognizers!\n * called by the inputHandler function on every movement of the pointers (touches)\n * it walks through all the recognizers and tries to detect the gesture that is being made\n * @param {Object} inputData\n */\n\n\n _proto.recognize = function recognize(inputData) {\n var session = this.session;\n\n if (session.stopped) {\n return;\n } // run the touch-action polyfill\n\n\n this.touchAction.preventDefaults(inputData);\n var recognizer;\n var recognizers = this.recognizers; // this holds the recognizer that is being recognized.\n // so the recognizer's state needs to be BEGAN, CHANGED, ENDED or RECOGNIZED\n // if no recognizer is detecting a thing, it is set to `null`\n\n var curRecognizer = session.curRecognizer; // reset when the last recognizer is recognized\n // or when we're in a new session\n\n if (!curRecognizer || curRecognizer && curRecognizer.state & STATE_RECOGNIZED) {\n session.curRecognizer = null;\n curRecognizer = null;\n }\n\n var i = 0;\n\n while (i < recognizers.length) {\n recognizer = recognizers[i]; // find out if we are allowed try to recognize the input for this one.\n // 1. allow if the session is NOT forced stopped (see the .stop() method)\n // 2. allow if we still haven't recognized a gesture in this session, or the this recognizer is the one\n // that is being recognized.\n // 3. allow if the recognizer is allowed to run simultaneous with the current recognized recognizer.\n // this can be setup with the `recognizeWith()` method on the recognizer.\n\n if (session.stopped !== FORCED_STOP && ( // 1\n !curRecognizer || recognizer === curRecognizer || // 2\n recognizer.canRecognizeWith(curRecognizer))) {\n // 3\n recognizer.recognize(inputData);\n } else {\n recognizer.reset();\n } // if the recognizer has been recognizing the input as a valid gesture, we want to store this one as the\n // current active recognizer. but only if we don't already have an active recognizer\n\n\n if (!curRecognizer && recognizer.state & (STATE_BEGAN | STATE_CHANGED | STATE_ENDED)) {\n session.curRecognizer = recognizer;\n curRecognizer = recognizer;\n }\n\n i++;\n }\n };\n /**\n * @private\n * get a recognizer by its event name.\n * @param {Recognizer|String} recognizer\n * @returns {Recognizer|Null}\n */\n\n\n _proto.get = function get(recognizer) {\n if (recognizer instanceof Recognizer) {\n return recognizer;\n }\n\n var recognizers = this.recognizers;\n\n for (var i = 0; i < recognizers.length; i++) {\n if (recognizers[i].options.event === recognizer) {\n return recognizers[i];\n }\n }\n\n return null;\n };\n /**\n * @private add a recognizer to the manager\n * existing recognizers with the same event name will be removed\n * @param {Recognizer} recognizer\n * @returns {Recognizer|Manager}\n */\n\n\n _proto.add = function add(recognizer) {\n if (invokeArrayArg(recognizer, \"add\", this)) {\n return this;\n } // remove existing\n\n\n var existing = this.get(recognizer.options.event);\n\n if (existing) {\n this.remove(existing);\n }\n\n this.recognizers.push(recognizer);\n recognizer.manager = this;\n this.touchAction.update();\n return recognizer;\n };\n /**\n * @private\n * remove a recognizer by name or instance\n * @param {Recognizer|String} recognizer\n * @returns {Manager}\n */\n\n\n _proto.remove = function remove(recognizer) {\n if (invokeArrayArg(recognizer, \"remove\", this)) {\n return this;\n }\n\n var targetRecognizer = this.get(recognizer); // let's make sure this recognizer exists\n\n if (recognizer) {\n var recognizers = this.recognizers;\n var index = inArray(recognizers, targetRecognizer);\n\n if (index !== -1) {\n recognizers.splice(index, 1);\n this.touchAction.update();\n }\n }\n\n return this;\n };\n /**\n * @private\n * bind event\n * @param {String} events\n * @param {Function} handler\n * @returns {EventEmitter} this\n */\n\n\n _proto.on = function on(events, handler) {\n if (events === undefined || handler === undefined) {\n return this;\n }\n\n var handlers = this.handlers;\n each(splitStr(events), function (event) {\n handlers[event] = handlers[event] || [];\n handlers[event].push(handler);\n });\n return this;\n };\n /**\n * @private unbind event, leave emit blank to remove all handlers\n * @param {String} events\n * @param {Function} [handler]\n * @returns {EventEmitter} this\n */\n\n\n _proto.off = function off(events, handler) {\n if (events === undefined) {\n return this;\n }\n\n var handlers = this.handlers;\n each(splitStr(events), function (event) {\n if (!handler) {\n delete handlers[event];\n } else {\n handlers[event] && handlers[event].splice(inArray(handlers[event], handler), 1);\n }\n });\n return this;\n };\n /**\n * @private emit event to the listeners\n * @param {String} event\n * @param {Object} data\n */\n\n\n _proto.emit = function emit(event, data) {\n // we also want to trigger dom events\n if (this.options.domEvents) {\n triggerDomEvent(event, data);\n } // no handlers, so skip it all\n\n\n var handlers = this.handlers[event] && this.handlers[event].slice();\n\n if (!handlers || !handlers.length) {\n return;\n }\n\n data.type = event;\n\n data.preventDefault = function () {\n data.srcEvent.preventDefault();\n };\n\n var i = 0;\n\n while (i < handlers.length) {\n handlers[i](data);\n i++;\n }\n };\n /**\n * @private\n * destroy the manager and unbinds all events\n * it doesn't unbind dom events, that is the user own responsibility\n */\n\n\n _proto.destroy = function destroy() {\n this.element && toggleCssProps(this, false);\n this.handlers = {};\n this.session = {};\n this.input.destroy();\n this.element = null;\n };\n\n return Manager;\n}();\n\nvar SINGLE_TOUCH_INPUT_MAP = {\n touchstart: INPUT_START,\n touchmove: INPUT_MOVE,\n touchend: INPUT_END,\n touchcancel: INPUT_CANCEL\n};\nvar SINGLE_TOUCH_TARGET_EVENTS = 'touchstart';\nvar SINGLE_TOUCH_WINDOW_EVENTS = 'touchstart touchmove touchend touchcancel';\n/**\n * @private\n * Touch events input\n * @constructor\n * @extends Input\n */\n\nvar SingleTouchInput =\n/*#__PURE__*/\nfunction (_Input) {\n _inheritsLoose(SingleTouchInput, _Input);\n\n function SingleTouchInput() {\n var _this;\n\n var proto = SingleTouchInput.prototype;\n proto.evTarget = SINGLE_TOUCH_TARGET_EVENTS;\n proto.evWin = SINGLE_TOUCH_WINDOW_EVENTS;\n _this = _Input.apply(this, arguments) || this;\n _this.started = false;\n return _this;\n }\n\n var _proto = SingleTouchInput.prototype;\n\n _proto.handler = function handler(ev) {\n var type = SINGLE_TOUCH_INPUT_MAP[ev.type]; // should we handle the touch events?\n\n if (type === INPUT_START) {\n this.started = true;\n }\n\n if (!this.started) {\n return;\n }\n\n var touches = normalizeSingleTouches.call(this, ev, type); // when done, reset the started state\n\n if (type & (INPUT_END | INPUT_CANCEL) && touches[0].length - touches[1].length === 0) {\n this.started = false;\n }\n\n this.callback(this.manager, type, {\n pointers: touches[0],\n changedPointers: touches[1],\n pointerType: INPUT_TYPE_TOUCH,\n srcEvent: ev\n });\n };\n\n return SingleTouchInput;\n}(Input);\n\nfunction normalizeSingleTouches(ev, type) {\n var all = toArray(ev.touches);\n var changed = toArray(ev.changedTouches);\n\n if (type & (INPUT_END | INPUT_CANCEL)) {\n all = uniqueArray(all.concat(changed), 'identifier', true);\n }\n\n return [all, changed];\n}\n\n/**\n * @private\n * wrap a method with a deprecation warning and stack trace\n * @param {Function} method\n * @param {String} name\n * @param {String} message\n * @returns {Function} A new function wrapping the supplied method.\n */\nfunction deprecate(method, name, message) {\n var deprecationMessage = \"DEPRECATED METHOD: \" + name + \"\\n\" + message + \" AT \\n\";\n return function () {\n var e = new Error('get-stack-trace');\n var stack = e && e.stack ? e.stack.replace(/^[^\\(]+?[\\n$]/gm, '').replace(/^\\s+at\\s+/gm, '').replace(/^Object.\\s*\\(/gm, '{anonymous}()@') : 'Unknown Stack Trace';\n var log = window.console && (window.console.warn || window.console.log);\n\n if (log) {\n log.call(window.console, deprecationMessage, stack);\n }\n\n return method.apply(this, arguments);\n };\n}\n\n/**\n * @private\n * extend object.\n * means that properties in dest will be overwritten by the ones in src.\n * @param {Object} dest\n * @param {Object} src\n * @param {Boolean} [merge=false]\n * @returns {Object} dest\n */\n\nvar extend = deprecate(function (dest, src, merge) {\n var keys = Object.keys(src);\n var i = 0;\n\n while (i < keys.length) {\n if (!merge || merge && dest[keys[i]] === undefined) {\n dest[keys[i]] = src[keys[i]];\n }\n\n i++;\n }\n\n return dest;\n}, 'extend', 'Use `assign`.');\n\n/**\n * @private\n * merge the values from src in the dest.\n * means that properties that exist in dest will not be overwritten by src\n * @param {Object} dest\n * @param {Object} src\n * @returns {Object} dest\n */\n\nvar merge = deprecate(function (dest, src) {\n return extend(dest, src, true);\n}, 'merge', 'Use `assign`.');\n\n/**\n * @private\n * simple class inheritance\n * @param {Function} child\n * @param {Function} base\n * @param {Object} [properties]\n */\n\nfunction inherit(child, base, properties) {\n var baseP = base.prototype;\n var childP;\n childP = child.prototype = Object.create(baseP);\n childP.constructor = child;\n childP._super = baseP;\n\n if (properties) {\n assign$1(childP, properties);\n }\n}\n\n/**\n * @private\n * simple function bind\n * @param {Function} fn\n * @param {Object} context\n * @returns {Function}\n */\nfunction bindFn(fn, context) {\n return function boundFn() {\n return fn.apply(context, arguments);\n };\n}\n\n/**\n * @private\n * Simple way to create a manager with a default set of recognizers.\n * @param {HTMLElement} element\n * @param {Object} [options]\n * @constructor\n */\n\nvar Hammer =\n/*#__PURE__*/\nfunction () {\n var Hammer =\n /**\n * @private\n * @const {string}\n */\n function Hammer(element, options) {\n if (options === void 0) {\n options = {};\n }\n\n return new Manager(element, _extends({\n recognizers: preset.concat()\n }, options));\n };\n\n Hammer.VERSION = \"2.0.17-rc\";\n Hammer.DIRECTION_ALL = DIRECTION_ALL;\n Hammer.DIRECTION_DOWN = DIRECTION_DOWN;\n Hammer.DIRECTION_LEFT = DIRECTION_LEFT;\n Hammer.DIRECTION_RIGHT = DIRECTION_RIGHT;\n Hammer.DIRECTION_UP = DIRECTION_UP;\n Hammer.DIRECTION_HORIZONTAL = DIRECTION_HORIZONTAL;\n Hammer.DIRECTION_VERTICAL = DIRECTION_VERTICAL;\n Hammer.DIRECTION_NONE = DIRECTION_NONE;\n Hammer.DIRECTION_DOWN = DIRECTION_DOWN;\n Hammer.INPUT_START = INPUT_START;\n Hammer.INPUT_MOVE = INPUT_MOVE;\n Hammer.INPUT_END = INPUT_END;\n Hammer.INPUT_CANCEL = INPUT_CANCEL;\n Hammer.STATE_POSSIBLE = STATE_POSSIBLE;\n Hammer.STATE_BEGAN = STATE_BEGAN;\n Hammer.STATE_CHANGED = STATE_CHANGED;\n Hammer.STATE_ENDED = STATE_ENDED;\n Hammer.STATE_RECOGNIZED = STATE_RECOGNIZED;\n Hammer.STATE_CANCELLED = STATE_CANCELLED;\n Hammer.STATE_FAILED = STATE_FAILED;\n Hammer.Manager = Manager;\n Hammer.Input = Input;\n Hammer.TouchAction = TouchAction;\n Hammer.TouchInput = TouchInput;\n Hammer.MouseInput = MouseInput;\n Hammer.PointerEventInput = PointerEventInput;\n Hammer.TouchMouseInput = TouchMouseInput;\n Hammer.SingleTouchInput = SingleTouchInput;\n Hammer.Recognizer = Recognizer;\n Hammer.AttrRecognizer = AttrRecognizer;\n Hammer.Tap = TapRecognizer;\n Hammer.Pan = PanRecognizer;\n Hammer.Swipe = SwipeRecognizer;\n Hammer.Pinch = PinchRecognizer;\n Hammer.Rotate = RotateRecognizer;\n Hammer.Press = PressRecognizer;\n Hammer.on = addEventListeners;\n Hammer.off = removeEventListeners;\n Hammer.each = each;\n Hammer.merge = merge;\n Hammer.extend = extend;\n Hammer.bindFn = bindFn;\n Hammer.assign = assign$1;\n Hammer.inherit = inherit;\n Hammer.bindFn = bindFn;\n Hammer.prefixed = prefixed;\n Hammer.toArray = toArray;\n Hammer.inArray = inArray;\n Hammer.uniqueArray = uniqueArray;\n Hammer.splitStr = splitStr;\n Hammer.boolOrFn = boolOrFn;\n Hammer.hasParent = hasParent;\n Hammer.addEventListeners = addEventListeners;\n Hammer.removeEventListeners = removeEventListeners;\n Hammer.defaults = assign$1({}, defaults, {\n preset: preset\n });\n return Hammer;\n}();\n\n// style loader but by script tag, not by the loader.\n\nvar defaults$1 = Hammer.defaults;\n\nexport default Hammer;\nexport { INPUT_START, INPUT_MOVE, INPUT_END, INPUT_CANCEL, STATE_POSSIBLE, STATE_BEGAN, STATE_CHANGED, STATE_ENDED, STATE_RECOGNIZED, STATE_CANCELLED, STATE_FAILED, DIRECTION_NONE, DIRECTION_LEFT, DIRECTION_RIGHT, DIRECTION_UP, DIRECTION_DOWN, DIRECTION_HORIZONTAL, DIRECTION_VERTICAL, DIRECTION_ALL, Manager, Input, TouchAction, TouchInput, MouseInput, PointerEventInput, TouchMouseInput, SingleTouchInput, Recognizer, AttrRecognizer, TapRecognizer as Tap, PanRecognizer as Pan, SwipeRecognizer as Swipe, PinchRecognizer as Pinch, RotateRecognizer as Rotate, PressRecognizer as Press, addEventListeners as on, removeEventListeners as off, each, merge, extend, assign$1 as assign, inherit, bindFn, prefixed, toArray, inArray, uniqueArray, splitStr, boolOrFn, hasParent, addEventListeners, removeEventListeners, defaults$1 as defaults };\n//# sourceMappingURL=hammer.esm.js.map\n","import PropagatingHammer from 'propagating-hammerjs';\nimport Hammer from '@egjs/hammerjs';\n\n/**\n * Setup a mock hammer.js object, for unit testing.\n *\n * Inspiration: https://github.com/uber/deck.gl/pull/658\n *\n * @returns {{on: noop, off: noop, destroy: noop, emit: noop, get: get}}\n */\nfunction hammerMock() {\n const noop = () => {};\n\n return {\n on: noop,\n off: noop,\n destroy: noop,\n emit: noop,\n\n get(m) {\t//eslint-disable-line no-unused-vars\n return {\n set: noop\n };\n }\n };\n}\n\nlet modifiedHammer\n\nif (typeof window !== 'undefined') {\n const OurHammer = window['Hammer'] || Hammer;\n modifiedHammer = PropagatingHammer(OurHammer, {\n preventDefault: 'mouse'\n });\n} else {\n modifiedHammer = () => // hammer.js is only available in a browser, not in node.js. Replacing it with a mock object.\n hammerMock()\n}\n\nexport default modifiedHammer;\n","/**\n * Register a touch event, taking place before a gesture\n * @param {Hammer} hammer A hammer instance\n * @param {function} callback Callback, called as callback(event)\n */\nexport function onTouch (hammer, callback) {\n callback.inputHandler = function (event) {\n if (event.isFirst) {\n callback(event);\n }\n };\n\n hammer.on('hammer.input', callback.inputHandler);\n}\n\n/**\n * Register a release event, taking place after a gesture\n * @param {Hammer} hammer A hammer instance\n * @param {function} callback Callback, called as callback(event)\n * @returns {*}\n */\nexport function onRelease (hammer, callback) {\n callback.inputHandler = function (event) {\n if (event.isFinal) {\n callback(event);\n }\n };\n\n return hammer.on('hammer.input', callback.inputHandler);\n}\n\n\n/**\n * Unregister a touch event, taking place before a gesture\n * @param {Hammer} hammer A hammer instance\n * @param {function} callback Callback, called as callback(event)\n */\nexport function offTouch (hammer, callback) {\n hammer.off('hammer.input', callback.inputHandler);\n}\n\n/**\n * Unregister a release event, taking place before a gesture\n * @param {Hammer} hammer A hammer instance\n * @param {function} callback Callback, called as callback(event)\n */\n\nexport const offRelease = offTouch;\n\n/**\n * Hack the PinchRecognizer such that it doesn't prevent default behavior\n * for vertical panning.\n *\n * Yeah ... this is quite a hack ... see https://github.com/hammerjs/hammer.js/issues/932\n *\n * @param {Hammer.Pinch} pinchRecognizer\n * @return {Hammer.Pinch} returns the pinchRecognizer\n */\nexport function disablePreventDefaultVertically (pinchRecognizer) {\n const TOUCH_ACTION_PAN_Y = 'pan-y';\n\n pinchRecognizer.getTouchAction = function() {\n // default method returns [TOUCH_ACTION_NONE]\n return [TOUCH_ACTION_PAN_Y];\n };\n\n return pinchRecognizer;\n}\n","var global = require('../internals/global');\nvar trim = require('../internals/string-trim').trim;\nvar whitespaces = require('../internals/whitespaces');\n\nvar nativeParseInt = global.parseInt;\nvar hex = /^[+-]?0[Xx]/;\nvar FORCED = nativeParseInt(whitespaces + '08') !== 8 || nativeParseInt(whitespaces + '0x16') !== 22;\n\n// `parseInt` method\n// https://tc39.github.io/ecma262/#sec-parseint-string-radix\nmodule.exports = FORCED ? function parseInt(string, radix) {\n var S = trim(String(string));\n return nativeParseInt(S, (radix >>> 0) || (hex.test(S) ? 16 : 10));\n} : nativeParseInt;\n","var $ = require('../internals/export');\nvar parseIntImplementation = require('../internals/parse-int');\n\n// `parseInt` method\n// https://tc39.github.io/ecma262/#sec-parseint-string-radix\n$({ global: true, forced: parseInt != parseIntImplementation }, {\n parseInt: parseIntImplementation\n});\n","require('../modules/es.parse-int');\nvar path = require('../internals/path');\n\nmodule.exports = path.parseInt;\n","module.exports = require('../es/parse-int');\n","module.exports = require(\"core-js-pure/stable/parse-int\");","import moment from '../module/moment';\nimport * as DateUtil from './DateUtil';\nimport util from '../util';\n\n/**\n * The class TimeStep is an iterator for dates. You provide a start date and an\n * end date. The class itself determines the best scale (step size) based on the\n * provided start Date, end Date, and minimumStep.\n *\n * If minimumStep is provided, the step size is chosen as close as possible\n * to the minimumStep but larger than minimumStep. If minimumStep is not\n * provided, the scale is set to 1 DAY.\n * The minimumStep should correspond with the onscreen size of about 6 characters\n *\n * Alternatively, you can set a scale by hand.\n * After creation, you can initialize the class by executing first(). Then you\n * can iterate from the start date to the end date via next(). You can check if\n * the end date is reached with the function hasNext(). After each step, you can\n * retrieve the current date via getCurrent().\n * The TimeStep has scales ranging from milliseconds, seconds, minutes, hours,\n * days, to years.\n *\n * Version: 1.2\n *\n */\nclass TimeStep {\n /**\n * @param {Date} [start] The start date, for example new Date(2010, 9, 21)\n * or new Date(2010, 9, 21, 23, 45, 00)\n * @param {Date} [end] The end date\n * @param {number} [minimumStep] Optional. Minimum step size in milliseconds\n * @param {Date|Array.} [hiddenDates] Optional.\n * @param {{showMajorLabels: boolean}} [options] Optional.\n * @constructor TimeStep\n */\n constructor(start, end, minimumStep, hiddenDates, options) {\n this.moment = (options && options.moment) || moment;\n\n // variables\n this.current = this.moment();\n this._start = this.moment();\n this._end = this.moment();\n\n this.autoScale = true;\n this.scale = 'day';\n this.step = 1;\n\n // initialize the range\n this.setRange(start, end, minimumStep);\n\n // hidden Dates options\n this.switchedDay = false;\n this.switchedMonth = false;\n this.switchedYear = false;\n if (Array.isArray(hiddenDates)) {\n this.hiddenDates = hiddenDates;\n }\n else if (hiddenDates != undefined) {\n this.hiddenDates = [hiddenDates];\n }\n else {\n this.hiddenDates = [];\n }\n\n this.format = TimeStep.FORMAT; // default formatting\n this.options = options ? options : {};\n\n }\n\n /**\n * Set custom constructor function for moment. Can be used to set dates\n * to UTC or to set a utcOffset.\n * @param {function} moment\n */\n setMoment(moment) {\n this.moment = moment;\n\n // update the date properties, can have a new utcOffset\n this.current = this.moment(this.current.valueOf());\n this._start = this.moment(this._start.valueOf());\n this._end = this.moment(this._end.valueOf());\n }\n\n /**\n * Set custom formatting for the minor an major labels of the TimeStep.\n * Both `minorLabels` and `majorLabels` are an Object with properties:\n * 'millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'.\n * @param {{minorLabels: Object, majorLabels: Object}} format\n */\n setFormat(format) {\n const defaultFormat = util.deepExtend({}, TimeStep.FORMAT);\n this.format = util.deepExtend(defaultFormat, format);\n }\n\n /**\n * Set a new range\n * If minimumStep is provided, the step size is chosen as close as possible\n * to the minimumStep but larger than minimumStep. If minimumStep is not\n * provided, the scale is set to 1 DAY.\n * The minimumStep should correspond with the onscreen size of about 6 characters\n * @param {Date} [start] The start date and time.\n * @param {Date} [end] The end date and time.\n * @param {int} [minimumStep] Optional. Minimum step size in milliseconds\n */\n setRange(start, end, minimumStep) {\n if (!(start instanceof Date) || !(end instanceof Date)) {\n throw \"No legal start or end date in method setRange\";\n }\n\n this._start = (start != undefined) ? this.moment(start.valueOf()) : Date.now();\n this._end = (end != undefined) ? this.moment(end.valueOf()) : Date.now();\n\n if (this.autoScale) {\n this.setMinimumStep(minimumStep);\n }\n }\n\n /**\n * Set the range iterator to the start date.\n */\n start() {\n this.current = this._start.clone();\n this.roundToMinor();\n }\n\n /**\n * Round the current date to the first minor date value\n * This must be executed once when the current date is set to start Date\n */\n roundToMinor() {\n // round to floor\n // to prevent year & month scales rounding down to the first day of week we perform this separately\n if (this.scale == 'week') {\n this.current.weekday(0);\n }\n // IMPORTANT: we have no breaks in this switch! (this is no bug)\n // noinspection FallThroughInSwitchStatementJS\n switch (this.scale) {\n case 'year':\n this.current.year(this.step * Math.floor(this.current.year() / this.step));\n this.current.month(0);\n case 'month': this.current.date(1); // eslint-disable-line no-fallthrough\n case 'week': // eslint-disable-line no-fallthrough\n case 'day': // eslint-disable-line no-fallthrough\n case 'weekday': this.current.hours(0); // eslint-disable-line no-fallthrough\n case 'hour': this.current.minutes(0); // eslint-disable-line no-fallthrough\n case 'minute': this.current.seconds(0); // eslint-disable-line no-fallthrough\n case 'second': this.current.milliseconds(0); // eslint-disable-line no-fallthrough\n //case 'millisecond': // nothing to do for milliseconds\n }\n\n if (this.step != 1) {\n // round down to the first minor value that is a multiple of the current step size\n let priorCurrent = this.current.clone();\n switch (this.scale) { \n case 'millisecond': this.current.subtract(this.current.milliseconds() % this.step, 'milliseconds'); break;\n case 'second': this.current.subtract(this.current.seconds() % this.step, 'seconds'); break;\n case 'minute': this.current.subtract(this.current.minutes() % this.step, 'minutes'); break;\n case 'hour': this.current.subtract(this.current.hours() % this.step, 'hours'); break;\n case 'weekday': // intentional fall through\n case 'day': this.current.subtract((this.current.date() - 1) % this.step, 'day'); break;\n case 'week': this.current.subtract(this.current.week() % this.step, 'week'); break;\n case 'month': this.current.subtract(this.current.month() % this.step, 'month'); break;\n case 'year': this.current.subtract(this.current.year() % this.step, 'year'); break;\n default: break;\n }\n if (!priorCurrent.isSame(this.current)) {\n this.current = this.moment(DateUtil.snapAwayFromHidden(this.hiddenDates, this.current.valueOf(), -1, true));\n }\n }\n }\n\n /**\n * Check if the there is a next step\n * @return {boolean} true if the current date has not passed the end date\n */\n hasNext() {\n return (this.current.valueOf() <= this._end.valueOf());\n }\n\n /**\n * Do the next step\n */\n next() {\n const prev = this.current.valueOf();\n\n // Two cases, needed to prevent issues with switching daylight savings\n // (end of March and end of October)\n switch (this.scale) {\n case 'millisecond': this.current.add(this.step, 'millisecond'); break;\n case 'second': this.current.add(this.step, 'second'); break;\n case 'minute': this.current.add(this.step, 'minute'); break;\n case 'hour':\n this.current.add(this.step, 'hour');\n\n if (this.current.month() < 6) {\n this.current.subtract(this.current.hours() % this.step, 'hour');\n } else {\n if (this.current.hours() % this.step !== 0) {\n this.current.add(this.step - this.current.hours() % this.step, 'hour');\n }\n }\n break;\n case 'weekday': // intentional fall through\n case 'day': this.current.add(this.step, 'day'); break;\n case 'week':\n if (this.current.weekday() !== 0){ // we had a month break not correlating with a week's start before\n this.current.weekday(0); // switch back to week cycles\n this.current.add(this.step, 'week');\n } else if(this.options.showMajorLabels === false) {\n this.current.add(this.step, 'week'); // the default case\n } else { // first day of the week\n const nextWeek = this.current.clone();\n nextWeek.add(1, 'week');\n if(nextWeek.isSame(this.current, 'month')){ // is the first day of the next week in the same month?\n this.current.add(this.step, 'week'); // the default case\n } else { // inject a step at each first day of the month\n this.current.add(this.step, 'week');\n this.current.date(1);\n }\n }\n break;\n case 'month': this.current.add(this.step, 'month'); break;\n case 'year': this.current.add(this.step, 'year'); break;\n default: break;\n }\n\n if (this.step != 1) {\n // round down to the correct major value\n switch (this.scale) {\n case 'millisecond': if(this.current.milliseconds() > 0 && this.current.milliseconds() < this.step) this.current.milliseconds(0); break;\n case 'second': if(this.current.seconds() > 0 && this.current.seconds() < this.step) this.current.seconds(0); break;\n case 'minute': if(this.current.minutes() > 0 && this.current.minutes() < this.step) this.current.minutes(0); break;\n case 'hour': if(this.current.hours() > 0 && this.current.hours() < this.step) this.current.hours(0); break;\n case 'weekday': // intentional fall through\n case 'day': if(this.current.date() < this.step+1) this.current.date(1); break;\n case 'week': if(this.current.week() < this.step) this.current.week(1); break; // week numbering starts at 1, not 0\n case 'month': if(this.current.month() < this.step) this.current.month(0); break;\n case 'year': break; // nothing to do for year\n default: break;\n }\n }\n\n // safety mechanism: if current time is still unchanged, move to the end\n if (this.current.valueOf() == prev) {\n this.current = this._end.clone();\n }\n\n // Reset switches for year, month and day. Will get set to true where appropriate in DateUtil.stepOverHiddenDates\n this.switchedDay = false;\n this.switchedMonth = false;\n this.switchedYear = false;\n\n DateUtil.stepOverHiddenDates(this.moment, this, prev);\n }\n\n /**\n * Get the current datetime\n * @return {Moment} current The current date\n */\n getCurrent() {\n return this.current.clone();\n }\n\n /**\n * Set a custom scale. Autoscaling will be disabled.\n * For example setScale('minute', 5) will result\n * in minor steps of 5 minutes, and major steps of an hour.\n *\n * @param {{scale: string, step: number}} params\n * An object containing two properties:\n * - A string 'scale'. Choose from 'millisecond', 'second',\n * 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'.\n * - A number 'step'. A step size, by default 1.\n * Choose for example 1, 2, 5, or 10.\n */\n setScale(params) {\n if (params && typeof params.scale == 'string') {\n this.scale = params.scale;\n this.step = params.step > 0 ? params.step : 1;\n this.autoScale = false;\n }\n }\n\n /**\n * Enable or disable autoscaling\n * @param {boolean} enable If true, autoascaling is set true\n */\n setAutoScale(enable) {\n this.autoScale = enable;\n }\n\n /**\n * Automatically determine the scale that bests fits the provided minimum step\n * @param {number} [minimumStep] The minimum step size in milliseconds\n */\n setMinimumStep(minimumStep) {\n if (minimumStep == undefined) {\n return;\n }\n\n //var b = asc + ds;\n\n const stepYear = (1000 * 60 * 60 * 24 * 30 * 12);\n const stepMonth = (1000 * 60 * 60 * 24 * 30);\n const stepDay = (1000 * 60 * 60 * 24);\n const stepHour = (1000 * 60 * 60);\n const stepMinute = (1000 * 60);\n const stepSecond = (1000);\n const stepMillisecond= (1);\n\n // find the smallest step that is larger than the provided minimumStep\n if (stepYear*1000 > minimumStep) {this.scale = 'year'; this.step = 1000;}\n if (stepYear*500 > minimumStep) {this.scale = 'year'; this.step = 500;}\n if (stepYear*100 > minimumStep) {this.scale = 'year'; this.step = 100;}\n if (stepYear*50 > minimumStep) {this.scale = 'year'; this.step = 50;}\n if (stepYear*10 > minimumStep) {this.scale = 'year'; this.step = 10;}\n if (stepYear*5 > minimumStep) {this.scale = 'year'; this.step = 5;}\n if (stepYear > minimumStep) {this.scale = 'year'; this.step = 1;}\n if (stepMonth*3 > minimumStep) {this.scale = 'month'; this.step = 3;}\n if (stepMonth > minimumStep) {this.scale = 'month'; this.step = 1;}\n if (stepDay*7 > minimumStep) {this.scale = 'week'; this.step = 1;}\n if (stepDay*2 > minimumStep) {this.scale = 'day'; this.step = 2;}\n if (stepDay > minimumStep) {this.scale = 'day'; this.step = 1;}\n if (stepDay/2 > minimumStep) {this.scale = 'weekday'; this.step = 1;}\n if (stepHour*4 > minimumStep) {this.scale = 'hour'; this.step = 4;}\n if (stepHour > minimumStep) {this.scale = 'hour'; this.step = 1;}\n if (stepMinute*15 > minimumStep) {this.scale = 'minute'; this.step = 15;}\n if (stepMinute*10 > minimumStep) {this.scale = 'minute'; this.step = 10;}\n if (stepMinute*5 > minimumStep) {this.scale = 'minute'; this.step = 5;}\n if (stepMinute > minimumStep) {this.scale = 'minute'; this.step = 1;}\n if (stepSecond*15 > minimumStep) {this.scale = 'second'; this.step = 15;}\n if (stepSecond*10 > minimumStep) {this.scale = 'second'; this.step = 10;}\n if (stepSecond*5 > minimumStep) {this.scale = 'second'; this.step = 5;}\n if (stepSecond > minimumStep) {this.scale = 'second'; this.step = 1;}\n if (stepMillisecond*200 > minimumStep) {this.scale = 'millisecond'; this.step = 200;}\n if (stepMillisecond*100 > minimumStep) {this.scale = 'millisecond'; this.step = 100;}\n if (stepMillisecond*50 > minimumStep) {this.scale = 'millisecond'; this.step = 50;}\n if (stepMillisecond*10 > minimumStep) {this.scale = 'millisecond'; this.step = 10;}\n if (stepMillisecond*5 > minimumStep) {this.scale = 'millisecond'; this.step = 5;}\n if (stepMillisecond > minimumStep) {this.scale = 'millisecond'; this.step = 1;}\n }\n\n /**\n * Snap a date to a rounded value.\n * The snap intervals are dependent on the current scale and step.\n * Static function\n * @param {Date} date the date to be snapped.\n * @param {string} scale Current scale, can be 'millisecond', 'second',\n * 'minute', 'hour', 'weekday, 'day', 'week', 'month', 'year'.\n * @param {number} step Current step (1, 2, 4, 5, ...\n * @return {Date} snappedDate\n */\n static snap(date, scale, step) {\n const clone = moment(date);\n\n if (scale == 'year') {\n const year = clone.year() + Math.round(clone.month() / 12);\n clone.year(Math.round(year / step) * step);\n clone.month(0);\n clone.date(0);\n clone.hours(0);\n clone.minutes(0);\n clone.seconds(0);\n clone.milliseconds(0);\n }\n else if (scale == 'month') {\n if (clone.date() > 15) {\n clone.date(1);\n clone.add(1, 'month');\n // important: first set Date to 1, after that change the month.\n }\n else {\n clone.date(1);\n }\n\n clone.hours(0);\n clone.minutes(0);\n clone.seconds(0);\n clone.milliseconds(0);\n }\n else if (scale == 'week') {\n if (clone.weekday() > 2) { // doing it the momentjs locale aware way\n clone.weekday(0);\n clone.add(1, 'week');\n }\n else {\n clone.weekday(0);\n }\n\n clone.hours(0);\n clone.minutes(0);\n clone.seconds(0);\n clone.milliseconds(0);\n }\n else if (scale == 'day') {\n //noinspection FallthroughInSwitchStatementJS\n switch (step) {\n case 5:\n case 2:\n clone.hours(Math.round(clone.hours() / 24) * 24); break;\n default:\n clone.hours(Math.round(clone.hours() / 12) * 12); break;\n }\n clone.minutes(0);\n clone.seconds(0);\n clone.milliseconds(0);\n }\n else if (scale == 'weekday') {\n //noinspection FallthroughInSwitchStatementJS\n switch (step) {\n case 5:\n case 2:\n clone.hours(Math.round(clone.hours() / 12) * 12); break;\n default:\n clone.hours(Math.round(clone.hours() / 6) * 6); break;\n }\n clone.minutes(0);\n clone.seconds(0);\n clone.milliseconds(0);\n }\n else if (scale == 'hour') {\n switch (step) {\n case 4:\n clone.minutes(Math.round(clone.minutes() / 60) * 60); break;\n default:\n clone.minutes(Math.round(clone.minutes() / 30) * 30); break;\n }\n clone.seconds(0);\n clone.milliseconds(0);\n } else if (scale == 'minute') {\n //noinspection FallthroughInSwitchStatementJS\n switch (step) {\n case 15:\n case 10:\n clone.minutes(Math.round(clone.minutes() / 5) * 5);\n clone.seconds(0);\n break;\n case 5:\n clone.seconds(Math.round(clone.seconds() / 60) * 60); break;\n default:\n clone.seconds(Math.round(clone.seconds() / 30) * 30); break;\n }\n clone.milliseconds(0);\n }\n else if (scale == 'second') {\n //noinspection FallthroughInSwitchStatementJS\n switch (step) {\n case 15:\n case 10:\n clone.seconds(Math.round(clone.seconds() / 5) * 5);\n clone.milliseconds(0);\n break;\n case 5:\n clone.milliseconds(Math.round(clone.milliseconds() / 1000) * 1000); break;\n default:\n clone.milliseconds(Math.round(clone.milliseconds() / 500) * 500); break;\n }\n }\n else if (scale == 'millisecond') {\n const _step = step > 5 ? step / 2 : 1;\n clone.milliseconds(Math.round(clone.milliseconds() / _step) * _step);\n }\n\n return clone;\n }\n\n /**\n * Check if the current value is a major value (for example when the step\n * is DAY, a major value is each first day of the MONTH)\n * @return {boolean} true if current date is major, else false.\n */\n isMajor() {\n if (this.switchedYear == true) {\n switch (this.scale) {\n case 'year':\n case 'month':\n case 'week':\n case 'weekday':\n case 'day':\n case 'hour':\n case 'minute':\n case 'second':\n case 'millisecond':\n return true;\n default:\n return false;\n }\n }\n else if (this.switchedMonth == true) {\n switch (this.scale) {\n case 'week':\n case 'weekday':\n case 'day':\n case 'hour':\n case 'minute':\n case 'second':\n case 'millisecond':\n return true;\n default:\n return false;\n }\n }\n else if (this.switchedDay == true) {\n switch (this.scale) {\n case 'millisecond':\n case 'second':\n case 'minute':\n case 'hour':\n return true;\n default:\n return false;\n }\n }\n\n const date = this.moment(this.current);\n switch (this.scale) {\n case 'millisecond':\n return (date.milliseconds() == 0);\n case 'second':\n return (date.seconds() == 0);\n case 'minute':\n return (date.hours() == 0) && (date.minutes() == 0);\n case 'hour':\n return (date.hours() == 0);\n case 'weekday': // intentional fall through\n case 'day':\n return (date.date() == 1);\n case 'week':\n return (date.date() == 1);\n case 'month':\n return (date.month() == 0);\n case 'year':\n return false;\n default:\n return false;\n }\n }\n\n /**\n * Returns formatted text for the minor axislabel, depending on the current\n * date and the scale. For example when scale is MINUTE, the current time is\n * formatted as \"hh:mm\".\n * @param {Date} [date=this.current] custom date. if not provided, current date is taken\n * @returns {String}\n */\n getLabelMinor(date) {\n if (date == undefined) {\n date = this.current;\n }\n if (date instanceof Date) {\n date = this.moment(date)\n }\n\n if (typeof(this.format.minorLabels) === \"function\") {\n return this.format.minorLabels(date, this.scale, this.step);\n }\n\n const format = this.format.minorLabels[this.scale];\n // noinspection FallThroughInSwitchStatementJS\n switch (this.scale) {\n case 'week':\n // Don't draw the minor label if this date is the first day of a month AND if it's NOT the start of the week.\n // The 'date' variable may actually be the 'next' step when called from TimeAxis' _repaintLabels.\n if(date.date() === 1 && date.weekday() !== 0){\n return \"\";\n }\n default: // eslint-disable-line no-fallthrough\n return (format && format.length > 0) ? this.moment(date).format(format) : '';\n }\n }\n\n /**\n * Returns formatted text for the major axis label, depending on the current\n * date and the scale. For example when scale is MINUTE, the major scale is\n * hours, and the hour will be formatted as \"hh\".\n * @param {Date} [date=this.current] custom date. if not provided, current date is taken\n * @returns {String}\n */\n getLabelMajor(date) {\n if (date == undefined) {\n date = this.current;\n }\n if (date instanceof Date) {\n date = this.moment(date)\n }\n\n if (typeof(this.format.majorLabels) === \"function\") {\n return this.format.majorLabels(date, this.scale, this.step);\n }\n\n const format = this.format.majorLabels[this.scale];\n return (format && format.length > 0) ? this.moment(date).format(format) : '';\n }\n\n /**\n * get class name\n * @return {string} class name\n */\n getClassName() {\n const _moment = this.moment;\n const m = this.moment(this.current);\n const current = m.locale ? m.locale('en') : m.lang('en'); // old versions of moment have .lang() function\n const step = this.step;\n const classNames = [];\n\n /**\n *\n * @param {number} value\n * @returns {String}\n */\n function even(value) {\n return (value / step % 2 == 0) ? ' vis-even' : ' vis-odd';\n }\n\n /**\n *\n * @param {Date} date\n * @returns {String}\n */\n function today(date) {\n if (date.isSame(Date.now(), 'day')) {\n return ' vis-today';\n }\n if (date.isSame(_moment().add(1, 'day'), 'day')) {\n return ' vis-tomorrow';\n }\n if (date.isSame(_moment().add(-1, 'day'), 'day')) {\n return ' vis-yesterday';\n }\n return '';\n }\n\n /**\n *\n * @param {Date} date\n * @returns {String}\n */\n function currentWeek(date) {\n return date.isSame(Date.now(), 'week') ? ' vis-current-week' : '';\n }\n\n /**\n *\n * @param {Date} date\n * @returns {String}\n */\n function currentMonth(date) {\n return date.isSame(Date.now(), 'month') ? ' vis-current-month' : '';\n }\n\n /**\n *\n * @param {Date} date\n * @returns {String}\n */\n function currentYear(date) {\n return date.isSame(Date.now(), 'year') ? ' vis-current-year' : '';\n }\n\n switch (this.scale) {\n case 'millisecond':\n classNames.push(today(current));\n classNames.push(even(current.milliseconds()));\n break;\n case 'second':\n classNames.push(today(current));\n classNames.push(even(current.seconds()));\n break;\n case 'minute':\n classNames.push(today(current));\n classNames.push(even(current.minutes()));\n break;\n case 'hour':\n classNames.push(`vis-h${current.hours()}${this.step == 4 ? '-h' + (current.hours() + 4) : ''}`);\n classNames.push(today(current));\n classNames.push(even(current.hours()));\n break;\n case 'weekday':\n classNames.push(`vis-${current.format('dddd').toLowerCase()}`);\n classNames.push(today(current));\n classNames.push(currentWeek(current));\n classNames.push(even(current.date()));\n break;\n case 'day':\n classNames.push(`vis-day${current.date()}`);\n classNames.push(`vis-${current.format('MMMM').toLowerCase()}`);\n classNames.push(today(current));\n classNames.push(currentMonth(current));\n classNames.push(this.step <= 2 ? today(current) : '');\n classNames.push(this.step <= 2 ? `vis-${current.format('dddd').toLowerCase()}` : '');\n classNames.push(even(current.date() - 1));\n break;\n case 'week':\n classNames.push(`vis-week${current.format('w')}`);\n classNames.push(currentWeek(current));\n classNames.push(even(current.week()));\n break;\n case 'month':\n classNames.push(`vis-${current.format('MMMM').toLowerCase()}`);\n classNames.push(currentMonth(current));\n classNames.push(even(current.month()));\n break;\n case 'year':\n classNames.push(`vis-year${current.year()}`);\n classNames.push(currentYear(current));\n classNames.push(even(current.year()));\n break;\n }\n return classNames.filter(String).join(\" \");\n }\n}\n\n// Time formatting\nTimeStep.FORMAT = {\n minorLabels: {\n millisecond:'SSS',\n second: 's',\n minute: 'HH:mm',\n hour: 'HH:mm',\n weekday: 'ddd D',\n day: 'D',\n week: 'w',\n month: 'MMM',\n year: 'YYYY'\n },\n majorLabels: {\n millisecond:'HH:mm:ss',\n second: 'D MMMM HH:mm',\n minute: 'ddd D MMMM',\n hour: 'ddd D MMMM',\n weekday: 'MMMM YYYY',\n day: 'MMMM YYYY',\n week: 'MMMM YYYY',\n month: 'YYYY',\n year: ''\n }\n};\n\nexport default TimeStep;\n","import util from '../../util';\nimport Component from'./Component';\nimport TimeStep from '../TimeStep';\nimport * as DateUtil from '../DateUtil';\nimport moment from '../../module/moment';\n\nimport './css/timeaxis.css';\n\n/** A horizontal time axis */\nclass TimeAxis extends Component {\n/**\n * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body\n * @param {Object} [options] See TimeAxis.setOptions for the available\n * options.\n * @constructor TimeAxis\n * @extends Component\n */\n constructor(body, options) {\n super();\n this.dom = {\n foreground: null,\n lines: [],\n majorTexts: [],\n minorTexts: [],\n redundant: {\n lines: [],\n majorTexts: [],\n minorTexts: []\n }\n };\n this.props = {\n range: {\n start: 0,\n end: 0,\n minimumStep: 0\n },\n lineTop: 0\n };\n\n this.defaultOptions = {\n orientation: {\n axis: 'bottom'\n }, // axis orientation: 'top' or 'bottom'\n showMinorLabels: true,\n showMajorLabels: true,\n maxMinorChars: 7,\n format: TimeStep.FORMAT,\n moment,\n timeAxis: null\n };\n this.options = util.extend({}, this.defaultOptions);\n\n this.body = body;\n\n // create the HTML DOM\n this._create();\n\n this.setOptions(options);\n }\n\n /**\n * Set options for the TimeAxis.\n * Parameters will be merged in current options.\n * @param {Object} options Available options:\n * {string} [orientation.axis]\n * {boolean} [showMinorLabels]\n * {boolean} [showMajorLabels]\n */\n setOptions(options) {\n if (options) {\n // copy all options that we know\n util.selectiveExtend([\n 'showMinorLabels',\n 'showMajorLabels',\n 'maxMinorChars',\n 'hiddenDates',\n 'timeAxis',\n 'moment',\n 'rtl'\n ], this.options, options);\n\n // deep copy the format options\n util.selectiveDeepExtend(['format'], this.options, options);\n\n if ('orientation' in options) {\n if (typeof options.orientation === 'string') {\n this.options.orientation.axis = options.orientation;\n }\n else if (typeof options.orientation === 'object' && 'axis' in options.orientation) {\n this.options.orientation.axis = options.orientation.axis;\n }\n }\n\n // apply locale to moment.js\n // TODO: not so nice, this is applied globally to moment.js\n if ('locale' in options) {\n if (typeof moment.locale === 'function') {\n // moment.js 2.8.1+\n moment.locale(options.locale);\n }\n else {\n moment.lang(options.locale);\n }\n }\n }\n }\n\n /**\n * Create the HTML DOM for the TimeAxis\n */\n _create() {\n this.dom.foreground = document.createElement('div');\n this.dom.background = document.createElement('div');\n\n this.dom.foreground.className = 'vis-time-axis vis-foreground';\n this.dom.background.className = 'vis-time-axis vis-background';\n }\n\n /**\n * Destroy the TimeAxis\n */\n destroy() {\n // remove from DOM\n if (this.dom.foreground.parentNode) {\n this.dom.foreground.parentNode.removeChild(this.dom.foreground);\n }\n if (this.dom.background.parentNode) {\n this.dom.background.parentNode.removeChild(this.dom.background);\n }\n\n this.body = null;\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n const props = this.props;\n const foreground = this.dom.foreground;\n const background = this.dom.background;\n\n // determine the correct parent DOM element (depending on option orientation)\n const parent = (this.options.orientation.axis == 'top') ? this.body.dom.top : this.body.dom.bottom;\n const parentChanged = (foreground.parentNode !== parent);\n\n // calculate character width and height\n this._calculateCharSize();\n\n // TODO: recalculate sizes only needed when parent is resized or options is changed\n const showMinorLabels = this.options.showMinorLabels && this.options.orientation.axis !== 'none';\n const showMajorLabels = this.options.showMajorLabels && this.options.orientation.axis !== 'none';\n\n // determine the width and height of the elemens for the axis\n props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0;\n props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0;\n props.height = props.minorLabelHeight + props.majorLabelHeight;\n props.width = foreground.offsetWidth;\n\n props.minorLineHeight = this.body.domProps.root.height - props.majorLabelHeight -\n (this.options.orientation.axis == 'top' ? this.body.domProps.bottom.height : this.body.domProps.top.height);\n props.minorLineWidth = 1; // TODO: really calculate width\n props.majorLineHeight = props.minorLineHeight + props.majorLabelHeight;\n props.majorLineWidth = 1; // TODO: really calculate width\n\n // take foreground and background offline while updating (is almost twice as fast)\n const foregroundNextSibling = foreground.nextSibling;\n const backgroundNextSibling = background.nextSibling;\n foreground.parentNode && foreground.parentNode.removeChild(foreground);\n background.parentNode && background.parentNode.removeChild(background);\n\n foreground.style.height = `${this.props.height}px`;\n\n this._repaintLabels();\n\n // put DOM online again (at the same place)\n if (foregroundNextSibling) {\n parent.insertBefore(foreground, foregroundNextSibling);\n }\n else {\n parent.appendChild(foreground)\n }\n if (backgroundNextSibling) {\n this.body.dom.backgroundVertical.insertBefore(background, backgroundNextSibling);\n }\n else {\n this.body.dom.backgroundVertical.appendChild(background)\n }\n return this._isResized() || parentChanged;\n }\n\n /**\n * Repaint major and minor text labels and vertical grid lines\n * @private\n */\n _repaintLabels() {\n const orientation = this.options.orientation.axis;\n\n // calculate range and step (step such that we have space for 7 characters per label)\n const start = util.convert(this.body.range.start, 'Number');\n const end = util.convert(this.body.range.end, 'Number');\n const timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * this.options.maxMinorChars).valueOf();\n let minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this.body.range, timeLabelsize);\n minimumStep -= this.body.util.toTime(0).valueOf();\n\n const step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates, this.options);\n step.setMoment(this.options.moment);\n if (this.options.format) {\n step.setFormat(this.options.format);\n }\n if (this.options.timeAxis) {\n step.setScale(this.options.timeAxis);\n }\n this.step = step;\n\n // Move all DOM elements to a \"redundant\" list, where they\n // can be picked for re-use, and clear the lists with lines and texts.\n // At the end of the function _repaintLabels, left over elements will be cleaned up\n const dom = this.dom;\n dom.redundant.lines = dom.lines;\n dom.redundant.majorTexts = dom.majorTexts;\n dom.redundant.minorTexts = dom.minorTexts;\n dom.lines = [];\n dom.majorTexts = [];\n dom.minorTexts = [];\n\n let current;\n let next;\n let x;\n let xNext;\n let isMajor;\n let showMinorGrid;\n let width = 0;\n let prevWidth;\n let line;\n let xFirstMajorLabel = undefined;\n let count = 0;\n const MAX = 1000;\n let className;\n\n step.start();\n next = step.getCurrent();\n xNext = this.body.util.toScreen(next);\n while (step.hasNext() && count < MAX) {\n count++;\n\n isMajor = step.isMajor();\n className = step.getClassName();\n\n current = next;\n x = xNext;\n\n step.next();\n next = step.getCurrent();\n xNext = this.body.util.toScreen(next);\n\n prevWidth = width;\n width = xNext - x;\n switch (step.scale) {\n case 'week': showMinorGrid = true; break;\n default: showMinorGrid = (width >= prevWidth * 0.4); break; // prevent displaying of the 31th of the month on a scale of 5 days\n }\n\n if (this.options.showMinorLabels && showMinorGrid) {\n var label = this._repaintMinorText(x, step.getLabelMinor(current), orientation, className);\n label.style.width = `${width}px`; // set width to prevent overflow\n }\n\n if (isMajor && this.options.showMajorLabels) {\n if (x > 0) {\n if (xFirstMajorLabel == undefined) {\n xFirstMajorLabel = x;\n }\n label = this._repaintMajorText(x, step.getLabelMajor(current), orientation, className);\n }\n line = this._repaintMajorLine(x, width, orientation, className);\n }\n else { // minor line\n if (showMinorGrid) {\n line = this._repaintMinorLine(x, width, orientation, className);\n }\n else {\n if (line) {\n // adjust the width of the previous grid\n line.style.width = `${parseInt(line.style.width) + width}px`;\n }\n }\n }\n }\n\n if (count === MAX && !warnedForOverflow) {\n console.warn(`Something is wrong with the Timeline scale. Limited drawing of grid lines to ${MAX} lines.`);\n warnedForOverflow = true;\n }\n\n // create a major label on the left when needed\n if (this.options.showMajorLabels) {\n const leftTime = this.body.util.toTime(0); // upper bound estimation\n const leftText = step.getLabelMajor(leftTime);\n const widthText = leftText.length * (this.props.majorCharWidth || 10) + 10;\n\n if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) {\n this._repaintMajorText(0, leftText, orientation, className);\n }\n }\n\n // Cleanup leftover DOM elements from the redundant list\n util.forEach(this.dom.redundant, arr => {\n while (arr.length) {\n const elem = arr.pop();\n if (elem && elem.parentNode) {\n elem.parentNode.removeChild(elem);\n }\n }\n });\n }\n\n /**\n * Create a minor label for the axis at position x\n * @param {number} x\n * @param {string} text\n * @param {string} orientation \"top\" or \"bottom\" (default)\n * @param {string} className\n * @return {Element} Returns the HTML element of the created label\n * @private\n */\n _repaintMinorText(x, text, orientation, className) {\n // reuse redundant label\n let label = this.dom.redundant.minorTexts.shift();\n\n if (!label) {\n // create new label\n const content = document.createTextNode('');\n label = document.createElement('div');\n label.appendChild(content);\n this.dom.foreground.appendChild(label);\n }\n this.dom.minorTexts.push(label);\n label.innerHTML = text;\n\n\n let y = (orientation == 'top') ? this.props.majorLabelHeight : 0;\n this._setXY(label, x, y);\n\n label.className = `vis-text vis-minor ${className}`;\n //label.title = title; // TODO: this is a heavy operation\n\n return label;\n }\n\n /**\n * Create a Major label for the axis at position x\n * @param {number} x\n * @param {string} text\n * @param {string} orientation \"top\" or \"bottom\" (default)\n * @param {string} className\n * @return {Element} Returns the HTML element of the created label\n * @private\n */\n _repaintMajorText(x, text, orientation, className) {\n // reuse redundant label\n let label = this.dom.redundant.majorTexts.shift();\n\n if (!label) {\n // create label\n const content = document.createElement('div');\n label = document.createElement('div');\n label.appendChild(content);\n this.dom.foreground.appendChild(label);\n }\n\n label.childNodes[0].innerHTML = text;\n label.className = `vis-text vis-major ${className}`;\n //label.title = title; // TODO: this is a heavy operation\n\n let y = (orientation == 'top') ? 0 : this.props.minorLabelHeight;\n this._setXY(label, x, y);\n\n this.dom.majorTexts.push(label);\n return label;\n }\n\n /**\n * sets xy\n * @param {string} label\n * @param {number} x\n * @param {number} y\n * @private\n */\n _setXY(label, x, y) {\n // If rtl is true, inverse x.\n const directionX = this.options.rtl ? (x * -1) : x;\n label.style.transform = `translate(${directionX}px, ${y}px)`;\n }\n\n /**\n * Create a minor line for the axis at position x\n * @param {number} left\n * @param {number} width\n * @param {string} orientation \"top\" or \"bottom\" (default)\n * @param {string} className\n * @return {Element} Returns the created line\n * @private\n */\n _repaintMinorLine(left, width, orientation, className) {\n // reuse redundant line\n let line = this.dom.redundant.lines.shift();\n if (!line) {\n // create vertical line\n line = document.createElement('div');\n this.dom.background.appendChild(line);\n }\n this.dom.lines.push(line);\n\n const props = this.props;\n \n line.style.width = `${width}px`;\n line.style.height = `${props.minorLineHeight}px`;\n\n let y = (orientation == 'top') ? props.majorLabelHeight : this.body.domProps.top.height;\n let x = left - props.minorLineWidth / 2;\n\n this._setXY(line, x, y);\n line.className = `vis-grid ${this.options.rtl ? 'vis-vertical-rtl' : 'vis-vertical'} vis-minor ${className}`;\n\n return line;\n }\n\n /**\n * Create a Major line for the axis at position x\n * @param {number} left\n * @param {number} width\n * @param {string} orientation \"top\" or \"bottom\" (default)\n * @param {string} className\n * @return {Element} Returns the created line\n * @private\n */\n _repaintMajorLine(left, width, orientation, className) {\n // reuse redundant line\n let line = this.dom.redundant.lines.shift();\n if (!line) {\n // create vertical line\n line = document.createElement('div');\n this.dom.background.appendChild(line);\n }\n this.dom.lines.push(line);\n\n const props = this.props;\n \n line.style.width = `${width}px`;\n line.style.height = `${props.majorLineHeight}px`;\n\n let y = (orientation == 'top') ? 0 : this.body.domProps.top.height;\n let x = left - props.majorLineWidth / 2;\n\n this._setXY(line, x, y);\n line.className = `vis-grid ${this.options.rtl ? 'vis-vertical-rtl' : 'vis-vertical'} vis-major ${className}`;\n\n return line;\n }\n\n /**\n * Determine the size of text on the axis (both major and minor axis).\n * The size is calculated only once and then cached in this.props.\n * @private\n */\n _calculateCharSize() {\n // Note: We calculate char size with every redraw. Size may change, for\n // example when any of the timelines parents had display:none for example.\n\n // determine the char width and height on the minor axis\n if (!this.dom.measureCharMinor) {\n this.dom.measureCharMinor = document.createElement('DIV');\n this.dom.measureCharMinor.className = 'vis-text vis-minor vis-measure';\n this.dom.measureCharMinor.style.position = 'absolute';\n\n this.dom.measureCharMinor.appendChild(document.createTextNode('0'));\n this.dom.foreground.appendChild(this.dom.measureCharMinor);\n }\n this.props.minorCharHeight = this.dom.measureCharMinor.clientHeight;\n this.props.minorCharWidth = this.dom.measureCharMinor.clientWidth;\n\n // determine the char width and height on the major axis\n if (!this.dom.measureCharMajor) {\n this.dom.measureCharMajor = document.createElement('DIV');\n this.dom.measureCharMajor.className = 'vis-text vis-major vis-measure';\n this.dom.measureCharMajor.style.position = 'absolute';\n\n this.dom.measureCharMajor.appendChild(document.createTextNode('0'));\n this.dom.foreground.appendChild(this.dom.measureCharMajor);\n }\n this.props.majorCharHeight = this.dom.measureCharMajor.clientHeight;\n this.props.majorCharWidth = this.dom.measureCharMajor.clientWidth;\n }\n}\n\n\nvar warnedForOverflow = false;\n\nexport default TimeAxis;\n","\"use strict\";\r\n/**\r\n * Created by Alex on 11/6/2014.\r\n */\r\n\r\n// https://github.com/umdjs/umd/blob/master/returnExports.js#L40-L60\r\n// if the module has no dependencies, the above pattern can be simplified to\r\n(function (root, factory) {\r\n if (typeof define === 'function' && define.amd) {\r\n // AMD. Register as an anonymous module.\r\n define([], factory);\r\n } else if (typeof exports === 'object') {\r\n // Node. Does not work with strict CommonJS, but\r\n // only CommonJS-like environments that support module.exports,\r\n // like Node.\r\n module.exports = factory();\r\n } else {\r\n // Browser globals (root is window)\r\n root.keycharm = factory();\r\n }\r\n}(this, function () {\r\n\r\n function keycharm(options) {\r\n var preventDefault = options && options.preventDefault || false;\r\n\r\n var container = options && options.container || window;\r\n\r\n var _exportFunctions = {};\r\n var _bound = {keydown:{}, keyup:{}};\r\n var _keys = {};\r\n var i;\r\n\r\n // a - z\r\n for (i = 97; i <= 122; i++) {_keys[String.fromCharCode(i)] = {code:65 + (i - 97), shift: false};}\r\n // A - Z\r\n for (i = 65; i <= 90; i++) {_keys[String.fromCharCode(i)] = {code:i, shift: true};}\r\n // 0 - 9\r\n for (i = 0; i <= 9; i++) {_keys['' + i] = {code:48 + i, shift: false};}\r\n // F1 - F12\r\n for (i = 1; i <= 12; i++) {_keys['F' + i] = {code:111 + i, shift: false};}\r\n // num0 - num9\r\n for (i = 0; i <= 9; i++) {_keys['num' + i] = {code:96 + i, shift: false};}\r\n\r\n // numpad misc\r\n _keys['num*'] = {code:106, shift: false};\r\n _keys['num+'] = {code:107, shift: false};\r\n _keys['num-'] = {code:109, shift: false};\r\n _keys['num/'] = {code:111, shift: false};\r\n _keys['num.'] = {code:110, shift: false};\r\n // arrows\r\n _keys['left'] = {code:37, shift: false};\r\n _keys['up'] = {code:38, shift: false};\r\n _keys['right'] = {code:39, shift: false};\r\n _keys['down'] = {code:40, shift: false};\r\n // extra keys\r\n _keys['space'] = {code:32, shift: false};\r\n _keys['enter'] = {code:13, shift: false};\r\n _keys['shift'] = {code:16, shift: undefined};\r\n _keys['esc'] = {code:27, shift: false};\r\n _keys['backspace'] = {code:8, shift: false};\r\n _keys['tab'] = {code:9, shift: false};\r\n _keys['ctrl'] = {code:17, shift: false};\r\n _keys['alt'] = {code:18, shift: false};\r\n _keys['delete'] = {code:46, shift: false};\r\n _keys['pageup'] = {code:33, shift: false};\r\n _keys['pagedown'] = {code:34, shift: false};\r\n // symbols\r\n _keys['='] = {code:187, shift: false};\r\n _keys['-'] = {code:189, shift: false};\r\n _keys[']'] = {code:221, shift: false};\r\n _keys['['] = {code:219, shift: false};\r\n\r\n\r\n\r\n var down = function(event) {handleEvent(event,'keydown');};\r\n var up = function(event) {handleEvent(event,'keyup');};\r\n\r\n // handle the actualy bound key with the event\r\n var handleEvent = function(event,type) {\r\n if (_bound[type][event.keyCode] !== undefined) {\r\n var bound = _bound[type][event.keyCode];\r\n for (var i = 0; i < bound.length; i++) {\r\n if (bound[i].shift === undefined) {\r\n bound[i].fn(event);\r\n }\r\n else if (bound[i].shift == true && event.shiftKey == true) {\r\n bound[i].fn(event);\r\n }\r\n else if (bound[i].shift == false && event.shiftKey == false) {\r\n bound[i].fn(event);\r\n }\r\n }\r\n\r\n if (preventDefault == true) {\r\n event.preventDefault();\r\n }\r\n }\r\n };\r\n\r\n // bind a key to a callback\r\n _exportFunctions.bind = function(key, callback, type) {\r\n if (type === undefined) {\r\n type = 'keydown';\r\n }\r\n if (_keys[key] === undefined) {\r\n throw new Error(\"unsupported key: \" + key);\r\n }\r\n if (_bound[type][_keys[key].code] === undefined) {\r\n _bound[type][_keys[key].code] = [];\r\n }\r\n _bound[type][_keys[key].code].push({fn:callback, shift:_keys[key].shift});\r\n };\r\n\r\n\r\n // bind all keys to a call back (demo purposes)\r\n _exportFunctions.bindAll = function(callback, type) {\r\n if (type === undefined) {\r\n type = 'keydown';\r\n }\r\n for (var key in _keys) {\r\n if (_keys.hasOwnProperty(key)) {\r\n _exportFunctions.bind(key,callback,type);\r\n }\r\n }\r\n };\r\n\r\n // get the key label from an event\r\n _exportFunctions.getKey = function(event) {\r\n for (var key in _keys) {\r\n if (_keys.hasOwnProperty(key)) {\r\n if (event.shiftKey == true && _keys[key].shift == true && event.keyCode == _keys[key].code) {\r\n return key;\r\n }\r\n else if (event.shiftKey == false && _keys[key].shift == false && event.keyCode == _keys[key].code) {\r\n return key;\r\n }\r\n else if (event.keyCode == _keys[key].code && key == 'shift') {\r\n return key;\r\n }\r\n }\r\n }\r\n return \"unknown key, currently not supported\";\r\n };\r\n\r\n // unbind either a specific callback from a key or all of them (by leaving callback undefined)\r\n _exportFunctions.unbind = function(key, callback, type) {\r\n if (type === undefined) {\r\n type = 'keydown';\r\n }\r\n if (_keys[key] === undefined) {\r\n throw new Error(\"unsupported key: \" + key);\r\n }\r\n if (callback !== undefined) {\r\n var newBindings = [];\r\n var bound = _bound[type][_keys[key].code];\r\n if (bound !== undefined) {\r\n for (var i = 0; i < bound.length; i++) {\r\n if (!(bound[i].fn == callback && bound[i].shift == _keys[key].shift)) {\r\n newBindings.push(_bound[type][_keys[key].code][i]);\r\n }\r\n }\r\n }\r\n _bound[type][_keys[key].code] = newBindings;\r\n }\r\n else {\r\n _bound[type][_keys[key].code] = [];\r\n }\r\n };\r\n\r\n // reset all bound variables.\r\n _exportFunctions.reset = function() {\r\n _bound = {keydown:{}, keyup:{}};\r\n };\r\n\r\n // unbind all listeners and reset all variables.\r\n _exportFunctions.destroy = function() {\r\n _bound = {keydown:{}, keyup:{}};\r\n container.removeEventListener('keydown', down, true);\r\n container.removeEventListener('keyup', up, true);\r\n };\r\n\r\n // create listeners.\r\n container.addEventListener('keydown',down,true);\r\n container.addEventListener('keyup',up,true);\r\n\r\n // return the public functions.\r\n return _exportFunctions;\r\n }\r\n\r\n return keycharm;\r\n}));\r\n\r\n\r\n","import keycharm from 'keycharm';\nimport Emitter from 'emitter-component';\nimport Hammer from '../module/hammer';\nimport util from '../util';\n\nimport './activator.css';\n\n/**\n * Turn an element into an clickToUse element.\n * When not active, the element has a transparent overlay. When the overlay is\n * clicked, the mode is changed to active.\n * When active, the element is displayed with a blue border around it, and\n * the interactive contents of the element can be used. When clicked outside\n * the element, the elements mode is changed to inactive.\n * @param {Element} container\n * @constructor Activator\n */\nfunction Activator(container) {\n this.active = false;\n\n this.dom = {\n container: container\n };\n\n this.dom.overlay = document.createElement('div');\n this.dom.overlay.className = 'vis-overlay';\n\n this.dom.container.appendChild(this.dom.overlay);\n\n this.hammer = Hammer(this.dom.overlay);\n this.hammer.on('tap', this._onTapOverlay.bind(this));\n\n // block all touch events (except tap)\n var me = this;\n var events = [\n 'tap', 'doubletap', 'press',\n 'pinch',\n 'pan', 'panstart', 'panmove', 'panend'\n ];\n events.forEach(function (event) {\n me.hammer.on(event, function (event) {\n event.stopPropagation();\n });\n });\n\n // attach a click event to the window, in order to deactivate when clicking outside the timeline\n if (document && document.body) {\n this.onClick = function (event) {\n if (!_hasParent(event.target, container)) {\n me.deactivate();\n }\n };\n document.body.addEventListener('click', this.onClick);\n }\n\n if (this.keycharm !== undefined) {\n this.keycharm.destroy();\n }\n this.keycharm = keycharm();\n\n // keycharm listener only bounded when active)\n this.escListener = this.deactivate.bind(this);\n}\n\n// turn into an event emitter\nEmitter(Activator.prototype);\n\n// The currently active activator\nActivator.current = null;\n\n/**\n * Destroy the activator. Cleans up all created DOM and event listeners\n */\nActivator.prototype.destroy = function () {\n this.deactivate();\n\n // remove dom\n this.dom.overlay.parentNode.removeChild(this.dom.overlay);\n\n // remove global event listener\n if (this.onClick) {\n document.body.removeEventListener('click', this.onClick);\n }\n // remove keycharm\n if (this.keycharm !== undefined) {\n this.keycharm.destroy();\n }\n this.keycharm = null;\n // cleanup hammer instances\n this.hammer.destroy();\n this.hammer = null;\n // FIXME: cleaning up hammer instances doesn't work (Timeline not removed from memory)\n};\n\n/**\n * Activate the element\n * Overlay is hidden, element is decorated with a blue shadow border\n */\nActivator.prototype.activate = function () {\n // we allow only one active activator at a time\n if (Activator.current) {\n Activator.current.deactivate();\n }\n Activator.current = this;\n\n this.active = true;\n this.dom.overlay.style.display = 'none';\n util.addClassName(this.dom.container, 'vis-active');\n\n this.emit('change');\n this.emit('activate');\n\n // ugly hack: bind ESC after emitting the events, as the Network rebinds all\n // keyboard events on a 'change' event\n this.keycharm.bind('esc', this.escListener);\n};\n\n/**\n * Deactivate the element\n * Overlay is displayed on top of the element\n */\nActivator.prototype.deactivate = function () {\n this.active = false;\n this.dom.overlay.style.display = '';\n util.removeClassName(this.dom.container, 'vis-active');\n this.keycharm.unbind('esc', this.escListener);\n\n this.emit('change');\n this.emit('deactivate');\n};\n\n/**\n * Handle a tap event: activate the container\n * @param {Event} event The event\n * @private\n */\nActivator.prototype._onTapOverlay = function (event) {\n // activate the container\n this.activate();\n event.stopPropagation();\n};\n\n/**\n * Test whether the element has the requested parent element somewhere in\n * its chain of parent nodes.\n * @param {HTMLElement} element\n * @param {HTMLElement} parent\n * @returns {boolean} Returns true when the parent is found somewhere in the\n * chain of parent nodes.\n * @private\n */\nfunction _hasParent(element, parent) {\n while (element) {\n if (element === parent) {\n return true\n }\n element = element.parentNode;\n }\n return false;\n}\n\nexport default Activator;\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n var it = moment.defineLocale('it', {\n months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),\n monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),\n weekdays : 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'),\n weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab'.split('_'),\n weekdaysMin : 'do_lu_ma_me_gi_ve_sa'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[Oggi alle] LT',\n nextDay: '[Domani alle] LT',\n nextWeek: 'dddd [alle] LT',\n lastDay: '[Ieri alle] LT',\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n return '[la scorsa] dddd [alle] LT';\n default:\n return '[lo scorso] dddd [alle] LT';\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : function (s) {\n return ((/^[0-9].+$/).test(s) ? 'tra' : 'in') + ' ' + s;\n },\n past : '%s fa',\n s : 'alcuni secondi',\n ss : '%d secondi',\n m : 'un minuto',\n mm : '%d minuti',\n h : 'un\\'ora',\n hh : '%d ore',\n d : 'un giorno',\n dd : '%d giorni',\n M : 'un mese',\n MM : '%d mesi',\n y : 'un anno',\n yy : '%d anni'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal: '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return it;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),\n monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');\n\n var monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];\n var monthsRegex = /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\\.?|feb\\.?|mrt\\.?|apr\\.?|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i;\n\n var nl = moment.defineLocale('nl', {\n months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortWithDots;\n } else if (/-MMM-/.test(format)) {\n return monthsShortWithoutDots[m.month()];\n } else {\n return monthsShortWithDots[m.month()];\n }\n },\n\n monthsRegex: monthsRegex,\n monthsShortRegex: monthsRegex,\n monthsStrictRegex: /^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,\n monthsShortStrictRegex: /^(jan\\.?|feb\\.?|mrt\\.?|apr\\.?|mei|ju[nl]\\.?|aug\\.?|sep\\.?|okt\\.?|nov\\.?|dec\\.?)/i,\n\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n\n weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),\n weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),\n weekdaysMin : 'zo_ma_di_wo_do_vr_za'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD-MM-YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[vandaag om] LT',\n nextDay: '[morgen om] LT',\n nextWeek: 'dddd [om] LT',\n lastDay: '[gisteren om] LT',\n lastWeek: '[afgelopen] dddd [om] LT',\n sameElse: 'L'\n },\n relativeTime : {\n future : 'over %s',\n past : '%s geleden',\n s : 'een paar seconden',\n ss : '%d seconden',\n m : 'één minuut',\n mm : '%d minuten',\n h : 'één uur',\n hh : '%d uur',\n d : 'één dag',\n dd : '%d dagen',\n M : 'één maand',\n MM : '%d maanden',\n y : 'één jaar',\n yy : '%d jaar'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(ste|de)/,\n ordinal : function (number) {\n return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return nl;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n function processRelativeTime(number, withoutSuffix, key, isFuture) {\n var format = {\n 'm': ['eine Minute', 'einer Minute'],\n 'h': ['eine Stunde', 'einer Stunde'],\n 'd': ['ein Tag', 'einem Tag'],\n 'dd': [number + ' Tage', number + ' Tagen'],\n 'M': ['ein Monat', 'einem Monat'],\n 'MM': [number + ' Monate', number + ' Monaten'],\n 'y': ['ein Jahr', 'einem Jahr'],\n 'yy': [number + ' Jahre', number + ' Jahren']\n };\n return withoutSuffix ? format[key][0] : format[key][1];\n }\n\n var de = moment.defineLocale('de', {\n months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),\n monthsShort : 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),\n monthsParseExact : true,\n weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),\n weekdaysShort : 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),\n weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT: 'HH:mm',\n LTS: 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D. MMMM YYYY',\n LLL : 'D. MMMM YYYY HH:mm',\n LLLL : 'dddd, D. MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay: '[heute um] LT [Uhr]',\n sameElse: 'L',\n nextDay: '[morgen um] LT [Uhr]',\n nextWeek: 'dddd [um] LT [Uhr]',\n lastDay: '[gestern um] LT [Uhr]',\n lastWeek: '[letzten] dddd [um] LT [Uhr]'\n },\n relativeTime : {\n future : 'in %s',\n past : 'vor %s',\n s : 'ein paar Sekunden',\n ss : '%d Sekunden',\n m : processRelativeTime,\n mm : '%d Minuten',\n h : processRelativeTime,\n hh : '%d Stunden',\n d : processRelativeTime,\n dd : processRelativeTime,\n M : processRelativeTime,\n MM : processRelativeTime,\n y : processRelativeTime,\n yy : processRelativeTime\n },\n dayOfMonthOrdinalParse: /\\d{1,2}\\./,\n ordinal : '%d.',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return de;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n var fr = moment.defineLocale('fr', {\n months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),\n monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),\n monthsParseExact : true,\n weekdays : 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),\n weekdaysShort : 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),\n weekdaysMin : 'di_lu_ma_me_je_ve_sa'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D MMMM YYYY',\n LLL : 'D MMMM YYYY HH:mm',\n LLLL : 'dddd D MMMM YYYY HH:mm'\n },\n calendar : {\n sameDay : '[Aujourd’hui à] LT',\n nextDay : '[Demain à] LT',\n nextWeek : 'dddd [à] LT',\n lastDay : '[Hier à] LT',\n lastWeek : 'dddd [dernier à] LT',\n sameElse : 'L'\n },\n relativeTime : {\n future : 'dans %s',\n past : 'il y a %s',\n s : 'quelques secondes',\n ss : '%d secondes',\n m : 'une minute',\n mm : '%d minutes',\n h : 'une heure',\n hh : '%d heures',\n d : 'un jour',\n dd : '%d jours',\n M : 'un mois',\n MM : '%d mois',\n y : 'un an',\n yy : '%d ans'\n },\n dayOfMonthOrdinalParse: /\\d{1,2}(er|)/,\n ordinal : function (number, period) {\n switch (period) {\n // TODO: Return 'e' when day of month > 1. Move this case inside\n // block for masculine words below.\n // See https://github.com/moment/moment/issues/3375\n case 'D':\n return number + (number === 1 ? 'er' : '');\n\n // Words with masculine grammatical gender: mois, trimestre, jour\n default:\n case 'M':\n case 'Q':\n case 'DDD':\n case 'd':\n return number + (number === 1 ? 'er' : 'e');\n\n // Words with feminine grammatical gender: semaine\n case 'w':\n case 'W':\n return number + (number === 1 ? 're' : 'e');\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return fr;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),\n monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');\n\n var monthsParse = [/^ene/i, /^feb/i, /^mar/i, /^abr/i, /^may/i, /^jun/i, /^jul/i, /^ago/i, /^sep/i, /^oct/i, /^nov/i, /^dic/i];\n var monthsRegex = /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i;\n\n var es = moment.defineLocale('es', {\n months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),\n monthsShort : function (m, format) {\n if (!m) {\n return monthsShortDot;\n } else if (/-MMM-/.test(format)) {\n return monthsShort[m.month()];\n } else {\n return monthsShortDot[m.month()];\n }\n },\n monthsRegex : monthsRegex,\n monthsShortRegex : monthsRegex,\n monthsStrictRegex : /^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,\n monthsShortStrictRegex : /^(ene\\.?|feb\\.?|mar\\.?|abr\\.?|may\\.?|jun\\.?|jul\\.?|ago\\.?|sep\\.?|oct\\.?|nov\\.?|dic\\.?)/i,\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),\n weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),\n weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),\n weekdaysParseExact : true,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD/MM/YYYY',\n LL : 'D [de] MMMM [de] YYYY',\n LLL : 'D [de] MMMM [de] YYYY H:mm',\n LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'\n },\n calendar : {\n sameDay : function () {\n return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextDay : function () {\n return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n nextWeek : function () {\n return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastDay : function () {\n return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n lastWeek : function () {\n return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';\n },\n sameElse : 'L'\n },\n relativeTime : {\n future : 'en %s',\n past : 'hace %s',\n s : 'unos segundos',\n ss : '%d segundos',\n m : 'un minuto',\n mm : '%d minutos',\n h : 'una hora',\n hh : '%d horas',\n d : 'un día',\n dd : '%d días',\n M : 'un mes',\n MM : '%d meses',\n y : 'un año',\n yy : '%d años'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}º/,\n ordinal : '%dº',\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return es;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n function plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);\n }\n function relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'ss': withoutSuffix ? 'секунда_секунди_секунд' : 'секунду_секунди_секунд',\n 'mm': withoutSuffix ? 'хвилина_хвилини_хвилин' : 'хвилину_хвилини_хвилин',\n 'hh': withoutSuffix ? 'година_години_годин' : 'годину_години_годин',\n 'dd': 'день_дні_днів',\n 'MM': 'місяць_місяці_місяців',\n 'yy': 'рік_роки_років'\n };\n if (key === 'm') {\n return withoutSuffix ? 'хвилина' : 'хвилину';\n }\n else if (key === 'h') {\n return withoutSuffix ? 'година' : 'годину';\n }\n else {\n return number + ' ' + plural(format[key], +number);\n }\n }\n function weekdaysCaseReplace(m, format) {\n var weekdays = {\n 'nominative': 'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split('_'),\n 'accusative': 'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split('_'),\n 'genitive': 'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split('_')\n };\n\n if (m === true) {\n return weekdays['nominative'].slice(1, 7).concat(weekdays['nominative'].slice(0, 1));\n }\n if (!m) {\n return weekdays['nominative'];\n }\n\n var nounCase = (/(\\[[ВвУу]\\]) ?dddd/).test(format) ?\n 'accusative' :\n ((/\\[?(?:минулої|наступної)? ?\\] ?dddd/).test(format) ?\n 'genitive' :\n 'nominative');\n return weekdays[nounCase][m.day()];\n }\n function processHoursFunction(str) {\n return function () {\n return str + 'о' + (this.hours() === 11 ? 'б' : '') + '] LT';\n };\n }\n\n var uk = moment.defineLocale('uk', {\n months : {\n 'format': 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split('_'),\n 'standalone': 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split('_')\n },\n monthsShort : 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split('_'),\n weekdays : weekdaysCaseReplace,\n weekdaysShort : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY р.',\n LLL : 'D MMMM YYYY р., HH:mm',\n LLLL : 'dddd, D MMMM YYYY р., HH:mm'\n },\n calendar : {\n sameDay: processHoursFunction('[Сьогодні '),\n nextDay: processHoursFunction('[Завтра '),\n lastDay: processHoursFunction('[Вчора '),\n nextWeek: processHoursFunction('[У] dddd ['),\n lastWeek: function () {\n switch (this.day()) {\n case 0:\n case 3:\n case 5:\n case 6:\n return processHoursFunction('[Минулої] dddd [').call(this);\n case 1:\n case 2:\n case 4:\n return processHoursFunction('[Минулого] dddd [').call(this);\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'за %s',\n past : '%s тому',\n s : 'декілька секунд',\n ss : relativeTimeWithPlural,\n m : relativeTimeWithPlural,\n mm : relativeTimeWithPlural,\n h : 'годину',\n hh : relativeTimeWithPlural,\n d : 'день',\n dd : relativeTimeWithPlural,\n M : 'місяць',\n MM : relativeTimeWithPlural,\n y : 'рік',\n yy : relativeTimeWithPlural\n },\n // M. E.: those two are virtually unused but a user might want to implement them for his/her website for some reason\n meridiemParse: /ночі|ранку|дня|вечора/,\n isPM: function (input) {\n return /^(дня|вечора)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночі';\n } else if (hour < 12) {\n return 'ранку';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечора';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(й|го)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n case 'w':\n case 'W':\n return number + '-й';\n case 'D':\n return number + '-го';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 7 // The week that contains Jan 7th is the first week of the year.\n }\n });\n\n return uk;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n function plural(word, num) {\n var forms = word.split('_');\n return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);\n }\n function relativeTimeWithPlural(number, withoutSuffix, key) {\n var format = {\n 'ss': withoutSuffix ? 'секунда_секунды_секунд' : 'секунду_секунды_секунд',\n 'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',\n 'hh': 'час_часа_часов',\n 'dd': 'день_дня_дней',\n 'MM': 'месяц_месяца_месяцев',\n 'yy': 'год_года_лет'\n };\n if (key === 'm') {\n return withoutSuffix ? 'минута' : 'минуту';\n }\n else {\n return number + ' ' + plural(format[key], +number);\n }\n }\n var monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i];\n\n // http://new.gramota.ru/spravka/rules/139-prop : § 103\n // Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637\n // CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753\n var ru = moment.defineLocale('ru', {\n months : {\n format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_'),\n standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_')\n },\n monthsShort : {\n // по CLDR именно \"июл.\" и \"июн.\", но какой смысл менять букву на точку ?\n format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split('_'),\n standalone: 'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split('_')\n },\n weekdays : {\n standalone: 'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split('_'),\n format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split('_'),\n isFormat: /\\[ ?[Вв] ?(?:прошлую|следующую|эту)? ?\\] ?dddd/\n },\n weekdaysShort : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб'.split('_'),\n monthsParse : monthsParse,\n longMonthsParse : monthsParse,\n shortMonthsParse : monthsParse,\n\n // полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки\n monthsRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // копия предыдущего\n monthsShortRegex: /^(январ[ья]|янв\\.?|феврал[ья]|февр?\\.?|марта?|мар\\.?|апрел[ья]|апр\\.?|ма[йя]|июн[ья]|июн\\.?|июл[ья]|июл\\.?|августа?|авг\\.?|сентябр[ья]|сент?\\.?|октябр[ья]|окт\\.?|ноябр[ья]|нояб?\\.?|декабр[ья]|дек\\.?)/i,\n\n // полные названия с падежами\n monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,\n\n // Выражение, которое соотвествует только сокращённым формам\n monthsShortStrictRegex: /^(янв\\.|февр?\\.|мар[т.]|апр\\.|ма[яй]|июн[ья.]|июл[ья.]|авг\\.|сент?\\.|окт\\.|нояб?\\.|дек\\.)/i,\n longDateFormat : {\n LT : 'H:mm',\n LTS : 'H:mm:ss',\n L : 'DD.MM.YYYY',\n LL : 'D MMMM YYYY г.',\n LLL : 'D MMMM YYYY г., H:mm',\n LLLL : 'dddd, D MMMM YYYY г., H:mm'\n },\n calendar : {\n sameDay: '[Сегодня, в] LT',\n nextDay: '[Завтра, в] LT',\n lastDay: '[Вчера, в] LT',\n nextWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В следующее] dddd, [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В следующий] dddd, [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В следующую] dddd, [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd, [в] LT';\n } else {\n return '[В] dddd, [в] LT';\n }\n }\n },\n lastWeek: function (now) {\n if (now.week() !== this.week()) {\n switch (this.day()) {\n case 0:\n return '[В прошлое] dddd, [в] LT';\n case 1:\n case 2:\n case 4:\n return '[В прошлый] dddd, [в] LT';\n case 3:\n case 5:\n case 6:\n return '[В прошлую] dddd, [в] LT';\n }\n } else {\n if (this.day() === 2) {\n return '[Во] dddd, [в] LT';\n } else {\n return '[В] dddd, [в] LT';\n }\n }\n },\n sameElse: 'L'\n },\n relativeTime : {\n future : 'через %s',\n past : '%s назад',\n s : 'несколько секунд',\n ss : relativeTimeWithPlural,\n m : relativeTimeWithPlural,\n mm : relativeTimeWithPlural,\n h : 'час',\n hh : relativeTimeWithPlural,\n d : 'день',\n dd : relativeTimeWithPlural,\n M : 'месяц',\n MM : relativeTimeWithPlural,\n y : 'год',\n yy : relativeTimeWithPlural\n },\n meridiemParse: /ночи|утра|дня|вечера/i,\n isPM : function (input) {\n return /^(дня|вечера)$/.test(input);\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 4) {\n return 'ночи';\n } else if (hour < 12) {\n return 'утра';\n } else if (hour < 17) {\n return 'дня';\n } else {\n return 'вечера';\n }\n },\n dayOfMonthOrdinalParse: /\\d{1,2}-(й|го|я)/,\n ordinal: function (number, period) {\n switch (period) {\n case 'M':\n case 'd':\n case 'DDD':\n return number + '-й';\n case 'D':\n return number + '-го';\n case 'w':\n case 'W':\n return number + '-я';\n default:\n return number;\n }\n },\n week : {\n dow : 1, // Monday is the first day of the week.\n doy : 4 // The week that contains Jan 4th is the first week of the year.\n }\n });\n\n return ru;\n\n})));\n","//! moment.js locale configuration\n\n;(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined'\n && typeof require === 'function' ? factory(require('../moment')) :\n typeof define === 'function' && define.amd ? define(['../moment'], factory) :\n factory(global.moment)\n}(this, (function (moment) { 'use strict';\n\n\n var ja = moment.defineLocale('ja', {\n months : '一月_二月_三月_四月_五月_六月_七月_八月_九月_十月_十一月_十二月'.split('_'),\n monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),\n weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),\n weekdaysShort : '日_月_火_水_木_金_土'.split('_'),\n weekdaysMin : '日_月_火_水_木_金_土'.split('_'),\n longDateFormat : {\n LT : 'HH:mm',\n LTS : 'HH:mm:ss',\n L : 'YYYY/MM/DD',\n LL : 'YYYY年M月D日',\n LLL : 'YYYY年M月D日 HH:mm',\n LLLL : 'YYYY年M月D日 dddd HH:mm',\n l : 'YYYY/MM/DD',\n ll : 'YYYY年M月D日',\n lll : 'YYYY年M月D日 HH:mm',\n llll : 'YYYY年M月D日(ddd) HH:mm'\n },\n meridiemParse: /午前|午後/i,\n isPM : function (input) {\n return input === '午後';\n },\n meridiem : function (hour, minute, isLower) {\n if (hour < 12) {\n return '午前';\n } else {\n return '午後';\n }\n },\n calendar : {\n sameDay : '[今日] LT',\n nextDay : '[明日] LT',\n nextWeek : function (now) {\n if (now.week() < this.week()) {\n return '[来週]dddd LT';\n } else {\n return 'dddd LT';\n }\n },\n lastDay : '[昨日] LT',\n lastWeek : function (now) {\n if (this.week() < now.week()) {\n return '[先週]dddd LT';\n } else {\n return 'dddd LT';\n }\n },\n sameElse : 'L'\n },\n dayOfMonthOrdinalParse : /\\d{1,2}日/,\n ordinal : function (number, period) {\n switch (period) {\n case 'd':\n case 'D':\n case 'DDD':\n return number + '日';\n default:\n return number;\n }\n },\n relativeTime : {\n future : '%s後',\n past : '%s前',\n s : '数秒',\n ss : '%d秒',\n m : '1分',\n mm : '%d分',\n h : '1時間',\n hh : '%d時間',\n d : '1日',\n dd : '%d日',\n M : '1ヶ月',\n MM : '%dヶ月',\n y : '1年',\n yy : '%d年'\n }\n });\n\n return ja;\n\n})));\n","\n// English\nconst en = {\n current: 'current',\n time: 'time',\n deleteSelected: 'Delete selected',\n};\nconst en_EN = en;\nconst en_US = en;\n\n// Italiano\nimport 'moment/locale/it';\nconst it = {\n current: 'attuale',\n time: 'tempo',\n deleteSelected: 'Cancella la selezione',\n};\nconst it_IT = it;\nconst it_CH = it;\n\n// Dutch\nimport 'moment/locale/nl';\nconst nl = {\n current: 'huidige',\n time: 'tijd',\n deleteSelected: 'Selectie verwijderen'\n};\nconst nl_NL = nl;\nconst nl_BE = nl;\n\n// German\nimport 'moment/locale/de';\nconst de = {\n current: 'Aktuelle',\n time: 'Zeit',\n deleteSelected: 'L\\u00f6sche Auswahl',\n};\nconst de_DE = de;\n\n// French\nimport 'moment/locale/fr';\nconst fr = {\n current: 'actuel',\n time: 'heure',\n deleteSelected: 'Effacer la selection',\n};\nconst fr_FR = fr;\nconst fr_CA = fr;\nconst fr_BE = fr;\n\n// Espanol\nimport 'moment/locale/es';\nconst es = {\n current: 'corriente',\n time: 'hora',\n deleteSelected: 'Eliminar selecci\\u00f3n',\n};\nconst es_ES = es;\n\n// Ukrainian\nimport 'moment/locale/uk';\nconst uk = {\n current: 'поточний',\n time: 'час',\n deleteSelected: 'Видалити обране',\n};\nconst uk_UA = uk;\n\n// Russian\nimport 'moment/locale/ru';\nconst ru = {\n current: 'текущее',\n time: 'время',\n deleteSelected: 'Удалить выбранное',\n};\nconst ru_RU = ru;\n\n// Japanese\nimport 'moment/locale/ja';\nconst ja = {\n current: '現在',\n time: '時刻',\n deleteSelected: '選択されたものを削除',\n};\nconst ja_JP = ja;\n\nconst locales = {\n en,\n en_EN,\n en_US,\n it,\n it_IT,\n it_CH,\n nl,\n nl_NL,\n nl_BE,\n de,\n de_DE,\n fr,\n fr_FR,\n fr_CA,\n fr_BE,\n es,\n es_ES,\n uk,\n uk_UA,\n ru,\n ru_RU,\n ja,\n ja_JP,\n}\n\nexport default locales","import Hammer from '../../module/hammer';\nimport util from '../../util';\nimport Component from './Component';\nimport moment from '../../module/moment';\nimport locales from '../locales';\n\nimport './css/customtime.css';\n\n/** A custom time bar */\nclass CustomTime extends Component {\n /**\n * @param {{range: Range, dom: Object}} body\n * @param {Object} [options] Available parameters:\n * {number | string} id\n * {string} locales\n * {string} locale\n * @constructor CustomTime\n * @extends Component\n */\n constructor(body, options) {\n super()\n this.body = body;\n\n // default options\n this.defaultOptions = {\n moment,\n locales,\n locale: 'en',\n id: undefined,\n title: undefined\n };\n this.options = util.extend({}, this.defaultOptions);\n this.setOptions(options);\n this.options.locales = util.extend({}, locales, this.options.locales);\n const defaultLocales = this.defaultOptions.locales[this.defaultOptions.locale];\n Object.keys(this.options.locales).forEach(locale => {\n this.options.locales[locale] = util.extend(\n {},\n defaultLocales,\n this.options.locales[locale]\n );\n });\n\n if (options && options.time) {\n this.customTime = options.time;\n } else {\n this.customTime = new Date();\n }\n\n this.eventParams = {}; // stores state parameters while dragging the bar\n\n // create the DOM\n this._create();\n }\n\n /**\n * Set options for the component. Options will be merged in current options.\n * @param {Object} options Available parameters:\n * {number | string} id\n * {string} locales\n * {string} locale\n */\n setOptions(options) {\n if (options) {\n // copy all options that we know\n util.selectiveExtend(['moment', 'locale', 'locales', 'id', 'title', 'rtl'], this.options, options);\n }\n }\n\n /**\n * Create the DOM for the custom time\n * @private\n */\n _create() {\n const bar = document.createElement('div');\n bar['custom-time'] = this;\n bar.className = `vis-custom-time ${this.options.id || ''}`;\n bar.style.position = 'absolute';\n bar.style.top = '0px';\n bar.style.height = '100%';\n this.bar = bar;\n\n const drag = document.createElement('div');\n drag.style.position = 'relative';\n drag.style.top = '0px';\n if(this.options.rtl) {\n drag.style.right = '-10px';\n } else {\n drag.style.left = '-10px';\n }\n drag.style.height = '100%';\n drag.style.width = '20px';\n\n /**\n *\n * @param {WheelEvent} e\n */\n function onMouseWheel (e) {\n this.body.range._onMouseWheel(e);\n }\n\n if (drag.addEventListener) {\n // IE9, Chrome, Safari, Opera\n drag.addEventListener(\"mousewheel\", onMouseWheel.bind(this), false);\n // Firefox\n drag.addEventListener(\"DOMMouseScroll\", onMouseWheel.bind(this), false);\n } else {\n // IE 6/7/8\n drag.attachEvent(\"onmousewheel\", onMouseWheel.bind(this));\n }\n\n bar.appendChild(drag);\n // attach event listeners\n this.hammer = new Hammer(drag);\n this.hammer.on('panstart', this._onDragStart.bind(this));\n this.hammer.on('panmove', this._onDrag.bind(this));\n this.hammer.on('panend', this._onDragEnd.bind(this));\n this.hammer.get('pan').set({threshold:5, direction: Hammer.DIRECTION_ALL});\n }\n\n /**\n * Destroy the CustomTime bar\n */\n destroy() {\n this.hide();\n\n this.hammer.destroy();\n this.hammer = null;\n\n this.body = null;\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n const parent = this.body.dom.backgroundVertical;\n if (this.bar.parentNode != parent) {\n // attach to the dom\n if (this.bar.parentNode) {\n this.bar.parentNode.removeChild(this.bar);\n }\n parent.appendChild(this.bar);\n }\n\n const x = this.body.util.toScreen(this.customTime);\n\n let locale = this.options.locales[this.options.locale];\n if (!locale) {\n if (!this.warned) {\n console.warn(`WARNING: options.locales['${this.options.locale}'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization`);\n this.warned = true;\n }\n locale = this.options.locales['en']; // fall back on english when not available\n }\n\n let title = this.options.title;\n // To hide the title completely use empty string ''.\n if (title === undefined) {\n title = `${locale.time}: ${this.options.moment(this.customTime).format('dddd, MMMM Do YYYY, H:mm:ss')}`;\n title = title.charAt(0).toUpperCase() + title.substring(1);\n } else if (typeof title === \"function\") {\n title = title.call(this.customTime);\n }\n\n this.options.rtl ? this.bar.style.right = `${x}px` : this.bar.style.left = `${x}px`;\n this.bar.title = title;\n\n return false;\n }\n\n /**\n * Remove the CustomTime from the DOM\n */\n hide() {\n // remove the line from the DOM\n if (this.bar.parentNode) {\n this.bar.parentNode.removeChild(this.bar);\n }\n }\n\n /**\n * Set custom time.\n * @param {Date | number | string} time\n */\n setCustomTime(time) {\n this.customTime = util.convert(time, 'Date');\n this.redraw();\n }\n\n /**\n * Retrieve the current custom time.\n * @return {Date} customTime\n */\n getCustomTime() {\n return new Date(this.customTime.valueOf());\n }\n\n /**\n * Set custom marker.\n * @param {string} [title] Title of the custom marker\n * @param {boolean} [editable] Make the custom marker editable.\n */\n setCustomMarker(title, editable) {\n const marker = document.createElement('div');\n marker.className = `vis-custom-time-marker`;\n marker.innerHTML = title;\n marker.style.position = 'absolute';\n\n if (editable) {\n marker.setAttribute('contenteditable', 'true');\n marker.addEventListener('pointerdown', function () {\n marker.focus();\n });\n marker.addEventListener('input', this._onMarkerChange.bind(this));\n // The editable div element has no change event, so here emulates the change event.\n marker.title = title;\n marker.addEventListener('blur', function (event) {\n if (this.title != event.target.innerHTML) {\n this._onMarkerChanged(event);\n this.title = event.target.innerHTML;\n }\n }.bind(this));\n }\n\n this.bar.appendChild(marker);\n }\n\n /**\n * Set custom title.\n * @param {Date | number | string} title\n */\n setCustomTitle(title) {\n this.options.title = title;\n }\n\n /**\n * Start moving horizontally\n * @param {Event} event\n * @private\n */\n _onDragStart(event) {\n this.eventParams.dragging = true;\n this.eventParams.customTime = this.customTime;\n\n event.stopPropagation();\n }\n\n /**\n * Perform moving operating.\n * @param {Event} event\n * @private\n */\n _onDrag(event) {\n if (!this.eventParams.dragging) return;\n\n let deltaX = this.options.rtl ? (-1) * event.deltaX : event.deltaX;\n\n const x = this.body.util.toScreen(this.eventParams.customTime) + deltaX;\n const time = this.body.util.toTime(x);\n\n this.setCustomTime(time);\n\n // fire a timechange event\n this.body.emitter.emit('timechange', {\n id: this.options.id,\n time: new Date(this.customTime.valueOf()),\n event\n });\n\n event.stopPropagation();\n }\n\n /**\n * Stop moving operating.\n * @param {Event} event\n * @private\n */\n _onDragEnd(event) {\n if (!this.eventParams.dragging) return;\n\n // fire a timechanged event\n this.body.emitter.emit('timechanged', {\n id: this.options.id,\n time: new Date(this.customTime.valueOf()),\n event\n });\n\n event.stopPropagation();\n }\n\n /**\n * Perform input operating.\n * @param {Event} event\n * @private\n */\n _onMarkerChange(event) {\n this.body.emitter.emit('markerchange', {\n id: this.options.id,\n title: event.target.innerHTML,\n event\n });\n \n event.stopPropagation();\n }\n\n /**\n * Perform change operating.\n * @param {Event} event\n * @private\n */\n _onMarkerChanged(event) {\n this.body.emitter.emit('markerchanged', {\n id: this.options.id,\n title: event.target.innerHTML,\n event\n });\n\n event.stopPropagation();\n }\n\n /**\n * Find a custom time from an event target:\n * searches for the attribute 'custom-time' in the event target's element tree\n * @param {Event} event\n * @return {CustomTime | null} customTime\n */\n static customTimeFromTarget(event) {\n let target = event.target;\n while (target) {\n if (target.hasOwnProperty('custom-time')) {\n return target['custom-time'];\n }\n target = target.parentNode;\n }\n\n return null;\n }\n}\n\nexport default CustomTime;\n","import Emitter from 'emitter-component';\nimport Hammer from '../module/hammer';\nimport * as hammerUtil from '../hammerUtil';\nimport util from '../util';\nimport TimeAxis from './component/TimeAxis';\nimport Activator from '../shared/Activator';\nimport * as DateUtil from './DateUtil';\nimport CustomTime from './component/CustomTime';\n\nimport './component/css/animation.css';\nimport './component/css/currenttime.css';\nimport './component/css/panel.css';\nimport './component/css/pathStyles.css';\nimport './component/css/timeline.css';\nimport '../shared/bootstrap.css';\n\n/**\n * Create a timeline visualization\n * @constructor Core\n */\nclass Core {\n /**\n * Create the main DOM for the Core: a root panel containing left, right,\n * top, bottom, content, and background panel.\n * @param {Element} container The container element where the Core will\n * be attached.\n * @protected\n */\n _create(container) {\n this.dom = {};\n\n this.dom.container = container;\n this.dom.container.style.position = 'relative';\n\n this.dom.root = document.createElement('div');\n this.dom.background = document.createElement('div');\n this.dom.backgroundVertical = document.createElement('div');\n this.dom.backgroundHorizontal = document.createElement('div');\n this.dom.centerContainer = document.createElement('div');\n this.dom.leftContainer = document.createElement('div');\n this.dom.rightContainer = document.createElement('div');\n this.dom.center = document.createElement('div');\n this.dom.left = document.createElement('div');\n this.dom.right = document.createElement('div');\n this.dom.top = document.createElement('div');\n this.dom.bottom = document.createElement('div');\n this.dom.shadowTop = document.createElement('div');\n this.dom.shadowBottom = document.createElement('div');\n this.dom.shadowTopLeft = document.createElement('div');\n this.dom.shadowBottomLeft = document.createElement('div');\n this.dom.shadowTopRight = document.createElement('div');\n this.dom.shadowBottomRight = document.createElement('div');\n this.dom.rollingModeBtn = document.createElement('div');\n this.dom.loadingScreen = document.createElement('div');\n\n this.dom.root.className = 'vis-timeline';\n this.dom.background.className = 'vis-panel vis-background';\n this.dom.backgroundVertical.className = 'vis-panel vis-background vis-vertical';\n this.dom.backgroundHorizontal.className = 'vis-panel vis-background vis-horizontal';\n this.dom.centerContainer.className = 'vis-panel vis-center';\n this.dom.leftContainer.className = 'vis-panel vis-left';\n this.dom.rightContainer.className = 'vis-panel vis-right';\n this.dom.top.className = 'vis-panel vis-top';\n this.dom.bottom.className = 'vis-panel vis-bottom';\n this.dom.left.className = 'vis-content';\n this.dom.center.className = 'vis-content';\n this.dom.right.className = 'vis-content';\n this.dom.shadowTop.className = 'vis-shadow vis-top';\n this.dom.shadowBottom.className = 'vis-shadow vis-bottom';\n this.dom.shadowTopLeft.className = 'vis-shadow vis-top';\n this.dom.shadowBottomLeft.className = 'vis-shadow vis-bottom';\n this.dom.shadowTopRight.className = 'vis-shadow vis-top';\n this.dom.shadowBottomRight.className = 'vis-shadow vis-bottom';\n this.dom.rollingModeBtn.className = 'vis-rolling-mode-btn';\n this.dom.loadingScreen.className = 'vis-loading-screen';\n\n this.dom.root.appendChild(this.dom.background);\n this.dom.root.appendChild(this.dom.backgroundVertical);\n this.dom.root.appendChild(this.dom.backgroundHorizontal);\n this.dom.root.appendChild(this.dom.centerContainer);\n this.dom.root.appendChild(this.dom.leftContainer);\n this.dom.root.appendChild(this.dom.rightContainer);\n this.dom.root.appendChild(this.dom.top);\n this.dom.root.appendChild(this.dom.bottom);\n this.dom.root.appendChild(this.dom.rollingModeBtn);\n\n this.dom.centerContainer.appendChild(this.dom.center);\n this.dom.leftContainer.appendChild(this.dom.left);\n this.dom.rightContainer.appendChild(this.dom.right);\n this.dom.centerContainer.appendChild(this.dom.shadowTop);\n this.dom.centerContainer.appendChild(this.dom.shadowBottom);\n this.dom.leftContainer.appendChild(this.dom.shadowTopLeft);\n this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft);\n this.dom.rightContainer.appendChild(this.dom.shadowTopRight);\n this.dom.rightContainer.appendChild(this.dom.shadowBottomRight);\n \n // size properties of each of the panels\n this.props = {\n root: {},\n background: {},\n centerContainer: {},\n leftContainer: {},\n rightContainer: {},\n center: {},\n left: {},\n right: {},\n top: {},\n bottom: {},\n border: {},\n scrollTop: 0,\n scrollTopMin: 0\n };\n\n this.on('rangechange', () => {\n if (this.initialDrawDone === true) {\n this._redraw();\n }\n });\n this.on('rangechanged', () => {\n if (!this.initialRangeChangeDone) {\n this.initialRangeChangeDone = true;\n }\n });\n this.on('touch', this._onTouch.bind(this));\n this.on('panmove', this._onDrag.bind(this));\n\n const me = this;\n this._origRedraw = this._redraw.bind(this);\n this._redraw = util.throttle(this._origRedraw);\n\n this.on('_change', properties => {\n if (me.itemSet && me.itemSet.initialItemSetDrawn && properties && properties.queue == true) {\n me._redraw()\n } else {\n me._origRedraw();\n }\n });\n\n // create event listeners for all interesting events, these events will be\n // emitted via emitter\n this.hammer = new Hammer(this.dom.root);\n const pinchRecognizer = this.hammer.get('pinch').set({enable: true});\n pinchRecognizer && hammerUtil.disablePreventDefaultVertically(pinchRecognizer);\n this.hammer.get('pan').set({threshold:5, direction: Hammer.DIRECTION_ALL});\n this.listeners = {};\n\n const events = [\n 'tap', 'doubletap', 'press',\n 'pinch',\n 'pan', 'panstart', 'panmove', 'panend'\n // TODO: cleanup\n //'touch', 'pinch',\n //'tap', 'doubletap', 'hold',\n //'dragstart', 'drag', 'dragend',\n //'mousewheel', 'DOMMouseScroll' // DOMMouseScroll is needed for Firefox\n ];\n events.forEach(type => {\n const listener = event => {\n if (me.isActive()) {\n me.emit(type, event);\n }\n };\n me.hammer.on(type, listener);\n me.listeners[type] = listener;\n });\n\n // emulate a touch event (emitted before the start of a pan, pinch, tap, or press)\n hammerUtil.onTouch(this.hammer, event => {\n me.emit('touch', event);\n });\n\n // emulate a release event (emitted after a pan, pinch, tap, or press)\n hammerUtil.onRelease(this.hammer, event => {\n me.emit('release', event);\n });\n\n /**\n *\n * @param {WheelEvent} event\n */\n function onMouseWheel(event) {\n\n // Reasonable default wheel deltas\n const LINE_HEIGHT = 40;\n const PAGE_HEIGHT = 800;\n\n if (this.isActive()) {\n this.emit('mousewheel', event);\n }\n\n // deltaX and deltaY normalization from jquery.mousewheel.js\n let deltaX = 0;\n let deltaY = 0;\n\n // Old school scrollwheel delta\n if ( 'detail' in event ) { deltaY = event.detail * -1; }\n if ( 'wheelDelta' in event ) { deltaY = event.wheelDelta; }\n if ( 'wheelDeltaY' in event ) { deltaY = event.wheelDeltaY; }\n if ( 'wheelDeltaX' in event ) { deltaX = event.wheelDeltaX * -1; }\n\n // Firefox < 17 horizontal scrolling related to DOMMouseScroll event\n if ( 'axis' in event && event.axis === event.HORIZONTAL_AXIS ) {\n deltaX = deltaY * -1;\n deltaY = 0;\n }\n\n // New school wheel delta (wheel event)\n if ( 'deltaY' in event ) {\n deltaY = event.deltaY * -1;\n }\n if ( 'deltaX' in event ) {\n deltaX = event.deltaX;\n }\n\n // Normalize deltas\n if (event.deltaMode) {\n if (event.deltaMode === 1) { // delta in LINE units\n deltaX *= LINE_HEIGHT;\n deltaY *= LINE_HEIGHT;\n } else { // delta in PAGE units\n deltaX *= LINE_HEIGHT;\n deltaY *= PAGE_HEIGHT;\n }\n }\n // Prevent scrolling when zooming (no zoom key, or pressing zoom key)\n if (this.options.preferZoom) {\n if (!this.options.zoomKey || event[this.options.zoomKey]) return;\n } else {\n if (this.options.zoomKey && event[this.options.zoomKey]) return\n }\n // Don't preventDefault if you can't scroll\n if (!this.options.verticalScroll && !this.options.horizontalScroll) return;\n\n if (this.options.verticalScroll && Math.abs(deltaY) >= Math.abs(deltaX)) {\n const current = this.props.scrollTop;\n const adjusted = current + deltaY;\n\n if (this.isActive()) {\n const newScrollTop = this._setScrollTop(adjusted);\n\n if (newScrollTop !== current) {\n this._redraw();\n this.emit('scroll', event);\n\n // Prevent default actions caused by mouse wheel\n // (else the page and timeline both scroll)\n event.preventDefault();\n }\n }\n } else if (this.options.horizontalScroll) {\n const delta = Math.abs(deltaX) >= Math.abs(deltaY) ? deltaX : deltaY;\n\n // calculate a single scroll jump relative to the range scale\n const diff = (delta / 120) * (this.range.end - this.range.start) / 20;\n // calculate new start and end\n const newStart = this.range.start + diff;\n const newEnd = this.range.end + diff;\n\n const options = {\n animation: false,\n byUser: true,\n event\n };\n this.range.setRange(newStart, newEnd, options);\n\n event.preventDefault();\n }\n }\n\n // Add modern wheel event listener\n const wheelType = \"onwheel\" in document.createElement(\"div\") ? \"wheel\" : // Modern browsers support \"wheel\"\n document.onmousewheel !== undefined ? \"mousewheel\" : // Webkit and IE support at least \"mousewheel\"\n \n // DOMMouseScroll - Older Firefox versions use \"DOMMouseScroll\"\n // onmousewheel - All the use \"onmousewheel\"\n this.dom.centerContainer.addEventListener ? \"DOMMouseScroll\" : \"onmousewheel\"\n this.dom.top.addEventListener ? \"DOMMouseScroll\" : \"onmousewheel\"\n this.dom.bottom.addEventListener ? \"DOMMouseScroll\" : \"onmousewheel\"\n this.dom.centerContainer.addEventListener(wheelType, onMouseWheel.bind(this), false);\n this.dom.top.addEventListener(wheelType, onMouseWheel.bind(this), false);\n this.dom.bottom.addEventListener(wheelType, onMouseWheel.bind(this), false);\n\n\n /**\n *\n * @param {scroll} event\n */\n function onMouseScrollSide(event) {\n if (!me.options.verticalScroll) return;\n event.preventDefault();\n if (me.isActive()) {\n const adjusted = -event.target.scrollTop;\n me._setScrollTop(adjusted);\n me._redraw();\n me.emit('scrollSide', event);\n }\n }\n\n this.dom.left.parentNode.addEventListener('scroll', onMouseScrollSide.bind(this));\n this.dom.right.parentNode.addEventListener('scroll', onMouseScrollSide.bind(this));\n\n let itemAddedToTimeline = false;\n\n /**\n *\n * @param {dragover} event\n * @returns {boolean}\n */\n function handleDragOver(event) {\n if (event.preventDefault) {\n me.emit('dragover', me.getEventProperties(event));\n event.preventDefault(); // Necessary. Allows us to drop.\n }\n\n // make sure your target is a timeline element\n if (!(event.target.className.indexOf(\"timeline\") > -1)) return;\n\n // make sure only one item is added every time you're over the timeline\n if (itemAddedToTimeline) return;\n\n event.dataTransfer.dropEffect = 'move'; \n itemAddedToTimeline = true;\n return false;\n }\n\n /**\n *\n * @param {drop} event\n * @returns {boolean}\n */\n function handleDrop(event) {\n // prevent redirect to blank page - Firefox\n if(event.preventDefault) { event.preventDefault(); }\n if(event.stopPropagation) { event.stopPropagation(); }\n // return when dropping non-timeline items\n try {\n var itemData = JSON.parse(event.dataTransfer.getData(\"text\"))\n if (!itemData || !itemData.content) return\n } catch (err) {\n return false;\n }\n\n itemAddedToTimeline = false;\n event.center = {\n x: event.clientX,\n y: event.clientY\n };\n\n if (itemData.target !== 'item') {\n me.itemSet._onAddItem(event);\n } else {\n me.itemSet._onDropObjectOnItem(event);\n }\n me.emit('drop', me.getEventProperties(event))\n return false;\n }\n\n this.dom.center.addEventListener('dragover', handleDragOver.bind(this), false);\n this.dom.center.addEventListener('drop', handleDrop.bind(this), false);\n\n this.customTimes = [];\n\n // store state information needed for touch events\n this.touch = {};\n\n this.redrawCount = 0;\n this.initialDrawDone = false;\n this.initialRangeChangeDone = false;\n\n // attach the root panel to the provided container\n if (!container) throw new Error('No container provided');\n container.appendChild(this.dom.root);\n container.appendChild(this.dom.loadingScreen);\n }\n\n /**\n * Set options. Options will be passed to all components loaded in the Timeline.\n * @param {Object} [options]\n * {String} orientation\n * Vertical orientation for the Timeline,\n * can be 'bottom' (default) or 'top'.\n * {string | number} width\n * Width for the timeline, a number in pixels or\n * a css string like '1000px' or '75%'. '100%' by default.\n * {string | number} height\n * Fixed height for the Timeline, a number in pixels or\n * a css string like '400px' or '75%'. If undefined,\n * The Timeline will automatically size such that\n * its contents fit.\n * {string | number} minHeight\n * Minimum height for the Timeline, a number in pixels or\n * a css string like '400px' or '75%'.\n * {string | number} maxHeight\n * Maximum height for the Timeline, a number in pixels or\n * a css string like '400px' or '75%'.\n * {number | Date | string} start\n * Start date for the visible window\n * {number | Date | string} end\n * End date for the visible window\n */\n setOptions(options) {\n if (options) {\n // copy the known options\n const fields = [\n 'width', 'height', 'minHeight', 'maxHeight', 'autoResize',\n 'start', 'end', 'clickToUse', 'dataAttributes', 'hiddenDates',\n 'locale', 'locales', 'moment', 'preferZoom', 'rtl', 'zoomKey', 'horizontalScroll', 'verticalScroll'\n ];\n util.selectiveExtend(fields, this.options, options); \n\n this.dom.rollingModeBtn.style.visibility = 'hidden';\n\n if (this.options.rtl) {\n this.dom.container.style.direction = \"rtl\";\n this.dom.backgroundVertical.className = 'vis-panel vis-background vis-vertical-rtl'; \n }\n\n if (this.options.verticalScroll) {\n if (this.options.rtl) {\n this.dom.rightContainer.className = 'vis-panel vis-right vis-vertical-scroll';\n } else {\n this.dom.leftContainer.className = 'vis-panel vis-left vis-vertical-scroll';\n }\n }\n\n if (typeof this.options.orientation !== 'object') {\n this.options.orientation = {item:undefined,axis:undefined};\n }\n if ('orientation' in options) {\n if (typeof options.orientation === 'string') {\n this.options.orientation = {\n item: options.orientation,\n axis: options.orientation\n };\n }\n else if (typeof options.orientation === 'object') {\n if ('item' in options.orientation) {\n this.options.orientation.item = options.orientation.item;\n }\n if ('axis' in options.orientation) {\n this.options.orientation.axis = options.orientation.axis;\n }\n }\n }\n\n if (this.options.orientation.axis === 'both') {\n if (!this.timeAxis2) {\n const timeAxis2 = this.timeAxis2 = new TimeAxis(this.body);\n timeAxis2.setOptions = options => {\n const _options = options ? util.extend({}, options) : {};\n _options.orientation = 'top'; // override the orientation option, always top\n TimeAxis.prototype.setOptions.call(timeAxis2, _options);\n };\n this.components.push(timeAxis2);\n }\n }\n else {\n if (this.timeAxis2) {\n const index = this.components.indexOf(this.timeAxis2);\n if (index !== -1) {\n this.components.splice(index, 1);\n }\n this.timeAxis2.destroy();\n this.timeAxis2 = null;\n }\n }\n\n // if the graph2d's drawPoints is a function delegate the callback to the onRender property\n if (typeof options.drawPoints == 'function') {\n options.drawPoints = {\n onRender: options.drawPoints\n };\n }\n\n if ('hiddenDates' in this.options) {\n DateUtil.convertHiddenOptions(this.options.moment, this.body, this.options.hiddenDates);\n }\n\n if ('clickToUse' in options) {\n if (options.clickToUse) {\n if (!this.activator) {\n this.activator = new Activator(this.dom.root);\n }\n }\n else {\n if (this.activator) {\n this.activator.destroy();\n delete this.activator;\n }\n }\n }\n\n // enable/disable autoResize\n this._initAutoResize();\n }\n\n // propagate options to all components\n this.components.forEach(component => component.setOptions(options));\n\n // enable/disable configure\n if ('configure' in options) {\n if (!this.configurator) {\n this.configurator = this._createConfigurator();\n }\n\n this.configurator.setOptions(options.configure);\n\n // collect the settings of all components, and pass them to the configuration system\n const appliedOptions = util.deepExtend({}, this.options);\n this.components.forEach(component => {\n util.deepExtend(appliedOptions, component.options);\n });\n this.configurator.setModuleOptions({global: appliedOptions});\n }\n\n this._redraw();\n }\n\n /**\n * Returns true when the Timeline is active.\n * @returns {boolean}\n */\n isActive() {\n return !this.activator || this.activator.active;\n }\n\n /**\n * Destroy the Core, clean up all DOM elements and event listeners.\n */\n destroy() {\n // unbind datasets\n this.setItems(null);\n this.setGroups(null);\n\n // remove all event listeners\n this.off();\n\n // stop checking for changed size\n this._stopAutoResize();\n\n // remove from DOM\n if (this.dom.root.parentNode) {\n this.dom.root.parentNode.removeChild(this.dom.root);\n }\n this.dom = null;\n\n // remove Activator\n if (this.activator) {\n this.activator.destroy();\n delete this.activator;\n }\n\n // cleanup hammer touch events\n for (const event in this.listeners) {\n if (this.listeners.hasOwnProperty(event)) {\n delete this.listeners[event];\n }\n }\n this.listeners = null;\n this.hammer && this.hammer.destroy();\n this.hammer = null;\n\n // give all components the opportunity to cleanup\n this.components.forEach(component => component.destroy());\n\n this.body = null;\n }\n\n /**\n * Set a custom time bar\n * @param {Date} time\n * @param {number} [id=undefined] Optional id of the custom time bar to be adjusted.\n */\n setCustomTime(time, id) {\n const customTimes = this.customTimes.filter(component => id === component.options.id);\n\n if (customTimes.length === 0) {\n throw new Error(`No custom time bar found with id ${JSON.stringify(id)}`)\n }\n\n if (customTimes.length > 0) {\n customTimes[0].setCustomTime(time);\n }\n }\n\n /**\n * Retrieve the current custom time.\n * @param {number} [id=undefined] Id of the custom time bar.\n * @return {Date | undefined} customTime\n */\n getCustomTime(id) {\n const customTimes = this.customTimes.filter(component => component.options.id === id);\n\n if (customTimes.length === 0) {\n throw new Error(`No custom time bar found with id ${JSON.stringify(id)}`)\n }\n return customTimes[0].getCustomTime();\n }\n\n /**\n * Set a custom marker for the custom time bar.\n * @param {string} [title] Title of the custom marker.\n * @param {number} [id=undefined] Id of the custom marker.\n * @param {boolean} [editable=false] Make the custom marker editable.\n */\n setCustomTimeMarker(title, id, editable) {\n const customTimes = this.customTimes.filter(component => component.options.id === id);\n\n if (customTimes.length === 0) {\n throw new Error(`No custom time bar found with id ${JSON.stringify(id)}`)\n }\n if (customTimes.length > 0) {\n customTimes[0].setCustomMarker(title, editable);\n }\n }\n\n /**\n * Set a custom title for the custom time bar.\n * @param {string} [title] Custom title\n * @param {number} [id=undefined] Id of the custom time bar.\n * @returns {*}\n */\n setCustomTimeTitle(title, id) {\n const customTimes = this.customTimes.filter(component => component.options.id === id);\n\n if (customTimes.length === 0) {\n throw new Error(`No custom time bar found with id ${JSON.stringify(id)}`)\n }\n if (customTimes.length > 0) {\n return customTimes[0].setCustomTitle(title);\n }\n }\n\n /**\n * Retrieve meta information from an event.\n * Should be overridden by classes extending Core\n * @param {Event} event\n * @return {Object} An object with related information.\n */\n getEventProperties(event) {\n return { event };\n }\n\n /**\n * Add custom vertical bar\n * @param {Date | string | number} [time] A Date, unix timestamp, or\n * ISO date string. Time point where\n * the new bar should be placed.\n * If not provided, `new Date()` will\n * be used.\n * @param {number | string} [id=undefined] Id of the new bar. Optional\n * @return {number | string} Returns the id of the new bar\n */\n addCustomTime(time, id) {\n const timestamp = time !== undefined\n ? util.convert(time, 'Date').valueOf()\n : new Date();\n\n const exists = this.customTimes.some(customTime => customTime.options.id === id);\n if (exists) {\n throw new Error(`A custom time with id ${JSON.stringify(id)} already exists`);\n }\n\n const customTime = new CustomTime(this.body, util.extend({}, this.options, {\n time : timestamp,\n id\n }));\n\n this.customTimes.push(customTime);\n this.components.push(customTime);\n this._redraw();\n\n return id;\n }\n\n /**\n * Remove previously added custom bar\n * @param {int} id ID of the custom bar to be removed\n * [at]returns {boolean} True if the bar exists and is removed, false otherwise\n */\n removeCustomTime(id) {\n const customTimes = this.customTimes.filter(bar => bar.options.id === id);\n\n if (customTimes.length === 0) {\n throw new Error(`No custom time bar found with id ${JSON.stringify(id)}`)\n }\n\n customTimes.forEach(customTime => {\n this.customTimes.splice(this.customTimes.indexOf(customTime), 1);\n this.components.splice(this.components.indexOf(customTime), 1);\n customTime.destroy();\n })\n }\n\n /**\n * Get the id's of the currently visible items.\n * @returns {Array} The ids of the visible items\n */\n getVisibleItems() {\n return this.itemSet && this.itemSet.getVisibleItems() || [];\n }\n\n /**\n * Get the id's of the currently visible groups.\n * @returns {Array} The ids of the visible groups\n */\n getVisibleGroups() {\n return this.itemSet && this.itemSet.getVisibleGroups() || [];\n }\n\n /**\n * Set Core window such that it fits all items\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback] a callback funtion to be executed at the end of this function\n */\n fit(options, callback) {\n const range = this.getDataRange();\n\n // skip range set if there is no min and max date\n if (range.min === null && range.max === null) {\n return;\n }\n\n // apply a margin of 1% left and right of the data\n const interval = range.max - range.min;\n const min = new Date(range.min.valueOf() - interval * 0.01);\n const max = new Date(range.max.valueOf() + interval * 0.01);\n const animation = (options && options.animation !== undefined) ? options.animation : true;\n this.range.setRange(min, max, { animation }, callback);\n }\n\n /**\n * Calculate the data range of the items start and end dates\n * [at]returns {{min: [Date], max: [Date]}}\n * @protected\n */\n getDataRange() {\n // must be implemented by Timeline and Graph2d\n throw new Error('Cannot invoke abstract method getDataRange');\n }\n\n /**\n * Set the visible window. Both parameters are optional, you can change only\n * start or only end. Syntax:\n *\n * TimeLine.setWindow(start, end)\n * TimeLine.setWindow(start, end, options)\n * TimeLine.setWindow(range)\n *\n * Where start and end can be a Date, number, or string, and range is an\n * object with properties start and end.\n *\n * @param {Date | number | string | Object} [start] Start date of visible window\n * @param {Date | number | string} [end] End date of visible window\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback] a callback funtion to be executed at the end of this function\n */\n setWindow(start, end, options, callback) {\n if (typeof arguments[2] == \"function\") {\n callback = arguments[2];\n options = {};\n }\n let animation;\n let range;\n if (arguments.length == 1) {\n range = arguments[0];\n animation = (range.animation !== undefined) ? range.animation : true;\n this.range.setRange(range.start, range.end, { animation });\n }\n else if (arguments.length == 2 && typeof arguments[1] == \"function\") {\n range = arguments[0];\n callback = arguments[1];\n animation = (range.animation !== undefined) ? range.animation : true;\n this.range.setRange(range.start, range.end, { animation }, callback);\n }\n else {\n animation = (options && options.animation !== undefined) ? options.animation : true;\n this.range.setRange(start, end, { animation }, callback);\n }\n }\n\n /**\n * Move the window such that given time is centered on screen.\n * @param {Date | number | string} time\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback] a callback funtion to be executed at the end of this function\n */\n moveTo(time, options, callback) {\n if (typeof arguments[1] == \"function\") {\n callback = arguments[1];\n options = {};\n }\n const interval = this.range.end - this.range.start;\n const t = util.convert(time, 'Date').valueOf();\n\n const start = t - interval / 2;\n const end = t + interval / 2;\n const animation = (options && options.animation !== undefined) ? options.animation : true;\n\n this.range.setRange(start, end, { animation }, callback);\n }\n\n /**\n * Get the visible window\n * @return {{start: Date, end: Date}} Visible range\n */\n getWindow() {\n const range = this.range.getRange();\n return {\n start: new Date(range.start),\n end: new Date(range.end)\n };\n }\n\n /**\n * Zoom in the window such that given time is centered on screen.\n * @param {number} percentage - must be between [0..1]\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback] a callback funtion to be executed at the end of this function\n */\n zoomIn(percentage, options, callback) {\n if (!percentage || percentage < 0 || percentage > 1) return;\n if (typeof arguments[1] == \"function\") {\n callback = arguments[1];\n options = {};\n }\n const range = this.getWindow();\n const start = range.start.valueOf();\n const end = range.end.valueOf();\n const interval = end - start;\n const newInterval = interval / (1 + percentage);\n const distance = (interval - newInterval) / 2;\n const newStart = start + distance;\n const newEnd = end - distance;\n\n this.setWindow(newStart, newEnd, options, callback);\n }\n\n /**\n * Zoom out the window such that given time is centered on screen.\n * @param {number} percentage - must be between [0..1]\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback] a callback funtion to be executed at the end of this function\n */\n zoomOut(percentage, options, callback) {\n if (!percentage || percentage < 0 || percentage > 1) return\n if (typeof arguments[1] == \"function\") {\n callback = arguments[1];\n options = {};\n }\n const range = this.getWindow();\n const start = range.start.valueOf();\n const end = range.end.valueOf();\n const interval = end - start;\n const newStart = start - interval * percentage / 2;\n const newEnd = end + interval * percentage / 2;\n\n this.setWindow(newStart, newEnd, options, callback);\n }\n\n /**\n * Force a redraw. Can be overridden by implementations of Core\n *\n * Note: this function will be overridden on construction with a trottled version\n */\n redraw() {\n this._redraw();\n }\n\n /**\n * Redraw for internal use. Redraws all components. See also the public\n * method redraw.\n * @protected\n */\n _redraw() {\n this.redrawCount++;\n const dom = this.dom;\n \n if (!dom || !dom.container || dom.root.offsetWidth == 0) return; // when destroyed, or invisible\n \n let resized = false;\n const options = this.options;\n const props = this.props;\n\n DateUtil.updateHiddenDates(this.options.moment, this.body, this.options.hiddenDates);\n\n // update class names\n if (options.orientation == 'top') {\n util.addClassName(dom.root, 'vis-top');\n util.removeClassName(dom.root, 'vis-bottom');\n }\n else {\n util.removeClassName(dom.root, 'vis-top');\n util.addClassName(dom.root, 'vis-bottom');\n }\n\n if (options.rtl) {\n util.addClassName(dom.root, 'vis-rtl');\n util.removeClassName(dom.root, 'vis-ltr');\n } else {\n util.addClassName(dom.root, 'vis-ltr');\n util.removeClassName(dom.root, 'vis-rtl');\n }\n\n // update root width and height options\n dom.root.style.maxHeight = util.option.asSize(options.maxHeight, '');\n dom.root.style.minHeight = util.option.asSize(options.minHeight, '');\n dom.root.style.width = util.option.asSize(options.width, '');\n const rootOffsetWidth = dom.root.offsetWidth;\n\n // calculate border widths\n props.border.left = 1\n props.border.right = 1\n props.border.top = 1\n props.border.bottom = 1\n\n // calculate the heights. If any of the side panels is empty, we set the height to\n // minus the border width, such that the border will be invisible\n props.center.height = dom.center.offsetHeight;\n props.left.height = dom.left.offsetHeight;\n props.right.height = dom.right.offsetHeight;\n props.top.height = dom.top.clientHeight || -props.border.top;\n props.bottom.height = dom.bottom.clientHeight || -props.border.bottom;\n\n // TODO: compensate borders when any of the panels is empty.\n\n // apply auto height\n // TODO: only calculate autoHeight when needed (else we cause an extra reflow/repaint of the DOM)\n const contentHeight = Math.max(props.left.height, props.center.height, props.right.height);\n const autoHeight = props.top.height + contentHeight + props.bottom.height + props.border.top + props.border.bottom;\n dom.root.style.height = util.option.asSize(options.height, `${autoHeight}px`);\n\n // calculate heights of the content panels\n props.root.height = dom.root.offsetHeight;\n props.background.height = props.root.height;\n const containerHeight = props.root.height - props.top.height - props.bottom.height;\n props.centerContainer.height = containerHeight;\n props.leftContainer.height = containerHeight;\n props.rightContainer.height = props.leftContainer.height;\n\n // calculate the widths of the panels\n props.root.width = rootOffsetWidth;\n props.background.width = props.root.width;\n\n if (!this.initialDrawDone) {\n props.scrollbarWidth = util.getScrollBarWidth();\n }\n\n const leftContainerClientWidth = dom.leftContainer.clientWidth;\n const rightContainerClientWidth = dom.rightContainer.clientWidth;\n\n if (options.verticalScroll) {\n if (options.rtl) {\n props.left.width = leftContainerClientWidth || -props.border.left;\n props.right.width = rightContainerClientWidth + props.scrollbarWidth || -props.border.right;\n } else {\n props.left.width = leftContainerClientWidth + props.scrollbarWidth || -props.border.left;\n props.right.width = rightContainerClientWidth || -props.border.right;\n }\n } else {\n props.left.width = leftContainerClientWidth || -props.border.left;\n props.right.width = rightContainerClientWidth || -props.border.right;\n }\n\n this._setDOM();\n\n // update the scrollTop, feasible range for the offset can be changed\n // when the height of the Core or of the contents of the center changed\n let offset = this._updateScrollTop();\n\n // reposition the scrollable contents\n if (options.orientation.item != 'top') {\n offset += Math.max(props.centerContainer.height - props.center.height -\n props.border.top - props.border.bottom, 0);\n }\n dom.center.style.transform = `translateY(${offset}px)`;\n\n // show shadows when vertical scrolling is available\n const visibilityTop = props.scrollTop == 0 ? 'hidden' : '';\n const visibilityBottom = props.scrollTop == props.scrollTopMin ? 'hidden' : '';\n dom.shadowTop.style.visibility = visibilityTop;\n dom.shadowBottom.style.visibility = visibilityBottom;\n dom.shadowTopLeft.style.visibility = visibilityTop;\n dom.shadowBottomLeft.style.visibility = visibilityBottom;\n dom.shadowTopRight.style.visibility = visibilityTop;\n dom.shadowBottomRight.style.visibility = visibilityBottom;\n\n if (options.verticalScroll) {\n dom.rightContainer.className = 'vis-panel vis-right vis-vertical-scroll';\n dom.leftContainer.className = 'vis-panel vis-left vis-vertical-scroll';\n\n dom.shadowTopRight.style.visibility = \"hidden\";\n dom.shadowBottomRight.style.visibility = \"hidden\";\n dom.shadowTopLeft.style.visibility = \"hidden\";\n dom.shadowBottomLeft.style.visibility = \"hidden\";\n\n dom.left.style.top = '0px';\n dom.right.style.top = '0px';\n }\n\n if (!options.verticalScroll || props.center.height < props.centerContainer.height) {\n dom.left.style.top = `${offset}px`;\n dom.right.style.top = `${offset}px`;\n dom.rightContainer.className = dom.rightContainer.className.replace(new RegExp('(?:^|\\\\s)'+ 'vis-vertical-scroll' + '(?:\\\\s|$)'), ' ');\n dom.leftContainer.className = dom.leftContainer.className.replace(new RegExp('(?:^|\\\\s)'+ 'vis-vertical-scroll' + '(?:\\\\s|$)'), ' ');\n props.left.width = leftContainerClientWidth || -props.border.left;\n props.right.width = rightContainerClientWidth || -props.border.right;\n this._setDOM();\n }\n\n // enable/disable vertical panning\n const contentsOverflow = props.center.height > props.centerContainer.height;\n this.hammer.get('pan').set({\n direction: contentsOverflow ? Hammer.DIRECTION_ALL : Hammer.DIRECTION_HORIZONTAL\n });\n\n // redraw all components\n this.components.forEach(component => {\n resized = component.redraw() || resized;\n });\n const MAX_REDRAW = 5;\n if (resized) {\n if (this.redrawCount < MAX_REDRAW) {\n this.body.emitter.emit('_change');\n return;\n }\n else {\n console.log('WARNING: infinite loop in redraw?');\n }\n } else {\n this.redrawCount = 0;\n }\n\n //Emit public 'changed' event for UI updates, see issue #1592\n this.body.emitter.emit(\"changed\");\n }\n\n /**\n * sets the basic DOM components needed for the timeline\\graph2d\n */\n _setDOM() {\n const props = this.props;\n const dom = this.dom;\n\n props.leftContainer.width = props.left.width;\n props.rightContainer.width = props.right.width;\n const centerWidth = props.root.width - props.left.width - props.right.width;\n props.center.width = centerWidth;\n props.centerContainer.width = centerWidth;\n props.top.width = centerWidth;\n props.bottom.width = centerWidth;\n\n // resize the panels\n dom.background.style.height = `${props.background.height}px`;\n dom.backgroundVertical.style.height = `${props.background.height}px`;\n dom.backgroundHorizontal.style.height = `${props.centerContainer.height}px`;\n dom.centerContainer.style.height = `${props.centerContainer.height}px`;\n dom.leftContainer.style.height = `${props.leftContainer.height}px`;\n dom.rightContainer.style.height = `${props.rightContainer.height}px`;\n\n dom.background.style.width = `${props.background.width}px`;\n dom.backgroundVertical.style.width = `${props.centerContainer.width}px`;\n dom.backgroundHorizontal.style.width = `${props.background.width}px`;\n dom.centerContainer.style.width = `${props.center.width}px`;\n dom.top.style.width = `${props.top.width}px`;\n dom.bottom.style.width = `${props.bottom.width}px`;\n\n // reposition the panels\n dom.background.style.left = '0';\n dom.background.style.top = '0';\n dom.backgroundVertical.style.left = `${props.left.width + props.border.left}px`;\n dom.backgroundVertical.style.top = '0';\n dom.backgroundHorizontal.style.left = '0';\n dom.backgroundHorizontal.style.top = `${props.top.height}px`;\n dom.centerContainer.style.left = `${props.left.width}px`;\n dom.centerContainer.style.top = `${props.top.height}px`;\n dom.leftContainer.style.left = '0';\n dom.leftContainer.style.top = `${props.top.height}px`;\n dom.rightContainer.style.left = `${props.left.width + props.center.width}px`;\n dom.rightContainer.style.top = `${props.top.height}px`;\n dom.top.style.left = `${props.left.width}px`;\n dom.top.style.top = '0';\n dom.bottom.style.left = `${props.left.width}px`;\n dom.bottom.style.top = `${props.top.height + props.centerContainer.height}px`;\n dom.center.style.left = '0';\n dom.left.style.left = '0';\n dom.right.style.left = '0';\n }\n\n /**\n * Set a current time. This can be used for example to ensure that a client's\n * time is synchronized with a shared server time.\n * Only applicable when option `showCurrentTime` is true.\n * @param {Date | string | number} time A Date, unix timestamp, or\n * ISO date string.\n */\n setCurrentTime(time) {\n if (!this.currentTime) {\n throw new Error('Option showCurrentTime must be true');\n }\n\n this.currentTime.setCurrentTime(time);\n }\n\n /**\n * Get the current time.\n * Only applicable when option `showCurrentTime` is true.\n * @return {Date} Returns the current time.\n */\n getCurrentTime() {\n if (!this.currentTime) {\n throw new Error('Option showCurrentTime must be true');\n }\n\n return this.currentTime.getCurrentTime();\n }\n\n /**\n * Convert a position on screen (pixels) to a datetime\n * @param {int} x Position on the screen in pixels\n * @return {Date} time The datetime the corresponds with given position x\n * @protected\n * TODO: move this function to Range\n */\n _toTime(x) {\n return DateUtil.toTime(this, x, this.props.center.width);\n }\n\n /**\n * Convert a position on the global screen (pixels) to a datetime\n * @param {int} x Position on the screen in pixels\n * @return {Date} time The datetime the corresponds with given position x\n * @protected\n * TODO: move this function to Range\n */\n _toGlobalTime(x) {\n return DateUtil.toTime(this, x, this.props.root.width);\n //var conversion = this.range.conversion(this.props.root.width);\n //return new Date(x / conversion.scale + conversion.offset);\n }\n\n /**\n * Convert a datetime (Date object) into a position on the screen\n * @param {Date} time A date\n * @return {int} x The position on the screen in pixels which corresponds\n * with the given date.\n * @protected\n * TODO: move this function to Range\n */\n _toScreen(time) {\n return DateUtil.toScreen(this, time, this.props.center.width);\n }\n\n /**\n * Convert a datetime (Date object) into a position on the root\n * This is used to get the pixel density estimate for the screen, not the center panel\n * @param {Date} time A date\n * @return {int} x The position on root in pixels which corresponds\n * with the given date.\n * @protected\n * TODO: move this function to Range\n */\n _toGlobalScreen(time) {\n return DateUtil.toScreen(this, time, this.props.root.width);\n //var conversion = this.range.conversion(this.props.root.width);\n //return (time.valueOf() - conversion.offset) * conversion.scale;\n }\n\n /**\n * Initialize watching when option autoResize is true\n * @private\n */\n _initAutoResize() {\n if (this.options.autoResize == true) {\n this._startAutoResize();\n }\n else {\n this._stopAutoResize();\n }\n }\n\n /**\n * Watch for changes in the size of the container. On resize, the Panel will\n * automatically redraw itself.\n * @private\n */\n _startAutoResize() {\n const me = this;\n\n this._stopAutoResize();\n\n this._onResize = () => {\n if (me.options.autoResize != true) {\n // stop watching when the option autoResize is changed to false\n me._stopAutoResize();\n return;\n }\n\n if (me.dom.root) {\n const rootOffsetHeight = me.dom.root.offsetHeight;\n const rootOffsetWidth = me.dom.root.offsetWidth;\n // check whether the frame is resized\n // Note: we compare offsetWidth here, not clientWidth. For some reason,\n // IE does not restore the clientWidth from 0 to the actual width after\n // changing the timeline's container display style from none to visible\n if ((rootOffsetWidth != me.props.lastWidth) ||\n (rootOffsetHeight != me.props.lastHeight)) {\n me.props.lastWidth = rootOffsetWidth;\n me.props.lastHeight = rootOffsetHeight;\n me.props.scrollbarWidth = util.getScrollBarWidth();\n\n me.body.emitter.emit('_change');\n }\n }\n };\n\n // add event listener to window resize\n util.addEventListener(window, 'resize', this._onResize);\n\n //Prevent initial unnecessary redraw\n if (me.dom.root) {\n me.props.lastWidth = me.dom.root.offsetWidth;\n me.props.lastHeight = me.dom.root.offsetHeight;\n }\n\n this.watchTimer = setInterval(this._onResize, 1000);\n }\n\n /**\n * Stop watching for a resize of the frame.\n * @private\n */\n _stopAutoResize() {\n if (this.watchTimer) {\n clearInterval(this.watchTimer);\n this.watchTimer = undefined;\n }\n\n // remove event listener on window.resize\n if (this._onResize) {\n util.removeEventListener(window, 'resize', this._onResize);\n this._onResize = null;\n }\n }\n\n /**\n * Start moving the timeline vertically\n * @param {Event} event\n * @private\n */\n _onTouch(event) { // eslint-disable-line no-unused-vars\n this.touch.allowDragging = true;\n this.touch.initialScrollTop = this.props.scrollTop;\n }\n\n /**\n * Start moving the timeline vertically\n * @param {Event} event\n * @private\n */\n _onPinch(event) { // eslint-disable-line no-unused-vars\n this.touch.allowDragging = false;\n }\n\n /**\n * Move the timeline vertically\n * @param {Event} event\n * @private\n */\n _onDrag(event) {\n if (!event) return\n // refuse to drag when we where pinching to prevent the timeline make a jump\n // when releasing the fingers in opposite order from the touch screen\n if (!this.touch.allowDragging) return;\n\n const delta = event.deltaY;\n\n const oldScrollTop = this._getScrollTop();\n const newScrollTop = this._setScrollTop(this.touch.initialScrollTop + delta);\n\n if (this.options.verticalScroll) {\n this.dom.left.parentNode.scrollTop = -this.props.scrollTop;\n this.dom.right.parentNode.scrollTop = -this.props.scrollTop;\n }\n\n if (newScrollTop != oldScrollTop) {\n this.emit(\"verticalDrag\");\n }\n }\n\n /**\n * Apply a scrollTop\n * @param {number} scrollTop\n * @returns {number} scrollTop Returns the applied scrollTop\n * @private\n */\n _setScrollTop(scrollTop) {\n this.props.scrollTop = scrollTop;\n this._updateScrollTop();\n return this.props.scrollTop;\n }\n\n /**\n * Update the current scrollTop when the height of the containers has been changed\n * @returns {number} scrollTop Returns the applied scrollTop\n * @private\n */\n _updateScrollTop() {\n // recalculate the scrollTopMin\n const scrollTopMin = Math.min(this.props.centerContainer.height - this.props.center.height, 0); // is negative or zero\n if (scrollTopMin != this.props.scrollTopMin) {\n // in case of bottom orientation, change the scrollTop such that the contents\n // do not move relative to the time axis at the bottom\n if (this.options.orientation.item != 'top') {\n this.props.scrollTop += (scrollTopMin - this.props.scrollTopMin);\n }\n this.props.scrollTopMin = scrollTopMin;\n }\n\n // limit the scrollTop to the feasible scroll range\n if (this.props.scrollTop > 0) this.props.scrollTop = 0;\n if (this.props.scrollTop < scrollTopMin) this.props.scrollTop = scrollTopMin;\n\n if (this.options.verticalScroll) {\n this.dom.left.parentNode.scrollTop = -this.props.scrollTop;\n this.dom.right.parentNode.scrollTop = -this.props.scrollTop;\n }\n\n return this.props.scrollTop;\n }\n\n /**\n * Get the current scrollTop\n * @returns {number} scrollTop\n * @private\n */\n _getScrollTop() {\n return this.props.scrollTop;\n }\n\n /**\n * Load a configurator\n * [at]returns {Object}\n * @private\n */\n _createConfigurator() {\n throw new Error('Cannot invoke abstract method _createConfigurator');\n }\n}\n\n// turn Core into an event emitter\nEmitter(Core.prototype);\n\nexport default Core;\n","import util from '../../util';\nimport Component from './Component';\nimport moment from '../../module/moment';\nimport locales from '../locales';\n\n/**\n * A current time bar\n */\nclass CurrentTime extends Component {\n/**\n * @param {{range: Range, dom: Object, domProps: Object}} body\n * @param {Object} [options] Available parameters:\n * {Boolean} [showCurrentTime]\n * {String} [alignCurrentTime]\n * @constructor CurrentTime\n * @extends Component\n */\n constructor(body, options) {\n super()\n this.body = body;\n\n // default options\n this.defaultOptions = {\n rtl: false,\n showCurrentTime: true,\n alignCurrentTime: undefined,\n\n moment,\n locales,\n locale: 'en'\n };\n this.options = util.extend({}, this.defaultOptions);\n this.setOptions(options);\n this.options.locales = util.extend({}, locales, this.options.locales);\n const defaultLocales = this.defaultOptions.locales[this.defaultOptions.locale];\n Object.keys(this.options.locales).forEach(locale => {\n this.options.locales[locale] = util.extend(\n {},\n defaultLocales,\n this.options.locales[locale]\n );\n });\n this.offset = 0;\n\n this._create();\n\n }\n\n /**\n * Create the HTML DOM for the current time bar\n * @private\n */\n _create() {\n const bar = document.createElement('div');\n bar.className = 'vis-current-time';\n bar.style.position = 'absolute';\n bar.style.top = '0px';\n bar.style.height = '100%';\n\n this.bar = bar;\n }\n\n /**\n * Destroy the CurrentTime bar\n */\n destroy() {\n this.options.showCurrentTime = false;\n this.redraw(); // will remove the bar from the DOM and stop refreshing\n\n this.body = null;\n }\n\n /**\n * Set options for the component. Options will be merged in current options.\n * @param {Object} options Available parameters:\n * {boolean} [showCurrentTime]\n * {String} [alignCurrentTime]\n */\n setOptions(options) {\n if (options) {\n // copy all options that we know\n util.selectiveExtend(['rtl', 'showCurrentTime', 'alignCurrentTime', 'moment', 'locale', 'locales'], this.options, options);\n }\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n if (this.options.showCurrentTime) {\n const parent = this.body.dom.backgroundVertical;\n if (this.bar.parentNode != parent) {\n // attach to the dom\n if (this.bar.parentNode) {\n this.bar.parentNode.removeChild(this.bar);\n }\n parent.appendChild(this.bar);\n\n this.start();\n }\n\n let now = this.options.moment(Date.now() + this.offset);\n\n if (this.options.alignCurrentTime) {\n now = now.startOf(this.options.alignCurrentTime);\n }\n\n const x = this.body.util.toScreen(now);\n\n let locale = this.options.locales[this.options.locale];\n if (!locale) {\n if (!this.warned) {\n console.warn(`WARNING: options.locales['${this.options.locale}'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization`);\n this.warned = true;\n }\n locale = this.options.locales['en']; // fall back on english when not available\n }\n let title = `${locale.current} ${locale.time}: ${now.format('dddd, MMMM Do YYYY, H:mm:ss')}`;\n title = title.charAt(0).toUpperCase() + title.substring(1);\n\n if (this.options.rtl) {\n this.bar.style.transform = `translateX(${x * -1}px)`;\n } else {\n this.bar.style.transform = `translateX(${x}px)`;\n }\n this.bar.title = title;\n }\n else {\n // remove the line from the DOM\n if (this.bar.parentNode) {\n this.bar.parentNode.removeChild(this.bar);\n }\n this.stop();\n }\n\n return false;\n }\n\n /**\n * Start auto refreshing the current time bar\n */\n start() {\n const me = this;\n\n /**\n * Updates the current time.\n */\n function update () {\n me.stop();\n\n // determine interval to refresh\n const scale = me.body.range.conversion(me.body.domProps.center.width).scale;\n let interval = 1 / scale / 10;\n if (interval < 30) interval = 30;\n if (interval > 1000) interval = 1000;\n\n me.redraw();\n me.body.emitter.emit('currentTimeTick');\n\n // start a renderTimer to adjust for the new time\n me.currentTimeTimer = setTimeout(update, interval);\n }\n\n update();\n }\n\n /**\n * Stop auto refreshing the current time bar\n */\n stop() {\n if (this.currentTimeTimer !== undefined) {\n clearTimeout(this.currentTimeTimer);\n delete this.currentTimeTimer;\n }\n }\n\n /**\n * Set a current time. This can be used for example to ensure that a client's\n * time is synchronized with a shared server time.\n * @param {Date | string | number} time A Date, unix timestamp, or\n * ISO date string.\n */\n setCurrentTime(time) {\n const t = util.convert(time, 'Date').valueOf();\n const now = Date.now();\n this.offset = t - now;\n this.redraw();\n }\n\n /**\n * Get the current time.\n * @return {Date} Returns the current time.\n */\n getCurrentTime() {\n return new Date(Date.now() + this.offset);\n }\n}\n\nexport default CurrentTime;\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n while (!(step = iterator.next()).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","'use strict';\nvar $ = require('./export');\nvar global = require('../internals/global');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar fails = require('../internals/fails');\nvar hide = require('../internals/hide');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar defineProperty = require('../internals/object-define-property').f;\nvar forEach = require('../internals/array-iteration').forEach;\nvar DESCRIPTORS = require('../internals/descriptors');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common, IS_MAP, IS_WEAK) {\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var ADDER = IS_MAP ? 'set' : 'add';\n var exported = {};\n var Constructor;\n\n if (!DESCRIPTORS || typeof NativeConstructor != 'function'\n || !(IS_WEAK || NativePrototype.forEach && !fails(function () { new NativeConstructor().entries().next(); }))\n ) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else {\n Constructor = wrapper(function (target, iterable) {\n setInternalState(anInstance(target, Constructor, CONSTRUCTOR_NAME), {\n type: CONSTRUCTOR_NAME,\n collection: new NativeConstructor()\n });\n if (iterable != undefined) iterate(iterable, target[ADDER], target, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n forEach(['add', 'clear', 'delete', 'forEach', 'get', 'has', 'set', 'keys', 'values', 'entries'], function (KEY) {\n var IS_ADDER = KEY == 'add' || KEY == 'set';\n if (KEY in NativePrototype && !(IS_WEAK && KEY == 'clear')) hide(Constructor.prototype, KEY, function (a, b) {\n var collection = getInternalState(this).collection;\n if (!IS_ADDER && IS_WEAK && !isObject(a)) return KEY == 'get' ? undefined : false;\n var result = collection[KEY](a === 0 ? 0 : a, b);\n return IS_ADDER ? this : result;\n });\n });\n\n IS_WEAK || defineProperty(Constructor.prototype, 'size', {\n get: function () {\n return getInternalState(this).collection.size;\n }\n });\n }\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME, false, true);\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: true }, exported);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) {\n if (options && options.unsafe && target[key]) target[key] = src[key];\n else redefine(target, key, src[key], options);\n } return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Set` constructor\n// https://tc39.github.io/ecma262/#sec-set-objects\nmodule.exports = collection('Set', function (get) {\n return function Set() { return get(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","require('../../modules/es.set');\nrequire('../../modules/es.object.to-string');\nrequire('../../modules/es.string.iterator');\nrequire('../../modules/web.dom-collections.iterator');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Set;\n","module.exports = require('../../es/set');\n","module.exports = require(\"core-js-pure/stable/set\");","'use strict';\nvar $ = require('../internals/export');\nvar $map = require('../internals/array-iteration').map;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\n\n// `Array.prototype.map` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.map\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('map') }, {\n map: function map(callbackfn /* , thisArg */) {\n return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.map');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').map;\n","var map = require('../array/virtual/map');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.map;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.map) ? map : own;\n};\n","module.exports = require('../../es/instance/map');\n","module.exports = require(\"core-js-pure/stable/instance/map\");","module.exports = require('../../es/object/create');\n","module.exports = require(\"core-js-pure/stable/object/create\");","'use strict';\nvar $ = require('../internals/export');\nvar $find = require('../internals/array-iteration').find;\nvar addToUnscopables = require('../internals/add-to-unscopables');\n\nvar FIND = 'find';\nvar SKIPS_HOLES = true;\n\n// Shouldn't skip holes\nif (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });\n\n// `Array.prototype.find` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.find\n$({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {\n find: function find(callbackfn /* , that = undefined */) {\n return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables(FIND);\n","require('../../../modules/es.array.find');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').find;\n","var find = require('../array/virtual/find');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.find;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.find) ? find : own;\n};\n","module.exports = require('../../es/instance/find');\n","module.exports = require(\"core-js-pure/stable/instance/find\");","var anObject = require('../internals/an-object');\nvar getIteratorMethod = require('../internals/get-iterator-method');\n\nmodule.exports = function (it) {\n var iteratorMethod = getIteratorMethod(it);\n if (typeof iteratorMethod != 'function') {\n throw TypeError(String(it) + ' is not iterable');\n } return anObject(iteratorMethod.call(it));\n};\n","require('../modules/web.dom-collections.iterator');\nrequire('../modules/es.string.iterator');\n\nmodule.exports = require('../internals/get-iterator');\n","module.exports = require(\"core-js-pure/features/get-iterator\");","module.exports = require('../../es/array/is-array');\n","module.exports = require(\"core-js-pure/features/array/is-array\");","var _Array$isArray = require(\"../core-js/array/is-array\");\n\nfunction _arrayWithoutHoles(arr) {\n if (_Array$isArray(arr)) {\n for (var i = 0, arr2 = new Array(arr.length); i < arr.length; i++) {\n arr2[i] = arr[i];\n }\n\n return arr2;\n }\n}\n\nmodule.exports = _arrayWithoutHoles;","'use strict';\nvar bind = require('../internals/bind-context');\nvar toObject = require('../internals/to-object');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar getIteratorMethod = require('../internals/get-iterator-method');\n\n// `Array.from` method implementation\n// https://tc39.github.io/ecma262/#sec-array.from\nmodule.exports = function from(arrayLike /* , mapfn = undefined, thisArg = undefined */) {\n var O = toObject(arrayLike);\n var C = typeof this == 'function' ? this : Array;\n var argumentsLength = arguments.length;\n var mapfn = argumentsLength > 1 ? arguments[1] : undefined;\n var mapping = mapfn !== undefined;\n var index = 0;\n var iteratorMethod = getIteratorMethod(O);\n var length, result, step, iterator;\n if (mapping) mapfn = bind(mapfn, argumentsLength > 2 ? arguments[2] : undefined, 2);\n // if the target is not iterable or it's an array with the default iterator - use a simple case\n if (iteratorMethod != undefined && !(C == Array && isArrayIteratorMethod(iteratorMethod))) {\n iterator = iteratorMethod.call(O);\n result = new C();\n for (;!(step = iterator.next()).done; index++) {\n createProperty(result, index, mapping\n ? callWithSafeIterationClosing(iterator, mapfn, [step.value, index], true)\n : step.value\n );\n }\n } else {\n length = toLength(O.length);\n result = new C(length);\n for (;length > index; index++) {\n createProperty(result, index, mapping ? mapfn(O[index], index) : O[index]);\n }\n }\n result.length = index;\n return result;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var $ = require('../internals/export');\nvar from = require('../internals/array-from');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\n\nvar INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {\n Array.from(iterable);\n});\n\n// `Array.from` method\n// https://tc39.github.io/ecma262/#sec-array.from\n$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {\n from: from\n});\n","require('../../modules/es.string.iterator');\nrequire('../../modules/es.array.from');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Array.from;\n","module.exports = require('../../es/array/from');\n","module.exports = require(\"core-js-pure/features/array/from\");","var classof = require('../internals/classof');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n var O = Object(it);\n return O[ITERATOR] !== undefined\n || '@@iterator' in O\n // eslint-disable-next-line no-prototype-builtins\n || Iterators.hasOwnProperty(classof(O));\n};\n","require('../modules/web.dom-collections.iterator');\nrequire('../modules/es.string.iterator');\n\nmodule.exports = require('../internals/is-iterable');\n","module.exports = require(\"core-js-pure/features/is-iterable\");","var _Array$from = require(\"../core-js/array/from\");\n\nvar _isIterable = require(\"../core-js/is-iterable\");\n\nfunction _iterableToArray(iter) {\n if (_isIterable(Object(iter)) || Object.prototype.toString.call(iter) === \"[object Arguments]\") return _Array$from(iter);\n}\n\nmodule.exports = _iterableToArray;","function _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance\");\n}\n\nmodule.exports = _nonIterableSpread;","var arrayWithoutHoles = require(\"./arrayWithoutHoles\");\n\nvar iterableToArray = require(\"./iterableToArray\");\n\nvar nonIterableSpread = require(\"./nonIterableSpread\");\n\nfunction _toConsumableArray(arr) {\n return arrayWithoutHoles(arr) || iterableToArray(arr) || nonIterableSpread();\n}\n\nmodule.exports = _toConsumableArray;","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n// should work with symbols and should have deterministic property order (V8 bug)\nmodule.exports = !nativeAssign || fails(function () {\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","require('../../modules/es.object.assign');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.assign;\n","module.exports = require('../../es/object/assign');\n","module.exports = require(\"core-js-pure/stable/object/assign\");","'use strict';\nvar $ = require('../internals/export');\nvar $includes = require('../internals/array-includes').includes;\nvar addToUnscopables = require('../internals/add-to-unscopables');\n\n// `Array.prototype.includes` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.includes\n$({ target: 'Array', proto: true }, {\n includes: function includes(el /* , fromIndex = 0 */) {\n return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('includes');\n","require('../../../modules/es.array.includes');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').includes;\n","var isObject = require('../internals/is-object');\nvar classof = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar MATCH = wellKnownSymbol('match');\n\n// `IsRegExp` abstract operation\n// https://tc39.github.io/ecma262/#sec-isregexp\nmodule.exports = function (it) {\n var isRegExp;\n return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == 'RegExp');\n};\n","var isRegExp = require('../internals/is-regexp');\n\nmodule.exports = function (it) {\n if (isRegExp(it)) {\n throw TypeError(\"The method doesn't accept regular expressions\");\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar MATCH = wellKnownSymbol('match');\n\nmodule.exports = function (METHOD_NAME) {\n var regexp = /./;\n try {\n '/./'[METHOD_NAME](regexp);\n } catch (e) {\n try {\n regexp[MATCH] = false;\n return '/./'[METHOD_NAME](regexp);\n } catch (f) { /* empty */ }\n } return false;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar notARegExp = require('../internals/not-a-regexp');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar correctIsRegExpLogic = require('../internals/correct-is-regexp-logic');\n\n// `String.prototype.includes` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.includes\n$({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {\n includes: function includes(searchString /* , position = 0 */) {\n return !!~String(requireObjectCoercible(this))\n .indexOf(notARegExp(searchString), arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.string.includes');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('String').includes;\n","var arrayIncludes = require('../array/virtual/includes');\nvar stringIncludes = require('../string/virtual/includes');\n\nvar ArrayPrototype = Array.prototype;\nvar StringPrototype = String.prototype;\n\nmodule.exports = function (it) {\n var own = it.includes;\n if (it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.includes)) return arrayIncludes;\n if (typeof it === 'string' || it === StringPrototype || (it instanceof String && own === StringPrototype.includes)) {\n return stringIncludes;\n } return own;\n};\n","module.exports = require('../../es/instance/includes');\n","module.exports = require(\"core-js-pure/stable/instance/includes\");","'use strict';\nvar $ = require('../internals/export');\nvar isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toLength = require('../internals/to-length');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar createProperty = require('../internals/create-property');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\nvar nativeSlice = [].slice;\nvar max = Math.max;\n\n// `Array.prototype.slice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.slice\n// fallback for not array-like ES3 strings and DOM objects\n$({ target: 'Array', proto: true, forced: !arrayMethodHasSpeciesSupport('slice') }, {\n slice: function slice(start, end) {\n var O = toIndexedObject(this);\n var length = toLength(O.length);\n var k = toAbsoluteIndex(start, length);\n var fin = toAbsoluteIndex(end === undefined ? length : end, length);\n // inline `ArraySpeciesCreate` for usage native `Array#slice` where it's possible\n var Constructor, result, n;\n if (isArray(O)) {\n Constructor = O.constructor;\n // cross-realm fallback\n if (typeof Constructor == 'function' && (Constructor === Array || isArray(Constructor.prototype))) {\n Constructor = undefined;\n } else if (isObject(Constructor)) {\n Constructor = Constructor[SPECIES];\n if (Constructor === null) Constructor = undefined;\n }\n if (Constructor === Array || Constructor === undefined) {\n return nativeSlice.call(O, k, fin);\n }\n }\n result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));\n for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);\n result.length = n;\n return result;\n }\n});\n","require('../../../modules/es.array.slice');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').slice;\n","var slice = require('../array/virtual/slice');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.slice;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.slice) ? slice : own;\n};\n","module.exports = require('../../es/instance/slice');\n","module.exports = require(\"core-js-pure/stable/instance/slice\");","// Utility functions for ordering and stacking of items\nconst EPSILON = 0.001; // used when checking collisions, to prevent round-off errors\n\n/**\n * Order items by their start data\n * @param {Item[]} items\n */\nexport function orderByStart(items) {\n items.sort((a, b) => a.data.start - b.data.start);\n}\n\n/**\n * Order items by their end date. If they have no end date, their start date\n * is used.\n * @param {Item[]} items\n */\nexport function orderByEnd(items) {\n items.sort((a, b) => {\n const aTime = ('end' in a.data) ? a.data.end : a.data.start;\n const bTime = ('end' in b.data) ? b.data.end : b.data.start;\n\n return aTime - bTime;\n });\n}\n\n/**\n * Adjust vertical positions of the items such that they don't overlap each\n * other.\n * @param {Item[]} items\n * All visible items\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * Margins between items and between items and the axis.\n * @param {boolean} [force=false]\n * If true, all items will be repositioned. If false (default), only\n * items having a top===null will be re-stacked\n * @param {function} shouldBailItemsRedrawFunction\n * bailing function\n * @return {boolean} shouldBail\n */\nexport function stack(items, margin, force, shouldBailItemsRedrawFunction) {\n if (force) {\n // reset top position of all items\n for (var i = 0; i < items.length; i++) {\n items[i].top = null;\n }\n }\n\n // calculate new, non-overlapping positions\n for (var i = 0; i < items.length; i++) { // eslint-disable-line no-redeclare\n const item = items[i];\n if (item.stack && item.top === null) {\n // initialize top position\n item.top = margin.axis;\n var shouldBail = false;\n\n do {\n // TODO: optimize checking for overlap. when there is a gap without items,\n // you only need to check for items from the next item on, not from zero\n var collidingItem = null;\n for (let j = 0, jj = items.length; j < jj; j++) {\n const other = items[j];\n shouldBail = shouldBailItemsRedrawFunction() || false;\n\n if (shouldBail) { return true; }\n\n if (other.top !== null && other !== item && other.stack && collision(item, other, margin.item, other.options.rtl)) {\n collidingItem = other;\n break;\n }\n }\n\n if (collidingItem != null) {\n // There is a collision. Reposition the items above the colliding element\n item.top = collidingItem.top + collidingItem.height + margin.item.vertical;\n }\n } while (collidingItem);\n }\n }\n return shouldBail;\n}\n\n/**\n * Adjust vertical positions of the items within a single subgroup such that they \n * don't overlap each other.\n * @param {Item[]} items\n * All items withina subgroup\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * Margins between items and between items and the axis.\n * @param {subgroup} subgroup\n * The subgroup that is being stacked \n */\nexport function substack(items, margin, subgroup) {\n for (var i = 0; i < items.length; i++) {\n items[i].top = null;\n }\n\n // Set the initial height\n let subgroupHeight = subgroup.height;\n\n // calculate new, non-overlapping positions\n for (i = 0; i < items.length; i++) {\n const item = items[i];\n\n if (item.stack && item.top === null) {\n // initialize top position\n item.top = item.baseTop;//margin.axis + item.baseTop;\n\n do {\n // TODO: optimize checking for overlap. when there is a gap without items,\n // you only need to check for items from the next item on, not from zero\n var collidingItem = null;\n for (let j = 0, jj = items.length; j < jj; j++) {\n const other = items[j];\n if (other.top !== null && other !== item /*&& other.stack*/ && collision(item, other, margin.item, other.options.rtl)) {\n collidingItem = other;\n break;\n }\n }\n\n if (collidingItem != null) {\n // There is a collision. Reposition the items above the colliding element\n item.top = collidingItem.top + collidingItem.height + margin.item.vertical;// + item.baseTop;\n }\n\n if (item.top + item.height > subgroupHeight) {\n subgroupHeight = item.top + item.height;\n }\n } while (collidingItem);\n }\n }\n\n // Set the new height\n subgroup.height = subgroupHeight - subgroup.top + 0.5 * margin.item.vertical;\n}\n\n/**\n * Adjust vertical positions of the items without stacking them\n * @param {Item[]} items\n * All visible items\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * Margins between items and between items and the axis.\n * @param {subgroups[]} subgroups\n * All subgroups\n * @param {boolean} isStackSubgroups\n */\nexport function nostack(items, margin, subgroups, isStackSubgroups) {\n for (let i = 0; i < items.length; i++) {\n if (items[i].data.subgroup == undefined) {\n items[i].top = margin.item.vertical;\n } else if (items[i].data.subgroup !== undefined && isStackSubgroups) {\n let newTop = 0;\n for (const subgroup in subgroups) {\n if (subgroups.hasOwnProperty(subgroup)) {\n if (subgroups[subgroup].visible == true && subgroups[subgroup].index < subgroups[items[i].data.subgroup].index) {\n newTop += subgroups[subgroup].height;\n subgroups[items[i].data.subgroup].top = newTop;\n }\n }\n }\n items[i].top = newTop + 0.5 * margin.item.vertical;\n }\n }\n if (!isStackSubgroups) {\n stackSubgroups(items, margin, subgroups)\n }\n}\n\n/**\n * Adjust vertical positions of the subgroups such that they don't overlap each\n * other.\n * @param {Array.} items\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin Margins between items and between items and the axis.\n * @param {subgroups[]} subgroups\n * All subgroups\n */\nexport function stackSubgroups(items, margin, subgroups) {\n for (const subgroup in subgroups) {\n if (subgroups.hasOwnProperty(subgroup)) {\n\n\n subgroups[subgroup].top = 0;\n do {\n // TODO: optimize checking for overlap. when there is a gap without items,\n // you only need to check for items from the next item on, not from zero\n var collidingItem = null;\n for (const otherSubgroup in subgroups) {\n if (subgroups[otherSubgroup].top !== null && otherSubgroup !== subgroup && subgroups[subgroup].index > subgroups[otherSubgroup].index && collisionByTimes(subgroups[subgroup], subgroups[otherSubgroup])) {\n collidingItem = subgroups[otherSubgroup];\n break;\n }\n }\n\n if (collidingItem != null) {\n // There is a collision. Reposition the subgroups above the colliding element\n subgroups[subgroup].top = collidingItem.top + collidingItem.height;\n }\n } while (collidingItem);\n }\n }\n for (let i = 0; i < items.length; i++) {\n if (items[i].data.subgroup !== undefined) {\n items[i].top = subgroups[items[i].data.subgroup].top + 0.5 * margin.item.vertical;\n }\n }\n}\n\n/**\n * Adjust vertical positions of the subgroups such that they don't overlap each\n * other, then stacks the contents of each subgroup individually.\n * @param {Item[]} subgroupItems\n * All the items in a subgroup\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * Margins between items and between items and the axis.\n * @param {subgroups[]} subgroups\n * All subgroups \n */\nexport function stackSubgroupsWithInnerStack(subgroupItems, margin, subgroups) {\n let doSubStack = false;\n \n // Run subgroups in their order (if any)\n const subgroupOrder = [];\n\n for(var subgroup in subgroups) {\n if (subgroups[subgroup].hasOwnProperty(\"index\")) {\n subgroupOrder[subgroups[subgroup].index] = subgroup;\n }\n else {\n subgroupOrder.push(subgroup);\n }\n }\n\n for(let j = 0; j < subgroupOrder.length; j++) {\n subgroup = subgroupOrder[j];\n if (subgroups.hasOwnProperty(subgroup)) {\n\n doSubStack = doSubStack || subgroups[subgroup].stack;\n subgroups[subgroup].top = 0; \n\n for (const otherSubgroup in subgroups) {\n if (subgroups[otherSubgroup].visible && subgroups[subgroup].index > subgroups[otherSubgroup].index) {\n subgroups[subgroup].top += subgroups[otherSubgroup].height;\n }\n }\n\n const items = subgroupItems[subgroup];\n for(let i = 0; i < items.length; i++) {\n if (items[i].data.subgroup !== undefined) {\n items[i].top = subgroups[items[i].data.subgroup].top + 0.5 * margin.item.vertical;\n\n if (subgroups[subgroup].stack) {\n items[i].baseTop = items[i].top; \n }\n } \n }\n\n if (doSubStack && subgroups[subgroup].stack) {\n substack(subgroupItems[subgroup], margin, subgroups[subgroup]); \n }\n }\n } \n}\n\n/**\n * Test if the two provided items collide\n * The items must have parameters left, width, top, and height.\n * @param {Item} a The first item\n * @param {Item} b The second item\n * @param {{horizontal: number, vertical: number}} margin\n * An object containing a horizontal and vertical\n * minimum required margin.\n * @param {boolean} rtl\n * @return {boolean} true if a and b collide, else false\n */\nexport function collision(a, b, margin, rtl) {\n if (rtl) {\n return ((a.right - margin.horizontal + EPSILON) < (b.right + b.width) &&\n (a.right + a.width + margin.horizontal - EPSILON) > b.right &&\n (a.top - margin.vertical + EPSILON) < (b.top + b.height) &&\n (a.top + a.height + margin.vertical - EPSILON) > b.top);\n } else {\n return ((a.left - margin.horizontal + EPSILON) < (b.left + b.width) &&\n (a.left + a.width + margin.horizontal - EPSILON) > b.left &&\n (a.top - margin.vertical + EPSILON) < (b.top + b.height) &&\n (a.top + a.height + margin.vertical - EPSILON) > b.top);\n }\n}\n\n/**\n * Test if the two provided objects collide\n * The objects must have parameters start, end, top, and height.\n * @param {Object} a The first Object\n * @param {Object} b The second Object\n * @return {boolean} true if a and b collide, else false\n */\nexport function collisionByTimes(a, b) {\n return (a.start <= b.start && a.end >= b.start && a.top < (b.top + b.height) && (a.top + a.height) > b.top ) ||\n (b.start <= a.start && b.end >= a.start && b.top < (a.top + a.height) && (b.top + b.height) > a.top );\n}","import util from '../../util';\nimport * as stack from '../Stack';\n\nconst UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items\nconst BACKGROUND = '__background__'; // reserved group id for background items without group\n\nexport const ReservedGroupIds = {\n UNGROUPED,\n BACKGROUND\n}\n\n\n/**\n * @constructor Group\n */\nclass Group {\n /**\n * @param {number | string} groupId\n * @param {Object} data\n * @param {ItemSet} itemSet\n * @constructor Group\n */\n constructor(groupId, data, itemSet) {\n this.groupId = groupId;\n this.subgroups = {};\n this.subgroupStack = {};\n this.subgroupStackAll = false;\n this.subgroupVisibility = {};\n this.doInnerStack = false;\n this.shouldBailStackItems = false;\n this.subgroupIndex = 0;\n this.subgroupOrderer = data && data.subgroupOrder;\n this.itemSet = itemSet;\n this.isVisible = null;\n this.stackDirty = true; // if true, items will be restacked on next redraw\n\n if (data && data.nestedGroups) {\n this.nestedGroups = data.nestedGroups;\n if (data.showNested == false) {\n this.showNested = false;\n } else {\n this.showNested = true;\n }\n }\n\n if (data && data.subgroupStack) {\n if (typeof data.subgroupStack === \"boolean\") {\n this.doInnerStack = data.subgroupStack;\n this.subgroupStackAll = data.subgroupStack;\n }\n else {\n // We might be doing stacking on specific sub groups, but only\n // if at least one is set to do stacking\n for(const key in data.subgroupStack) {\n this.subgroupStack[key] = data.subgroupStack[key];\n this.doInnerStack = this.doInnerStack || data.subgroupStack[key];\n }\n }\n }\n\n if (data && data.heightMode) {\n this.heightMode = data.heightMode;\n } else {\n this.heightMode = itemSet.options.groupHeightMode;\n }\n\n this.nestedInGroup = null;\n\n this.dom = {};\n this.props = {\n label: {\n width: 0,\n height: 0\n }\n };\n this.className = null;\n\n this.items = {}; // items filtered by groupId of this group\n this.visibleItems = []; // items currently visible in window\n this.itemsInRange = []; // items currently in range\n this.orderedItems = {\n byStart: [],\n byEnd: []\n };\n this.checkRangedItems = false; // needed to refresh the ranged items if the window is programatically changed with NO overlap.\n const me = this;\n this.itemSet.body.emitter.on(\"checkRangedItems\", () => {\n me.checkRangedItems = true;\n })\n\n this._create();\n\n this.setData(data);\n }\n\n /**\n * Create DOM elements for the group\n * @private\n */\n _create() {\n const label = document.createElement('div');\n if (this.itemSet.options.groupEditable.order) {\n label.className = 'vis-label draggable';\n } else {\n label.className = 'vis-label';\n }\n this.dom.label = label;\n\n const inner = document.createElement('div');\n inner.className = 'vis-inner';\n label.appendChild(inner);\n this.dom.inner = inner;\n\n const foreground = document.createElement('div');\n foreground.className = 'vis-group';\n foreground['vis-group'] = this;\n this.dom.foreground = foreground;\n\n this.dom.background = document.createElement('div');\n this.dom.background.className = 'vis-group';\n\n this.dom.axis = document.createElement('div');\n this.dom.axis.className = 'vis-group';\n\n // create a hidden marker to detect when the Timelines container is attached\n // to the DOM, or the style of a parent of the Timeline is changed from\n // display:none is changed to visible.\n this.dom.marker = document.createElement('div');\n this.dom.marker.style.visibility = 'hidden';\n this.dom.marker.style.position = 'absolute';\n this.dom.marker.innerHTML = '';\n this.dom.background.appendChild(this.dom.marker);\n }\n\n /**\n * Set the group data for this group\n * @param {Object} data Group data, can contain properties content and className\n */\n setData(data) {\n if (this.itemSet.groupTouchParams.isDragging) return;\n\n // update contents\n let content;\n let templateFunction;\n\n if (data && data.subgroupVisibility) {\n for (const key in data.subgroupVisibility) {\n this.subgroupVisibility[key] = data.subgroupVisibility[key];\n }\n }\n\n if (this.itemSet.options && this.itemSet.options.groupTemplate) {\n templateFunction = this.itemSet.options.groupTemplate.bind(this);\n content = templateFunction(data, this.dom.inner);\n } else {\n content = data && data.content;\n }\n\n if (content instanceof Element) {\n while (this.dom.inner.firstChild) {\n this.dom.inner.removeChild(this.dom.inner.firstChild);\n }\n this.dom.inner.appendChild(content);\n } else if (content instanceof Object && content.isReactComponent) {\n // Do nothing. Component was rendered into the node be ReactDOM.render.\n // That branch is necessary for evasion of a second call templateFunction.\n // Supports only React < 16(due to the asynchronous nature of React 16).\n } else if (content instanceof Object) {\n templateFunction(data, this.dom.inner);\n } else if (content !== undefined && content !== null) {\n this.dom.inner.innerHTML = content;\n } else {\n this.dom.inner.innerHTML = this.groupId || ''; // groupId can be null\n }\n\n // update title\n this.dom.label.title = data && data.title || '';\n if (!this.dom.inner.firstChild) {\n util.addClassName(this.dom.inner, 'vis-hidden');\n }\n else {\n util.removeClassName(this.dom.inner, 'vis-hidden');\n }\n\n if (data && data.nestedGroups) {\n if (!this.nestedGroups || this.nestedGroups != data.nestedGroups) {\n this.nestedGroups = data.nestedGroups;\n }\n\n if (data.showNested !== undefined || this.showNested === undefined) {\n if (data.showNested == false) {\n this.showNested = false;\n } else {\n this.showNested = true;\n }\n }\n\n util.addClassName(this.dom.label, 'vis-nesting-group');\n if (this.showNested) {\n util.removeClassName(this.dom.label, 'collapsed');\n util.addClassName(this.dom.label, 'expanded');\n } else {\n util.removeClassName(this.dom.label, 'expanded');\n util.addClassName(this.dom.label, 'collapsed');\n }\n } else if (this.nestedGroups) {\n this.nestedGroups = null;\n util.removeClassName(this.dom.label, 'collapsed');\n util.removeClassName(this.dom.label, 'expanded');\n util.removeClassName(this.dom.label, 'vis-nesting-group');\n }\n\n if (data && (data.treeLevel|| data.nestedInGroup)) {\n util.addClassName(this.dom.label, 'vis-nested-group');\n if (data.treeLevel) {\n util.addClassName(this.dom.label, 'vis-group-level-' + data.treeLevel);\n } else {\n // Nesting level is unknown, but we're sure it's at least 1\n util.addClassName(this.dom.label, 'vis-group-level-unknown-but-gte1');\n }\n } else {\n util.addClassName(this.dom.label, 'vis-group-level-0');\n }\n \n // update className\n const className = data && data.className || null;\n if (className != this.className) {\n if (this.className) {\n util.removeClassName(this.dom.label, this.className);\n util.removeClassName(this.dom.foreground, this.className);\n util.removeClassName(this.dom.background, this.className);\n util.removeClassName(this.dom.axis, this.className);\n }\n util.addClassName(this.dom.label, className);\n util.addClassName(this.dom.foreground, className);\n util.addClassName(this.dom.background, className);\n util.addClassName(this.dom.axis, className);\n this.className = className;\n }\n\n // update style\n if (this.style) {\n util.removeCssText(this.dom.label, this.style);\n this.style = null;\n }\n if (data && data.style) {\n util.addCssText(this.dom.label, data.style);\n this.style = data.style;\n }\n }\n\n /**\n * Get the width of the group label\n * @return {number} width\n */\n getLabelWidth() {\n return this.props.label.width;\n }\n\n /**\n * check if group has had an initial height hange\n * @returns {boolean} \n */\n _didMarkerHeightChange() {\n const markerHeight = this.dom.marker.clientHeight;\n if (markerHeight != this.lastMarkerHeight) {\n this.lastMarkerHeight = markerHeight;\n const redrawQueue = {};\n let redrawQueueLength = 0;\n\n util.forEach(this.items, (item, key) => {\n item.dirty = true;\n if (item.displayed) {\n const returnQueue = true;\n redrawQueue[key] = item.redraw(returnQueue);\n redrawQueueLength = redrawQueue[key].length;\n }\n })\n\n const needRedraw = redrawQueueLength > 0;\n if (needRedraw) {\n // redraw all regular items\n for (let i = 0; i < redrawQueueLength; i++) {\n util.forEach(redrawQueue, fns => {\n fns[i]();\n });\n }\n }\n return true;\n } else {\n return false;\n }\n }\n\n /**\n * calculate group dimentions and position\n * @param {number} pixels\n */\n _calculateGroupSizeAndPosition() {\n const { offsetTop, offsetLeft, offsetWidth } = this.dom.foreground;\n this.top = offsetTop;\n this.right = offsetLeft;\n this.width = offsetWidth;\n }\n\n /**\n * checks if should bail redraw of items\n * @returns {boolean} should bail \n */\n _shouldBailItemsRedraw() {\n const me = this;\n const timeoutOptions = this.itemSet.options.onTimeout;\n const bailOptions = {\n relativeBailingTime: this.itemSet.itemsSettingTime,\n bailTimeMs: timeoutOptions && timeoutOptions.timeoutMs,\n userBailFunction: timeoutOptions && timeoutOptions.callback,\n shouldBailStackItems: this.shouldBailStackItems\n };\n let bail = null;\n if (!this.itemSet.initialDrawDone) {\n if (bailOptions.shouldBailStackItems) { return true; }\n if (Math.abs(Date.now() - new Date(bailOptions.relativeBailingTime)) > bailOptions.bailTimeMs) {\n if (bailOptions.userBailFunction && this.itemSet.userContinueNotBail == null) {\n bailOptions.userBailFunction(didUserContinue => {\n me.itemSet.userContinueNotBail = didUserContinue;\n bail = !didUserContinue;\n })\n } else if (me.itemSet.userContinueNotBail == false) {\n bail = true;\n } else {\n bail = false;\n }\n }\n }\n\n return bail;\n }\n\n /**\n * redraws items\n * @param {boolean} forceRestack\n * @param {boolean} lastIsVisible\n * @param {number} margin\n * @param {object} range\n * @private\n */\n _redrawItems(forceRestack, lastIsVisible, margin, range) {\n const restack = forceRestack || this.stackDirty || this.isVisible && !lastIsVisible;\n\n // if restacking, reposition visible items vertically\n if (restack) {\n const orderedItems = {\n byEnd: this.orderedItems.byEnd.filter(item => !item.isCluster),\n byStart: this.orderedItems.byStart.filter(item => !item.isCluster)\n }\n\n const orderedClusters = {\n byEnd: [...new Set(this.orderedItems.byEnd.map(item => item.cluster).filter(item => !!item))],\n byStart: [...new Set(this.orderedItems.byStart.map(item => item.cluster).filter(item => !!item))],\n }\n\n /**\n * Get all visible items in range\n * @return {array} items\n */\n const getVisibleItems = () => {\n const visibleItems = this._updateItemsInRange(orderedItems, this.visibleItems.filter(item => !item.isCluster), range);\n const visibleClusters = this._updateClustersInRange(orderedClusters, this.visibleItems.filter(item => item.isCluster), range);\n return [...visibleItems, ...visibleClusters];\n }\n\n /**\n * Get visible items grouped by subgroup\n * @param {function} orderFn An optional function to order items inside the subgroups\n * @return {Object}\n */\n const getVisibleItemsGroupedBySubgroup = orderFn => {\n let visibleSubgroupsItems = {};\n for (const subgroup in this.subgroups) {\n const items = this.visibleItems.filter(item => item.data.subgroup === subgroup);\n visibleSubgroupsItems[subgroup] = orderFn ? items.sort((a, b) => orderFn(a.data, b.data)) : items;\n }\n return visibleSubgroupsItems;\n };\n\n if (typeof this.itemSet.options.order === 'function') {\n // a custom order function\n //show all items\n const me = this;\n if (this.doInnerStack && this.itemSet.options.stackSubgroups) {\n // Order the items within each subgroup\n const visibleSubgroupsItems = getVisibleItemsGroupedBySubgroup(this.itemSet.options.order);\n stack.stackSubgroupsWithInnerStack(visibleSubgroupsItems, margin, this.subgroups);\n this.visibleItems = getVisibleItems();\n this._updateSubGroupHeights(margin);\n }\n else {\n this.visibleItems = getVisibleItems();\n this._updateSubGroupHeights(margin);\n // order all items and force a restacking\n // order all items outside clusters and force a restacking\n const customOrderedItems = this.visibleItems\n .slice()\n .filter(item => item.isCluster || (!item.isCluster && !item.cluster))\n .sort((a, b) => {\n return me.itemSet.options.order(a.data, b.data);\n });\n this.shouldBailStackItems = stack.stack(customOrderedItems, margin, true, this._shouldBailItemsRedraw.bind(this));\n }\n } else {\n // no custom order function, lazy stacking\n this.visibleItems = getVisibleItems();\n this._updateSubGroupHeights(margin);\n\n if (this.itemSet.options.stack) {\n if (this.doInnerStack && this.itemSet.options.stackSubgroups) {\n const visibleSubgroupsItems = getVisibleItemsGroupedBySubgroup();\n stack.stackSubgroupsWithInnerStack(visibleSubgroupsItems, margin, this.subgroups);\n }\n else {\n // TODO: ugly way to access options...\n this.shouldBailStackItems = stack.stack(this.visibleItems, margin, true, this._shouldBailItemsRedraw.bind(this));\n }\n } else {\n // no stacking\n stack.nostack(this.visibleItems, margin, this.subgroups, this.itemSet.options.stackSubgroups);\n }\n }\n\n for (let i = 0; i < this.visibleItems.length; i++) {\n this.visibleItems[i].repositionX();\n if (this.subgroupVisibility[this.visibleItems[i].data.subgroup] !== undefined) {\n if (!this.subgroupVisibility[this.visibleItems[i].data.subgroup]) {\n this.visibleItems[i].hide();\n }\n }\n }\n\n if (this.itemSet.options.cluster) {\n util.forEach(this.items, item => {\n if (item.cluster && item.displayed) {\n item.hide();\n }\n });\n }\n\n if (this.shouldBailStackItems) {\n this.itemSet.body.emitter.emit('destroyTimeline')\n }\n this.stackDirty = false;\n }\n }\n\n /**\n * check if group resized\n * @param {boolean} resized\n * @param {number} height\n * @return {boolean} did resize\n */\n _didResize(resized, height) {\n resized = util.updateProperty(this, 'height', height) || resized;\n // recalculate size of label\n const labelWidth = this.dom.inner.clientWidth;\n const labelHeight = this.dom.inner.clientHeight;\n resized = util.updateProperty(this.props.label, 'width', labelWidth) || resized;\n resized = util.updateProperty(this.props.label, 'height', labelHeight) || resized;\n return resized;\n }\n\n /**\n * apply group height\n * @param {number} height\n */\n _applyGroupHeight(height) {\n this.dom.background.style.height = `${height}px`;\n this.dom.foreground.style.height = `${height}px`;\n this.dom.label.style.height = `${height}px`;\n }\n\n /**\n * update vertical position of items after they are re-stacked and the height of the group is calculated\n * @param {number} margin\n */\n _updateItemsVerticalPosition(margin) {\n for (let i = 0, ii = this.visibleItems.length; i < ii; i++) {\n const item = this.visibleItems[i];\n item.repositionY(margin);\n if (!this.isVisible && this.groupId != ReservedGroupIds.BACKGROUND) {\n if (item.displayed) item.hide();\n }\n }\n }\n\n /**\n * Repaint this group\n * @param {{start: number, end: number}} range\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * @param {boolean} [forceRestack=false] Force restacking of all items\n * @param {boolean} [returnQueue=false] return the queue or if the group resized\n * @return {boolean} Returns true if the group is resized or the redraw queue if returnQueue=true\n */\n redraw(range, margin, forceRestack, returnQueue) {\n let resized = false;\n const lastIsVisible = this.isVisible;\n let height;\n\n const queue = [\n () => {\n forceRestack = this._didMarkerHeightChange.call(this) || forceRestack;\n },\n \n // recalculate the height of the subgroups\n this._updateSubGroupHeights.bind(this, margin),\n\n // calculate actual size and position\n this._calculateGroupSizeAndPosition.bind(this),\n\n () => {\n this.isVisible = this._isGroupVisible.bind(this)(range, margin);\n },\n \n () => {\n this._redrawItems.bind(this)(forceRestack, lastIsVisible, margin, range)\n },\n\n // update subgroups\n this._updateSubgroupsSizes.bind(this),\n\n () => {\n height = this._calculateHeight.bind(this)(margin);\n },\n\n // calculate actual size and position again\n this._calculateGroupSizeAndPosition.bind(this),\n\n () => {\n resized = this._didResize.bind(this)(resized, height)\n },\n\n () => {\n this._applyGroupHeight.bind(this)(height)\n },\n\n () => {\n this._updateItemsVerticalPosition.bind(this)(margin)\n },\n\n (() => {\n if (!this.isVisible && this.height) {\n resized = false;\n }\n return resized\n }).bind(this)\n ];\n\n if (returnQueue) {\n return queue;\n } else {\n let result;\n queue.forEach(fn => {\n result = fn();\n });\n return result;\n }\n }\n\n /**\n * recalculate the height of the subgroups\n *\n * @param {{item: timeline.Item}} margin\n * @private\n */\n _updateSubGroupHeights(margin) {\n if (Object.keys(this.subgroups).length > 0) {\n const me = this;\n\n this._resetSubgroups();\n\n util.forEach(this.visibleItems, item => {\n if (item.data.subgroup !== undefined) {\n me.subgroups[item.data.subgroup].height = Math.max(me.subgroups[item.data.subgroup].height, item.height + margin.item.vertical);\n me.subgroups[item.data.subgroup].visible = typeof this.subgroupVisibility[item.data.subgroup] === 'undefined' ? true : Boolean(this.subgroupVisibility[item.data.subgroup]);\n }\n });\n }\n }\n\n /**\n * check if group is visible\n *\n * @param {timeline.Range} range\n * @param {{axis: timeline.DataAxis}} margin\n * @returns {boolean} is visible\n * @private\n */\n _isGroupVisible(range, margin) {\n return (this.top <= range.body.domProps.centerContainer.height - range.body.domProps.scrollTop + margin.axis)\n && (this.top + this.height + margin.axis >= - range.body.domProps.scrollTop);\n }\n\n /**\n * recalculate the height of the group\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * @returns {number} Returns the height\n * @private\n */\n _calculateHeight(margin) {\n // recalculate the height of the group\n let height;\n\n let items;\n\n if (this.heightMode === 'fixed') {\n items = util.toArray(this.items);\n } else {\n // default or 'auto'\n items = this.visibleItems;\n }\n\n if (items.length > 0) {\n let min = items[0].top;\n let max = items[0].top + items[0].height;\n util.forEach(items, item => {\n min = Math.min(min, item.top);\n max = Math.max(max, (item.top + item.height));\n });\n if (min > margin.axis) {\n // there is an empty gap between the lowest item and the axis\n const offset = min - margin.axis;\n max -= offset;\n util.forEach(items, item => {\n item.top -= offset;\n });\n }\n height = Math.ceil(max + margin.item.vertical / 2);\n if (this.heightMode !== \"fitItems\") {\n height = Math.max(height, this.props.label.height);\n }\n }\n else {\n height = 0 || this.props.label.height;\n }\n return height;\n }\n\n /**\n * Show this group: attach to the DOM\n */\n show() {\n if (!this.dom.label.parentNode) {\n this.itemSet.dom.labelSet.appendChild(this.dom.label);\n }\n\n if (!this.dom.foreground.parentNode) {\n this.itemSet.dom.foreground.appendChild(this.dom.foreground);\n }\n\n if (!this.dom.background.parentNode) {\n this.itemSet.dom.background.appendChild(this.dom.background);\n }\n\n if (!this.dom.axis.parentNode) {\n this.itemSet.dom.axis.appendChild(this.dom.axis);\n }\n }\n\n /**\n * Hide this group: remove from the DOM\n */\n hide() {\n const label = this.dom.label;\n if (label.parentNode) {\n label.parentNode.removeChild(label);\n }\n\n const foreground = this.dom.foreground;\n if (foreground.parentNode) {\n foreground.parentNode.removeChild(foreground);\n }\n\n const background = this.dom.background;\n if (background.parentNode) {\n background.parentNode.removeChild(background);\n }\n\n const axis = this.dom.axis;\n if (axis.parentNode) {\n axis.parentNode.removeChild(axis);\n }\n }\n\n /**\n * Add an item to the group\n * @param {Item} item\n */\n add(item) {\n this.items[item.id] = item;\n item.setParent(this);\n this.stackDirty = true;\n // add to\n if (item.data.subgroup !== undefined) {\n this._addToSubgroup(item);\n this.orderSubgroups();\n }\n\n if (!this.visibleItems.includes(item)) {\n const range = this.itemSet.body.range; // TODO: not nice accessing the range like this\n this._checkIfVisible(item, this.visibleItems, range);\n }\n }\n\n /**\n * add item to subgroup\n * @param {object} item\n * @param {string} subgroupId\n */\n _addToSubgroup(item, subgroupId=item.data.subgroup) {\n if (subgroupId != undefined && this.subgroups[subgroupId] === undefined) {\n this.subgroups[subgroupId] = {\n height: 0,\n top: 0,\n start: item.data.start,\n end: item.data.end || item.data.start,\n visible: false,\n index: this.subgroupIndex,\n items: [],\n stack: this.subgroupStackAll || this.subgroupStack[subgroupId] || false\n };\n this.subgroupIndex++;\n }\n\n\n if (new Date(item.data.start) < new Date(this.subgroups[subgroupId].start)) {\n this.subgroups[subgroupId].start = item.data.start;\n }\n\n const itemEnd = item.data.end || item.data.start;\n if (new Date(itemEnd) > new Date(this.subgroups[subgroupId].end)) {\n this.subgroups[subgroupId].end = itemEnd;\n }\n\n this.subgroups[subgroupId].items.push(item);\n }\n\n /**\n * update subgroup sizes\n */\n _updateSubgroupsSizes() {\n const me = this;\n if (me.subgroups) {\n for (const subgroup in me.subgroups) {\n const initialEnd = me.subgroups[subgroup].items[0].data.end || me.subgroups[subgroup].items[0].data.start;\n let newStart = me.subgroups[subgroup].items[0].data.start;\n let newEnd = initialEnd - 1;\n\n me.subgroups[subgroup].items.forEach(item => {\n if (new Date(item.data.start) < new Date(newStart)) {\n newStart = item.data.start;\n }\n\n const itemEnd = item.data.end || item.data.start;\n if (new Date(itemEnd) > new Date(newEnd)) {\n newEnd = itemEnd;\n }\n })\n\n me.subgroups[subgroup].start = newStart;\n me.subgroups[subgroup].end = new Date(newEnd - 1) // -1 to compensate for colliding end to start subgroups;\n\n }\n }\n }\n\n /**\n * order subgroups\n */\n orderSubgroups() {\n if (this.subgroupOrderer !== undefined) {\n const sortArray = [];\n if (typeof this.subgroupOrderer == 'string') {\n for (const subgroup in this.subgroups) {\n sortArray.push({subgroup, sortField: this.subgroups[subgroup].items[0].data[this.subgroupOrderer]})\n }\n sortArray.sort((a, b) => a.sortField - b.sortField)\n }\n else if (typeof this.subgroupOrderer == 'function') {\n for (const subgroup in this.subgroups) {\n sortArray.push(this.subgroups[subgroup].items[0].data);\n }\n sortArray.sort(this.subgroupOrderer);\n }\n\n if (sortArray.length > 0) {\n for (let i = 0; i < sortArray.length; i++) {\n this.subgroups[sortArray[i].subgroup].index = i;\n }\n }\n }\n }\n\n /**\n * add item to subgroup\n */\n _resetSubgroups() {\n for (const subgroup in this.subgroups) {\n if (this.subgroups.hasOwnProperty(subgroup)) {\n this.subgroups[subgroup].visible = false;\n this.subgroups[subgroup].height = 0;\n }\n }\n }\n\n /**\n * Remove an item from the group\n * @param {Item} item\n */\n remove(item) {\n delete this.items[item.id];\n item.setParent(null);\n this.stackDirty = true;\n\n // remove from visible items\n const index = this.visibleItems.indexOf(item);\n if (index != -1) this.visibleItems.splice(index, 1);\n\n if(item.data.subgroup !== undefined){\n this._removeFromSubgroup(item);\n this.orderSubgroups();\n }\n }\n\n /**\n * remove item from subgroup\n * @param {object} item\n * @param {string} subgroupId\n */\n _removeFromSubgroup(item, subgroupId=item.data.subgroup) {\n if (subgroupId != undefined) {\n const subgroup = this.subgroups[subgroupId];\n if (subgroup){\n const itemIndex = subgroup.items.indexOf(item);\n // Check the item is actually in this subgroup. How should items not in the group be handled?\n if (itemIndex >= 0) {\n subgroup.items.splice(itemIndex,1);\n if (!subgroup.items.length){\n delete this.subgroups[subgroupId];\n } else {\n this._updateSubgroupsSizes();\n }\n }\n }\n }\n }\n\n /**\n * Remove an item from the corresponding DataSet\n * @param {Item} item\n */\n removeFromDataSet(item) {\n this.itemSet.removeItem(item.id);\n }\n\n /**\n * Reorder the items\n */\n order() {\n const array = util.toArray(this.items);\n const startArray = [];\n const endArray = [];\n\n for (let i = 0; i < array.length; i++) {\n if (array[i].data.end !== undefined) {\n endArray.push(array[i]);\n }\n startArray.push(array[i]);\n }\n this.orderedItems = {\n byStart: startArray,\n byEnd: endArray\n };\n\n stack.orderByStart(this.orderedItems.byStart);\n stack.orderByEnd(this.orderedItems.byEnd);\n }\n\n /**\n * Update the visible items\n * @param {{byStart: Item[], byEnd: Item[]}} orderedItems All items ordered by start date and by end date\n * @param {Item[]} oldVisibleItems The previously visible items.\n * @param {{start: number, end: number}} range Visible range\n * @return {Item[]} visibleItems The new visible items.\n * @private\n */\n _updateItemsInRange(orderedItems, oldVisibleItems, range) {\n const visibleItems = [];\n const visibleItemsLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems\n\n if (!this.isVisible && this.groupId != ReservedGroupIds.BACKGROUND) {\n for (let i = 0; i < oldVisibleItems.length; i++) {\n var item = oldVisibleItems[i];\n if (item.displayed) item.hide();\n }\n return visibleItems;\n } \n\n const interval = (range.end - range.start) / 4;\n const lowerBound = range.start - interval;\n const upperBound = range.end + interval;\n\n // this function is used to do the binary search for items having start date only.\n const startSearchFunction = value => {\n if (value < lowerBound) {return -1;}\n else if (value <= upperBound) {return 0;}\n else {return 1;}\n };\n\n // this function is used to do the binary search for items having start and end dates (range).\n const endSearchFunction = value => {\n if (value < lowerBound) {return -1;}\n else {return 0;}\n }\n\n // first check if the items that were in view previously are still in view.\n // IMPORTANT: this handles the case for the items with startdate before the window and enddate after the window!\n // also cleans up invisible items.\n if (oldVisibleItems.length > 0) {\n for (let i = 0; i < oldVisibleItems.length; i++) {\n this._checkIfVisibleWithReference(oldVisibleItems[i], visibleItems, visibleItemsLookup, range);\n }\n }\n\n // we do a binary search for the items that have only start values.\n const initialPosByStart = util.binarySearchCustom(orderedItems.byStart, startSearchFunction, 'data','start');\n\n // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the start values.\n this._traceVisible(initialPosByStart, orderedItems.byStart, visibleItems, visibleItemsLookup, item => item.data.start < lowerBound || item.data.start > upperBound);\n\n // if the window has changed programmatically without overlapping the old window, the ranged items with start < lowerBound and end > upperbound are not shown.\n // We therefore have to brute force check all items in the byEnd list\n if (this.checkRangedItems == true) {\n this.checkRangedItems = false;\n for (let i = 0; i < orderedItems.byEnd.length; i++) {\n this._checkIfVisibleWithReference(orderedItems.byEnd[i], visibleItems, visibleItemsLookup, range);\n }\n }\n else {\n // we do a binary search for the items that have defined end times.\n const initialPosByEnd = util.binarySearchCustom(orderedItems.byEnd, endSearchFunction, 'data','end');\n\n // trace the visible items from the inital start pos both ways until an invisible item is found, we only look at the end values.\n this._traceVisible(initialPosByEnd, orderedItems.byEnd, visibleItems, visibleItemsLookup, item => item.data.end < lowerBound || item.data.start > upperBound);\n }\n\n const redrawQueue = {};\n let redrawQueueLength = 0;\n\n for (let i = 0; i < visibleItems.length; i++) {\n const item = visibleItems[i];\n if (!item.displayed) {\n const returnQueue = true;\n redrawQueue[i] = item.redraw(returnQueue);\n redrawQueueLength = redrawQueue[i].length;\n }\n }\n\n const needRedraw = redrawQueueLength > 0;\n if (needRedraw) {\n // redraw all regular items\n for (let j = 0; j < redrawQueueLength; j++) {\n util.forEach(redrawQueue, fns => {\n fns[j]();\n });\n }\n }\n\n for (let i = 0; i < visibleItems.length; i++) {\n visibleItems[i].repositionX();\n }\n\n return visibleItems;\n }\n\n /**\n * trace visible items in group\n * @param {number} initialPos\n * @param {array} items\n * @param {aray} visibleItems\n * @param {object} visibleItemsLookup\n * @param {function} breakCondition\n */\n _traceVisible(initialPos, items, visibleItems, visibleItemsLookup, breakCondition) {\n if (initialPos != -1) {\n for (let i = initialPos; i >= 0; i--) {\n let item = items[i];\n if (breakCondition(item)) {\n break;\n }\n else {\n if (!(item.isCluster && !item.hasItems()) && !item.cluster) {\n if (visibleItemsLookup[item.id] === undefined) {\n visibleItemsLookup[item.id] = true;\n visibleItems.push(item);\n }\n }\n }\n }\n\n for (let i = initialPos + 1; i < items.length; i++) {\n let item = items[i];\n if (breakCondition(item)) {\n break;\n }\n else {\n if (!(item.isCluster && !item.hasItems()) && !item.cluster) {\n if (visibleItemsLookup[item.id] === undefined) {\n visibleItemsLookup[item.id] = true;\n visibleItems.push(item);\n }\n }\n }\n }\n }\n }\n\n /**\n * this function is very similar to the _checkIfInvisible() but it does not\n * return booleans, hides the item if it should not be seen and always adds to\n * the visibleItems.\n * this one is for brute forcing and hiding.\n *\n * @param {Item} item\n * @param {Array} visibleItems\n * @param {{start:number, end:number}} range\n * @private\n */\n _checkIfVisible(item, visibleItems, range) {\n if (item.isVisible(range)) {\n if (!item.displayed) item.show();\n // reposition item horizontally\n item.repositionX();\n visibleItems.push(item);\n }\n else {\n if (item.displayed) item.hide();\n }\n }\n\n /**\n * this function is very similar to the _checkIfInvisible() but it does not\n * return booleans, hides the item if it should not be seen and always adds to\n * the visibleItems.\n * this one is for brute forcing and hiding.\n *\n * @param {Item} item\n * @param {Array.} visibleItems\n * @param {Object} visibleItemsLookup\n * @param {{start:number, end:number}} range\n * @private\n */\n _checkIfVisibleWithReference(item, visibleItems, visibleItemsLookup, range) {\n if (item.isVisible(range)) {\n if (visibleItemsLookup[item.id] === undefined) {\n visibleItemsLookup[item.id] = true;\n visibleItems.push(item);\n }\n }\n else {\n if (item.displayed) item.hide();\n }\n }\n\n /**\n * Update the visible items\n * @param {array} orderedClusters \n * @param {array} oldVisibleClusters \n * @param {{start: number, end: number}} range \n * @return {Item[]} visibleItems \n * @private\n */\n _updateClustersInRange(orderedClusters, oldVisibleClusters, range) {\n // Clusters can overlap each other so we cannot use binary search here\n const visibleClusters = [];\n const visibleClustersLookup = {}; // we keep this to quickly look up if an item already exists in the list without using indexOf on visibleItems\n \n if (oldVisibleClusters.length > 0) {\n for (let i = 0; i < oldVisibleClusters.length; i++) {\n this._checkIfVisibleWithReference(oldVisibleClusters[i], visibleClusters, visibleClustersLookup, range);\n }\n }\n \n for (let i = 0; i < orderedClusters.byStart.length; i++) {\n this._checkIfVisibleWithReference(orderedClusters.byStart[i], visibleClusters, visibleClustersLookup, range);\n }\n \n for (let i = 0; i < orderedClusters.byEnd.length; i++) {\n this._checkIfVisibleWithReference(orderedClusters.byEnd[i], visibleClusters, visibleClustersLookup, range);\n }\n \n const redrawQueue = {};\n let redrawQueueLength = 0;\n \n for (let i = 0; i < visibleClusters.length; i++) {\n const item = visibleClusters[i];\n if (!item.displayed) {\n const returnQueue = true;\n redrawQueue[i] = item.redraw(returnQueue);\n redrawQueueLength = redrawQueue[i].length;\n }\n }\n \n const needRedraw = redrawQueueLength > 0;\n if (needRedraw) {\n // redraw all regular items\n for (var j = 0; j < redrawQueueLength; j++) {\n util.forEach(redrawQueue, function (fns) {\n fns[j]();\n });\n }\n }\n \n for (let i = 0; i < visibleClusters.length; i++) {\n visibleClusters[i].repositionX();\n }\n \n return visibleClusters;\n }\n\n /**\n * change item subgroup\n * @param {object} item\n * @param {string} oldSubgroup\n * @param {string} newSubgroup\n */\n changeSubgroup(item, oldSubgroup, newSubgroup) {\n this._removeFromSubgroup(item, oldSubgroup);\n this._addToSubgroup(item, newSubgroup);\n this.orderSubgroups();\n }\n}\n\nexport default Group;\n","import Group from './Group'\n\n/**\n * @constructor BackgroundGroup\n * @extends Group\n */\nclass BackgroundGroup extends Group {\n /**\n * @param {number | string} groupId\n * @param {Object} data\n * @param {ItemSet} itemSet\n */\n constructor(groupId, data, itemSet) {\n super(groupId, data, itemSet)\n // Group.call(this, groupId, data, itemSet);\n\n this.width = 0;\n this.height = 0;\n this.top = 0;\n this.left = 0;\n }\n\n /**\n * Repaint this group\n * @param {{start: number, end: number}} range\n * @param {{item: {horizontal: number, vertical: number}, axis: number}} margin\n * @param {boolean} [forceRestack=false] Force restacking of all items\n * @return {boolean} Returns true if the group is resized\n */\n redraw(range, margin, forceRestack) { // eslint-disable-line no-unused-vars\n const resized = false;\n\n this.visibleItems = this._updateItemsInRange(this.orderedItems, this.visibleItems, range);\n\n // calculate actual size\n this.width = this.dom.background.offsetWidth;\n\n // apply new height (just always zero for BackgroundGroup\n this.dom.background.style.height = '0';\n\n // update vertical position of items after they are re-stacked and the height of the group is calculated\n for (let i = 0, ii = this.visibleItems.length; i < ii; i++) {\n const item = this.visibleItems[i];\n item.repositionY(margin);\n }\n\n return resized;\n }\n\n /**\n * Show this group: attach to the DOM\n */\n show() {\n if (!this.dom.background.parentNode) {\n this.itemSet.dom.background.appendChild(this.dom.background);\n }\n }\n}\n\nexport default BackgroundGroup;","import Hammer from '../../../module/hammer';\nimport util from '../../../util';\nimport moment from '../../../module/moment';\nimport locales from '../../locales';\n\nimport '../css/item.css';\n\n/**\n * Item\n */\nclass Item {\n /**\n * @constructor Item\n * @param {Object} data Object containing (optional) parameters type,\n * start, end, content, group, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} options Configuration options\n * // TODO: describe available options\n */\n constructor(data, conversion, options) {\n this.id = null;\n this.parent = null;\n this.data = data;\n this.dom = null;\n this.conversion = conversion || {};\n this.defaultOptions = {\n locales,\n locale: 'en'\n };\n this.options = util.extend({}, this.defaultOptions, options);\n this.options.locales = util.extend({}, locales, this.options.locales);\n const defaultLocales = this.defaultOptions.locales[this.defaultOptions.locale];\n Object.keys(this.options.locales).forEach(locale => {\n this.options.locales[locale] = util.extend(\n {},\n defaultLocales,\n this.options.locales[locale]\n );\n });\n this.selected = false;\n this.displayed = false;\n this.groupShowing = true;\n this.selectable = (options && options.selectable) || false;\n this.dirty = true;\n\n this.top = null;\n this.right = null;\n this.left = null;\n this.width = null;\n this.height = null;\n\n this.setSelectability(data);\n\n this.editable = null;\n this._updateEditStatus();\n }\n\n /**\n * Select current item\n */\n select() {\n if (this.selectable) {\n this.selected = true;\n this.dirty = true;\n if (this.displayed) this.redraw();\n }\n }\n\n /**\n * Unselect current item\n */\n unselect() {\n this.selected = false;\n this.dirty = true;\n if (this.displayed) this.redraw();\n }\n\n /**\n * Set data for the item. Existing data will be updated. The id should not\n * be changed. When the item is displayed, it will be redrawn immediately.\n * @param {Object} data\n */\n setData(data) {\n const groupChanged = data.group != undefined && this.data.group != data.group;\n if (groupChanged && this.parent != null) {\n this.parent.itemSet._moveToGroup(this, data.group);\n }\n\n this.setSelectability(data);\n\n if (this.parent) {\n this.parent.stackDirty = true;\n }\n \n const subGroupChanged = data.subgroup != undefined && this.data.subgroup != data.subgroup;\n if (subGroupChanged && this.parent != null) {\n this.parent.changeSubgroup(this, this.data.subgroup, data.subgroup);\n }\n\n this.data = data;\n this._updateEditStatus();\n this.dirty = true;\n if (this.displayed) this.redraw();\n }\n\n /**\n * Set whether the item can be selected.\n * Can only be set/unset if the timeline's `selectable` configuration option is `true`.\n * @param {Object} data `data` from `constructor` and `setData`\n */\n setSelectability(data) {\n if (data) {\n this.selectable = typeof data.selectable === 'undefined' ? true : Boolean(data.selectable);\n }\n }\n\n /**\n * Set a parent for the item\n * @param {Group} parent\n */\n setParent(parent) {\n if (this.displayed) {\n this.hide();\n this.parent = parent;\n if (this.parent) {\n this.show();\n }\n }\n else {\n this.parent = parent;\n }\n }\n\n /**\n * Check whether this item is visible inside given range\n * @param {timeline.Range} range with a timestamp for start and end\n * @returns {boolean} True if visible\n */\n isVisible(range) { // eslint-disable-line no-unused-vars\n return false;\n }\n\n /**\n * Show the Item in the DOM (when not already visible)\n * @return {Boolean} changed\n */\n show() {\n return false;\n }\n\n /**\n * Hide the Item from the DOM (when visible)\n * @return {Boolean} changed\n */\n hide() {\n return false;\n }\n\n /**\n * Repaint the item\n */\n redraw() {\n // should be implemented by the item\n }\n\n /**\n * Reposition the Item horizontally\n */\n repositionX() {\n // should be implemented by the item\n }\n\n /**\n * Reposition the Item vertically\n */\n repositionY() {\n // should be implemented by the item\n }\n\n /**\n * Repaint a drag area on the center of the item when the item is selected\n * @protected\n */\n _repaintDragCenter() {\n if (this.selected && this.options.editable.updateTime && !this.dom.dragCenter) {\n const me = this;\n // create and show drag area\n const dragCenter = document.createElement('div');\n dragCenter.className = 'vis-drag-center';\n dragCenter.dragCenterItem = this;\n this.hammerDragCenter = new Hammer(dragCenter);\n\n this.hammerDragCenter.on('tap', event => {\n me.parent.itemSet.body.emitter.emit('click', {\n event,\n item: me.id\n });\n });\n this.hammerDragCenter.on('doubletap', event => {\n event.stopPropagation();\n me.parent.itemSet._onUpdateItem(me);\n me.parent.itemSet.body.emitter.emit('doubleClick', {\n event,\n item: me.id\n });\n });\n this.hammerDragCenter.on('panstart', me.parent.itemSet._onDragStart.bind(me.parent.itemSet));\n this.hammerDragCenter.on('panmove', me.parent.itemSet._onDrag.bind(me.parent.itemSet));\n this.hammerDragCenter.on('panend', me.parent.itemSet._onDragEnd.bind(me.parent.itemSet));\n\n if (this.dom.box) {\n if (this.dom.dragLeft) {\n this.dom.box.insertBefore(dragCenter, this.dom.dragLeft);\n }\n else {\n this.dom.box.appendChild(dragCenter);\n }\n }\n else if (this.dom.point) {\n this.dom.point.appendChild(dragCenter);\n }\n \n this.dom.dragCenter = dragCenter;\n }\n else if (!this.selected && this.dom.dragCenter) {\n // delete drag area\n if (this.dom.dragCenter.parentNode) {\n this.dom.dragCenter.parentNode.removeChild(this.dom.dragCenter);\n }\n this.dom.dragCenter = null;\n \n if (this.hammerDragCenter) {\n this.hammerDragCenter.destroy();\n this.hammerDragCenter = null;\n }\n }\n }\n\n /**\n * Repaint a delete button on the top right of the item when the item is selected\n * @param {HTMLElement} anchor\n * @protected\n */\n _repaintDeleteButton(anchor) {\n const editable = ((this.options.editable.overrideItems || this.editable == null) && this.options.editable.remove) ||\n (!this.options.editable.overrideItems && this.editable != null && this.editable.remove);\n\n if (this.selected && editable && !this.dom.deleteButton) {\n // create and show button\n const me = this;\n\n const deleteButton = document.createElement('div');\n\n if (this.options.rtl) {\n deleteButton.className = 'vis-delete-rtl';\n } else {\n deleteButton.className = 'vis-delete';\n }\n let optionsLocale = this.options.locales[this.options.locale];\n if (!optionsLocale) {\n if (!this.warned) {\n console.warn(`WARNING: options.locales['${this.options.locale}'] not found. See https://visjs.github.io/vis-timeline/docs/timeline/#Localization`);\n this.warned = true;\n }\n optionsLocale = this.options.locales['en']; // fall back on english when not available\n }\n deleteButton.title = optionsLocale.deleteSelected;\n\n // TODO: be able to destroy the delete button\n this.hammerDeleteButton = new Hammer(deleteButton).on('tap', event => {\n event.stopPropagation();\n me.parent.removeFromDataSet(me);\n });\n\n anchor.appendChild(deleteButton);\n this.dom.deleteButton = deleteButton;\n }\n else if (!this.selected && this.dom.deleteButton) {\n // remove button\n if (this.dom.deleteButton.parentNode) {\n this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton);\n }\n this.dom.deleteButton = null;\n\n if (this.hammerDeleteButton) {\n this.hammerDeleteButton.destroy();\n this.hammerDeleteButton = null;\n }\n }\n }\n\n /**\n * Repaint a onChange tooltip on the top right of the item when the item is selected\n * @param {HTMLElement} anchor\n * @protected\n */\n _repaintOnItemUpdateTimeTooltip(anchor) {\n if (!this.options.tooltipOnItemUpdateTime) return;\n\n const editable = (this.options.editable.updateTime || \n this.data.editable === true) &&\n this.data.editable !== false;\n\n if (this.selected && editable && !this.dom.onItemUpdateTimeTooltip) {\n const onItemUpdateTimeTooltip = document.createElement('div');\n\n onItemUpdateTimeTooltip.className = 'vis-onUpdateTime-tooltip';\n anchor.appendChild(onItemUpdateTimeTooltip);\n this.dom.onItemUpdateTimeTooltip = onItemUpdateTimeTooltip;\n\n } else if (!this.selected && this.dom.onItemUpdateTimeTooltip) {\n // remove button\n if (this.dom.onItemUpdateTimeTooltip.parentNode) {\n this.dom.onItemUpdateTimeTooltip.parentNode.removeChild(this.dom.onItemUpdateTimeTooltip);\n }\n this.dom.onItemUpdateTimeTooltip = null;\n }\n\n // position onChange tooltip\n if (this.dom.onItemUpdateTimeTooltip) {\n\n // only show when editing\n this.dom.onItemUpdateTimeTooltip.style.visibility = this.parent.itemSet.touchParams.itemIsDragging ? 'visible' : 'hidden';\n \n // position relative to item's content\n this.dom.onItemUpdateTimeTooltip.style.transform = 'translateX(-50%)';\n this.dom.onItemUpdateTimeTooltip.style.left = '50%';\n\n // position above or below the item depending on the item's position in the window\n const tooltipOffset = 50; // TODO: should be tooltip height (depends on template)\n const scrollTop = this.parent.itemSet.body.domProps.scrollTop;\n\n // TODO: this.top for orientation:true is actually the items distance from the bottom... \n // (should be this.bottom)\n let itemDistanceFromTop; \n if (this.options.orientation.item == 'top') {\n itemDistanceFromTop = this.top;\n } else {\n itemDistanceFromTop = (this.parent.height - this.top - this.height)\n }\n const isCloseToTop = itemDistanceFromTop + this.parent.top - tooltipOffset < -scrollTop;\n\n if (isCloseToTop) {\n this.dom.onItemUpdateTimeTooltip.style.bottom = \"\";\n this.dom.onItemUpdateTimeTooltip.style.top = `${this.height + 2}px`;\n } else {\n this.dom.onItemUpdateTimeTooltip.style.top = \"\";\n this.dom.onItemUpdateTimeTooltip.style.bottom = `${this.height + 2}px`;\n }\n \n // handle tooltip content\n let content;\n let templateFunction;\n\n if (this.options.tooltipOnItemUpdateTime && this.options.tooltipOnItemUpdateTime.template) {\n templateFunction = this.options.tooltipOnItemUpdateTime.template.bind(this);\n content = templateFunction(this.data);\n } else {\n content = `start: ${moment(this.data.start).format('MM/DD/YYYY hh:mm')}`;\n if (this.data.end) { \n content += `
end: ${moment(this.data.end).format('MM/DD/YYYY hh:mm')}`;\n }\n }\n this.dom.onItemUpdateTimeTooltip.innerHTML = content;\n }\n }\n\n /**\n * get item data\n * @return {object}\n * @private\n */\n _getItemData() {\n return this.parent.itemSet.itemsData.get(this.id);\n }\n\n /**\n * Set HTML contents for the item\n * @param {Element} element HTML element to fill with the contents\n * @private\n */\n _updateContents(element) {\n let content;\n let changed;\n let templateFunction;\n let itemVisibleFrameContent;\n let visibleFrameTemplateFunction; \n const itemData = this._getItemData(); // get a clone of the data from the dataset\n\n const frameElement = this.dom.box || this.dom.point;\n const itemVisibleFrameContentElement = frameElement.getElementsByClassName('vis-item-visible-frame')[0];\n\n if (this.options.visibleFrameTemplate) {\n visibleFrameTemplateFunction = this.options.visibleFrameTemplate.bind(this);\n itemVisibleFrameContent = visibleFrameTemplateFunction(itemData, itemVisibleFrameContentElement);\n } else {\n itemVisibleFrameContent = '';\n }\n \n if (itemVisibleFrameContentElement) {\n if ((itemVisibleFrameContent instanceof Object) && !(itemVisibleFrameContent instanceof Element)) {\n visibleFrameTemplateFunction(itemData, itemVisibleFrameContentElement)\n } else {\n changed = this._contentToString(this.itemVisibleFrameContent) !== this._contentToString(itemVisibleFrameContent);\n if (changed) {\n // only replace the content when changed\n if (itemVisibleFrameContent instanceof Element) {\n itemVisibleFrameContentElement.innerHTML = '';\n itemVisibleFrameContentElement.appendChild(itemVisibleFrameContent);\n }\n else if (itemVisibleFrameContent != undefined) {\n itemVisibleFrameContentElement.innerHTML = itemVisibleFrameContent;\n }\n else {\n if (!(this.data.type == 'background' && this.data.content === undefined)) {\n throw new Error(`Property \"content\" missing in item ${this.id}`);\n }\n }\n\n this.itemVisibleFrameContent = itemVisibleFrameContent;\n }\n }\n }\n\n if (this.options.template) {\n templateFunction = this.options.template.bind(this);\n content = templateFunction(itemData, element, this.data);\n } else {\n content = this.data.content;\n }\n\n if ((content instanceof Object) && !(content instanceof Element)) {\n templateFunction(itemData, element)\n } else {\n changed = this._contentToString(this.content) !== this._contentToString(content);\n if (changed) {\n // only replace the content when changed\n if (content instanceof Element) {\n element.innerHTML = '';\n element.appendChild(content);\n }\n else if (content != undefined) {\n element.innerHTML = content;\n }\n else {\n if (!(this.data.type == 'background' && this.data.content === undefined)) {\n throw new Error(`Property \"content\" missing in item ${this.id}`);\n }\n }\n this.content = content;\n }\n }\n }\n\n /**\n * Process dataAttributes timeline option and set as data- attributes on dom.content\n * @param {Element} element HTML element to which the attributes will be attached\n * @private\n */\n _updateDataAttributes(element) {\n if (this.options.dataAttributes && this.options.dataAttributes.length > 0) {\n let attributes = [];\n\n if (Array.isArray(this.options.dataAttributes)) {\n attributes = this.options.dataAttributes;\n }\n else if (this.options.dataAttributes == 'all') {\n attributes = Object.keys(this.data);\n }\n else {\n return;\n }\n\n for (const name of attributes) {\n const value = this.data[name];\n\n if (value != null) {\n element.setAttribute(`data-${name}`, value);\n }\n else {\n element.removeAttribute(`data-${name}`);\n }\n }\n }\n }\n\n /**\n * Update custom styles of the element\n * @param {Element} element\n * @private\n */\n _updateStyle(element) {\n // remove old styles\n if (this.style) {\n util.removeCssText(element, this.style);\n this.style = null;\n }\n\n // append new styles\n if (this.data.style) {\n util.addCssText(element, this.data.style);\n this.style = this.data.style;\n }\n }\n\n /**\n * Stringify the items contents\n * @param {string | Element | undefined} content\n * @returns {string | undefined}\n * @private\n */\n _contentToString(content) {\n if (typeof content === 'string') return content;\n if (content && 'outerHTML' in content) return content.outerHTML;\n return content;\n }\n\n /**\n * Update the editability of this item.\n */\n _updateEditStatus() {\n if (this.options) {\n if(typeof this.options.editable === 'boolean') {\n this.editable = {\n updateTime: this.options.editable,\n updateGroup: this.options.editable,\n remove: this.options.editable\n };\n } else if(typeof this.options.editable === 'object') {\n this.editable = {};\n util.selectiveExtend(['updateTime', 'updateGroup', 'remove'], this.editable, this.options.editable);\n }\n }\n // Item data overrides, except if options.editable.overrideItems is set.\n if (!this.options || !(this.options.editable) || (this.options.editable.overrideItems !== true)) {\n if (this.data) {\n if (typeof this.data.editable === 'boolean') {\n this.editable = {\n updateTime: this.data.editable,\n updateGroup: this.data.editable,\n remove: this.data.editable\n }\n } else if (typeof this.data.editable === 'object') {\n // TODO: in timeline.js 5.0, we should change this to not reset options from the timeline configuration.\n // Basically just remove the next line...\n this.editable = {};\n util.selectiveExtend(['updateTime', 'updateGroup', 'remove'], this.editable, this.data.editable);\n }\n }\n }\n }\n\n /**\n * Return the width of the item left from its start date\n * @return {number}\n */\n getWidthLeft() {\n return 0;\n }\n\n /**\n * Return the width of the item right from the max of its start and end date\n * @return {number}\n */\n getWidthRight() {\n return 0;\n }\n\n /**\n * Return the title of the item\n * @return {string | undefined}\n */\n getTitle() {\n if (this.options.tooltip && this.options.tooltip.template) {\n const templateFunction = this.options.tooltip.template.bind(this);\n return templateFunction(this._getItemData(), this.data);\n }\n\n return this.data.title;\n }\n}\n\nItem.prototype.stack = true;\n\nexport default Item;\n","import Item from './Item';\n\n/**\n * @constructor BoxItem\n * @extends Item\n */\nclass BoxItem extends Item {\n /**\n * @param {Object} data Object containing parameters start\n * content, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} [options] Configuration options\n * // TODO: describe available options\n */\n constructor(data, conversion, options) {\n super(data, conversion, options)\n this.props = {\n dot: {\n width: 0,\n height: 0\n },\n line: {\n width: 0,\n height: 0\n }\n };\n // validate data\n if (data) {\n if (data.start == undefined) {\n throw new Error(`Property \"start\" missing in item ${data}`);\n }\n }\n }\n\n /**\n * Check whether this item is visible inside given range\n * @param {{start: number, end: number}} range with a timestamp for start and end\n * @returns {boolean} True if visible\n */\n isVisible(range) {\n if (this.cluster) {\n return false;\n }\n // determine visibility\n let isVisible;\n const align = this.data.align || this.options.align;\n const widthInMs = this.width * range.getMillisecondsPerPixel();\n\n if (align == 'right') {\n isVisible = (this.data.start.getTime() > range.start) && (this.data.start.getTime() - widthInMs < range.end);\n }\n else if (align == 'left') {\n isVisible = (this.data.start.getTime() + widthInMs > range.start) && (this.data.start.getTime() < range.end);\n }\n else {\n // default or 'center'\n isVisible = (this.data.start.getTime() + widthInMs / 2 > range.start ) && (this.data.start.getTime() - widthInMs/2 < range.end);\n }\n return isVisible;\n }\n\n /**\n * create DOM element\n * @private\n */\n _createDomElement() {\n if (!this.dom) {\n // create DOM\n this.dom = {};\n\n // create main box\n this.dom.box = document.createElement('DIV');\n\n // contents box (inside the background box). used for making margins\n this.dom.content = document.createElement('DIV');\n this.dom.content.className = 'vis-item-content';\n this.dom.box.appendChild(this.dom.content);\n\n // line to axis\n this.dom.line = document.createElement('DIV');\n this.dom.line.className = 'vis-line';\n\n // dot on axis\n this.dom.dot = document.createElement('DIV');\n this.dom.dot.className = 'vis-dot';\n\n // attach this item as attribute\n this.dom.box['vis-item'] = this;\n\n this.dirty = true;\n }\n }\n\n /**\n * append DOM element\n * @private\n */\n _appendDomElement() {\n if (!this.parent) {\n throw new Error('Cannot redraw item: no parent attached');\n }\n if (!this.dom.box.parentNode) {\n const foreground = this.parent.dom.foreground;\n if (!foreground) throw new Error('Cannot redraw item: parent has no foreground container element');\n foreground.appendChild(this.dom.box);\n }\n if (!this.dom.line.parentNode) {\n var background = this.parent.dom.background;\n if (!background) throw new Error('Cannot redraw item: parent has no background container element');\n background.appendChild(this.dom.line);\n }\n if (!this.dom.dot.parentNode) {\n const axis = this.parent.dom.axis;\n if (!background) throw new Error('Cannot redraw item: parent has no axis container element');\n axis.appendChild(this.dom.dot);\n }\n this.displayed = true;\n }\n\n /**\n * update dirty DOM element\n * @private\n */\n _updateDirtyDomComponents() {\n // An item is marked dirty when:\n // - the item is not yet rendered\n // - the item's data is changed\n // - the item is selected/deselected\n if (this.dirty) {\n this._updateContents(this.dom.content);\n this._updateDataAttributes(this.dom.box);\n this._updateStyle(this.dom.box);\n\n const editable = (this.editable.updateTime || this.editable.updateGroup);\n\n // update class\n const className = (this.data.className ? ' ' + this.data.className : '') +\n (this.selected ? ' vis-selected' : '') +\n (editable ? ' vis-editable' : ' vis-readonly');\n this.dom.box.className = `vis-item vis-box${className}`;\n this.dom.line.className = `vis-item vis-line${className}`;\n this.dom.dot.className = `vis-item vis-dot${className}`;\n }\n }\n\n /**\n * get DOM components sizes\n * @return {object}\n * @private\n */\n _getDomComponentsSizes() {\n return {\n previous: {\n right: this.dom.box.style.right,\n left: this.dom.box.style.left\n },\n dot: {\n height: this.dom.dot.offsetHeight,\n width: this.dom.dot.offsetWidth\n },\n line: {\n width: this.dom.line.offsetWidth\n },\n box: {\n width: this.dom.box.offsetWidth,\n height: this.dom.box.offsetHeight\n }\n }\n }\n\n /**\n * update DOM components sizes\n * @param {object} sizes\n * @private\n */\n _updateDomComponentsSizes(sizes) {\n if (this.options.rtl) {\n this.dom.box.style.right = \"0px\";\n } else {\n this.dom.box.style.left = \"0px\";\n }\n\n // recalculate size\n this.props.dot.height = sizes.dot.height;\n this.props.dot.width = sizes.dot.width;\n this.props.line.width = sizes.line.width;\n this.width = sizes.box.width;\n this.height = sizes.box.height;\n\n // restore previous position\n if (this.options.rtl) {\n this.dom.box.style.right = sizes.previous.right;\n } else {\n this.dom.box.style.left = sizes.previous.left;\n }\n\n this.dirty = false;\n }\n\n /**\n * repaint DOM additionals\n * @private\n */\n _repaintDomAdditionals() {\n this._repaintOnItemUpdateTimeTooltip(this.dom.box);\n this._repaintDragCenter();\n this._repaintDeleteButton(this.dom.box);\n }\n\n /**\n * Repaint the item\n * @param {boolean} [returnQueue=false] return the queue\n * @return {boolean} the redraw queue if returnQueue=true\n */\n redraw(returnQueue) {\n let sizes;\n const queue = [\n // create item DOM\n this._createDomElement.bind(this),\n\n // append DOM to parent DOM\n this._appendDomElement.bind(this),\n\n // update dirty DOM\n this._updateDirtyDomComponents.bind(this),\n\n () => {\n if (this.dirty) {\n sizes = this._getDomComponentsSizes();\n }\n },\n\n () => {\n if (this.dirty) {\n this._updateDomComponentsSizes.bind(this)(sizes);\n }\n },\n\n // repaint DOM additionals\n this._repaintDomAdditionals.bind(this)\n ];\n\n if (returnQueue) {\n return queue;\n } else {\n let result;\n queue.forEach(fn => {\n result = fn();\n });\n return result;\n }\n }\n\n /**\n * Show the item in the DOM (when not already visible). The items DOM will\n * be created when needed.\n * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them\n * @return {boolean} the redraw queue if returnQueue=true\n */\n show(returnQueue) {\n if (!this.displayed) {\n return this.redraw(returnQueue);\n }\n }\n\n /**\n * Hide the item from the DOM (when visible)\n */\n hide() {\n if (this.displayed) {\n const dom = this.dom;\n\n if (dom.box.parentNode) dom.box.remove();\n if (dom.line.parentNode) dom.line.remove();\n if (dom.dot.parentNode) dom.dot.remove();\n\n this.displayed = false;\n }\n }\n\n /**\n * Reposition the item XY\n */\n repositionXY() {\n const rtl = this.options.rtl;\n\n const repositionXY = (element, x, y, rtl = false) => {\n if (x === undefined && y === undefined) return;\n // If rtl invert the number.\n const directionX = rtl ? (x * -1) : x;\n\n //no y. translate x\n if (y === undefined) {\n element.style.transform = `translateX(${directionX}px)`;\n return;\n }\n\n //no x. translate y\n if (x === undefined) {\n element.style.transform = `translateY(${y}px)`;\n return;\n }\n\n element.style.transform = `translate(${directionX}px, ${y}px)`;\n }\n repositionXY(this.dom.box, this.boxX, this.boxY, rtl);\n repositionXY(this.dom.dot, this.dotX, this.dotY, rtl);\n repositionXY(this.dom.line, this.lineX, this.lineY, rtl);\n }\n\n /**\n * Reposition the item horizontally\n * @Override\n */\n repositionX() {\n const start = this.conversion.toScreen(this.data.start);\n const align = this.data.align === undefined ? this.options.align : this.data.align\n const lineWidth = this.props.line.width;\n const dotWidth = this.props.dot.width;\n \n if (align == 'right') {\n // calculate right position of the box\n this.boxX = start - this.width;\n this.lineX = start - lineWidth;\n this.dotX = start - lineWidth / 2 - dotWidth / 2;\n }\n else if (align == 'left') {\n // calculate left position of the box\n this.boxX = start;\n this.lineX = start;\n this.dotX = start + lineWidth / 2 - dotWidth / 2;\n }\n else {\n // default or 'center'\n this.boxX = start - this.width / 2;\n this.lineX = this.options.rtl ? start - lineWidth : start - lineWidth / 2;\n this.dotX = start - dotWidth / 2;\n }\n\n if (this.options.rtl)\n this.right = this.boxX;\n else\n this.left = this.boxX;\n\n this.repositionXY();\n }\n\n /**\n * Reposition the item vertically\n * @Override\n */\n repositionY() {\n const orientation = this.options.orientation.item;\n const lineStyle = this.dom.line.style;\n\n if (orientation == 'top') {\n const lineHeight = this.parent.top + this.top + 1;\n\n this.boxY = this.top || 0;\n lineStyle.height = `${lineHeight}px`;\n lineStyle.bottom = '';\n lineStyle.top = '0';\n }\n else { // orientation 'bottom'\n const itemSetHeight = this.parent.itemSet.props.height; // TODO: this is nasty\n const lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top;\n\n this.boxY = this.parent.height - this.top - (this.height || 0);\n lineStyle.height = `${lineHeight}px`;\n lineStyle.top = '';\n lineStyle.bottom = '0';\n }\n\n this.dotY = -this.props.dot.height / 2;\n\n this.repositionXY();\n }\n\n /**\n * Return the width of the item left from its start date\n * @return {number}\n */\n getWidthLeft() {\n return this.width / 2;\n }\n\n /**\n * Return the width of the item right from its start date\n * @return {number}\n */\n getWidthRight() {\n return this.width / 2;\n }\n}\n\nexport default BoxItem;\n","import Item from './Item';\n\n/**\n * @constructor PointItem\n * @extends Item\n */\nclass PointItem extends Item {\n /**\n * @param {Object} data Object containing parameters start\n * content, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} [options] Configuration options\n * // TODO: describe available options\n */\n constructor(data, conversion, options) {\n super(data, conversion, options)\n this.props = {\n dot: {\n top: 0,\n width: 0,\n height: 0\n },\n content: {\n height: 0,\n marginLeft: 0,\n marginRight: 0\n }\n };\n // validate data\n if (data) {\n if (data.start == undefined) {\n throw new Error(`Property \"start\" missing in item ${data}`);\n }\n }\n }\n\n /**\n * Check whether this item is visible inside given range\n * @param {{start: number, end: number}} range with a timestamp for start and end\n * @returns {boolean} True if visible\n */\n isVisible(range) {\n if (this.cluster) {\n return false;\n }\n // determine visibility\n const widthInMs = this.width * range.getMillisecondsPerPixel();\n \n return (this.data.start.getTime() + widthInMs > range.start ) && (this.data.start < range.end);\n }\n\n /**\n * create DOM element\n * @private\n */\n _createDomElement() {\n if (!this.dom) {\n // create DOM\n this.dom = {};\n\n // background box\n this.dom.point = document.createElement('div');\n // className is updated in redraw()\n\n // contents box, right from the dot\n this.dom.content = document.createElement('div');\n this.dom.content.className = 'vis-item-content';\n this.dom.point.appendChild(this.dom.content);\n\n // dot at start\n this.dom.dot = document.createElement('div');\n this.dom.point.appendChild(this.dom.dot);\n\n // attach this item as attribute\n this.dom.point['vis-item'] = this;\n\n this.dirty = true;\n }\n }\n\n /**\n * append DOM element\n * @private\n */\n _appendDomElement() {\n if (!this.parent) {\n throw new Error('Cannot redraw item: no parent attached');\n }\n if (!this.dom.point.parentNode) {\n const foreground = this.parent.dom.foreground;\n if (!foreground) {\n throw new Error('Cannot redraw item: parent has no foreground container element');\n }\n foreground.appendChild(this.dom.point);\n }\n this.displayed = true;\n }\n\n /**\n * update dirty DOM components\n * @private\n */\n _updateDirtyDomComponents() {\n // An item is marked dirty when:\n // - the item is not yet rendered\n // - the item's data is changed\n // - the item is selected/deselected\n if (this.dirty) {\n this._updateContents(this.dom.content);\n this._updateDataAttributes(this.dom.point);\n this._updateStyle(this.dom.point);\n\n const editable = (this.editable.updateTime || this.editable.updateGroup);\n // update class\n const className = (this.data.className ? ' ' + this.data.className : '') +\n (this.selected ? ' vis-selected' : '') +\n (editable ? ' vis-editable' : ' vis-readonly');\n this.dom.point.className = `vis-item vis-point${className}`;\n this.dom.dot.className = `vis-item vis-dot${className}`;\n }\n }\n\n /**\n * get DOM component sizes\n * @return {object}\n * @private\n */\n _getDomComponentsSizes() {\n return {\n dot: {\n width: this.dom.dot.offsetWidth,\n height: this.dom.dot.offsetHeight\n },\n content: {\n width: this.dom.content.offsetWidth,\n height: this.dom.content.offsetHeight\n },\n point: {\n width: this.dom.point.offsetWidth,\n height: this.dom.point.offsetHeight\n }\n }\n }\n\n /**\n * update DOM components sizes\n * @param {array} sizes\n * @private\n */\n _updateDomComponentsSizes(sizes) {\n // recalculate size of dot and contents\n this.props.dot.width = sizes.dot.width;\n this.props.dot.height = sizes.dot.height;\n this.props.content.height = sizes.content.height;\n\n // resize contents\n if (this.options.rtl) {\n this.dom.content.style.marginRight = `${2 * this.props.dot.width}px`;\n } else {\n this.dom.content.style.marginLeft = `${2 * this.props.dot.width}px`;\n }\n //this.dom.content.style.marginRight = ... + 'px'; // TODO: margin right\n\n // recalculate size\n this.width = sizes.point.width;\n this.height = sizes.point.height;\n\n // reposition the dot\n this.dom.dot.style.top = `${(this.height - this.props.dot.height) / 2}px`;\n \n const dotWidth = this.props.dot.width;\n const translateX = this.options.rtl ? (dotWidth / 2) * -1 : dotWidth / 2;\n this.dom.dot.style.transform = `translateX(${translateX}px`;\n this.dirty = false;\n }\n\n /**\n * Repain DOM additionals\n * @private\n */\n _repaintDomAdditionals() {\n this._repaintOnItemUpdateTimeTooltip(this.dom.point);\n this._repaintDragCenter();\n this._repaintDeleteButton(this.dom.point);\n }\n\n /**\n * Repaint the item\n * @param {boolean} [returnQueue=false] return the queue\n * @return {boolean} the redraw queue if returnQueue=true\n */\n redraw(returnQueue) {\n let sizes;\n const queue = [\n // create item DOM\n this._createDomElement.bind(this),\n\n // append DOM to parent DOM\n this._appendDomElement.bind(this),\n\n // update dirty DOM\n this._updateDirtyDomComponents.bind(this),\n\n () => {\n if (this.dirty) {\n sizes = this._getDomComponentsSizes();\n }\n },\n\n () => {\n if (this.dirty) {\n this._updateDomComponentsSizes.bind(this)(sizes);\n }\n },\n\n // repaint DOM additionals\n this._repaintDomAdditionals.bind(this)\n ];\n\n if (returnQueue) {\n return queue;\n } else {\n let result;\n queue.forEach(fn => {\n result = fn();\n });\n return result;\n }\n }\n\n \n /**\n * Reposition XY\n */\n repositionXY() {\n const rtl = this.options.rtl;\n \n const repositionXY = (element, x, y, rtl = false) => {\n if (x === undefined && y === undefined) return;\n // If rtl invert the number.\n const directionX = rtl ? (x * -1) : x;\n\n //no y. translate x\n if (y === undefined) {\n element.style.transform = `translateX(${directionX}px)`;\n return;\n }\n\n //no x. translate y\n if (x === undefined) {\n element.style.transform = `translateY(${y}px)`;\n return;\n }\n\n element.style.transform = `translate(${directionX}px, ${y}px)`;\n }\n repositionXY(this.dom.point, this.pointX, this.pointY, rtl);\n }\n\n /**\n * Show the item in the DOM (when not already visible). The items DOM will\n * be created when needed.\n * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them\n * @return {boolean} the redraw queue if returnQueue=true\n */\n show(returnQueue) {\n if (!this.displayed) {\n return this.redraw(returnQueue);\n }\n }\n\n /**\n * Hide the item from the DOM (when visible)\n */\n hide() {\n if (this.displayed) {\n if (this.dom.point.parentNode) {\n this.dom.point.parentNode.removeChild(this.dom.point);\n }\n\n this.displayed = false;\n }\n }\n\n /**\n * Reposition the item horizontally\n * @Override\n */\n repositionX() {\n const start = this.conversion.toScreen(this.data.start);\n\n this.pointX = start;\n if (this.options.rtl) {\n this.right = start - this.props.dot.width;\n } else {\n this.left = start - this.props.dot.width;\n }\n\n this.repositionXY();\n }\n\n /**\n * Reposition the item vertically\n * @Override\n */\n repositionY() {\n const orientation = this.options.orientation.item;\n if (orientation == 'top') {\n this.pointY = this.top;\n }\n else {\n this.pointY = this.parent.height - this.top - this.height\n }\n\n this.repositionXY();\n }\n\n /**\n * Return the width of the item left from its start date\n * @return {number}\n */\n getWidthLeft() {\n return this.props.dot.width;\n }\n\n /**\n * Return the width of the item right from its start date\n * @return {number}\n */\n getWidthRight() {\n return this.props.dot.width;\n }\n}\n\nexport default PointItem;\n","import Item from './Item';\n\n/**\n * @constructor RangeItem\n * @extends Item\n */\nclass RangeItem extends Item {\n /**\n * @param {Object} data Object containing parameters start, end\n * content, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} [options] Configuration options\n * // TODO: describe options\n */\n constructor(data, conversion, options) {\n super(data, conversion, options)\n this.props = {\n content: {\n width: 0\n }\n };\n this.overflow = false; // if contents can overflow (css styling), this flag is set to true\n // validate data\n if (data) {\n if (data.start == undefined) {\n throw new Error(`Property \"start\" missing in item ${data.id}`);\n }\n if (data.end == undefined) {\n throw new Error(`Property \"end\" missing in item ${data.id}`);\n }\n }\n }\n\n /**\n * Check whether this item is visible inside given range\n *\n * @param {timeline.Range} range with a timestamp for start and end\n * @returns {boolean} True if visible\n */\n isVisible(range) {\n if (this.cluster) {\n return false;\n }\n // determine visibility\n return (this.data.start < range.end) && (this.data.end > range.start);\n }\n\n /**\n * create DOM elements\n * @private\n */\n _createDomElement() {\n if (!this.dom) {\n // create DOM\n this.dom = {};\n\n // background box\n this.dom.box = document.createElement('div');\n // className is updated in redraw()\n\n // frame box (to prevent the item contents from overflowing)\n this.dom.frame = document.createElement('div');\n this.dom.frame.className = 'vis-item-overflow';\n this.dom.box.appendChild(this.dom.frame);\n \n // visible frame box (showing the frame that is always visible)\n this.dom.visibleFrame = document.createElement('div');\n this.dom.visibleFrame.className = 'vis-item-visible-frame';\n this.dom.box.appendChild(this.dom.visibleFrame);\n\n // contents box\n this.dom.content = document.createElement('div');\n this.dom.content.className = 'vis-item-content';\n this.dom.frame.appendChild(this.dom.content);\n\n // attach this item as attribute\n this.dom.box['vis-item'] = this;\n\n this.dirty = true;\n }\n\n }\n\n /**\n * append element to DOM\n * @private\n */\n _appendDomElement() {\n if (!this.parent) {\n throw new Error('Cannot redraw item: no parent attached');\n }\n if (!this.dom.box.parentNode) {\n const foreground = this.parent.dom.foreground;\n if (!foreground) {\n throw new Error('Cannot redraw item: parent has no foreground container element');\n }\n foreground.appendChild(this.dom.box);\n }\n this.displayed = true;\n }\n\n /**\n * update dirty DOM components\n * @private\n */\n _updateDirtyDomComponents() {\n // update dirty DOM. An item is marked dirty when:\n // - the item is not yet rendered\n // - the item's data is changed\n // - the item is selected/deselected\n if (this.dirty) {\n this._updateContents(this.dom.content);\n this._updateDataAttributes(this.dom.box);\n this._updateStyle(this.dom.box);\n\n const editable = (this.editable.updateTime || this.editable.updateGroup);\n\n // update class\n const className = (this.data.className ? (' ' + this.data.className) : '') +\n (this.selected ? ' vis-selected' : '') + \n (editable ? ' vis-editable' : ' vis-readonly');\n this.dom.box.className = this.baseClassName + className;\n\n // turn off max-width to be able to calculate the real width\n // this causes an extra browser repaint/reflow, but so be it\n this.dom.content.style.maxWidth = 'none';\n }\n }\n\n /**\n * get DOM component sizes\n * @return {object}\n * @private\n */\n _getDomComponentsSizes() {\n // determine from css whether this box has overflow\n this.overflow = window.getComputedStyle(this.dom.frame).overflow !== 'hidden';\n this.whiteSpace = window.getComputedStyle(this.dom.content).whiteSpace !== 'nowrap';\n return {\n content: {\n width: this.dom.content.offsetWidth,\n },\n box: {\n height: this.dom.box.offsetHeight\n }\n }\n }\n\n /**\n * update DOM component sizes\n * @param {array} sizes\n * @private\n */\n _updateDomComponentsSizes(sizes) {\n this.props.content.width = sizes.content.width;\n this.height = sizes.box.height;\n this.dom.content.style.maxWidth = '';\n this.dirty = false;\n }\n\n /**\n * repaint DOM additional components\n * @private\n */\n _repaintDomAdditionals() {\n this._repaintOnItemUpdateTimeTooltip(this.dom.box);\n this._repaintDeleteButton(this.dom.box);\n this._repaintDragCenter();\n this._repaintDragLeft();\n this._repaintDragRight();\n }\n\n /**\n * Repaint the item\n * @param {boolean} [returnQueue=false] return the queue\n * @return {boolean} the redraw queue if returnQueue=true\n */\n redraw(returnQueue) {\n let sizes;\n const queue = [\n // create item DOM\n this._createDomElement.bind(this),\n\n // append DOM to parent DOM\n this._appendDomElement.bind(this),\n\n // update dirty DOM \n this._updateDirtyDomComponents.bind(this),\n\n () => {\n if (this.dirty) {\n sizes = this._getDomComponentsSizes.bind(this)();\n }\n },\n\n () => {\n if (this.dirty) {\n this._updateDomComponentsSizes.bind(this)(sizes);\n }\n },\n\n // repaint DOM additionals\n this._repaintDomAdditionals.bind(this)\n ];\n\n if (returnQueue) {\n return queue;\n } else {\n let result;\n queue.forEach(fn => {\n result = fn();\n });\n return result;\n }\n }\n\n /**\n * Show the item in the DOM (when not already visible). The items DOM will\n * be created when needed.\n * @param {boolean} [returnQueue=false] whether to return a queue of functions to execute instead of just executing them\n * @return {boolean} the redraw queue if returnQueue=true\n */\n show(returnQueue) {\n if (!this.displayed) {\n return this.redraw(returnQueue);\n }\n }\n\n /**\n * Hide the item from the DOM (when visible)\n */\n hide() {\n if (this.displayed) {\n const box = this.dom.box;\n\n if (box.parentNode) {\n box.parentNode.removeChild(box);\n }\n\n this.displayed = false;\n }\n }\n\n /**\n * Reposition the item horizontally\n * @param {boolean} [limitSize=true] If true (default), the width of the range\n * item will be limited, as the browser cannot\n * display very wide divs. This means though\n * that the applied left and width may\n * not correspond to the ranges start and end\n * @Override\n */\n repositionX(limitSize) {\n const parentWidth = this.parent.width;\n let start = this.conversion.toScreen(this.data.start);\n let end = this.conversion.toScreen(this.data.end);\n const align = this.data.align === undefined ? this.options.align : this.data.align;\n let contentStartPosition;\n let contentWidth;\n\n // limit the width of the range, as browsers cannot draw very wide divs\n // unless limitSize: false is explicitly set in item data\n if (this.data.limitSize !== false && (limitSize === undefined || limitSize === true)) {\n if (start < -parentWidth) {\n start = -parentWidth;\n }\n if (end > 2 * parentWidth) {\n end = 2 * parentWidth;\n }\n }\n\n //round to 3 decimals to compensate floating-point values rounding\n const boxWidth = Math.max(Math.round((end - start) * 1000) / 1000, 1);\n\n if (this.overflow) {\n if (this.options.rtl) {\n this.right = start;\n } else {\n this.left = start;\n }\n this.width = boxWidth + this.props.content.width;\n contentWidth = this.props.content.width;\n\n // Note: The calculation of width is an optimistic calculation, giving\n // a width which will not change when moving the Timeline\n // So no re-stacking needed, which is nicer for the eye;\n }\n else {\n if (this.options.rtl) {\n this.right = start;\n } else {\n this.left = start;\n }\n this.width = boxWidth;\n contentWidth = Math.min(end - start, this.props.content.width);\n }\n\n if (this.options.rtl) {\n this.dom.box.style.transform = `translateX(${this.right * -1}px)`;\n } else {\n this.dom.box.style.transform = `translateX(${this.left}px)`;\n }\n this.dom.box.style.width = `${boxWidth}px`;\n if (this.whiteSpace) {\n this.height = this.dom.box.offsetHeight;\n }\n\n switch (align) {\n case 'left':\n this.dom.content.style.transform = 'translateX(0)';\n break;\n\n case 'right':\n if (this.options.rtl) {\n const translateX = Math.max((boxWidth - contentWidth), 0) * -1;\n this.dom.content.style.transform = `translateX(${translateX}px)`;\n } else {\n this.dom.content.style.transform = `translateX(${Math.max((boxWidth - contentWidth), 0)}px)`;\n }\n break;\n\n case 'center':\n if (this.options.rtl) {\n const translateX = Math.max((boxWidth - contentWidth) / 2, 0) * -1;\n this.dom.content.style.transform = `translateX(${translateX}px)`;\n } else {\n this.dom.content.style.transform = `translateX(${Math.max((boxWidth - contentWidth) / 2, 0)}px)`;\n }\n \n break;\n\n default: // 'auto'\n // when range exceeds left of the window, position the contents at the left of the visible area\n if (this.overflow) {\n if (end > 0) {\n contentStartPosition = Math.max(-start, 0);\n }\n else {\n contentStartPosition = -contentWidth; // ensure it's not visible anymore\n }\n }\n else {\n if (start < 0) {\n contentStartPosition = -start;\n }\n else {\n contentStartPosition = 0;\n }\n }\n if (this.options.rtl) {\n const translateX = contentStartPosition * -1;\n this.dom.content.style.transform = `translateX(${translateX}px)`;\n } else {\n this.dom.content.style.transform = `translateX(${contentStartPosition}px)`;\n // this.dom.content.style.width = `calc(100% - ${contentStartPosition}px)`;\n }\n }\n }\n\n /**\n * Reposition the item vertically\n * @Override\n */\n repositionY() {\n const orientation = this.options.orientation.item;\n const box = this.dom.box;\n\n if (orientation == 'top') {\n box.style.top = `${this.top}px`;\n }\n else {\n box.style.top = `${this.parent.height - this.top - this.height}px`;\n }\n }\n\n /**\n * Repaint a drag area on the left side of the range when the range is selected\n * @protected\n */\n _repaintDragLeft() {\n if ((this.selected || this.options.itemsAlwaysDraggable.range) && this.options.editable.updateTime && !this.dom.dragLeft) {\n // create and show drag area\n const dragLeft = document.createElement('div');\n dragLeft.className = 'vis-drag-left';\n dragLeft.dragLeftItem = this;\n\n this.dom.box.appendChild(dragLeft);\n this.dom.dragLeft = dragLeft;\n }\n else if (!this.selected && !this.options.itemsAlwaysDraggable.range && this.dom.dragLeft) {\n // delete drag area\n if (this.dom.dragLeft.parentNode) {\n this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft);\n }\n this.dom.dragLeft = null;\n }\n }\n\n /**\n * Repaint a drag area on the right side of the range when the range is selected\n * @protected\n */\n _repaintDragRight() {\n if ((this.selected || this.options.itemsAlwaysDraggable.range) && this.options.editable.updateTime && !this.dom.dragRight) {\n // create and show drag area\n const dragRight = document.createElement('div');\n dragRight.className = 'vis-drag-right';\n dragRight.dragRightItem = this;\n\n this.dom.box.appendChild(dragRight);\n this.dom.dragRight = dragRight;\n }\n else if (!this.selected && !this.options.itemsAlwaysDraggable.range && this.dom.dragRight) {\n // delete drag area\n if (this.dom.dragRight.parentNode) {\n this.dom.dragRight.parentNode.removeChild(this.dom.dragRight);\n }\n this.dom.dragRight = null;\n }\n }\n}\n\nRangeItem.prototype.baseClassName = 'vis-item vis-range';\n\nexport default RangeItem;\n","import Item from './Item';\nimport BackgroundGroup from '../BackgroundGroup';\nimport RangeItem from './RangeItem';\n\n/**\n * @constructor BackgroundItem\n * @extends Item\n */\nclass BackgroundItem extends Item {\n /**\n * @constructor BackgroundItem\n * @param {Object} data Object containing parameters start, end\n * content, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} [options] Configuration options\n * // TODO: describe options\n * // TODO: implement support for the BackgroundItem just having a start, then being displayed as a sort of an annotation\n */\n constructor(data, conversion, options) {\n super(data, conversion, options)\n this.props = {\n content: {\n width: 0\n }\n };\n this.overflow = false; // if contents can overflow (css styling), this flag is set to true\n\n // validate data\n if (data) {\n if (data.start == undefined) {\n throw new Error(`Property \"start\" missing in item ${data.id}`);\n }\n if (data.end == undefined) {\n throw new Error(`Property \"end\" missing in item ${data.id}`);\n }\n }\n }\n\n /**\n * Check whether this item is visible inside given range\n * @param {timeline.Range} range with a timestamp for start and end\n * @returns {boolean} True if visible\n */\n isVisible(range) {\n // determine visibility\n return (this.data.start < range.end) && (this.data.end > range.start); \n }\n\n /**\n * create DOM element\n * @private\n */\n _createDomElement() {\n if (!this.dom) {\n // create DOM\n this.dom = {};\n\n // background box\n this.dom.box = document.createElement('div');\n // className is updated in redraw()\n\n // frame box (to prevent the item contents from overflowing\n this.dom.frame = document.createElement('div');\n this.dom.frame.className = 'vis-item-overflow';\n this.dom.box.appendChild(this.dom.frame);\n\n // contents box\n this.dom.content = document.createElement('div');\n this.dom.content.className = 'vis-item-content';\n this.dom.frame.appendChild(this.dom.content);\n\n // Note: we do NOT attach this item as attribute to the DOM,\n // such that background items cannot be selected\n //this.dom.box['vis-item'] = this;\n\n this.dirty = true;\n }\n }\n\n /**\n * append DOM element\n * @private\n */\n _appendDomElement() {\n if (!this.parent) {\n throw new Error('Cannot redraw item: no parent attached');\n }\n if (!this.dom.box.parentNode) {\n const background = this.parent.dom.background;\n if (!background) {\n throw new Error('Cannot redraw item: parent has no background container element');\n }\n background.appendChild(this.dom.box);\n }\n this.displayed = true;\n }\n\n /**\n * update DOM Dirty components\n * @private\n */\n _updateDirtyDomComponents() {\n // update dirty DOM. An item is marked dirty when:\n // - the item is not yet rendered\n // - the item's data is changed\n // - the item is selected/deselected\n if (this.dirty) {\n this._updateContents(this.dom.content);\n this._updateDataAttributes(this.dom.content);\n this._updateStyle(this.dom.box);\n\n // update class\n const className = (this.data.className ? (' ' + this.data.className) : '') +\n (this.selected ? ' vis-selected' : '');\n this.dom.box.className = this.baseClassName + className;\n }\n }\n\n /**\n * get DOM components sizes\n * @return {object}\n * @private\n */\n _getDomComponentsSizes() {\n // determine from css whether this box has overflow\n this.overflow = window.getComputedStyle(this.dom.content).overflow !== 'hidden';\n return {\n content: {\n width: this.dom.content.offsetWidth\n }\n }\n }\n\n /**\n * update DOM components sizes\n * @param {object} sizes\n * @private\n */\n _updateDomComponentsSizes(sizes) {\n // recalculate size\n this.props.content.width = sizes.content.width;\n this.height = 0; // set height zero, so this item will be ignored when stacking items\n\n this.dirty = false;\n }\n\n /**\n * repaint DOM additionals\n * @private\n */\n _repaintDomAdditionals() {\n }\n\n /**\n * Repaint the item\n * @param {boolean} [returnQueue=false] return the queue\n * @return {boolean} the redraw result or the redraw queue if returnQueue=true\n */\n redraw(returnQueue) {\n let sizes;\n const queue = [\n // create item DOM\n this._createDomElement.bind(this),\n\n // append DOM to parent DOM\n this._appendDomElement.bind(this),\n\n this._updateDirtyDomComponents.bind(this),\n\n () => {\n if (this.dirty) {\n sizes = this._getDomComponentsSizes.bind(this)();\n }\n },\n\n () => {\n if (this.dirty) {\n this._updateDomComponentsSizes.bind(this)(sizes);\n }\n },\n\n // repaint DOM additionals\n this._repaintDomAdditionals.bind(this)\n ];\n\n if (returnQueue) {\n return queue;\n } else {\n let result;\n queue.forEach(fn => {\n result = fn();\n });\n return result;\n }\n }\n\n /**\n * Reposition the item vertically\n * @Override\n */\n repositionY(margin) { // eslint-disable-line no-unused-vars\n let height;\n const orientation = this.options.orientation.item;\n\n // special positioning for subgroups\n if (this.data.subgroup !== undefined) {\n // TODO: instead of calculating the top position of the subgroups here for every BackgroundItem, calculate the top of the subgroup once in Itemset\n const itemSubgroup = this.data.subgroup;\n\n this.dom.box.style.height = `${this.parent.subgroups[itemSubgroup].height}px`;\n\n if (orientation == 'top') { \n this.dom.box.style.top = `${this.parent.top + this.parent.subgroups[itemSubgroup].top}px`;\n } else {\n this.dom.box.style.top = `${this.parent.top + this.parent.height - this.parent.subgroups[itemSubgroup].top - this.parent.subgroups[itemSubgroup].height}px`;\n }\n this.dom.box.style.bottom = '';\n }\n // and in the case of no subgroups:\n else {\n // we want backgrounds with groups to only show in groups.\n if (this.parent instanceof BackgroundGroup) {\n // if the item is not in a group:\n height = Math.max(this.parent.height,\n this.parent.itemSet.body.domProps.center.height,\n this.parent.itemSet.body.domProps.centerContainer.height);\n this.dom.box.style.bottom = orientation == 'bottom' ? '0' : '';\n this.dom.box.style.top = orientation == 'top' ? '0' : '';\n }\n else {\n height = this.parent.height;\n // same alignment for items when orientation is top or bottom\n this.dom.box.style.top = `${this.parent.top}px`;\n this.dom.box.style.bottom = '';\n }\n }\n this.dom.box.style.height = `${height}px`;\n }\n}\n\nBackgroundItem.prototype.baseClassName = 'vis-item vis-background';\n\nBackgroundItem.prototype.stack = false;\n\n/**\n * Show the item in the DOM (when not already visible). The items DOM will\n * be created when needed.\n */\nBackgroundItem.prototype.show = RangeItem.prototype.show;\n\n/**\n * Hide the item from the DOM (when visible)\n * @return {Boolean} changed\n */\nBackgroundItem.prototype.hide = RangeItem.prototype.hide;\n\n/**\n * Reposition the item horizontally\n * @Override\n */\nBackgroundItem.prototype.repositionX = RangeItem.prototype.repositionX;\n\nexport default BackgroundItem;\n","import './tooltip.css';\n\n/**\n * Popup is a class to create a popup window with some text\n */\nclass Popup {\n /**\n * @param {Element} container The container object.\n * @param {string} overflowMethod How the popup should act to overflowing ('flip', 'cap' or 'none')\n */\n constructor(container, overflowMethod) {\n this.container = container;\n this.overflowMethod = overflowMethod || 'cap';\n\n this.x = 0;\n this.y = 0;\n this.padding = 5;\n this.hidden = false;\n\n // create the frame\n this.frame = document.createElement('div');\n this.frame.className = 'vis-tooltip';\n this.container.appendChild(this.frame);\n }\n\n /**\n * @param {number} x Horizontal position of the popup window\n * @param {number} y Vertical position of the popup window\n */\n setPosition(x, y) {\n this.x = parseInt(x);\n this.y = parseInt(y);\n }\n\n /**\n * Set the content for the popup window. This can be HTML code or text.\n * @param {string | Element} content\n */\n setText(content) {\n if (content instanceof Element) {\n this.frame.innerHTML = '';\n this.frame.appendChild(content);\n }\n else {\n this.frame.innerHTML = content; // string containing text or HTML\n }\n }\n\n /**\n * Show the popup window\n * @param {boolean} [doShow] Show or hide the window\n */\n show(doShow) {\n if (doShow === undefined) {\n doShow = true;\n }\n\n if (doShow === true) {\n var height = this.frame.clientHeight;\n var width = this.frame.clientWidth;\n var maxHeight = this.frame.parentNode.clientHeight;\n var maxWidth = this.frame.parentNode.clientWidth;\n\n var left = 0, top = 0;\n\n if (this.overflowMethod == 'flip' || this.overflowMethod == 'none') {\n let isLeft = false, isTop = true; // Where around the position it's located\n\n if (this.overflowMethod == 'flip') {\n if (this.y - height < this.padding) {\n isTop = false;\n }\n\n if (this.x + width > maxWidth - this.padding) {\n isLeft = true;\n }\n }\n\n if (isLeft) {\n left = this.x - width;\n } else {\n left = this.x;\n }\n\n if (isTop) {\n top = this.y - height;\n } else {\n top = this.y;\n }\n } else { // this.overflowMethod == 'cap'\n top = (this.y - height);\n if (top + height + this.padding > maxHeight) {\n top = maxHeight - height - this.padding;\n }\n if (top < this.padding) {\n top = this.padding;\n }\n\n left = this.x;\n if (left + width + this.padding > maxWidth) {\n left = maxWidth - width - this.padding;\n }\n if (left < this.padding) {\n left = this.padding;\n }\n }\n\n this.frame.style.left = left + \"px\";\n this.frame.style.top = top + \"px\";\n this.frame.style.visibility = \"visible\";\n this.hidden = false;\n }\n else {\n this.hide();\n }\n }\n\n /**\n * Hide the popup window\n */\n hide() {\n this.hidden = true;\n this.frame.style.left = \"0\";\n this.frame.style.top = \"0\";\n this.frame.style.visibility = \"hidden\";\n }\n\n /**\n * Remove the popup window\n */\n destroy() {\n this.frame.parentNode.removeChild(this.frame); // Remove element from DOM\n }\n}\n\nexport default Popup;\n","'use strict';\nvar $ = require('../internals/export');\nvar $every = require('../internals/array-iteration').every;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\n// `Array.prototype.every` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.every\n$({ target: 'Array', proto: true, forced: sloppyArrayMethod('every') }, {\n every: function every(callbackfn /* , thisArg */) {\n return $every(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.every');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').every;\n","var every = require('../array/virtual/every');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.every;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.every) ? every : own;\n};\n","module.exports = require('../../es/instance/every');\n","module.exports = require(\"core-js-pure/stable/instance/every\");","var DESCRIPTORS = require('../internals/descriptors');\nvar objectKeys = require('../internals/object-keys');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar propertyIsEnumerable = require('../internals/object-property-is-enumerable').f;\n\n// `Object.{ entries, values }` methods implementation\nvar createMethod = function (TO_ENTRIES) {\n return function (it) {\n var O = toIndexedObject(it);\n var keys = objectKeys(O);\n var length = keys.length;\n var i = 0;\n var result = [];\n var key;\n while (length > i) {\n key = keys[i++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(O, key)) {\n result.push(TO_ENTRIES ? [key, O[key]] : O[key]);\n }\n }\n return result;\n };\n};\n\nmodule.exports = {\n // `Object.entries` method\n // https://tc39.github.io/ecma262/#sec-object.entries\n entries: createMethod(true),\n // `Object.values` method\n // https://tc39.github.io/ecma262/#sec-object.values\n values: createMethod(false)\n};\n","var $ = require('../internals/export');\nvar $values = require('../internals/object-to-array').values;\n\n// `Object.values` method\n// https://tc39.github.io/ecma262/#sec-object.values\n$({ target: 'Object', stat: true }, {\n values: function values(O) {\n return $values(O);\n }\n});\n","require('../../modules/es.object.values');\nvar path = require('../../internals/path');\n\nmodule.exports = path.Object.values;\n","module.exports = require('../../es/object/values');\n","module.exports = require(\"core-js-pure/stable/object/values\");","var aFunction = require('../internals/a-function');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\nvar toLength = require('../internals/to-length');\n\n// `Array.prototype.{ reduce, reduceRight }` methods implementation\nvar createMethod = function (IS_RIGHT) {\n return function (that, callbackfn, argumentsLength, memo) {\n aFunction(callbackfn);\n var O = toObject(that);\n var self = IndexedObject(O);\n var length = toLength(O.length);\n var index = IS_RIGHT ? length - 1 : 0;\n var i = IS_RIGHT ? -1 : 1;\n if (argumentsLength < 2) while (true) {\n if (index in self) {\n memo = self[index];\n index += i;\n break;\n }\n index += i;\n if (IS_RIGHT ? index < 0 : length <= index) {\n throw TypeError('Reduce of empty array with no initial value');\n }\n }\n for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {\n memo = callbackfn(memo, self[index], index, O);\n }\n return memo;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.reduce` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.reduce\n left: createMethod(false),\n // `Array.prototype.reduceRight` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.reduceright\n right: createMethod(true)\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar $reduce = require('../internals/array-reduce').left;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\n// `Array.prototype.reduce` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.reduce\n$({ target: 'Array', proto: true, forced: sloppyArrayMethod('reduce') }, {\n reduce: function reduce(callbackfn /* , initialValue */) {\n return $reduce(this, callbackfn, arguments.length, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","require('../../../modules/es.array.reduce');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').reduce;\n","var reduce = require('../array/virtual/reduce');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.reduce;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.reduce) ? reduce : own;\n};\n","module.exports = require('../../es/instance/reduce');\n","module.exports = require(\"core-js-pure/stable/instance/reduce\");","import Item from './Item';\nimport util from '../../../util';\n\n/**\n * ClusterItem\n */\nclass ClusterItem extends Item {\n /**\n * @constructor Item\n * @param {Object} data Object containing (optional) parameters type,\n * start, end, content, group, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} options Configuration options\n * // TODO: describe available options\n */\n constructor(data, conversion, options) {\n const modifiedOptions = Object.assign({}, {fitOnDoubleClick: true}, options, {editable: false});\n super(data, conversion, modifiedOptions);\n\n this.props = {\n content: {\n width: 0,\n height: 0\n },\n };\n \n if (!data || data.uiItems == undefined) {\n throw new Error('Property \"uiItems\" missing in item ' + data.id);\n }\n \n this.id = util.randomUUID();\n this.group = data.group;\n this._setupRange();\n \n this.emitter = this.data.eventEmitter;\n this.range = this.data.range;\n this.attached = false;\n this.isCluster = true;\n this.data.isCluster = true;\n }\n\n /**\n * check if there are items\n * @return {boolean}\n */\n hasItems() {\n return this.data.uiItems && this.data.uiItems.length && this.attached;\n }\n \n /**\n * set UI items\n * @param {array} items\n */\n setUiItems(items) {\n this.detach();\n \n this.data.uiItems = items;\n \n this._setupRange();\n \n this.attach();\n }\n \n /**\n * check is visible\n * @param {object} range\n * @return {boolean}\n */\n isVisible(range) {\n const rangeWidth = this.data.end ? this.data.end - this.data.start : 0;\n const widthInMs = this.width * range.getMillisecondsPerPixel();\n const end = Math.max(rangeWidth, this.data.start.getTime() + widthInMs);\n return (this.data.start < range.end) && (end > range.start) && this.hasItems();\n }\n \n /**\n * get cluster data\n * @return {object}\n */\n getData() {\n return {\n isCluster: true,\n id: this.id,\n items: this.data.items || [],\n data: this.data\n }\n }\n \n /**\n * redraw cluster item\n * @param {boolean} returnQueue\n * @return {boolean}\n */\n redraw (returnQueue) {\n var sizes\n var queue = [\n // create item DOM\n this._createDomElement.bind(this),\n \n // append DOM to parent DOM\n this._appendDomElement.bind(this),\n \n // update dirty DOM\n this._updateDirtyDomComponents.bind(this),\n \n (function () {\n if (this.dirty) {\n sizes = this._getDomComponentsSizes();\n }\n }).bind(this),\n \n (function () {\n if (this.dirty) {\n this._updateDomComponentsSizes.bind(this)(sizes);\n }\n }).bind(this),\n \n // repaint DOM additionals\n this._repaintDomAdditionals.bind(this)\n ];\n \n if (returnQueue) {\n return queue;\n } else {\n var result;\n queue.forEach(function (fn) {\n result = fn();\n });\n return result;\n }\n }\n \n /**\n * show cluster item\n */\n show() {\n if (!this.displayed) {\n this.redraw();\n }\n }\n \n /**\n * Hide the item from the DOM (when visible)\n */\n hide() {\n if (this.displayed) {\n var dom = this.dom;\n if (dom.box.parentNode) {\n dom.box.parentNode.removeChild(dom.box);\n }\n\n if (this.options.showStipes) {\n if (dom.line.parentNode) {\n dom.line.parentNode.removeChild(dom.line);\n }\n if (dom.dot.parentNode) {\n dom.dot.parentNode.removeChild(dom.dot);\n }\n }\n this.displayed = false;\n }\n }\n \n /**\n * reposition item x axis\n */\n repositionX() {\n let start = this.conversion.toScreen(this.data.start);\n let end = this.data.end ? this.conversion.toScreen(this.data.end) : 0;\n if (end) {\n this.repositionXWithRanges(start, end);\n } else {\n let align = this.data.align === undefined ? this.options.align : this.data.align;\n this.repositionXWithoutRanges(start, align);\n }\n \n if (this.options.showStipes) {\n this.dom.line.style.display = this._isStipeVisible() ? 'block' : 'none';\n this.dom.dot.style.display = this._isStipeVisible() ? 'block' : 'none';\n\n if (this._isStipeVisible()) {\n this.repositionStype(start, end);\n }\n }\n }\n\n /**\n * reposition item stype\n * @param {date} start\n * @param {date} end\n */\n repositionStype(start, end) {\n this.dom.line.style.display = 'block';\n this.dom.dot.style.display = 'block';\n const lineOffsetWidth = this.dom.line.offsetWidth;\n const dotOffsetWidth = this.dom.dot.offsetWidth;\n\n if (end) {\n const lineOffset = lineOffsetWidth + start + (end - start) / 2;\n const dotOffset = lineOffset - dotOffsetWidth / 2;\n const lineOffsetDirection = this.options.rtl ? lineOffset * -1 : lineOffset;\n const dotOffsetDirection = this.options.rtl ? dotOffset * -1 : dotOffset;\n\n this.dom.line.style.transform = `translateX(${lineOffsetDirection})px`;\n this.dom.dot.style.transform = `translateX(${dotOffsetDirection}px)`;\n } else {\n const lineOffsetDirection = this.options.rtl ? start * -1 : start;\n const dotOffsetDirection = this.options.rtl ? (start - dotOffsetWidth / 2) * -1 : start - dotOffsetWidth / 2;\n\n this.dom.line.style.transform = `${lineOffsetDirection}px`;\n this.dom.dot.style.transform = `${dotOffsetDirection}px`;\n }\n }\n \n /**\n * reposition x without ranges\n * @param {date} start\n * @param {string} align\n */\n repositionXWithoutRanges(start, align) {\n // calculate left position of the box\n if (align == 'right') {\n if (this.options.rtl) {\n this.right = start - this.width;\n \n // reposition box, line, and dot\n this.dom.box.style.right = this.right + 'px';\n } else {\n this.left = start - this.width;\n \n // reposition box, line, and dot\n this.dom.box.style.left = this.left + 'px';\n }\n } else if (align == 'left') {\n if (this.options.rtl) {\n this.right = start;\n \n // reposition box, line, and dot\n this.dom.box.style.right = this.right + 'px';\n } else {\n this.left = start;\n \n // reposition box, line, and dot\n this.dom.box.style.left = this.left + 'px';\n }\n } else {\n // default or 'center'\n if (this.options.rtl) {\n this.right = start - this.width / 2;\n \n // reposition box, line, and dot\n this.dom.box.style.right = this.right + 'px';\n } else {\n this.left = start - this.width / 2;\n \n // reposition box, line, and dot\n this.dom.box.style.left = this.left + 'px';\n }\n }\n }\n \n /**\n * reposition x with ranges\n * @param {date} start\n * @param {date} end\n */\n repositionXWithRanges(start, end) {\n let boxWidth = Math.round(Math.max(end - start + 0.5, 1));\n \n if (this.options.rtl) {\n this.right = start;\n } else {\n this.left = start;\n }\n \n this.width = Math.max(boxWidth, this.minWidth || 0);\n \n if (this.options.rtl) {\n this.dom.box.style.right = this.right + 'px';\n } else {\n this.dom.box.style.left = this.left + 'px';\n }\n \n this.dom.box.style.width = boxWidth + 'px';\n }\n \n /**\n * reposition item y axis\n */\n repositionY() {\n var orientation = this.options.orientation.item;\n var box = this.dom.box;\n if (orientation == 'top') {\n box.style.top = (this.top || 0) + 'px';\n } else { \n // orientation 'bottom'\n box.style.top = (this.parent.height - this.top - this.height || 0) + 'px';\n }\n \n if (this.options.showStipes) {\n if (orientation == 'top') {\n this.dom.line.style.top = '0';\n this.dom.line.style.height = (this.parent.top + this.top + 1) + 'px';\n this.dom.line.style.bottom = '';\n }\n else { \n // orientation 'bottom'\n var itemSetHeight = this.parent.itemSet.props.height;\n var lineHeight = itemSetHeight - this.parent.top - this.parent.height + this.top;\n this.dom.line.style.top = (itemSetHeight - lineHeight) + 'px';\n this.dom.line.style.bottom = '0';\n }\n \n this.dom.dot.style.top = (-this.dom.dot.offsetHeight / 2) + 'px';\n }\n }\n\n /**\n * get width left\n * @return {number}\n */\n getWidthLeft() {\n return this.width / 2;\n }\n \n /**\n * get width right\n * @return {number}\n */\n getWidthRight() {\n return this.width / 2;\n }\n \n /**\n * move cluster item\n */\n move() {\n this.repositionX();\n this.repositionY();\n }\n \n /**\n * attach\n */\n attach() {\n for (let item of this.data.uiItems) {\n item.cluster = this;\n }\n \n this.data.items = this.data.uiItems.map(item => item.data);\n\n this.attached = true;\n this.dirty = true;\n }\n \n /**\n * detach\n * @param {boolean} detachFromParent\n * @return {void}\n */\n detach(detachFromParent = false) {\n if (!this.hasItems()) {\n return;\n }\n \n for (let item of this.data.uiItems) {\n delete item.cluster;\n }\n \n this.attached = false;\n \n if (detachFromParent && this.group) {\n this.group.remove(this);\n this.group = null;\n }\n \n this.data.items = [];\n this.dirty = true;\n }\n \n /**\n * handle on double click\n */\n _onDoubleClick() {\n this._fit();\n }\n \n /**\n * set range\n */\n _setupRange() {\n const stats = this.data.uiItems.map(item => ({\n start: item.data.start.valueOf(),\n end: item.data.end ? item.data.end.valueOf() : item.data.start.valueOf(),\n }));\n \n this.data.min = Math.min(...stats.map(s => Math.min(s.start, s.end || s.start)));\n this.data.max = Math.max(...stats.map(s => Math.max(s.start, s.end || s.start)));\n const centers = this.data.uiItems.map(item => item.center);\n const avg = centers.reduce((sum, value) => sum + value, 0) / this.data.uiItems.length;\n \n if (this.data.uiItems.some(item => item.data.end)) {\n // contains ranges\n this.data.start = new Date(this.data.min);\n this.data.end = new Date(this.data.max);\n } else {\n this.data.start = new Date(avg);\n this.data.end = null;\n }\n }\n \n /**\n * get UI items\n * @return {array}\n */\n _getUiItems() {\n if (this.data.uiItems && this.data.uiItems.length) {\n return this.data.uiItems.filter(item => item.cluster === this);\n }\n \n return [];\n }\n \n /**\n * create DOM element\n */\n _createDomElement() {\n if (!this.dom) {\n // create DOM\n this.dom = {};\n \n // create main box\n this.dom.box = document.createElement('DIV');\n \n // contents box (inside the background box). used for making margins\n this.dom.content = document.createElement('DIV');\n this.dom.content.className = 'vis-item-content';\n \n this.dom.box.appendChild(this.dom.content);\n \n if (this.options.showStipes) {\n // line to axis\n this.dom.line = document.createElement('DIV');\n this.dom.line.className = 'vis-cluster-line';\n this.dom.line.style.display = 'none';\n \n // dot on axis\n this.dom.dot = document.createElement('DIV');\n this.dom.dot.className = 'vis-cluster-dot';\n this.dom.dot.style.display = 'none';\n }\n \n if (this.options.fitOnDoubleClick) {\n this.dom.box.ondblclick = ClusterItem.prototype._onDoubleClick.bind(this);\n }\n \n // attach this item as attribute\n this.dom.box['vis-item'] = this;\n \n this.dirty = true;\n }\n }\n \n /**\n * append element to DOM\n */\n _appendDomElement() {\n if (!this.parent) {\n throw new Error('Cannot redraw item: no parent attached');\n }\n \n if (!this.dom.box.parentNode) {\n const foreground = this.parent.dom.foreground;\n if (!foreground) {\n throw new Error('Cannot redraw item: parent has no foreground container element');\n }\n \n foreground.appendChild(this.dom.box);\n }\n \n const background = this.parent.dom.background;\n \n if (this.options.showStipes) {\n if (!this.dom.line.parentNode) {\n if (!background) throw new Error('Cannot redraw item: parent has no background container element');\n background.appendChild(this.dom.line);\n }\n \n if (!this.dom.dot.parentNode) {\n var axis = this.parent.dom.axis;\n if (!background) throw new Error('Cannot redraw item: parent has no axis container element');\n axis.appendChild(this.dom.dot);\n }\n }\n \n this.displayed = true;\n }\n \n /**\n * update dirty DOM components\n */\n _updateDirtyDomComponents() {\n // An item is marked dirty when:\n // - the item is not yet rendered\n // - the item's data is changed\n // - the item is selected/deselected\n if (this.dirty) {\n this._updateContents(this.dom.content);\n this._updateDataAttributes(this.dom.box);\n this._updateStyle(this.dom.box);\n \n // update class\n const className = this.baseClassName + ' ' + (this.data.className ? ' ' + this.data.className : '') +\n (this.selected ? ' vis-selected' : '') + ' vis-readonly';\n this.dom.box.className = 'vis-item ' + className;\n \n if (this.options.showStipes) {\n this.dom.line.className = 'vis-item vis-cluster-line ' + (this.selected ? ' vis-selected' : '');\n this.dom.dot.className = 'vis-item vis-cluster-dot ' + (this.selected ? ' vis-selected' : '');\n }\n \n if (this.data.end) {\n // turn off max-width to be able to calculate the real width\n // this causes an extra browser repaint/reflow, but so be it\n this.dom.content.style.maxWidth = 'none';\n }\n }\n }\n \n /**\n * get DOM components sizes\n * @return {object}\n */\n _getDomComponentsSizes() {\n return {\n previous: {\n right: this.dom.box.style.right,\n left: this.dom.box.style.left\n },\n box: {\n width: this.dom.box.offsetWidth,\n height: this.dom.box.offsetHeight\n },\n }\n }\n \n /**\n * update DOM components sizes\n * @param {object} sizes\n */\n _updateDomComponentsSizes(sizes) {\n if (this.options.rtl) {\n this.dom.box.style.right = \"0px\";\n } else {\n this.dom.box.style.left = \"0px\";\n }\n \n // recalculate size\n if (!this.data.end) {\n this.width = sizes.box.width;\n } else {\n this.minWidth = sizes.box.width;\n }\n \n this.height = sizes.box.height;\n \n // restore previous position\n if (this.options.rtl) {\n this.dom.box.style.right = sizes.previous.right;\n } else {\n this.dom.box.style.left = sizes.previous.left;\n }\n \n this.dirty = false;\n }\n \n /**\n * repaint DOM additional components\n */\n _repaintDomAdditionals() {\n this._repaintOnItemUpdateTimeTooltip(this.dom.box);\n }\n \n /**\n * check is stripe visible\n * @return {number}\n * @private\n */\n _isStipeVisible() {\n return this.minWidth >= this.width || !this.data.end;\n }\n \n /**\n * get fit range\n * @return {object}\n * @private\n */\n _getFitRange() {\n const offset = 0.05*(this.data.max - this.data.min) / 2;\n return {\n fitStart: this.data.min - offset,\n fitEnd: this.data.max + offset\n };\n }\n \n /**\n * fit\n * @private\n */\n _fit() {\n if (this.emitter) {\n const {fitStart, fitEnd} = this._getFitRange();\n \n const fitArgs = {\n start: new Date(fitStart),\n end: new Date(fitEnd),\n animation: true\n };\n \n this.emitter.emit('fit', fitArgs);\n }\n }\n\n /**\n * get item data\n * @return {object}\n * @private\n */\n _getItemData() {\n return this.data;\n }\n}\n\nClusterItem.prototype.baseClassName = 'vis-item vis-range vis-cluster';\nexport default ClusterItem;\n","import ClusterItem from './item/ClusterItem';\n\nconst UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items\nconst BACKGROUND = '__background__'; // reserved group id for background items without group\n\nexport const ReservedGroupIds = {\n UNGROUPED,\n BACKGROUND\n}\n\n/**\n * An Cluster generator generates cluster items\n */\nexport default class ClusterGenerator {\n /**\n * @param {ItemSet} itemSet itemsSet instance\n * @constructor ClusterGenerator\n */\n constructor(itemSet) {\n this.itemSet = itemSet;\n this.groups = {};\n this.cache = {};\n this.cache[-1] = [];\n }\n\n /**\n * @param {Object} itemData Object containing parameters start content, className.\n * @param {{toScreen: function, toTime: function}} conversion\n * Conversion functions from time to screen and vice versa\n * @param {Object} [options] Configuration options\n * @return {Object} newItem\n */\n createClusterItem(itemData, conversion, options) {\n const newItem = new ClusterItem(itemData, conversion, options);\n return newItem;\n }\n\n /**\n * Set the items to be clustered.\n * This will clear cached clusters.\n * @param {Item[]} items\n * @param {Object} [options] Available options:\n * {boolean} applyOnChangedLevel\n * If true (default), the changed data is applied\n * as soon the cluster level changes. If false,\n * The changed data is applied immediately\n */\n setItems(items, options) {\n this.items = items || [];\n this.dataChanged = true;\n this.applyOnChangedLevel = false;\n\n if (options && options.applyOnChangedLevel) {\n this.applyOnChangedLevel = options.applyOnChangedLevel;\n }\n }\n\n /**\n * Update the current data set: clear cache, and recalculate the clustering for\n * the current level\n */\n updateData() {\n this.dataChanged = true;\n this.applyOnChangedLevel = false;\n }\n\n /**\n * Cluster the items which are too close together\n * @param {array} oldClusters \n * @param {number} scale The scale of the current window : (windowWidth / (endDate - startDate)) \n * @param {{maxItems: number, clusterCriteria: function, titleTemplate: string}} options \n * @return {array} clusters\n */\n getClusters(oldClusters, scale, options) {\n let { maxItems, clusterCriteria } = typeof options === \"boolean\" ? {} : options;\n \n if (!clusterCriteria) {\n clusterCriteria = () => true;\n }\n\n maxItems = maxItems || 1;\n\n let level = -1;\n let granularity = 2;\n let timeWindow = 0;\n\n if (scale > 0) {\n if (scale >= 1) {\n return [];\n }\n\n level = Math.abs(Math.round(Math.log(100 / scale) / Math.log(granularity)));\n timeWindow = Math.abs(Math.pow(granularity, level));\n }\n\n // clear the cache when and re-generate groups the data when needed.\n if (this.dataChanged) {\n const levelChanged = (level != this.cacheLevel);\n const applyDataNow = this.applyOnChangedLevel ? levelChanged : true;\n if (applyDataNow) {\n this._dropLevelsCache();\n this._filterData();\n }\n }\n\n this.cacheLevel = level;\n let clusters = this.cache[level];\n if (!clusters) {\n clusters = [];\n for (let groupName in this.groups) {\n if (this.groups.hasOwnProperty(groupName)) {\n const items = this.groups[groupName];\n const iMax = items.length;\n let i = 0;\n while (i < iMax) {\n // find all items around current item, within the timeWindow\n let item = items[i];\n let neighbors = 1; // start at 1, to include itself)\n\n // loop through items left from the current item\n let j = i - 1;\n while (j >= 0 && (item.center - items[j].center) < timeWindow / 2) {\n if (!items[j].cluster && clusterCriteria(item.data, items[j].data)) {\n neighbors++;\n }\n j--;\n }\n\n // loop through items right from the current item\n let k = i + 1;\n while (k < items.length && (items[k].center - item.center) < timeWindow / 2) {\n if (clusterCriteria(item.data, items[k].data)) {\n neighbors++;\n }\n k++;\n }\n\n // loop through the created clusters\n let l = clusters.length - 1;\n while (l >= 0 && (item.center - clusters[l].center) < timeWindow) {\n if (item.group == clusters[l].group && clusterCriteria(item.data, clusters[l].data)) {\n neighbors++;\n }\n l--;\n }\n\n // aggregate until the number of items is within maxItems\n if (neighbors > maxItems) {\n // too busy in this window.\n const num = neighbors - maxItems + 1;\n const clusterItems = [];\n\n // append the items to the cluster,\n // and calculate the average start for the cluster\n let m = i;\n while (clusterItems.length < num && m < items.length) {\n if (clusterCriteria(items[m].data, items[m].data)) {\n clusterItems.push(items[m]);\n }\n m++;\n }\n\n const groupId = this.itemSet.getGroupId(item.data);\n const group = this.itemSet.groups[groupId] || this.itemSet.groups[ReservedGroupIds.UNGROUPED];\n let cluster = this._getClusterForItems(clusterItems, group, oldClusters, options);\n clusters.push(cluster);\n\n i += num;\n } else {\n delete item.cluster;\n i += 1;\n }\n }\n }\n }\n\n this.cache[level] = clusters;\n }\n\n return clusters;\n }\n\n /**\n * Filter the items per group.\n * @private\n */\n _filterData() {\n // filter per group\n const groups = {};\n this.groups = groups;\n\n // split the items per group\n for (const item of Object.values(this.items)) {\n // put the item in the correct group\n const groupName = item.parent ? item.parent.groupId : '';\n let group = groups[groupName];\n if (!group) {\n group = [];\n groups[groupName] = group;\n }\n group.push(item);\n\n // calculate the center of the item\n if (item.data.start) {\n if (item.data.end) {\n // range\n item.center = (item.data.start.valueOf() + item.data.end.valueOf()) / 2;\n } else {\n // box, dot\n item.center = item.data.start.valueOf();\n }\n }\n }\n\n // sort the items per group\n for (let currentGroupName in groups) {\n if (groups.hasOwnProperty(currentGroupName)) {\n groups[currentGroupName].sort((a, b) => a.center - b.center);\n }\n }\n\n this.dataChanged = false;\n }\n\n /**\n * Create new cluster or return existing\n * @private\n * @param {array} clusterItems \n * @param {object} group \n * @param {array} oldClusters \n * @param {object} options \n * @returns {object} cluster\n */\n _getClusterForItems(clusterItems, group, oldClusters, options) {\n const oldClustersLookup = (oldClusters || []).map(cluster => ({\n cluster,\n itemsIds: new Set(cluster.data.uiItems.map(item => item.id))\n }));\n let cluster;\n if (oldClustersLookup.length) {\n for (let oldClusterData of oldClustersLookup) {\n if (oldClusterData.itemsIds.size === clusterItems.length \n && clusterItems.every(clusterItem => oldClusterData.itemsIds.has(clusterItem.id))) {\n cluster = oldClusterData.cluster;\n break;\n }\n }\n }\n\n if (cluster) {\n cluster.setUiItems(clusterItems);\n if (cluster.group !== group) {\n if (cluster.group) {\n cluster.group.remove(cluster); \n }\n\n if (group) {\n group.add(cluster); \n cluster.group = group;\n }\n }\n return cluster;\n }\n\n let titleTemplate = options.titleTemplate || '';\n const conversion = {\n toScreen: this.itemSet.body.util.toScreen,\n toTime: this.itemSet.body.util.toTime\n };\n\n const clusterContent = '
' + clusterItems.length + '
';\n const title = titleTemplate.replace(/{count}/, clusterItems.length);\n const clusterOptions = Object.assign({}, options, this.itemSet.options);\n const data = {\n 'content': clusterContent,\n 'title': title,\n 'group': group,\n 'uiItems': clusterItems,\n 'eventEmitter': this.itemSet.body.emitter,\n 'range': this.itemSet.body.range\n };\n cluster = this.createClusterItem(data,\n conversion,\n clusterOptions);\n\n if (group) {\n group.add(cluster);\n cluster.group = group;\n }\n\n cluster.attach();\n\n return cluster;\n }\n\n /**\n * Drop cache\n * @private\n */\n _dropLevelsCache() {\n this.cache = {};\n this.cacheLevel = -1;\n this.cache[this.cacheLevel] = [];\n }\n}\n","import Hammer from '../../module/hammer';\nimport util from '../../util';\nimport { DataSet } from 'vis-data';\nimport { DataView } from 'vis-data';\nimport TimeStep from '../TimeStep';\nimport Component from './Component';\nimport Group from './Group';\nimport BackgroundGroup from './BackgroundGroup';\nimport BoxItem from './item/BoxItem';\nimport PointItem from './item/PointItem';\nimport RangeItem from './item/RangeItem';\nimport BackgroundItem from './item/BackgroundItem';\nimport Popup from '../../shared/Popup';\nimport ClusterGenerator from './ClusterGenerator';\n\nimport './css/itemset.css';\nimport './css/labelset.css';\n\nconst UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items\nconst BACKGROUND = '__background__'; // reserved group id for background items without group\n\nexport const ReservedGroupIds = {\n UNGROUPED,\n BACKGROUND\n}\n\n/**\n * An ItemSet holds a set of items and ranges which can be displayed in a\n * range. The width is determined by the parent of the ItemSet, and the height\n * is determined by the size of the items.\n */\nclass ItemSet extends Component {\n /**\n * @param {{dom: Object, domProps: Object, emitter: Emitter, range: Range}} body\n * @param {Object} [options] See ItemSet.setOptions for the available options.\n * @constructor ItemSet\n * @extends Component\n */\n constructor(body, options) {\n super()\n this.body = body;\n this.defaultOptions = {\n type: null, // 'box', 'point', 'range', 'background'\n orientation: {\n item: 'bottom' // item orientation: 'top' or 'bottom'\n },\n align: 'auto', // alignment of box items\n stack: true,\n stackSubgroups: true,\n groupOrderSwap(fromGroup, toGroup, groups) { // eslint-disable-line no-unused-vars\n const targetOrder = toGroup.order;\n toGroup.order = fromGroup.order;\n fromGroup.order = targetOrder;\n },\n groupOrder: 'order',\n\n selectable: true,\n multiselect: false,\n itemsAlwaysDraggable: {\n item: false,\n range: false,\n },\n\n editable: {\n updateTime: false,\n updateGroup: false,\n add: false,\n remove: false,\n overrideItems: false\n },\n\n groupEditable: {\n order: false,\n add: false,\n remove: false\n },\n\n snap: TimeStep.snap,\n\n // Only called when `objectData.target === 'item'.\n onDropObjectOnItem(objectData, item, callback) {\n callback(item)\n },\n onAdd(item, callback) {\n callback(item);\n },\n onUpdate(item, callback) {\n callback(item);\n },\n onMove(item, callback) {\n callback(item);\n },\n onRemove(item, callback) {\n callback(item);\n },\n onMoving(item, callback) {\n callback(item);\n },\n onAddGroup(item, callback) {\n callback(item);\n },\n onMoveGroup(item, callback) {\n callback(item);\n },\n onRemoveGroup(item, callback) {\n callback(item);\n },\n\n margin: {\n item: {\n horizontal: 10,\n vertical: 10\n },\n axis: 20\n },\n\n showTooltips: true,\n\n tooltip: {\n followMouse: false,\n overflowMethod: 'flip',\n delay: 500\n },\n\n tooltipOnItemUpdateTime: false\n };\n\n // options is shared by this ItemSet and all its items\n this.options = util.extend({}, this.defaultOptions);\n this.options.rtl = options.rtl;\n this.options.onTimeout = options.onTimeout;\n \n // options for getting items from the DataSet with the correct type\n this.itemOptions = {\n type: {start: 'Date', end: 'Date'}\n };\n \n this.conversion = {\n toScreen: body.util.toScreen,\n toTime: body.util.toTime\n };\n this.dom = {};\n this.props = {};\n this.hammer = null;\n \n const me = this;\n this.itemsData = null; // DataSet\n this.groupsData = null; // DataSet\n this.itemsSettingTime = null;\n this.initialItemSetDrawn = false;\n this.userContinueNotBail = null; \n\n this.sequentialSelection = false;\n \n // listeners for the DataSet of the items\n this.itemListeners = {\n 'add'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onAdd(params.items);\n if (me.options.cluster) {\n me.clusterGenerator.setItems(me.items, { applyOnChangedLevel: false });\n }\n me.redraw();\n },\n 'update'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onUpdate(params.items);\n if (me.options.cluster) {\n me.clusterGenerator.setItems(me.items, { applyOnChangedLevel: false });\n }\n me.redraw();\n },\n 'remove'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onRemove(params.items);\n if (me.options.cluster) {\n me.clusterGenerator.setItems(me.items, { applyOnChangedLevel: false });\n }\n me.redraw();\n }\n };\n\n // listeners for the DataSet of the groups\n this.groupListeners = {\n 'add'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onAddGroups(params.items);\n \n if (me.groupsData && me.groupsData.length > 0) {\n const groupsData = me.groupsData.getDataSet();\n groupsData.get().forEach(groupData => {\n if (groupData.nestedGroups) {\n if (groupData.showNested != false) {\n groupData.showNested = true;\n }\n let updatedGroups = [];\n groupData.nestedGroups.forEach(nestedGroupId => {\n const updatedNestedGroup = groupsData.get(nestedGroupId);\n if (!updatedNestedGroup) { return; }\n updatedNestedGroup.nestedInGroup = groupData.id;\n if (groupData.showNested == false) {\n updatedNestedGroup.visible = false;\n }\n updatedGroups = updatedGroups.concat(updatedNestedGroup);\n });\n groupsData.update(updatedGroups, senderId);\n }\n });\n }\n },\n 'update'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onUpdateGroups(params.items);\n },\n 'remove'(event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onRemoveGroups(params.items);\n }\n };\n\n this.items = {}; // object with an Item for every data item\n this.groups = {}; // Group object for every group\n this.groupIds = [];\n\n this.selection = []; // list with the ids of all selected nodes\n\n this.popup = null;\n this.popupTimer = null;\n\n this.touchParams = {}; // stores properties while dragging\n this.groupTouchParams = {\n group: null,\n isDragging: false\n };\n \n // create the HTML DOM\n this._create();\n\n this.setOptions(options);\n this.clusters = [];\n }\n\n /**\n * Create the HTML DOM for the ItemSet\n */\n _create() {\n const frame = document.createElement('div');\n frame.className = 'vis-itemset';\n frame['vis-itemset'] = this;\n this.dom.frame = frame;\n\n // create background panel\n const background = document.createElement('div');\n background.className = 'vis-background';\n frame.appendChild(background);\n this.dom.background = background;\n\n // create foreground panel\n const foreground = document.createElement('div');\n foreground.className = 'vis-foreground';\n frame.appendChild(foreground);\n this.dom.foreground = foreground;\n\n // create axis panel\n const axis = document.createElement('div');\n axis.className = 'vis-axis';\n this.dom.axis = axis;\n\n // create labelset\n const labelSet = document.createElement('div');\n labelSet.className = 'vis-labelset';\n this.dom.labelSet = labelSet;\n\n // create ungrouped Group\n this._updateUngrouped();\n\n // create background Group\n const backgroundGroup = new BackgroundGroup(BACKGROUND, null, this);\n backgroundGroup.show();\n this.groups[BACKGROUND] = backgroundGroup;\n\n // attach event listeners\n // Note: we bind to the centerContainer for the case where the height\n // of the center container is larger than of the ItemSet, so we\n // can click in the empty area to create a new item or deselect an item.\n this.hammer = new Hammer(this.body.dom.centerContainer);\n\n // drag items when selected\n this.hammer.on('hammer.input', event => {\n if (event.isFirst) {\n this._onTouch(event);\n }\n });\n this.hammer.on('panstart', this._onDragStart.bind(this));\n this.hammer.on('panmove', this._onDrag.bind(this));\n this.hammer.on('panend', this._onDragEnd.bind(this));\n this.hammer.get('pan').set({threshold:5, direction: Hammer.ALL});\n\n // single select (or unselect) when tapping an item\n this.hammer.on('tap', this._onSelectItem.bind(this));\n\n // multi select when holding mouse/touch, or on ctrl+click\n this.hammer.on('press', this._onMultiSelectItem.bind(this));\n\n // add item on doubletap\n this.hammer.on('doubletap', this._onAddItem.bind(this));\n\n if (this.options.rtl) {\n this.groupHammer = new Hammer(this.body.dom.rightContainer);\n } else {\n this.groupHammer = new Hammer(this.body.dom.leftContainer);\n }\n \n this.groupHammer.on('tap', this._onGroupClick.bind(this));\n this.groupHammer.on('panstart', this._onGroupDragStart.bind(this));\n this.groupHammer.on('panmove', this._onGroupDrag.bind(this));\n this.groupHammer.on('panend', this._onGroupDragEnd.bind(this));\n this.groupHammer.get('pan').set({threshold:5, direction: Hammer.DIRECTION_VERTICAL});\n \n this.body.dom.centerContainer.addEventListener('mouseover', this._onMouseOver.bind(this));\n this.body.dom.centerContainer.addEventListener('mouseout', this._onMouseOut.bind(this));\n this.body.dom.centerContainer.addEventListener('mousemove', this._onMouseMove.bind(this));\n // right-click on timeline \n this.body.dom.centerContainer.addEventListener('contextmenu', this._onDragEnd.bind(this));\n\n this.body.dom.centerContainer.addEventListener('mousewheel', this._onMouseWheel.bind(this));\n\n // attach to the DOM\n this.show();\n }\n\n /**\n * Set options for the ItemSet. Existing options will be extended/overwritten.\n * @param {Object} [options] The following options are available:\n * {string} type\n * Default type for the items. Choose from 'box'\n * (default), 'point', 'range', or 'background'.\n * The default style can be overwritten by\n * individual items.\n * {string} align\n * Alignment for the items, only applicable for\n * BoxItem. Choose 'center' (default), 'left', or\n * 'right'.\n * {string} orientation.item\n * Orientation of the item set. Choose 'top' or\n * 'bottom' (default).\n * {Function} groupOrder\n * A sorting function for ordering groups\n * {boolean} stack\n * If true (default), items will be stacked on\n * top of each other.\n * {number} margin.axis\n * Margin between the axis and the items in pixels.\n * Default is 20.\n * {number} margin.item.horizontal\n * Horizontal margin between items in pixels.\n * Default is 10.\n * {number} margin.item.vertical\n * Vertical Margin between items in pixels.\n * Default is 10.\n * {number} margin.item\n * Margin between items in pixels in both horizontal\n * and vertical direction. Default is 10.\n * {number} margin\n * Set margin for both axis and items in pixels.\n * {boolean} selectable\n * If true (default), items can be selected.\n * {boolean} multiselect\n * If true, multiple items can be selected.\n * False by default.\n * {boolean} editable\n * Set all editable options to true or false\n * {boolean} editable.updateTime\n * Allow dragging an item to an other moment in time\n * {boolean} editable.updateGroup\n * Allow dragging an item to an other group\n * {boolean} editable.add\n * Allow creating new items on double tap\n * {boolean} editable.remove\n * Allow removing items by clicking the delete button\n * top right of a selected item.\n * {Function(item: Item, callback: Function)} onAdd\n * Callback function triggered when an item is about to be added:\n * when the user double taps an empty space in the Timeline.\n * {Function(item: Item, callback: Function)} onUpdate\n * Callback function fired when an item is about to be updated.\n * This function typically has to show a dialog where the user\n * change the item. If not implemented, nothing happens.\n * {Function(item: Item, callback: Function)} onMove\n * Fired when an item has been moved. If not implemented,\n * the move action will be accepted.\n * {Function(item: Item, callback: Function)} onRemove\n * Fired when an item is about to be deleted.\n * If not implemented, the item will be always removed.\n */\n setOptions(options) {\n if (options) {\n // copy all options that we know\n const fields = [\n 'type', 'rtl', 'align', 'order', 'stack', 'stackSubgroups', 'selectable', 'multiselect', 'sequentialSelection',\n 'multiselectPerGroup', 'groupOrder', 'dataAttributes', 'template', 'groupTemplate', 'visibleFrameTemplate',\n 'hide', 'snap', 'groupOrderSwap', 'showTooltips', 'tooltip', 'tooltipOnItemUpdateTime', 'groupHeightMode', 'onTimeout'\n ];\n util.selectiveExtend(fields, this.options, options);\n\n if ('itemsAlwaysDraggable' in options) {\n if (typeof options.itemsAlwaysDraggable === 'boolean') {\n this.options.itemsAlwaysDraggable.item = options.itemsAlwaysDraggable;\n this.options.itemsAlwaysDraggable.range = false;\n }\n else if (typeof options.itemsAlwaysDraggable === 'object') {\n util.selectiveExtend(['item', 'range'], this.options.itemsAlwaysDraggable, options.itemsAlwaysDraggable);\n // only allow range always draggable when item is always draggable as well\n if (! this.options.itemsAlwaysDraggable.item) {\n this.options.itemsAlwaysDraggable.range = false;\n }\n }\n }\n\n if ('sequentialSelection' in options) {\n if (typeof options.sequentialSelection === 'boolean') {\n this.options.sequentialSelection = options.sequentialSelection;\n }\n }\n\n if ('orientation' in options) {\n if (typeof options.orientation === 'string') {\n this.options.orientation.item = options.orientation === 'top' ? 'top' : 'bottom';\n }\n else if (typeof options.orientation === 'object' && 'item' in options.orientation) {\n this.options.orientation.item = options.orientation.item;\n }\n }\n\n if ('margin' in options) {\n if (typeof options.margin === 'number') {\n this.options.margin.axis = options.margin;\n this.options.margin.item.horizontal = options.margin;\n this.options.margin.item.vertical = options.margin;\n }\n else if (typeof options.margin === 'object') {\n util.selectiveExtend(['axis'], this.options.margin, options.margin);\n if ('item' in options.margin) {\n if (typeof options.margin.item === 'number') {\n this.options.margin.item.horizontal = options.margin.item;\n this.options.margin.item.vertical = options.margin.item;\n }\n else if (typeof options.margin.item === 'object') {\n util.selectiveExtend(['horizontal', 'vertical'], this.options.margin.item, options.margin.item);\n }\n }\n }\n }\n\n ['locale', 'locales'].forEach(key => {\n if (key in options) {\n this.options[key] = options[key];\n }\n });\n\n if ('editable' in options) {\n if (typeof options.editable === 'boolean') {\n this.options.editable.updateTime = options.editable;\n this.options.editable.updateGroup = options.editable;\n this.options.editable.add = options.editable;\n this.options.editable.remove = options.editable;\n this.options.editable.overrideItems = false;\n }\n else if (typeof options.editable === 'object') {\n util.selectiveExtend(['updateTime', 'updateGroup', 'add', 'remove', 'overrideItems'], this.options.editable, options.editable);\n }\n }\n\n if ('groupEditable' in options) {\n if (typeof options.groupEditable === 'boolean') {\n this.options.groupEditable.order = options.groupEditable;\n this.options.groupEditable.add = options.groupEditable;\n this.options.groupEditable.remove = options.groupEditable;\n }\n else if (typeof options.groupEditable === 'object') {\n util.selectiveExtend(['order', 'add', 'remove'], this.options.groupEditable, options.groupEditable);\n }\n }\n\n // callback functions\n const addCallback = name => {\n const fn = options[name];\n if (fn) {\n if (!(typeof fn === 'function')) {\n throw new Error(`option ${name} must be a function ${name}(item, callback)`);\n }\n this.options[name] = fn;\n }\n };\n ['onDropObjectOnItem', 'onAdd', 'onUpdate', 'onRemove', 'onMove', 'onMoving', 'onAddGroup', 'onMoveGroup', 'onRemoveGroup'].forEach(addCallback);\n\n if (options.cluster) {\n Object.assign(this.options, {\n cluster: options.cluster\n });\n if (!this.clusterGenerator) {\n this.clusterGenerator = new ClusterGenerator(this);\n } \n this.clusterGenerator.setItems(this.items, { applyOnChangedLevel: false });\n this.markDirty({ refreshItems: true, restackGroups: true });\n\n this.redraw();\n } else if (this.clusterGenerator) {\n this._detachAllClusters();\n this.clusters = [];\n this.clusterGenerator = null;\n this.options.cluster = undefined;\n this.markDirty({ refreshItems: true, restackGroups: true });\n\n this.redraw();\n } else {\n // force the itemSet to refresh: options like orientation and margins may be changed\n this.markDirty();\n }\n }\n }\n\n /**\n * Mark the ItemSet dirty so it will refresh everything with next redraw.\n * Optionally, all items can be marked as dirty and be refreshed.\n * @param {{refreshItems: boolean}} [options]\n */\n markDirty(options) {\n this.groupIds = [];\n\n if (options) {\n if (options.refreshItems) {\n util.forEach(this.items, item => {\n item.dirty = true;\n if (item.displayed) item.redraw();\n });\n }\n \n if (options.restackGroups) {\n util.forEach(this.groups, (group, key) => {\n if (key === BACKGROUND) return;\n group.stackDirty = true;\n });\n }\n }\n }\n\n /**\n * Destroy the ItemSet\n */\n destroy() {\n this.clearPopupTimer();\n this.hide();\n this.setItems(null);\n this.setGroups(null);\n\n this.hammer && this.hammer.destroy();\n this.groupHammer && this.groupHammer.destroy();\n this.hammer = null;\n\n this.body = null;\n this.conversion = null;\n }\n\n /**\n * Hide the component from the DOM\n */\n hide() {\n // remove the frame containing the items\n if (this.dom.frame.parentNode) {\n this.dom.frame.parentNode.removeChild(this.dom.frame);\n }\n\n // remove the axis with dots\n if (this.dom.axis.parentNode) {\n this.dom.axis.parentNode.removeChild(this.dom.axis);\n }\n\n // remove the labelset containing all group labels\n if (this.dom.labelSet.parentNode) {\n this.dom.labelSet.parentNode.removeChild(this.dom.labelSet);\n }\n }\n\n /**\n * Show the component in the DOM (when not already visible).\n */\n show() {\n // show frame containing the items\n if (!this.dom.frame.parentNode) {\n this.body.dom.center.appendChild(this.dom.frame);\n }\n\n // show axis with dots\n if (!this.dom.axis.parentNode) {\n this.body.dom.backgroundVertical.appendChild(this.dom.axis);\n }\n\n // show labelset containing labels\n if (!this.dom.labelSet.parentNode) {\n if (this.options.rtl) {\n this.body.dom.right.appendChild(this.dom.labelSet);\n } else {\n this.body.dom.left.appendChild(this.dom.labelSet);\n }\n }\n }\n\n /**\n * Activates the popup timer to show the given popup after a fixed time.\n * @param {Popup} popup\n */\n setPopupTimer(popup) {\n this.clearPopupTimer();\n if (popup) {\n const delay = this.options.tooltip.delay || typeof this.options.tooltip.delay === 'number' ?\n this.options.tooltip.delay :\n 500;\n this.popupTimer = setTimeout(\n function () {\n popup.show()\n }, delay);\n }\n }\n\n /**\n * Clears the popup timer for the tooltip.\n */\n clearPopupTimer() {\n if (this.popupTimer != null) {\n clearTimeout(this.popupTimer);\n this.popupTimer = null;\n }\n }\n \n /**\n * Set selected items by their id. Replaces the current selection\n * Unknown id's are silently ignored.\n * @param {string[] | string} [ids] An array with zero or more id's of the items to be\n * selected, or a single item id. If ids is undefined\n * or an empty array, all items will be unselected.\n */\n setSelection(ids) {\n if (ids == undefined) { \n ids = [];\n }\n \n if (!Array.isArray(ids)) {\n ids = [ids];\n }\n \n\n const idsToDeselect = this.selection.filter(id => ids.indexOf(id) === -1);\n\n // unselect currently selected items\n for (let selectedId of idsToDeselect) {\n const item = this.getItemById(selectedId);\n if (item) {\n item.unselect();\n }\n }\n \n // select items\n this.selection = [ ...ids ];\n for (let id of ids) {\n const item = this.getItemById(id);\n if (item) {\n item.select();\n }\n }\n }\n\n /**\n * Get the selected items by their id\n * @return {Array} ids The ids of the selected items\n */\n getSelection() {\n return this.selection.concat([]);\n }\n\n /**\n * Get the id's of the currently visible items.\n * @returns {Array} The ids of the visible items\n */\n getVisibleItems() {\n const range = this.body.range.getRange();\n let right;\n let left;\n\n if (this.options.rtl) { \n right = this.body.util.toScreen(range.start);\n left = this.body.util.toScreen(range.end);\n } else {\n left = this.body.util.toScreen(range.start);\n right = this.body.util.toScreen(range.end);\n }\n\n const ids = [];\n for (const groupId in this.groups) {\n if (this.groups.hasOwnProperty(groupId)) {\n const group = this.groups[groupId];\n const rawVisibleItems = group.isVisible ? group.visibleItems : [];\n\n // filter the \"raw\" set with visibleItems into a set which is really\n // visible by pixels\n for (const item of rawVisibleItems) {\n // TODO: also check whether visible vertically\n if (this.options.rtl) { \n if ((item.right < left) && (item.right + item.width > right)) {\n ids.push(item.id);\n }\n } else {\n if ((item.left < right) && (item.left + item.width > left)) {\n ids.push(item.id);\n }\n }\n }\n }\n }\n\n return ids;\n }\n\n /**\n * Get the id's of the currently visible groups.\n * @returns {Array} The ids of the visible groups\n */\n getVisibleGroups() {\n const ids = [];\n\n for (const groupId in this.groups) {\n if (this.groups.hasOwnProperty(groupId)) {\n const group = this.groups[groupId];\n if (group.isVisible) {\n ids.push(groupId)\n }\n }\n }\n\n return ids;\n }\n \n /**\n * get item by id\n * @param {string} id\n * @return {object} item\n */\n getItemById(id) {\n return this.items[id] || this.clusters.find(cluster => cluster.id === id);\n } \n\n /**\n * Deselect a selected item\n * @param {string | number} id\n * @private\n */\n _deselect(id) {\n const selection = this.selection;\n for (let i = 0, ii = selection.length; i < ii; i++) {\n if (selection[i] == id) { // non-strict comparison!\n selection.splice(i, 1);\n break;\n }\n }\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n const margin = this.options.margin;\n const range = this.body.range;\n const asSize = util.option.asSize;\n const options = this.options;\n const orientation = options.orientation.item;\n let resized = false;\n const frame = this.dom.frame;\n\n // recalculate absolute position (before redrawing groups)\n this.props.top = this.body.domProps.top.height + this.body.domProps.border.top;\n\n if (this.options.rtl) {\n this.props.right = this.body.domProps.right.width + this.body.domProps.border.right;\n } else {\n this.props.left = this.body.domProps.left.width + this.body.domProps.border.left;\n }\n\n // update class name\n frame.className = 'vis-itemset';\n\n if (this.options.cluster) {\n this._clusterItems();\n }\n\n // reorder the groups (if needed)\n resized = this._orderGroups() || resized;\n\n // check whether zoomed (in that case we need to re-stack everything)\n // TODO: would be nicer to get this as a trigger from Range\n const visibleInterval = range.end - range.start;\n const zoomed = (visibleInterval != this.lastVisibleInterval) || (this.props.width != this.props.lastWidth);\n const scrolled = range.start != this.lastRangeStart;\n const changedStackOption = options.stack != this.lastStack;\n const changedStackSubgroupsOption = options.stackSubgroups != this.lastStackSubgroups;\n const forceRestack = (zoomed || scrolled || changedStackOption || changedStackSubgroupsOption);\n this.lastVisibleInterval = visibleInterval;\n this.lastRangeStart = range.start;\n this.lastStack = options.stack;\n this.lastStackSubgroups = options.stackSubgroups;\n\n this.props.lastWidth = this.props.width;\n const firstGroup = this._firstGroup();\n const firstMargin = {\n item: margin.item,\n axis: margin.axis\n };\n const nonFirstMargin = {\n item: margin.item,\n axis: margin.item.vertical / 2\n };\n let height = 0;\n const minHeight = margin.axis + margin.item.vertical;\n\n // redraw the background group\n this.groups[BACKGROUND].redraw(range, nonFirstMargin, forceRestack);\n\n const redrawQueue = {};\n let redrawQueueLength = 0;\n\n // collect redraw functions\n util.forEach(this.groups, (group, key) => {\n if (key === BACKGROUND) return;\n const groupMargin = group == firstGroup ? firstMargin : nonFirstMargin;\n const returnQueue = true;\n redrawQueue[key] = group.redraw(range, groupMargin, forceRestack, returnQueue);\n redrawQueueLength = redrawQueue[key].length;\n });\n\n const needRedraw = redrawQueueLength > 0;\n if (needRedraw) {\n const redrawResults = {};\n\n for (let i = 0; i < redrawQueueLength; i++) {\n util.forEach(redrawQueue, (fns, key) => {\n redrawResults[key] = fns[i]();\n });\n }\n\n // redraw all regular groups\n util.forEach(this.groups, (group, key) => {\n if (key === BACKGROUND) return;\n const groupResized = redrawResults[key];\n resized = groupResized || resized;\n height += group.height;\n });\n height = Math.max(height, minHeight);\n }\n\n height = Math.max(height, minHeight);\n\n // update frame height\n frame.style.height = asSize(height);\n\n // calculate actual size\n this.props.width = frame.offsetWidth;\n this.props.height = height;\n\n // reposition axis\n this.dom.axis.style.top = asSize((orientation == 'top') ?\n (this.body.domProps.top.height + this.body.domProps.border.top) :\n (this.body.domProps.top.height + this.body.domProps.centerContainer.height));\n if (this.options.rtl) {\n this.dom.axis.style.right = '0';\n } else {\n this.dom.axis.style.left = '0';\n }\n\n this.initialItemSetDrawn = true;\n // check if this component is resized\n resized = this._isResized() || resized;\n\n return resized;\n }\n\n /**\n * Get the first group, aligned with the axis\n * @return {Group | null} firstGroup\n * @private\n */\n _firstGroup() {\n const firstGroupIndex = (this.options.orientation.item == 'top') ? 0 : (this.groupIds.length - 1);\n const firstGroupId = this.groupIds[firstGroupIndex];\n const firstGroup = this.groups[firstGroupId] || this.groups[UNGROUPED];\n\n return firstGroup || null;\n }\n\n /**\n * Create or delete the group holding all ungrouped items. This group is used when\n * there are no groups specified.\n * @protected\n */\n _updateUngrouped() {\n let ungrouped = this.groups[UNGROUPED];\n let item;\n let itemId;\n\n if (this.groupsData) {\n // remove the group holding all ungrouped items\n if (ungrouped) {\n ungrouped.hide();\n delete this.groups[UNGROUPED];\n\n for (itemId in this.items) {\n if (this.items.hasOwnProperty(itemId)) {\n item = this.items[itemId];\n item.parent && item.parent.remove(item);\n const groupId = this.getGroupId(item.data);\n const group = this.groups[groupId];\n group && group.add(item) || item.hide();\n }\n }\n }\n }\n else {\n // create a group holding all (unfiltered) items\n if (!ungrouped) {\n const id = null;\n const data = null;\n ungrouped = new Group(id, data, this);\n this.groups[UNGROUPED] = ungrouped;\n\n for (itemId in this.items) {\n if (this.items.hasOwnProperty(itemId)) {\n item = this.items[itemId];\n ungrouped.add(item);\n }\n }\n\n ungrouped.show();\n }\n }\n }\n\n /**\n * Get the element for the labelset\n * @return {HTMLElement} labelSet\n */\n getLabelSet() {\n return this.dom.labelSet;\n }\n\n /**\n * Set items\n * @param {vis.DataSet | null} items\n */\n setItems(items) {\n this.itemsSettingTime = new Date();\n const me = this;\n let ids;\n const oldItemsData = this.itemsData;\n\n // replace the dataset\n if (!items) {\n this.itemsData = null;\n }\n else if (items instanceof DataSet || items instanceof DataView) {\n this.itemsData = items;\n }\n else {\n throw new TypeError('Data must be an instance of DataSet or DataView');\n }\n\n if (oldItemsData) {\n // unsubscribe from old dataset\n util.forEach(this.itemListeners, (callback, event) => {\n oldItemsData.off(event, callback);\n });\n\n // remove all drawn items\n ids = oldItemsData.getIds();\n this._onRemove(ids);\n }\n\n if (this.itemsData) {\n // subscribe to new dataset\n const id = this.id;\n util.forEach(this.itemListeners, (callback, event) => {\n me.itemsData.on(event, callback, id);\n });\n\n // add all new items\n ids = this.itemsData.getIds();\n this._onAdd(ids);\n\n // update the group holding all ungrouped items\n this._updateUngrouped();\n }\n\n this.body.emitter.emit('_change', {queue: true});\n }\n\n /**\n * Get the current items\n * @returns {vis.DataSet | null}\n */\n getItems() {\n return this.itemsData;\n }\n\n /**\n * Set groups\n * @param {vis.DataSet} groups\n */\n setGroups(groups) {\n const me = this;\n let ids;\n\n // unsubscribe from current dataset\n if (this.groupsData) {\n util.forEach(this.groupListeners, (callback, event) => {\n me.groupsData.off(event, callback);\n });\n\n // remove all drawn groups\n ids = this.groupsData.getIds();\n this.groupsData = null;\n this._onRemoveGroups(ids); // note: this will cause a redraw\n }\n\n // replace the dataset\n if (!groups) {\n this.groupsData = null;\n }\n else if (groups instanceof DataSet || groups instanceof DataView) {\n this.groupsData = groups;\n }\n else {\n throw new TypeError('Data must be an instance of DataSet or DataView');\n }\n\n if (this.groupsData) {\n // go over all groups nesting\n let groupsData = this.groupsData;\n if (this.groupsData instanceof DataView) {\n groupsData = this.groupsData.getDataSet()\n }\n\n groupsData.get().forEach(group => {\n if (group.nestedGroups) {\n group.nestedGroups.forEach(nestedGroupId => {\n const updatedNestedGroup = groupsData.get(nestedGroupId);\n updatedNestedGroup.nestedInGroup = group.id;\n if (group.showNested == false) {\n updatedNestedGroup.visible = false;\n }\n groupsData.update(updatedNestedGroup);\n })\n }\n });\n\n // subscribe to new dataset\n const id = this.id;\n util.forEach(this.groupListeners, (callback, event) => {\n me.groupsData.on(event, callback, id);\n });\n\n // draw all ms\n ids = this.groupsData.getIds();\n this._onAddGroups(ids);\n }\n\n // update the group holding all ungrouped items\n this._updateUngrouped();\n\n // update the order of all items in each group\n this._order();\n\n if (this.options.cluster) {\n this.clusterGenerator.updateData();\n this._clusterItems();\n this.markDirty({ refreshItems: true, restackGroups: true });\n }\n\n this.body.emitter.emit('_change', {queue: true});\n }\n\n /**\n * Get the current groups\n * @returns {vis.DataSet | null} groups\n */\n getGroups() {\n return this.groupsData;\n }\n\n /**\n * Remove an item by its id\n * @param {string | number} id\n */\n removeItem(id) {\n const item = this.itemsData.get(id);\n const dataset = this.itemsData.getDataSet();\n\n if (item) {\n // confirm deletion\n this.options.onRemove(item, item => {\n if (item) {\n // remove by id here, it is possible that an item has no id defined\n // itself, so better not delete by the item itself\n dataset.remove(id);\n }\n });\n }\n }\n\n /**\n * Get the time of an item based on it's data and options.type\n * @param {Object} itemData\n * @returns {string} Returns the type\n * @private\n */\n _getType(itemData) {\n return itemData.type || this.options.type || (itemData.end ? 'range' : 'box');\n }\n\n /**\n * Get the group id for an item\n * @param {Object} itemData\n * @returns {string} Returns the groupId\n * @private\n */\n getGroupId(itemData) {\n const type = this._getType(itemData);\n if (type == 'background' && itemData.group == undefined) {\n return BACKGROUND;\n }\n else {\n return this.groupsData ? itemData.group : UNGROUPED;\n }\n }\n\n /**\n * Handle updated items\n * @param {number[]} ids\n * @protected\n */\n _onUpdate(ids) {\n const me = this;\n\n ids.forEach(id => {\n const itemData = me.itemsData.get(id, me.itemOptions);\n let item = me.items[id];\n const type = itemData ? me._getType(itemData) : null;\n\n const constructor = ItemSet.types[type];\n let selected;\n\n if (item) {\n // update item \t\n if (!constructor || !(item instanceof constructor)) {\n // item type has changed, delete the item and recreate it\n selected = item.selected; // preserve selection of this item\n me._removeItem(item);\n item = null;\n }\n else {\n me._updateItem(item, itemData);\n }\n }\n\n if (!item && itemData) {\n // create item\n if (constructor) {\n item = new constructor(itemData, me.conversion, me.options);\n item.id = id; // TODO: not so nice setting id afterwards\n\n me._addItem(item);\n if (selected) {\n this.selection.push(id);\n item.select();\n }\n }\n else {\n throw new TypeError(`Unknown item type \"${type}\"`);\n }\n }\n });\n\n this._order();\n \n if (this.options.cluster) {\n this.clusterGenerator.setItems(this.items, { applyOnChangedLevel: false });\n this._clusterItems();\n }\n\n this.body.emitter.emit('_change', {queue: true});\n }\n\n /**\n * Handle removed items\n * @param {number[]} ids\n * @protected\n */\n _onRemove(ids) {\n let count = 0;\n const me = this;\n ids.forEach(id => {\n const item = me.items[id];\n if (item) {\n count++;\n me._removeItem(item);\n }\n });\n\n if (count) {\n // update order\n this._order();\n this.body.emitter.emit('_change', {queue: true});\n }\n }\n\n /**\n * Update the order of item in all groups\n * @private\n */\n _order() {\n // reorder the items in all groups\n // TODO: optimization: only reorder groups affected by the changed items\n util.forEach(this.groups, group => {\n group.order();\n });\n }\n\n /**\n * Handle updated groups\n * @param {number[]} ids\n * @private\n */\n _onUpdateGroups(ids) {\n this._onAddGroups(ids);\n }\n\n /**\n * Handle changed groups (added or updated)\n * @param {number[]} ids\n * @private\n */\n _onAddGroups(ids) {\n const me = this;\n\n ids.forEach(id => {\n const groupData = me.groupsData.get(id);\n let group = me.groups[id];\n\n if (!group) {\n // check for reserved ids\n if (id == UNGROUPED || id == BACKGROUND) {\n throw new Error(`Illegal group id. ${id} is a reserved id.`);\n }\n\n const groupOptions = Object.create(me.options);\n util.extend(groupOptions, {\n height: null\n });\n\n group = new Group(id, groupData, me);\n me.groups[id] = group;\n\n // add items with this groupId to the new group\n for (const itemId in me.items) {\n if (me.items.hasOwnProperty(itemId)) {\n const item = me.items[itemId];\n if (item.data.group == id) {\n group.add(item);\n }\n }\n }\n\n group.order();\n group.show();\n }\n else {\n // update group\n group.setData(groupData);\n }\n });\n\n this.body.emitter.emit('_change', {queue: true});\n }\n\n /**\n * Handle removed groups\n * @param {number[]} ids\n * @private\n */\n _onRemoveGroups(ids) {\n const groups = this.groups;\n ids.forEach(id => {\n const group = groups[id];\n\n if (group) {\n group.hide();\n delete groups[id];\n }\n });\n\n if (this.options.cluster) {\n this.clusterGenerator.updateData();\n this._clusterItems();\n } \n\n this.markDirty({ restackGroups: !!this.options.cluster });\n this.body.emitter.emit('_change', {queue: true});\n }\n\n /**\n * Reorder the groups if needed\n * @return {boolean} changed\n * @private\n */\n _orderGroups() {\n if (this.groupsData) {\n // reorder the groups\n let groupIds = this.groupsData.getIds({\n order: this.options.groupOrder\n });\n\n groupIds = this._orderNestedGroups(groupIds);\n\n const changed = !util.equalArray(groupIds, this.groupIds);\n if (changed) {\n // hide all groups, removes them from the DOM\n const groups = this.groups;\n groupIds.forEach(groupId => {\n groups[groupId].hide();\n });\n\n // show the groups again, attach them to the DOM in correct order\n groupIds.forEach(groupId => {\n groups[groupId].show();\n });\n\n this.groupIds = groupIds;\n }\n\n return changed;\n }\n else {\n return false;\n }\n }\n\n /**\n * Reorder the nested groups\n *\n * @param {Array.} groupIds\n * @returns {Array.}\n * @private\n */\n _orderNestedGroups(groupIds) {\n /**\n * Recursively order nested groups\n *\n * @param {ItemSet} t\n * @param {Array.} groupIds\n * @returns {Array.}\n * @private\n */\n function getOrderedNestedGroups(t, groupIds) {\n let result = [];\n groupIds.forEach(groupId => {\n result.push(groupId);\n const groupData = t.groupsData.get(groupId);\n if (groupData.nestedGroups) {\n const nestedGroupIds = t.groupsData.get({\n filter(nestedGroup) {\n return nestedGroup.nestedInGroup == groupId;\n },\n order: t.options.groupOrder\n }).map(nestedGroup => nestedGroup.id);\n result = result.concat(getOrderedNestedGroups(t, nestedGroupIds));\n }\n });\n\n return result;\n }\n\n const topGroupIds = groupIds.filter(groupId => !this.groupsData.get(groupId).nestedInGroup);\n\n return getOrderedNestedGroups(this, topGroupIds);\n }\n\n /**\n * Add a new item\n * @param {Item} item\n * @private\n */\n _addItem(item) {\n this.items[item.id] = item;\n\n // add to group\n const groupId = this.getGroupId(item.data);\n const group = this.groups[groupId];\n\n if (!group) {\n item.groupShowing = false;\n } else if (group && group.data && group.data.showNested) {\n item.groupShowing = true;\n }\n\n if (group) group.add(item);\n }\n\n /**\n * Update an existing item\n * @param {Item} item\n * @param {Object} itemData\n * @private\n */\n _updateItem(item, itemData) {\n // update the items data (will redraw the item when displayed)\n item.setData(itemData);\n\n const groupId = this.getGroupId(item.data);\n const group = this.groups[groupId];\n if (!group) {\n item.groupShowing = false;\n } else if (group && group.data && group.data.showNested) {\n item.groupShowing = true;\n }\n }\n\n /**\n * Delete an item from the ItemSet: remove it from the DOM, from the map\n * with items, and from the map with visible items, and from the selection\n * @param {Item} item\n * @private\n */\n _removeItem(item) {\n // remove from DOM\n item.hide();\n\n // remove from items\n delete this.items[item.id];\n\n // remove from selection\n const index = this.selection.indexOf(item.id);\n if (index != -1) this.selection.splice(index, 1);\n\n // remove from group\n item.parent && item.parent.remove(item);\n\n // remove Tooltip from DOM\n if (this.popup != null) {\n this.popup.hide();\n }\n }\n\n /**\n * Create an array containing all items being a range (having an end date)\n * @param {Array.} array\n * @returns {Array}\n * @private\n */\n _constructByEndArray(array) {\n const endArray = [];\n\n for (let i = 0; i < array.length; i++) {\n if (array[i] instanceof RangeItem) {\n endArray.push(array[i]);\n }\n }\n return endArray;\n }\n\n /**\n * Register the clicked item on touch, before dragStart is initiated.\n *\n * dragStart is initiated from a mousemove event, AFTER the mouse/touch is\n * already moving. Therefore, the mouse/touch can sometimes be above an other\n * DOM element than the item itself.\n *\n * @param {Event} event\n * @private\n */\n _onTouch(event) {\n // store the touched item, used in _onDragStart\n this.touchParams.item = this.itemFromTarget(event);\n this.touchParams.dragLeftItem = event.target.dragLeftItem || false;\n this.touchParams.dragRightItem = event.target.dragRightItem || false;\n this.touchParams.itemProps = null;\n }\n\n /**\n * Given an group id, returns the index it has.\n *\n * @param {number} groupId\n * @returns {number} index / groupId\n * @private\n */\n _getGroupIndex(groupId) {\n for (let i = 0; i < this.groupIds.length; i++) {\n if (groupId == this.groupIds[i])\n return i;\n }\n }\n\n /**\n * Start dragging the selected events\n * @param {Event} event\n * @private\n */\n _onDragStart(event) {\n if (this.touchParams.itemIsDragging) { return; }\n const item = this.touchParams.item || null;\n const me = this;\n let props;\n\n if (item && (item.selected || this.options.itemsAlwaysDraggable.item)) {\n\n if (this.options.editable.overrideItems &&\n !this.options.editable.updateTime &&\n !this.options.editable.updateGroup) {\n return;\n }\n\n // override options.editable\n if ((item.editable != null && !item.editable.updateTime && !item.editable.updateGroup)\n && !this.options.editable.overrideItems) {\n return;\n }\n\n const dragLeftItem = this.touchParams.dragLeftItem;\n const dragRightItem = this.touchParams.dragRightItem;\n this.touchParams.itemIsDragging = true;\n this.touchParams.selectedItem = item;\n\n if (dragLeftItem) {\n props = {\n item: dragLeftItem,\n initialX: event.center.x,\n dragLeft: true,\n data: this._cloneItemData(item.data)\n };\n\n this.touchParams.itemProps = [props];\n } else if (dragRightItem) {\n props = {\n item: dragRightItem,\n initialX: event.center.x,\n dragRight: true,\n data: this._cloneItemData(item.data)\n };\n\n this.touchParams.itemProps = [props];\n } else if (this.options.editable.add && (event.srcEvent.ctrlKey || event.srcEvent.metaKey)) {\n // create a new range item when dragging with ctrl key down\n this._onDragStartAddItem(event);\n } else {\n if(this.groupIds.length < 1) {\n // Mitigates a race condition if _onDragStart() is\n // called after markDirty() without redraw() being called between.\n this.redraw();\n }\n \n const baseGroupIndex = this._getGroupIndex(item.data.group);\n\n const itemsToDrag = (this.options.itemsAlwaysDraggable.item && !item.selected) ? [item.id] : this.getSelection();\n\n this.touchParams.itemProps = itemsToDrag.map(id => {\n const item = me.items[id];\n const groupIndex = me._getGroupIndex(item.data.group);\n return {\n item,\n initialX: event.center.x,\n groupOffset: baseGroupIndex-groupIndex,\n data: this._cloneItemData(item.data)\n };\n });\n }\n\n event.stopPropagation();\n } else if (this.options.editable.add && (event.srcEvent.ctrlKey || event.srcEvent.metaKey)) {\n // create a new range item when dragging with ctrl key down\n this._onDragStartAddItem(event);\n }\n }\n\n /**\n * Start creating a new range item by dragging.\n * @param {Event} event\n * @private\n */\n _onDragStartAddItem(event) {\n const snap = this.options.snap || null;\n const frameRect = this.dom.frame.getBoundingClientRect()\n\n // plus (if rtl) 10 to compensate for the drag starting as soon as you've moved 10px\n const x = this.options.rtl ? frameRect.right - event.center.x + 10 : event.center.x - frameRect.left - 10;\n\n const time = this.body.util.toTime(x);\n const scale = this.body.util.getScale();\n const step = this.body.util.getStep();\n const start = snap ? snap(time, scale, step) : time;\n const end = start;\n\n const itemData = {\n type: 'range',\n start,\n end,\n content: 'new item'\n };\n\n const id = util.randomUUID();\n itemData[this.itemsData._idProp] = id;\n\n const group = this.groupFromTarget(event);\n if (group) {\n itemData.group = group.groupId;\n }\n const newItem = new RangeItem(itemData, this.conversion, this.options);\n newItem.id = id; // TODO: not so nice setting id afterwards\n newItem.data = this._cloneItemData(itemData);\n this._addItem(newItem);\n this.touchParams.selectedItem = newItem;\n \n const props = {\n item: newItem,\n initialX: event.center.x,\n data: newItem.data\n };\n\n if (this.options.rtl) {\n props.dragLeft = true;\n } else {\n props.dragRight = true;\n }\n this.touchParams.itemProps = [props];\n\n event.stopPropagation();\n }\n\n /**\n * Drag selected items\n * @param {Event} event\n * @private\n */\n _onDrag(event) {\n if (this.popup != null && this.options.showTooltips && !this.popup.hidden) {\n // this.popup.hide();\n const container = this.body.dom.centerContainer;\n const containerRect = container.getBoundingClientRect()\n this.popup.setPosition(\n event.center.x - containerRect.left + container.offsetLeft,\n event.center.y - containerRect.top + container.offsetTop\n );\n this.popup.show(); // redraw\n }\n \n if (this.touchParams.itemProps) {\n event.stopPropagation();\n\n const me = this;\n const snap = this.options.snap || null;\n const domRootOffsetLeft = this.body.dom.root.offsetLeft;\n const xOffset = this.options.rtl ? domRootOffsetLeft + this.body.domProps.right.width : domRootOffsetLeft + this.body.domProps.left.width;\n const scale = this.body.util.getScale();\n const step = this.body.util.getStep();\n\n //only calculate the new group for the item that's actually dragged\n const selectedItem = this.touchParams.selectedItem;\n const updateGroupAllowed = ((this.options.editable.overrideItems || selectedItem.editable == null) && this.options.editable.updateGroup) ||\n (!this.options.editable.overrideItems && selectedItem.editable != null && selectedItem.editable.updateGroup);\n let newGroupBase = null;\n if (updateGroupAllowed && selectedItem) {\n if (selectedItem.data.group != undefined) {\n // drag from one group to another\n const group = me.groupFromTarget(event);\n if (group) {\n //we know the offset for all items, so the new group for all items\n //will be relative to this one.\n newGroupBase = this._getGroupIndex(group.groupId);\n }\n }\n }\n\n // move\n this.touchParams.itemProps.forEach(props => {\n const current = me.body.util.toTime(event.center.x - xOffset);\n const initial = me.body.util.toTime(props.initialX - xOffset);\n let offset;\n let initialStart;\n let initialEnd;\n let start;\n let end;\n\n if (this.options.rtl) {\n offset = -(current - initial); // ms\n } else {\n offset = (current - initial); // ms\n }\n\n let itemData = this._cloneItemData(props.item.data); // clone the data\n if (props.item.editable != null\n && !props.item.editable.updateTime\n && !props.item.editable.updateGroup\n && !me.options.editable.overrideItems) {\n return;\n }\n\n const updateTimeAllowed = ((this.options.editable.overrideItems || selectedItem.editable == null) && this.options.editable.updateTime) ||\n (!this.options.editable.overrideItems && selectedItem.editable != null && selectedItem.editable.updateTime);\n if (updateTimeAllowed) {\n if (props.dragLeft) {\n // drag left side of a range item\n if (this.options.rtl) {\n if (itemData.end != undefined) {\n initialEnd = util.convert(props.data.end, 'Date');\n end = new Date(initialEnd.valueOf() + offset);\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.end = snap ? snap(end, scale, step) : end;\n }\n } else {\n if (itemData.start != undefined) {\n initialStart = util.convert(props.data.start, 'Date');\n start = new Date(initialStart.valueOf() + offset);\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.start = snap ? snap(start, scale, step) : start;\n }\n }\n }\n else if (props.dragRight) {\n // drag right side of a range item\n if (this.options.rtl) {\n if (itemData.start != undefined) {\n initialStart = util.convert(props.data.start, 'Date');\n start = new Date(initialStart.valueOf() + offset);\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.start = snap ? snap(start, scale, step) : start;\n }\n } else {\n if (itemData.end != undefined) {\n initialEnd = util.convert(props.data.end, 'Date');\n end = new Date(initialEnd.valueOf() + offset);\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.end = snap ? snap(end, scale, step) : end;\n }\n }\n }\n else {\n // drag both start and end\n if (itemData.start != undefined) {\n\n initialStart = util.convert(props.data.start, 'Date').valueOf();\n start = new Date(initialStart + offset);\n\n if (itemData.end != undefined) {\n initialEnd = util.convert(props.data.end, 'Date');\n const duration = initialEnd.valueOf() - initialStart.valueOf();\n\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.start = snap ? snap(start, scale, step) : start;\n itemData.end = new Date(itemData.start.valueOf() + duration);\n }\n else {\n // TODO: pass a Moment instead of a Date to snap(). (Breaking change)\n itemData.start = snap ? snap(start, scale, step) : start;\n }\n }\n }\n }\n\n if (updateGroupAllowed && (!props.dragLeft && !props.dragRight) && newGroupBase!=null) {\n if (itemData.group != undefined) {\n let newOffset = newGroupBase - props.groupOffset;\n\n //make sure we stay in bounds\n newOffset = Math.max(0, newOffset);\n newOffset = Math.min(me.groupIds.length-1, newOffset);\n itemData.group = me.groupIds[newOffset];\n }\n }\n\n // confirm moving the item\n itemData = this._cloneItemData(itemData); // convert start and end to the correct type\n me.options.onMoving(itemData, itemData => {\n if (itemData) {\n props.item.setData(this._cloneItemData(itemData, 'Date'));\n }\n });\n });\n \n this.body.emitter.emit('_change');\n }\n }\n\n /**\n * Move an item to another group\n * @param {Item} item\n * @param {string | number} groupId\n * @private\n */\n _moveToGroup(item, groupId) {\n const group = this.groups[groupId];\n if (group && group.groupId != item.data.group) {\n const oldGroup = item.parent;\n oldGroup.remove(item);\n oldGroup.order();\n \n item.data.group = group.groupId;\n \n group.add(item);\n group.order();\n }\n }\n\n /**\n * End of dragging selected items\n * @param {Event} event\n * @private\n */\n _onDragEnd(event) {\n this.touchParams.itemIsDragging = false;\n if (this.touchParams.itemProps) {\n event.stopPropagation();\n\n const me = this;\n const dataset = this.itemsData.getDataSet();\n const itemProps = this.touchParams.itemProps;\n this.touchParams.itemProps = null;\n\n itemProps.forEach(props => {\n const id = props.item.id;\n const exists = me.itemsData.get(id, me.itemOptions) != null;\n\n if (!exists) {\n // add a new item\n me.options.onAdd(props.item.data, itemData => {\n me._removeItem(props.item); // remove temporary item\n if (itemData) {\n me.itemsData.getDataSet().add(itemData);\n }\n\n // force re-stacking of all items next redraw\n me.body.emitter.emit('_change');\n });\n }\n else {\n // update existing item\n const itemData = this._cloneItemData(props.item.data); // convert start and end to the correct type\n me.options.onMove(itemData, itemData => {\n if (itemData) {\n // apply changes\n itemData[dataset._idProp] = id; // ensure the item contains its id (can be undefined)\n dataset.update(itemData);\n }\n else {\n // restore original values\n props.item.setData(props.data);\n\n me.body.emitter.emit('_change');\n }\n });\n }\n });\n }\n }\n\n /**\n * On group click\n * @param {Event} event\n * @private\n */\n _onGroupClick(event) {\n const group = this.groupFromTarget(event);\n setTimeout(() => {\n this.toggleGroupShowNested(group);\n }, 1)\n }\n \n /**\n * Toggle show nested\n * @param {object} group\n * @param {boolean} force\n */\n toggleGroupShowNested(group, force = undefined) {\n\n if (!group || !group.nestedGroups) return;\n\n const groupsData = this.groupsData.getDataSet();\n\n if (force != undefined) {\n group.showNested = !!force;\n } else {\n group.showNested = !group.showNested;\n }\n\n let nestingGroup = groupsData.get(group.groupId);\n nestingGroup.showNested = group.showNested;\n\n let fullNestedGroups = group.nestedGroups;\n let nextLevel = fullNestedGroups;\n while (nextLevel.length > 0) {\n let current = nextLevel;\n nextLevel = [];\n for (let i = 0; i < current.length; i++) {\n let node = groupsData.get(current[i]);\n if (node.nestedGroups) {\n nextLevel = nextLevel.concat(node.nestedGroups);\n }\n }\n if (nextLevel.length > 0) {\n fullNestedGroups = fullNestedGroups.concat(nextLevel);\n }\n }\n let nestedGroups = groupsData.get(fullNestedGroups).map(function (nestedGroup) {\n if (nestedGroup.visible == undefined) {\n nestedGroup.visible = true;\n }\n nestedGroup.visible = !!nestingGroup.showNested;\n return nestedGroup;\n });\n\n groupsData.update(nestedGroups.concat(nestingGroup));\n\n if (nestingGroup.showNested) {\n util.removeClassName(group.dom.label, 'collapsed');\n util.addClassName(group.dom.label, 'expanded');\n } else {\n util.removeClassName(group.dom.label, 'expanded');\n util.addClassName(group.dom.label, 'collapsed');\n }\n }\n \n /**\n * Toggle group drag classname\n * @param {object} group\n */\n toggleGroupDragClassName(group) {\n group.dom.label.classList.toggle('vis-group-is-dragging');\n group.dom.foreground.classList.toggle('vis-group-is-dragging');\n }\n \n /**\n * on drag start\n * @param {Event} event\n * @return {void} \n * @private\n */\n _onGroupDragStart(event) {\n if (this.groupTouchParams.isDragging) return;\n\n if (this.options.groupEditable.order) {\n this.groupTouchParams.group = this.groupFromTarget(event);\n \n if (this.groupTouchParams.group) {\n event.stopPropagation(); \n \n this.groupTouchParams.isDragging = true;\n this.toggleGroupDragClassName(this.groupTouchParams.group);\n \n this.groupTouchParams.originalOrder = this.groupsData.getIds({\n order: this.options.groupOrder\n });\n }\n }\n }\n\n /**\n * on drag\n * @param {Event} event\n * @return {void}\n * @private\n */\n _onGroupDrag(event) {\n if (this.options.groupEditable.order && this.groupTouchParams.group) {\n event.stopPropagation();\n \n let groupsData = this.groupsData;\n if (this.groupsData instanceof DataView) {\n groupsData = this.groupsData.getDataSet()\n }\n // drag from one group to another\n const group = this.groupFromTarget(event);\n \n // try to avoid toggling when groups differ in height\n if (group && group.height != this.groupTouchParams.group.height) {\n const movingUp = (group.top < this.groupTouchParams.group.top);\n const clientY = event.center ? event.center.y : event.clientY;\n const targetGroup = group.dom.foreground.getBoundingClientRect()\n const draggedGroupHeight = this.groupTouchParams.group.height;\n if (movingUp) {\n // skip swapping the groups when the dragged group is not below clientY afterwards\n if (targetGroup.top + draggedGroupHeight < clientY) {\n return;\n }\n } else {\n const targetGroupHeight = group.height;\n // skip swapping the groups when the dragged group is not below clientY afterwards\n if (targetGroup.top + targetGroupHeight - draggedGroupHeight > clientY) {\n return;\n }\n }\n }\n \n if (group && group != this.groupTouchParams.group) {\n const targetGroup = groupsData.get(group.groupId);\n const draggedGroup = groupsData.get(this.groupTouchParams.group.groupId);\n \n // switch groups\n if (draggedGroup && targetGroup) {\n this.options.groupOrderSwap(draggedGroup, targetGroup, groupsData);\n groupsData.update(draggedGroup);\n groupsData.update(targetGroup);\n }\n \n // fetch current order of groups\n const newOrder = groupsData.getIds({\n order: this.options.groupOrder\n });\n\n \n // in case of changes since _onGroupDragStart\n if (!util.equalArray(newOrder, this.groupTouchParams.originalOrder)) {\n const origOrder = this.groupTouchParams.originalOrder;\n const draggedId = this.groupTouchParams.group.groupId;\n const numGroups = Math.min(origOrder.length, newOrder.length);\n let curPos = 0;\n let newOffset = 0;\n let orgOffset = 0;\n while (curPos < numGroups) {\n // as long as the groups are where they should be step down along the groups order\n while ((curPos+newOffset) < numGroups \n && (curPos+orgOffset) < numGroups \n && newOrder[curPos+newOffset] == origOrder[curPos+orgOffset]) {\n curPos++;\n }\n \n // all ok\n if (curPos+newOffset >= numGroups) {\n break;\n }\n \n // not all ok\n // if dragged group was move upwards everything below should have an offset\n if (newOrder[curPos+newOffset] == draggedId) {\n newOffset = 1;\n\n }\n // if dragged group was move downwards everything above should have an offset\n else if (origOrder[curPos+orgOffset] == draggedId) {\n orgOffset = 1;\n\n } \n // found a group (apart from dragged group) that has the wrong position -> switch with the \n // group at the position where other one should be, fix index arrays and continue\n else {\n const slippedPosition = newOrder.indexOf(origOrder[curPos+orgOffset]);\n const switchGroup = groupsData.get(newOrder[curPos+newOffset]);\n const shouldBeGroup = groupsData.get(origOrder[curPos+orgOffset]);\n this.options.groupOrderSwap(switchGroup, shouldBeGroup, groupsData);\n groupsData.update(switchGroup);\n groupsData.update(shouldBeGroup);\n \n const switchGroupId = newOrder[curPos+newOffset];\n newOrder[curPos+newOffset] = origOrder[curPos+orgOffset];\n newOrder[slippedPosition] = switchGroupId;\n \n curPos++;\n }\n }\n }\n \n }\n }\n }\n\n /**\n * on drag end\n * @param {Event} event\n * @return {void}\n * @private\n */\n _onGroupDragEnd(event) {\n this.groupTouchParams.isDragging = false;\n\n if (this.options.groupEditable.order && this.groupTouchParams.group) {\n event.stopPropagation();\n \n // update existing group\n const me = this;\n const id = me.groupTouchParams.group.groupId;\n const dataset = me.groupsData.getDataSet();\n const groupData = util.extend({}, dataset.get(id)); // clone the data\n me.options.onMoveGroup(groupData, groupData => {\n if (groupData) {\n // apply changes\n groupData[dataset._idProp] = id; // ensure the group contains its id (can be undefined)\n dataset.update(groupData);\n }\n else {\n\n // fetch current order of groups\n const newOrder = dataset.getIds({\n order: me.options.groupOrder\n });\n\n // restore original order\n if (!util.equalArray(newOrder, me.groupTouchParams.originalOrder)) {\n const origOrder = me.groupTouchParams.originalOrder;\n const numGroups = Math.min(origOrder.length, newOrder.length);\n let curPos = 0;\n while (curPos < numGroups) {\n // as long as the groups are where they should be step down along the groups order\n while (curPos < numGroups && newOrder[curPos] == origOrder[curPos]) {\n curPos++;\n }\n\n // all ok\n if (curPos >= numGroups) {\n break;\n }\n\n // found a group that has the wrong position -> switch with the\n // group at the position where other one should be, fix index arrays and continue\n const slippedPosition = newOrder.indexOf(origOrder[curPos]);\n const switchGroup = dataset.get(newOrder[curPos]);\n const shouldBeGroup = dataset.get(origOrder[curPos]);\n me.options.groupOrderSwap(switchGroup, shouldBeGroup, dataset);\n dataset.update(switchGroup);\n dataset.update(shouldBeGroup);\n\n const switchGroupId = newOrder[curPos];\n newOrder[curPos] = origOrder[curPos];\n newOrder[slippedPosition] = switchGroupId;\n\n curPos++;\n }\n }\n }\n });\n\n me.body.emitter.emit('groupDragged', { groupId: id });\n this.toggleGroupDragClassName(this.groupTouchParams.group);\n this.groupTouchParams.group = null;\n }\n }\n\n /**\n * Handle selecting/deselecting an item when tapping it\n * @param {Event} event\n * @private\n */\n _onSelectItem(event) {\n if (!this.options.selectable) return;\n\n const ctrlKey = event.srcEvent && (event.srcEvent.ctrlKey || event.srcEvent.metaKey);\n const shiftKey = event.srcEvent && event.srcEvent.shiftKey;\n if (ctrlKey || shiftKey) {\n this._onMultiSelectItem(event);\n return;\n }\n\n const oldSelection = this.getSelection();\n\n const item = this.itemFromTarget(event);\n const selection = item && item.selectable ? [item.id] : [];\n this.setSelection(selection);\n\n const newSelection = this.getSelection();\n\n // emit a select event,\n // except when old selection is empty and new selection is still empty\n if (newSelection.length > 0 || oldSelection.length > 0) {\n this.body.emitter.emit('select', {\n items: newSelection,\n event\n });\n }\n }\n\n /**\n * Handle hovering an item\n * @param {Event} event\n * @private\n */\n _onMouseOver(event) {\n const item = this.itemFromTarget(event);\n if (!item) return;\n\n // Item we just left\n const related = this.itemFromRelatedTarget(event);\n if (item === related) {\n // We haven't changed item, just element in the item\n return;\n }\n\n const title = item.getTitle();\n if (this.options.showTooltips && title) {\n if (this.popup == null) {\n this.popup = new Popup(this.body.dom.root,\n this.options.tooltip.overflowMethod || 'flip');\n }\n\n this.popup.setText(title);\n const container = this.body.dom.centerContainer;\n const containerRect = container.getBoundingClientRect()\n this.popup.setPosition(\n event.clientX - containerRect.left + container.offsetLeft,\n event.clientY - containerRect.top + container.offsetTop\n );\n this.setPopupTimer(this.popup);\n } else {\n // Hovering over item without a title, hide popup\n // Needed instead of _just_ in _onMouseOut due to #2572\n this.clearPopupTimer();\n if (this.popup != null) {\n this.popup.hide();\n }\n }\n\n this.body.emitter.emit('itemover', {\n item: item.id,\n event\n });\n }\n\n /**\n * on mouse start\n * @param {Event} event\n * @return {void} \n * @private\n */\n _onMouseOut(event) {\n const item = this.itemFromTarget(event);\n if (!item) return;\n\n // Item we are going to\n const related = this.itemFromRelatedTarget(event);\n if (item === related) {\n // We aren't changing item, just element in the item\n return;\n }\n\n this.clearPopupTimer();\n if (this.popup != null) {\n this.popup.hide();\n }\n\n this.body.emitter.emit('itemout', {\n item: item.id,\n event\n });\n }\n\n /**\n * on mouse move\n * @param {Event} event\n * @return {void} \n * @private\n */\n _onMouseMove(event) {\n const item = this.itemFromTarget(event);\n if (!item) return;\n\n if (this.popupTimer != null) {\n // restart timer\n this.setPopupTimer(this.popup);\n }\n \n if (this.options.showTooltips && this.options.tooltip.followMouse && this.popup && !this.popup.hidden) {\n const container = this.body.dom.centerContainer;\n const containerRect = container.getBoundingClientRect()\n this.popup.setPosition(\n event.clientX - containerRect.left + container.offsetLeft,\n event.clientY - containerRect.top + container.offsetTop\n );\n this.popup.show(); // Redraw\n }\n }\n\n /**\n * Handle mousewheel\n * @param {Event} event The event\n * @private\n */\n _onMouseWheel(event) {\n if (this.touchParams.itemIsDragging) {\n this._onDragEnd(event);\n }\n }\n\n /**\n * Handle updates of an item on double tap\n * @param {timeline.Item} item The item\n * @private\n */\n _onUpdateItem(item) {\n if (!this.options.selectable) return;\n if (!this.options.editable.updateTime) return;\n if (!this.options.editable.updateGroup) return;\n\n\n const me = this;\n \n if (item) {\n // execute async handler to update the item (or cancel it)\n const itemData = me.itemsData.get(item.id); // get a clone of the data from the dataset\n this.options.onUpdate(itemData, itemData => {\n if (itemData) {\n me.itemsData.getDataSet().update(itemData);\n }\n });\n }\n }\n\n /**\n * Handle drop event of data on item\n * Only called when `objectData.target === 'item'.\n * @param {Event} event The event \n * @private\n */\n _onDropObjectOnItem(event) {\n const item = this.itemFromTarget(event);\n const objectData = JSON.parse(event.dataTransfer.getData(\"text\"));\n this.options.onDropObjectOnItem(objectData, item)\n }\n\n /**\n * Handle creation of an item on double tap or drop of a drag event\n * @param {Event} event The event\n * @private\n */\n _onAddItem(event) {\n if (!this.options.selectable) return;\n if (!this.options.editable.add) return;\n\n const me = this;\n const snap = this.options.snap || null;\n\n // add item\n const frameRect = this.dom.frame.getBoundingClientRect()\n const x = this.options.rtl ? frameRect.right - event.center.x : event.center.x - frameRect.left;\n const start = this.body.util.toTime(x);\n const scale = this.body.util.getScale();\n const step = this.body.util.getStep();\n let end;\n\n let newItemData;\n if (event.type == 'drop') {\n newItemData = JSON.parse(event.dataTransfer.getData(\"text\"));\n newItemData.content = newItemData.content ? newItemData.content : 'new item';\n newItemData.start = newItemData.start ? newItemData.start : (snap ? snap(start, scale, step) : start);\n newItemData.type = newItemData.type || 'box';\n newItemData[this.itemsData._idProp] = newItemData.id || util.randomUUID();\n\n if (newItemData.type == 'range' && !newItemData.end) {\n end = this.body.util.toTime(x + this.props.width / 5);\n newItemData.end = snap ? snap(end, scale, step) : end;\n }\n } else {\n newItemData = {\n start: snap ? snap(start, scale, step) : start,\n content: 'new item'\n };\n newItemData[this.itemsData._idProp] = util.randomUUID();\n\n // when default type is a range, add a default end date to the new item\n if (this.options.type === 'range') {\n end = this.body.util.toTime(x + this.props.width / 5);\n newItemData.end = snap ? snap(end, scale, step) : end;\n }\n }\n\n const group = this.groupFromTarget(event);\n if (group) {\n newItemData.group = group.groupId;\n }\n\n // execute async handler to customize (or cancel) adding an item\n newItemData = this._cloneItemData(newItemData); // convert start and end to the correct type\n this.options.onAdd(newItemData, item => {\n if (item) {\n me.itemsData.getDataSet().add(item);\n if (event.type == 'drop') {\n me.setSelection([item.id]);\n }\n // TODO: need to trigger a redraw?\n }\n });\n }\n\n /**\n * Handle selecting/deselecting multiple items when holding an item\n * @param {Event} event\n * @private\n */\n _onMultiSelectItem(event) {\n if (!this.options.selectable) return;\n\n const item = this.itemFromTarget(event);\n\n if (item) {\n // multi select items (if allowed)\n\n let selection = this.options.multiselect\n ? this.getSelection() // take current selection\n : []; // deselect current selection\n\n const shiftKey = event.srcEvent && event.srcEvent.shiftKey || false;\n\n if ((shiftKey || this.options.sequentialSelection) && this.options.multiselect) {\n // select all items between the old selection and the tapped item\n const itemGroup = this.itemsData.get(item.id).group;\n\n // when filtering get the group of the last selected item\n let lastSelectedGroup = undefined;\n if (this.options.multiselectPerGroup) {\n if (selection.length > 0) {\n lastSelectedGroup = this.itemsData.get(selection[0]).group;\n }\n }\n\n // determine the selection range\n if (!this.options.multiselectPerGroup || lastSelectedGroup == undefined || lastSelectedGroup == itemGroup) {\n selection.push(item.id);\n }\n const range = ItemSet._getItemRange(this.itemsData.get(selection, this.itemOptions));\n \n if (!this.options.multiselectPerGroup || lastSelectedGroup == itemGroup) {\n // select all items within the selection range\n selection = [];\n for (const id in this.items) {\n if (this.items.hasOwnProperty(id)) {\n const _item = this.items[id];\n const start = _item.data.start;\n const end = (_item.data.end !== undefined) ? _item.data.end : start;\n\n if (start >= range.min &&\n end <= range.max &&\n (!this.options.multiselectPerGroup || lastSelectedGroup == this.itemsData.get(_item.id).group) &&\n !(_item instanceof BackgroundItem)) {\n selection.push(_item.id); // do not use id but item.id, id itself is stringified\n }\n }\n }\n }\n }\n else {\n // add/remove this item from the current selection\n const index = selection.indexOf(item.id);\n if (index == -1) {\n // item is not yet selected -> select it\n selection.push(item.id);\n }\n else {\n // item is already selected -> deselect it\n selection.splice(index, 1);\n }\n }\n\n const filteredSelection = selection.filter(item => this.getItemById(item).selectable);\n\n this.setSelection(filteredSelection);\n\n this.body.emitter.emit('select', {\n items: this.getSelection(),\n event\n });\n }\n }\n\n /**\n * Calculate the time range of a list of items\n * @param {Array.} itemsData\n * @return {{min: Date, max: Date}} Returns the range of the provided items\n * @private\n */\n static _getItemRange(itemsData) {\n let max = null;\n let min = null;\n\n itemsData.forEach(data => {\n if (min == null || data.start < min) {\n min = data.start;\n }\n\n if (data.end != undefined) {\n if (max == null || data.end > max) {\n max = data.end;\n }\n }\n else {\n if (max == null || data.start > max) {\n max = data.start;\n }\n }\n });\n\n return {\n min,\n max\n }\n }\n\n /**\n * Find an item from an element:\n * searches for the attribute 'vis-item' in the element's tree\n * @param {HTMLElement} element\n * @return {Item | null} item\n */\n itemFromElement(element) {\n let cur = element;\n while (cur) {\n if (cur.hasOwnProperty('vis-item')) {\n return cur['vis-item'];\n }\n cur = cur.parentNode;\n }\n\n return null;\n }\n\n /**\n * Find an item from an event target:\n * searches for the attribute 'vis-item' in the event target's element tree\n * @param {Event} event\n * @return {Item | null} item\n */\n itemFromTarget(event) {\n return this.itemFromElement(event.target);\n }\n\n /**\n * Find an item from an event's related target:\n * searches for the attribute 'vis-item' in the related target's element tree\n * @param {Event} event\n * @return {Item | null} item\n */\n itemFromRelatedTarget(event) {\n return this.itemFromElement(event.relatedTarget);\n }\n\n /**\n * Find the Group from an event target:\n * searches for the attribute 'vis-group' in the event target's element tree\n * @param {Event} event\n * @return {Group | null} group\n */\n groupFromTarget(event) {\n const clientY = event.center ? event.center.y : event.clientY;\n let groupIds = this.groupIds;\n \n if (groupIds.length <= 0 && this.groupsData) {\n groupIds = this.groupsData.getIds({\n order: this.options.groupOrder\n });\n }\n \n for (let i = 0; i < groupIds.length; i++) {\n const groupId = groupIds[i];\n const group = this.groups[groupId];\n const foreground = group.dom.foreground;\n const foregroundRect = foreground.getBoundingClientRect()\n if (clientY >= foregroundRect.top && clientY < foregroundRect.top + foreground.offsetHeight) {\n return group;\n }\n\n if (this.options.orientation.item === 'top') {\n if (i === this.groupIds.length - 1 && clientY > foregroundRect.top) {\n return group;\n }\n }\n else {\n if (i === 0 && clientY < foregroundRect.top + foreground.offset) {\n return group;\n }\n }\n }\n\n return null;\n }\n\n /**\n * Find the ItemSet from an event target:\n * searches for the attribute 'vis-itemset' in the event target's element tree\n * @param {Event} event\n * @return {ItemSet | null} item\n */\n static itemSetFromTarget(event) {\n let target = event.target;\n while (target) {\n if (target.hasOwnProperty('vis-itemset')) {\n return target['vis-itemset'];\n }\n target = target.parentNode;\n }\n\n return null;\n }\n\n /**\n * Clone the data of an item, and \"normalize\" it: convert the start and end date\n * to the type (Date, Moment, ...) configured in the DataSet. If not configured,\n * start and end are converted to Date.\n * @param {Object} itemData, typically `item.data`\n * @param {string} [type] Optional Date type. If not provided, the type from the DataSet is taken\n * @return {Object} The cloned object\n * @private\n */\n _cloneItemData(itemData, type) {\n const clone = util.extend({}, itemData);\n\n if (!type) {\n // convert start and end date to the type (Date, Moment, ...) configured in the DataSet\n type = this.itemsData.getDataSet()._options.type;\n }\n\n if (clone.start != undefined) {\n clone.start = util.convert(clone.start, type && type.start || 'Date');\n }\n if (clone.end != undefined) {\n clone.end = util.convert(clone.end , type && type.end || 'Date');\n }\n\n return clone;\n }\n\n /**\n * cluster items\n * @return {void} \n * @private\n */\n _clusterItems() {\n if (!this.options.cluster) {\n return;\n }\n\n const { scale } = this.body.range.conversion(this.body.domProps.center.width);\n const clusters = this.clusterGenerator.getClusters(this.clusters, scale, this.options.cluster);\n\n if (this.clusters != clusters) {\n this._detachAllClusters();\n\n if (clusters) {\n for (let cluster of clusters) {\n cluster.attach();\n }\n this.clusters = clusters;\n }\n\n this._updateClusters(clusters);\n }\n }\n\n /**\n * detach all cluster items\n * @private\n */\n _detachAllClusters() {\n if (this.options.cluster) {\n if (this.clusters && this.clusters.length) {\n for (let cluster of this.clusters) {\n cluster.detach();\n }\n }\n }\n }\n\n /**\n * update clusters\n * @param {array} clusters\n * @private\n */\n _updateClusters(clusters) {\n if (this.clusters && this.clusters.length) {\n const newClustersIds = new Set(clusters.map(cluster => cluster.id));\n const clustersToUnselect = this.clusters.filter(cluster => !newClustersIds.has(cluster.id));\n let selectionChanged = false;\n for (let cluster of clustersToUnselect) {\n const selectedIdx = this.selection.indexOf(cluster.id);\n if (selectedIdx !== -1) {\n cluster.unselect();\n this.selection.splice(selectedIdx, 1);\n selectionChanged = true;\n }\n }\n\n if (selectionChanged) {\n const newSelection = this.getSelection();\n this.body.emitter.emit('select', {\n items: newSelection,\n event: event\n });\n }\n }\n\n this.clusters = clusters || [];\n }\n}\n\n// available item types will be registered here\nItemSet.types = {\n background: BackgroundItem,\n box: BoxItem,\n range: RangeItem,\n point: PointItem\n};\n\n/**\n * Handle added items\n * @param {number[]} ids\n * @protected\n */\nItemSet.prototype._onAdd = ItemSet.prototype._onUpdate;\n\nexport default ItemSet;\n","import util from '../util';\n\nlet errorFound = false;\nlet allOptions;\nlet printStyle = 'background: #FFeeee; color: #dd0000';\n/**\n * Used to validate options.\n */\nclass Validator {\n /**\n * @ignore\n */\n constructor() {\n }\n\n /**\n * Main function to be called\n * @param {Object} options\n * @param {Object} referenceOptions\n * @param {Object} subObject\n * @returns {boolean}\n * @static\n */\n static validate(options, referenceOptions, subObject) {\n errorFound = false;\n allOptions = referenceOptions;\n let usedOptions = referenceOptions;\n if (subObject !== undefined) {\n usedOptions = referenceOptions[subObject];\n }\n Validator.parse(options, usedOptions, []);\n return errorFound;\n }\n\n\n /**\n * Will traverse an object recursively and check every value\n * @param {Object} options\n * @param {Object} referenceOptions\n * @param {array} path | where to look for the actual option\n * @static\n */\n static parse(options, referenceOptions, path) {\n for (let option in options) {\n if (options.hasOwnProperty(option)) {\n Validator.check(option, options, referenceOptions, path);\n }\n }\n }\n\n\n /**\n * Check every value. If the value is an object, call the parse function on that object.\n * @param {string} option\n * @param {Object} options\n * @param {Object} referenceOptions\n * @param {array} path | where to look for the actual option\n * @static\n */\n static check(option, options, referenceOptions, path) {\n if (referenceOptions[option] === undefined && referenceOptions.__any__ === undefined) {\n Validator.getSuggestion(option, referenceOptions, path);\n return;\n }\n\n let referenceOption = option;\n let is_object = true;\n\n if (referenceOptions[option] === undefined && referenceOptions.__any__ !== undefined) {\n // NOTE: This only triggers if the __any__ is in the top level of the options object.\n // THAT'S A REALLY BAD PLACE TO ALLOW IT!!!!\n // TODO: Examine if needed, remove if possible\n\n // __any__ is a wildcard. Any value is accepted and will be further analysed by reference.\n referenceOption = '__any__';\n\n // if the any-subgroup is not a predefined object in the configurator,\n // we do not look deeper into the object.\n is_object = (Validator.getType(options[option]) === 'object');\n }\n else {\n // Since all options in the reference are objects, we can check whether \n // they are supposed to be the object to look for the __type__ field.\n // if this is an object, we check if the correct type has been supplied to account for shorthand options.\n }\n\n let refOptionObj = referenceOptions[referenceOption];\n if (is_object && refOptionObj.__type__ !== undefined) {\n refOptionObj = refOptionObj.__type__;\n }\n\n Validator.checkFields(option, options, referenceOptions, referenceOption, refOptionObj, path);\n }\n\n /**\n *\n * @param {string} option | the option property\n * @param {Object} options | The supplied options object\n * @param {Object} referenceOptions | The reference options containing all options and their allowed formats\n * @param {string} referenceOption | Usually this is the same as option, except when handling an __any__ tag.\n * @param {string} refOptionObj | This is the type object from the reference options\n * @param {Array} path | where in the object is the option\n * @static\n */\n static checkFields(option, options, referenceOptions, referenceOption, refOptionObj, path) {\n let log = function(message) {\n console.log('%c' + message + Validator.printLocation(path, option), printStyle);\n };\n\n let optionType = Validator.getType(options[option]);\n let refOptionType = refOptionObj[optionType];\n\n if (refOptionType !== undefined) {\n // if the type is correct, we check if it is supposed to be one of a few select values\n if (Validator.getType(refOptionType) === 'array' && refOptionType.indexOf(options[option]) === -1) {\n log('Invalid option detected in \"' + option + '\".' +\n ' Allowed values are:' + Validator.print(refOptionType) +\n ' not \"' + options[option] + '\". ');\n errorFound = true;\n }\n else if (optionType === 'object' && referenceOption !== \"__any__\") {\n path = util.copyAndExtendArray(path, option);\n Validator.parse(options[option], referenceOptions[referenceOption], path);\n }\n }\n else if (refOptionObj['any'] === undefined) {\n // type of the field is incorrect and the field cannot be any\n log('Invalid type received for \"' + option +\n '\". Expected: ' + Validator.print(Object.keys(refOptionObj)) +\n '. Received [' + optionType + '] \"' + options[option] + '\"');\n errorFound = true;\n }\n }\n\n /**\n *\n * @param {Object|boolean|number|string|Array.|Date|Node|Moment|undefined|null} object\n * @returns {string}\n * @static\n */\n static getType(object) {\n var type = typeof object;\n\n if (type === 'object') {\n if (object === null) {\n return 'null';\n }\n if (object instanceof Boolean) {\n return 'boolean';\n }\n if (object instanceof Number) {\n return 'number';\n }\n if (object instanceof String) {\n return 'string';\n }\n if (Array.isArray(object)) {\n return 'array';\n }\n if (object instanceof Date) {\n return 'date';\n }\n if (object.nodeType !== undefined) {\n return 'dom';\n }\n if (object._isAMomentObject === true) {\n return 'moment';\n }\n return 'object';\n }\n else if (type === 'number') {\n return 'number';\n }\n else if (type === 'boolean') {\n return 'boolean';\n }\n else if (type === 'string') {\n return 'string';\n }\n else if (type === undefined) {\n return 'undefined';\n }\n return type;\n }\n\n /**\n * @param {string} option\n * @param {Object} options\n * @param {Array.} path\n * @static\n */\n static getSuggestion(option, options, path) {\n let localSearch = Validator.findInOptions(option,options,path,false);\n let globalSearch = Validator.findInOptions(option,allOptions,[],true);\n\n let localSearchThreshold = 8;\n let globalSearchThreshold = 4;\n\n let msg;\n if (localSearch.indexMatch !== undefined) {\n msg = ' in ' + Validator.printLocation(localSearch.path, option,'') +\n 'Perhaps it was incomplete? Did you mean: \"' + localSearch.indexMatch + '\"?\\n\\n';\n }\n else if (globalSearch.distance <= globalSearchThreshold && localSearch.distance > globalSearch.distance) {\n msg = ' in ' + Validator.printLocation(localSearch.path, option,'') +\n 'Perhaps it was misplaced? Matching option found at: ' +\n Validator.printLocation(globalSearch.path, globalSearch.closestMatch,'');\n }\n else if (localSearch.distance <= localSearchThreshold) {\n msg = '. Did you mean \"' + localSearch.closestMatch + '\"?' +\n Validator.printLocation(localSearch.path, option);\n }\n else {\n msg = '. Did you mean one of these: ' + Validator.print(Object.keys(options)) +\n Validator.printLocation(path, option);\n }\n\n console.log('%cUnknown option detected: \"' + option + '\"' + msg, printStyle);\n errorFound = true;\n }\n\n /**\n * traverse the options in search for a match.\n * @param {string} option\n * @param {Object} options\n * @param {Array} path | where to look for the actual option\n * @param {boolean} [recursive=false]\n * @returns {{closestMatch: string, path: Array, distance: number}}\n * @static\n */\n static findInOptions(option, options, path, recursive = false) {\n let min = 1e9;\n let closestMatch = '';\n let closestMatchPath = [];\n let lowerCaseOption = option.toLowerCase();\n let indexMatch = undefined;\n for (let op in options) { // eslint-disable-line guard-for-in\n let distance;\n if (options[op].__type__ !== undefined && recursive === true) {\n let result = Validator.findInOptions(option, options[op], util.copyAndExtendArray(path,op));\n if (min > result.distance) {\n closestMatch = result.closestMatch;\n closestMatchPath = result.path;\n min = result.distance;\n indexMatch = result.indexMatch;\n }\n }\n else {\n if (op.toLowerCase().indexOf(lowerCaseOption) !== -1) {\n indexMatch = op;\n }\n distance = Validator.levenshteinDistance(option, op);\n if (min > distance) {\n closestMatch = op;\n closestMatchPath = util.copyArray(path);\n min = distance;\n }\n }\n }\n return {closestMatch:closestMatch, path:closestMatchPath, distance:min, indexMatch: indexMatch};\n }\n\n /**\n * @param {Array.} path\n * @param {Object} option\n * @param {string} prefix\n * @returns {String}\n * @static\n */\n static printLocation(path, option, prefix = 'Problem value found at: \\n') {\n let str = '\\n\\n' + prefix + 'options = {\\n';\n for (let i = 0; i < path.length; i++) {\n for (let j = 0; j < i + 1; j++) {\n str += ' ';\n }\n str += path[i] + ': {\\n'\n }\n for (let j = 0; j < path.length + 1; j++) {\n str += ' ';\n }\n str += option + '\\n';\n for (let i = 0; i < path.length + 1; i++) {\n for (let j = 0; j < path.length - i; j++) {\n str += ' ';\n }\n str += '}\\n'\n }\n return str + '\\n\\n';\n }\n\n /**\n * @param {Object} options\n * @returns {String}\n * @static\n */\n static print(options) {\n return JSON.stringify(options).replace(/(\\\")|(\\[)|(\\])|(,\"__type__\")/g, \"\").replace(/(\\,)/g, ', ')\n }\n\n\n /**\n * Compute the edit distance between the two given strings\n * http://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#JavaScript\n *\n * Copyright (c) 2011 Andrei Mackenzie\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n *\n * @param {string} a\n * @param {string} b\n * @returns {Array.>}}\n * @static\n */\n static levenshteinDistance(a, b) {\n if (a.length === 0) return b.length;\n if (b.length === 0) return a.length;\n\n var matrix = [];\n\n // increment along the first column of each row\n var i;\n for (i = 0; i <= b.length; i++) {\n matrix[i] = [i];\n }\n\n // increment each column in the first row\n var j;\n for (j = 0; j <= a.length; j++) {\n matrix[0][j] = j;\n }\n\n // Fill in the rest of the matrix\n for (i = 1; i <= b.length; i++) {\n for (j = 1; j <= a.length; j++) {\n if (b.charAt(i - 1) == a.charAt(j - 1)) {\n matrix[i][j] = matrix[i - 1][j - 1];\n } else {\n matrix[i][j] = Math.min(matrix[i - 1][j - 1] + 1, // substitution\n Math.min(matrix[i][j - 1] + 1, // insertion\n matrix[i - 1][j] + 1)); // deletion\n }\n }\n }\n\n return matrix[b.length][a.length];\n }\n}\n\n\nexport {\n Validator,\n printStyle\n};\n","/**\n * This object contains all possible options. It will check if the types are correct, if required if the option is one\n * of the allowed values.\n *\n * __any__ means that the name of the property does not matter.\n * __type__ is a required field for all objects and contains the allowed types of all objects\n */\nlet string = 'string';\nlet bool = 'boolean';\nlet number = 'number';\nlet array = 'array';\nlet date = 'date';\nlet object = 'object'; // should only be in a __type__ property\nlet dom = 'dom';\nlet moment = 'moment';\nlet any = 'any';\n\nlet allOptions = {\n configure: {\n enabled: { 'boolean': bool},\n filter: { 'boolean': bool,'function': 'function'},\n container: {dom},\n __type__: {object, 'boolean': bool,'function': 'function'}\n },\n\n //globals :\n align: {string},\n alignCurrentTime: {string, 'undefined': 'undefined'},\n rtl: { 'boolean': bool, 'undefined': 'undefined'},\n rollingMode: {\n follow: { 'boolean': bool },\n offset: {number,'undefined': 'undefined'},\n __type__: {object}\n },\n onTimeout: {\n timeoutMs: {number},\n callback: {'function': 'function'},\n __type__: {object}\n },\n verticalScroll: { 'boolean': bool, 'undefined': 'undefined'},\n horizontalScroll: { 'boolean': bool, 'undefined': 'undefined'},\n autoResize: { 'boolean': bool},\n throttleRedraw: {number}, // TODO: DEPRICATED see https://github.com/almende/vis/issues/2511\n clickToUse: { 'boolean': bool},\n dataAttributes: {string, array},\n editable: {\n add: { 'boolean': bool, 'undefined': 'undefined'},\n remove: { 'boolean': bool, 'undefined': 'undefined'},\n updateGroup: { 'boolean': bool, 'undefined': 'undefined'},\n updateTime: { 'boolean': bool, 'undefined': 'undefined'},\n overrideItems: { 'boolean': bool, 'undefined': 'undefined'},\n __type__: { 'boolean': bool, object}\n },\n end: {number, date, string, moment},\n format: {\n minorLabels: {\n millisecond: {string,'undefined': 'undefined'},\n second: {string,'undefined': 'undefined'},\n minute: {string,'undefined': 'undefined'},\n hour: {string,'undefined': 'undefined'},\n weekday: {string,'undefined': 'undefined'},\n day: {string,'undefined': 'undefined'},\n week: {string,'undefined': 'undefined'},\n month: {string,'undefined': 'undefined'},\n year: {string,'undefined': 'undefined'},\n __type__: {object, 'function': 'function'}\n },\n majorLabels: {\n millisecond: {string,'undefined': 'undefined'},\n second: {string,'undefined': 'undefined'},\n minute: {string,'undefined': 'undefined'},\n hour: {string,'undefined': 'undefined'},\n weekday: {string,'undefined': 'undefined'},\n day: {string,'undefined': 'undefined'},\n week: {string,'undefined': 'undefined'},\n month: {string,'undefined': 'undefined'},\n year: {string,'undefined': 'undefined'},\n __type__: {object, 'function': 'function'}\n },\n __type__: {object}\n },\n moment: {'function': 'function'},\n groupHeightMode: {string},\n groupOrder: {string, 'function': 'function'},\n groupEditable: {\n add: { 'boolean': bool, 'undefined': 'undefined'},\n remove: { 'boolean': bool, 'undefined': 'undefined'},\n order: { 'boolean': bool, 'undefined': 'undefined'},\n __type__: { 'boolean': bool, object}\n },\n groupOrderSwap: {'function': 'function'},\n height: {string, number},\n hiddenDates: {\n start: {date, number, string, moment},\n end: {date, number, string, moment},\n repeat: {string},\n __type__: {object, array}\n },\n itemsAlwaysDraggable: {\n item: { 'boolean': bool, 'undefined': 'undefined'},\n range: { 'boolean': bool, 'undefined': 'undefined'},\n __type__: { 'boolean': bool, object}\n },\n limitSize: {'boolean': bool},\n locale:{string},\n locales:{\n __any__: {any},\n __type__: {object}\n },\n margin: {\n axis: {number},\n item: {\n horizontal: {number,'undefined': 'undefined'},\n vertical: {number,'undefined': 'undefined'},\n __type__: {object,number}\n },\n __type__: {object,number}\n },\n max: {date, number, string, moment},\n maxHeight: {number, string},\n maxMinorChars: {number},\n min: {date, number, string, moment},\n minHeight: {number, string},\n moveable: { 'boolean': bool},\n multiselect: { 'boolean': bool},\n multiselectPerGroup: { 'boolean': bool},\n onAdd: {'function': 'function'},\n onDropObjectOnItem: {'function': 'function'},\n onUpdate: {'function': 'function'},\n onMove: {'function': 'function'},\n onMoving: {'function': 'function'},\n onRemove: {'function': 'function'},\n onAddGroup: {'function': 'function'},\n onMoveGroup: {'function': 'function'},\n onRemoveGroup: {'function': 'function'},\n onInitialDrawComplete: {'function': 'function'},\n order: {'function': 'function'},\n orientation: {\n axis: {string,'undefined': 'undefined'},\n item: {string,'undefined': 'undefined'},\n __type__: {string, object}\n },\n selectable: { 'boolean': bool},\n sequentialSelection: { 'boolean': bool },\n showCurrentTime: { 'boolean': bool},\n showMajorLabels: { 'boolean': bool},\n showMinorLabels: { 'boolean': bool},\n stack: { 'boolean': bool},\n stackSubgroups: { 'boolean': bool},\n cluster: { \n maxItems: {'number': number, 'undefined': 'undefined'},\n titleTemplate: {'string': string, 'undefined': 'undefined'},\n clusterCriteria: { 'function': 'function', 'undefined': 'undefined'},\n showStipes: {'boolean': bool, 'undefined': 'undefined'},\n fitOnDoubleClick: {'boolean': bool, 'undefined': 'undefined'},\n __type__: {'boolean': bool, object}\n },\n snap: {'function': 'function', 'null': 'null'},\n start: {date, number, string, moment},\n template: {'function': 'function'},\n loadingScreenTemplate: {'function': 'function'},\n groupTemplate: {'function': 'function'},\n visibleFrameTemplate: {string, 'function': 'function'},\n showTooltips: { 'boolean': bool},\n tooltip: {\n followMouse: { 'boolean': bool },\n overflowMethod: { 'string': ['cap', 'flip', 'none'] },\n delay: {number},\n template: {'function': 'function'},\n __type__: {object}\n },\n tooltipOnItemUpdateTime: {\n template: {'function': 'function'},\n __type__: { 'boolean': bool, object}\n },\n timeAxis: {\n scale: {string,'undefined': 'undefined'},\n step: {number,'undefined': 'undefined'},\n __type__: {object}\n },\n type: {string},\n width: {string, number},\n preferZoom: { 'boolean': bool},\n zoomable: { 'boolean': bool},\n zoomKey: {string: ['ctrlKey', 'altKey', 'shiftKey', 'metaKey', '']},\n zoomFriction: {number},\n zoomMax: {number},\n zoomMin: {number},\n\n __type__: {object}\n};\n\nlet configureOptions = {\n global: {\n align: ['center', 'left', 'right'],\n alignCurrentTime: ['none', 'year', 'month', 'quarter', 'week', 'isoWeek', 'day', 'date', 'hour', 'minute', 'second'],\n direction: false,\n autoResize: true,\n clickToUse: false,\n // dataAttributes: ['all'], // FIXME: can be 'all' or string[]\n editable: {\n add: false,\n remove: false,\n updateGroup: false,\n updateTime: false\n },\n end: '',\n format: {\n minorLabels: {\n millisecond:'SSS',\n second: 's',\n minute: 'HH:mm',\n hour: 'HH:mm',\n weekday: 'ddd D',\n day: 'D',\n week: 'w',\n month: 'MMM',\n year: 'YYYY'\n },\n majorLabels: {\n millisecond:'HH:mm:ss',\n second: 'D MMMM HH:mm',\n minute: 'ddd D MMMM',\n hour: 'ddd D MMMM',\n weekday: 'MMMM YYYY',\n day: 'MMMM YYYY',\n week: 'MMMM YYYY',\n month: 'YYYY',\n year: ''\n }\n },\n groupHeightMode: ['auto', 'fixed', 'fitItems'],\n //groupOrder: {string, 'function': 'function'},\n groupsDraggable: false,\n height: '',\n //hiddenDates: {object, array},\n locale: '',\n margin: {\n axis: [20, 0, 100, 1],\n item: {\n horizontal: [10, 0, 100, 1],\n vertical: [10, 0, 100, 1]\n }\n },\n max: '',\n maxHeight: '',\n maxMinorChars: [7, 0, 20, 1],\n min: '',\n minHeight: '',\n moveable: false,\n multiselect: false,\n multiselectPerGroup: false,\n //onAdd: {'function': 'function'},\n //onUpdate: {'function': 'function'},\n //onMove: {'function': 'function'},\n //onMoving: {'function': 'function'},\n //onRename: {'function': 'function'},\n //order: {'function': 'function'},\n orientation: {\n axis: ['both', 'bottom', 'top'],\n item: ['bottom', 'top']\n },\n preferZoom: false,\n selectable: true,\n showCurrentTime: false,\n showMajorLabels: true,\n showMinorLabels: true,\n stack: true,\n stackSubgroups: true,\n cluster: false,\n //snap: {'function': 'function', nada},\n start: '',\n //template: {'function': 'function'},\n //timeAxis: {\n // scale: ['millisecond', 'second', 'minute', 'hour', 'weekday', 'day', 'week', 'month', 'year'],\n // step: [1, 1, 10, 1]\n //},\n showTooltips: true,\n tooltip: {\n followMouse: false,\n overflowMethod: 'flip',\n delay: [500, 0, 99999, 100],\n },\n tooltipOnItemUpdateTime: false,\n type: ['box', 'point', 'range', 'background'],\n width: '100%',\n zoomable: true,\n zoomKey: ['ctrlKey', 'altKey', 'shiftKey', 'metaKey', ''],\n zoomMax: [315360000000000, 10, 315360000000000, 1],\n zoomMin: [10, 10, 315360000000000, 1]\n }\n};\n\nexport {allOptions, configureOptions};\n","'use strict';\nvar toObject = require('../internals/to-object');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\nvar toLength = require('../internals/to-length');\n\n// `Array.prototype.fill` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.fill\nmodule.exports = function fill(value /* , start = 0, end = @length */) {\n var O = toObject(this);\n var length = toLength(O.length);\n var argumentsLength = arguments.length;\n var index = toAbsoluteIndex(argumentsLength > 1 ? arguments[1] : undefined, length);\n var end = argumentsLength > 2 ? arguments[2] : undefined;\n var endPos = end === undefined ? length : toAbsoluteIndex(end, length);\n while (endPos > index) O[index++] = value;\n return O;\n};\n","var $ = require('../internals/export');\nvar fill = require('../internals/array-fill');\nvar addToUnscopables = require('../internals/add-to-unscopables');\n\n// `Array.prototype.fill` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.fill\n$({ target: 'Array', proto: true }, {\n fill: fill\n});\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('fill');\n","require('../../../modules/es.array.fill');\nvar entryVirtual = require('../../../internals/entry-virtual');\n\nmodule.exports = entryVirtual('Array').fill;\n","var fill = require('../array/virtual/fill');\n\nvar ArrayPrototype = Array.prototype;\n\nmodule.exports = function (it) {\n var own = it.fill;\n return it === ArrayPrototype || (it instanceof Array && own === ArrayPrototype.fill) ? fill : own;\n};\n","module.exports = require('../../es/instance/fill');\n","module.exports = require(\"core-js-pure/stable/instance/fill\");","import Hammer from '../module/hammer';\nimport * as hammerUtil from '../hammerUtil';\nimport util from '../util';\n\n\nvar htmlColors = {black: '#000000', navy: '#000080', darkblue: '#00008B', mediumblue: '#0000CD', blue: '#0000FF', darkgreen: '#006400', green: '#008000', teal: '#008080', darkcyan: '#008B8B', deepskyblue: '#00BFFF', darkturquoise: '#00CED1', mediumspringgreen: '#00FA9A', lime: '#00FF00', springgreen: '#00FF7F', aqua: '#00FFFF', cyan: '#00FFFF', midnightblue: '#191970', dodgerblue: '#1E90FF', lightseagreen: '#20B2AA', forestgreen: '#228B22', seagreen: '#2E8B57', darkslategray: '#2F4F4F', limegreen: '#32CD32', mediumseagreen: '#3CB371', turquoise: '#40E0D0', royalblue: '#4169E1', steelblue: '#4682B4', darkslateblue: '#483D8B', mediumturquoise: '#48D1CC', indigo: '#4B0082', darkolivegreen: '#556B2F', cadetblue: '#5F9EA0', cornflowerblue: '#6495ED', mediumaquamarine: '#66CDAA', dimgray: '#696969', slateblue: '#6A5ACD', olivedrab: '#6B8E23', slategray: '#708090', lightslategray: '#778899', mediumslateblue: '#7B68EE', lawngreen: '#7CFC00', chartreuse: '#7FFF00', aquamarine: '#7FFFD4', maroon: '#800000', purple: '#800080', olive: '#808000', gray: '#808080', skyblue: '#87CEEB', lightskyblue: '#87CEFA', blueviolet: '#8A2BE2', darkred: '#8B0000', darkmagenta: '#8B008B', saddlebrown: '#8B4513', darkseagreen: '#8FBC8F', lightgreen: '#90EE90', mediumpurple: '#9370D8', darkviolet: '#9400D3', palegreen: '#98FB98', darkorchid: '#9932CC', yellowgreen: '#9ACD32', sienna: '#A0522D', brown: '#A52A2A', darkgray: '#A9A9A9', lightblue: '#ADD8E6', greenyellow: '#ADFF2F', paleturquoise: '#AFEEEE', lightsteelblue: '#B0C4DE', powderblue: '#B0E0E6', firebrick: '#B22222', darkgoldenrod: '#B8860B', mediumorchid: '#BA55D3', rosybrown: '#BC8F8F', darkkhaki: '#BDB76B', silver: '#C0C0C0', mediumvioletred: '#C71585', indianred: '#CD5C5C', peru: '#CD853F', chocolate: '#D2691E', tan: '#D2B48C', lightgrey: '#D3D3D3', palevioletred: '#D87093', thistle: '#D8BFD8', orchid: '#DA70D6', goldenrod: '#DAA520', crimson: '#DC143C', gainsboro: '#DCDCDC', plum: '#DDA0DD', burlywood: '#DEB887', lightcyan: '#E0FFFF', lavender: '#E6E6FA', darksalmon: '#E9967A', violet: '#EE82EE', palegoldenrod: '#EEE8AA', lightcoral: '#F08080', khaki: '#F0E68C', aliceblue: '#F0F8FF', honeydew: '#F0FFF0', azure: '#F0FFFF', sandybrown: '#F4A460', wheat: '#F5DEB3', beige: '#F5F5DC', whitesmoke: '#F5F5F5', mintcream: '#F5FFFA', ghostwhite: '#F8F8FF', salmon: '#FA8072', antiquewhite: '#FAEBD7', linen: '#FAF0E6', lightgoldenrodyellow: '#FAFAD2', oldlace: '#FDF5E6', red: '#FF0000', fuchsia: '#FF00FF', magenta: '#FF00FF', deeppink: '#FF1493', orangered: '#FF4500', tomato: '#FF6347', hotpink: '#FF69B4', coral: '#FF7F50', darkorange: '#FF8C00', lightsalmon: '#FFA07A', orange: '#FFA500', lightpink: '#FFB6C1', pink: '#FFC0CB', gold: '#FFD700', peachpuff: '#FFDAB9', navajowhite: '#FFDEAD', moccasin: '#FFE4B5', bisque: '#FFE4C4', mistyrose: '#FFE4E1', blanchedalmond: '#FFEBCD', papayawhip: '#FFEFD5', lavenderblush: '#FFF0F5', seashell: '#FFF5EE', cornsilk: '#FFF8DC', lemonchiffon: '#FFFACD', floralwhite: '#FFFAF0', snow: '#FFFAFA', yellow: '#FFFF00', lightyellow: '#FFFFE0', ivory: '#FFFFF0', white: '#FFFFFF'};\n\n/**\n * @param {number} [pixelRatio=1]\n */\nclass ColorPicker {\n /**\n * @param {number} [pixelRatio=1]\n */\n constructor(pixelRatio = 1) {\n this.pixelRatio = pixelRatio;\n this.generated = false;\n this.centerCoordinates = {x:289/2, y:289/2};\n this.r = 289 * 0.49;\n this.color = {r:255,g:255,b:255,a:1.0};\n this.hueCircle = undefined;\n this.initialColor = {r:255,g:255,b:255,a:1.0};\n this.previousColor= undefined;\n this.applied = false;\n\n // bound by\n this.updateCallback = () => {};\n this.closeCallback = () => {};\n\n // create all DOM elements\n this._create();\n }\n\n\n /**\n * this inserts the colorPicker into a div from the DOM\n * @param {Element} container\n */\n insertTo(container) {\n if (this.hammer !== undefined) {\n this.hammer.destroy();\n this.hammer = undefined;\n }\n this.container = container;\n this.container.appendChild(this.frame);\n this._bindHammer();\n\n this._setSize();\n }\n\n /**\n * the callback is executed on apply and save. Bind it to the application\n * @param {function} callback\n */\n setUpdateCallback(callback) {\n if (typeof callback === 'function') {\n this.updateCallback = callback;\n }\n else {\n throw new Error(\"Function attempted to set as colorPicker update callback is not a function.\");\n }\n }\n\n /**\n * the callback is executed on apply and save. Bind it to the application\n * @param {function} callback\n */\n setCloseCallback(callback) {\n if (typeof callback === 'function') {\n this.closeCallback = callback;\n }\n else {\n throw new Error(\"Function attempted to set as colorPicker closing callback is not a function.\");\n }\n }\n\n /**\n *\n * @param {string} color\n * @returns {String}\n * @private\n */\n _isColorString(color) {\n if (typeof color === 'string') {\n return htmlColors[color];\n }\n }\n\n\n /**\n * Set the color of the colorPicker\n * Supported formats:\n * 'red' --> HTML color string\n * '#ffffff' --> hex string\n * 'rgb(255,255,255)' --> rgb string\n * 'rgba(255,255,255,1.0)' --> rgba string\n * {r:255,g:255,b:255} --> rgb object\n * {r:255,g:255,b:255,a:1.0} --> rgba object\n * @param {string|Object} color\n * @param {boolean} [setInitial=true]\n */\n setColor(color, setInitial = true) {\n if (color === 'none') {\n return;\n }\n\n let rgba;\n\n // if a html color shorthand is used, convert to hex\n var htmlColor = this._isColorString(color);\n if (htmlColor !== undefined) {\n color = htmlColor;\n }\n\n // check format\n if (util.isString(color) === true) {\n if (util.isValidRGB(color) === true) {\n let rgbaArray = color.substr(4).substr(0, color.length - 5).split(',');\n rgba = {r:rgbaArray[0], g:rgbaArray[1], b:rgbaArray[2], a:1.0};\n }\n else if (util.isValidRGBA(color) === true) {\n let rgbaArray = color.substr(5).substr(0, color.length - 6).split(',');\n rgba = {r:rgbaArray[0], g:rgbaArray[1], b:rgbaArray[2], a:rgbaArray[3]};\n }\n else if (util.isValidHex(color) === true) {\n let rgbObj = util.hexToRGB(color);\n rgba = {r:rgbObj.r, g:rgbObj.g, b:rgbObj.b, a:1.0};\n }\n }\n else {\n if (color instanceof Object) {\n if (color.r !== undefined && color.g !== undefined && color.b !== undefined) {\n let alpha = color.a !== undefined ? color.a : '1.0';\n rgba = {r:color.r, g:color.g, b:color.b, a:alpha};\n }\n }\n }\n\n // set color\n if (rgba === undefined) {\n throw new Error(\"Unknown color passed to the colorPicker. Supported are strings: rgb, hex, rgba. Object: rgb ({r:r,g:g,b:b,[a:a]}). Supplied: \" + JSON.stringify(color));\n }\n else {\n this._setColor(rgba, setInitial);\n }\n }\n\n\n /**\n * this shows the color picker.\n * The hue circle is constructed once and stored.\n */\n show() {\n if (this.closeCallback !== undefined) {\n this.closeCallback();\n this.closeCallback = undefined;\n }\n\n this.applied = false;\n this.frame.style.display = 'block';\n this._generateHueCircle();\n }\n\n // ------------------------------------------ PRIVATE ----------------------------- //\n\n /**\n * Hide the picker. Is called by the cancel button.\n * Optional boolean to store the previous color for easy access later on.\n * @param {boolean} [storePrevious=true]\n * @private\n */\n _hide(storePrevious = true) {\n // store the previous color for next time;\n if (storePrevious === true) {\n this.previousColor = util.extend({}, this.color);\n }\n\n if (this.applied === true) {\n this.updateCallback(this.initialColor);\n }\n\n this.frame.style.display = 'none';\n\n // call the closing callback, restoring the onclick method.\n // this is in a setTimeout because it will trigger the show again before the click is done.\n setTimeout(() => {\n if (this.closeCallback !== undefined) {\n this.closeCallback();\n this.closeCallback = undefined;\n }\n },0);\n }\n\n\n /**\n * bound to the save button. Saves and hides.\n * @private\n */\n _save() {\n this.updateCallback(this.color);\n this.applied = false;\n this._hide();\n }\n\n\n /**\n * Bound to apply button. Saves but does not close. Is undone by the cancel button.\n * @private\n */\n _apply() {\n this.applied = true;\n this.updateCallback(this.color);\n this._updatePicker(this.color);\n }\n\n\n /**\n * load the color from the previous session.\n * @private\n */\n _loadLast() {\n if (this.previousColor !== undefined) {\n this.setColor(this.previousColor, false);\n }\n else {\n alert(\"There is no last color to load...\");\n }\n }\n\n\n /**\n * set the color, place the picker\n * @param {Object} rgba\n * @param {boolean} [setInitial=true]\n * @private\n */\n _setColor(rgba, setInitial = true) {\n // store the initial color\n if (setInitial === true) {\n this.initialColor = util.extend({}, rgba);\n }\n\n this.color = rgba;\n let hsv = util.RGBToHSV(rgba.r, rgba.g, rgba.b);\n\n let angleConvert = 2 * Math.PI;\n let radius = this.r * hsv.s;\n let x = this.centerCoordinates.x + radius * Math.sin(angleConvert * hsv.h);\n let y = this.centerCoordinates.y + radius * Math.cos(angleConvert * hsv.h);\n\n this.colorPickerSelector.style.left = x - 0.5 * this.colorPickerSelector.clientWidth + 'px';\n this.colorPickerSelector.style.top = y - 0.5 * this.colorPickerSelector.clientHeight + 'px';\n\n this._updatePicker(rgba);\n }\n\n\n /**\n * bound to opacity control\n * @param {number} value\n * @private\n */\n _setOpacity(value) {\n this.color.a = value / 100;\n this._updatePicker(this.color);\n }\n\n\n /**\n * bound to brightness control\n * @param {number} value\n * @private\n */\n _setBrightness(value) {\n let hsv = util.RGBToHSV(this.color.r, this.color.g, this.color.b);\n hsv.v = value / 100;\n let rgba = util.HSVToRGB(hsv.h, hsv.s, hsv.v);\n rgba['a'] = this.color.a;\n this.color = rgba;\n this._updatePicker();\n }\n\n\n /**\n * update the color picker. A black circle overlays the hue circle to mimic the brightness decreasing.\n * @param {Object} rgba\n * @private\n */\n _updatePicker(rgba = this.color) {\n let hsv = util.RGBToHSV(rgba.r, rgba.g, rgba.b);\n let ctx = this.colorPickerCanvas.getContext('2d');\n if (this.pixelRation === undefined) {\n this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio ||\n ctx.mozBackingStorePixelRatio ||\n ctx.msBackingStorePixelRatio ||\n ctx.oBackingStorePixelRatio ||\n ctx.backingStorePixelRatio || 1);\n }\n ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0);\n\n // clear the canvas\n let w = this.colorPickerCanvas.clientWidth;\n let h = this.colorPickerCanvas.clientHeight;\n ctx.clearRect(0, 0, w, h);\n\n ctx.putImageData(this.hueCircle, 0,0);\n ctx.fillStyle = 'rgba(0,0,0,' + (1- hsv.v) + ')';\n ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r);\n ctx.fill();\n\n this.brightnessRange.value = 100 * hsv.v;\n this.opacityRange.value = 100 * rgba.a;\n\n this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')';\n this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')';\n }\n\n\n /**\n * used by create to set the size of the canvas.\n * @private\n */\n _setSize() {\n this.colorPickerCanvas.style.width = '100%';\n this.colorPickerCanvas.style.height = '100%';\n\n this.colorPickerCanvas.width = 289 * this.pixelRatio;\n this.colorPickerCanvas.height = 289 * this.pixelRatio;\n }\n\n\n /**\n * create all dom elements\n * TODO: cleanup, lots of similar dom elements\n * @private\n */\n _create() {\n this.frame = document.createElement('div');\n this.frame.className = 'vis-color-picker';\n\n this.colorPickerDiv = document.createElement('div');\n this.colorPickerSelector = document.createElement('div');\n this.colorPickerSelector.className = 'vis-selector';\n this.colorPickerDiv.appendChild(this.colorPickerSelector);\n\n this.colorPickerCanvas = document.createElement('canvas');\n this.colorPickerDiv.appendChild(this.colorPickerCanvas);\n\n if (!this.colorPickerCanvas.getContext) {\n let noCanvas = document.createElement( 'DIV' );\n noCanvas.style.color = 'red';\n noCanvas.style.fontWeight = 'bold' ;\n noCanvas.style.padding = '10px';\n noCanvas.innerHTML = 'Error: your browser does not support HTML canvas';\n this.colorPickerCanvas.appendChild(noCanvas);\n }\n else {\n let ctx = this.colorPickerCanvas.getContext(\"2d\");\n this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio ||\n ctx.mozBackingStorePixelRatio ||\n ctx.msBackingStorePixelRatio ||\n ctx.oBackingStorePixelRatio ||\n ctx.backingStorePixelRatio || 1);\n this.colorPickerCanvas.getContext(\"2d\").setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0);\n }\n\n this.colorPickerDiv.className = 'vis-color';\n\n this.opacityDiv = document.createElement('div');\n this.opacityDiv.className = 'vis-opacity';\n\n this.brightnessDiv = document.createElement('div');\n this.brightnessDiv.className = 'vis-brightness';\n\n this.arrowDiv = document.createElement('div');\n this.arrowDiv.className = 'vis-arrow';\n\n this.opacityRange = document.createElement('input');\n try {\n this.opacityRange.type = 'range'; // Not supported on IE9\n this.opacityRange.min = '0';\n this.opacityRange.max = '100';\n }\n // TODO: Add some error handling and remove this lint exception\n catch (err) {} // eslint-disable-line no-empty\n this.opacityRange.value = '100';\n this.opacityRange.className = 'vis-range';\n\n this.brightnessRange = document.createElement('input');\n try {\n this.brightnessRange.type = 'range'; // Not supported on IE9\n this.brightnessRange.min = '0';\n this.brightnessRange.max = '100';\n }\n // TODO: Add some error handling and remove this lint exception\n catch (err) {} // eslint-disable-line no-empty\n this.brightnessRange.value = '100';\n this.brightnessRange.className = 'vis-range';\n\n this.opacityDiv.appendChild(this.opacityRange);\n this.brightnessDiv.appendChild(this.brightnessRange);\n\n var me = this;\n this.opacityRange.onchange = function () {me._setOpacity(this.value);};\n this.opacityRange.oninput = function () {me._setOpacity(this.value);};\n this.brightnessRange.onchange = function () {me._setBrightness(this.value);};\n this.brightnessRange.oninput = function () {me._setBrightness(this.value);};\n\n this.brightnessLabel = document.createElement(\"div\");\n this.brightnessLabel.className = \"vis-label vis-brightness\";\n this.brightnessLabel.innerHTML = 'brightness:';\n\n this.opacityLabel = document.createElement(\"div\");\n this.opacityLabel.className = \"vis-label vis-opacity\";\n this.opacityLabel.innerHTML = 'opacity:';\n\n this.newColorDiv = document.createElement(\"div\");\n this.newColorDiv.className = \"vis-new-color\";\n this.newColorDiv.innerHTML = 'new';\n\n this.initialColorDiv = document.createElement(\"div\");\n this.initialColorDiv.className = \"vis-initial-color\";\n this.initialColorDiv.innerHTML = 'initial';\n\n this.cancelButton = document.createElement(\"div\");\n this.cancelButton.className = \"vis-button vis-cancel\";\n this.cancelButton.innerHTML = 'cancel';\n this.cancelButton.onclick = this._hide.bind(this, false);\n\n this.applyButton = document.createElement(\"div\");\n this.applyButton.className = \"vis-button vis-apply\";\n this.applyButton.innerHTML = 'apply';\n this.applyButton.onclick = this._apply.bind(this);\n\n this.saveButton = document.createElement(\"div\");\n this.saveButton.className = \"vis-button vis-save\";\n this.saveButton.innerHTML = 'save';\n this.saveButton.onclick = this._save.bind(this);\n\n this.loadButton = document.createElement(\"div\");\n this.loadButton.className = \"vis-button vis-load\";\n this.loadButton.innerHTML = 'load last';\n this.loadButton.onclick = this._loadLast.bind(this);\n\n this.frame.appendChild(this.colorPickerDiv);\n this.frame.appendChild(this.arrowDiv);\n this.frame.appendChild(this.brightnessLabel);\n this.frame.appendChild(this.brightnessDiv);\n this.frame.appendChild(this.opacityLabel);\n this.frame.appendChild(this.opacityDiv);\n this.frame.appendChild(this.newColorDiv);\n this.frame.appendChild(this.initialColorDiv);\n\n this.frame.appendChild(this.cancelButton);\n this.frame.appendChild(this.applyButton);\n this.frame.appendChild(this.saveButton);\n this.frame.appendChild(this.loadButton);\n }\n\n\n /**\n * bind hammer to the color picker\n * @private\n */\n _bindHammer() {\n this.drag = {};\n this.pinch = {};\n this.hammer = new Hammer(this.colorPickerCanvas);\n this.hammer.get('pinch').set({enable: true});\n\n hammerUtil.onTouch(this.hammer, (event) => {this._moveSelector(event)});\n this.hammer.on('tap', (event) => {this._moveSelector(event)});\n this.hammer.on('panstart', (event) => {this._moveSelector(event)});\n this.hammer.on('panmove', (event) => {this._moveSelector(event)});\n this.hammer.on('panend', (event) => {this._moveSelector(event)});\n }\n\n\n /**\n * generate the hue circle. This is relatively heavy (200ms) and is done only once on the first time it is shown.\n * @private\n */\n _generateHueCircle() {\n if (this.generated === false) {\n let ctx = this.colorPickerCanvas.getContext('2d');\n if (this.pixelRation === undefined) {\n this.pixelRatio = (window.devicePixelRatio || 1) / (ctx.webkitBackingStorePixelRatio ||\n ctx.mozBackingStorePixelRatio ||\n ctx.msBackingStorePixelRatio ||\n ctx.oBackingStorePixelRatio ||\n ctx.backingStorePixelRatio || 1);\n }\n ctx.setTransform(this.pixelRatio, 0, 0, this.pixelRatio, 0, 0);\n\n // clear the canvas\n let w = this.colorPickerCanvas.clientWidth;\n let h = this.colorPickerCanvas.clientHeight;\n ctx.clearRect(0, 0, w, h);\n\n\n // draw hue circle\n let x, y, hue, sat;\n this.centerCoordinates = {x: w * 0.5, y: h * 0.5};\n this.r = 0.49 * w;\n let angleConvert = (2 * Math.PI) / 360;\n let hfac = 1 / 360;\n let sfac = 1 / this.r;\n let rgb;\n for (hue = 0; hue < 360; hue++) {\n for (sat = 0; sat < this.r; sat++) {\n x = this.centerCoordinates.x + sat * Math.sin(angleConvert * hue);\n y = this.centerCoordinates.y + sat * Math.cos(angleConvert * hue);\n rgb = util.HSVToRGB(hue * hfac, sat * sfac, 1);\n ctx.fillStyle = 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')';\n ctx.fillRect(x - 0.5, y - 0.5, 2, 2);\n }\n }\n ctx.strokeStyle = 'rgba(0,0,0,1)';\n ctx.circle(this.centerCoordinates.x, this.centerCoordinates.y, this.r);\n ctx.stroke();\n\n this.hueCircle = ctx.getImageData(0,0,w,h);\n }\n this.generated = true;\n }\n\n\n /**\n * move the selector. This is called by hammer functions.\n *\n * @param {Event} event The event\n * @private\n */\n _moveSelector(event) {\n let rect = this.colorPickerDiv.getBoundingClientRect();\n let left = event.center.x - rect.left;\n let top = event.center.y - rect.top;\n\n let centerY = 0.5 * this.colorPickerDiv.clientHeight;\n let centerX = 0.5 * this.colorPickerDiv.clientWidth;\n\n let x = left - centerX;\n let y = top - centerY;\n\n let angle = Math.atan2(x,y);\n let radius = 0.98 * Math.min(Math.sqrt(x * x + y * y), centerX);\n\n let newTop = Math.cos(angle) * radius + centerY;\n let newLeft = Math.sin(angle) * radius + centerX;\n\n this.colorPickerSelector.style.top = newTop - 0.5 * this.colorPickerSelector.clientHeight + 'px';\n this.colorPickerSelector.style.left = newLeft - 0.5 * this.colorPickerSelector.clientWidth + 'px';\n\n // set color\n let h = angle / (2 * Math.PI);\n h = h < 0 ? h + 1 : h;\n let s = radius / this.r;\n let hsv = util.RGBToHSV(this.color.r, this.color.g, this.color.b);\n hsv.h = h;\n hsv.s = s;\n let rgba = util.HSVToRGB(hsv.h, hsv.s, hsv.v);\n rgba['a'] = this.color.a;\n this.color = rgba;\n\n // update previews\n this.initialColorDiv.style.backgroundColor = 'rgba(' + this.initialColor.r + ',' + this.initialColor.g + ',' + this.initialColor.b + ',' + this.initialColor.a + ')';\n this.newColorDiv.style.backgroundColor = 'rgba(' + this.color.r + ',' + this.color.g + ',' + this.color.b + ',' + this.color.a + ')';\n }\n}\n\nexport default ColorPicker;\n","import util from '../util';\nimport ColorPicker from './ColorPicker';\n\nimport './configuration.css';\n\n/**\n * The way this works is for all properties of this.possible options, you can supply the property name in any form to list the options.\n * Boolean options are recognised as Boolean\n * Number options should be written as array: [default value, min value, max value, stepsize]\n * Colors should be written as array: ['color', '#ffffff']\n * Strings with should be written as array: [option1, option2, option3, ..]\n *\n * The options are matched with their counterparts in each of the modules and the values used in the configuration are\n */\nclass Configurator {\n /**\n * @param {Object} parentModule | the location where parentModule.setOptions() can be called\n * @param {Object} defaultContainer | the default container of the module\n * @param {Object} configureOptions | the fully configured and predefined options set found in allOptions.js\n * @param {number} pixelRatio | canvas pixel ratio\n */\n constructor(parentModule, defaultContainer, configureOptions, pixelRatio = 1) {\n this.parent = parentModule;\n this.changedOptions = [];\n this.container = defaultContainer;\n this.allowCreation = false;\n\n this.options = {};\n this.initialized = false;\n this.popupCounter = 0;\n this.defaultOptions = {\n enabled: false,\n filter: true,\n container: undefined,\n showButton: true\n };\n util.extend(this.options, this.defaultOptions);\n\n this.configureOptions = configureOptions;\n this.moduleOptions = {};\n this.domElements = [];\n this.popupDiv = {};\n this.popupLimit = 5;\n this.popupHistory = {};\n this.colorPicker = new ColorPicker(pixelRatio);\n this.wrapper = undefined;\n }\n\n\n /**\n * refresh all options.\n * Because all modules parse their options by themselves, we just use their options. We copy them here.\n *\n * @param {Object} options\n */\n setOptions(options) {\n if (options !== undefined) {\n // reset the popup history because the indices may have been changed.\n this.popupHistory = {};\n this._removePopup();\n\n let enabled = true;\n if (typeof options === 'string') {\n this.options.filter = options;\n }\n else if (options instanceof Array) {\n this.options.filter = options.join();\n }\n else if (typeof options === 'object') {\n if (options == null) {\n throw new TypeError('options cannot be null');\n }\n if (options.container !== undefined) {\n this.options.container = options.container;\n }\n if (options.filter !== undefined) {\n this.options.filter = options.filter;\n }\n if (options.showButton !== undefined) {\n this.options.showButton = options.showButton;\n }\n if (options.enabled !== undefined) {\n enabled = options.enabled;\n }\n }\n else if (typeof options === 'boolean') {\n this.options.filter = true;\n enabled = options;\n }\n else if (typeof options === 'function') {\n this.options.filter = options;\n enabled = true;\n }\n if (this.options.filter === false) {\n enabled = false;\n }\n\n this.options.enabled = enabled;\n }\n this._clean();\n }\n\n /**\n *\n * @param {Object} moduleOptions\n */\n setModuleOptions(moduleOptions) {\n this.moduleOptions = moduleOptions;\n if (this.options.enabled === true) {\n this._clean();\n if (this.options.container !== undefined) {\n this.container = this.options.container;\n }\n this._create();\n }\n }\n\n /**\n * Create all DOM elements\n * @private\n */\n _create() {\n this._clean();\n this.changedOptions = [];\n\n let filter = this.options.filter;\n let counter = 0;\n let show = false;\n for (let option in this.configureOptions) {\n if (this.configureOptions.hasOwnProperty(option)) {\n this.allowCreation = false;\n show = false;\n if (typeof filter === 'function') {\n show = filter(option,[]);\n show = show || this._handleObject(this.configureOptions[option], [option], true);\n }\n else if (filter === true || filter.indexOf(option) !== -1) {\n show = true;\n }\n\n if (show !== false) {\n this.allowCreation = true;\n\n // linebreak between categories\n if (counter > 0) {\n this._makeItem([]);\n }\n // a header for the category\n this._makeHeader(option);\n\n // get the sub options\n this._handleObject(this.configureOptions[option], [option]);\n }\n counter++;\n }\n }\n this._makeButton();\n this._push();\n //~ this.colorPicker.insertTo(this.container);\n }\n\n\n /**\n * draw all DOM elements on the screen\n * @private\n */\n _push() {\n this.wrapper = document.createElement('div');\n this.wrapper.className = 'vis-configuration-wrapper';\n this.container.appendChild(this.wrapper);\n for (var i = 0; i < this.domElements.length; i++) {\n this.wrapper.appendChild(this.domElements[i]);\n }\n\n this._showPopupIfNeeded()\n }\n\n\n /**\n * delete all DOM elements\n * @private\n */\n _clean() {\n for (var i = 0; i < this.domElements.length; i++) {\n this.wrapper.removeChild(this.domElements[i]);\n }\n\n if (this.wrapper !== undefined) {\n this.container.removeChild(this.wrapper);\n this.wrapper = undefined;\n }\n this.domElements = [];\n\n this._removePopup();\n }\n\n\n /**\n * get the value from the actualOptions if it exists\n * @param {array} path | where to look for the actual option\n * @returns {*}\n * @private\n */\n _getValue(path) {\n let base = this.moduleOptions;\n for (let i = 0; i < path.length; i++) {\n if (base[path[i]] !== undefined) {\n base = base[path[i]];\n }\n else {\n base = undefined;\n break;\n }\n }\n return base;\n }\n\n\n /**\n * all option elements are wrapped in an item\n * @param {Array} path | where to look for the actual option\n * @param {Array.} domElements\n * @returns {number}\n * @private\n */\n _makeItem(path, ...domElements) {\n if (this.allowCreation === true) {\n let item = document.createElement('div');\n item.className = 'vis-configuration vis-config-item vis-config-s' + path.length;\n domElements.forEach((element) => {\n item.appendChild(element);\n });\n this.domElements.push(item);\n return this.domElements.length;\n }\n return 0;\n }\n\n\n /**\n * header for major subjects\n * @param {string} name\n * @private\n */\n _makeHeader(name) {\n let div = document.createElement('div');\n div.className = 'vis-configuration vis-config-header';\n div.innerHTML = name;\n this._makeItem([],div);\n }\n\n\n /**\n * make a label, if it is an object label, it gets different styling.\n * @param {string} name\n * @param {array} path | where to look for the actual option\n * @param {string} objectLabel\n * @returns {HTMLElement}\n * @private\n */\n _makeLabel(name, path, objectLabel = false) {\n let div = document.createElement('div');\n div.className = 'vis-configuration vis-config-label vis-config-s' + path.length;\n if (objectLabel === true) {\n div.innerHTML = '' + name + ':';\n }\n else {\n div.innerHTML = name + ':';\n }\n return div;\n }\n\n\n /**\n * make a dropdown list for multiple possible string optoins\n * @param {Array.} arr\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _makeDropdown(arr, value, path) {\n let select = document.createElement('select');\n select.className = 'vis-configuration vis-config-select';\n let selectedValue = 0;\n if (value !== undefined) {\n if (arr.indexOf(value) !== -1) {\n selectedValue = arr.indexOf(value);\n }\n }\n\n for (let i = 0; i < arr.length; i++) {\n let option = document.createElement('option');\n option.value = arr[i];\n if (i === selectedValue) {\n option.selected = 'selected';\n }\n option.innerHTML = arr[i];\n select.appendChild(option);\n }\n\n let me = this;\n select.onchange = function () {me._update(this.value, path);};\n\n let label = this._makeLabel(path[path.length-1], path);\n this._makeItem(path, label, select);\n }\n\n\n /**\n * make a range object for numeric options\n * @param {Array.} arr\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _makeRange(arr, value, path) {\n let defaultValue = arr[0];\n let min = arr[1];\n let max = arr[2];\n let step = arr[3];\n let range = document.createElement('input');\n range.className = 'vis-configuration vis-config-range';\n try {\n range.type = 'range'; // not supported on IE9\n range.min = min;\n range.max = max;\n }\n // TODO: Add some error handling and remove this lint exception\n catch (err) {} // eslint-disable-line no-empty\n range.step = step;\n\n // set up the popup settings in case they are needed.\n let popupString = '';\n let popupValue = 0;\n\n if (value !== undefined) {\n let factor = 1.20;\n if (value < 0 && value * factor < min) {\n range.min = Math.ceil(value * factor);\n popupValue = range.min;\n popupString = 'range increased';\n }\n else if (value / factor < min) {\n range.min = Math.ceil(value / factor);\n popupValue = range.min;\n popupString = 'range increased';\n }\n if (value * factor > max && max !== 1) {\n range.max = Math.ceil(value * factor);\n popupValue = range.max;\n popupString = 'range increased';\n }\n range.value = value;\n }\n else {\n range.value = defaultValue;\n }\n\n let input = document.createElement('input');\n input.className = 'vis-configuration vis-config-rangeinput';\n input.value = Number(range.value);\n\n var me = this;\n range.onchange = function () {input.value = this.value; me._update(Number(this.value), path);};\n range.oninput = function () {input.value = this.value; };\n\n let label = this._makeLabel(path[path.length-1], path);\n let itemIndex = this._makeItem(path, label, range, input);\n\n // if a popup is needed AND it has not been shown for this value, show it.\n if (popupString !== '' && this.popupHistory[itemIndex] !== popupValue) {\n this.popupHistory[itemIndex] = popupValue;\n this._setupPopup(popupString, itemIndex);\n }\n }\n\n /**\n * make a button object\n * @private\n */\n _makeButton() {\n if (this.options.showButton === true) {\n let generateButton = document.createElement('div');\n generateButton.className = 'vis-configuration vis-config-button';\n generateButton.innerHTML = 'generate options';\n generateButton.onclick = () => {this._printOptions();};\n generateButton.onmouseover = () => {generateButton.className = 'vis-configuration vis-config-button hover';};\n generateButton.onmouseout = () => {generateButton.className = 'vis-configuration vis-config-button';};\n\n this.optionsContainer = document.createElement('div');\n this.optionsContainer.className = 'vis-configuration vis-config-option-container';\n\n this.domElements.push(this.optionsContainer);\n this.domElements.push(generateButton);\n }\n }\n\n\n /**\n * prepare the popup\n * @param {string} string\n * @param {number} index\n * @private\n */\n _setupPopup(string, index) {\n if (this.initialized === true && this.allowCreation === true && this.popupCounter < this.popupLimit) {\n let div = document.createElement(\"div\");\n div.id = \"vis-configuration-popup\";\n div.className = \"vis-configuration-popup\";\n div.innerHTML = string;\n div.onclick = () => {this._removePopup()};\n this.popupCounter += 1;\n this.popupDiv = {html:div, index:index};\n }\n }\n\n\n /**\n * remove the popup from the dom\n * @private\n */\n _removePopup() {\n if (this.popupDiv.html !== undefined) {\n this.popupDiv.html.parentNode.removeChild(this.popupDiv.html);\n clearTimeout(this.popupDiv.hideTimeout);\n clearTimeout(this.popupDiv.deleteTimeout);\n this.popupDiv = {};\n }\n }\n\n\n /**\n * Show the popup if it is needed.\n * @private\n */\n _showPopupIfNeeded() {\n if (this.popupDiv.html !== undefined) {\n let correspondingElement = this.domElements[this.popupDiv.index];\n let rect = correspondingElement.getBoundingClientRect();\n this.popupDiv.html.style.left = rect.left + \"px\";\n this.popupDiv.html.style.top = rect.top - 30 + \"px\"; // 30 is the height;\n document.body.appendChild(this.popupDiv.html)\n this.popupDiv.hideTimeout = setTimeout(() => {\n this.popupDiv.html.style.opacity = 0;\n },1500);\n this.popupDiv.deleteTimeout = setTimeout(() => {\n this._removePopup();\n },1800)\n }\n }\n\n /**\n * make a checkbox for boolean options.\n * @param {number} defaultValue\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _makeCheckbox(defaultValue, value, path) {\n var checkbox = document.createElement('input');\n checkbox.type = 'checkbox';\n checkbox.className = 'vis-configuration vis-config-checkbox';\n checkbox.checked = defaultValue;\n if (value !== undefined) {\n checkbox.checked = value;\n if (value !== defaultValue) {\n if (typeof defaultValue === 'object') {\n if (value !== defaultValue.enabled) {\n this.changedOptions.push({path:path, value:value});\n }\n }\n else {\n this.changedOptions.push({path:path, value:value});\n }\n }\n }\n\n let me = this;\n checkbox.onchange = function() {me._update(this.checked, path)};\n\n let label = this._makeLabel(path[path.length-1], path);\n this._makeItem(path, label, checkbox);\n }\n\n /**\n * make a text input field for string options.\n * @param {number} defaultValue\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _makeTextInput(defaultValue, value, path) {\n var checkbox = document.createElement('input');\n checkbox.type = 'text';\n checkbox.className = 'vis-configuration vis-config-text';\n checkbox.value = value;\n if (value !== defaultValue) {\n this.changedOptions.push({path:path, value:value});\n }\n\n let me = this;\n checkbox.onchange = function() {me._update(this.value, path)};\n\n let label = this._makeLabel(path[path.length-1], path);\n this._makeItem(path, label, checkbox);\n }\n\n\n /**\n * make a color field with a color picker for color fields\n * @param {Array.} arr\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _makeColorField(arr, value, path) {\n let defaultColor = arr[1];\n let div = document.createElement('div');\n value = value === undefined ? defaultColor : value;\n\n if (value !== 'none') {\n div.className = 'vis-configuration vis-config-colorBlock';\n div.style.backgroundColor = value;\n }\n else {\n div.className = 'vis-configuration vis-config-colorBlock none';\n }\n\n value = value === undefined ? defaultColor : value;\n div.onclick = () => {\n this._showColorPicker(value,div,path);\n };\n\n let label = this._makeLabel(path[path.length-1], path);\n this._makeItem(path,label, div);\n }\n\n\n /**\n * used by the color buttons to call the color picker.\n * @param {number} value\n * @param {HTMLElement} div\n * @param {array} path | where to look for the actual option\n * @private\n */\n _showColorPicker(value, div, path) {\n // clear the callback from this div\n div.onclick = function() {};\n\n this.colorPicker.insertTo(div);\n this.colorPicker.show();\n\n this.colorPicker.setColor(value);\n this.colorPicker.setUpdateCallback((color) => {\n let colorString = 'rgba(' + color.r + ',' + color.g + ',' + color.b + ',' + color.a + ')';\n div.style.backgroundColor = colorString;\n this._update(colorString,path);\n });\n\n // on close of the colorpicker, restore the callback.\n this.colorPicker.setCloseCallback(() => {\n div.onclick = () => {\n this._showColorPicker(value,div,path);\n };\n });\n }\n\n\n /**\n * parse an object and draw the correct items\n * @param {Object} obj\n * @param {array} [path=[]] | where to look for the actual option\n * @param {boolean} [checkOnly=false]\n * @returns {boolean}\n * @private\n */\n _handleObject(obj, path = [], checkOnly = false) {\n let show = false;\n let filter = this.options.filter;\n let visibleInSet = false;\n for (let subObj in obj) {\n if (obj.hasOwnProperty(subObj)) {\n show = true;\n let item = obj[subObj];\n let newPath = util.copyAndExtendArray(path, subObj);\n if (typeof filter === 'function') {\n show = filter(subObj,path);\n\n // if needed we must go deeper into the object.\n if (show === false) {\n if (!(item instanceof Array) && typeof item !== 'string' && typeof item !== 'boolean' && item instanceof Object) {\n this.allowCreation = false;\n show = this._handleObject(item, newPath, true);\n this.allowCreation = checkOnly === false;\n }\n }\n }\n\n if (show !== false) {\n visibleInSet = true;\n let value = this._getValue(newPath);\n\n if (item instanceof Array) {\n this._handleArray(item, value, newPath);\n }\n else if (typeof item === 'string') {\n this._makeTextInput(item, value, newPath);\n }\n else if (typeof item === 'boolean') {\n this._makeCheckbox(item, value, newPath);\n }\n else if (item instanceof Object) {\n // collapse the physics options that are not enabled\n let draw = true;\n if (path.indexOf('physics') !== -1) {\n if (this.moduleOptions.physics.solver !== subObj) {\n draw = false;\n }\n }\n\n if (draw === true) {\n // initially collapse options with an disabled enabled option.\n if (item.enabled !== undefined) {\n let enabledPath = util.copyAndExtendArray(newPath, 'enabled');\n let enabledValue = this._getValue(enabledPath);\n if (enabledValue === true) {\n let label = this._makeLabel(subObj, newPath, true);\n this._makeItem(newPath, label);\n visibleInSet = this._handleObject(item, newPath) || visibleInSet;\n }\n else {\n this._makeCheckbox(item, enabledValue, newPath);\n }\n }\n else {\n let label = this._makeLabel(subObj, newPath, true);\n this._makeItem(newPath, label);\n visibleInSet = this._handleObject(item, newPath) || visibleInSet;\n }\n }\n }\n else {\n console.error('dont know how to handle', item, subObj, newPath);\n }\n }\n }\n }\n return visibleInSet;\n }\n\n\n /**\n * handle the array type of option\n * @param {Array.} arr\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _handleArray(arr, value, path) {\n if (typeof arr[0] === 'string' && arr[0] === 'color') {\n this._makeColorField(arr, value, path);\n if (arr[1] !== value) {this.changedOptions.push({path:path, value:value});}\n }\n else if (typeof arr[0] === 'string') {\n this._makeDropdown(arr, value, path);\n if (arr[0] !== value) {this.changedOptions.push({path:path, value:value});}\n }\n else if (typeof arr[0] === 'number') {\n this._makeRange(arr, value, path);\n if (arr[0] !== value) {this.changedOptions.push({path:path, value:Number(value)});}\n }\n }\n\n\n\n /**\n * called to update the network with the new settings.\n * @param {number} value\n * @param {array} path | where to look for the actual option\n * @private\n */\n _update(value, path) {\n let options = this._constructOptions(value,path);\n\n if (this.parent.body && this.parent.body.emitter && this.parent.body.emitter.emit) {\n this.parent.body.emitter.emit(\"configChange\", options);\n }\n this.initialized = true;\n this.parent.setOptions(options);\n }\n\n\n /**\n *\n * @param {string|Boolean} value\n * @param {Array.} path\n * @param {{}} optionsObj\n * @returns {{}}\n * @private\n */\n _constructOptions(value, path, optionsObj = {}) {\n let pointer = optionsObj;\n\n // when dropdown boxes can be string or boolean, we typecast it into correct types\n value = value === 'true' ? true : value;\n value = value === 'false' ? false : value;\n\n for (let i = 0; i < path.length; i++) {\n if (path[i] !== 'global') {\n if (pointer[path[i]] === undefined) {\n pointer[path[i]] = {};\n }\n if (i !== path.length - 1) {\n pointer = pointer[path[i]];\n }\n else {\n pointer[path[i]] = value;\n }\n }\n }\n return optionsObj;\n }\n\n /**\n * @private\n */\n _printOptions() {\n let options = this.getOptions();\n this.optionsContainer.innerHTML = '
var options = ' + JSON.stringify(options, null, 2) + '
';\n }\n\n /**\n *\n * @returns {{}} options\n */\n getOptions() {\n let options = {};\n for (var i = 0; i < this.changedOptions.length; i++) {\n this._constructOptions(this.changedOptions[i].value, this.changedOptions[i].path, options)\n }\n return options;\n }\n}\n\n\nexport default Configurator;\n","import moment from '../module/moment';\nimport util from '../util';\nimport { DataSet } from 'vis-data';\nimport { DataView } from 'vis-data';\nimport Range from './Range';\nimport Core from './Core';\nimport TimeAxis from './component/TimeAxis';\nimport CurrentTime from './component/CurrentTime';\nimport CustomTime from './component/CustomTime';\nimport ItemSet from './component/ItemSet';\n\nimport { Validator } from '../shared/Validator';\nimport { printStyle } from '../shared/Validator';\nimport { allOptions } from './optionsTimeline';\nimport { configureOptions } from './optionsTimeline';\n\nimport Configurator from '../shared/Configurator';\n\n/**\n * Create a timeline visualization\n * @extends Core\n */\nexport default class Timeline extends Core {\n /**\n * @param {HTMLElement} container\n * @param {vis.DataSet | vis.DataView | Array} [items]\n * @param {vis.DataSet | vis.DataView | Array} [groups]\n * @param {Object} [options] See Timeline.setOptions for the available options.\n * @constructor Timeline\n */\n constructor(container, items, groups, options) {\n super()\n this.initTime = new Date();\n this.itemsDone = false;\n\n if (!(this instanceof Timeline)) {\n throw new SyntaxError('Constructor must be called with the new operator');\n }\n\n // if the third element is options, the forth is groups (optionally);\n if (!(Array.isArray(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) {\n const forthArgument = options;\n options = groups;\n groups = forthArgument;\n }\n\n // TODO: REMOVE THIS in the next MAJOR release\n // see https://github.com/almende/vis/issues/2511\n if (options && options.throttleRedraw) {\n console.warn(\"Timeline option \\\"throttleRedraw\\\" is DEPRICATED and no longer supported. It will be removed in the next MAJOR release.\");\n }\n\n const me = this;\n this.defaultOptions = {\n autoResize: true,\n orientation: {\n axis: 'bottom', // axis orientation: 'bottom', 'top', or 'both'\n item: 'bottom' // not relevant\n },\n moment,\n };\n this.options = util.deepExtend({}, this.defaultOptions);\n\n // Create the DOM, props, and emitter\n this._create(container);\n if (!options || (options && typeof options.rtl == \"undefined\")) {\n this.dom.root.style.visibility = 'hidden';\n let directionFromDom;\n let domNode = this.dom.root;\n while (!directionFromDom && domNode) {\n directionFromDom = window.getComputedStyle(domNode, null).direction;\n domNode = domNode.parentElement;\n }\n this.options.rtl = (directionFromDom && (directionFromDom.toLowerCase() == \"rtl\"));\n } else {\n this.options.rtl = options.rtl;\n }\n\n if (options) {\n if (options.rollingMode) { this.options.rollingMode = options.rollingMode; }\n if (options.onInitialDrawComplete) { this.options.onInitialDrawComplete = options.onInitialDrawComplete; }\n if (options.onTimeout) { this.options.onTimeout = options.onTimeout; }\n if (options.loadingScreenTemplate) { this.options.loadingScreenTemplate = options.loadingScreenTemplate; }\n }\n\n // Prepare loading screen\n const loadingScreenFragment = document.createElement('div');\n if (this.options.loadingScreenTemplate) {\n const templateFunction = this.options.loadingScreenTemplate.bind(this);\n const loadingScreen = templateFunction(this.dom.loadingScreen);\n if ((loadingScreen instanceof Object) && !(loadingScreen instanceof Element)) {\n templateFunction(loadingScreenFragment)\n } else {\n if (loadingScreen instanceof Element) {\n loadingScreenFragment.innerHTML = '';\n loadingScreenFragment.appendChild(loadingScreen);\n }\n else if (loadingScreen != undefined) {\n loadingScreenFragment.innerHTML = loadingScreen;\n }\n }\n }\n this.dom.loadingScreen.appendChild(loadingScreenFragment);\n\n // all components listed here will be repainted automatically\n this.components = [];\n\n this.body = {\n dom: this.dom,\n domProps: this.props,\n emitter: {\n on: this.on.bind(this),\n off: this.off.bind(this),\n emit: this.emit.bind(this)\n },\n hiddenDates: [],\n util: {\n getScale() {\n return me.timeAxis.step.scale;\n },\n getStep() {\n return me.timeAxis.step.step;\n },\n\n toScreen: me._toScreen.bind(me),\n toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width\n toTime: me._toTime.bind(me),\n toGlobalTime : me._toGlobalTime.bind(me)\n }\n };\n\n // range\n this.range = new Range(this.body, this.options);\n this.components.push(this.range);\n this.body.range = this.range;\n\n // time axis\n this.timeAxis = new TimeAxis(this.body, this.options);\n this.timeAxis2 = null; // used in case of orientation option 'both'\n this.components.push(this.timeAxis);\n\n // current time bar\n this.currentTime = new CurrentTime(this.body, this.options);\n this.components.push(this.currentTime);\n\n // item set\n this.itemSet = new ItemSet(this.body, this.options);\n this.components.push(this.itemSet);\n\n this.itemsData = null; // DataSet\n this.groupsData = null; // DataSet\n\n this.dom.root.onclick = event => {\n me.emit('click', me.getEventProperties(event))\n };\n this.dom.root.ondblclick = event => {\n me.emit('doubleClick', me.getEventProperties(event))\n };\n this.dom.root.oncontextmenu = event => {\n me.emit('contextmenu', me.getEventProperties(event))\n };\n this.dom.root.onmouseover = event => {\n me.emit('mouseOver', me.getEventProperties(event))\n };\n if(window.PointerEvent) {\n this.dom.root.onpointerdown = event => {\n me.emit('mouseDown', me.getEventProperties(event))\n };\n this.dom.root.onpointermove = event => {\n me.emit('mouseMove', me.getEventProperties(event))\n };\n this.dom.root.onpointerup = event => {\n me.emit('mouseUp', me.getEventProperties(event))\n };\n } else {\n this.dom.root.onmousemove = event => {\n me.emit('mouseMove', me.getEventProperties(event))\n };\n this.dom.root.onmousedown = event => {\n me.emit('mouseDown', me.getEventProperties(event))\n };\n this.dom.root.onmouseup = event => {\n me.emit('mouseUp', me.getEventProperties(event))\n };\n }\n\n //Single time autoscale/fit\n this.initialFitDone = false;\n this.on('changed', () => {\n if (me.itemsData == null) return;\n if (!me.initialFitDone && !me.options.rollingMode) {\n me.initialFitDone = true;\n if (me.options.start != undefined || me.options.end != undefined) {\n if (me.options.start == undefined || me.options.end == undefined) {\n var range = me.getItemRange();\n }\n\n const start = me.options.start != undefined ? me.options.start : range.min;\n const end = me.options.end != undefined ? me.options.end : range.max;\n me.setWindow(start, end, {animation: false});\n } else {\n me.fit({animation: false});\n }\n }\n\n if (!me.initialDrawDone && (me.initialRangeChangeDone || (!me.options.start && !me.options.end) \n || me.options.rollingMode)) {\n me.initialDrawDone = true;\n me.itemSet.initialDrawDone = true;\n me.dom.root.style.visibility = 'visible';\n me.dom.loadingScreen.parentNode.removeChild(me.dom.loadingScreen);\n if (me.options.onInitialDrawComplete) {\n setTimeout(() => {\n return me.options.onInitialDrawComplete();\n }, 0)\n }\n }\n });\n\n this.on('destroyTimeline', () => {\n me.destroy()\n });\n\n // apply options\n if (options) {\n this.setOptions(options);\n }\n\n this.body.emitter.on('fit', (args) => {\n this._onFit(args);\n this.redraw();\n });\n\n // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS!\n if (groups) {\n this.setGroups(groups);\n }\n\n // create itemset\n if (items) {\n this.setItems(items);\n }\n\n // draw for the first time\n this._redraw();\n }\n\n /**\n * Load a configurator\n * @return {Object}\n * @private\n */\n _createConfigurator() {\n return new Configurator(this, this.dom.container, configureOptions);\n }\n\n /**\n * Force a redraw. The size of all items will be recalculated.\n * Can be useful to manually redraw when option autoResize=false and the window\n * has been resized, or when the items CSS has been changed.\n *\n * Note: this function will be overridden on construction with a trottled version\n */\n redraw() {\n this.itemSet && this.itemSet.markDirty({refreshItems: true});\n this._redraw();\n }\n\n /**\n * Remove an item from the group\n * @param {object} options\n */\n setOptions(options) {\n // validate options\n let errorFound = Validator.validate(options, allOptions);\n\n if (errorFound === true) {\n console.log('%cErrors have been found in the supplied options object.', printStyle);\n }\n\n Core.prototype.setOptions.call(this, options);\n\n if ('type' in options) {\n if (options.type !== this.options.type) {\n this.options.type = options.type;\n\n // force recreation of all items\n const itemsData = this.itemsData;\n if (itemsData) {\n const selection = this.getSelection();\n this.setItems(null); // remove all\n this.setItems(itemsData); // add all\n this.setSelection(selection); // restore selection\n }\n }\n }\n }\n\n /**\n * Set items\n * @param {vis.DataSet | Array | null} items\n */\n setItems(items) {\n this.itemsDone = false;\n \n // convert to type DataSet when needed\n let newDataSet;\n if (!items) {\n newDataSet = null;\n }\n else if (items instanceof DataSet || items instanceof DataView) {\n newDataSet = items;\n }\n else {\n // turn an array into a dataset\n newDataSet = new DataSet(items, {\n type: {\n start: 'Date',\n end: 'Date'\n }\n });\n }\n\n // set items\n this.itemsData = newDataSet;\n this.itemSet && this.itemSet.setItems(newDataSet);\n }\n\n /**\n * Set groups\n * @param {vis.DataSet | Array} groups\n */\n setGroups(groups) {\n // convert to type DataSet when needed\n let newDataSet;\n if (!groups) {\n newDataSet = null;\n }\n else {\n const filter = group => group.visible !== false;\n if (groups instanceof DataSet || groups instanceof DataView) {\n newDataSet = new DataView(groups,{filter});\n }\n else {\n // turn an array into a dataset\n newDataSet = new DataSet(groups.filter(filter));\n }\n }\n\n this.groupsData = newDataSet;\n this.itemSet.setGroups(newDataSet);\n }\n\n /**\n * Set both items and groups in one go\n * @param {{items: (Array | vis.DataSet), groups: (Array | vis.DataSet)}} data\n */\n setData(data) {\n if (data && data.groups) {\n this.setGroups(data.groups);\n }\n\n if (data && data.items) {\n this.setItems(data.items);\n }\n }\n\n /**\n * Set selected items by their id. Replaces the current selection\n * Unknown id's are silently ignored.\n * @param {string[] | string} [ids] An array with zero or more id's of the items to be\n * selected. If ids is an empty array, all items will be\n * unselected.\n * @param {Object} [options] Available options:\n * `focus: boolean`\n * If true, focus will be set to the selected item(s)\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * Only applicable when option focus is true.\n */\n setSelection(ids, options) {\n this.itemSet && this.itemSet.setSelection(ids);\n\n if (options && options.focus) {\n this.focus(ids, options);\n }\n }\n\n /**\n * Get the selected items by their id\n * @return {Array} ids The ids of the selected items\n */\n getSelection() {\n return this.itemSet && this.itemSet.getSelection() || [];\n }\n\n /**\n * Adjust the visible window such that the selected item (or multiple items)\n * are centered on screen.\n * @param {string | String[]} id An item id or array with item ids\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * `zoom: boolean`\n * If true (default), the timeline will\n * zoom on the element after focus it.\n */\n focus(id, options) {\n if (!this.itemsData || id == undefined) return;\n\n const ids = Array.isArray(id) ? id : [id];\n\n // get the specified item(s)\n const itemsData = this.itemsData.getDataSet().get(ids, {\n type: {\n start: 'Date',\n end: 'Date'\n }\n });\n\n // calculate minimum start and maximum end of specified items\n let start = null;\n let end = null;\n itemsData.forEach(itemData => {\n const s = itemData.start.valueOf();\n const e = 'end' in itemData ? itemData.end.valueOf() : itemData.start.valueOf();\n\n if (start === null || s < start) {\n start = s;\n }\n\n if (end === null || e > end) {\n end = e;\n }\n });\n\n\n if (start !== null && end !== null) {\n const me = this;\n // Use the first item for the vertical focus\n const item = this.itemSet.items[ids[0]];\n let startPos = this._getScrollTop() * -1;\n let initialVerticalScroll = null;\n\n // Setup a handler for each frame of the vertical scroll\n const verticalAnimationFrame = (ease, willDraw, done) => {\n const verticalScroll = getItemVerticalScroll(me, item);\n\n if (verticalScroll === false) {\n return; // We don't need to scroll, so do nothing\n }\n\n if(!initialVerticalScroll) {\n initialVerticalScroll = verticalScroll;\n }\n\n if(initialVerticalScroll.itemTop == verticalScroll.itemTop && !initialVerticalScroll.shouldScroll) {\n return; // We don't need to scroll, so do nothing\n }\n else if(initialVerticalScroll.itemTop != verticalScroll.itemTop && verticalScroll.shouldScroll) {\n // The redraw shifted elements, so reset the animation to correct\n initialVerticalScroll = verticalScroll;\n startPos = me._getScrollTop() * -1;\n } \n\n const from = startPos;\n const to = initialVerticalScroll.scrollOffset;\n const scrollTop = done ? to : (from + (to - from) * ease);\n\n me._setScrollTop(-scrollTop);\n\n if(!willDraw) {\n me._redraw();\n }\n };\n\n // Enforces the final vertical scroll position\n const setFinalVerticalPosition = () => {\n const finalVerticalScroll = getItemVerticalScroll(me, item);\n\n if (finalVerticalScroll.shouldScroll && finalVerticalScroll.itemTop != initialVerticalScroll.itemTop) {\n me._setScrollTop(-finalVerticalScroll.scrollOffset);\n me._redraw();\n }\n };\n\n // Perform one last check at the end to make sure the final vertical\n // position is correct\n const finalVerticalCallback = () => {\n // Double check we ended at the proper scroll position\n setFinalVerticalPosition();\n\n // Let the redraw settle and finalize the position. \n setTimeout(setFinalVerticalPosition, 100);\n };\n\n // calculate the new middle and interval for the window\n const zoom = options && options.zoom !== undefined ? options.zoom : true;\n const middle = (start + end) / 2;\n const interval = zoom ? (end - start) * 1.1 : Math.max(this.range.end - this.range.start, (end - start) * 1.1);\n\n const animation = options && options.animation !== undefined ? options.animation : true;\n\n if (!animation) {\n // We aren't animating so set a default so that the final callback forces the vertical location\n initialVerticalScroll = { shouldScroll: false, scrollOffset: -1, itemTop: -1 };\n }\n\n this.range.setRange(middle - interval / 2, middle + interval / 2, { animation }, finalVerticalCallback, verticalAnimationFrame); \n }\n }\n\n /**\n * Set Timeline window such that it fits all items\n * @param {Object} [options] Available options:\n * `animation: boolean | {duration: number, easingFunction: string}`\n * If true (default), the range is animated\n * smoothly to the new window. An object can be\n * provided to specify duration and easing function.\n * Default duration is 500 ms, and default easing\n * function is 'easeInOutQuad'.\n * @param {function} [callback]\n */\n fit(options, callback) {\n const animation = (options && options.animation !== undefined) ? options.animation : true;\n let range;\n\n const dataset = this.itemsData && this.itemsData.getDataSet();\n if (dataset.length === 1 && dataset.get()[0].end === undefined) {\n // a single item -> don't fit, just show a range around the item from -4 to +3 days\n range = this.getDataRange();\n this.moveTo(range.min.valueOf(), {animation}, callback);\n }\n else {\n // exactly fit the items (plus a small margin)\n range = this.getItemRange();\n this.range.setRange(range.min, range.max, { animation }, callback);\n }\n }\n\n /**\n * Determine the range of the items, taking into account their actual width\n * and a margin of 10 pixels on both sides.\n *\n * @returns {{min: Date, max: Date}}\n */\n getItemRange() {\n // get a rough approximation for the range based on the items start and end dates\n const range = this.getDataRange();\n let min = range.min !== null ? range.min.valueOf() : null;\n let max = range.max !== null ? range.max.valueOf() : null;\n let minItem = null;\n let maxItem = null;\n\n if (min != null && max != null) {\n let interval = (max - min); // ms\n if (interval <= 0) {\n interval = 10;\n }\n const factor = interval / this.props.center.width;\n\n const redrawQueue = {};\n let redrawQueueLength = 0;\n\n // collect redraw functions\n util.forEach(this.itemSet.items, (item, key) => {\n if (item.groupShowing) {\n const returnQueue = true;\n redrawQueue[key] = item.redraw(returnQueue);\n redrawQueueLength = redrawQueue[key].length;\n }\n })\n\n const needRedraw = redrawQueueLength > 0;\n if (needRedraw) {\n // redraw all regular items\n for (let i = 0; i < redrawQueueLength; i++) {\n util.forEach(redrawQueue, fns => {\n fns[i]();\n });\n }\n }\n\n // calculate the date of the left side and right side of the items given\n util.forEach(this.itemSet.items, item => {\n const start = getStart(item);\n const end = getEnd(item);\n let startSide;\n let endSide;\n\n if (this.options.rtl) {\n startSide = start - (item.getWidthRight() + 10) * factor;\n endSide = end + (item.getWidthLeft() + 10) * factor;\n } else {\n startSide = start - (item.getWidthLeft() + 10) * factor;\n endSide = end + (item.getWidthRight() + 10) * factor;\n }\n\n if (startSide < min) {\n min = startSide;\n minItem = item;\n }\n if (endSide > max) {\n max = endSide;\n maxItem = item;\n }\n });\n\n if (minItem && maxItem) {\n const lhs = minItem.getWidthLeft() + 10;\n const rhs = maxItem.getWidthRight() + 10;\n const delta = this.props.center.width - lhs - rhs; // px\n\n if (delta > 0) {\n if (this.options.rtl) {\n min = getStart(minItem) - rhs * interval / delta; // ms\n max = getEnd(maxItem) + lhs * interval / delta; // ms\n } else {\n min = getStart(minItem) - lhs * interval / delta; // ms\n max = getEnd(maxItem) + rhs * interval / delta; // ms\n }\n }\n }\n }\n\n return {\n min: min != null ? new Date(min) : null,\n max: max != null ? new Date(max) : null\n }\n }\n\n /**\n * Calculate the data range of the items start and end dates\n * @returns {{min: Date, max: Date}}\n */\n getDataRange() {\n let min = null;\n let max = null;\n\n const dataset = this.itemsData && this.itemsData.getDataSet();\n if (dataset) {\n dataset.forEach(item => {\n const start = util.convert(item.start, 'Date').valueOf();\n const end = util.convert(item.end != undefined ? item.end : item.start, 'Date').valueOf();\n if (min === null || start < min) {\n min = start;\n }\n if (max === null || end > max) {\n max = end;\n }\n });\n }\n\n return {\n min: min != null ? new Date(min) : null,\n max: max != null ? new Date(max) : null\n }\n }\n\n /**\n * Generate Timeline related information from an event\n * @param {Event} event\n * @return {Object} An object with related information, like on which area\n * The event happened, whether clicked on an item, etc.\n */\n getEventProperties(event) {\n const clientX = event.center ? event.center.x : event.clientX;\n const clientY = event.center ? event.center.y : event.clientY;\n const centerContainerRect = this.dom.centerContainer.getBoundingClientRect();\n const x = this.options.rtl ? centerContainerRect.right - clientX : clientX - centerContainerRect.left;\n const y = clientY - centerContainerRect.top;\n \n const item = this.itemSet.itemFromTarget(event);\n const group = this.itemSet.groupFromTarget(event);\n const customTime = CustomTime.customTimeFromTarget(event);\n\n const snap = this.itemSet.options.snap || null;\n const scale = this.body.util.getScale();\n const step = this.body.util.getStep();\n const time = this._toTime(x);\n const snappedTime = snap ? snap(time, scale, step) : time;\n\n const element = util.getTarget(event);\n let what = null;\n if (item != null) {what = 'item';}\n else if (customTime != null) {what = 'custom-time';}\n else if (util.hasParent(element, this.timeAxis.dom.foreground)) {what = 'axis';}\n else if (this.timeAxis2 && util.hasParent(element, this.timeAxis2.dom.foreground)) {what = 'axis';}\n else if (util.hasParent(element, this.itemSet.dom.labelSet)) {what = 'group-label';}\n else if (util.hasParent(element, this.currentTime.bar)) {what = 'current-time';}\n else if (util.hasParent(element, this.dom.center)) {what = 'background';}\n\n return {\n event,\n item: item ? item.id : null,\n isCluster: item ? !!item.isCluster: false,\n items: item ? item.items || []: null,\n group: group ? group.groupId : null,\n customTime: customTime ? customTime.options.id : null,\n what,\n pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX,\n pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY,\n x,\n y,\n time,\n snappedTime\n }\n }\n\n /**\n * Toggle Timeline rolling mode\n */\n toggleRollingMode() {\n if (this.range.rolling) {\n this.range.stopRolling();\n } else {\n if (this.options.rollingMode == undefined) {\n this.setOptions(this.options)\n }\n this.range.startRolling();\n }\n }\n\n /**\n * redraw\n * @private\n */\n _redraw() {\n Core.prototype._redraw.call(this);\n }\n\n /**\n * on fit callback\n * @param {object} args\n * @private\n */\n _onFit(args) {\n const { start, end, animation } = args;\n if (!end) {\n this.moveTo(start.valueOf(), {\n animation\n });\n } else {\n this.range.setRange(start, end, {\n animation: animation\n });\n }\n }\n}\n\n/**\n *\n * @param {timeline.Item} item\n * @returns {number}\n */\nfunction getStart(item) {\n return util.convert(item.data.start, 'Date').valueOf()\n}\n\n/**\n *\n * @param {timeline.Item} item\n * @returns {number}\n */\nfunction getEnd(item) {\n const end = item.data.end != undefined ? item.data.end : item.data.start;\n return util.convert(end, 'Date').valueOf();\n}\n\n/**\n * @param {vis.Timeline} timeline\n * @param {timeline.Item} item\n * @return {{shouldScroll: bool, scrollOffset: number, itemTop: number}}\n */\nfunction getItemVerticalScroll(timeline, item) {\n if (!item.parent) {\n // The item no longer exists, so ignore this focus.\n return false;\n }\n\n const itemsetHeight = timeline.options.rtl ? timeline.props.rightContainer.height : timeline.props.leftContainer.height;\n const contentHeight = timeline.props.center.height;\n \n const group = item.parent;\n let offset = group.top;\n let shouldScroll = true;\n const orientation = timeline.timeAxis.options.orientation.axis;\n \n const itemTop = () => {\n if (orientation == \"bottom\") {\n return group.height - item.top - item.height;\n }\n else {\n return item.top;\n }\n };\n\n const currentScrollHeight = timeline._getScrollTop() * -1;\n const targetOffset = offset + itemTop();\n const height = item.height;\n\n if (targetOffset < currentScrollHeight) {\n if (offset + itemsetHeight <= offset + itemTop() + height) {\n offset += itemTop() - timeline.itemSet.options.margin.item.vertical;\n }\n }\n else if (targetOffset + height > currentScrollHeight + itemsetHeight) {\n offset += itemTop() + height - itemsetHeight + timeline.itemSet.options.margin.item.vertical;\n }\n else {\n shouldScroll = false;\n }\n\n offset = Math.min(offset, contentHeight - itemsetHeight);\n\n return { shouldScroll, scrollOffset: offset, itemTop: targetOffset };\n}\n","/** DataScale */\nclass DataScale {\n /**\n *\n * @param {number} start\n * @param {number} end\n * @param {boolean} autoScaleStart\n * @param {boolean} autoScaleEnd\n * @param {number} containerHeight\n * @param {number} majorCharHeight\n * @param {boolean} zeroAlign\n * @param {function} formattingFunction\n * @constructor DataScale\n */\n constructor(\n start,\n end,\n autoScaleStart,\n autoScaleEnd,\n containerHeight,\n majorCharHeight,\n zeroAlign = false,\n formattingFunction=false) {\n this.majorSteps = [1, 2, 5, 10];\n this.minorSteps = [0.25, 0.5, 1, 2];\n this.customLines = null;\n\n this.containerHeight = containerHeight;\n this.majorCharHeight = majorCharHeight;\n this._start = start;\n this._end = end;\n\n this.scale = 1;\n this.minorStepIdx = -1;\n this.magnitudefactor = 1;\n this.determineScale();\n\n this.zeroAlign = zeroAlign;\n this.autoScaleStart = autoScaleStart;\n this.autoScaleEnd = autoScaleEnd;\n\n this.formattingFunction = formattingFunction;\n\n if (autoScaleStart || autoScaleEnd) {\n const me = this;\n const roundToMinor = value => {\n const rounded = value - (value % (me.magnitudefactor * me.minorSteps[me.minorStepIdx]));\n if (value % (me.magnitudefactor * me.minorSteps[me.minorStepIdx]) > 0.5 * (me.magnitudefactor * me.minorSteps[me.minorStepIdx])) {\n return rounded + (me.magnitudefactor * me.minorSteps[me.minorStepIdx]);\n }\n else {\n return rounded;\n }\n };\n if (autoScaleStart) {\n this._start -= this.magnitudefactor * 2 * this.minorSteps[this.minorStepIdx];\n this._start = roundToMinor(this._start);\n }\n\n if (autoScaleEnd) {\n this._end += this.magnitudefactor * this.minorSteps[this.minorStepIdx];\n this._end = roundToMinor(this._end);\n }\n this.determineScale();\n }\n }\n\n /**\n * set chart height\n * @param {number} majorCharHeight \n */\n setCharHeight(majorCharHeight) {\n this.majorCharHeight = majorCharHeight;\n }\n\n /**\n * set height\n * @param {number} containerHeight \n */\n setHeight(containerHeight) {\n this.containerHeight = containerHeight;\n }\n\n /**\n * determine scale\n */\n determineScale() {\n const range = this._end - this._start;\n this.scale = this.containerHeight / range;\n const minimumStepValue = this.majorCharHeight / this.scale;\n const orderOfMagnitude = (range > 0)\n ? Math.round(Math.log(range) / Math.LN10)\n : 0;\n\n this.minorStepIdx = -1;\n this.magnitudefactor = Math.pow(10, orderOfMagnitude);\n\n let start = 0;\n if (orderOfMagnitude < 0) {\n start = orderOfMagnitude;\n }\n\n let solutionFound = false;\n for (let l = start; Math.abs(l) <= Math.abs(orderOfMagnitude); l++) {\n this.magnitudefactor = Math.pow(10, l);\n for (let j = 0; j < this.minorSteps.length; j++) {\n const stepSize = this.magnitudefactor * this.minorSteps[j];\n if (stepSize >= minimumStepValue) {\n solutionFound = true;\n this.minorStepIdx = j;\n break;\n }\n }\n if (solutionFound === true) {\n break;\n }\n }\n }\n\n /**\n * returns if value is major\n * @param {number} value\n * @returns {boolean} \n */\n is_major(value) {\n return (value % (this.magnitudefactor * this.majorSteps[this.minorStepIdx]) === 0);\n }\n\n /**\n * returns step size\n * @returns {number} \n */\n getStep() {\n return this.magnitudefactor * this.minorSteps[this.minorStepIdx];\n }\n\n /**\n * returns first major\n * @returns {number} \n */\n getFirstMajor() {\n const majorStep = this.magnitudefactor * this.majorSteps[this.minorStepIdx];\n return this.convertValue(this._start + ((majorStep - (this._start % majorStep)) % majorStep));\n }\n\n /**\n * returns first major\n * @param {date} current\n * @returns {date} formatted date\n */\n formatValue(current) {\n let returnValue = current.toPrecision(5);\n if (typeof this.formattingFunction === 'function') {\n returnValue = this.formattingFunction(current);\n }\n\n if (typeof returnValue === 'number') {\n return `${returnValue}`;\n }\n else if (typeof returnValue === 'string') {\n return returnValue;\n }\n else {\n return current.toPrecision(5);\n }\n\n }\n\n /**\n * returns lines\n * @returns {object} lines\n */\n getLines() {\n const lines = [];\n const step = this.getStep();\n const bottomOffset = (step - (this._start % step)) % step;\n for (let i = (this._start + bottomOffset); this._end-i > 0.00001; i += step) {\n if (i != this._start) { //Skip the bottom line\n lines.push({major: this.is_major(i), y: this.convertValue(i), val: this.formatValue(i)});\n }\n }\n return lines;\n }\n\n /**\n * follow scale\n * @param {object} other\n */\n followScale(other) {\n const oldStepIdx = this.minorStepIdx;\n const oldStart = this._start;\n const oldEnd = this._end;\n\n const me = this;\n const increaseMagnitude = () => {\n me.magnitudefactor *= 2;\n };\n const decreaseMagnitude = () => {\n me.magnitudefactor /= 2;\n };\n\n if ((other.minorStepIdx <= 1 && this.minorStepIdx <= 1) || (other.minorStepIdx > 1 && this.minorStepIdx > 1)) {\n //easy, no need to change stepIdx nor multiplication factor\n } else if (other.minorStepIdx < this.minorStepIdx) {\n //I'm 5, they are 4 per major.\n this.minorStepIdx = 1;\n if (oldStepIdx == 2) {\n increaseMagnitude();\n } else {\n increaseMagnitude();\n increaseMagnitude();\n }\n } else {\n //I'm 4, they are 5 per major\n this.minorStepIdx = 2;\n if (oldStepIdx == 1) {\n decreaseMagnitude();\n } else {\n decreaseMagnitude();\n decreaseMagnitude();\n }\n }\n\n //Get masters stats:\n const otherZero = other.convertValue(0);\n const otherStep = other.getStep() * other.scale;\n\n let done = false;\n let count = 0;\n //Loop until magnitude is correct for given constrains.\n while (!done && count++ <5) {\n\n //Get my stats:\n this.scale = otherStep / (this.minorSteps[this.minorStepIdx] * this.magnitudefactor);\n const newRange = this.containerHeight / this.scale;\n\n //For the case the magnitudefactor has changed:\n this._start = oldStart;\n this._end = this._start + newRange;\n\n const myOriginalZero = this._end * this.scale;\n const majorStep = this.magnitudefactor * this.majorSteps[this.minorStepIdx];\n const majorOffset = this.getFirstMajor() - other.getFirstMajor();\n\n if (this.zeroAlign) {\n const zeroOffset = otherZero - myOriginalZero;\n this._end += (zeroOffset / this.scale);\n this._start = this._end - newRange;\n } else {\n if (!this.autoScaleStart) {\n this._start += majorStep - (majorOffset / this.scale);\n this._end = this._start + newRange;\n } else {\n this._start -= majorOffset / this.scale;\n this._end = this._start + newRange;\n }\n }\n if (!this.autoScaleEnd && this._end > oldEnd+0.00001) {\n //Need to decrease magnitude to prevent scale overshoot! (end)\n decreaseMagnitude();\n done = false;\n continue;\n }\n if (!this.autoScaleStart && this._start < oldStart-0.00001) {\n if (this.zeroAlign && oldStart >= 0) {\n console.warn(\"Can't adhere to given 'min' range, due to zeroalign\");\n } else {\n //Need to decrease magnitude to prevent scale overshoot! (start)\n decreaseMagnitude();\n done = false;\n continue;\n }\n }\n if (this.autoScaleStart && this.autoScaleEnd && newRange < (oldEnd-oldStart)){\n increaseMagnitude();\n done = false;\n continue;\n }\n done = true;\n }\n }\n\n /**\n * convert value\n * @param {number} value\n * @returns {number} \n */\n convertValue(value) {\n return this.containerHeight - ((value - this._start) * this.scale);\n }\n\n /**\n * returns screen to value\n * @param {number} pixels\n * @returns {number} \n */\n screenToValue(pixels) {\n return ((this.containerHeight - pixels) / this.scale) + this._start;\n }\n}\n\nexport default DataScale;","import util from '../../util';\nimport * as DOMutil from '../../DOMutil';\nimport Component from './Component';\nimport DataScale from './DataScale';\n\nimport './css/dataaxis.css';\n\n/** A horizontal time axis */\nclass DataAxis extends Component {\n /**\n * @param {Object} body\n * @param {Object} [options] See DataAxis.setOptions for the available\n * options.\n * @param {SVGElement} svg\n * @param {timeline.LineGraph.options} linegraphOptions\n * @constructor DataAxis\n * @extends Component\n */\n constructor(body, options, svg, linegraphOptions) {\n super()\n this.id = util.randomUUID();\n this.body = body;\n\n this.defaultOptions = {\n orientation: 'left', // supported: 'left', 'right'\n showMinorLabels: true,\n showMajorLabels: true,\n icons: false,\n majorLinesOffset: 7,\n minorLinesOffset: 4,\n labelOffsetX: 10,\n labelOffsetY: 2,\n iconWidth: 20,\n width: '40px',\n visible: true,\n alignZeros: true,\n left: {\n range: {min: undefined, max: undefined},\n format(value) {\n return `${parseFloat(value.toPrecision(3))}`;\n },\n title: {text: undefined, style: undefined}\n },\n right: {\n range: {min: undefined, max: undefined},\n format(value) {\n return `${parseFloat(value.toPrecision(3))}`;\n },\n title: {text: undefined, style: undefined}\n }\n };\n\n this.linegraphOptions = linegraphOptions;\n this.linegraphSVG = svg;\n this.props = {};\n this.DOMelements = { // dynamic elements\n lines: {},\n labels: {},\n title: {}\n };\n\n this.dom = {};\n this.scale = undefined;\n this.range = {start: 0, end: 0};\n\n this.options = util.extend({}, this.defaultOptions);\n this.conversionFactor = 1;\n\n this.setOptions(options);\n this.width = Number((`${this.options.width}`).replace(\"px\", \"\"));\n this.minWidth = this.width;\n this.height = this.linegraphSVG.getBoundingClientRect().height;\n this.hidden = false;\n\n this.stepPixels = 25;\n this.zeroCrossing = -1;\n this.amountOfSteps = -1;\n\n this.lineOffset = 0;\n this.master = true;\n this.masterAxis = null;\n this.svgElements = {};\n this.iconsRemoved = false;\n\n this.groups = {};\n this.amountOfGroups = 0;\n\n // create the HTML DOM\n this._create();\n if (this.scale == undefined) {\n this._redrawLabels();\n }\n this.framework = {svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups};\n\n const me = this;\n this.body.emitter.on(\"verticalDrag\", () => {\n me.dom.lineContainer.style.top = `${me.body.domProps.scrollTop}px`;\n });\n }\n\n /**\n * Adds group to data axis\n * @param {string} label \n * @param {object} graphOptions\n */\n addGroup(label, graphOptions) {\n if (!this.groups.hasOwnProperty(label)) {\n this.groups[label] = graphOptions;\n }\n this.amountOfGroups += 1;\n }\n\n /**\n * updates group of data axis\n * @param {string} label \n * @param {object} graphOptions\n */\n updateGroup(label, graphOptions) {\n if (!this.groups.hasOwnProperty(label)) {\n this.amountOfGroups += 1;\n }\n this.groups[label] = graphOptions;\n }\n\n /**\n * removes group of data axis\n * @param {string} label \n */\n removeGroup(label) {\n if (this.groups.hasOwnProperty(label)) {\n delete this.groups[label];\n this.amountOfGroups -= 1;\n }\n }\n\n /**\n * sets options\n * @param {object} options\n */\n setOptions(options) {\n if (options) {\n let redraw = false;\n if (this.options.orientation != options.orientation && options.orientation !== undefined) {\n redraw = true;\n }\n const fields = [\n 'orientation',\n 'showMinorLabels',\n 'showMajorLabels',\n 'icons',\n 'majorLinesOffset',\n 'minorLinesOffset',\n 'labelOffsetX',\n 'labelOffsetY',\n 'iconWidth',\n 'width',\n 'visible',\n 'left',\n 'right',\n 'alignZeros'\n ];\n util.selectiveDeepExtend(fields, this.options, options);\n\n this.minWidth = Number((`${this.options.width}`).replace(\"px\", \"\"));\n if (redraw === true && this.dom.frame) {\n this.hide();\n this.show();\n }\n }\n }\n\n /**\n * Create the HTML DOM for the DataAxis\n */\n _create() {\n this.dom.frame = document.createElement('div');\n this.dom.frame.style.width = this.options.width;\n this.dom.frame.style.height = this.height;\n\n this.dom.lineContainer = document.createElement('div');\n this.dom.lineContainer.style.width = '100%';\n this.dom.lineContainer.style.height = this.height;\n this.dom.lineContainer.style.position = 'relative';\n this.dom.lineContainer.style.visibility = 'visible';\n this.dom.lineContainer.style.display = 'block';\n\n // create svg element for graph drawing.\n this.svg = document.createElementNS('http://www.w3.org/2000/svg', \"svg\");\n this.svg.style.position = \"absolute\";\n this.svg.style.top = '0px';\n this.svg.style.height = '100%';\n this.svg.style.width = '100%';\n this.svg.style.display = \"block\";\n this.dom.frame.appendChild(this.svg);\n }\n\n /**\n * redraws groups icons\n */\n _redrawGroupIcons() {\n DOMutil.prepareElements(this.svgElements);\n\n let x;\n const iconWidth = this.options.iconWidth;\n const iconHeight = 15;\n const iconOffset = 4;\n let y = iconOffset + 0.5 * iconHeight;\n\n if (this.options.orientation === 'left') {\n x = iconOffset;\n }\n else {\n x = this.width - iconWidth - iconOffset;\n }\n\n const groupArray = Object.keys(this.groups);\n groupArray.sort((a, b) => a < b ? -1 : 1)\n\n for (const groupId of groupArray) {\n if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) {\n this.groups[groupId].getLegend(iconWidth, iconHeight, this.framework, x, y);\n y += iconHeight + iconOffset;\n }\n }\n\n DOMutil.cleanupElements(this.svgElements);\n this.iconsRemoved = false;\n }\n\n /**\n * Cleans up icons\n */\n _cleanupIcons() {\n if (this.iconsRemoved === false) {\n DOMutil.prepareElements(this.svgElements);\n DOMutil.cleanupElements(this.svgElements);\n this.iconsRemoved = true;\n }\n }\n\n /**\n * Create the HTML DOM for the DataAxis\n */\n show() {\n this.hidden = false;\n if (!this.dom.frame.parentNode) {\n if (this.options.orientation === 'left') {\n this.body.dom.left.appendChild(this.dom.frame);\n }\n else {\n this.body.dom.right.appendChild(this.dom.frame);\n }\n }\n\n if (!this.dom.lineContainer.parentNode) {\n this.body.dom.backgroundHorizontal.appendChild(this.dom.lineContainer);\n }\n this.dom.lineContainer.style.display = 'block';\n }\n\n /**\n * Create the HTML DOM for the DataAxis\n */\n hide() {\n this.hidden = true;\n if (this.dom.frame.parentNode) {\n this.dom.frame.parentNode.removeChild(this.dom.frame);\n }\n\n this.dom.lineContainer.style.display = 'none';\n }\n\n /**\n * Set a range (start and end)\n * @param {number} start\n * @param {number} end\n */\n setRange(start, end) {\n this.range.start = start;\n this.range.end = end;\n }\n\n /**\n * Repaint the component\n * @return {boolean} Returns true if the component is resized\n */\n redraw() {\n let resized = false;\n let activeGroups = 0;\n\n // Make sure the line container adheres to the vertical scrolling.\n this.dom.lineContainer.style.top = `${this.body.domProps.scrollTop}px`;\n\n for (const groupId in this.groups) {\n if (this.groups.hasOwnProperty(groupId)) {\n if (this.groups[groupId].visible === true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] === true)) {\n activeGroups++;\n }\n }\n }\n if (this.amountOfGroups === 0 || activeGroups === 0) {\n this.hide();\n }\n else {\n this.show();\n this.height = Number(this.linegraphSVG.style.height.replace(\"px\", \"\"));\n\n // svg offsetheight did not work in firefox and explorer...\n this.dom.lineContainer.style.height = `${this.height}px`;\n this.width = this.options.visible === true ? Number((`${this.options.width}`).replace(\"px\", \"\")) : 0;\n\n const props = this.props;\n const frame = this.dom.frame;\n\n // update classname\n frame.className = 'vis-data-axis';\n\n // calculate character width and height\n this._calculateCharSize();\n\n const orientation = this.options.orientation;\n const showMinorLabels = this.options.showMinorLabels;\n const showMajorLabels = this.options.showMajorLabels;\n\n const backgroundHorizontalOffsetWidth = this.body.dom.backgroundHorizontal.offsetWidth;\n\n // determine the width and height of the elements for the axis\n props.minorLabelHeight = showMinorLabels ? props.minorCharHeight : 0;\n props.majorLabelHeight = showMajorLabels ? props.majorCharHeight : 0;\n\n props.minorLineWidth = backgroundHorizontalOffsetWidth - this.lineOffset - this.width + 2 * this.options.minorLinesOffset;\n props.minorLineHeight = 1;\n props.majorLineWidth = backgroundHorizontalOffsetWidth - this.lineOffset - this.width + 2 * this.options.majorLinesOffset;\n props.majorLineHeight = 1;\n\n // take frame offline while updating (is almost twice as fast)\n if (orientation === 'left') {\n frame.style.top = '0';\n frame.style.left = '0';\n frame.style.bottom = '';\n frame.style.width = `${this.width}px`;\n frame.style.height = `${this.height}px`;\n this.props.width = this.body.domProps.left.width;\n this.props.height = this.body.domProps.left.height;\n }\n else { // right\n frame.style.top = '';\n frame.style.bottom = '0';\n frame.style.left = '0';\n frame.style.width = `${this.width}px`;\n frame.style.height = `${this.height}px`;\n this.props.width = this.body.domProps.right.width;\n this.props.height = this.body.domProps.right.height;\n }\n\n resized = this._redrawLabels();\n resized = this._isResized() || resized;\n\n if (this.options.icons === true) {\n this._redrawGroupIcons();\n }\n else {\n this._cleanupIcons();\n }\n\n this._redrawTitle(orientation);\n }\n return resized;\n }\n\n /**\n * Repaint major and minor text labels and vertical grid lines\n *\n * @returns {boolean}\n * @private\n */\n _redrawLabels() {\n let resized = false;\n DOMutil.prepareElements(this.DOMelements.lines);\n DOMutil.prepareElements(this.DOMelements.labels);\n const orientation = this.options['orientation'];\n const customRange = this.options[orientation].range != undefined ? this.options[orientation].range : {};\n\n //Override range with manual options:\n let autoScaleEnd = true;\n if (customRange.max != undefined) {\n this.range.end = customRange.max;\n autoScaleEnd = false;\n }\n let autoScaleStart = true;\n if (customRange.min != undefined) {\n this.range.start = customRange.min;\n autoScaleStart = false;\n }\n\n this.scale = new DataScale(\n this.range.start,\n this.range.end,\n autoScaleStart,\n autoScaleEnd,\n this.dom.frame.offsetHeight,\n this.props.majorCharHeight,\n this.options.alignZeros,\n this.options[orientation].format\n );\n\n if (this.master === false && this.masterAxis != undefined) {\n this.scale.followScale(this.masterAxis.scale);\n this.dom.lineContainer.style.display = 'none';\n } else {\n this.dom.lineContainer.style.display = 'block';\n }\n\n //Is updated in side-effect of _redrawLabel():\n this.maxLabelSize = 0;\n\n const lines = this.scale.getLines();\n lines.forEach(\n line=> {\n const y = line.y;\n const isMajor = line.major;\n if (this.options['showMinorLabels'] && isMajor === false) {\n this._redrawLabel(y - 2, line.val, orientation, 'vis-y-axis vis-minor', this.props.minorCharHeight);\n }\n if (isMajor) {\n if (y >= 0) {\n this._redrawLabel(y - 2, line.val, orientation, 'vis-y-axis vis-major', this.props.majorCharHeight);\n }\n }\n if (this.master === true) {\n if (isMajor) {\n this._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-major', this.options.majorLinesOffset, this.props.majorLineWidth);\n }\n else {\n this._redrawLine(y, orientation, 'vis-grid vis-horizontal vis-minor', this.options.minorLinesOffset, this.props.minorLineWidth);\n }\n }\n });\n\n // Note that title is rotated, so we're using the height, not width!\n let titleWidth = 0;\n if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) {\n titleWidth = this.props.titleCharHeight;\n }\n const offset = this.options.icons === true ? Math.max(this.options.iconWidth, titleWidth) + this.options.labelOffsetX + 15 : titleWidth + this.options.labelOffsetX + 15;\n\n // this will resize the yAxis to accommodate the labels.\n if (this.maxLabelSize > (this.width - offset) && this.options.visible === true) {\n this.width = this.maxLabelSize + offset;\n this.options.width = `${this.width}px`;\n DOMutil.cleanupElements(this.DOMelements.lines);\n DOMutil.cleanupElements(this.DOMelements.labels);\n this.redraw();\n resized = true;\n }\n // this will resize the yAxis if it is too big for the labels.\n else if (this.maxLabelSize < (this.width - offset) && this.options.visible === true && this.width > this.minWidth) {\n this.width = Math.max(this.minWidth, this.maxLabelSize + offset);\n this.options.width = `${this.width}px`;\n DOMutil.cleanupElements(this.DOMelements.lines);\n DOMutil.cleanupElements(this.DOMelements.labels);\n this.redraw();\n resized = true;\n }\n else {\n DOMutil.cleanupElements(this.DOMelements.lines);\n DOMutil.cleanupElements(this.DOMelements.labels);\n resized = false;\n }\n\n return resized;\n }\n\n /**\n * converts value\n * @param {number} value\n * @returns {number} converted number\n */\n convertValue(value) {\n return this.scale.convertValue(value);\n }\n\n /**\n * converts value\n * @param {number} x\n * @returns {number} screen value\n */\n screenToValue(x) {\n return this.scale.screenToValue(x);\n }\n\n /**\n * Create a label for the axis at position x\n *\n * @param {number} y\n * @param {string} text\n * @param {'top'|'right'|'bottom'|'left'} orientation\n * @param {string} className\n * @param {number} characterHeight\n * @private\n */\n _redrawLabel(y, text, orientation, className, characterHeight) {\n // reuse redundant label\n const label = DOMutil.getDOMElement('div', this.DOMelements.labels, this.dom.frame); //this.dom.redundant.labels.shift();\n label.className = className;\n label.innerHTML = text;\n if (orientation === 'left') {\n label.style.left = `-${this.options.labelOffsetX}px`;\n label.style.textAlign = \"right\";\n }\n else {\n label.style.right = `-${this.options.labelOffsetX}px`;\n label.style.textAlign = \"left\";\n }\n\n label.style.top = `${y - 0.5 * characterHeight + this.options.labelOffsetY}px`;\n\n text += '';\n\n const largestWidth = Math.max(this.props.majorCharWidth, this.props.minorCharWidth);\n if (this.maxLabelSize < text.length * largestWidth) {\n this.maxLabelSize = text.length * largestWidth;\n }\n }\n\n /**\n * Create a minor line for the axis at position y\n * @param {number} y\n * @param {'top'|'right'|'bottom'|'left'} orientation\n * @param {string} className\n * @param {number} offset\n * @param {number} width\n */\n _redrawLine(y, orientation, className, offset, width) {\n if (this.master === true) {\n const line = DOMutil.getDOMElement('div', this.DOMelements.lines, this.dom.lineContainer); //this.dom.redundant.lines.shift();\n line.className = className;\n line.innerHTML = '';\n\n if (orientation === 'left') {\n line.style.left = `${this.width - offset}px`;\n }\n else {\n line.style.right = `${this.width - offset}px`;\n }\n\n line.style.width = `${width}px`;\n line.style.top = `${y}px`;\n }\n }\n\n /**\n * Create a title for the axis\n * @private\n * @param {'top'|'right'|'bottom'|'left'} orientation\n */\n _redrawTitle(orientation) {\n DOMutil.prepareElements(this.DOMelements.title);\n\n // Check if the title is defined for this axes\n if (this.options[orientation].title !== undefined && this.options[orientation].title.text !== undefined) {\n const title = DOMutil.getDOMElement('div', this.DOMelements.title, this.dom.frame);\n title.className = `vis-y-axis vis-title vis-${orientation}`;\n title.innerHTML = this.options[orientation].title.text;\n\n // Add style - if provided\n if (this.options[orientation].title.style !== undefined) {\n util.addCssText(title, this.options[orientation].title.style);\n }\n\n if (orientation === 'left') {\n title.style.left = `${this.props.titleCharHeight}px`;\n }\n else {\n title.style.right = `${this.props.titleCharHeight}px`;\n }\n\n title.style.width = `${this.height}px`;\n }\n\n // we need to clean up in case we did not use all elements.\n DOMutil.cleanupElements(this.DOMelements.title);\n }\n\n /**\n * Determine the size of text on the axis (both major and minor axis).\n * The size is calculated only once and then cached in this.props.\n * @private\n */\n _calculateCharSize() {\n // determine the char width and height on the minor axis\n if (!('minorCharHeight' in this.props)) {\n const textMinor = document.createTextNode('0');\n const measureCharMinor = document.createElement('div');\n measureCharMinor.className = 'vis-y-axis vis-minor vis-measure';\n measureCharMinor.appendChild(textMinor);\n this.dom.frame.appendChild(measureCharMinor);\n\n this.props.minorCharHeight = measureCharMinor.clientHeight;\n this.props.minorCharWidth = measureCharMinor.clientWidth;\n\n this.dom.frame.removeChild(measureCharMinor);\n }\n\n if (!('majorCharHeight' in this.props)) {\n const textMajor = document.createTextNode('0');\n const measureCharMajor = document.createElement('div');\n measureCharMajor.className = 'vis-y-axis vis-major vis-measure';\n measureCharMajor.appendChild(textMajor);\n this.dom.frame.appendChild(measureCharMajor);\n\n this.props.majorCharHeight = measureCharMajor.clientHeight;\n this.props.majorCharWidth = measureCharMajor.clientWidth;\n\n this.dom.frame.removeChild(measureCharMajor);\n }\n\n if (!('titleCharHeight' in this.props)) {\n const textTitle = document.createTextNode('0');\n const measureCharTitle = document.createElement('div');\n measureCharTitle.className = 'vis-y-axis vis-title vis-measure';\n measureCharTitle.appendChild(textTitle);\n this.dom.frame.appendChild(measureCharTitle);\n\n this.props.titleCharHeight = measureCharTitle.clientHeight;\n this.props.titleCharWidth = measureCharTitle.clientWidth;\n\n this.dom.frame.removeChild(measureCharTitle);\n }\n }\n}\n\nexport default DataAxis;\n","import * as DOMutil from '../../../DOMutil';\n\n/**\n *\n * @param {number | string} groupId\n * @param {Object} options // TODO: Describe options\n *\n * @constructor Points\n */\nfunction Points(groupId, options) { // eslint-disable-line no-unused-vars\n}\n\n/**\n * draw the data points\n *\n * @param {Array} dataset\n * @param {GraphGroup} group\n * @param {Object} framework | SVG DOM element\n * @param {number} [offset]\n */\nPoints.draw = function (dataset, group, framework, offset) {\n offset = offset || 0;\n var callback = getCallback(framework, group);\n\n for (var i = 0; i < dataset.length; i++) {\n if (!callback) {\n // draw the point the simple way.\n DOMutil.drawPoint(dataset[i].screen_x + offset, dataset[i].screen_y, getGroupTemplate(group), framework.svgElements, framework.svg, dataset[i].label);\n }\n else {\n var callbackResult = callback(dataset[i], group); // result might be true, false or an object\n if (callbackResult === true || typeof callbackResult === 'object') {\n DOMutil.drawPoint(dataset[i].screen_x + offset, dataset[i].screen_y, getGroupTemplate(group, callbackResult), framework.svgElements, framework.svg, dataset[i].label);\n }\n }\n }\n};\n\nPoints.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) {\n var fillHeight = iconHeight * 0.5;\n\n var outline = DOMutil.getSVGElement(\"rect\", framework.svgElements, framework.svg);\n outline.setAttributeNS(null, \"x\", x);\n outline.setAttributeNS(null, \"y\", y - fillHeight);\n outline.setAttributeNS(null, \"width\", iconWidth);\n outline.setAttributeNS(null, \"height\", 2 * fillHeight);\n outline.setAttributeNS(null, \"class\", \"vis-outline\");\n\n //Don't call callback on icon\n DOMutil.drawPoint(x + 0.5 * iconWidth, y, getGroupTemplate(group), framework.svgElements, framework.svg);\n};\n\n/**\n *\n * @param {vis.Group} group\n * @param {any} callbackResult\n * @returns {{style: *, styles: (*|string), size: *, className: *}}\n */\nfunction getGroupTemplate(group, callbackResult) {\n callbackResult = (typeof callbackResult === 'undefined') ? {} : callbackResult;\n return {\n style: callbackResult.style || group.options.drawPoints.style,\n styles: callbackResult.styles || group.options.drawPoints.styles,\n size: callbackResult.size || group.options.drawPoints.size,\n className: callbackResult.className || group.className\n };\n}\n\n/**\n *\n * @param {Object} framework | SVG DOM element\n * @param {vis.Group} group\n * @returns {function}\n */\nfunction getCallback(framework, group) {\n var callback = undefined;\n // check for the graph2d onRender\n if (framework.options && framework.options.drawPoints && framework.options.drawPoints.onRender && typeof framework.options.drawPoints.onRender == 'function') {\n callback = framework.options.drawPoints.onRender;\n }\n\n // override it with the group onRender if defined\n if (group.group.options && group.group.options.drawPoints && group.group.options.drawPoints.onRender && typeof group.group.options.drawPoints.onRender == 'function') {\n callback = group.group.options.drawPoints.onRender;\n }\n return callback;\n}\n\nexport default Points;\n","import * as DOMutil from '../../../DOMutil';\nimport Points from './points';\n\n/**\n *\n * @param {vis.GraphGroup.id} groupId\n * @param {Object} options // TODO: Describe options\n * @constructor Bargraph\n */\nfunction Bargraph(groupId, options) { // eslint-disable-line no-unused-vars\n}\n\nBargraph.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) {\n var fillHeight = iconHeight * 0.5;\n var outline = DOMutil.getSVGElement(\"rect\", framework.svgElements, framework.svg);\n outline.setAttributeNS(null, \"x\", x);\n outline.setAttributeNS(null, \"y\", y - fillHeight);\n outline.setAttributeNS(null, \"width\", iconWidth);\n outline.setAttributeNS(null, \"height\", 2 * fillHeight);\n outline.setAttributeNS(null, \"class\", \"vis-outline\");\n\n var barWidth = Math.round(0.3 * iconWidth);\n var originalWidth = group.options.barChart.width;\n var scale = originalWidth / barWidth;\n var bar1Height = Math.round(0.4 * iconHeight);\n var bar2Height = Math.round(0.75 * iconHeight);\n\n var offset = Math.round((iconWidth - (2 * barWidth)) / 3);\n\n DOMutil.drawBar(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, barWidth, bar1Height, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style);\n DOMutil.drawBar(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, barWidth, bar2Height, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style);\n\n if (group.options.drawPoints.enabled == true) {\n var groupTemplate = {\n style: group.options.drawPoints.style,\n styles: group.options.drawPoints.styles,\n size: (group.options.drawPoints.size / scale),\n className: group.className\n };\n DOMutil.drawPoint(x + 0.5 * barWidth + offset, y + fillHeight - bar1Height - 1, groupTemplate, framework.svgElements, framework.svg);\n DOMutil.drawPoint(x + 1.5 * barWidth + offset + 2, y + fillHeight - bar2Height - 1, groupTemplate, framework.svgElements, framework.svg);\n }\n};\n\n/**\n * draw a bar graph\n *\n * @param {Array.} groupIds\n * @param {Object} processedGroupData\n * @param {{svg: Object, svgElements: Array., options: Object, groups: Array.}} framework\n */\nBargraph.draw = function (groupIds, processedGroupData, framework) {\n var combinedData = [];\n var intersections = {};\n var coreDistance;\n var key, drawData;\n var group;\n var i, j;\n var barPoints = 0;\n\n // combine all barchart data\n for (i = 0; i < groupIds.length; i++) {\n group = framework.groups[groupIds[i]];\n if (group.options.style === 'bar') {\n if (group.visible === true && (framework.options.groups.visibility[groupIds[i]] === undefined || framework.options.groups.visibility[groupIds[i]] === true)) {\n for (j = 0; j < processedGroupData[groupIds[i]].length; j++) {\n combinedData.push({\n screen_x: processedGroupData[groupIds[i]][j].screen_x,\n screen_end: processedGroupData[groupIds[i]][j].screen_end,\n screen_y: processedGroupData[groupIds[i]][j].screen_y,\n x: processedGroupData[groupIds[i]][j].x,\n end: processedGroupData[groupIds[i]][j].end,\n y: processedGroupData[groupIds[i]][j].y,\n groupId: groupIds[i],\n label: processedGroupData[groupIds[i]][j].label\n });\n barPoints += 1;\n }\n }\n }\n }\n\n if (barPoints === 0) {\n return;\n }\n\n // sort by time and by group\n combinedData.sort(function (a, b) {\n if (a.screen_x === b.screen_x) {\n return a.groupId < b.groupId ? -1 : 1;\n }\n else {\n return a.screen_x - b.screen_x;\n }\n });\n\n // get intersections\n Bargraph._getDataIntersections(intersections, combinedData);\n\n // plot barchart\n for (i = 0; i < combinedData.length; i++) {\n group = framework.groups[combinedData[i].groupId];\n var minWidth = group.options.barChart.minWidth != undefined ? group.options.barChart.minWidth : 0.1 * group.options.barChart.width;\n\n key = combinedData[i].screen_x;\n var heightOffset = 0;\n if (intersections[key] === undefined) {\n if (i + 1 < combinedData.length) {\n coreDistance = Math.abs(combinedData[i + 1].screen_x - key);\n }\n drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth);\n }\n else {\n var nextKey = i + (intersections[key].amount - intersections[key].resolved);\n if (nextKey < combinedData.length) {\n coreDistance = Math.abs(combinedData[nextKey].screen_x - key);\n }\n drawData = Bargraph._getSafeDrawData(coreDistance, group, minWidth);\n intersections[key].resolved += 1;\n\n if (group.options.stack === true && group.options.excludeFromStacking !== true) {\n if (combinedData[i].screen_y < group.zeroPosition) {\n heightOffset = intersections[key].accumulatedNegative;\n intersections[key].accumulatedNegative += group.zeroPosition - combinedData[i].screen_y;\n }\n else {\n heightOffset = intersections[key].accumulatedPositive;\n intersections[key].accumulatedPositive += group.zeroPosition - combinedData[i].screen_y;\n }\n }\n else if (group.options.barChart.sideBySide === true) {\n drawData.width = drawData.width / intersections[key].amount;\n drawData.offset += (intersections[key].resolved) * drawData.width - (0.5 * drawData.width * (intersections[key].amount + 1));\n }\n }\n \n let dataWidth = drawData.width;\n let start = combinedData[i].screen_x;\n\n // are we drawing explicit boxes? (we supplied an end value)\n if (combinedData[i].screen_end != undefined){\n dataWidth = combinedData[i].screen_end - combinedData[i].screen_x;\n start += (dataWidth * 0.5);\n }\n else {\n start += drawData.offset\n }\n\n DOMutil.drawBar(start, combinedData[i].screen_y - heightOffset, dataWidth, group.zeroPosition - combinedData[i].screen_y, group.className + ' vis-bar', framework.svgElements, framework.svg, group.style);\n\n // draw points\n if (group.options.drawPoints.enabled === true) {\n let pointData = {\n screen_x: combinedData[i].screen_x,\n screen_y: combinedData[i].screen_y - heightOffset,\n x: combinedData[i].x,\n y: combinedData[i].y,\n groupId: combinedData[i].groupId,\n label: combinedData[i].label\n };\n Points.draw([pointData], group, framework, drawData.offset);\n //DOMutil.drawPoint(combinedData[i].x + drawData.offset, combinedData[i].y, group, framework.svgElements, framework.svg);\n }\n }\n};\n\n\n/**\n * Fill the intersections object with counters of how many datapoints share the same x coordinates\n * @param {Object} intersections\n * @param {Array.} combinedData\n * @private\n */\nBargraph._getDataIntersections = function (intersections, combinedData) {\n // get intersections\n var coreDistance;\n for (var i = 0; i < combinedData.length; i++) {\n if (i + 1 < combinedData.length) {\n coreDistance = Math.abs(combinedData[i + 1].screen_x - combinedData[i].screen_x);\n }\n if (i > 0) {\n coreDistance = Math.min(coreDistance, Math.abs(combinedData[i - 1].screen_x - combinedData[i].screen_x));\n }\n if (coreDistance === 0) {\n if (intersections[combinedData[i].screen_x] === undefined) {\n intersections[combinedData[i].screen_x] = {\n amount: 0,\n resolved: 0,\n accumulatedPositive: 0,\n accumulatedNegative: 0\n };\n }\n intersections[combinedData[i].screen_x].amount += 1;\n }\n }\n};\n\n\n/**\n * Get the width and offset for bargraphs based on the coredistance between datapoints\n *\n * @param {number} coreDistance\n * @param {vis.Group} group\n * @param {number} minWidth\n * @returns {{width: number, offset: number}}\n * @private\n */\nBargraph._getSafeDrawData = function (coreDistance, group, minWidth) {\n var width, offset;\n if (coreDistance < group.options.barChart.width && coreDistance > 0) {\n width = coreDistance < minWidth ? minWidth : coreDistance\n\n offset = 0; // recalculate offset with the new width;\n if (group.options.barChart.align === 'left') {\n offset -= 0.5 * coreDistance;\n }\n else if (group.options.barChart.align === 'right') {\n offset += 0.5 * coreDistance;\n }\n }\n else {\n // default settings\n width = group.options.barChart.width;\n offset = 0;\n if (group.options.barChart.align === 'left') {\n offset -= 0.5 * group.options.barChart.width;\n }\n else if (group.options.barChart.align === 'right') {\n offset += 0.5 * group.options.barChart.width;\n }\n }\n\n return {width: width, offset: offset};\n};\n\nBargraph.getStackedYRange = function (combinedData, groupRanges, groupIds, groupLabel, orientation) {\n if (combinedData.length > 0) {\n // sort by time and by group\n combinedData.sort(function (a, b) {\n if (a.screen_x === b.screen_x) {\n return a.groupId < b.groupId ? -1 : 1;\n }\n else {\n return a.screen_x - b.screen_x;\n }\n });\n var intersections = {};\n\n Bargraph._getDataIntersections(intersections, combinedData);\n groupRanges[groupLabel] = Bargraph._getStackedYRange(intersections, combinedData);\n groupRanges[groupLabel].yAxisOrientation = orientation;\n groupIds.push(groupLabel);\n }\n};\n\nBargraph._getStackedYRange = function (intersections, combinedData) {\n var key;\n var yMin = combinedData[0].screen_y;\n var yMax = combinedData[0].screen_y;\n for (var i = 0; i < combinedData.length; i++) {\n key = combinedData[i].screen_x;\n if (intersections[key] === undefined) {\n yMin = yMin > combinedData[i].screen_y ? combinedData[i].screen_y : yMin;\n yMax = yMax < combinedData[i].screen_y ? combinedData[i].screen_y : yMax;\n }\n else {\n if (combinedData[i].screen_y < 0) {\n intersections[key].accumulatedNegative += combinedData[i].screen_y;\n }\n else {\n intersections[key].accumulatedPositive += combinedData[i].screen_y;\n }\n }\n }\n for (var xpos in intersections) {\n if (intersections.hasOwnProperty(xpos)) {\n yMin = yMin > intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMin;\n yMin = yMin > intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMin;\n yMax = yMax < intersections[xpos].accumulatedNegative ? intersections[xpos].accumulatedNegative : yMax;\n yMax = yMax < intersections[xpos].accumulatedPositive ? intersections[xpos].accumulatedPositive : yMax;\n }\n }\n\n return {min: yMin, max: yMax};\n};\n\nexport default Bargraph;","import * as DOMutil from '../../../DOMutil';\n\n/**\n *\n * @param {vis.GraphGroup.id} groupId\n * @param {Object} options // TODO: Describe options\n * @constructor Line\n */\nfunction Line(groupId, options) { // eslint-disable-line no-unused-vars\n}\n\nLine.calcPath = function (dataset, group) {\n if (dataset != null) {\n if (dataset.length > 0) {\n var d = [];\n\n // construct path from dataset\n if (group.options.interpolation.enabled == true) {\n d = Line._catmullRom(dataset, group);\n }\n else {\n d = Line._linear(dataset);\n }\n return d;\n }\n }\n};\n\nLine.drawIcon = function (group, x, y, iconWidth, iconHeight, framework) {\n var fillHeight = iconHeight * 0.5;\n var path, fillPath;\n\n var outline = DOMutil.getSVGElement(\"rect\", framework.svgElements, framework.svg);\n outline.setAttributeNS(null, \"x\", x);\n outline.setAttributeNS(null, \"y\", y - fillHeight);\n outline.setAttributeNS(null, \"width\", iconWidth);\n outline.setAttributeNS(null, \"height\", 2 * fillHeight);\n outline.setAttributeNS(null, \"class\", \"vis-outline\");\n\n path = DOMutil.getSVGElement(\"path\", framework.svgElements, framework.svg);\n path.setAttributeNS(null, \"class\", group.className);\n if (group.style !== undefined) {\n path.setAttributeNS(null, \"style\", group.style);\n }\n\n path.setAttributeNS(null, \"d\", \"M\" + x + \",\" + y + \" L\" + (x + iconWidth) + \",\" + y + \"\");\n if (group.options.shaded.enabled == true) {\n fillPath = DOMutil.getSVGElement(\"path\", framework.svgElements, framework.svg);\n if (group.options.shaded.orientation == 'top') {\n fillPath.setAttributeNS(null, \"d\", \"M\" + x + \", \" + (y - fillHeight) +\n \"L\" + x + \",\" + y + \" L\" + (x + iconWidth) + \",\" + y + \" L\" + (x + iconWidth) + \",\" + (y - fillHeight));\n }\n else {\n fillPath.setAttributeNS(null, \"d\", \"M\" + x + \",\" + y + \" \" +\n \"L\" + x + \",\" + (y + fillHeight) + \" \" +\n \"L\" + (x + iconWidth) + \",\" + (y + fillHeight) +\n \"L\" + (x + iconWidth) + \",\" + y);\n }\n fillPath.setAttributeNS(null, \"class\", group.className + \" vis-icon-fill\");\n if (group.options.shaded.style !== undefined && group.options.shaded.style !== \"\") {\n fillPath.setAttributeNS(null, \"style\", group.options.shaded.style);\n }\n }\n\n if (group.options.drawPoints.enabled == true) {\n var groupTemplate = {\n style: group.options.drawPoints.style,\n styles: group.options.drawPoints.styles,\n size: group.options.drawPoints.size,\n className: group.className\n };\n DOMutil.drawPoint(x + 0.5 * iconWidth, y, groupTemplate, framework.svgElements, framework.svg);\n }\n};\n\nLine.drawShading = function (pathArray, group, subPathArray, framework) {\n // append shading to the path\n if (group.options.shaded.enabled == true) {\n var svgHeight = Number(framework.svg.style.height.replace('px',''));\n var fillPath = DOMutil.getSVGElement('path', framework.svgElements, framework.svg);\n var type = \"L\";\n if (group.options.interpolation.enabled == true){\n type = \"C\";\n }\n var dFill;\n var zero = 0;\n if (group.options.shaded.orientation == 'top') {\n zero = 0;\n }\n else if (group.options.shaded.orientation == 'bottom') {\n zero = svgHeight;\n }\n else {\n zero = Math.min(Math.max(0, group.zeroPosition), svgHeight);\n }\n if (group.options.shaded.orientation == 'group' && (subPathArray != null && subPathArray != undefined)) {\n dFill = 'M' + pathArray[0][0]+ \",\"+pathArray[0][1] + \" \" +\n this.serializePath(pathArray,type,false) +\n ' L'+ subPathArray[subPathArray.length-1][0]+ \",\" + subPathArray[subPathArray.length-1][1] + \" \" +\n this.serializePath(subPathArray,type,true) +\n subPathArray[0][0]+ \",\"+subPathArray[0][1] + \" Z\";\n }\n else {\n dFill = 'M' + pathArray[0][0]+ \",\"+pathArray[0][1] + \" \" +\n this.serializePath(pathArray,type,false) +\n ' V' + zero + ' H'+ pathArray[0][0] + \" Z\";\n }\n\n fillPath.setAttributeNS(null, 'class', group.className + ' vis-fill');\n if (group.options.shaded.style !== undefined) {\n fillPath.setAttributeNS(null, 'style', group.options.shaded.style);\n }\n fillPath.setAttributeNS(null, 'd', dFill);\n }\n};\n\n/**\n * draw a line graph\n *\n * @param {Array.} pathArray\n * @param {vis.Group} group\n * @param {{svg: Object, svgElements: Array., options: Object, groups: Array.}} framework\n */\nLine.draw = function (pathArray, group, framework) {\n if (pathArray != null && pathArray != undefined) {\n var path = DOMutil.getSVGElement('path', framework.svgElements, framework.svg);\n path.setAttributeNS(null, \"class\", group.className);\n if (group.style !== undefined) {\n path.setAttributeNS(null, \"style\", group.style);\n }\n\n var type = \"L\";\n if (group.options.interpolation.enabled == true){\n type = \"C\";\n }\n // copy properties to path for drawing.\n path.setAttributeNS(null, 'd', 'M' + pathArray[0][0]+ \",\"+pathArray[0][1] + \" \" + this.serializePath(pathArray,type,false));\n }\n};\n\nLine.serializePath = function(pathArray,type,inverse){\n if (pathArray.length < 2){\n //Too little data to create a path.\n return \"\";\n }\n var d = type;\n var i;\n if (inverse){\n for (i = pathArray.length-2; i > 0; i--){\n d += pathArray[i][0] + \",\" + pathArray[i][1] + \" \";\n }\n }\n else {\n for (i = 1; i < pathArray.length; i++){\n d += pathArray[i][0] + \",\" + pathArray[i][1] + \" \";\n }\n }\n return d;\n};\n\n/**\n * This uses an uniform parametrization of the interpolation algorithm:\n * 'On the Parameterization of Catmull-Rom Curves' by Cem Yuksel et al.\n * @param {Array.} data\n * @returns {string}\n * @private\n */\nLine._catmullRomUniform = function (data) {\n // catmull rom\n var p0, p1, p2, p3, bp1, bp2;\n var d = [];\n d.push( [ Math.round(data[0].screen_x) , Math.round(data[0].screen_y) ]);\n var normalization = 1 / 6;\n var length = data.length;\n for (var i = 0; i < length - 1; i++) {\n\n p0 = (i == 0) ? data[0] : data[i - 1];\n p1 = data[i];\n p2 = data[i + 1];\n p3 = (i + 2 < length) ? data[i + 2] : p2;\n\n\n // Catmull-Rom to Cubic Bezier conversion matrix\n // 0 1 0 0\n // -1/6 1 1/6 0\n // 0 1/6 1 -1/6\n // 0 0 1 0\n\n // bp0 = { x: p1.x, y: p1.y };\n bp1 = {\n screen_x: ((-p0.screen_x + 6 * p1.screen_x + p2.screen_x) * normalization),\n screen_y: ((-p0.screen_y + 6 * p1.screen_y + p2.screen_y) * normalization)\n };\n bp2 = {\n screen_x: (( p1.screen_x + 6 * p2.screen_x - p3.screen_x) * normalization),\n screen_y: (( p1.screen_y + 6 * p2.screen_y - p3.screen_y) * normalization)\n };\n // bp0 = { x: p2.x, y: p2.y };\n\n d.push( [ bp1.screen_x , bp1.screen_y ]);\n d.push( [ bp2.screen_x , bp2.screen_y ]);\n d.push( [ p2.screen_x , p2.screen_y ]);\n }\n\n return d;\n};\n\n/**\n * This uses either the chordal or centripetal parameterization of the catmull-rom algorithm.\n * By default, the centripetal parameterization is used because this gives the nicest results.\n * These parameterizations are relatively heavy because the distance between 4 points have to be calculated.\n *\n * One optimization can be used to reuse distances since this is a sliding window approach.\n * @param {Array.} data\n * @param {vis.GraphGroup} group\n * @returns {string}\n * @private\n */\nLine._catmullRom = function (data, group) {\n var alpha = group.options.interpolation.alpha;\n if (alpha == 0 || alpha === undefined) {\n return this._catmullRomUniform(data);\n }\n else {\n var p0, p1, p2, p3, bp1, bp2, d1, d2, d3, A, B, N, M;\n var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA;\n var d = [];\n d.push( [ Math.round(data[0].screen_x) , Math.round(data[0].screen_y) ]);\n var length = data.length;\n for (var i = 0; i < length - 1; i++) {\n\n p0 = (i == 0) ? data[0] : data[i - 1];\n p1 = data[i];\n p2 = data[i + 1];\n p3 = (i + 2 < length) ? data[i + 2] : p2;\n\n d1 = Math.sqrt(Math.pow(p0.screen_x - p1.screen_x, 2) + Math.pow(p0.screen_y - p1.screen_y, 2));\n d2 = Math.sqrt(Math.pow(p1.screen_x - p2.screen_x, 2) + Math.pow(p1.screen_y - p2.screen_y, 2));\n d3 = Math.sqrt(Math.pow(p2.screen_x - p3.screen_x, 2) + Math.pow(p2.screen_y - p3.screen_y, 2));\n\n // Catmull-Rom to Cubic Bezier conversion matrix\n\n // A = 2d1^2a + 3d1^a * d2^a + d3^2a\n // B = 2d3^2a + 3d3^a * d2^a + d2^2a\n\n // [ 0 1 0 0 ]\n // [ -d2^2a /N A/N d1^2a /N 0 ]\n // [ 0 d3^2a /M B/M -d2^2a /M ]\n // [ 0 0 1 0 ]\n\n d3powA = Math.pow(d3, alpha);\n d3pow2A = Math.pow(d3, 2 * alpha);\n d2powA = Math.pow(d2, alpha);\n d2pow2A = Math.pow(d2, 2 * alpha);\n d1powA = Math.pow(d1, alpha);\n d1pow2A = Math.pow(d1, 2 * alpha);\n\n A = 2 * d1pow2A + 3 * d1powA * d2powA + d2pow2A;\n B = 2 * d3pow2A + 3 * d3powA * d2powA + d2pow2A;\n N = 3 * d1powA * (d1powA + d2powA);\n if (N > 0) {\n N = 1 / N;\n }\n M = 3 * d3powA * (d3powA + d2powA);\n if (M > 0) {\n M = 1 / M;\n }\n\n bp1 = {\n screen_x: ((-d2pow2A * p0.screen_x + A * p1.screen_x + d1pow2A * p2.screen_x) * N),\n screen_y: ((-d2pow2A * p0.screen_y + A * p1.screen_y + d1pow2A * p2.screen_y) * N)\n };\n\n bp2 = {\n screen_x: (( d3pow2A * p1.screen_x + B * p2.screen_x - d2pow2A * p3.screen_x) * M),\n screen_y: (( d3pow2A * p1.screen_y + B * p2.screen_y - d2pow2A * p3.screen_y) * M)\n };\n\n if (bp1.screen_x == 0 && bp1.screen_y == 0) {\n bp1 = p1;\n }\n if (bp2.screen_x == 0 && bp2.screen_y == 0) {\n bp2 = p2;\n }\n d.push( [ bp1.screen_x , bp1.screen_y ]);\n d.push( [ bp2.screen_x , bp2.screen_y ]);\n d.push( [ p2.screen_x , p2.screen_y ]);\n }\n\n return d;\n }\n};\n\n/**\n * this generates the SVG path for a linear drawing between datapoints.\n * @param {Array.} data\n * @returns {string}\n * @private\n */\nLine._linear = function (data) {\n // linear\n var d = [];\n for (var i = 0; i < data.length; i++) {\n d.push([ data[i].screen_x , data[i].screen_y ]);\n }\n return d;\n};\n\nexport default Line;\n","import util from '../../util';\nimport Bars from './graph2d_types/bar';\nimport Lines from './graph2d_types/line';\nimport Points from './graph2d_types/points';\n\n/**\n * /**\n * @param {object} group | the object of the group from the dataset\n * @param {string} groupId | ID of the group\n * @param {object} options | the default options\n * @param {array} groupsUsingDefaultStyles | this array has one entree.\n * It is passed as an array so it is passed by reference.\n * It enumerates through the default styles\n * @constructor GraphGroup\n */\nfunction GraphGroup(group, groupId, options, groupsUsingDefaultStyles) {\n this.id = groupId;\n var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'drawPoints', 'shaded', 'interpolation', 'zIndex','excludeFromStacking', 'excludeFromLegend'];\n this.options = util.selectiveBridgeObject(fields, options);\n this.usingDefaultStyle = group.className === undefined;\n this.groupsUsingDefaultStyles = groupsUsingDefaultStyles;\n this.zeroPosition = 0;\n this.update(group);\n if (this.usingDefaultStyle == true) {\n this.groupsUsingDefaultStyles[0] += 1;\n }\n this.itemsData = [];\n this.visible = group.visible === undefined ? true : group.visible;\n}\n\n/**\n * this loads a reference to all items in this group into this group.\n * @param {array} items\n */\nGraphGroup.prototype.setItems = function (items) {\n if (items != null) {\n this.itemsData = items;\n if (this.options.sort == true) {\n util.insertSort(this.itemsData,function (a, b) {\n return a.x > b.x ? 1 : -1;\n });\n }\n }\n else {\n this.itemsData = [];\n }\n};\n\nGraphGroup.prototype.getItems = function () {\n return this.itemsData;\n};\n\n/**\n * this is used for barcharts and shading, this way, we only have to calculate it once.\n * @param {number} pos\n */\nGraphGroup.prototype.setZeroPosition = function (pos) {\n this.zeroPosition = pos;\n};\n\n/**\n * set the options of the graph group over the default options.\n * @param {Object} options\n */\nGraphGroup.prototype.setOptions = function (options) {\n if (options !== undefined) {\n var fields = ['sampling', 'style', 'sort', 'yAxisOrientation', 'barChart', 'zIndex','excludeFromStacking', 'excludeFromLegend'];\n util.selectiveDeepExtend(fields, this.options, options);\n\n // if the group's drawPoints is a function delegate the callback to the onRender property\n if (typeof options.drawPoints == 'function') {\n options.drawPoints = {\n onRender: options.drawPoints\n }\n }\n\n util.mergeOptions(this.options, options, 'interpolation');\n util.mergeOptions(this.options, options, 'drawPoints');\n util.mergeOptions(this.options, options, 'shaded');\n\n if (options.interpolation) {\n if (typeof options.interpolation == 'object') {\n if (options.interpolation.parametrization) {\n if (options.interpolation.parametrization == 'uniform') {\n this.options.interpolation.alpha = 0;\n }\n else if (options.interpolation.parametrization == 'chordal') {\n this.options.interpolation.alpha = 1.0;\n }\n else {\n this.options.interpolation.parametrization = 'centripetal';\n this.options.interpolation.alpha = 0.5;\n }\n }\n }\n }\n }\n};\n\n\n/**\n * this updates the current group class with the latest group dataset entree, used in _updateGroup in linegraph\n * @param {vis.Group} group\n */\nGraphGroup.prototype.update = function (group) {\n this.group = group;\n this.content = group.content || 'graph';\n this.className = group.className || this.className || 'vis-graph-group' + this.groupsUsingDefaultStyles[0] % 10;\n this.visible = group.visible === undefined ? true : group.visible;\n this.style = group.style;\n this.setOptions(group.options);\n};\n\n/**\n * return the legend entree for this group.\n *\n * @param {number} iconWidth\n * @param {number} iconHeight\n * @param {{svg: (*|Element), svgElements: Object, options: Object, groups: Array.}} framework\n * @param {number} x\n * @param {number} y\n * @returns {{icon: (*|Element), label: (*|string), orientation: *}}\n */\nGraphGroup.prototype.getLegend = function (iconWidth, iconHeight, framework, x, y) {\n if (framework == undefined || framework == null) {\n var svg = document.createElementNS('http://www.w3.org/2000/svg', \"svg\");\n framework = {svg: svg, svgElements:{}, options: this.options, groups: [this]}\n }\n if (x == undefined || x == null){\n x = 0;\n }\n if (y == undefined || y == null){\n y = 0.5 * iconHeight;\n }\n switch (this.options.style){\n case \"line\":\n Lines.drawIcon(this, x, y, iconWidth, iconHeight, framework);\n break;\n case \"points\": //explicit no break\n case \"point\":\n Points.drawIcon(this, x, y, iconWidth, iconHeight, framework);\n break;\n case \"bar\":\n Bars.drawIcon(this, x, y, iconWidth, iconHeight, framework);\n break;\n }\n return {icon: framework.svg, label: this.content, orientation: this.options.yAxisOrientation};\n};\n\nGraphGroup.prototype.getYRange = function (groupData) {\n var yMin = groupData[0].y;\n var yMax = groupData[0].y;\n for (var j = 0; j < groupData.length; j++) {\n yMin = yMin > groupData[j].y ? groupData[j].y : yMin;\n yMax = yMax < groupData[j].y ? groupData[j].y : yMax;\n }\n return {min: yMin, max: yMax, yAxisOrientation: this.options.yAxisOrientation};\n};\n\nexport default GraphGroup;\n","import util from '../../util';\nimport * as DOMutil from '../../DOMutil';\nimport Component from './Component';\n\n/**\n * Legend for Graph2d\n *\n * @param {vis.Graph2d.body} body\n * @param {vis.Graph2d.options} options\n * @param {number} side\n * @param {vis.LineGraph.options} linegraphOptions\n * @constructor Legend\n * @extends Component\n */\nfunction Legend(body, options, side, linegraphOptions) {\n this.body = body;\n this.defaultOptions = {\n enabled: false,\n icons: true,\n iconSize: 20,\n iconSpacing: 6,\n left: {\n visible: true,\n position: 'top-left' // top/bottom - left,center,right\n },\n right: {\n visible: true,\n position: 'top-right' // top/bottom - left,center,right\n }\n };\n\n this.side = side;\n this.options = util.extend({}, this.defaultOptions);\n this.linegraphOptions = linegraphOptions;\n\n this.svgElements = {};\n this.dom = {};\n this.groups = {};\n this.amountOfGroups = 0;\n this._create();\n this.framework = {svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups};\n\n this.setOptions(options);\n}\n\nLegend.prototype = new Component();\n\nLegend.prototype.clear = function() {\n this.groups = {};\n this.amountOfGroups = 0;\n};\n\nLegend.prototype.addGroup = function(label, graphOptions) {\n\n // Include a group only if the group option 'excludeFromLegend: false' is not set.\n if (graphOptions.options.excludeFromLegend != true) {\n if (!this.groups.hasOwnProperty(label)) {\n this.groups[label] = graphOptions;\n }\n this.amountOfGroups += 1;\n }\n};\n\nLegend.prototype.updateGroup = function(label, graphOptions) {\n this.groups[label] = graphOptions;\n};\n\nLegend.prototype.removeGroup = function(label) {\n if (this.groups.hasOwnProperty(label)) {\n delete this.groups[label];\n this.amountOfGroups -= 1;\n }\n};\n\nLegend.prototype._create = function() {\n this.dom.frame = document.createElement('div');\n this.dom.frame.className = 'vis-legend';\n this.dom.frame.style.position = \"absolute\";\n this.dom.frame.style.top = \"10px\";\n this.dom.frame.style.display = \"block\";\n\n this.dom.textArea = document.createElement('div');\n this.dom.textArea.className = 'vis-legend-text';\n this.dom.textArea.style.position = \"relative\";\n this.dom.textArea.style.top = \"0px\";\n\n this.svg = document.createElementNS('http://www.w3.org/2000/svg',\"svg\");\n this.svg.style.position = 'absolute';\n this.svg.style.top = 0 +'px';\n this.svg.style.width = this.options.iconSize + 5 + 'px';\n this.svg.style.height = '100%';\n\n this.dom.frame.appendChild(this.svg);\n this.dom.frame.appendChild(this.dom.textArea);\n};\n\n/**\n * Hide the component from the DOM\n */\nLegend.prototype.hide = function() {\n // remove the frame containing the items\n if (this.dom.frame.parentNode) {\n this.dom.frame.parentNode.removeChild(this.dom.frame);\n }\n};\n\n/**\n * Show the component in the DOM (when not already visible).\n */\nLegend.prototype.show = function() {\n // show frame containing the items\n if (!this.dom.frame.parentNode) {\n this.body.dom.center.appendChild(this.dom.frame);\n }\n};\n\nLegend.prototype.setOptions = function(options) {\n var fields = ['enabled','orientation','icons','left','right'];\n util.selectiveDeepExtend(fields, this.options, options);\n};\n\nLegend.prototype.redraw = function() {\n var activeGroups = 0;\n var groupArray = Object.keys(this.groups);\n groupArray.sort(function (a,b) {\n return (a < b ? -1 : 1);\n })\n\n for (var i = 0; i < groupArray.length; i++) {\n var groupId = groupArray[i];\n if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) {\n activeGroups++;\n }\n }\n\n if (this.options[this.side].visible == false || this.amountOfGroups == 0 || this.options.enabled == false || activeGroups == 0) {\n this.hide();\n }\n else {\n this.show();\n if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'bottom-left') {\n this.dom.frame.style.left = '4px';\n this.dom.frame.style.textAlign = \"left\";\n this.dom.textArea.style.textAlign = \"left\";\n this.dom.textArea.style.left = (this.options.iconSize + 15) + 'px';\n this.dom.textArea.style.right = '';\n this.svg.style.left = 0 +'px';\n this.svg.style.right = '';\n }\n else {\n this.dom.frame.style.right = '4px';\n this.dom.frame.style.textAlign = \"right\";\n this.dom.textArea.style.textAlign = \"right\";\n this.dom.textArea.style.right = (this.options.iconSize + 15) + 'px';\n this.dom.textArea.style.left = '';\n this.svg.style.right = 0 +'px';\n this.svg.style.left = '';\n }\n\n if (this.options[this.side].position == 'top-left' || this.options[this.side].position == 'top-right') {\n this.dom.frame.style.top = 4 - Number(this.body.dom.center.style.top.replace(\"px\",\"\")) + 'px';\n this.dom.frame.style.bottom = '';\n }\n else {\n var scrollableHeight = this.body.domProps.center.height - this.body.domProps.centerContainer.height;\n this.dom.frame.style.bottom = 4 + scrollableHeight + Number(this.body.dom.center.style.top.replace(\"px\",\"\")) + 'px';\n this.dom.frame.style.top = '';\n }\n\n if (this.options.icons == false) {\n this.dom.frame.style.width = this.dom.textArea.offsetWidth + 10 + 'px';\n this.dom.textArea.style.right = '';\n this.dom.textArea.style.left = '';\n this.svg.style.width = '0px';\n }\n else {\n this.dom.frame.style.width = this.options.iconSize + 15 + this.dom.textArea.offsetWidth + 10 + 'px'\n this.drawLegendIcons();\n }\n\n var content = '';\n for (i = 0; i < groupArray.length; i++) {\n groupId = groupArray[i];\n if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) {\n content += this.groups[groupId].content + '
';\n }\n }\n this.dom.textArea.innerHTML = content;\n this.dom.textArea.style.lineHeight = ((0.75 * this.options.iconSize) + this.options.iconSpacing) + 'px';\n }\n};\n\nLegend.prototype.drawLegendIcons = function() {\n if (this.dom.frame.parentNode) {\n var groupArray = Object.keys(this.groups);\n groupArray.sort(function (a,b) {\n return (a < b ? -1 : 1);\n });\n\n // this resets the elements so the order is maintained\n DOMutil.resetElements(this.svgElements);\n\n var padding = window.getComputedStyle(this.dom.frame).paddingTop;\n var iconOffset = Number(padding.replace('px',''));\n var x = iconOffset;\n var iconWidth = this.options.iconSize;\n var iconHeight = 0.75 * this.options.iconSize;\n var y = iconOffset + 0.5 * iconHeight + 3;\n\n this.svg.style.width = iconWidth + 5 + iconOffset + 'px';\n\n for (var i = 0; i < groupArray.length; i++) {\n var groupId = groupArray[i];\n if (this.groups[groupId].visible == true && (this.linegraphOptions.visibility[groupId] === undefined || this.linegraphOptions.visibility[groupId] == true)) {\n this.groups[groupId].getLegend(iconWidth, iconHeight, this.framework, x, y);\n y += iconHeight + this.options.iconSpacing;\n }\n }\n }\n};\n\nexport default Legend;\n","import util from '../../util';\nimport * as DOMutil from '../../DOMutil';\nimport { DataSet } from 'vis-data';\nimport { DataView } from 'vis-data';\nimport Component from './Component';\nimport DataAxis from './DataAxis';\nimport GraphGroup from './GraphGroup';\nimport Legend from './Legend';\nimport Bars from './graph2d_types/bar';\nimport Lines from './graph2d_types/line';\nimport Points from './graph2d_types/points';\n\nvar UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items\n\n/**\n * This is the constructor of the LineGraph. It requires a Timeline body and options.\n *\n * @param {vis.Timeline.body} body\n * @param {Object} options\n * @constructor LineGraph\n * @extends Component\n */\nfunction LineGraph(body, options) {\n this.id = util.randomUUID();\n this.body = body;\n\n this.defaultOptions = {\n yAxisOrientation: 'left',\n defaultGroup: 'default',\n sort: true,\n sampling: true,\n stack: false,\n graphHeight: '400px',\n shaded: {\n enabled: false,\n orientation: 'bottom' // top, bottom, zero\n },\n style: 'line', // line, bar\n barChart: {\n width: 50,\n sideBySide: false,\n align: 'center' // left, center, right\n },\n interpolation: {\n enabled: true,\n parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)\n alpha: 0.5\n },\n drawPoints: {\n enabled: true,\n size: 6,\n style: 'square' // square, circle\n },\n dataAxis: {}, //Defaults are done on DataAxis level\n legend: {}, //Defaults are done on Legend level\n groups: {\n visibility: {}\n }\n };\n\n // options is shared by this lineGraph and all its items\n this.options = util.extend({}, this.defaultOptions);\n this.dom = {};\n this.props = {};\n this.hammer = null;\n this.groups = {};\n this.abortedGraphUpdate = false;\n this.updateSVGheight = false;\n this.updateSVGheightOnResize = false;\n this.forceGraphUpdate = true;\n\n var me = this;\n this.itemsData = null; // DataSet\n this.groupsData = null; // DataSet\n\n // listeners for the DataSet of the items\n this.itemListeners = {\n 'add': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onAdd(params.items);\n },\n 'update': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onUpdate(params.items);\n },\n 'remove': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onRemove(params.items);\n }\n };\n\n // listeners for the DataSet of the groups\n this.groupListeners = {\n 'add': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onAddGroups(params.items);\n },\n 'update': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onUpdateGroups(params.items);\n },\n 'remove': function (event, params, senderId) { // eslint-disable-line no-unused-vars\n me._onRemoveGroups(params.items);\n }\n };\n\n this.items = {}; // object with an Item for every data item\n this.selection = []; // list with the ids of all selected nodes\n this.lastStart = this.body.range.start;\n this.touchParams = {}; // stores properties while dragging\n\n this.svgElements = {};\n this.setOptions(options);\n this.groupsUsingDefaultStyles = [0];\n this.body.emitter.on('rangechanged', function () {\n me.lastStart = me.body.range.start;\n me.svg.style.left = util.option.asSize(-me.props.width);\n\n me.forceGraphUpdate = true;\n //Is this local redraw necessary? (Core also does a change event!)\n me.redraw.call(me);\n });\n\n // create the HTML DOM\n this._create();\n this.framework = {svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups};\n}\n\nLineGraph.prototype = new Component();\n\n/**\n * Create the HTML DOM for the ItemSet\n */\nLineGraph.prototype._create = function () {\n var frame = document.createElement('div');\n frame.className = 'vis-line-graph';\n this.dom.frame = frame;\n\n // create svg element for graph drawing.\n this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');\n this.svg.style.position = 'relative';\n this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px';\n this.svg.style.display = 'block';\n frame.appendChild(this.svg);\n\n // data axis\n this.options.dataAxis.orientation = 'left';\n this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups);\n\n this.options.dataAxis.orientation = 'right';\n this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups);\n delete this.options.dataAxis.orientation;\n\n // legends\n this.legendLeft = new Legend(this.body, this.options.legend, 'left', this.options.groups);\n this.legendRight = new Legend(this.body, this.options.legend, 'right', this.options.groups);\n\n this.show();\n};\n\n/**\n * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element.\n * @param {object} options\n */\nLineGraph.prototype.setOptions = function (options) {\n if (options) {\n var fields = ['sampling', 'defaultGroup', 'stack', 'height', 'graphHeight', 'yAxisOrientation', 'style', 'barChart', 'dataAxis', 'sort', 'groups'];\n if (options.graphHeight === undefined && options.height !== undefined) {\n this.updateSVGheight = true;\n this.updateSVGheightOnResize = true;\n }\n else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) {\n if (parseInt((options.graphHeight + '').replace(\"px\", '')) < this.body.domProps.centerContainer.height) {\n this.updateSVGheight = true;\n }\n }\n util.selectiveDeepExtend(fields, this.options, options);\n util.mergeOptions(this.options, options, 'interpolation');\n util.mergeOptions(this.options, options, 'drawPoints');\n util.mergeOptions(this.options, options, 'shaded');\n util.mergeOptions(this.options, options, 'legend');\n\n if (options.interpolation) {\n if (typeof options.interpolation == 'object') {\n if (options.interpolation.parametrization) {\n if (options.interpolation.parametrization == 'uniform') {\n this.options.interpolation.alpha = 0;\n }\n else if (options.interpolation.parametrization == 'chordal') {\n this.options.interpolation.alpha = 1.0;\n }\n else {\n this.options.interpolation.parametrization = 'centripetal';\n this.options.interpolation.alpha = 0.5;\n }\n }\n }\n }\n\n if (this.yAxisLeft) {\n if (options.dataAxis !== undefined) {\n this.yAxisLeft.setOptions(this.options.dataAxis);\n this.yAxisRight.setOptions(this.options.dataAxis);\n }\n }\n\n if (this.legendLeft) {\n if (options.legend !== undefined) {\n this.legendLeft.setOptions(this.options.legend);\n this.legendRight.setOptions(this.options.legend);\n }\n }\n\n if (this.groups.hasOwnProperty(UNGROUPED)) {\n this.groups[UNGROUPED].setOptions(options);\n }\n }\n\n // this is used to redraw the graph if the visibility of the groups is changed.\n if (this.dom.frame) { //not on initial run?\n this.forceGraphUpdate=true;\n this.body.emitter.emit(\"_change\",{queue: true});\n }\n};\n\n/**\n * Hide the component from the DOM\n */\nLineGraph.prototype.hide = function () {\n // remove the frame containing the items\n if (this.dom.frame.parentNode) {\n this.dom.frame.parentNode.removeChild(this.dom.frame);\n }\n};\n\n\n/**\n * Show the component in the DOM (when not already visible).\n */\nLineGraph.prototype.show = function () {\n // show frame containing the items\n if (!this.dom.frame.parentNode) {\n this.body.dom.center.appendChild(this.dom.frame);\n }\n};\n\n\n/**\n * Set items\n * @param {vis.DataSet | null} items\n */\nLineGraph.prototype.setItems = function (items) {\n var me = this,\n ids,\n oldItemsData = this.itemsData;\n\n // replace the dataset\n if (!items) {\n this.itemsData = null;\n }\n else if (items instanceof DataSet || items instanceof DataView) {\n this.itemsData = items;\n }\n else {\n throw new TypeError('Data must be an instance of DataSet or DataView');\n }\n\n if (oldItemsData) {\n // unsubscribe from old dataset\n util.forEach(this.itemListeners, function (callback, event) {\n oldItemsData.off(event, callback);\n });\n\n // remove all drawn items\n ids = oldItemsData.getIds();\n this._onRemove(ids);\n }\n\n if (this.itemsData) {\n // subscribe to new dataset\n var id = this.id;\n util.forEach(this.itemListeners, function (callback, event) {\n me.itemsData.on(event, callback, id);\n });\n\n // add all new items\n ids = this.itemsData.getIds();\n this._onAdd(ids);\n }\n};\n\n\n/**\n * Set groups\n * @param {vis.DataSet} groups\n */\nLineGraph.prototype.setGroups = function (groups) {\n var me = this;\n var ids;\n\n // unsubscribe from current dataset\n if (this.groupsData) {\n util.forEach(this.groupListeners, function (callback, event) {\n me.groupsData.off(event, callback);\n });\n\n // remove all drawn groups\n ids = this.groupsData.getIds();\n this.groupsData = null;\n for (var i = 0; i < ids.length; i++) {\n this._removeGroup(ids[i]);\n }\n }\n\n // replace the dataset\n if (!groups) {\n this.groupsData = null;\n }\n else if (groups instanceof DataSet || groups instanceof DataView) {\n this.groupsData = groups;\n }\n else {\n throw new TypeError('Data must be an instance of DataSet or DataView');\n }\n\n if (this.groupsData) {\n // subscribe to new dataset\n var id = this.id;\n util.forEach(this.groupListeners, function (callback, event) {\n me.groupsData.on(event, callback, id);\n });\n\n // draw all ms\n ids = this.groupsData.getIds();\n this._onAddGroups(ids);\n }\n};\n\nLineGraph.prototype._onUpdate = function (ids) {\n this._updateAllGroupData(ids);\n};\nLineGraph.prototype._onAdd = function (ids) {\n this._onUpdate(ids);\n};\nLineGraph.prototype._onRemove = function (ids) {\n this._onUpdate(ids);\n};\nLineGraph.prototype._onUpdateGroups = function (groupIds) {\n this._updateAllGroupData(null, groupIds);\n};\nLineGraph.prototype._onAddGroups = function (groupIds) {\n this._onUpdateGroups(groupIds);\n};\n\n/**\n * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph\n * @param {Array} groupIds\n * @private\n */\nLineGraph.prototype._onRemoveGroups = function (groupIds) {\n for (var i = 0; i < groupIds.length; i++) {\n this._removeGroup(groupIds[i]);\n }\n this.forceGraphUpdate = true;\n this.body.emitter.emit(\"_change\",{queue: true});\n};\n\n/**\n * this cleans the group out off the legends and the dataaxis\n * @param {vis.GraphGroup.id} groupId\n * @private\n */\nLineGraph.prototype._removeGroup = function (groupId) {\n if (this.groups.hasOwnProperty(groupId)) {\n if (this.groups[groupId].options.yAxisOrientation == 'right') {\n this.yAxisRight.removeGroup(groupId);\n this.legendRight.removeGroup(groupId);\n this.legendRight.redraw();\n }\n else {\n this.yAxisLeft.removeGroup(groupId);\n this.legendLeft.removeGroup(groupId);\n this.legendLeft.redraw();\n }\n delete this.groups[groupId];\n }\n};\n\n/**\n * update a group object with the group dataset entree\n *\n * @param {vis.GraphGroup} group\n * @param {vis.GraphGroup.id} groupId\n * @private\n */\nLineGraph.prototype._updateGroup = function (group, groupId) {\n if (!this.groups.hasOwnProperty(groupId)) {\n this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles);\n if (this.groups[groupId].options.yAxisOrientation == 'right') {\n this.yAxisRight.addGroup(groupId, this.groups[groupId]);\n this.legendRight.addGroup(groupId, this.groups[groupId]);\n }\n else {\n this.yAxisLeft.addGroup(groupId, this.groups[groupId]);\n this.legendLeft.addGroup(groupId, this.groups[groupId]);\n }\n }\n else {\n this.groups[groupId].update(group);\n if (this.groups[groupId].options.yAxisOrientation == 'right') {\n this.yAxisRight.updateGroup(groupId, this.groups[groupId]);\n this.legendRight.updateGroup(groupId, this.groups[groupId]);\n //If yAxisOrientation changed, clean out the group from the other axis.\n this.yAxisLeft.removeGroup(groupId);\n this.legendLeft.removeGroup(groupId);\n }\n else {\n this.yAxisLeft.updateGroup(groupId, this.groups[groupId]);\n this.legendLeft.updateGroup(groupId, this.groups[groupId]);\n //If yAxisOrientation changed, clean out the group from the other axis.\n this.yAxisRight.removeGroup(groupId);\n this.legendRight.removeGroup(groupId);\n }\n }\n this.legendLeft.redraw();\n this.legendRight.redraw();\n};\n\n\n/**\n * this updates all groups, it is used when there is an update the the itemset.\n *\n * @param {Array} ids\n * @param {Array} groupIds\n * @private\n */\nLineGraph.prototype._updateAllGroupData = function (ids, groupIds) {\n if (this.itemsData != null) {\n var groupsContent = {};\n var items = this.itemsData.get();\n var fieldId = this.itemsData._idProp;\n var idMap = {};\n if (ids){\n ids.map(function (id) {\n idMap[id] = id;\n });\n }\n\n //pre-Determine array sizes, for more efficient memory claim\n var groupCounts = {};\n for (var i = 0; i < items.length; i++) {\n var item = items[i];\n var groupId = item.group;\n if (groupId === null || groupId === undefined) {\n groupId = UNGROUPED;\n }\n groupCounts.hasOwnProperty(groupId) ? groupCounts[groupId]++ : groupCounts[groupId] = 1;\n }\n\n //Pre-load arrays from existing groups if items are not changed (not in ids)\n var existingItemsMap = {};\n if (!groupIds && ids) {\n for (groupId in this.groups) {\n if (this.groups.hasOwnProperty(groupId)) {\n group = this.groups[groupId];\n var existing_items = group.getItems();\n\n groupsContent[groupId] = existing_items.filter(function (item) {\n existingItemsMap[item[fieldId]] = item[fieldId];\n return (item[fieldId] !== idMap[item[fieldId]]);\n });\n var newLength = groupCounts[groupId];\n groupCounts[groupId] -= groupsContent[groupId].length;\n if (groupsContent[groupId].length < newLength) {\n groupsContent[groupId][newLength - 1] = {};\n }\n }\n }\n }\n\n //Now insert data into the arrays.\n for (i = 0; i < items.length; i++) {\n item = items[i];\n groupId = item.group;\n if (groupId === null || groupId === undefined) {\n groupId = UNGROUPED;\n }\n if (!groupIds && ids && (item[fieldId] !== idMap[item[fieldId]]) && existingItemsMap.hasOwnProperty(item[fieldId])) {\n continue;\n }\n if (!groupsContent.hasOwnProperty(groupId)) {\n groupsContent[groupId] = new Array(groupCounts[groupId]);\n }\n //Copy data (because of unmodifiable DataView input.\n var extended = util.bridgeObject(item);\n extended.x = util.convert(item.x, 'Date');\n extended.end = util.convert(item.end, 'Date');\n extended.orginalY = item.y; //real Y\n extended.y = Number(item.y);\n extended[fieldId] = item[fieldId];\n\n var index= groupsContent[groupId].length - groupCounts[groupId]--;\n groupsContent[groupId][index] = extended;\n }\n\n //Make sure all groups are present, to allow removal of old groups\n for (groupId in this.groups){\n if (this.groups.hasOwnProperty(groupId)){\n if (!groupsContent.hasOwnProperty(groupId)) {\n groupsContent[groupId] = new Array(0);\n }\n }\n }\n\n //Update legendas, style and axis\n for (groupId in groupsContent) {\n if (groupsContent.hasOwnProperty(groupId)) {\n if (groupsContent[groupId].length == 0) {\n if (this.groups.hasOwnProperty(groupId)) {\n this._removeGroup(groupId);\n }\n } else {\n var group = undefined;\n if (this.groupsData != undefined) {\n group = this.groupsData.get(groupId);\n }\n if (group == undefined) {\n group = {id: groupId, content: this.options.defaultGroup + groupId};\n }\n this._updateGroup(group, groupId);\n this.groups[groupId].setItems(groupsContent[groupId]);\n }\n }\n }\n this.forceGraphUpdate = true;\n this.body.emitter.emit(\"_change\",{queue: true});\n }\n};\n\n/**\n * Redraw the component, mandatory function\n * @return {boolean} Returns true if the component is resized\n */\nLineGraph.prototype.redraw = function () {\n var resized = false;\n\n // calculate actual size and position\n this.props.width = this.dom.frame.offsetWidth;\n this.props.height = this.body.domProps.centerContainer.height\n - this.body.domProps.border.top\n - this.body.domProps.border.bottom;\n\n // check if this component is resized\n resized = this._isResized() || resized;\n\n // check whether zoomed (in that case we need to re-stack everything)\n var visibleInterval = this.body.range.end - this.body.range.start;\n var zoomed = (visibleInterval != this.lastVisibleInterval);\n this.lastVisibleInterval = visibleInterval;\n\n\n // the svg element is three times as big as the width, this allows for fully dragging left and right\n // without reloading the graph. the controls for this are bound to events in the constructor\n if (resized == true) {\n this.svg.style.width = util.option.asSize(3 * this.props.width);\n this.svg.style.left = util.option.asSize(-this.props.width);\n\n // if the height of the graph is set as proportional, change the height of the svg\n if ((this.options.height + '').indexOf(\"%\") != -1 || this.updateSVGheightOnResize == true) {\n this.updateSVGheight = true;\n }\n }\n\n // update the height of the graph on each redraw of the graph.\n if (this.updateSVGheight == true) {\n if (this.options.graphHeight != this.props.height + 'px') {\n this.options.graphHeight = this.props.height + 'px';\n this.svg.style.height = this.props.height + 'px';\n }\n this.updateSVGheight = false;\n }\n else {\n this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px';\n }\n\n // zoomed is here to ensure that animations are shown correctly.\n if (resized == true || zoomed == true || this.abortedGraphUpdate == true || this.forceGraphUpdate == true) {\n resized = this._updateGraph() || resized;\n this.forceGraphUpdate = false;\n }\n else {\n // move the whole svg while dragging\n if (this.lastStart != 0) {\n var offset = this.body.range.start - this.lastStart;\n var range = this.body.range.end - this.body.range.start;\n if (this.props.width != 0) {\n var rangePerPixelInv = this.props.width / range;\n var xOffset = offset * rangePerPixelInv;\n this.svg.style.left = (-this.props.width - xOffset) + 'px';\n }\n }\n }\n this.legendLeft.redraw();\n this.legendRight.redraw();\n return resized;\n};\n\n\nLineGraph.prototype._getSortedGroupIds = function(){\n // getting group Ids\n var grouplist = [];\n for (var groupId in this.groups) {\n if (this.groups.hasOwnProperty(groupId)) {\n var group = this.groups[groupId];\n if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) {\n grouplist.push({id:groupId,zIndex:group.options.zIndex});\n }\n }\n }\n util.insertSort(grouplist,function(a,b){\n var az = a.zIndex;\n var bz = b.zIndex;\n if (az === undefined) az=0;\n if (bz === undefined) bz=0;\n return az==bz? 0: (az 0) {\n var groupsData = {};\n\n // fill groups data, this only loads the data we require based on the timewindow\n this._getRelevantData(groupIds, groupsData, minDate, maxDate);\n\n // apply sampling, if disabled, it will pass through this function.\n this._applySampling(groupIds, groupsData);\n\n // we transform the X coordinates to detect collisions\n for (i = 0; i < groupIds.length; i++) {\n this._convertXcoordinates(groupsData[groupIds[i]]);\n }\n\n // now all needed data has been collected we start the processing.\n this._getYRanges(groupIds, groupsData, groupRanges);\n\n // update the Y axis first, we use this data to draw at the correct Y points\n changeCalled = this._updateYAxis(groupIds, groupRanges);\n\n // at changeCalled, abort this update cycle as the graph needs another update with new Width input from the Redraw container.\n // Cleanup SVG elements on abort.\n if (changeCalled == true) {\n DOMutil.cleanupElements(this.svgElements);\n this.abortedGraphUpdate = true;\n return true;\n }\n this.abortedGraphUpdate = false;\n\n // With the yAxis scaled correctly, use this to get the Y values of the points.\n var below = undefined;\n for (i = 0; i < groupIds.length; i++) {\n group = this.groups[groupIds[i]];\n if (this.options.stack === true && this.options.style === 'line') {\n if (group.options.excludeFromStacking == undefined || !group.options.excludeFromStacking) {\n if (below != undefined) {\n this._stack(groupsData[group.id], groupsData[below.id]);\n if (group.options.shaded.enabled == true && group.options.shaded.orientation !== \"group\"){\n if (group.options.shaded.orientation == \"top\" && below.options.shaded.orientation !== \"group\"){\n below.options.shaded.orientation=\"group\";\n below.options.shaded.groupId=group.id;\n } else {\n group.options.shaded.orientation=\"group\";\n group.options.shaded.groupId=below.id;\n }\n }\n }\n below = group;\n }\n }\n this._convertYcoordinates(groupsData[groupIds[i]], group);\n }\n\n //Precalculate paths and draw shading if appropriate. This will make sure the shading is always behind any lines.\n var paths = {};\n for (i = 0; i < groupIds.length; i++) {\n group = this.groups[groupIds[i]];\n if (group.options.style === 'line' && group.options.shaded.enabled == true) {\n var dataset = groupsData[groupIds[i]];\n if (dataset == null || dataset.length == 0) {\n continue;\n }\n if (!paths.hasOwnProperty(groupIds[i])) {\n paths[groupIds[i]] = Lines.calcPath(dataset, group);\n }\n if (group.options.shaded.orientation === \"group\") {\n var subGroupId = group.options.shaded.groupId;\n if (groupIds.indexOf(subGroupId) === -1) {\n console.log(group.id + \": Unknown shading group target given:\" + subGroupId);\n continue;\n }\n if (!paths.hasOwnProperty(subGroupId)) {\n paths[subGroupId] = Lines.calcPath(groupsData[subGroupId], this.groups[subGroupId]);\n }\n Lines.drawShading(paths[groupIds[i]], group, paths[subGroupId], this.framework);\n }\n else {\n Lines.drawShading(paths[groupIds[i]], group, undefined, this.framework);\n }\n }\n }\n\n // draw the groups, calculating paths if still necessary.\n Bars.draw(groupIds, groupsData, this.framework);\n for (i = 0; i < groupIds.length; i++) {\n group = this.groups[groupIds[i]];\n if (groupsData[groupIds[i]].length > 0) {\n switch (group.options.style) {\n case \"line\":\n if (!paths.hasOwnProperty(groupIds[i])) {\n paths[groupIds[i]] = Lines.calcPath(groupsData[groupIds[i]], group);\n }\n Lines.draw(paths[groupIds[i]], group, this.framework);\n // eslint-disable-line no-fallthrough\n case \"point\":\n // eslint-disable-line no-fallthrough\n case \"points\":\n if (group.options.style == \"point\" || group.options.style == \"points\" || group.options.drawPoints.enabled == true) {\n Points.draw(groupsData[groupIds[i]], group, this.framework);\n }\n break;\n case \"bar\":\n // bar needs to be drawn enmasse\n // eslint-disable-line no-fallthrough\n default:\n //do nothing...\n }\n }\n\n }\n }\n }\n\n // cleanup unused svg elements\n DOMutil.cleanupElements(this.svgElements);\n return false;\n};\n\nLineGraph.prototype._stack = function (data, subData) {\n var index, dx, dy, subPrevPoint, subNextPoint;\n index = 0;\n // for each data point we look for a matching on in the set below\n for (var j = 0; j < data.length; j++) {\n subPrevPoint = undefined;\n subNextPoint = undefined;\n // we look for time matches or a before-after point\n for (var k = index; k < subData.length; k++) {\n // if times match exactly\n if (subData[k].x === data[j].x) {\n subPrevPoint = subData[k];\n subNextPoint = subData[k];\n index = k;\n break;\n }\n else if (subData[k].x > data[j].x) { // overshoot\n subNextPoint = subData[k];\n if (k == 0) {\n subPrevPoint = subNextPoint;\n }\n else {\n subPrevPoint = subData[k - 1];\n }\n index = k;\n break;\n }\n }\n // in case the last data point has been used, we assume it stays like this.\n if (subNextPoint === undefined) {\n subPrevPoint = subData[subData.length - 1];\n subNextPoint = subData[subData.length - 1];\n }\n // linear interpolation\n dx = subNextPoint.x - subPrevPoint.x;\n dy = subNextPoint.y - subPrevPoint.y;\n if (dx == 0) {\n data[j].y = data[j].orginalY + subNextPoint.y;\n }\n else {\n data[j].y = data[j].orginalY + (dy / dx) * (data[j].x - subPrevPoint.x) + subPrevPoint.y; // ax + b where b is data[j].y\n }\n }\n}\n\n\n/**\n * first select and preprocess the data from the datasets.\n * the groups have their preselection of data, we now loop over this data to see\n * what data we need to draw. Sorted data is much faster.\n * more optimization is possible by doing the sampling before and using the binary search\n * to find the end date to determine the increment.\n *\n * @param {array} groupIds\n * @param {object} groupsData\n * @param {date} minDate\n * @param {date} maxDate\n * @private\n */\nLineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) {\n var group, i, j, item;\n if (groupIds.length > 0) {\n for (i = 0; i < groupIds.length; i++) {\n group = this.groups[groupIds[i]];\n var itemsData = group.getItems();\n // optimization for sorted data\n if (group.options.sort == true) {\n var dateComparator = function (a, b) {\n return a.getTime() == b.getTime() ? 0 : a < b ? -1 : 1\n };\n var first = Math.max(0, util.binarySearchValue(itemsData, minDate, 'x', 'before', dateComparator));\n var last = Math.min(itemsData.length, util.binarySearchValue(itemsData, maxDate, 'x', 'after', dateComparator) + 1);\n if (last <= 0) {\n last = itemsData.length;\n }\n var dataContainer = new Array(last-first);\n for (j = first; j < last; j++) {\n item = group.itemsData[j];\n dataContainer[j-first] = item;\n }\n groupsData[groupIds[i]] = dataContainer;\n }\n else {\n // If unsorted data, all data is relevant, just returning entire structure\n groupsData[groupIds[i]] = group.itemsData;\n }\n }\n }\n};\n\n\n/**\n *\n * @param {Array.} groupIds\n * @param {vis.DataSet} groupsData\n * @private\n */\nLineGraph.prototype._applySampling = function (groupIds, groupsData) {\n var group;\n if (groupIds.length > 0) {\n for (var i = 0; i < groupIds.length; i++) {\n group = this.groups[groupIds[i]];\n if (group.options.sampling == true) {\n var dataContainer = groupsData[groupIds[i]];\n if (dataContainer.length > 0) {\n var increment = 1;\n var amountOfPoints = dataContainer.length;\n\n // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop\n // of width changing of the yAxis.\n //TODO: This assumes sorted data, but that's not guaranteed!\n var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x);\n var pointsPerPixel = amountOfPoints / xDistance;\n increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel)));\n\n var sampledData = new Array(amountOfPoints);\n for (var j = 0; j < amountOfPoints; j += increment) {\n var idx = Math.round(j/increment);\n sampledData[idx]=dataContainer[j];\n }\n groupsData[groupIds[i]] = sampledData.splice(0,Math.round(amountOfPoints/increment));\n }\n }\n }\n }\n};\n\n\n/**\n *\n * @param {Array.} groupIds\n * @param {vis.DataSet} groupsData\n * @param {object} groupRanges | this is being filled here\n * @private\n */\nLineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) {\n var groupData, group, i;\n var combinedDataLeft = [];\n var combinedDataRight = [];\n var options;\n if (groupIds.length > 0) {\n for (i = 0; i < groupIds.length; i++) {\n groupData = groupsData[groupIds[i]];\n options = this.groups[groupIds[i]].options;\n if (groupData.length > 0) {\n group = this.groups[groupIds[i]];\n // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.\n if (options.stack === true && options.style === 'bar') {\n if (options.yAxisOrientation === 'left') {\n combinedDataLeft = combinedDataLeft.concat(groupData);\n }\n else {\n combinedDataRight = combinedDataRight.concat(groupData);\n }\n }\n else {\n groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]);\n }\n }\n }\n\n // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.\n Bars.getStackedYRange(combinedDataLeft, groupRanges, groupIds, '__barStackLeft', 'left');\n Bars.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__barStackRight', 'right');\n }\n};\n\n\n/**\n * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden.\n * @param {Array.} groupIds\n * @param {Object} groupRanges\n * @returns {boolean} resized\n * @private\n */\nLineGraph.prototype._updateYAxis = function (groupIds, groupRanges) {\n var resized = false;\n var yAxisLeftUsed = false;\n var yAxisRightUsed = false;\n var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal;\n // if groups are present\n if (groupIds.length > 0) {\n // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop.\n for (var i = 0; i < groupIds.length; i++) {\n var group = this.groups[groupIds[i]];\n if (group && group.options.yAxisOrientation != 'right') {\n yAxisLeftUsed = true;\n minLeft = 1e9;\n maxLeft = -1e9;\n }\n else if (group && group.options.yAxisOrientation) {\n yAxisRightUsed = true;\n minRight = 1e9;\n maxRight = -1e9;\n }\n }\n\n // if there are items:\n for (i = 0; i < groupIds.length; i++) {\n if (groupRanges.hasOwnProperty(groupIds[i])) {\n if (groupRanges[groupIds[i]].ignore !== true) {\n minVal = groupRanges[groupIds[i]].min;\n maxVal = groupRanges[groupIds[i]].max;\n\n if (groupRanges[groupIds[i]].yAxisOrientation != 'right') {\n yAxisLeftUsed = true;\n minLeft = minLeft > minVal ? minVal : minLeft;\n maxLeft = maxLeft < maxVal ? maxVal : maxLeft;\n }\n else {\n yAxisRightUsed = true;\n minRight = minRight > minVal ? minVal : minRight;\n maxRight = maxRight < maxVal ? maxVal : maxRight;\n }\n }\n }\n }\n\n if (yAxisLeftUsed == true) {\n this.yAxisLeft.setRange(minLeft, maxLeft);\n }\n if (yAxisRightUsed == true) {\n this.yAxisRight.setRange(minRight, maxRight);\n }\n }\n resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized;\n resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized;\n\n if (yAxisRightUsed == true && yAxisLeftUsed == true) {\n this.yAxisLeft.drawIcons = true;\n this.yAxisRight.drawIcons = true;\n }\n else {\n this.yAxisLeft.drawIcons = false;\n this.yAxisRight.drawIcons = false;\n }\n this.yAxisRight.master = !yAxisLeftUsed;\n this.yAxisRight.masterAxis = this.yAxisLeft;\n\n if (this.yAxisRight.master == false) {\n if (yAxisRightUsed == true) {\n this.yAxisLeft.lineOffset = this.yAxisRight.width;\n }\n else {\n this.yAxisLeft.lineOffset = 0;\n }\n\n resized = this.yAxisLeft.redraw() || resized;\n resized = this.yAxisRight.redraw() || resized;\n }\n else {\n resized = this.yAxisRight.redraw() || resized;\n }\n\n // clean the accumulated lists\n var tempGroups = ['__barStackLeft', '__barStackRight', '__lineStackLeft', '__lineStackRight'];\n for (i = 0; i < tempGroups.length; i++) {\n if (groupIds.indexOf(tempGroups[i]) != -1) {\n groupIds.splice(groupIds.indexOf(tempGroups[i]), 1);\n }\n }\n\n return resized;\n};\n\n\n/**\n * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function\n *\n * @param {boolean} axisUsed\n * @param {vis.DataAxis} axis\n * @returns {boolean}\n * @private\n */\nLineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) {\n var changed = false;\n if (axisUsed == false) {\n if (axis.dom.frame.parentNode && axis.hidden == false) {\n axis.hide();\n changed = true;\n }\n }\n else {\n if (!axis.dom.frame.parentNode && axis.hidden == true) {\n axis.show();\n changed = true;\n }\n }\n return changed;\n};\n\n\n/**\n * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the\n * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for\n * the yAxis.\n *\n * @param {Array.} datapoints\n * @private\n */\nLineGraph.prototype._convertXcoordinates = function (datapoints) {\n var toScreen = this.body.util.toScreen;\n for (var i = 0; i < datapoints.length; i++) {\n datapoints[i].screen_x = toScreen(datapoints[i].x) + this.props.width;\n datapoints[i].screen_y = datapoints[i].y; //starting point for range calculations\n if (datapoints[i].end != undefined) {\n datapoints[i].screen_end = toScreen(datapoints[i].end) + this.props.width;\n }\n else {\n datapoints[i].screen_end = undefined;\n }\n }\n};\n\n\n/**\n * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the\n * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for\n * the yAxis.\n *\n * @param {Array.} datapoints\n * @param {vis.GraphGroup} group\n * @private\n */\nLineGraph.prototype._convertYcoordinates = function (datapoints, group) {\n var axis = this.yAxisLeft;\n var svgHeight = Number(this.svg.style.height.replace('px', ''));\n if (group.options.yAxisOrientation == 'right') {\n axis = this.yAxisRight;\n }\n for (var i = 0; i < datapoints.length; i++) {\n datapoints[i].screen_y = Math.round(axis.convertValue(datapoints[i].y));\n }\n group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0)));\n};\n\n\nexport default LineGraph;\n","/**\n * This object contains all possible options. It will check if the types are correct, if required if the option is one\n * of the allowed values.\n *\n * __any__ means that the name of the property does not matter.\n * __type__ is a required field for all objects and contains the allowed types of all objects\n */\nlet string = 'string';\nlet bool = 'boolean';\nlet number = 'number';\nlet array = 'array';\nlet date = 'date';\nlet object = 'object'; // should only be in a __type__ property\nlet dom = 'dom';\nlet moment = 'moment';\nlet any = 'any';\n\n\nlet allOptions = {\n configure: {\n enabled: {'boolean': bool},\n filter: {'boolean': bool,'function': 'function'},\n container: {dom},\n __type__: {object,'boolean': bool,'function': 'function'}\n },\n\n //globals :\n alignCurrentTime: {string, 'undefined': 'undefined'}, \n yAxisOrientation: {string:['left','right']},\n defaultGroup: {string},\n sort: {'boolean': bool},\n sampling: {'boolean': bool},\n stack:{'boolean': bool},\n graphHeight: {string, number},\n shaded: {\n enabled: {'boolean': bool},\n orientation: {string:['bottom','top','zero','group']}, // top, bottom, zero, group\n groupId: {object},\n __type__: {'boolean': bool,object}\n },\n style: {string:['line','bar','points']}, // line, bar\n barChart: {\n width: {number},\n minWidth: {number},\n sideBySide: {'boolean': bool},\n align: {string:['left','center','right']},\n __type__: {object}\n },\n interpolation: {\n enabled: {'boolean': bool},\n parametrization: {string:['centripetal', 'chordal','uniform']}, // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)\n alpha: {number},\n __type__: {object,'boolean': bool}\n },\n drawPoints: {\n enabled: {'boolean': bool},\n onRender: { 'function': 'function' },\n size: {number},\n style: {string:['square','circle']}, // square, circle\n __type__: {object,'boolean': bool,'function': 'function'}\n },\n dataAxis: {\n showMinorLabels: {'boolean': bool},\n showMajorLabels: {'boolean': bool},\n icons: {'boolean': bool},\n width: {string, number},\n visible: {'boolean': bool},\n alignZeros: {'boolean': bool},\n left:{\n range: {min:{number,'undefined': 'undefined'},max:{number,'undefined': 'undefined'},__type__: {object}},\n format: {'function': 'function'},\n title: {text:{string,number,'undefined': 'undefined'},style:{string,'undefined': 'undefined'},__type__: {object}},\n __type__: {object}\n },\n right:{\n range: {min:{number,'undefined': 'undefined'},max:{number,'undefined': 'undefined'},__type__: {object}},\n format: {'function': 'function'},\n title: {text:{string,number,'undefined': 'undefined'},style:{string,'undefined': 'undefined'},__type__: {object}},\n __type__: {object}\n },\n __type__: {object}\n },\n legend: {\n enabled: {'boolean': bool},\n icons: {'boolean': bool},\n left: {\n visible: {'boolean': bool},\n position: {string:['top-right','bottom-right','top-left','bottom-left']},\n __type__: {object}\n },\n right: {\n visible: {'boolean': bool},\n position: {string:['top-right','bottom-right','top-left','bottom-left']},\n __type__: {object}\n },\n __type__: {object,'boolean': bool}\n },\n groups: {\n visibility: {any},\n __type__: {object}\n },\n\n autoResize: {'boolean': bool},\n throttleRedraw: {number}, // TODO: DEPRICATED see https://github.com/almende/vis/issues/2511\n clickToUse: {'boolean': bool},\n end: {number, date, string, moment},\n format: {\n minorLabels: {\n millisecond: {string,'undefined': 'undefined'},\n second: {string,'undefined': 'undefined'},\n minute: {string,'undefined': 'undefined'},\n hour: {string,'undefined': 'undefined'},\n weekday: {string,'undefined': 'undefined'},\n day: {string,'undefined': 'undefined'},\n week: {string,'undefined': 'undefined'},\n month: {string,'undefined': 'undefined'},\n quarter: {string,'undefined': 'undefined'},\n year: {string,'undefined': 'undefined'},\n __type__: {object}\n },\n majorLabels: {\n millisecond: {string,'undefined': 'undefined'},\n second: {string,'undefined': 'undefined'},\n minute: {string,'undefined': 'undefined'},\n hour: {string,'undefined': 'undefined'},\n weekday: {string,'undefined': 'undefined'},\n day: {string,'undefined': 'undefined'},\n week: {string,'undefined': 'undefined'},\n month: {string,'undefined': 'undefined'},\n quarter: {string,'undefined': 'undefined'},\n year: {string,'undefined': 'undefined'},\n __type__: {object}\n },\n __type__: {object}\n },\n moment: {'function': 'function'},\n height: {string, number},\n hiddenDates: {\n start: {date, number, string, moment},\n end: {date, number, string, moment},\n repeat: {string},\n __type__: {object, array}\n },\n locale:{string},\n locales:{\n __any__: {any},\n __type__: {object}\n },\n max: {date, number, string, moment},\n maxHeight: {number, string},\n maxMinorChars: {number},\n min: {date, number, string, moment},\n minHeight: {number, string},\n moveable: {'boolean': bool},\n multiselect: {'boolean': bool},\n orientation: {string},\n showCurrentTime: {'boolean': bool},\n showMajorLabels: {'boolean': bool},\n showMinorLabels: {'boolean': bool},\n start: {date, number, string, moment},\n timeAxis: {\n scale: {string,'undefined': 'undefined'},\n step: {number,'undefined': 'undefined'},\n __type__: {object}\n },\n width: {string, number},\n zoomable: {'boolean': bool},\n zoomKey: {string: ['ctrlKey', 'altKey', 'metaKey', '']},\n zoomMax: {number},\n zoomMin: {number},\n zIndex: {number},\n __type__: {object}\n};\n\nlet configureOptions = {\n global: {\n alignCurrentTime: ['none', 'year', 'month', 'quarter', 'week', 'isoWeek', 'day', 'date', 'hour', 'minute', 'second'], \n //yAxisOrientation: ['left','right'], // TDOO: enable as soon as Grahp2d doesn't crash when changing this on the fly\n sort: true,\n sampling: true,\n stack:false,\n shaded: {\n enabled: false,\n orientation: ['zero','top','bottom','group'] // zero, top, bottom\n },\n style: ['line','bar','points'], // line, bar\n barChart: {\n width: [50,5,100,5],\n minWidth: [50,5,100,5],\n sideBySide: false,\n align: ['left','center','right'] // left, center, right\n },\n interpolation: {\n enabled: true,\n parametrization: ['centripetal','chordal','uniform'] // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)\n },\n drawPoints: {\n enabled: true,\n size: [6,2,30,1],\n style: ['square', 'circle'] // square, circle\n },\n dataAxis: {\n showMinorLabels: true,\n showMajorLabels: true,\n icons: false,\n width: [40,0,200,1],\n visible: true,\n alignZeros: true,\n left:{\n //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined},\n //format: function (value) {return value;},\n title: {text:'',style:''}\n },\n right:{\n //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined},\n //format: function (value) {return value;},\n title: {text:'',style:''}\n }\n },\n legend: {\n enabled: false,\n icons: true,\n left: {\n visible: true,\n position: ['top-right','bottom-right','top-left','bottom-left'] // top/bottom - left,right\n },\n right: {\n visible: true,\n position: ['top-right','bottom-right','top-left','bottom-left'] // top/bottom - left,right\n }\n },\n\n autoResize: true,\n clickToUse: false,\n end: '',\n format: {\n minorLabels: {\n millisecond:'SSS',\n second: 's',\n minute: 'HH:mm',\n hour: 'HH:mm',\n weekday: 'ddd D',\n day: 'D',\n week: 'w',\n month: 'MMM',\n quarter: '[Q]Q',\n year: 'YYYY'\n },\n majorLabels: {\n millisecond:'HH:mm:ss',\n second: 'D MMMM HH:mm',\n minute: 'ddd D MMMM',\n hour: 'ddd D MMMM',\n weekday: 'MMMM YYYY',\n day: 'MMMM YYYY',\n week: 'MMMM YYYY',\n month: 'YYYY',\n quarter: 'YYYY',\n year: ''\n }\n },\n\n height: '',\n locale: '',\n max: '',\n maxHeight: '',\n maxMinorChars: [7, 0, 20, 1],\n min: '',\n minHeight: '',\n moveable:true,\n orientation: ['both', 'bottom', 'top'],\n showCurrentTime: false,\n showMajorLabels: true,\n showMinorLabels: true,\n start: '',\n width: '100%',\n zoomable: true,\n zoomKey: ['ctrlKey', 'altKey', 'metaKey', ''],\n zoomMax: [315360000000000, 10, 315360000000000, 1],\n zoomMin: [10, 10, 315360000000000, 1],\n zIndex: 0\n }\n};\n\nexport {allOptions, configureOptions};\n","import moment from '../module/moment';\nimport util from '../util';\nimport { DataSet } from 'vis-data';\nimport { DataView } from 'vis-data';\nimport Range from './Range';\nimport Core from './Core';\nimport TimeAxis from './component/TimeAxis';\nimport CurrentTime from './component/CurrentTime';\nimport CustomTime from './component/CustomTime';\nimport LineGraph from './component/LineGraph';\n\nimport { Validator } from '../shared/Validator';\nimport { printStyle } from '../shared/Validator';\nimport { allOptions } from './optionsGraph2d';\nimport { configureOptions } from './optionsGraph2d';\n\nimport Configurator from '../shared/Configurator';\n\n/**\n * Create a timeline visualization\n * @param {HTMLElement} container\n * @param {vis.DataSet | Array} [items]\n * @param {vis.DataSet | Array | vis.DataView | Object} [groups]\n * @param {Object} [options] See Graph2d.setOptions for the available options.\n * @constructor Graph2d\n * @extends Core\n */\nfunction Graph2d (container, items, groups, options) {\n // if the third element is options, the forth is groups (optionally);\n if (!(Array.isArray(groups) || groups instanceof DataSet || groups instanceof DataView) && groups instanceof Object) {\n var forthArgument = options;\n options = groups;\n groups = forthArgument;\n }\n\n // TODO: REMOVE THIS in the next MAJOR release\n // see https://github.com/almende/vis/issues/2511\n if (options && options.throttleRedraw) {\n console.warn(\"Graph2d option \\\"throttleRedraw\\\" is DEPRICATED and no longer supported. It will be removed in the next MAJOR release.\");\n }\n\n var me = this;\n this.defaultOptions = {\n start: null,\n end: null,\n\n autoResize: true,\n\n orientation: {\n axis: 'bottom', // axis orientation: 'bottom', 'top', or 'both'\n item: 'bottom' // not relevant for Graph2d\n },\n\n moment: moment,\n\n width: null,\n height: null,\n maxHeight: null,\n minHeight: null\n };\n this.options = util.deepExtend({}, this.defaultOptions);\n\n // Create the DOM, props, and emitter\n this._create(container);\n\n // all components listed here will be repainted automatically\n this.components = [];\n\n this.body = {\n dom: this.dom,\n domProps: this.props,\n emitter: {\n on: this.on.bind(this),\n off: this.off.bind(this),\n emit: this.emit.bind(this)\n },\n hiddenDates: [],\n util: {\n toScreen: me._toScreen.bind(me),\n toGlobalScreen: me._toGlobalScreen.bind(me), // this refers to the root.width\n toTime: me._toTime.bind(me),\n toGlobalTime : me._toGlobalTime.bind(me)\n }\n };\n\n // range\n this.range = new Range(this.body);\n this.components.push(this.range);\n this.body.range = this.range;\n\n // time axis\n this.timeAxis = new TimeAxis(this.body);\n this.components.push(this.timeAxis);\n //this.body.util.snap = this.timeAxis.snap.bind(this.timeAxis);\n\n // current time bar\n this.currentTime = new CurrentTime(this.body);\n this.components.push(this.currentTime);\n\n // item set\n this.linegraph = new LineGraph(this.body);\n\n this.components.push(this.linegraph);\n\n this.itemsData = null; // DataSet\n this.groupsData = null; // DataSet\n\n\n this.on('tap', function (event) {\n me.emit('click', me.getEventProperties(event))\n });\n this.on('doubletap', function (event) {\n me.emit('doubleClick', me.getEventProperties(event))\n });\n this.dom.root.oncontextmenu = function (event) {\n me.emit('contextmenu', me.getEventProperties(event))\n };\n \n //Single time autoscale/fit\n this.initialFitDone = false;\n this.on('changed', function (){\n if (me.itemsData == null) return;\n if (!me.initialFitDone && !me.options.rollingMode) {\n me.initialFitDone = true;\n if (me.options.start != undefined || me.options.end != undefined) {\n if (me.options.start == undefined || me.options.end == undefined) {\n var range = me.getItemRange();\n }\n\n var start = me.options.start != undefined ? me.options.start : range.min;\n var end = me.options.end != undefined ? me.options.end : range.max;\n me.setWindow(start, end, {animation: false});\n } else {\n me.fit({animation: false});\n }\n }\n\n if (!me.initialDrawDone && (me.initialRangeChangeDone || (!me.options.start && !me.options.end) \n || me.options.rollingMode)) {\n me.initialDrawDone = true;\n me.dom.root.style.visibility = 'visible';\n me.dom.loadingScreen.parentNode.removeChild(me.dom.loadingScreen);\n if (me.options.onInitialDrawComplete) {\n setTimeout(() => {\n return me.options.onInitialDrawComplete();\n }, 0)\n }\n }\n });\n \n // apply options\n if (options) {\n this.setOptions(options);\n }\n\n // IMPORTANT: THIS HAPPENS BEFORE SET ITEMS!\n if (groups) {\n this.setGroups(groups);\n }\n\n // create itemset\n if (items) {\n this.setItems(items);\n }\n\n // draw for the first time\n this._redraw();\n}\n\n// Extend the functionality from Core\nGraph2d.prototype = new Core();\n\nGraph2d.prototype.setOptions = function (options) {\n // validate options\n let errorFound = Validator.validate(options, allOptions);\n if (errorFound === true) {\n console.log('%cErrors have been found in the supplied options object.', printStyle);\n }\n\n Core.prototype.setOptions.call(this, options);\n};\n\n/**\n * Set items\n * @param {vis.DataSet | Array | null} items\n */\nGraph2d.prototype.setItems = function(items) {\n var initialLoad = (this.itemsData == null);\n\n // convert to type DataSet when needed\n var newDataSet;\n if (!items) {\n newDataSet = null;\n }\n else if (items instanceof DataSet || items instanceof DataView) {\n newDataSet = items;\n }\n else {\n // turn an array into a dataset\n newDataSet = new DataSet(items, {\n type: {\n start: 'Date',\n end: 'Date'\n }\n });\n }\n\n // set items\n this.itemsData = newDataSet;\n this.linegraph && this.linegraph.setItems(newDataSet);\n\n if (initialLoad) {\n if (this.options.start != undefined || this.options.end != undefined) {\n var start = this.options.start != undefined ? this.options.start : null;\n var end = this.options.end != undefined ? this.options.end : null;\n this.setWindow(start, end, {animation: false});\n }\n else {\n this.fit({animation: false});\n }\n }\n};\n\n/**\n * Set groups\n * @param {vis.DataSet | Array} groups\n */\nGraph2d.prototype.setGroups = function(groups) {\n // convert to type DataSet when needed\n var newDataSet;\n if (!groups) {\n newDataSet = null;\n }\n else if (groups instanceof DataSet || groups instanceof DataView) {\n newDataSet = groups;\n }\n else {\n // turn an array into a dataset\n newDataSet = new DataSet(groups);\n }\n\n this.groupsData = newDataSet;\n this.linegraph.setGroups(newDataSet);\n};\n\n/**\n * Returns an object containing an SVG element with the icon of the group (size determined by iconWidth and iconHeight), the label of the group (content) and the yAxisOrientation of the group (left or right).\n * @param {vis.GraphGroup.id} groupId\n * @param {number} width\n * @param {number} height\n * @returns {{icon: SVGElement, label: string, orientation: string}|string}\n */\nGraph2d.prototype.getLegend = function(groupId, width, height) {\n if (width === undefined) {width = 15;}\n if (height === undefined) {height = 15;}\n if (this.linegraph.groups[groupId] !== undefined) {\n return this.linegraph.groups[groupId].getLegend(width,height);\n }\n else {\n return \"cannot find group:'\" + groupId + \"'\";\n }\n};\n\n/**\n * This checks if the visible option of the supplied group (by ID) is true or false.\n * @param {vis.GraphGroup.id} groupId\n * @returns {boolean}\n */\nGraph2d.prototype.isGroupVisible = function(groupId) {\n if (this.linegraph.groups[groupId] !== undefined) {\n return (this.linegraph.groups[groupId].visible && (this.linegraph.options.groups.visibility[groupId] === undefined || this.linegraph.options.groups.visibility[groupId] == true));\n }\n else {\n return false;\n }\n};\n\n\n/**\n * Get the data range of the item set.\n * @returns {{min: Date, max: Date}} range A range with a start and end Date.\n * When no minimum is found, min==null\n * When no maximum is found, max==null\n */\nGraph2d.prototype.getDataRange = function() {\n var min = null;\n var max = null;\n\n // calculate min from start filed\n for (var groupId in this.linegraph.groups) {\n if (this.linegraph.groups.hasOwnProperty(groupId)) {\n if (this.linegraph.groups[groupId].visible == true) {\n for (var i = 0; i < this.linegraph.groups[groupId].itemsData.length; i++) {\n var item = this.linegraph.groups[groupId].itemsData[i];\n var value = util.convert(item.x, 'Date').valueOf();\n min = min == null ? value : min > value ? value : min;\n max = max == null ? value : max < value ? value : max;\n }\n }\n }\n }\n\n return {\n min: (min != null) ? new Date(min) : null,\n max: (max != null) ? new Date(max) : null\n };\n};\n\n\n/**\n * Generate Timeline related information from an event\n * @param {Event} event\n * @return {Object} An object with related information, like on which area\n * The event happened, whether clicked on an item, etc.\n */\nGraph2d.prototype.getEventProperties = function (event) {\n var clientX = event.center ? event.center.x : event.clientX;\n var clientY = event.center ? event.center.y : event.clientY;\n var x = clientX - util.getAbsoluteLeft(this.dom.centerContainer);\n var y = clientY - util.getAbsoluteTop(this.dom.centerContainer);\n var time = this._toTime(x);\n\n var customTime = CustomTime.customTimeFromTarget(event);\n\n var element = util.getTarget(event);\n var what = null;\n if (util.hasParent(element, this.timeAxis.dom.foreground)) {what = 'axis';}\n else if (this.timeAxis2 && util.hasParent(element, this.timeAxis2.dom.foreground)) {what = 'axis';}\n else if (util.hasParent(element, this.linegraph.yAxisLeft.dom.frame)) {what = 'data-axis';}\n else if (util.hasParent(element, this.linegraph.yAxisRight.dom.frame)) {what = 'data-axis';}\n else if (util.hasParent(element, this.linegraph.legendLeft.dom.frame)) {what = 'legend';}\n else if (util.hasParent(element, this.linegraph.legendRight.dom.frame)) {what = 'legend';}\n else if (customTime != null) {what = 'custom-time';}\n else if (util.hasParent(element, this.currentTime.bar)) {what = 'current-time';}\n else if (util.hasParent(element, this.dom.center)) {what = 'background';}\n\n var value = [];\n var yAxisLeft = this.linegraph.yAxisLeft;\n var yAxisRight = this.linegraph.yAxisRight;\n if (!yAxisLeft.hidden && this.itemsData.length > 0) {\n value.push(yAxisLeft.screenToValue(y));\n }\n if (!yAxisRight.hidden && this.itemsData.length > 0) {\n value.push(yAxisRight.screenToValue(y));\n }\n\n return {\n event: event,\n customTime: customTime ? customTime.options.id : null,\n what: what,\n pageX: event.srcEvent ? event.srcEvent.pageX : event.pageX,\n pageY: event.srcEvent ? event.srcEvent.pageY : event.pageY,\n x: x,\n y: y,\n time: time,\n value: value\n }\n};\n\n/**\n * Load a configurator\n * @return {Object}\n * @private\n */\nGraph2d.prototype._createConfigurator = function () {\n return new Configurator(this, this.dom.container, configureOptions);\n};\n\n\nexport default Graph2d;\n","// utils\nimport util from 'vis-util';\nimport * as DOMutil from './lib/DOMutil';\n\n// data\nimport { DataSet, DataView, Queue } from 'vis-data';\n\n\n// Timeline\nimport Timeline from './lib/timeline/Timeline';\nimport Graph2d from './lib/timeline/Graph2d';\n\nimport Core from './lib/timeline/Core';\nimport * as DateUtil from './lib/timeline/DateUtil';\nimport Range from './lib/timeline/Range';\nimport * as stack from './lib/timeline/Stack';\nimport TimeStep from './lib/timeline/TimeStep';\n\nimport Item from './lib/timeline/component/item/Item';\nimport BackgroundItem from './lib/timeline/component/item/BackgroundItem';\nimport BoxItem from './lib/timeline/component/item/BoxItem';\nimport PointItem from './lib/timeline/component/item/PointItem';\nimport RangeItem from './lib/timeline/component/item/RangeItem';\n\nimport BackgroundGroup from './lib/timeline/component/BackgroundGroup';\nimport Component from './lib/timeline/component/Component';\nimport CurrentTime from './lib/timeline/component/CurrentTime';\nimport CustomTime from './lib/timeline/component/CustomTime';\nimport DataAxis from './lib/timeline/component/DataAxis';\nimport DataScale from './lib/timeline/component/DataScale';\nimport GraphGroup from './lib/timeline/component/GraphGroup';\nimport Group from './lib/timeline/component/Group';\nimport ItemSet from './lib/timeline/component/ItemSet';\nimport Legend from './lib/timeline/component/Legend';\nimport LineGraph from './lib/timeline/component/LineGraph';\nimport TimeAxis from './lib/timeline/component/TimeAxis';\n\n// bundled external libraries\nimport moment from './lib/module/moment';\nimport Hammer from './lib/module/hammer';\nimport keycharm from 'keycharm';\n\nconst defaultLanguage = DOMutil.getNavigatorLanguage()\nmoment.locale(defaultLanguage)\n\nconst timeline = {\n Core ,\n DateUtil,\n Range,\n stack,\n TimeStep,\n\n components: {\n items: {\n Item,\n BackgroundItem,\n BoxItem,\n PointItem,\n RangeItem,\n },\n\n BackgroundGroup,\n Component,\n CurrentTime,\n CustomTime,\n DataAxis,\n DataScale,\n GraphGroup,\n Group,\n ItemSet,\n Legend,\n LineGraph,\n TimeAxis\n }\n}\n\nexport {\n util,\n DOMutil,\n\n DataSet,\n DataView,\n Queue,\n\n Timeline,\n Graph2d,\n\n timeline,\n\n moment,\n Hammer,\n keycharm\n};\nexport default {\n util,\n DOMutil,\n\n DataSet,\n DataView,\n Queue,\n\n Timeline,\n Graph2d,\n\n timeline,\n\n moment,\n Hammer,\n keycharm\n};\n"],"names":["_defineProperty","obj","key","value","Object","defineProperty","enumerable","configurable","writable","_arrayWithoutHoles","arr","Array","isArray","i","arr2","length","arrayWithoutHoles","_iterableToArray","iter","Symbol","iterator","prototype","toString","call","from","iterableToArray","_nonIterableSpread","TypeError","nonIterableSpread","_toConsumableArray","toConsumableArray","commonjsGlobal","globalThis","window","global","self","commonjsRequire","Error","createCommonjsModule","fn","module","exports","_typeof_1","_typeof2","constructor","_typeof","moment","factory","hookCallback","hooks","apply","arguments","setHookCallback","callback","input","isObject","isObjectEmpty","getOwnPropertyNames","k","hasOwnProperty","isUndefined","isNumber","isDate","Date","map","res","push","hasOwnProp","a","b","extend","valueOf","createUTC","format","locale","strict","createLocalOrUTC","utc","defaultParsingFlags","empty","unusedTokens","unusedInput","overflow","charsLeftOver","nullInput","invalidMonth","invalidFormat","userInvalidated","iso","parsedDateParts","meridiem","rfc2822","weekdayMismatch","getParsingFlags","m","_pf","some","fun","t","len","isValid","_isValid","flags","parsedParts","isNowValid","isNaN","_d","getTime","invalidWeekday","_strict","bigHour","undefined","isFrozen","createInvalid","NaN","momentProperties","copyConfig","to","prop","val","_isAMomentObject","_i","_f","_l","_tzm","_isUTC","_offset","_locale","updateInProgress","Moment","config","updateOffset","isMoment","absFloor","number","Math","ceil","floor","toInt","argumentForCoercion","coercedNumber","isFinite","compareArrays","array1","array2","dontConvert","min","lengthDiff","abs","diffs","warn","msg","suppressDeprecationWarnings","console","deprecate","firstTime","deprecationHandler","args","arg","slice","join","stack","deprecations","deprecateSimple","name","isFunction","Function","set","_config","_dayOfMonthOrdinalParseLenient","RegExp","_dayOfMonthOrdinalParse","source","_ordinalParse","mergeConfigs","parentConfig","childConfig","Locale","keys","defaultCalendar","sameDay","nextDay","nextWeek","lastDay","lastWeek","sameElse","calendar","mom","now","output","_calendar","defaultLongDateFormat","LTS","LT","L","LL","LLL","LLLL","longDateFormat","_longDateFormat","formatUpper","toUpperCase","replace","defaultInvalidDate","invalidDate","_invalidDate","defaultOrdinal","defaultDayOfMonthOrdinalParse","ordinal","_ordinal","defaultRelativeTime","future","past","s","ss","mm","h","hh","d","dd","M","MM","y","yy","relativeTime","withoutSuffix","string","isFuture","_relativeTime","pastFuture","diff","aliases","addUnitAlias","unit","shorthand","lowerCase","toLowerCase","normalizeUnits","units","normalizeObjectUnits","inputObject","normalizedInput","normalizedProp","priorities","addUnitPriority","priority","getPrioritizedUnits","unitsObj","u","sort","zeroFill","targetLength","forceSign","absNumber","zerosToFill","sign","pow","max","substr","formattingTokens","localFormattingTokens","formatFunctions","formatTokenFunctions","addFormatToken","token","padded","func","localeData","removeFormattingTokens","match","makeFormatFunction","array","formatMoment","expandFormat","replaceLongDateFormatTokens","lastIndex","test","match1","match2","match3","match4","match6","match1to2","match3to4","match5to6","match1to3","match1to4","match1to6","matchUnsigned","matchSigned","matchOffset","matchShortOffset","matchTimestamp","matchWord","regexes","addRegexToken","regex","strictRegex","isStrict","getParseRegexForToken","unescapeFormat","regexEscape","matched","p1","p2","p3","p4","tokens","addParseToken","addWeekParseToken","_w","addTimeToArrayFromToken","_a","YEAR","MONTH","DATE","HOUR","MINUTE","SECOND","MILLISECOND","WEEK","WEEKDAY","year","parseTwoDigitYear","parseInt","daysInYear","isLeapYear","getSetYear","makeGetSet","getIsLeapYear","keepTime","set$1","get","month","date","daysInMonth","stringGet","stringSet","prioritized","mod","n","x","indexOf","o","modMonth","monthsShort","months","monthsShortRegex","monthsRegex","monthsParse","MONTHS_IN_FORMAT","defaultLocaleMonths","split","localeMonths","_months","isFormat","defaultLocaleMonthsShort","localeMonthsShort","_monthsShort","handleStrictParse","monthName","ii","llc","toLocaleLowerCase","_monthsParse","_longMonthsParse","_shortMonthsParse","localeMonthsParse","_monthsParseExact","setMonth","dayOfMonth","getSetMonth","getDaysInMonth","defaultMonthsShortRegex","computeMonthsParse","_monthsShortStrictRegex","_monthsShortRegex","defaultMonthsRegex","_monthsStrictRegex","_monthsRegex","cmpLenRev","shortPieces","longPieces","mixedPieces","createDate","ms","getFullYear","setFullYear","createUTCDate","UTC","getUTCFullYear","setUTCFullYear","firstWeekOffset","dow","doy","fwd","fwdlw","getUTCDay","dayOfYearFromWeeks","week","weekday","localWeekday","weekOffset","dayOfYear","resYear","resDayOfYear","weekOfYear","resWeek","weeksInYear","weekOffsetNext","localeWeek","_week","defaultLocaleWeek","localeFirstDayOfWeek","localeFirstDayOfYear","getSetWeek","add","getSetISOWeek","weekdaysMin","weekdaysShort","weekdays","weekdaysMinRegex","weekdaysShortRegex","weekdaysRegex","weekdaysParse","parseWeekday","parseIsoWeekday","shiftWeekdays","ws","concat","defaultLocaleWeekdays","localeWeekdays","_weekdays","day","defaultLocaleWeekdaysShort","localeWeekdaysShort","_weekdaysShort","defaultLocaleWeekdaysMin","localeWeekdaysMin","_weekdaysMin","handleStrictParse$1","weekdayName","_weekdaysParse","_shortWeekdaysParse","_minWeekdaysParse","localeWeekdaysParse","_weekdaysParseExact","_fullWeekdaysParse","getSetDayOfWeek","getDay","getSetLocaleDayOfWeek","getSetISODayOfWeek","defaultWeekdaysRegex","computeWeekdaysParse","_weekdaysStrictRegex","_weekdaysRegex","defaultWeekdaysShortRegex","_weekdaysShortStrictRegex","_weekdaysShortRegex","defaultWeekdaysMinRegex","_weekdaysMinStrictRegex","_weekdaysMinRegex","minPieces","minp","shortp","longp","hFormat","hours","kFormat","minutes","seconds","lowercase","matchMeridiem","_meridiemParse","kInput","_isPm","isPM","_meridiem","pos","pos1","pos2","localeIsPM","charAt","defaultLocaleMeridiemParse","localeMeridiem","isLower","getSetHour","baseConfig","dayOfMonthOrdinalParse","meridiemParse","locales","localeFamilies","globalLocale","normalizeLocale","chooseLocale","names","j","next","loadLocale","oldLocale","_abbr","aliasedRequire","getSetGlobalLocale","e","values","data","getLocale","defineLocale","abbr","parentLocale","forEach","updateLocale","tmpLocale","listLocales","checkOverflow","_overflowDayOfYear","_overflowWeeks","_overflowWeekday","defaults","c","currentDateArray","nowValue","_useUTC","getUTCMonth","getUTCDate","getMonth","getDate","configFromArray","currentDate","expectedWeekday","yearToUse","dayOfYearFromWeekInfo","_dayOfYear","_nextDay","setUTCMinutes","getUTCMinutes","w","weekYear","temp","weekdayOverflow","GG","W","E","createLocal","curWeek","gg","extendedIsoRegex","basicIsoRegex","tzRegex","isoDates","isoTimes","aspNetJsonRegex","configFromISO","l","exec","allowTime","dateFormat","timeFormat","tzFormat","configFromStringAndFormat","extractFromRFC2822Strings","yearStr","monthStr","dayStr","hourStr","minuteStr","secondStr","result","untruncateYear","preprocessRFC2822","checkWeekday","weekdayStr","parsedInput","weekdayProvided","weekdayActual","obsOffsets","UT","GMT","EDT","EST","CDT","CST","MDT","MST","PDT","PST","calculateOffset","obsOffset","militaryOffset","numOffset","hm","configFromRFC2822","parsedArray","configFromString","createFromInputFallback","ISO_8601","RFC_2822","skipped","stringLength","totalParsedInputLength","meridiemFixWrap","hour","isPm","meridiemHour","configFromStringAndArray","tempConfig","bestMoment","scoreToBeat","currentScore","score","configFromObject","minute","second","millisecond","createFromConfig","prepareConfig","preparse","configFromInput","isUTC","prototypeMin","other","prototypeMax","pickBy","moments","ordering","isDurationValid","unitHasDecimal","parseFloat","isValid$1","createInvalid$1","createDuration","Duration","duration","years","quarters","quarter","weeks","isoWeek","days","milliseconds","_milliseconds","_days","_data","_bubble","isDuration","absRound","round","offset","separator","utcOffset","offsetFromString","chunkOffset","matcher","matches","chunk","parts","cloneWithOffset","model","clone","setTime","local","getDateOffset","getTimezoneOffset","getSetOffset","keepLocalTime","keepMinutes","localAdjust","_changeInProgress","addSubtract","getSetZone","setOffsetToUTC","setOffsetToLocal","subtract","setOffsetToParsedOffset","tZone","hasAlignedHourOffset","isDaylightSavingTime","isDaylightSavingTimeShifted","_isDSTShifted","toArray","isLocal","isUtcOffset","isUtc","aspNetRegex","isoRegex","ret","diffRes","parseIso","momentsDifference","invalid","inp","positiveMomentsDifference","base","isAfter","isBefore","createAdder","direction","period","dur","tmp","isAdding","getCalendarFormat","myMoment","calendar$1","time","formats","sod","startOf","calendarFormat","localInput","endOf","isBetween","inclusivity","localFrom","localTo","isSame","inputMs","isSameOrAfter","isSameOrBefore","asFloat","that","zoneDelta","monthDiff","wholeMonthDiff","anchor","anchor2","adjust","defaultFormat","defaultFormatUtc","toISOString","keepOffset","toDate","inspect","zone","prefix","datetime","suffix","inputString","postformat","humanize","fromNow","toNow","newLocaleData","lang","MS_PER_SECOND","MS_PER_MINUTE","MS_PER_HOUR","MS_PER_400_YEARS","mod$1","dividend","divisor","localStartOfDate","utcStartOfDate","startOfDate","isoWeekday","unix","toObject","toJSON","isValid$2","parsingFlags","invalidAt","creationData","isoWeekYear","addWeekYearFormatToken","getter","getSetWeekYear","getSetWeekYearHelper","getSetISOWeekYear","getISOWeeksInYear","getWeeksInYear","weekInfo","weeksTarget","setWeekAll","dayOfYearData","getSetQuarter","getSetDayOfMonth","getSetDayOfYear","getSetMinute","getSetSecond","parseMs","getSetMillisecond","getZoneAbbr","getZoneName","proto","isoWeeks","isoWeeksInYear","parseZone","isDST","zoneAbbr","zoneName","dates","isDSTShifted","createUnix","createInZone","preParsePostFormat","proto$1","firstDayOfYear","firstDayOfWeek","get$1","index","field","setter","listMonthsImpl","out","listWeekdaysImpl","localeSorted","shift","listMonths","listMonthsShort","listWeekdays","listWeekdaysShort","listWeekdaysMin","langData","mathAbs","addSubtract$1","add$1","subtract$1","absCeil","bubble","monthsFromDays","monthsToDays","daysToMonths","as","valueOf$1","makeAs","alias","asMilliseconds","asSeconds","asMinutes","asHours","asDays","asWeeks","asMonths","asQuarters","asYears","clone$1","get$2","makeGetter","thresholds","substituteTimeAgo","relativeTime$1","posNegDuration","getSetRelativeTimeRounding","roundingFunction","getSetRelativeTimeThreshold","threshold","limit","withSuffix","abs$1","toISOString$1","Y","D","toFixed","total","totalSign","ymSign","daysSign","hmsSign","proto$2","toIsoString","version","relativeTimeRounding","relativeTimeThreshold","HTML5_FMT","DATETIME_LOCAL","DATETIME_LOCAL_SECONDS","DATETIME_LOCAL_MS","TIME","TIME_SECONDS","TIME_MS","byteToHex","stringifyUUID","buf","bth","random","crypto","getRandomValues","_rnds8","Uint8Array","whatwgRNG","_rnds","r","byteToHex$1","i$1","seedBytes","defaultNodeId","defaultClockseq","uuid4","options","rnds","rng","ownKeys","object","enumerableOnly","getOwnPropertySymbols","filter","sym","getOwnPropertyDescriptor","_objectSpread","target","getOwnPropertyDescriptors","defineProperties","ASPDateRegex","fullHexRE","shortHexRE","Number","recursiveDOMDelete","DOMobject","hasChildNodes","child","firstChild","removeChild","isString","String","parse","copyOrDelete","allowDeletion","doDeletion","fillIfDefined","aProp","bProp","assign","selectiveExtend","props","_len","others","_key","_others","p","selectiveDeepExtend","deepExtend","selectiveNotDeepExtend","propsToExclude","protoExtend","equalArray","convert","type","Boolean","getType","_value","never","copyAndExtendArray","newValue","copyArray","getAbsoluteLeft","elem","getBoundingClientRect","left","getAbsoluteRight","right","getAbsoluteTop","top","addClassName","classNames","classes","className","newClasses","removeClassName","oldClasses","_key2","updateProperty","throttle","scheduled","requestAnimationFrame","addEventListener","element","action","listener","useCapture","navigator","userAgent","attachEvent","removeEventListener","detachEvent","preventDefault","event","returnValue","getTarget","srcElement","Element","nodeType","parentNode","hasParent","parent","option","asBoolean","defaultValue","asNumber","asString","asSize","asElement","hexToRGB","hex","g","overrideOpacity","color","opacity","rgb","_rgb","RGBToHex","red","green","blue","parseColor","inputColor","defaultColor","colorStr","isValidRGB","isValidHex","hsv","hexToHSV","lighterColorHSV","v","darkerColorHSV","darkerColorHex","HSVToHex","lighterColorHex","background","border","highlight","hover","_color","RGBToHSV","minRGB","maxRGB","hue","saturation","cssUtil","cssText","styles","style","trim","_key3","_value2","addCssText","currentStyles","newStyles","removeCssText","removeStyles","_key4","HSVToRGB","f","q","isOk","isValidRGBA","rgba","selectiveBridgeObject","fields","referenceObject","objectTo","create","bridgeObject","insertSort","compare","mergeOptions","mergeTarget","globalOptions","isPresent","isEmpty","doMerge","src","dst","srcOption","globalPassed","globalOption","globalEnabled","enabled","binarySearchCustom","orderedItems","comparator","field2","maxIterations","iteration","low","high","middle","item","_value3","searchResult","binarySearchValue","sidePreference","prevValue","nextValue","easingFunctions","linear","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","getScrollBarWidth","inner","document","createElement","width","height","outer","position","visibility","appendChild","body","w1","offsetWidth","w2","clientWidth","topMost","pile","accessors","candidate","_iteratorNormalCompletion","_didIteratorError","_iteratorError","_iterator","_step","done","member","err","return","util","freeze","randomUUID","prepareElements","JSONcontainer","elementType","redundant","used","cleanupElements","resetElements","getSVGElement","svgContainer","createElementNS","getDOMElement","DOMContainer","insertBefore","drawPoint","groupTemplate","labelObj","point","setAttributeNS","size","label","xOffset","yOffset","content","textContent","drawBar","rect","getNavigatorLanguage","languages","userLanguage","language","browserLanguage","_classCallCheck","instance","Constructor","classCallCheck","_defineProperties","descriptor","_createClass","protoProps","staticProps","createClass","_assertThisInitialized","ReferenceError","assertThisInitialized","_possibleConstructorReturn","possibleConstructorReturn","getPrototypeOf","_getPrototypeOf","setPrototypeOf","__proto__","_setPrototypeOf","_inherits","subClass","superClass","inherits","createCommonjsModule$1","byteToHex$2","i$2","random$1","byteToHex$1$1","i$1$1","seedBytes$1","defaultNodeId$1","defaultClockseq$1","isId","Queue","_queue","_timeout","_extended","delay","Infinity","setOptions","_flushIfNeeded","destroy","flush","methods","method","original","me","queue","context","entry","_this","clearTimeout","setTimeout","splice","DataSetPart","_subscribers","remove","update","subscribe","on","unsubscribe","off","_trigger","payload","senderId","subscribers","subscriber","DataSet","_DataSetPart","_options","_idProp","fieldId","_type","addedIds","id","_addItem","items","_this2","updatedIds","oldData","updatedData","idProp","addOrUpdate","origId","fullItem","oldItem","_updateItem","_id","first","ids","returnType","itemIds","itemId","_getItem","order","_sort","_filterFields","_i2","_len2","_i3","_len3","resultant","_id2","getIds","_i4","_len4","_i5","_len5","_id3","_i6","_len6","_id4","_i7","_len7","_i8","_len8","_id5","getDataSet","_i9","_len9","_id6","_item","mappedItems","reduce","filteredItem","av","bv","removedIds","removedItems","_remove","ident","clear","maxField","itemField","minField","distinct","fieldType","count","exists","_i10","_len10","types","raw","converted","JSON","stringify","DataView","_ids","_onEvent","bind","setData","refresh","oldIds","newIds","error","viewOptions","thisFilter","optionsFilter","defaultFilter","params","oldItems","updatedItems","it","fails","propertyIsEnumerable","classof","IndexedObject","requireObjectCoercible","O","check","EXISTS","DESCRIPTORS","PREFERRED_STRING","nativeDefineProperty","P","Attributes","anObject","toPrimitive","IE8_DOM_DEFINE","bitmap","definePropertyModule","createPropertyDescriptor","hide","SHARED","store","setGlobal","mode","IS_PURE","copyright","shared","WeakMap","nativeFunctionToString","postfix","uid","has","enforce","getterFor","TYPE","state","NATIVE_WEAK_MAP","wmget","wmhas","wmset","metadata","STATE","sharedKey","hiddenKeys","objectHas","nativePropertyIsEnumerable","NASHORN_BUG","V","nativeGetOwnPropertyDescriptor","toIndexedObject","propertyIsEnumerableModule","replacement","isForced","feature","detection","normalize","POLYFILL","NATIVE","aFunction","require$$0","wrapConstructor","NativeConstructor","Wrapper","TARGET","GLOBAL","STATIC","stat","PROTO","nativeSource","path","targetPrototype","FORCED","USE_NATIVE","VIRTUAL_PROTOTYPE","sourceProperty","targetProperty","nativeProperty","resultProperty","forced","noTargetGet","wrap","sham","real","argument","F","IE_PROTO","ObjectPrototype","CORRECT_PROTOTYPE_GETTER","NATIVE_SYMBOL","ITERATOR","wellKnownSymbol","BUGGY_SAFARI_ITERATORS","IteratorPrototype","PrototypeOfArrayIteratorPrototype","arrayIterator","toInteger","integer","createMethod","IS_INCLUDES","$this","el","fromIndex","toLength","toAbsoluteIndex","includes","internalObjectKeys","enumBugKeys","Properties","objectKeys","variable","namespace","getBuiltIn","PROTOTYPE","Empty","createDict","iframe","documentCreateElement","lt","script","gt","js","iframeDocument","display","html","contentWindow","open","write","close","TO_STRING_TAG","CORRECT_ARGUMENTS","classofRaw","tryGet","tag","callee","METHOD_REQUIRED","TAG","SET_METHOD","returnThis","IteratorConstructor","NAME","setToStringTag","Iterators","CORRECT_SETTER","aPossiblePrototype","IteratorsCore","KEYS","VALUES","ENTRIES","Iterable","DEFAULT","IS_SET","createIteratorConstructor","getIterationMethod","KIND","defaultIterator","IterablePrototype","entries","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","CurrentIteratorPrototype","KEY","redefine","$","ARRAY_ITERATOR","setInternalState","InternalStateModule","getInternalState","defineIterator","iterated","kind","Arguments","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","COLLECTION_NAME","DOMIterables","Collection","CollectionPrototype","SPECIES","originalArray","C","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","callbackfn","specificCreate","boundFunction","arraySpeciesCreate","every","find","findIndex","METHOD_NAME","$forEach","sloppyArrayMethod","CONSTRUCTOR","entryVirtual","ArrayPrototype","own","foo","$filter","arrayMethodHasSpeciesSupport","MSIE","scheduler","handler","timeout","boundArgs","setInterval","require$$1","factories","construct","argsLength","list","partArgs","bound","FunctionPrototype","objectDefinePropertyModile","desc","_Object$defineProperty","wrappedWellKnownSymbolModule","defineWellKnownSymbol","CONVERT_TO_STRING","S","charCodeAt","codeAt","STRING_ITERATOR","WrappedWellKnownSymbolModule","propertyKey","IS_CONCAT_SPREADABLE","MAX_SAFE_INTEGER","MAXIMUM_ALLOWED_INDEX_EXCEEDED","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","A","createProperty","nativeGetOwnPropertyNames","windowNames","getWindowNames","HIDDEN","SYMBOL","TO_PRIMITIVE","$Symbol","nativeJSONStringify","getOwnPropertyDescriptorModule","getOwnPropertyNamesExternal","AllSymbols","ObjectPrototypeSymbols","StringToSymbolRegistry","SymbolToStringRegistry","WellKnownSymbolsStore","QObject","USE_SETTER","findChild","setSymbolDescriptor","nativeObjectCreate","ObjectPrototypeDescriptor","description","symbol","isSymbol","$defineProperty","$defineProperties","properties","$getOwnPropertySymbols","$propertyIsEnumerable","$create","$getOwnPropertyDescriptor","$getOwnPropertyNames","IS_OBJECT_PROTOTYPE","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","keyFor","useSetter","useSimple","replacer","$replacer","_Symbol","_Symbol$iterator","FAILS_ON_PRIMITIVES","nativeGetPrototypeOf","_Object$setPrototypeOf","_Object$getPrototypeOf","_Object$create","this","require","T","nativeKeys","whitespace","whitespaces","ltrim","rtrim","start","end","nativeParseFloat","trimmedString","parseFloatImplementation","$JSON","core","Component","resized","_previousWidth","_previousHeight","nativeSort","FAILS_ON_UNDEFINED","FAILS_ON_NULL","SLOPPY_METHOD","comparefn","repeat","str","RangeError","StringPrototype","convertHiddenOptions","hiddenDates","_Array$isArray","_repeatInstanceProperty","dateItem","updateHiddenDates","domProps","centerContainer","range","totalRange","pixelTime","startDate","endDate","runUntil","dayOffset","log","removeDuplicates","startHidden","getIsHidden","endHidden","rangeStart","rangeEnd","hidden","startToFront","endToFront","_applyRange","safeDates","printDates","stepOverHiddenDates","timeStep","previousTime","stepInHidden","currentValue","current","_end","switchedYear","switchedMonth","switchedDay","toScreen","Core","conversion","scale","getHiddenDurationBetween","hiddenBeforeStart","getHiddenDurationBeforeStart","rangeAfterEnd","correctTimeForHidden","toTime","hiddenDuration","totalDuration","partialDuration","accumulatedHiddenDuration","getAccumulatedHiddenDuration","getHiddenDurationBefore","timeOffset","requiredDuration","previousPoint","snapAwayFromHidden","correctionEnabled","isHidden","Range","millisecondsPerPixelCache","rolling","deltaDifference","scaleOffset","defaultOptions","rtl","moveable","zoomable","zoomMin","zoomMax","rollingMode","follow","touch","animationTimer","emitter","_bindInstanceProperty","_onDragStart","_onDrag","_onDragEnd","_onMouseWheel","_onTouch","_onPinch","dom","rollingModeBtn","startRolling","setRange","stopRolling","interval","rollingModeOffset","animation","center","currentTimeTimer","_setTimeout","frameCallback","byUser","finalStart","finalEnd","_cancelAnimation","initStart","initEnd","easingName","easingFunction","_JSON$stringify","_Object$keys","initTime","_Date$now","anyChanged","dragging","ease","changed","DateUtil","emit","timeoutID","newStart","newEnd","_parseFloat","compensation","totalHidden","previousDelta","_isInsideRange","allowDragging","root","cursor","validateDirection","delta","deltaX","deltaY","diffRange","safeStart","safeEnd","wheelDelta","detail","zoomKey","zoomFriction","pointerDate","pointer","getPointer","clientX","clientY","_pointerToDate","zoom","centerDate","hiddenDurationBefore","hiddenDurationAfter","centerContainerRect","elementRect","moveTo","$some","MAXIMUM_ALLOWED_LENGTH_EXCEEDED","deleteCount","actualStart","argumentsLength","insertCount","actualDeleteCount","$indexOf","nativeIndexOf","NEGATIVE_ZERO","searchElement","Emitter","mixin","_callbacks","once","removeListener","removeAllListeners","callbacks","cb","listeners","hasListeners","_firstTarget","propagating","hammer","Manager","Hammer","PropagatingHammer","wrapper","pointerType","isFirst","_handlers","events","propagatedHandler","eventType","hammers","idx","srcEvent","_handled","stopped","stopPropagation","srcStop","firstTarget","elemHammer","hammerMock","noop","modifiedHammer","OurHammer","onTouch","inputHandler","onRelease","isFinal","disablePreventDefaultVertically","pinchRecognizer","TOUCH_ACTION_PAN_Y","getTouchAction","nativeParseInt","radix","parseIntImplementation","TimeStep","minimumStep","_start","autoScale","step","FORMAT","setMinimumStep","roundToMinor","priorCurrent","prev","showMajorLabels","enable","stepYear","stepMonth","stepDay","stepHour","stepMinute","stepSecond","stepMillisecond","minorLabels","majorLabels","_moment","even","today","currentWeek","currentMonth","currentYear","_filterInstanceProperty","TimeAxis","foreground","lines","majorTexts","minorTexts","lineTop","orientation","axis","showMinorLabels","maxMinorChars","timeAxis","_create","bottom","parentChanged","_calculateCharSize","minorLabelHeight","minorCharHeight","majorLabelHeight","majorCharHeight","minorLineHeight","minorLineWidth","majorLineHeight","majorLineWidth","foregroundNextSibling","nextSibling","backgroundNextSibling","_repaintLabels","backgroundVertical","_isResized","timeLabelsize","minorCharWidth","setMoment","setFormat","setScale","xNext","isMajor","showMinorGrid","prevWidth","line","xFirstMajorLabel","MAX","getCurrent","hasNext","getClassName","_repaintMinorText","getLabelMinor","_repaintMajorText","getLabelMajor","_repaintMajorLine","_repaintMinorLine","_parseInt","warnedForOverflow","leftTime","leftText","widthText","majorCharWidth","pop","text","createTextNode","innerHTML","_setXY","childNodes","directionX","transform","measureCharMinor","clientHeight","measureCharMajor","keycharm","container","_exportFunctions","_bound","keydown","keyup","_keys","fromCharCode","code","down","handleEvent","up","keyCode","shiftKey","bindAll","getKey","unbind","newBindings","reset","Activator","active","overlay","_onTapOverlay","onClick","_hasParent","deactivate","escListener","activate","monthsShortWithDots","monthsShortWithoutDots","nl","monthsStrictRegex","monthsShortStrictRegex","longMonthsParse","shortMonthsParse","weekdaysParseExact","processRelativeTime","de","monthsParseExact","fr","monthsShortDot","es","plural","word","num","forms","relativeTimeWithPlural","weekdaysCaseReplace","nounCase","processHoursFunction","uk","ru","standalone","ja","ll","lll","llll","en","deleteSelected","en_EN","en_US","it_IT","it_CH","nl_NL","nl_BE","de_DE","fr_FR","fr_CA","fr_BE","es_ES","uk_UA","ru_RU","ja_JP","CustomTime","title","defaultLocales","customTime","eventParams","bar","drag","onMouseWheel","DIRECTION_ALL","warned","substring","redraw","editable","marker","setAttribute","focus","_onMarkerChange","_onMarkerChanged","setCustomTime","backgroundHorizontal","leftContainer","rightContainer","shadowTop","shadowBottom","shadowTopLeft","shadowBottomLeft","shadowTopRight","shadowBottomRight","loadingScreen","scrollTop","scrollTopMin","initialDrawDone","_redraw","initialRangeChangeDone","_origRedraw","itemSet","initialItemSetDrawn","hammerUtil","isActive","LINE_HEIGHT","PAGE_HEIGHT","wheelDeltaY","wheelDeltaX","HORIZONTAL_AXIS","deltaMode","preferZoom","verticalScroll","horizontalScroll","adjusted","newScrollTop","_setScrollTop","wheelType","onmousewheel","onMouseScrollSide","itemAddedToTimeline","handleDragOver","getEventProperties","_indexOfInstanceProperty","dataTransfer","dropEffect","handleDrop","itemData","getData","_onAddItem","_onDropObjectOnItem","customTimes","redrawCount","timeAxis2","components","drawPoints","onRender","clickToUse","activator","_initAutoResize","component","configurator","_createConfigurator","configure","appliedOptions","setModuleOptions","setItems","setGroups","_stopAutoResize","getCustomTime","setCustomMarker","setCustomTitle","timestamp","_someInstanceProperty","getVisibleItems","getVisibleGroups","getDataRange","getRange","percentage","getWindow","newInterval","distance","setWindow","maxHeight","minHeight","rootOffsetWidth","offsetHeight","contentHeight","autoHeight","containerHeight","scrollbarWidth","leftContainerClientWidth","rightContainerClientWidth","_setDOM","_updateScrollTop","visibilityTop","visibilityBottom","contentsOverflow","DIRECTION_HORIZONTAL","MAX_REDRAW","centerWidth","currentTime","setCurrentTime","getCurrentTime","autoResize","_startAutoResize","_onResize","rootOffsetHeight","lastWidth","lastHeight","watchTimer","_setInterval","clearInterval","initialScrollTop","oldScrollTop","_getScrollTop","CurrentTime","showCurrentTime","alignCurrentTime","stop","isExtensible","preventExtensions","METADATA","setMetadata","objectID","weakData","fastKey","getWeakData","onFreeze","FREEZING","meta","REQUIRED","returnMethod","Result","iterate","iterable","AS_ENTRIES","IS_ITERATOR","iterFn","getIteratorMethod","isArrayIteratorMethod","callWithSafeIterationClosing","internalStateGetterFor","CONSTRUCTOR_NAME","common","IS_WEAK","NativePrototype","ADDER","exported","getConstructor","InternalMetadataModule","anInstance","collection","IS_ADDER","setStrong","unsafe","last","define","getEntry","previous","removed","redefineAll","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","setSpecies","Set","collectionStrong","$map","$find","FIND","SKIPS_HOLES","iteratorMethod","require$$2","arrayLike","mapfn","mapping","SAFE_CLOSING","called","iteratorWithReturn","SKIP_CLOSING","ITERATION_SUPPORT","INCORRECT_ITERATION","checkCorrectnessOfIteration","_isIterable","_Array$from","nativeAssign","B","alphabet","chr","$includes","MATCH","isRegExp","regexp","correctIsRegExpLogic","searchString","notARegExp","arrayIncludes","stringIncludes","nativeSlice","fin","EPSILON","orderByStart","orderByEnd","aTime","bTime","margin","force","shouldBailItemsRedrawFunction","shouldBail","collidingItem","jj","collision","vertical","substack","subgroup","subgroupHeight","baseTop","nostack","subgroups","isStackSubgroups","newTop","visible","stackSubgroups","otherSubgroup","collisionByTimes","stackSubgroupsWithInnerStack","subgroupItems","doSubStack","subgroupOrder","horizontal","UNGROUPED","BACKGROUND","ReservedGroupIds","Group","groupId","subgroupStack","subgroupStackAll","subgroupVisibility","doInnerStack","shouldBailStackItems","subgroupIndex","subgroupOrderer","isVisible","stackDirty","nestedGroups","showNested","heightMode","groupHeightMode","nestedInGroup","visibleItems","itemsInRange","byStart","byEnd","checkRangedItems","groupEditable","groupTouchParams","isDragging","templateFunction","isReactComponent","treeLevel","markerHeight","lastMarkerHeight","redrawQueue","redrawQueueLength","dirty","displayed","returnQueue","needRedraw","fns","offsetTop","offsetLeft","timeoutOptions","onTimeout","bailOptions","relativeBailingTime","itemsSettingTime","bailTimeMs","timeoutMs","userBailFunction","bail","userContinueNotBail","didUserContinue","forceRestack","lastIsVisible","restack","isCluster","orderedClusters","cluster","_updateItemsInRange","visibleClusters","_updateClustersInRange","getVisibleItemsGroupedBySubgroup","orderFn","visibleSubgroupsItems","_sortInstanceProperty","_updateSubGroupHeights","customOrderedItems","_shouldBailItemsRedraw","repositionX","labelWidth","labelHeight","repositionY","_didMarkerHeightChange","_calculateGroupSizeAndPosition","_isGroupVisible","_redrawItems","_updateSubgroupsSizes","_calculateHeight","_didResize","_applyGroupHeight","_updateItemsVerticalPosition","_resetSubgroups","labelSet","setParent","_addToSubgroup","orderSubgroups","_includesInstanceProperty","_checkIfVisible","subgroupId","itemEnd","initialEnd","sortArray","sortField","_spliceInstanceProperty","_removeFromSubgroup","itemIndex","removeItem","startArray","endArray","oldVisibleItems","visibleItemsLookup","lowerBound","upperBound","startSearchFunction","endSearchFunction","_checkIfVisibleWithReference","initialPosByStart","_traceVisible","initialPosByEnd","initialPos","breakCondition","hasItems","show","oldVisibleClusters","visibleClustersLookup","oldSubgroup","newSubgroup","BackgroundGroup","Item","selected","groupShowing","selectable","setSelectability","_updateEditStatus","groupChanged","group","_moveToGroup","subGroupChanged","changeSubgroup","updateTime","dragCenter","dragCenterItem","hammerDragCenter","_onUpdateItem","box","dragLeft","overrideItems","deleteButton","optionsLocale","hammerDeleteButton","removeFromDataSet","tooltipOnItemUpdateTime","onItemUpdateTimeTooltip","touchParams","itemIsDragging","tooltipOffset","itemDistanceFromTop","isCloseToTop","template","itemsData","itemVisibleFrameContent","visibleFrameTemplateFunction","_getItemData","frameElement","itemVisibleFrameContentElement","getElementsByClassName","visibleFrameTemplate","_contentToString","dataAttributes","attributes","removeAttribute","outerHTML","updateGroup","tooltip","BoxItem","dot","align","widthInMs","getMillisecondsPerPixel","_updateContents","_updateDataAttributes","_updateStyle","sizes","_repaintOnItemUpdateTimeTooltip","_repaintDragCenter","_repaintDeleteButton","_createDomElement","_appendDomElement","_updateDirtyDomComponents","_getDomComponentsSizes","_updateDomComponentsSizes","_repaintDomAdditionals","repositionXY","boxX","boxY","dotX","dotY","lineX","lineY","lineWidth","dotWidth","lineStyle","lineHeight","itemSetHeight","PointItem","marginLeft","marginRight","translateX","pointX","pointY","RangeItem","frame","visibleFrame","baseClassName","maxWidth","getComputedStyle","whiteSpace","_repaintDragLeft","_repaintDragRight","limitSize","parentWidth","contentStartPosition","contentWidth","boxWidth","itemsAlwaysDraggable","dragLeftItem","dragRight","dragRightItem","BackgroundItem","itemSubgroup","Popup","overflowMethod","padding","doShow","isLeft","isTop","$every","TO_ENTRIES","$values","IS_RIGHT","memo","$reduce","ClusterItem","modifiedOptions","_Object$assign","fitOnDoubleClick","uiItems","_setupRange","eventEmitter","attached","detach","attach","rangeWidth","showStipes","repositionXWithRanges","repositionXWithoutRanges","_isStipeVisible","repositionStype","lineOffsetWidth","dotOffsetWidth","lineOffset","dotOffset","lineOffsetDirection","dotOffsetDirection","minWidth","_mapInstanceProperty","detachFromParent","_fit","stats","centers","avg","_reduceInstanceProperty","sum","ondblclick","_onDoubleClick","fitStart","fitEnd","_getFitRange","fitArgs","ClusterGenerator","groups","cache","newItem","dataChanged","applyOnChangedLevel","oldClusters","maxItems","clusterCriteria","level","granularity","timeWindow","levelChanged","cacheLevel","applyDataNow","_dropLevelsCache","_filterData","clusters","groupName","iMax","neighbors","clusterItems","getGroupId","_getClusterForItems","_Object$values2","currentGroupName","oldClustersLookup","itemsIds","oldClusterData","_everyInstanceProperty","clusterItem","setUiItems","titleTemplate","clusterContent","clusterOptions","createClusterItem","ItemSet","groupOrderSwap","fromGroup","toGroup","targetOrder","groupOrder","multiselect","snap","onDropObjectOnItem","objectData","onAdd","onUpdate","onMove","onRemove","onMoving","onAddGroup","onMoveGroup","onRemoveGroup","showTooltips","followMouse","itemOptions","groupsData","sequentialSelection","itemListeners","_onAdd","clusterGenerator","_onUpdate","_onRemove","groupListeners","_onAddGroups","groupData","updatedGroups","nestedGroupId","updatedNestedGroup","_concatInstanceProperty","_onUpdateGroups","_onRemoveGroups","groupIds","selection","popup","popupTimer","_updateUngrouped","backgroundGroup","ALL","_onSelectItem","_onMultiSelectItem","groupHammer","_onGroupClick","_onGroupDragStart","_onGroupDrag","_onGroupDragEnd","DIRECTION_VERTICAL","_onMouseOver","_onMouseOut","_onMouseMove","addCallback","markDirty","refreshItems","restackGroups","_detachAllClusters","clearPopupTimer","idsToDeselect","selectedId","getItemById","unselect","select","rawVisibleItems","_findInstanceProperty","_clusterItems","_orderGroups","visibleInterval","zoomed","lastVisibleInterval","scrolled","lastRangeStart","changedStackOption","lastStack","changedStackSubgroupsOption","lastStackSubgroups","firstGroup","_firstGroup","firstMargin","nonFirstMargin","groupMargin","redrawResults","groupResized","firstGroupIndex","firstGroupId","ungrouped","oldItemsData","_order","updateData","dataset","_getType","_removeItem","groupOptions","_orderNestedGroups","getOrderedNestedGroups","nestedGroupIds","nestedGroup","topGroupIds","itemFromTarget","itemProps","selectedItem","initialX","_cloneItemData","ctrlKey","metaKey","_onDragStartAddItem","baseGroupIndex","_getGroupIndex","itemsToDrag","getSelection","groupIndex","groupOffset","frameRect","getScale","getStep","groupFromTarget","containerRect","setPosition","domRootOffsetLeft","updateGroupAllowed","newGroupBase","initial","initialStart","updateTimeAllowed","newOffset","oldGroup","toggleGroupShowNested","nestingGroup","fullNestedGroups","nextLevel","node","classList","toggle","toggleGroupDragClassName","originalOrder","movingUp","targetGroup","draggedGroupHeight","targetGroupHeight","draggedGroup","newOrder","origOrder","draggedId","numGroups","curPos","orgOffset","slippedPosition","switchGroup","shouldBeGroup","switchGroupId","oldSelection","setSelection","newSelection","related","itemFromRelatedTarget","getTitle","setText","setPopupTimer","newItemData","itemGroup","lastSelectedGroup","multiselectPerGroup","_getItemRange","filteredSelection","cur","itemFromElement","relatedTarget","foregroundRect","getClusters","_updateClusters","newClustersIds","clustersToUnselect","selectionChanged","selectedIdx","errorFound","allOptions","printStyle","Validator","referenceOptions","subObject","usedOptions","__any__","getSuggestion","referenceOption","is_object","refOptionObj","__type__","checkFields","message","printLocation","optionType","refOptionType","print","localSearch","findInOptions","globalSearch","localSearchThreshold","globalSearchThreshold","indexMatch","closestMatch","recursive","closestMatchPath","lowerCaseOption","op","levenshteinDistance","matrix","bool","any","throttleRedraw","onInitialDrawComplete","loadingScreenTemplate","configureOptions","groupsDraggable","fill","endPos","htmlColors","black","navy","darkblue","mediumblue","darkgreen","teal","darkcyan","deepskyblue","darkturquoise","mediumspringgreen","lime","springgreen","aqua","cyan","midnightblue","dodgerblue","lightseagreen","forestgreen","seagreen","darkslategray","limegreen","mediumseagreen","turquoise","royalblue","steelblue","darkslateblue","mediumturquoise","indigo","darkolivegreen","cadetblue","cornflowerblue","mediumaquamarine","dimgray","slateblue","olivedrab","slategray","lightslategray","mediumslateblue","lawngreen","chartreuse","aquamarine","maroon","purple","olive","gray","skyblue","lightskyblue","blueviolet","darkred","darkmagenta","saddlebrown","darkseagreen","lightgreen","mediumpurple","darkviolet","palegreen","darkorchid","yellowgreen","sienna","brown","darkgray","lightblue","greenyellow","paleturquoise","lightsteelblue","powderblue","firebrick","darkgoldenrod","mediumorchid","rosybrown","darkkhaki","silver","mediumvioletred","indianred","peru","chocolate","tan","lightgrey","palevioletred","thistle","orchid","goldenrod","crimson","gainsboro","plum","burlywood","lightcyan","lavender","darksalmon","violet","palegoldenrod","lightcoral","khaki","aliceblue","honeydew","azure","sandybrown","wheat","beige","whitesmoke","mintcream","ghostwhite","salmon","antiquewhite","linen","lightgoldenrodyellow","oldlace","fuchsia","magenta","deeppink","orangered","tomato","hotpink","coral","darkorange","lightsalmon","orange","lightpink","pink","gold","peachpuff","navajowhite","moccasin","bisque","mistyrose","blanchedalmond","papayawhip","lavenderblush","seashell","cornsilk","lemonchiffon","floralwhite","snow","yellow","lightyellow","ivory","white","ColorPicker","pixelRatio","generated","centerCoordinates","hueCircle","initialColor","previousColor","applied","updateCallback","closeCallback","_bindHammer","_setSize","setInitial","htmlColor","_isColorString","rgbaArray","rgbObj","alpha","_setColor","_generateHueCircle","storePrevious","_hide","_updatePicker","setColor","alert","angleConvert","PI","radius","sin","cos","colorPickerSelector","ctx","colorPickerCanvas","getContext","pixelRation","devicePixelRatio","webkitBackingStorePixelRatio","mozBackingStorePixelRatio","msBackingStorePixelRatio","oBackingStorePixelRatio","backingStorePixelRatio","setTransform","clearRect","putImageData","fillStyle","circle","brightnessRange","opacityRange","initialColorDiv","backgroundColor","newColorDiv","colorPickerDiv","noCanvas","fontWeight","opacityDiv","brightnessDiv","arrowDiv","onchange","_setOpacity","oninput","_setBrightness","brightnessLabel","opacityLabel","cancelButton","onclick","applyButton","_apply","saveButton","_save","loadButton","_loadLast","pinch","_moveSelector","sat","hfac","sfac","fillRect","strokeStyle","stroke","getImageData","centerY","centerX","angle","atan2","sqrt","newLeft","Configurator","parentModule","defaultContainer","changedOptions","allowCreation","initialized","popupCounter","showButton","moduleOptions","domElements","popupDiv","popupLimit","popupHistory","colorPicker","_removePopup","_clean","counter","_handleObject","_makeItem","_makeHeader","_makeButton","_push","_showPopupIfNeeded","div","objectLabel","selectedValue","_update","_makeLabel","popupString","popupValue","factor","_setupPopup","generateButton","_printOptions","onmouseover","onmouseout","optionsContainer","hideTimeout","deleteTimeout","correspondingElement","checkbox","checked","_showColorPicker","insertTo","setUpdateCallback","colorString","setCloseCallback","checkOnly","visibleInSet","subObj","newPath","_getValue","_handleArray","_makeTextInput","_makeCheckbox","draw","physics","solver","enabledPath","enabledValue","_makeColorField","_makeDropdown","_makeRange","_constructOptions","optionsObj","getOptions","Timeline","itemsDone","SyntaxError","forthArgument","directionFromDom","domNode","parentElement","loadingScreenFragment","_toScreen","toGlobalScreen","_toGlobalScreen","_toTime","toGlobalTime","_toGlobalTime","oncontextmenu","PointerEvent","onpointerdown","onpointermove","onpointerup","onmousemove","onmousedown","onmouseup","initialFitDone","getItemRange","fit","_onFit","validate","newDataSet","startPos","initialVerticalScroll","verticalAnimationFrame","willDraw","getItemVerticalScroll","itemTop","shouldScroll","scrollOffset","setFinalVerticalPosition","finalVerticalScroll","finalVerticalCallback","minItem","maxItem","getStart","getEnd","startSide","endSide","getWidthRight","getWidthLeft","lhs","rhs","customTimeFromTarget","snappedTime","what","pageX","pageY","timeline","itemsetHeight","currentScrollHeight","targetOffset","DataScale","autoScaleStart","autoScaleEnd","zeroAlign","formattingFunction","majorSteps","minorSteps","customLines","minorStepIdx","magnitudefactor","determineScale","rounded","minimumStepValue","orderOfMagnitude","LN10","solutionFound","stepSize","majorStep","convertValue","toPrecision","bottomOffset","major","is_major","formatValue","oldStepIdx","oldStart","oldEnd","increaseMagnitude","decreaseMagnitude","otherZero","otherStep","newRange","myOriginalZero","majorOffset","getFirstMajor","zeroOffset","pixels","DataAxis","svg","linegraphOptions","icons","majorLinesOffset","minorLinesOffset","labelOffsetX","labelOffsetY","iconWidth","alignZeros","linegraphSVG","DOMelements","labels","conversionFactor","stepPixels","zeroCrossing","amountOfSteps","master","masterAxis","svgElements","iconsRemoved","amountOfGroups","_redrawLabels","framework","lineContainer","graphOptions","DOMutil","iconHeight","iconOffset","groupArray","getLegend","activeGroups","backgroundHorizontalOffsetWidth","_redrawGroupIcons","_cleanupIcons","_redrawTitle","customRange","followScale","maxLabelSize","getLines","_redrawLabel","_redrawLine","titleWidth","titleCharHeight","screenToValue","characterHeight","textAlign","largestWidth","textMinor","textMajor","textTitle","measureCharTitle","titleCharWidth","Points","getCallback","screen_x","screen_y","getGroupTemplate","callbackResult","drawIcon","fillHeight","outline","Bargraph","barWidth","originalWidth","barChart","bar1Height","bar2Height","processedGroupData","combinedData","intersections","coreDistance","drawData","barPoints","screen_end","_getDataIntersections","heightOffset","_getSafeDrawData","nextKey","amount","resolved","excludeFromStacking","zeroPosition","accumulatedNegative","accumulatedPositive","sideBySide","dataWidth","pointData","getStackedYRange","groupRanges","groupLabel","_getStackedYRange","yAxisOrientation","yMin","yMax","xpos","Line","calcPath","interpolation","_catmullRom","_linear","fillPath","shaded","drawShading","pathArray","subPathArray","svgHeight","dFill","zero","serializePath","inverse","_catmullRomUniform","p0","bp1","bp2","normalization","d1","d2","d3","N","d3powA","d2powA","d3pow2A","d2pow2A","d1pow2A","d1powA","GraphGroup","groupsUsingDefaultStyles","usingDefaultStyle","getItems","setZeroPosition","parametrization","Lines","Bars","icon","getYRange","Legend","side","iconSize","iconSpacing","addGroup","excludeFromLegend","removeGroup","textArea","scrollableHeight","drawLegendIcons","paddingTop","LineGraph","defaultGroup","sampling","graphHeight","dataAxis","legend","abortedGraphUpdate","updateSVGheight","updateSVGheightOnResize","forceGraphUpdate","lastStart","yAxisLeft","yAxisRight","legendLeft","legendRight","_removeGroup","_updateAllGroupData","_updateGroup","groupsContent","idMap","groupCounts","existingItemsMap","existing_items","newLength","extended","orginalY","_updateGraph","rangePerPixelInv","_getSortedGroupIds","grouplist","zIndex","az","bz","changeCalled","minDate","maxDate","_getRelevantData","_applySampling","_convertXcoordinates","_getYRanges","_updateYAxis","below","_stack","_convertYcoordinates","paths","subGroupId","subData","dx","dy","subPrevPoint","subNextPoint","dateComparator","dataContainer","increment","amountOfPoints","xDistance","pointsPerPixel","sampledData","combinedDataLeft","combinedDataRight","yAxisLeftUsed","yAxisRightUsed","minLeft","minRight","maxLeft","maxRight","minVal","maxVal","ignore","_toggleAxisVisiblity","drawIcons","tempGroups","axisUsed","datapoints","Graph2d","linegraph","initialLoad","isGroupVisible","defaultLanguage"],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AC7BA;;;;;;;;AAOA,SAASw6B,UAAT,GAAsB;MACdC,IAAI,GAAG,SAAPA,IAAO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"} \ No newline at end of file diff --git a/includes/js/vis/dist/vis-timeline-graph2d.min.css b/includes/js/vis/dist/vis-timeline-graph2d.min.css index eeacbd8..9484bde 100644 --- a/includes/js/vis/dist/vis-timeline-graph2d.min.css +++ b/includes/js/vis/dist/vis-timeline-graph2d.min.css @@ -1 +1 @@ -.vis .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}.vis [class*=span]{min-height:0;width:auto}div.vis-configuration{position:relative;display:block;float:left;font-size:12px}div.vis-configuration-wrapper{display:block;width:700px}div.vis-configuration-wrapper::after{clear:both;content:"";display:block}div.vis-configuration.vis-config-option-container{display:block;width:495px;background-color:#fff;border:2px solid #f7f8fa;border-radius:4px;margin-top:20px;left:10px;padding-left:5px}div.vis-configuration.vis-config-button{display:block;width:495px;height:25px;vertical-align:middle;line-height:25px;background-color:#f7f8fa;border:2px solid #ceced0;border-radius:4px;margin-top:20px;left:10px;padding-left:5px;cursor:pointer;margin-bottom:30px}div.vis-configuration.vis-config-button.hover{background-color:#4588e6;border:2px solid #214373;color:#fff}div.vis-configuration.vis-config-item{display:block;float:left;width:495px;height:25px;vertical-align:middle;line-height:25px}div.vis-configuration.vis-config-item.vis-config-s2{left:10px;background-color:#f7f8fa;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s3{left:20px;background-color:#e4e9f0;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s4{left:30px;background-color:#cfd8e6;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-header{font-size:18px;font-weight:700}div.vis-configuration.vis-config-label{width:120px;height:25px;line-height:25px}div.vis-configuration.vis-config-label.vis-config-s3{width:110px}div.vis-configuration.vis-config-label.vis-config-s4{width:100px}div.vis-configuration.vis-config-colorBlock{top:1px;width:30px;height:19px;border:1px solid #444;border-radius:2px;padding:0;margin:0;cursor:pointer}input.vis-configuration.vis-config-checkbox{left:-5px}input.vis-configuration.vis-config-rangeinput{position:relative;top:-5px;width:60px;padding:1px;margin:0;pointer-events:none}input.vis-configuration.vis-config-range{-webkit-appearance:none;border:0 solid #fff;background-color:rgba(0,0,0,0);width:300px;height:20px}input.vis-configuration.vis-config-range::-webkit-slider-runnable-track{width:300px;height:5px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-webkit-slider-thumb{-webkit-appearance:none;border:1px solid #14334b;height:17px;width:17px;border-radius:50%;background:#3876c2;background:-moz-linear-gradient(top,#3876c2 0,#385380 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3876c2),color-stop(100%,#385380));background:-webkit-linear-gradient(top,#3876c2 0,#385380 100%);background:-o-linear-gradient(top,#3876c2 0,#385380 100%);background:-ms-linear-gradient(top,#3876c2 0,#385380 100%);background:linear-gradient(to bottom,#3876c2 0,#385380 100%);box-shadow:#111927 0 0 1px 0;margin-top:-7px}input.vis-configuration.vis-config-range:focus{outline:0}input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track{background:#9d9d9d;background:-moz-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#9d9d9d),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-o-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:linear-gradient(to bottom,#9d9d9d 0,#c8c8c8 99%)}input.vis-configuration.vis-config-range::-moz-range-track{width:300px;height:10px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-moz-range-thumb{border:none;height:16px;width:16px;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input.vis-configuration.vis-config-range::-ms-track{width:300px;height:5px;background:0 0;border-color:transparent;border-width:6px 0;color:transparent}input.vis-configuration.vis-config-range::-ms-fill-lower{background:#777;border-radius:10px}input.vis-configuration.vis-config-range::-ms-fill-upper{background:#ddd;border-radius:10px}input.vis-configuration.vis-config-range::-ms-thumb{border:none;height:16px;width:16px;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:focus::-ms-fill-lower{background:#888}input.vis-configuration.vis-config-range:focus::-ms-fill-upper{background:#ccc}.vis-configuration-popup{position:absolute;background:rgba(57,76,89,.85);border:2px solid #f2faff;line-height:30px;height:30px;width:150px;text-align:center;color:#fff;font-size:14px;border-radius:4px;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.vis-configuration-popup:after,.vis-configuration-popup:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.vis-configuration-popup:after{border-color:rgba(136,183,213,0);border-left-color:rgba(57,76,89,.85);border-width:8px;margin-top:-8px}.vis-configuration-popup:before{border-color:rgba(194,225,245,0);border-left-color:#f2faff;border-width:12px;margin-top:-12px}div.vis-tooltip{position:absolute;visibility:hidden;padding:5px;white-space:nowrap;font-family:verdana;font-size:14px;color:#000;background-color:#f5f4ed;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid #808074;box-shadow:3px 3px 10px rgba(0,0,0,.2);pointer-events:none;z-index:5}.vis-current-time{background-color:#ff7f6e;width:2px;z-index:1;pointer-events:none}.vis-rolling-mode-btn{height:40px;width:40px;position:absolute;top:7px;right:20px;border-radius:50%;font-size:28px;cursor:pointer;opacity:.8;color:#fff;font-weight:700;text-align:center;background:#3876c2}.vis-rolling-mode-btn:before{content:"\26F6"}.vis-rolling-mode-btn:hover{opacity:1}.vis-custom-time{background-color:#6e94ff;width:2px;cursor:move;z-index:1}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal{position:absolute;width:100%;height:0;border-bottom:1px solid}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor{border-color:#e5e5e5}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major{border-color:#bfbfbf}.vis-data-axis .vis-y-axis.vis-major{width:100%;position:absolute;color:#4d4d4d;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-major.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-minor{position:absolute;width:100%;color:#bebebe;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-minor.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title{position:absolute;color:#4d4d4d;white-space:nowrap;bottom:20px;text-align:center}.vis-data-axis .vis-y-axis.vis-title.vis-measure{padding:0;margin:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title.vis-left{bottom:0;-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.vis-data-axis .vis-y-axis.vis-title.vis-right{bottom:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.vis-legend{background-color:rgba(247,252,255,.65);padding:5px;border:1px solid #b3b3b3;box-shadow:2px 2px 10px rgba(154,154,154,.55)}.vis-legend-text{white-space:nowrap;display:inline-block}.vis-item{position:absolute;color:#1a1a1a;border-color:#97b0f8;border-width:1px;background-color:#d5ddf6;display:inline-block;z-index:1}.vis-item.vis-selected{border-color:#ffc200;background-color:#fff785;z-index:2}.vis-editable.vis-selected{cursor:move}.vis-item.vis-point.vis-selected{background-color:#fff785}.vis-item.vis-box{text-align:center;border-style:solid;border-radius:2px}.vis-item.vis-point{background:0 0}.vis-item.vis-dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis-item.vis-range{border-style:solid;border-radius:2px;box-sizing:border-box}.vis-item.vis-background{border:none;background-color:rgba(213,221,246,.4);box-sizing:border-box;padding:0;margin:0}.vis-item .vis-item-overflow{position:relative;width:100%;height:100%;padding:0;margin:0;overflow:hidden}.vis-item-visible-frame{white-space:nowrap}.vis-item.vis-range .vis-item-content{position:relative;display:inline-block}.vis-item.vis-background .vis-item-content{position:absolute;display:inline-block}.vis-item.vis-line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis-item .vis-item-content{white-space:nowrap;box-sizing:border-box;padding:5px}.vis-item .vis-onUpdateTime-tooltip{position:absolute;background:#4f81bd;color:#fff;width:200px;text-align:center;white-space:nowrap;padding:5px;border-radius:1px;transition:.4s;-o-transition:.4s;-moz-transition:.4s;-webkit-transition:.4s}.vis-item .vis-delete,.vis-item .vis-delete-rtl{position:absolute;top:0;width:24px;height:24px;box-sizing:border-box;padding:0 5px;cursor:pointer;-webkit-transition:background .2s linear;-moz-transition:background .2s linear;-ms-transition:background .2s linear;-o-transition:background .2s linear;transition:background .2s linear}.vis-item .vis-delete{right:-24px}.vis-item .vis-delete-rtl{left:-24px}.vis-item .vis-delete-rtl:after,.vis-item .vis-delete:after{content:"\00D7";color:red;font-family:arial,sans-serif;font-size:22px;font-weight:700;-webkit-transition:color .2s linear;-moz-transition:color .2s linear;-ms-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.vis-item .vis-delete-rtl:hover,.vis-item .vis-delete:hover{background:red}.vis-item .vis-delete-rtl:hover:after,.vis-item .vis-delete:hover:after{color:#fff}.vis-item .vis-drag-center{position:absolute;width:100%;height:100%;top:0;left:0;cursor:move}.vis-item.vis-range .vis-drag-left{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;left:-4px;cursor:w-resize}.vis-item.vis-range .vis-drag-right{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;right:-4px;cursor:e-resize}.vis-range.vis-item.vis-readonly .vis-drag-left,.vis-range.vis-item.vis-readonly .vis-drag-right{cursor:auto}.vis-itemset{position:relative;padding:0;margin:0;box-sizing:border-box}.vis-itemset .vis-background,.vis-itemset .vis-foreground{position:absolute;width:100%;height:100%;overflow:visible}.vis-axis{position:absolute;width:100%;height:0;left:0;z-index:1}.vis-foreground .vis-group{position:relative;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis-foreground .vis-group:last-child{border-bottom:none}.vis-nesting-group{cursor:pointer}.vis-nested-group{background:#f5f5f5}.vis-label.vis-nesting-group.expanded:before{content:"\25BC"}.vis-label.vis-nesting-group.collapsed-rtl:before{content:"\25C0"}.vis-label.vis-nesting-group.collapsed:before{content:"\25B6"}.vis-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-labelset{position:relative;overflow:hidden;box-sizing:border-box}.vis-labelset .vis-label{position:relative;left:0;top:0;width:100%;color:#4d4d4d;box-sizing:border-box}.vis-labelset .vis-label{border-bottom:1px solid #bfbfbf}.vis-labelset .vis-label.draggable{cursor:pointer}.vis-labelset .vis-label:last-child{border-bottom:none}.vis-labelset .vis-label .vis-inner{display:inline-block;padding:5px}.vis-labelset .vis-label .vis-inner.vis-hidden{padding:0}.vis-panel{position:absolute;padding:0;margin:0;box-sizing:border-box}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right,.vis-panel.vis-top{border:1px #bfbfbf}.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right{border-top-style:solid;border-bottom-style:solid;overflow:hidden}.vis-left.vis-panel.vis-vertical-scroll,.vis-right.vis-panel.vis-vertical-scroll{height:100%;overflow-x:hidden;overflow-y:scroll}.vis-left.vis-panel.vis-vertical-scroll{direction:rtl}.vis-left.vis-panel.vis-vertical-scroll .vis-content{direction:ltr}.vis-right.vis-panel.vis-vertical-scroll{direction:ltr}.vis-right.vis-panel.vis-vertical-scroll .vis-content{direction:rtl}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-top{border-left-style:solid;border-right-style:solid}.vis-background{overflow:hidden}.vis-panel>.vis-content{position:relative}.vis-panel .vis-shadow{position:absolute;width:100%;height:1px;box-shadow:0 0 10px rgba(0,0,0,.8)}.vis-panel .vis-shadow.vis-top{top:-1px;left:0}.vis-panel .vis-shadow.vis-bottom{bottom:-1px;left:0}.vis-graph-group0{fill:#4f81bd;fill-opacity:0;stroke-width:2px;stroke:#4f81bd}.vis-graph-group1{fill:#f79646;fill-opacity:0;stroke-width:2px;stroke:#f79646}.vis-graph-group2{fill:#8c51cf;fill-opacity:0;stroke-width:2px;stroke:#8c51cf}.vis-graph-group3{fill:#75c841;fill-opacity:0;stroke-width:2px;stroke:#75c841}.vis-graph-group4{fill:#ff0100;fill-opacity:0;stroke-width:2px;stroke:#ff0100}.vis-graph-group5{fill:#37d8e6;fill-opacity:0;stroke-width:2px;stroke:#37d8e6}.vis-graph-group6{fill:#042662;fill-opacity:0;stroke-width:2px;stroke:#042662}.vis-graph-group7{fill:#00ff26;fill-opacity:0;stroke-width:2px;stroke:#00ff26}.vis-graph-group8{fill:#f0f;fill-opacity:0;stroke-width:2px;stroke:#f0f}.vis-graph-group9{fill:#8f3938;fill-opacity:0;stroke-width:2px;stroke:#8f3938}.vis-timeline .vis-fill{fill-opacity:.1;stroke:none}.vis-timeline .vis-bar{fill-opacity:.5;stroke-width:1px}.vis-timeline .vis-point{stroke-width:2px;fill-opacity:1}.vis-timeline .vis-legend-background{stroke-width:1px;fill-opacity:.9;fill:#fff;stroke:#c2c2c2}.vis-timeline .vis-outline{stroke-width:1px;fill-opacity:1;fill:#fff;stroke:#e5e5e5}.vis-timeline .vis-icon-fill{fill-opacity:.3;stroke:none}.vis-time-axis{position:relative;overflow:hidden}.vis-time-axis.vis-foreground{top:0;left:0;width:100%}.vis-time-axis.vis-background{position:absolute;top:0;left:0;width:100%;height:100%}.vis-time-axis .vis-text{position:absolute;color:#4d4d4d;padding:3px;overflow:hidden;box-sizing:border-box;white-space:nowrap}.vis-time-axis .vis-text.vis-measure{position:absolute;padding-left:0;padding-right:0;margin-left:0;margin-right:0;visibility:hidden}.vis-time-axis .vis-grid.vis-vertical{position:absolute;border-left:1px solid}.vis-time-axis .vis-grid.vis-vertical-rtl{position:absolute;border-right:1px solid}.vis-time-axis .vis-grid.vis-minor{border-color:#e5e5e5}.vis-time-axis .vis-grid.vis-major{border-color:#bfbfbf}.vis-timeline{position:relative;border:1px solid #bfbfbf;overflow:hidden;padding:0;margin:0;box-sizing:border-box} \ No newline at end of file +.vis-custom-time{background-color:#6e94ff;width:2px;cursor:move;z-index:1}.vis-custom-time>.vis-custom-time-marker{background-color:inherit;color:#fff;font-size:12px;white-space:nowrap;padding:3px 5px;top:0;cursor:initial;z-index:inherit}.vis-time-axis{position:relative;overflow:hidden}.vis-time-axis.vis-foreground{top:0;left:0;width:100%}.vis-time-axis.vis-background{position:absolute;top:0;left:0;width:100%;height:100%}.vis-time-axis .vis-text{position:absolute;color:#4d4d4d;padding:3px;overflow:hidden;box-sizing:border-box;white-space:nowrap}.vis-time-axis .vis-text.vis-measure{position:absolute;padding-left:0;padding-right:0;margin-left:0;margin-right:0;visibility:hidden}.vis-time-axis .vis-grid.vis-vertical{position:absolute;border-left:1px solid}.vis-time-axis .vis-grid.vis-vertical-rtl{position:absolute;border-right:1px solid}.vis-time-axis .vis-grid.vis-minor{border-color:#e5e5e5}.vis-time-axis .vis-grid.vis-major{border-color:#bfbfbf}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-horizontal{position:absolute;width:100%;height:0;border-bottom:1px solid}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-minor{border-color:#e5e5e5}.vis-panel.vis-background.vis-horizontal .vis-grid.vis-major{border-color:#bfbfbf}.vis-data-axis .vis-y-axis.vis-major{width:100%;position:absolute;color:#4d4d4d;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-major.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-minor{position:absolute;width:100%;color:#bebebe;white-space:nowrap}.vis-data-axis .vis-y-axis.vis-minor.vis-measure{padding:0;margin:0;border:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title{position:absolute;color:#4d4d4d;white-space:nowrap;bottom:20px;text-align:center}.vis-data-axis .vis-y-axis.vis-title.vis-measure{padding:0;margin:0;visibility:hidden;width:auto}.vis-data-axis .vis-y-axis.vis-title.vis-left{bottom:0;-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)}.vis-data-axis .vis-y-axis.vis-title.vis-right{bottom:0;-webkit-transform-origin:right bottom;-moz-transform-origin:right bottom;-ms-transform-origin:right bottom;-o-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.vis-legend{background-color:rgba(247,252,255,.65);padding:5px;border:1px solid #b3b3b3;box-shadow:2px 2px 10px rgba(154,154,154,.55)}.vis-legend-text{white-space:nowrap;display:inline-block}.vis [class*=span]{min-height:0;width:auto}.vis-item{position:absolute;color:#1a1a1a;border-color:#97b0f8;border-width:1px;background-color:#d5ddf6;display:inline-block;z-index:1}.vis-item.vis-selected{border-color:#ffc200;background-color:#fff785;z-index:2}.vis-editable.vis-selected{cursor:move}.vis-item.vis-point.vis-selected{background-color:#fff785}.vis-item.vis-box{text-align:center;border-style:solid;border-radius:2px}.vis-item.vis-point{background:0 0}.vis-item.vis-dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis-item.vis-range{border-style:solid;border-radius:2px;box-sizing:border-box}.vis-item.vis-background{border:none;background-color:rgba(213,221,246,.4);box-sizing:border-box;padding:0;margin:0}.vis-item .vis-item-overflow{position:relative;width:100%;height:100%;padding:0;margin:0;overflow:hidden}.vis-item-visible-frame{white-space:nowrap}.vis-item.vis-range .vis-item-content{position:relative;display:inline-block}.vis-item.vis-background .vis-item-content{position:absolute;display:inline-block}.vis-item.vis-line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis-item .vis-item-content{white-space:nowrap;box-sizing:border-box;padding:5px}.vis-item .vis-onUpdateTime-tooltip{position:absolute;background:#4f81bd;color:#fff;width:200px;text-align:center;white-space:nowrap;padding:5px;border-radius:1px;transition:.4s;-o-transition:.4s;-moz-transition:.4s;-webkit-transition:.4s}.vis-item .vis-delete,.vis-item .vis-delete-rtl{position:absolute;top:0;width:24px;height:24px;box-sizing:border-box;padding:0 5px;cursor:pointer;-webkit-transition:background .2s linear;-moz-transition:background .2s linear;-ms-transition:background .2s linear;-o-transition:background .2s linear;transition:background .2s linear}.vis-item .vis-delete{right:-24px}.vis-item .vis-delete-rtl{left:-24px}.vis-item .vis-delete-rtl:after,.vis-item .vis-delete:after{content:"\00D7";color:red;font-family:arial,sans-serif;font-size:22px;font-weight:700;-webkit-transition:color .2s linear;-moz-transition:color .2s linear;-ms-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear}.vis-item .vis-delete-rtl:hover,.vis-item .vis-delete:hover{background:red}.vis-item .vis-delete-rtl:hover:after,.vis-item .vis-delete:hover:after{color:#fff}.vis-item .vis-drag-center{position:absolute;width:100%;height:100%;top:0;left:0;cursor:move}.vis-item.vis-range .vis-drag-left{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;left:-4px;cursor:w-resize}.vis-item.vis-range .vis-drag-right{position:absolute;width:24px;max-width:20%;min-width:2px;height:100%;top:0;right:-4px;cursor:e-resize}.vis-range.vis-item.vis-readonly .vis-drag-left,.vis-range.vis-item.vis-readonly .vis-drag-right{cursor:auto}.vis-item.vis-cluster{vertical-align:center;text-align:center;border-style:solid;border-radius:2px}.vis-item.vis-cluster-line{padding:0;position:absolute;width:0;border-left-width:1px;border-left-style:solid}.vis-item.vis-cluster-dot{position:absolute;padding:0;border-width:4px;border-style:solid;border-radius:4px}.vis-current-time{background-color:#ff7f6e;width:2px;z-index:1;pointer-events:none}.vis-rolling-mode-btn{height:40px;width:40px;position:absolute;top:7px;right:20px;border-radius:50%;font-size:28px;cursor:pointer;opacity:.8;color:#fff;font-weight:700;text-align:center;background:#3876c2}.vis-rolling-mode-btn:before{content:"\26F6"}.vis-rolling-mode-btn:hover{opacity:1}.vis-panel{position:absolute;padding:0;margin:0;box-sizing:border-box}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right,.vis-panel.vis-top{border:1px #bfbfbf}.vis-panel.vis-center,.vis-panel.vis-left,.vis-panel.vis-right{border-top-style:solid;border-bottom-style:solid;overflow:hidden}.vis-left.vis-panel.vis-vertical-scroll,.vis-right.vis-panel.vis-vertical-scroll{height:100%;overflow-x:hidden;overflow-y:scroll}.vis-left.vis-panel.vis-vertical-scroll{direction:rtl}.vis-left.vis-panel.vis-vertical-scroll .vis-content{direction:ltr}.vis-right.vis-panel.vis-vertical-scroll{direction:ltr}.vis-right.vis-panel.vis-vertical-scroll .vis-content{direction:rtl}.vis-panel.vis-bottom,.vis-panel.vis-center,.vis-panel.vis-top{border-left-style:solid;border-right-style:solid}.vis-background{overflow:hidden}.vis-panel>.vis-content{position:relative}.vis-panel .vis-shadow{position:absolute;width:100%;height:1px;box-shadow:0 0 10px rgba(0,0,0,.8)}.vis-panel .vis-shadow.vis-top{top:-1px;left:0}.vis-panel .vis-shadow.vis-bottom{bottom:-1px;left:0}.vis-graph-group0{fill:#4f81bd;fill-opacity:0;stroke-width:2px;stroke:#4f81bd}.vis-graph-group1{fill:#f79646;fill-opacity:0;stroke-width:2px;stroke:#f79646}.vis-graph-group2{fill:#8c51cf;fill-opacity:0;stroke-width:2px;stroke:#8c51cf}.vis-graph-group3{fill:#75c841;fill-opacity:0;stroke-width:2px;stroke:#75c841}.vis-graph-group4{fill:#ff0100;fill-opacity:0;stroke-width:2px;stroke:#ff0100}.vis-graph-group5{fill:#37d8e6;fill-opacity:0;stroke-width:2px;stroke:#37d8e6}.vis-graph-group6{fill:#042662;fill-opacity:0;stroke-width:2px;stroke:#042662}.vis-graph-group7{fill:#00ff26;fill-opacity:0;stroke-width:2px;stroke:#00ff26}.vis-graph-group8{fill:#f0f;fill-opacity:0;stroke-width:2px;stroke:#f0f}.vis-graph-group9{fill:#8f3938;fill-opacity:0;stroke-width:2px;stroke:#8f3938}.vis-timeline .vis-fill{fill-opacity:.1;stroke:none}.vis-timeline .vis-bar{fill-opacity:.5;stroke-width:1px}.vis-timeline .vis-point{stroke-width:2px;fill-opacity:1}.vis-timeline .vis-legend-background{stroke-width:1px;fill-opacity:.9;fill:#fff;stroke:#c2c2c2}.vis-timeline .vis-outline{stroke-width:1px;fill-opacity:1;fill:#fff;stroke:#e5e5e5}.vis-timeline .vis-icon-fill{fill-opacity:.3;stroke:none}.vis-timeline{position:relative;border:1px solid #bfbfbf;overflow:hidden;padding:0;margin:0;box-sizing:border-box}.vis-loading-screen{width:100%;height:100%;position:absolute;top:0;left:0}.vis-labelset{position:relative;overflow:hidden;box-sizing:border-box}.vis-labelset .vis-label{position:relative;left:0;top:0;width:100%;color:#4d4d4d;box-sizing:border-box}.vis-labelset .vis-label{border-bottom:1px solid #bfbfbf}.vis-labelset .vis-label.draggable{cursor:pointer}.vis-group-is-dragging{background:rgba(0,0,0,.1)}.vis-labelset .vis-label:last-child{border-bottom:none}.vis-labelset .vis-label .vis-inner{display:inline-block;padding:5px}.vis-labelset .vis-label .vis-inner.vis-hidden{padding:0}.vis-itemset{position:relative;padding:0;margin:0;box-sizing:border-box}.vis-itemset .vis-background,.vis-itemset .vis-foreground{position:absolute;width:100%;height:100%;overflow:visible}.vis-axis{position:absolute;width:100%;height:0;left:0;z-index:1}.vis-foreground .vis-group{position:relative;box-sizing:border-box;border-bottom:1px solid #bfbfbf}.vis-foreground .vis-group:last-child{border-bottom:none}.vis-nesting-group{cursor:pointer}.vis-label.vis-nested-group.vis-group-level-unknown-but-gte1{background:#f5f5f5}.vis-label.vis-nested-group.vis-group-level-0{background-color:#fff}.vis-ltr .vis-label.vis-nested-group.vis-group-level-0 .vis-inner{padding-left:0}.vis-rtl .vis-label.vis-nested-group.vis-group-level-0 .vis-inner{padding-right:0}.vis-label.vis-nested-group.vis-group-level-1{background-color:rgba(0,0,0,.05)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-1 .vis-inner{padding-left:15px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-1 .vis-inner{padding-right:15px}.vis-label.vis-nested-group.vis-group-level-2{background-color:rgba(0,0,0,.1)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-2 .vis-inner{padding-left:30px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-2 .vis-inner{padding-right:30px}.vis-label.vis-nested-group.vis-group-level-3{background-color:rgba(0,0,0,.15)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-3 .vis-inner{padding-left:45px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-3 .vis-inner{padding-right:45px}.vis-label.vis-nested-group.vis-group-level-4{background-color:rgba(0,0,0,.2)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-4 .vis-inner{padding-left:60px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-4 .vis-inner{padding-right:60px}.vis-label.vis-nested-group.vis-group-level-5{background-color:rgba(0,0,0,.25)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-5 .vis-inner{padding-left:75px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-5 .vis-inner{padding-right:75px}.vis-label.vis-nested-group.vis-group-level-6{background-color:rgba(0,0,0,.3)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-6 .vis-inner{padding-left:90px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-6 .vis-inner{padding-right:90px}.vis-label.vis-nested-group.vis-group-level-7{background-color:rgba(0,0,0,.35)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-7 .vis-inner{padding-left:105px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-7 .vis-inner{padding-right:105px}.vis-label.vis-nested-group.vis-group-level-8{background-color:rgba(0,0,0,.4)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-8 .vis-inner{padding-left:120px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-8 .vis-inner{padding-right:120px}.vis-label.vis-nested-group.vis-group-level-9{background-color:rgba(0,0,0,.45)}.vis-ltr .vis-label.vis-nested-group.vis-group-level-9 .vis-inner{padding-left:135px}.vis-rtl .vis-label.vis-nested-group.vis-group-level-9 .vis-inner{padding-right:135px}.vis-label.vis-nested-group{background-color:rgba(0,0,0,.5)}.vis-ltr .vis-label.vis-nested-group .vis-inner{padding-left:150px}.vis-rtl .vis-label.vis-nested-group .vis-inner{padding-right:150px}.vis-group-level-unknown-but-gte1{border:1px solid red}.vis-label.vis-nesting-group:before{display:inline-block;width:15px}.vis-label.vis-nesting-group.expanded:before{content:"\25BC"}.vis-label.vis-nesting-group.collapsed:before{content:"\25B6"}.vis-rtl .vis-label.vis-nesting-group.collapsed:before{content:"\25C0"}.vis-ltr .vis-label:not(.vis-nesting-group):not(.vis-group-level-0){padding-left:15px}.vis-rtl .vis-label:not(.vis-nesting-group):not(.vis-group-level-0){padding-right:15px}.vis-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}div.vis-configuration{position:relative;display:block;float:left;font-size:12px}div.vis-configuration-wrapper{display:block;width:700px}div.vis-configuration-wrapper::after{clear:both;content:"";display:block}div.vis-configuration.vis-config-option-container{display:block;width:495px;background-color:#fff;border:2px solid #f7f8fa;border-radius:4px;margin-top:20px;left:10px;padding-left:5px}div.vis-configuration.vis-config-button{display:block;width:495px;height:25px;vertical-align:middle;line-height:25px;background-color:#f7f8fa;border:2px solid #ceced0;border-radius:4px;margin-top:20px;left:10px;padding-left:5px;cursor:pointer;margin-bottom:30px}div.vis-configuration.vis-config-button.hover{background-color:#4588e6;border:2px solid #214373;color:#fff}div.vis-configuration.vis-config-item{display:block;float:left;width:495px;height:25px;vertical-align:middle;line-height:25px}div.vis-configuration.vis-config-item.vis-config-s2{left:10px;background-color:#f7f8fa;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s3{left:20px;background-color:#e4e9f0;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-item.vis-config-s4{left:30px;background-color:#cfd8e6;padding-left:5px;border-radius:3px}div.vis-configuration.vis-config-header{font-size:18px;font-weight:700}div.vis-configuration.vis-config-label{width:120px;height:25px;line-height:25px}div.vis-configuration.vis-config-label.vis-config-s3{width:110px}div.vis-configuration.vis-config-label.vis-config-s4{width:100px}div.vis-configuration.vis-config-colorBlock{top:1px;width:30px;height:19px;border:1px solid #444;border-radius:2px;padding:0;margin:0;cursor:pointer}input.vis-configuration.vis-config-checkbox{left:-5px}input.vis-configuration.vis-config-rangeinput{position:relative;top:-5px;width:60px;padding:1px;margin:0;pointer-events:none}input.vis-configuration.vis-config-range{-webkit-appearance:none;border:0 solid #fff;background-color:rgba(0,0,0,0);width:300px;height:20px}input.vis-configuration.vis-config-range::-webkit-slider-runnable-track{width:300px;height:5px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-webkit-slider-thumb{-webkit-appearance:none;border:1px solid #14334b;height:17px;width:17px;border-radius:50%;background:#3876c2;background:-moz-linear-gradient(top,#3876c2 0,#385380 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3876c2),color-stop(100%,#385380));background:-webkit-linear-gradient(top,#3876c2 0,#385380 100%);background:-o-linear-gradient(top,#3876c2 0,#385380 100%);background:-ms-linear-gradient(top,#3876c2 0,#385380 100%);background:linear-gradient(to bottom,#3876c2 0,#385380 100%);box-shadow:#111927 0 0 1px 0;margin-top:-7px}input.vis-configuration.vis-config-range:focus{outline:0}input.vis-configuration.vis-config-range:focus::-webkit-slider-runnable-track{background:#9d9d9d;background:-moz-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#9d9d9d),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-o-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#9d9d9d 0,#c8c8c8 99%);background:linear-gradient(to bottom,#9d9d9d 0,#c8c8c8 99%)}input.vis-configuration.vis-config-range::-moz-range-track{width:300px;height:10px;background:#dedede;background:-moz-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dedede),color-stop(99%,#c8c8c8));background:-webkit-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-o-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:-ms-linear-gradient(top,#dedede 0,#c8c8c8 99%);background:linear-gradient(to bottom,#dedede 0,#c8c8c8 99%);border:1px solid #999;box-shadow:#aaa 0 0 3px 0;border-radius:3px}input.vis-configuration.vis-config-range::-moz-range-thumb{border:none;height:16px;width:16px;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:-moz-focusring{outline:1px solid #fff;outline-offset:-1px}input.vis-configuration.vis-config-range::-ms-track{width:300px;height:5px;background:0 0;border-color:transparent;border-width:6px 0;color:transparent}input.vis-configuration.vis-config-range::-ms-fill-lower{background:#777;border-radius:10px}input.vis-configuration.vis-config-range::-ms-fill-upper{background:#ddd;border-radius:10px}input.vis-configuration.vis-config-range::-ms-thumb{border:none;height:16px;width:16px;border-radius:50%;background:#385380}input.vis-configuration.vis-config-range:focus::-ms-fill-lower{background:#888}input.vis-configuration.vis-config-range:focus::-ms-fill-upper{background:#ccc}.vis-configuration-popup{position:absolute;background:rgba(57,76,89,.85);border:2px solid #f2faff;line-height:30px;height:30px;width:150px;text-align:center;color:#fff;font-size:14px;border-radius:4px;-webkit-transition:opacity .3s ease-in-out;-moz-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.vis-configuration-popup:after,.vis-configuration-popup:before{left:100%;top:50%;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.vis-configuration-popup:after{border-color:rgba(136,183,213,0);border-left-color:rgba(57,76,89,.85);border-width:8px;margin-top:-8px}.vis-configuration-popup:before{border-color:rgba(194,225,245,0);border-left-color:#f2faff;border-width:12px;margin-top:-12px}.vis .overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10}.vis-active{box-shadow:0 0 10px #86d5f8}div.vis-tooltip{position:absolute;visibility:hidden;padding:5px;white-space:nowrap;font-family:verdana;font-size:14px;color:#000;background-color:#f5f4ed;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid #808074;box-shadow:3px 3px 10px rgba(0,0,0,.2);pointer-events:none;z-index:5} \ No newline at end of file diff --git a/includes/js/vis/dist/vis-timeline-graph2d.min.js b/includes/js/vis/dist/vis-timeline-graph2d.min.js index a8c1968..bf416de 100644 --- a/includes/js/vis/dist/vis-timeline-graph2d.min.js +++ b/includes/js/vis/dist/vis-timeline-graph2d.min.js @@ -1,40 +1,52 @@ /** - * vis.js - * https://github.com/almende/vis + * vis-timeline and vis-graph2d + * https://visjs.github.io/vis-timeline/ * - * A dynamic, browser-based visualization library. + * Create a fully customizable, interactive timeline with items and ranges. * - * @version 4.20.0 - * @date 2017-05-21 + * @version 0.0.0-no-version + * @date 2020-01-04T00:10:26.063Z * - * @license - * Copyright (C) 2011-2017 Almende B.V, http://almende.com + * @copyright (c) 2011-2017 Almende B.V, http://almende.com + * @copyright (c) 2017-2019 visjs contributors, https://github.com/visjs * - * Vis.js is dual licensed under both + * @license + * vis.js is dual licensed under both * - * * The Apache 2.0 License - * http://www.apache.org/licenses/LICENSE-2.0 + * 1. The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 * - * and + * and * - * * The MIT License - * http://opensource.org/licenses/MIT + * 2. The MIT License + * http://opensource.org/licenses/MIT * - * Vis.js may be distributed under either license. + * vis.js may be distributed under either license. */ -"use strict";!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.vis=e():t.vis=e()}(this,function(){return function(t){function e(o){if(i[o])return i[o].exports;var n=i[o]={exports:{},id:o,loaded:!1};return t[o].call(n.exports,n,n.exports,e),n.loaded=!0,n.exports}var i={};return e.m=t,e.c=i,e.p="",e(0)}([function(t,e,i){e.util=i(1),e.DOMutil=i(87),e.DataSet=i(88),e.DataView=i(92),e.Queue=i(91),e.Timeline=i(93),e.Graph2d=i(129),e.timeline={Core:i(102),DateUtil:i(101),Range:i(98),stack:i(106),TimeStep:i(104),components:{items:{Item:i(108),BackgroundItem:i(112),BoxItem:i(110),PointItem:i(111),RangeItem:i(107)},BackgroundGroup:i(109),Component:i(100),CurrentTime:i(124),CustomTime:i(122),DataAxis:i(131),DataScale:i(132),GraphGroup:i(133),Group:i(105),ItemSet:i(103),Legend:i(137),LineGraph:i(130),TimeAxis:i(119)}},e.moment=i(82),e.Hammer=i(95),e.keycharm=i(121)},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}var n=i(2),s=o(n),r=i(55),a=o(r),h=i(58),d=o(h),l=i(62),u=o(l),p=i(82),c=i(86);e.isNumber=function(t){return t instanceof Number||"number"==typeof t},e.recursiveDOMDelete=function(t){if(t)for(;t.hasChildNodes()===!0;)e.recursiveDOMDelete(t.firstChild),t.removeChild(t.firstChild)},e.giveRange=function(t,e,i,o){if(e==t)return.5;var n=1/(e-t);return Math.max(0,(o-t)*n)},e.isString=function(t){return t instanceof String||"string"==typeof t},e.isDate=function(t){if(t instanceof Date)return!0;if(e.isString(t)){var i=f.exec(t);if(i)return!0;if(!isNaN(Date.parse(t)))return!0}return!1},e.randomUUID=function(){return c.v4()},e.assignAllKeys=function(t,e){for(var i in t)t.hasOwnProperty(i)&&"object"!==(0,u.default)(t[i])&&(t[i]=e)},e.fillIfDefined=function(t,i){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2];for(var n in t)void 0!==i[n]&&("object"!==(0,u.default)(i[n])?void 0!==i[n]&&null!==i[n]||void 0===t[n]||o!==!0?t[n]=i[n]:delete t[n]:"object"===(0,u.default)(t[n])&&e.fillIfDefined(t[n],i[n],o))},e.protoExtend=function(t,e){for(var i=1;i3&&void 0!==arguments[3]&&arguments[3];if(Array.isArray(o))throw new TypeError("Arrays are not supported by deepExtend");for(var s=2;s3&&void 0!==arguments[3]&&arguments[3];if(Array.isArray(o))throw new TypeError("Arrays are not supported by deepExtend");for(var s in o)if(o.hasOwnProperty(s)&&t.indexOf(s)==-1)if(o[s]&&o[s].constructor===Object)void 0===i[s]&&(i[s]={}),i[s].constructor===Object?e.deepExtend(i[s],o[s]):null===o[s]&&void 0!==i[s]&&n===!0?delete i[s]:i[s]=o[s];else if(Array.isArray(o[s])){i[s]=[];for(var r=0;r=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,o)):t.attachEvent("on"+e,i)},e.removeEventListener=function(t,e,i,o){t.removeEventListener?(void 0===o&&(o=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,o)):t.detachEvent("on"+e,i)},e.preventDefault=function(t){t||(t=window.event),t.preventDefault?t.preventDefault():t.returnValue=!1},e.getTarget=function(t){t||(t=window.event);var e;return t.target?e=t.target:t.srcElement&&(e=t.srcElement),void 0!=e.nodeType&&3==e.nodeType&&(e=e.parentNode),e},e.hasParent=function(t,e){for(var i=t;i;){if(i===e)return!0;i=i.parentNode}return!1},e.option={},e.option.asBoolean=function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},e.option.asNumber=function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},e.option.asString=function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},e.option.asSize=function(t,i){return"function"==typeof t&&(t=t()),e.isString(t)?t:e.isNumber(t)?t+"px":i||null},e.option.asElement=function(t,e){return"function"==typeof t&&(t=t()),t||e||null},e.hexToRGB=function(t){var e=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;t=t.replace(e,function(t,e,i,o){return e+e+i+i+o+o});var i=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(t);return i?{r:parseInt(i[1],16),g:parseInt(i[2],16),b:parseInt(i[3],16)}:null},e.overrideOpacity=function(t,i){if(t.indexOf("rgba")!=-1)return t;if(t.indexOf("rgb")!=-1){var o=t.substr(t.indexOf("(")+1).replace(")","").split(",");return"rgba("+o[0]+","+o[1]+","+o[2]+","+i+")"}var o=e.hexToRGB(t);return null==o?t:"rgba("+o.r+","+o.g+","+o.b+","+i+")"},e.RGBToHex=function(t,e,i){return"#"+((1<<24)+(t<<16)+(e<<8)+i).toString(16).slice(1)},e.parseColor=function(t){var i;if(e.isString(t)===!0){if(e.isValidRGB(t)===!0){var o=t.substr(4).substr(0,t.length-5).split(",").map(function(t){return parseInt(t)});t=e.RGBToHex(o[0],o[1],o[2])}if(e.isValidHex(t)===!0){var n=e.hexToHSV(t),s={h:n.h,s:.8*n.s,v:Math.min(1,1.02*n.v)},r={h:n.h,s:Math.min(1,1.25*n.s),v:.8*n.v},a=e.HSVToHex(r.h,r.s,r.v),h=e.HSVToHex(s.h,s.s,s.v);i={background:t,border:a,highlight:{background:h,border:a},hover:{background:h,border:a}}}else i={background:t,border:t,highlight:{background:t,border:t},hover:{background:t,border:t}}}else i={},i.background=t.background||void 0,i.border=t.border||void 0,e.isString(t.highlight)?i.highlight={border:t.highlight,background:t.highlight}:(i.highlight={},i.highlight.background=t.highlight&&t.highlight.background||void 0,i.highlight.border=t.highlight&&t.highlight.border||void 0),e.isString(t.hover)?i.hover={border:t.hover,background:t.hover}:(i.hover={},i.hover.background=t.hover&&t.hover.background||void 0,i.hover.border=t.hover&&t.hover.border||void 0);return i},e.RGBToHSV=function(t,e,i){t/=255,e/=255,i/=255;var o=Math.min(t,Math.min(e,i)),n=Math.max(t,Math.max(e,i));if(o==n)return{h:0,s:0,v:o};var s=t==o?e-i:i==o?t-e:i-t,r=t==o?3:i==o?1:5,a=60*(r-s/(n-o))/360,h=(n-o)/n,d=n;return{h:a,s:h,v:d}};var m={split:function(t){var e={};return t.split(";").forEach(function(t){if(""!=t.trim()){var i=t.split(":"),o=i[0].trim(),n=i[1].trim();e[o]=n}}),e},join:function(t){return(0,d.default)(t).map(function(e){return e+": "+t[e]}).join("; ")}};e.addCssText=function(t,i){var o=m.split(t.style.cssText),n=m.split(i),s=e.extend(o,n);t.style.cssText=m.join(s)},e.removeCssText=function(t,e){var i=m.split(t.style.cssText),o=m.split(e);for(var n in o)o.hasOwnProperty(n)&&delete i[n];t.style.cssText=m.join(i)},e.HSVToRGB=function(t,e,i){var o,n,s,r=Math.floor(6*t),a=6*t-r,h=i*(1-e),d=i*(1-a*e),l=i*(1-(1-a)*e);switch(r%6){case 0:o=i,n=l,s=h;break;case 1:o=d,n=i,s=h;break;case 2:o=h,n=i,s=l;break;case 3:o=h,n=d,s=i;break;case 4:o=l,n=h,s=i;break;case 5:o=i,n=h,s=d}return{r:Math.floor(255*o),g:Math.floor(255*n),b:Math.floor(255*s)}},e.HSVToHex=function(t,i,o){var n=e.HSVToRGB(t,i,o);return e.RGBToHex(n.r,n.g,n.b)},e.hexToHSV=function(t){var i=e.hexToRGB(t);return e.RGBToHSV(i.r,i.g,i.b)},e.isValidHex=function(t){var e=/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(t);return e},e.isValidRGB=function(t){t=t.replace(" ","");var e=/rgb\((\d{1,3}),(\d{1,3}),(\d{1,3})\)/i.test(t);return e},e.isValidRGBA=function(t){t=t.replace(" ","");var e=/rgba\((\d{1,3}),(\d{1,3}),(\d{1,3}),(.{1,3})\)/i.test(t);return e},e.selectiveBridgeObject=function(t,i){if("object"==("undefined"==typeof i?"undefined":(0,u.default)(i))){for(var o=(0,a.default)(i),n=0;n0&&e(o,t[n-1])<0;n--)t[n]=t[n-1];t[n]=o}return t},e.mergeOptions=function(t,e,i){var o=(arguments.length>3&&void 0!==arguments[3]&&arguments[3],arguments.length>4&&void 0!==arguments[4]?arguments[4]:{});if(null===e[i])t[i]=(0,a.default)(o[i]);else if(void 0!==e[i])if("boolean"==typeof e[i])t[i].enabled=e[i];else{void 0===e[i].enabled&&(t[i].enabled=!0);for(var n in e[i])e[i].hasOwnProperty(n)&&(t[i][n]=e[i][n])}},e.binarySearchCustom=function(t,e,i,o){for(var n=1e4,s=0,r=0,a=t.length-1;r<=a&&s0)return"before"==o?Math.max(0,h-1):h;if(n(r,e)<0&&n(a,e)>0)return"before"==o?h:Math.min(t.length-1,h+1);n(r,e)<0?u=h+1:p=h-1,l++}return-1},e.easingFunctions={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return t<.5?2*t*t:-1+(4-2*t)*t},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}},e.getScrollBarWidth=function(){var t=document.createElement("p");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");e.style.position="absolute",e.style.top="0px",e.style.left="0px",e.style.visibility="hidden",e.style.width="200px",e.style.height="150px",e.style.overflow="hidden",e.appendChild(t),document.body.appendChild(e);var i=t.offsetWidth;e.style.overflow="scroll";var o=t.offsetWidth;return i==o&&(o=e.clientWidth),document.body.removeChild(e),i-o},e.topMost=function(t,e){var i=void 0;Array.isArray(e)||(e=[e]);var o=!0,n=!1,r=void 0;try{for(var a,h=(0,s.default)(t);!(o=(a=h.next()).done);o=!0){var d=a.value;if(d){i=d[e[0]];for(var l=1;l=t.length?(this._t=void 0,n(1)):"keys"==e?n(0,i):"values"==e?n(0,t[i]):n(0,[i,t[i]])},"values"),s.Arguments=s.Array,o("keys"),o("values"),o("entries")},function(t,e){t.exports=function(){}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e){t.exports={}},function(t,e,i){var o=i(10),n=i(12);t.exports=function(t){return o(n(t))}},function(t,e,i){var o=i(11);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==o(t)?t.split(""):Object(t)}},function(t,e){var i={}.toString;t.exports=function(t){return i.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,i){var o=i(14),n=i(15),s=i(30),r=i(20),a=i(31),h=i(8),d=i(32),l=i(46),u=i(48),p=i(47)("iterator"),c=!([].keys&&"next"in[].keys()),f="@@iterator",m="keys",g="values",v=function(){return this};t.exports=function(t,e,i,y,b,_,w){d(i,e,y);var x,D,S,k=function(t){if(!c&&t in O)return O[t];switch(t){case m:return function(){return new i(this,t)};case g:return function(){return new i(this,t)}}return function(){return new i(this,t)}},T=e+" Iterator",C=b==g,M=!1,O=t.prototype,E=O[p]||O[f]||b&&O[b],P=E||k(b),N=b?C?k("entries"):P:void 0,A="Array"==e?O.entries||E:E;if(A&&(S=u(A.call(new t)),S!==Object.prototype&&(l(S,T,!0),o||a(S,p)||r(S,p,v))),C&&E&&E.name!==g&&(M=!0,P=function(){return E.call(this)}),o&&!w||!c&&!M&&O[p]||r(O,p,P),h[e]=P,h[T]=v,b)if(x={values:C?P:k(g),keys:_?P:k(m),entries:N},w)for(D in x)D in O||s(O,D,x[D]);else n(n.P+n.F*(c||M),e,x);return x}},function(t,e){t.exports=!0},function(t,e,i){var o=i(16),n=i(17),s=i(18),r=i(20),a="prototype",h=function(t,e,i){var d,l,u,p=t&h.F,c=t&h.G,f=t&h.S,m=t&h.P,g=t&h.B,v=t&h.W,y=c?n:n[e]||(n[e]={}),b=y[a],_=c?o:f?o[e]:(o[e]||{})[a];c&&(i=e);for(d in i)l=!p&&_&&void 0!==_[d],l&&d in y||(u=l?_[d]:i[d],y[d]=c&&"function"!=typeof _[d]?i[d]:g&&l?s(u,o):v&&_[d]==u?function(t){var e=function(e,i,o){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,i)}return new t(e,i,o)}return t.apply(this,arguments)};return e[a]=t[a],e}(u):m&&"function"==typeof u?s(Function.call,u):u,m&&((y.virtual||(y.virtual={}))[d]=u,t&h.R&&b&&!b[d]&&r(b,d,u)))};h.F=1,h.G=2,h.S=4,h.P=8,h.B=16,h.W=32,h.U=64,h.R=128,t.exports=h},function(t,e){var i=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=i)},function(t,e){var i=t.exports={version:"2.4.0"};"number"==typeof __e&&(__e=i)},function(t,e,i){var o=i(19);t.exports=function(t,e,i){if(o(t),void 0===e)return t;switch(i){case 1:return function(i){return t.call(e,i)};case 2:return function(i,o){return t.call(e,i,o)};case 3:return function(i,o,n){return t.call(e,i,o,n)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e,i){var o=i(21),n=i(29);t.exports=i(25)?function(t,e,i){return o.f(t,e,n(1,i))}:function(t,e,i){return t[e]=i,t}},function(t,e,i){var o=i(22),n=i(24),s=i(28),r=Object.defineProperty;e.f=i(25)?Object.defineProperty:function(t,e,i){if(o(t),e=s(e,!0),o(i),n)try{return r(t,e,i)}catch(t){}if("get"in i||"set"in i)throw TypeError("Accessors not supported!");return"value"in i&&(t[e]=i.value),t}},function(t,e,i){var o=i(23);t.exports=function(t){if(!o(t))throw TypeError(t+" is not an object!");return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,i){t.exports=!i(25)&&!i(26)(function(){return 7!=Object.defineProperty(i(27)("div"),"a",{get:function(){return 7}}).a})},function(t,e,i){t.exports=!i(26)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,i){var o=i(23),n=i(16).document,s=o(n)&&o(n.createElement);t.exports=function(t){return s?n.createElement(t):{}}},function(t,e,i){var o=i(23);t.exports=function(t,e){if(!o(t))return t;var i,n;if(e&&"function"==typeof(i=t.toString)&&!o(n=i.call(t)))return n;if("function"==typeof(i=t.valueOf)&&!o(n=i.call(t)))return n;if(!e&&"function"==typeof(i=t.toString)&&!o(n=i.call(t)))return n;throw TypeError("Can't convert object to primitive value")}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,i){t.exports=i(20)},function(t,e){var i={}.hasOwnProperty;t.exports=function(t,e){return i.call(t,e)}},function(t,e,i){var o=i(33),n=i(29),s=i(46),r={};i(20)(r,i(47)("iterator"),function(){return this}),t.exports=function(t,e,i){t.prototype=o(r,{next:n(1,i)}),s(t,e+" Iterator")}},function(t,e,i){var o=i(22),n=i(34),s=i(44),r=i(41)("IE_PROTO"),a=function(){},h="prototype",d=function(){var t,e=i(27)("iframe"),o=s.length,n="<",r=">";for(e.style.display="none",i(45).appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write(n+"script"+r+"document.F=Object"+n+"/script"+r),t.close(),d=t.F;o--;)delete d[h][s[o]];return d()};t.exports=Object.create||function(t,e){var i;return null!==t?(a[h]=o(t),i=new a,a[h]=null,i[r]=t):i=d(),void 0===e?i:n(i,e)}},function(t,e,i){var o=i(21),n=i(22),s=i(35);t.exports=i(25)?Object.defineProperties:function(t,e){n(t);for(var i,r=s(e),a=r.length,h=0;a>h;)o.f(t,i=r[h++],e[i]);return t}},function(t,e,i){var o=i(36),n=i(44);t.exports=Object.keys||function(t){return o(t,n)}},function(t,e,i){var o=i(31),n=i(9),s=i(37)(!1),r=i(41)("IE_PROTO");t.exports=function(t,e){var i,a=n(t),h=0,d=[];for(i in a)i!=r&&o(a,i)&&d.push(i);for(;e.length>h;)o(a,i=e[h++])&&(~s(d,i)||d.push(i));return d}},function(t,e,i){var o=i(9),n=i(38),s=i(40);t.exports=function(t){return function(e,i,r){var a,h=o(e),d=n(h.length),l=s(r,d);if(t&&i!=i){for(;d>l;)if(a=h[l++],a!=a)return!0}else for(;d>l;l++)if((t||l in h)&&h[l]===i)return t||l||0;return!t&&-1}}},function(t,e,i){var o=i(39),n=Math.min;t.exports=function(t){return t>0?n(o(t),9007199254740991):0}},function(t,e){var i=Math.ceil,o=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?o:i)(t)}},function(t,e,i){var o=i(39),n=Math.max,s=Math.min;t.exports=function(t,e){return t=o(t),t<0?n(t+e,0):s(t,e)}},function(t,e,i){var o=i(42)("keys"),n=i(43);t.exports=function(t){return o[t]||(o[t]=n(t))}},function(t,e,i){var o=i(16),n="__core-js_shared__",s=o[n]||(o[n]={});t.exports=function(t){return s[t]||(s[t]={})}},function(t,e){var i=0,o=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++i+o).toString(36))}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,i){t.exports=i(16).document&&document.documentElement},function(t,e,i){var o=i(21).f,n=i(31),s=i(47)("toStringTag");t.exports=function(t,e,i){t&&!n(t=i?t:t.prototype,s)&&o(t,s,{configurable:!0,value:e})}},function(t,e,i){var o=i(42)("wks"),n=i(43),s=i(16).Symbol,r="function"==typeof s,a=t.exports=function(t){return o[t]||(o[t]=r&&s[t]||(r?s:n)("Symbol."+t))};a.store=o},function(t,e,i){var o=i(31),n=i(49),s=i(41)("IE_PROTO"),r=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=n(t),o(t,s)?t[s]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?r:null}},function(t,e,i){var o=i(12);t.exports=function(t){return Object(o(t))}},function(t,e,i){var o=i(51)(!0);i(13)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,i=this._i;return i>=e.length?{value:void 0,done:!0}:(t=o(e,i),this._i+=t.length,{value:t,done:!1})})},function(t,e,i){var o=i(39),n=i(12);t.exports=function(t){return function(e,i){var s,r,a=String(n(e)),h=o(i),d=a.length;return h<0||h>=d?t?"":void 0:(s=a.charCodeAt(h),s<55296||s>56319||h+1===d||(r=a.charCodeAt(h+1))<56320||r>57343?t?a.charAt(h):s:t?a.slice(h,h+2):(s-55296<<10)+(r-56320)+65536)}}},function(t,e,i){var o=i(22),n=i(53);t.exports=i(17).getIterator=function(t){var e=n(t);if("function"!=typeof e)throw TypeError(t+" is not iterable!");return o(e.call(t))}},function(t,e,i){var o=i(54),n=i(47)("iterator"),s=i(8);t.exports=i(17).getIteratorMethod=function(t){if(void 0!=t)return t[n]||t["@@iterator"]||s[o(t)]}},function(t,e,i){var o=i(11),n=i(47)("toStringTag"),s="Arguments"==o(function(){return arguments}()),r=function(t,e){try{return t[e]}catch(t){}};t.exports=function(t){var e,i,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(i=r(e=Object(t),n))?i:s?o(e):"Object"==(a=o(e))&&"function"==typeof e.callee?"Arguments":a}},function(t,e,i){t.exports={default:i(56),__esModule:!0}},function(t,e,i){i(57);var o=i(17).Object;t.exports=function(t,e){return o.create(t,e)}},function(t,e,i){var o=i(15);o(o.S,"Object",{create:i(33)})},function(t,e,i){t.exports={default:i(59),__esModule:!0}},function(t,e,i){i(60),t.exports=i(17).Object.keys},function(t,e,i){var o=i(49),n=i(35);i(61)("keys",function(){return function(t){return n(o(t))}})},function(t,e,i){var o=i(15),n=i(17),s=i(26);t.exports=function(t,e){var i=(n.Object||{})[t]||Object[t],r={};r[t]=e(i),o(o.S+o.F*s(function(){i(1)}),"Object",r)}},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}e.__esModule=!0;var n=i(63),s=o(n),r=i(66),a=o(r),h="function"==typeof a.default&&"symbol"==typeof s.default?function(t){return typeof t}:function(t){return t&&"function"==typeof a.default&&t.constructor===a.default&&t!==a.default.prototype?"symbol":typeof t};e.default="function"==typeof a.default&&"symbol"===h(s.default)?function(t){return"undefined"==typeof t?"undefined":h(t)}:function(t){return t&&"function"==typeof a.default&&t.constructor===a.default&&t!==a.default.prototype?"symbol":"undefined"==typeof t?"undefined":h(t)}},function(t,e,i){t.exports={default:i(64),__esModule:!0}},function(t,e,i){i(50),i(4),t.exports=i(65).f("iterator")},function(t,e,i){e.f=i(47)},function(t,e,i){t.exports={default:i(67),__esModule:!0}},function(t,e,i){i(68),i(79),i(80),i(81),t.exports=i(17).Symbol},function(t,e,i){var o=i(16),n=i(31),s=i(25),r=i(15),a=i(30),h=i(69).KEY,d=i(26),l=i(42),u=i(46),p=i(43),c=i(47),f=i(65),m=i(70),g=i(71),v=i(72),y=i(75),b=i(22),_=i(9),w=i(28),x=i(29),D=i(33),S=i(76),k=i(78),T=i(21),C=i(35),M=k.f,O=T.f,E=S.f,P=o.Symbol,N=o.JSON,A=N&&N.stringify,I="prototype",R=c("_hidden"),L=c("toPrimitive"),F={}.propertyIsEnumerable,H=l("symbol-registry"),Y=l("symbols"),j=l("op-symbols"),G=Object[I],z="function"==typeof P,W=o.QObject,U=!W||!W[I]||!W[I].findChild,V=s&&d(function(){return 7!=D(O({},"a",{get:function(){return O(this,"a",{value:7}).a}})).a})?function(t,e,i){var o=M(G,e);o&&delete G[e],O(t,e,i),o&&t!==G&&O(G,e,o)}:O,B=function(t){var e=Y[t]=D(P[I]);return e._k=t,e},q=z&&"symbol"==typeof P.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof P},X=function(t,e,i){return t===G&&X(j,e,i),b(t),e=w(e,!0),b(i),n(Y,e)?(i.enumerable?(n(t,R)&&t[R][e]&&(t[R][e]=!1),i=D(i,{enumerable:x(0,!1)})):(n(t,R)||O(t,R,x(1,{})),t[R][e]=!0),V(t,e,i)):O(t,e,i)},Z=function(t,e){b(t);for(var i,o=v(e=_(e)),n=0,s=o.length;s>n;)X(t,i=o[n++],e[i]);return t},K=function(t,e){return void 0===e?D(t):Z(D(t),e)},$=function(t){var e=F.call(this,t=w(t,!0));return!(this===G&&n(Y,t)&&!n(j,t))&&(!(e||!n(this,t)||!n(Y,t)||n(this,R)&&this[R][t])||e)},J=function(t,e){if(t=_(t),e=w(e,!0),t!==G||!n(Y,e)||n(j,e)){var i=M(t,e);return!i||!n(Y,e)||n(t,R)&&t[R][e]||(i.enumerable=!0),i}},Q=function(t){for(var e,i=E(_(t)),o=[],s=0;i.length>s;)n(Y,e=i[s++])||e==R||e==h||o.push(e);return o},tt=function(t){for(var e,i=t===G,o=E(i?j:_(t)),s=[],r=0;o.length>r;)!n(Y,e=o[r++])||i&&!n(G,e)||s.push(Y[e]);return s};z||(P=function(){if(this instanceof P)throw TypeError("Symbol is not a constructor!");var t=p(arguments.length>0?arguments[0]:void 0),e=function(i){this===G&&e.call(j,i),n(this,R)&&n(this[R],t)&&(this[R][t]=!1),V(this,t,x(1,i))};return s&&U&&V(G,t,{configurable:!0,set:e}),B(t)},a(P[I],"toString",function(){return this._k}),k.f=J,T.f=X,i(77).f=S.f=Q,i(74).f=$,i(73).f=tt,s&&!i(14)&&a(G,"propertyIsEnumerable",$,!0),f.f=function(t){return B(c(t))}),r(r.G+r.W+r.F*!z,{Symbol:P});for(var et="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),it=0;et.length>it;)c(et[it++]);for(var et=C(c.store),it=0;et.length>it;)m(et[it++]);r(r.S+r.F*!z,"Symbol",{for:function(t){return n(H,t+="")?H[t]:H[t]=P(t)},keyFor:function(t){if(q(t))return g(H,t);throw TypeError(t+" is not a symbol!")},useSetter:function(){U=!0},useSimple:function(){U=!1}}),r(r.S+r.F*!z,"Object",{create:K,defineProperty:X,defineProperties:Z,getOwnPropertyDescriptor:J,getOwnPropertyNames:Q,getOwnPropertySymbols:tt}),N&&r(r.S+r.F*(!z||d(function(){var t=P();return"[null]"!=A([t])||"{}"!=A({a:t})||"{}"!=A(Object(t))})),"JSON",{stringify:function(t){if(void 0!==t&&!q(t)){for(var e,i,o=[t],n=1;arguments.length>n;)o.push(arguments[n++]);return e=o[1],"function"==typeof e&&(i=e),!i&&y(e)||(e=function(t,e){if(i&&(e=i.call(this,t,e)),!q(e))return e}),o[1]=e,A.apply(N,o)}}}),P[I][L]||i(20)(P[I],L,P[I].valueOf),u(P,"Symbol"),u(Math,"Math",!0),u(o.JSON,"JSON",!0)},function(t,e,i){var o=i(43)("meta"),n=i(23),s=i(31),r=i(21).f,a=0,h=Object.isExtensible||function(){return!0},d=!i(26)(function(){return h(Object.preventExtensions({}))}),l=function(t){r(t,o,{value:{i:"O"+ ++a,w:{}}})},u=function(t,e){if(!n(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!s(t,o)){if(!h(t))return"F";if(!e)return"E";l(t)}return t[o].i},p=function(t,e){if(!s(t,o)){if(!h(t))return!0;if(!e)return!1;l(t)}return t[o].w},c=function(t){return d&&f.NEED&&h(t)&&!s(t,o)&&l(t),t},f=t.exports={KEY:o,NEED:!1,fastKey:u,getWeak:p,onFreeze:c}},function(t,e,i){var o=i(16),n=i(17),s=i(14),r=i(65),a=i(21).f;t.exports=function(t){var e=n.Symbol||(n.Symbol=s?{}:o.Symbol||{});"_"==t.charAt(0)||t in e||a(e,t,{value:r.f(t)})}},function(t,e,i){var o=i(35),n=i(9);t.exports=function(t,e){for(var i,s=n(t),r=o(s),a=r.length,h=0;a>h;)if(s[i=r[h++]]===e)return i}},function(t,e,i){var o=i(35),n=i(73),s=i(74);t.exports=function(t){var e=o(t),i=n.f;if(i)for(var r,a=i(t),h=s.f,d=0;a.length>d;)h.call(t,r=a[d++])&&e.push(r);return e}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,i){var o=i(11);t.exports=Array.isArray||function(t){return"Array"==o(t)}},function(t,e,i){var o=i(9),n=i(77).f,s={}.toString,r="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(t){try{return n(t)}catch(t){return r.slice()}};t.exports.f=function(t){return r&&"[object Window]"==s.call(t)?a(t):n(o(t))}},function(t,e,i){var o=i(36),n=i(44).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return o(t,n)}},function(t,e,i){var o=i(74),n=i(29),s=i(9),r=i(28),a=i(31),h=i(24),d=Object.getOwnPropertyDescriptor;e.f=i(25)?d:function(t,e){if(t=s(t),e=r(e,!0),h)try{return d(t,e)}catch(t){}if(a(t,e))return n(!o.f.call(t,e),t[e])}},function(t,e){},function(t,e,i){i(70)("asyncIterator")},function(t,e,i){i(70)("observable")},function(t,e,i){t.exports="undefined"!=typeof window&&window.moment||i(83)},function(t,e,i){(function(t){!function(e,i){t.exports=i()}(this,function(){function e(){return _o.apply(null,arguments)}function i(t){_o=t}function o(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function n(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function s(t){var e;for(e in t)return!1;return!0}function r(t){return void 0===t}function a(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function h(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function d(t,e){var i,o=[];for(i=0;i0)for(i=0;i0?"future":"past"];return T(i)?i(e):i.replace(/%s/i,e)}function L(t,e){var i=t.toLowerCase();Ro[i]=Ro[i+"s"]=Ro[e]=t}function F(t){return"string"==typeof t?Ro[t]||Ro[t.toLowerCase()]:void 0}function H(t){var e,i,o={};for(i in t)l(t,i)&&(e=F(i),e&&(o[e]=t[i]));return o}function Y(t,e){Lo[t]=e}function j(t){var e=[];for(var i in t)e.push({unit:i,priority:Lo[i]});return e.sort(function(t,e){return t.priority-e.priority}),e}function G(t,i){return function(o){return null!=o?(W(this,t,o),e.updateOffset(this,i),this):z(this,t)}}function z(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function W(t,e,i){t.isValid()&&t._d["set"+(t._isUTC?"UTC":"")+e](i)}function U(t){return t=F(t),T(this[t])?this[t]():this}function V(t,e){if("object"==typeof t){t=H(t);for(var i=j(t),o=0;o=0;return(s?i?"+":"":"-")+Math.pow(10,Math.max(0,n)).toString().substr(1)+o}function q(t,e,i,o){var n=o;"string"==typeof o&&(n=function(){return this[o]()}),t&&(jo[t]=n),e&&(jo[e[0]]=function(){return B(n.apply(this,arguments),e[1],e[2])}),i&&(jo[i]=function(){return this.localeData().ordinal(n.apply(this,arguments),t)})}function X(t){return t.match(/\[[\s\S]/)?t.replace(/^\[|\]$/g,""):t.replace(/\\/g,"")}function Z(t){var e,i,o=t.match(Fo);for(e=0,i=o.length;e=0&&Ho.test(t);)t=t.replace(Ho,i),Ho.lastIndex=0,o-=1;return t}function J(t,e,i){sn[t]=T(e)?e:function(t,o){return t&&i?i:e}}function Q(t,e){return l(sn,t)?sn[t](e._strict,e._locale):new RegExp(tt(t))}function tt(t){return et(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,function(t,e,i,o,n){return e||i||o||n}))}function et(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}function it(t,e){var i,o=e;for("string"==typeof t&&(t=[t]),a(e)&&(o=function(t,i){i[e]=w(t)}),i=0;i=0&&isFinite(a.getFullYear())&&a.setFullYear(t),a}function _t(t){var e=new Date(Date.UTC.apply(null,arguments));return t<100&&t>=0&&isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t),e}function wt(t,e,i){var o=7+e-i,n=(7+_t(t,0,o).getUTCDay()-e)%7;return-n+o-1}function xt(t,e,i,o,n){var s,r,a=(7+i-o)%7,h=wt(t,o,n),d=1+7*(e-1)+a+h;return d<=0?(s=t-1,r=gt(s)+d):d>gt(t)?(s=t+1,r=d-gt(t)):(s=t,r=d),{year:s,dayOfYear:r}}function Dt(t,e,i){var o,n,s=wt(t.year(),e,i),r=Math.floor((t.dayOfYear()-s-1)/7)+1;return r<1?(n=t.year()-1,o=r+St(n,e,i)):r>St(t.year(),e,i)?(o=r-St(t.year(),e,i),n=t.year()+1):(n=t.year(),o=r),{week:o,year:n}}function St(t,e,i){var o=wt(t,e,i),n=wt(t+1,e,i);return(gt(t)-o+n)/7}function kt(t){return Dt(t,this._week.dow,this._week.doy).week}function Tt(){return this._week.dow}function Ct(){return this._week.doy}function Mt(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")}function Ot(t){var e=Dt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")}function Et(t,e){return"string"!=typeof t?t:isNaN(t)?(t=e.weekdaysParse(t),"number"==typeof t?t:null):parseInt(t,10)}function Pt(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}function Nt(t,e){return t?o(this._weekdays)?this._weekdays[t.day()]:this._weekdays[this._weekdays.isFormat.test(e)?"format":"standalone"][t.day()]:o(this._weekdays)?this._weekdays:this._weekdays.standalone}function At(t){return t?this._weekdaysShort[t.day()]:this._weekdaysShort}function It(t){return t?this._weekdaysMin[t.day()]:this._weekdaysMin}function Rt(t,e,i){var o,n,s,r=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],o=0;o<7;++o)s=p([2e3,1]).day(o),this._minWeekdaysParse[o]=this.weekdaysMin(s,"").toLocaleLowerCase(),this._shortWeekdaysParse[o]=this.weekdaysShort(s,"").toLocaleLowerCase(),this._weekdaysParse[o]=this.weekdays(s,"").toLocaleLowerCase();return i?"dddd"===e?(n=gn.call(this._weekdaysParse,r),n!==-1?n:null):"ddd"===e?(n=gn.call(this._shortWeekdaysParse,r),n!==-1?n:null):(n=gn.call(this._minWeekdaysParse,r),n!==-1?n:null):"dddd"===e?(n=gn.call(this._weekdaysParse,r),n!==-1?n:(n=gn.call(this._shortWeekdaysParse,r),n!==-1?n:(n=gn.call(this._minWeekdaysParse,r),n!==-1?n:null))):"ddd"===e?(n=gn.call(this._shortWeekdaysParse,r),n!==-1?n:(n=gn.call(this._weekdaysParse,r),n!==-1?n:(n=gn.call(this._minWeekdaysParse,r),n!==-1?n:null))):(n=gn.call(this._minWeekdaysParse,r),n!==-1?n:(n=gn.call(this._weekdaysParse,r),n!==-1?n:(n=gn.call(this._shortWeekdaysParse,r),n!==-1?n:null)))}function Lt(t,e,i){var o,n,s;if(this._weekdaysParseExact)return Rt.call(this,t,e,i);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),o=0;o<7;o++){if(n=p([2e3,1]).day(o),i&&!this._fullWeekdaysParse[o]&&(this._fullWeekdaysParse[o]=new RegExp("^"+this.weekdays(n,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[o]=new RegExp("^"+this.weekdaysShort(n,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[o]=new RegExp("^"+this.weekdaysMin(n,"").replace(".",".?")+"$","i")),this._weekdaysParse[o]||(s="^"+this.weekdays(n,"")+"|^"+this.weekdaysShort(n,"")+"|^"+this.weekdaysMin(n,""),this._weekdaysParse[o]=new RegExp(s.replace(".",""),"i")),i&&"dddd"===e&&this._fullWeekdaysParse[o].test(t))return o;if(i&&"ddd"===e&&this._shortWeekdaysParse[o].test(t))return o;if(i&&"dd"===e&&this._minWeekdaysParse[o].test(t))return o;if(!i&&this._weekdaysParse[o].test(t))return o}}function Ft(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=Et(t,this.localeData()),this.add(t-e,"d")):e}function Ht(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")}function Yt(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=Pt(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7}function jt(t){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Wt.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(l(this,"_weekdaysRegex")||(this._weekdaysRegex=Cn),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)}function Gt(t){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Wt.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(l(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Mn),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)}function zt(t){return this._weekdaysParseExact?(l(this,"_weekdaysRegex")||Wt.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(l(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=On),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)}function Wt(){function t(t,e){return e.length-t.length}var e,i,o,n,s,r=[],a=[],h=[],d=[];for(e=0;e<7;e++)i=p([2e3,1]).day(e),o=this.weekdaysMin(i,""),n=this.weekdaysShort(i,""),s=this.weekdays(i,""),r.push(o),a.push(n),h.push(s),d.push(o),d.push(n),d.push(s);for(r.sort(t),a.sort(t),h.sort(t),d.sort(t),e=0;e<7;e++)a[e]=et(a[e]),h[e]=et(h[e]),d[e]=et(d[e]);this._weekdaysRegex=new RegExp("^("+d.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+r.join("|")+")","i")}function Ut(){return this.hours()%12||12}function Vt(){return this.hours()||24}function Bt(t,e){q(t,0,0,function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)})}function qt(t,e){return e._meridiemParse}function Xt(t){return"p"===(t+"").toLowerCase().charAt(0)}function Zt(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"}function Kt(t){return t?t.toLowerCase().replace("_","-"):t}function $t(t){for(var e,i,o,n,s=0;s0;){if(o=Jt(n.slice(0,e).join("-")))return o;if(i&&i.length>=e&&x(n,i,!0)>=e-1)break;e--}s++}return null}function Jt(e){var i=null;if(!In[e]&&"undefined"!=typeof t&&t&&t.exports)try{i=En._abbr,!function(){var t=new Error('Cannot find module "./locale"');throw t.code="MODULE_NOT_FOUND",t}(),Qt(i)}catch(t){}return In[e]}function Qt(t,e){var i;return t&&(i=r(e)?ie(t):te(t,e),i&&(En=i)),En._abbr}function te(t,e){if(null!==e){var i=An;if(e.abbr=t,null!=In[t])k("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),i=In[t]._config;else if(null!=e.parentLocale){if(null==In[e.parentLocale])return Rn[e.parentLocale]||(Rn[e.parentLocale]=[]),Rn[e.parentLocale].push({name:t,config:e}),null;i=In[e.parentLocale]._config}return In[t]=new O(M(i,e)),Rn[t]&&Rn[t].forEach(function(t){te(t.name,t.config)}),Qt(t),In[t]}return delete In[t],null}function ee(t,e){if(null!=e){var i,o=An;null!=In[t]&&(o=In[t]._config),e=M(o,e),i=new O(e),i.parentLocale=In[t],In[t]=i,Qt(t)}else null!=In[t]&&(null!=In[t].parentLocale?In[t]=In[t].parentLocale:null!=In[t]&&delete In[t]);return In[t]}function ie(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return En;if(!o(t)){if(e=Jt(t))return e;t=[t]}return $t(t)}function oe(){return Mo(In)}function ne(t){var e,i=t._a;return i&&f(t).overflow===-2&&(e=i[hn]<0||i[hn]>11?hn:i[dn]<1||i[dn]>st(i[an],i[hn])?dn:i[ln]<0||i[ln]>24||24===i[ln]&&(0!==i[un]||0!==i[pn]||0!==i[cn])?ln:i[un]<0||i[un]>59?un:i[pn]<0||i[pn]>59?pn:i[cn]<0||i[cn]>999?cn:-1,f(t)._overflowDayOfYear&&(edn)&&(e=dn),f(t)._overflowWeeks&&e===-1&&(e=fn),f(t)._overflowWeekday&&e===-1&&(e=mn),f(t).overflow=e),t}function se(t){var e,i,o,n,s,r,a=t._i,h=Ln.exec(a)||Fn.exec(a);if(h){for(f(t).iso=!0,e=0,i=Yn.length;e10?"YYYY ":"YY "),s="HH:mm"+(i[4]?":ss":""),i[1]){var u=new Date(i[2]),p=["Sun","Mon","Tue","Wed","Thu","Fri","Sat"][u.getDay()];if(i[1].substr(0,3)!==p)return f(t).weekdayMismatch=!0,void(t._isValid=!1)}switch(i[5].length){case 2:0===h?a=" +0000":(h=l.indexOf(i[5][1].toUpperCase())-12,a=(h<0?" -":" +")+(""+h).replace(/^-?/,"0").match(/..$/)[0]+"00");break;case 4:a=d[i[5]];break;default:a=d[" GMT"]}i[5]=a,t._i=i.splice(1).join(""),r=" ZZ",t._f=o+n+s+r,pe(t),f(t).rfc2822=!0}else t._isValid=!1}function ae(t){var i=Gn.exec(t._i);return null!==i?void(t._d=new Date(+i[1])):(se(t),void(t._isValid===!1&&(delete t._isValid,re(t),t._isValid===!1&&(delete t._isValid,e.createFromInputFallback(t)))))}function he(t,e,i){return null!=t?t:null!=e?e:i}function de(t){var i=new Date(e.now());return t._useUTC?[i.getUTCFullYear(),i.getUTCMonth(),i.getUTCDate()]:[i.getFullYear(),i.getMonth(),i.getDate()]}function le(t){var e,i,o,n,s=[];if(!t._d){for(o=de(t),t._w&&null==t._a[dn]&&null==t._a[hn]&&ue(t),null!=t._dayOfYear&&(n=he(t._a[an],o[an]),(t._dayOfYear>gt(n)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),i=_t(n,0,t._dayOfYear),t._a[hn]=i.getUTCMonth(),t._a[dn]=i.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=s[e]=o[e];for(;e<7;e++)t._a[e]=s[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[ln]&&0===t._a[un]&&0===t._a[pn]&&0===t._a[cn]&&(t._nextDay=!0,t._a[ln]=0),t._d=(t._useUTC?_t:bt).apply(null,s),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[ln]=24)}}function ue(t){var e,i,o,n,s,r,a,h;if(e=t._w,null!=e.GG||null!=e.W||null!=e.E)s=1,r=4,i=he(e.GG,t._a[an],Dt(_e(),1,4).year),o=he(e.W,1),n=he(e.E,1),(n<1||n>7)&&(h=!0);else{s=t._locale._week.dow,r=t._locale._week.doy;var d=Dt(_e(),s,r);i=he(e.gg,t._a[an],d.year),o=he(e.w,d.week),null!=e.d?(n=e.d,(n<0||n>6)&&(h=!0)):null!=e.e?(n=e.e+s,(e.e<0||e.e>6)&&(h=!0)):n=s}o<1||o>St(i,s,r)?f(t)._overflowWeeks=!0:null!=h?f(t)._overflowWeekday=!0:(a=xt(i,o,n,s,r),t._a[an]=a.year,t._dayOfYear=a.dayOfYear)}function pe(t){if(t._f===e.ISO_8601)return void se(t);if(t._f===e.RFC_2822)return void re(t);t._a=[],f(t).empty=!0;var i,o,n,s,r,a=""+t._i,h=a.length,d=0;for(n=$(t._f,t._locale).match(Fo)||[],i=0;i0&&f(t).unusedInput.push(r),a=a.slice(a.indexOf(o)+o.length),d+=o.length),jo[s]?(o?f(t).empty=!1:f(t).unusedTokens.push(s),nt(s,o,t)):t._strict&&!o&&f(t).unusedTokens.push(s);f(t).charsLeftOver=h-d,a.length>0&&f(t).unusedInput.push(a),t._a[ln]<=12&&f(t).bigHour===!0&&t._a[ln]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[ln]=ce(t._locale,t._a[ln],t._meridiem),le(t),ne(t)}function ce(t,e,i){var o;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?(o=t.isPM(i),o&&e<12&&(e+=12),o||12!==e||(e=0),e):e}function fe(t){var e,i,o,n,s;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(n=0;nthis.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()}function Ge(){if(!r(this._isDSTShifted))return this._isDSTShifted;var t={};if(v(t,this),t=ve(t),t._a){var e=t._isUTC?p(t._a):_e(t._a);this._isDSTShifted=this.isValid()&&x(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}function ze(){return!!this.isValid()&&!this._isUTC}function We(){return!!this.isValid()&&this._isUTC}function Ue(){return!!this.isValid()&&(this._isUTC&&0===this._offset)}function Ve(t,e){var i,o,n,s=t,r=null;return Me(t)?s={ms:t._milliseconds,d:t._days,M:t._months}:a(t)?(s={},e?s[e]=t:s.milliseconds=t):(r=Xn.exec(t))?(i="-"===r[1]?-1:1,s={y:0,d:w(r[dn])*i,h:w(r[ln])*i,m:w(r[un])*i,s:w(r[pn])*i,ms:w(Oe(1e3*r[cn]))*i}):(r=Zn.exec(t))?(i="-"===r[1]?-1:1,s={y:Be(r[2],i),M:Be(r[3],i),w:Be(r[4],i),d:Be(r[5],i),h:Be(r[6],i),m:Be(r[7],i),s:Be(r[8],i)}):null==s?s={}:"object"==typeof s&&("from"in s||"to"in s)&&(n=Xe(_e(s.from),_e(s.to)),s={},s.ms=n.milliseconds,s.M=n.months),o=new Ce(s),Me(t)&&l(t,"_locale")&&(o._locale=t._locale),o}function Be(t,e){var i=t&&parseFloat(t.replace(",","."));return(isNaN(i)?0:i)*e}function qe(t,e){var i={milliseconds:0,months:0};return i.months=e.month()-t.month()+12*(e.year()-t.year()),t.clone().add(i.months,"M").isAfter(e)&&--i.months,i.milliseconds=+e-+t.clone().add(i.months,"M"),i}function Xe(t,e){var i;return t.isValid()&&e.isValid()?(e=Ne(e,t),t.isBefore(e)?i=qe(t,e):(i=qe(e,t),i.milliseconds=-i.milliseconds,i.months=-i.months),i):{milliseconds:0,months:0}}function Ze(t,e){return function(i,o){var n,s;return null===o||isNaN(+o)||(k(e,"moment()."+e+"(period, number) is deprecated. Please use moment()."+e+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),s=i,i=o,o=s),i="string"==typeof i?+i:i,n=Ve(i,o),Ke(this,n,t),this}}function Ke(t,i,o,n){var s=i._milliseconds,r=Oe(i._days),a=Oe(i._months);t.isValid()&&(n=null==n||n,s&&t._d.setTime(t._d.valueOf()+s*o),r&&W(t,"Date",z(t,"Date")+r*o),a&<(t,z(t,"Month")+a*o),n&&e.updateOffset(t,r||a))}function $e(t,e){var i=t.diff(e,"days",!0);return i<-6?"sameElse":i<-1?"lastWeek":i<0?"lastDay":i<1?"sameDay":i<2?"nextDay":i<7?"nextWeek":"sameElse"}function Je(t,i){var o=t||_e(),n=Ne(o,this).startOf("day"),s=e.calendarFormat(this,n)||"sameElse",r=i&&(T(i[s])?i[s].call(this,o):i[s]);return this.format(r||this.localeData().calendar(s,this,_e(o)))}function Qe(){return new y(this)}function ti(t,e){var i=b(t)?t:_e(t);return!(!this.isValid()||!i.isValid())&&(e=F(r(e)?"millisecond":e),"millisecond"===e?this.valueOf()>i.valueOf():i.valueOf()9999?K(t,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):T(Date.prototype.toISOString)?this.toDate().toISOString():K(t,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]")}function li(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var i="["+t+'("]',o=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",n="-MM-DD[T]HH:mm:ss.SSS",s=e+'[")]';return this.format(i+o+n+s)}function ui(t){t||(t=this.isUtc()?e.defaultFormatUtc:e.defaultFormat);var i=K(this,t);return this.localeData().postformat(i)}function pi(t,e){return this.isValid()&&(b(t)&&t.isValid()||_e(t).isValid())?Ve({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()}function ci(t){return this.from(_e(),t)}function fi(t,e){return this.isValid()&&(b(t)&&t.isValid()||_e(t).isValid())?Ve({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()}function mi(t){return this.to(_e(),t)}function gi(t){var e;return void 0===t?this._locale._abbr:(e=ie(t),null!=e&&(this._locale=e),this)}function vi(){return this._locale}function yi(t){switch(t=F(t)){case"year":this.month(0);case"quarter":case"month":this.date(1);case"week":case"isoWeek":case"day":case"date":this.hours(0);case"hour":this.minutes(0);case"minute":this.seconds(0);case"second":this.milliseconds(0)}return"week"===t&&this.weekday(0),"isoWeek"===t&&this.isoWeekday(1),"quarter"===t&&this.month(3*Math.floor(this.month()/3)),this}function bi(t){return t=F(t),void 0===t||"millisecond"===t?this:("date"===t&&(t="day"),this.startOf(t).add(1,"isoWeek"===t?"week":t).subtract(1,"ms"))}function _i(){return this._d.valueOf()-6e4*(this._offset||0)}function wi(){return Math.floor(this.valueOf()/1e3)}function xi(){return new Date(this.valueOf())}function Di(){var t=this;return[t.year(),t.month(),t.date(),t.hour(),t.minute(),t.second(),t.millisecond()]}function Si(){var t=this;return{years:t.year(),months:t.month(),date:t.date(),hours:t.hours(),minutes:t.minutes(),seconds:t.seconds(),milliseconds:t.milliseconds()}}function ki(){return this.isValid()?this.toISOString():null}function Ti(){return m(this)}function Ci(){return u({},f(this))}function Mi(){return f(this).overflow}function Oi(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}}function Ei(t,e){q(0,[t,t.length],0,e)}function Pi(t){return Ri.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)}function Ni(t){return Ri.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)}function Ai(){return St(this.year(),1,4)}function Ii(){var t=this.localeData()._week;return St(this.year(),t.dow,t.doy)}function Ri(t,e,i,o,n){var s;return null==t?Dt(this,o,n).year:(s=St(t,o,n),e>s&&(e=s),Li.call(this,t,e,i,o,n))}function Li(t,e,i,o,n){var s=xt(t,e,i,o,n),r=_t(s.year,0,s.dayOfYear);return this.year(r.getUTCFullYear()),this.month(r.getUTCMonth()),this.date(r.getUTCDate()),this}function Fi(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)}function Hi(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")}function Yi(t,e){e[cn]=w(1e3*("0."+t))}function ji(){return this._isUTC?"UTC":""}function Gi(){return this._isUTC?"Coordinated Universal Time":""}function zi(t){return _e(1e3*t)}function Wi(){return _e.apply(null,arguments).parseZone()}function Ui(t){return t}function Vi(t,e,i,o){var n=ie(),s=p().set(o,e);return n[i](s,t)}function Bi(t,e,i){if(a(t)&&(e=t,t=void 0),t=t||"",null!=e)return Vi(t,e,i,"month");var o,n=[];for(o=0;o<12;o++)n[o]=Vi(t,o,i,"month");return n; -}function qi(t,e,i,o){"boolean"==typeof t?(a(e)&&(i=e,e=void 0),e=e||""):(e=t,i=e,t=!1,a(e)&&(i=e,e=void 0),e=e||"");var n=ie(),s=t?n._week.dow:0;if(null!=i)return Vi(e,(i+s)%7,o,"day");var r,h=[];for(r=0;r<7;r++)h[r]=Vi(e,(r+s)%7,o,"day");return h}function Xi(t,e){return Bi(t,e,"months")}function Zi(t,e){return Bi(t,e,"monthsShort")}function Ki(t,e,i){return qi(t,e,i,"weekdays")}function $i(t,e,i){return qi(t,e,i,"weekdaysShort")}function Ji(t,e,i){return qi(t,e,i,"weekdaysMin")}function Qi(){var t=this._data;return this._milliseconds=rs(this._milliseconds),this._days=rs(this._days),this._months=rs(this._months),t.milliseconds=rs(t.milliseconds),t.seconds=rs(t.seconds),t.minutes=rs(t.minutes),t.hours=rs(t.hours),t.months=rs(t.months),t.years=rs(t.years),this}function to(t,e,i,o){var n=Ve(e,i);return t._milliseconds+=o*n._milliseconds,t._days+=o*n._days,t._months+=o*n._months,t._bubble()}function eo(t,e){return to(this,t,e,1)}function io(t,e){return to(this,t,e,-1)}function oo(t){return t<0?Math.floor(t):Math.ceil(t)}function no(){var t,e,i,o,n,s=this._milliseconds,r=this._days,a=this._months,h=this._data;return s>=0&&r>=0&&a>=0||s<=0&&r<=0&&a<=0||(s+=864e5*oo(ro(a)+r),r=0,a=0),h.milliseconds=s%1e3,t=_(s/1e3),h.seconds=t%60,e=_(t/60),h.minutes=e%60,i=_(e/60),h.hours=i%24,r+=_(i/24),n=_(so(r)),a+=n,r-=oo(ro(n)),o=_(a/12),a%=12,h.days=r,h.months=a,h.years=o,this}function so(t){return 4800*t/146097}function ro(t){return 146097*t/4800}function ao(t){if(!this.isValid())return NaN;var e,i,o=this._milliseconds;if(t=F(t),"month"===t||"year"===t)return e=this._days+o/864e5,i=this._months+so(e),"month"===t?i:i/12;switch(e=this._days+Math.round(ro(this._months)),t){case"week":return e/7+o/6048e5;case"day":return e+o/864e5;case"hour":return 24*e+o/36e5;case"minute":return 1440*e+o/6e4;case"second":return 86400*e+o/1e3;case"millisecond":return Math.floor(864e5*e)+o;default:throw new Error("Unknown unit "+t)}}function ho(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*w(this._months/12):NaN}function lo(t){return function(){return this.as(t)}}function uo(t){return t=F(t),this.isValid()?this[t+"s"]():NaN}function po(t){return function(){return this.isValid()?this._data[t]:NaN}}function co(){return _(this.days()/7)}function fo(t,e,i,o,n){return n.relativeTime(e||1,!!i,t,o)}function mo(t,e,i){var o=Ve(t).abs(),n=xs(o.as("s")),s=xs(o.as("m")),r=xs(o.as("h")),a=xs(o.as("d")),h=xs(o.as("M")),d=xs(o.as("y")),l=n<=Ds.ss&&["s",n]||n0,l[4]=i,fo.apply(null,l)}function go(t){return void 0===t?xs:"function"==typeof t&&(xs=t,!0)}function vo(t,e){return void 0!==Ds[t]&&(void 0===e?Ds[t]:(Ds[t]=e,"s"===t&&(Ds.ss=e-1),!0))}function yo(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),i=mo(this,!t,e);return t&&(i=e.pastFuture(+this,i)),e.postformat(i)}function bo(){if(!this.isValid())return this.localeData().invalidDate();var t,e,i,o=Ss(this._milliseconds)/1e3,n=Ss(this._days),s=Ss(this._months);t=_(o/60),e=_(t/60),o%=60,t%=60,i=_(s/12),s%=12;var r=i,a=s,h=n,d=e,l=t,u=o,p=this.asSeconds();return p?(p<0?"-":"")+"P"+(r?r+"Y":"")+(a?a+"M":"")+(h?h+"D":"")+(d||l||u?"T":"")+(d?d+"H":"")+(l?l+"M":"")+(u?u+"S":""):"P0D"}var _o,wo;wo=Array.prototype.some?Array.prototype.some:function(t){for(var e=Object(this),i=e.length>>>0,o=0;o68?1900:2e3)};var xn=G("FullYear",!0);q("w",["ww",2],"wo","week"),q("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),Y("week",5),Y("isoWeek",5),J("w",Bo),J("ww",Bo,zo),J("W",Bo),J("WW",Bo,zo),ot(["w","ww","W","WW"],function(t,e,i,o){e[o.substr(0,1)]=w(t)});var Dn={dow:0,doy:6};q("d",0,"do","day"),q("dd",0,0,function(t){return this.localeData().weekdaysMin(this,t)}),q("ddd",0,0,function(t){return this.localeData().weekdaysShort(this,t)}),q("dddd",0,0,function(t){return this.localeData().weekdays(this,t)}),q("e",0,0,"weekday"),q("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),Y("day",11),Y("weekday",11),Y("isoWeekday",11),J("d",Bo),J("e",Bo),J("E",Bo),J("dd",function(t,e){return e.weekdaysMinRegex(t)}),J("ddd",function(t,e){return e.weekdaysShortRegex(t)}),J("dddd",function(t,e){return e.weekdaysRegex(t)}),ot(["dd","ddd","dddd"],function(t,e,i,o){var n=i._locale.weekdaysParse(t,o,i._strict);null!=n?e.d=n:f(i).invalidWeekday=t}),ot(["d","e","E"],function(t,e,i,o){e[o]=w(t)});var Sn="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),kn="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Tn="Su_Mo_Tu_We_Th_Fr_Sa".split("_"),Cn=nn,Mn=nn,On=nn;q("H",["HH",2],0,"hour"),q("h",["hh",2],0,Ut),q("k",["kk",2],0,Vt),q("hmm",0,0,function(){return""+Ut.apply(this)+B(this.minutes(),2)}),q("hmmss",0,0,function(){return""+Ut.apply(this)+B(this.minutes(),2)+B(this.seconds(),2)}),q("Hmm",0,0,function(){return""+this.hours()+B(this.minutes(),2)}),q("Hmmss",0,0,function(){return""+this.hours()+B(this.minutes(),2)+B(this.seconds(),2)}),Bt("a",!0),Bt("A",!1),L("hour","h"),Y("hour",13),J("a",qt),J("A",qt),J("H",Bo),J("h",Bo),J("k",Bo),J("HH",Bo,zo),J("hh",Bo,zo),J("kk",Bo,zo),J("hmm",qo),J("hmmss",Xo),J("Hmm",qo),J("Hmmss",Xo),it(["H","HH"],ln),it(["k","kk"],function(t,e,i){var o=w(t);e[ln]=24===o?0:o}),it(["a","A"],function(t,e,i){i._isPm=i._locale.isPM(t),i._meridiem=t}),it(["h","hh"],function(t,e,i){e[ln]=w(t),f(i).bigHour=!0}),it("hmm",function(t,e,i){var o=t.length-2;e[ln]=w(t.substr(0,o)),e[un]=w(t.substr(o)),f(i).bigHour=!0}),it("hmmss",function(t,e,i){var o=t.length-4,n=t.length-2;e[ln]=w(t.substr(0,o)),e[un]=w(t.substr(o,2)),e[pn]=w(t.substr(n)),f(i).bigHour=!0}),it("Hmm",function(t,e,i){var o=t.length-2;e[ln]=w(t.substr(0,o)),e[un]=w(t.substr(o))}),it("Hmmss",function(t,e,i){var o=t.length-4,n=t.length-2;e[ln]=w(t.substr(0,o)),e[un]=w(t.substr(o,2)),e[pn]=w(t.substr(n))});var En,Pn=/[ap]\.?m?\.?/i,Nn=G("Hours",!0),An={calendar:Oo,longDateFormat:Eo,invalidDate:Po,ordinal:No,dayOfMonthOrdinalParse:Ao,relativeTime:Io,months:yn,monthsShort:bn,week:Dn,weekdays:Sn,weekdaysMin:Tn,weekdaysShort:kn,meridiemParse:Pn},In={},Rn={},Ln=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Fn=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,Hn=/Z|[+-]\d\d(?::?\d\d)?/,Yn=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],jn=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],Gn=/^\/?Date\((\-?\d+)/i,zn=/^((?:Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d?\d\s(?:Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(?:\d\d)?\d\d\s)(\d\d:\d\d)(\:\d\d)?(\s(?:UT|GMT|[ECMP][SD]T|[A-IK-Za-ik-z]|[+-]\d{4}))$/;e.createFromInputFallback=S("value provided is not in a recognized RFC2822 or ISO format. moment construction falls back to js Date(), which is not reliable across all browsers and versions. Non RFC2822/ISO date formats are discouraged and will be removed in an upcoming major release. Please refer to http://momentjs.com/guides/#/warnings/js-date/ for more info.",function(t){t._d=new Date(t._i+(t._useUTC?" UTC":""))}),e.ISO_8601=function(){},e.RFC_2822=function(){};var Wn=S("moment().min is deprecated, use moment.max instead. http://momentjs.com/guides/#/warnings/min-max/",function(){var t=_e.apply(null,arguments);return this.isValid()&&t.isValid()?tthis?this:t:g()}),Vn=function(){return Date.now?Date.now():+new Date},Bn=["year","quarter","month","week","day","hour","minute","second","millisecond"];Ee("Z",":"),Ee("ZZ",""),J("Z",en),J("ZZ",en),it(["Z","ZZ"],function(t,e,i){i._useUTC=!0,i._tzm=Pe(en,t)});var qn=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var Xn=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/,Zn=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;Ve.fn=Ce.prototype,Ve.invalid=Te;var Kn=Ze(1,"add"),$n=Ze(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ",e.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Jn=S("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(t){return void 0===t?this.localeData():this.locale(t)});q(0,["gg",2],0,function(){return this.weekYear()%100}),q(0,["GG",2],0,function(){return this.isoWeekYear()%100}),Ei("gggg","weekYear"),Ei("ggggg","weekYear"),Ei("GGGG","isoWeekYear"),Ei("GGGGG","isoWeekYear"),L("weekYear","gg"),L("isoWeekYear","GG"),Y("weekYear",1),Y("isoWeekYear",1),J("G",Qo),J("g",Qo),J("GG",Bo,zo),J("gg",Bo,zo),J("GGGG",Ko,Uo),J("gggg",Ko,Uo),J("GGGGG",$o,Vo),J("ggggg",$o,Vo),ot(["gggg","ggggg","GGGG","GGGGG"],function(t,e,i,o){e[o.substr(0,2)]=w(t)}),ot(["gg","GG"],function(t,i,o,n){i[n]=e.parseTwoDigitYear(t)}),q("Q",0,"Qo","quarter"),L("quarter","Q"),Y("quarter",7),J("Q",Go),it("Q",function(t,e){e[hn]=3*(w(t)-1)}),q("D",["DD",2],"Do","date"),L("date","D"),Y("date",9),J("D",Bo),J("DD",Bo,zo),J("Do",function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient}),it(["D","DD"],dn),it("Do",function(t,e){e[dn]=w(t.match(Bo)[0],10)});var Qn=G("Date",!0);q("DDD",["DDDD",3],"DDDo","dayOfYear"),L("dayOfYear","DDD"),Y("dayOfYear",4),J("DDD",Zo),J("DDDD",Wo),it(["DDD","DDDD"],function(t,e,i){i._dayOfYear=w(t)}),q("m",["mm",2],0,"minute"),L("minute","m"),Y("minute",14),J("m",Bo),J("mm",Bo,zo),it(["m","mm"],un);var ts=G("Minutes",!1);q("s",["ss",2],0,"second"),L("second","s"),Y("second",15),J("s",Bo),J("ss",Bo,zo),it(["s","ss"],pn);var es=G("Seconds",!1);q("S",0,0,function(){return~~(this.millisecond()/100)}),q(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),q(0,["SSS",3],0,"millisecond"),q(0,["SSSS",4],0,function(){return 10*this.millisecond()}),q(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),q(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),q(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),q(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),q(0,["SSSSSSSSS",9],0,function(){return 1e6*this.millisecond()}),L("millisecond","ms"),Y("millisecond",16),J("S",Zo,Go),J("SS",Zo,zo),J("SSS",Zo,Wo);var is;for(is="SSSS";is.length<=9;is+="S")J(is,Jo);for(is="S";is.length<=9;is+="S")it(is,Yi);var os=G("Milliseconds",!1);q("z",0,0,"zoneAbbr"),q("zz",0,0,"zoneName");var ns=y.prototype;ns.add=Kn,ns.calendar=Je,ns.clone=Qe,ns.diff=ri,ns.endOf=bi,ns.format=ui,ns.from=pi,ns.fromNow=ci,ns.to=fi,ns.toNow=mi,ns.get=U,ns.invalidAt=Mi,ns.isAfter=ti,ns.isBefore=ei,ns.isBetween=ii,ns.isSame=oi,ns.isSameOrAfter=ni,ns.isSameOrBefore=si,ns.isValid=Ti,ns.lang=Jn,ns.locale=gi,ns.localeData=vi,ns.max=Un,ns.min=Wn,ns.parsingFlags=Ci,ns.set=V,ns.startOf=yi,ns.subtract=$n,ns.toArray=Di,ns.toObject=Si,ns.toDate=xi,ns.toISOString=di,ns.inspect=li,ns.toJSON=ki,ns.toString=hi,ns.unix=wi,ns.valueOf=_i,ns.creationData=Oi,ns.year=xn,ns.isLeapYear=yt,ns.weekYear=Pi,ns.isoWeekYear=Ni,ns.quarter=ns.quarters=Fi,ns.month=ut,ns.daysInMonth=pt,ns.week=ns.weeks=Mt,ns.isoWeek=ns.isoWeeks=Ot,ns.weeksInYear=Ii,ns.isoWeeksInYear=Ai,ns.date=Qn,ns.day=ns.days=Ft,ns.weekday=Ht,ns.isoWeekday=Yt,ns.dayOfYear=Hi,ns.hour=ns.hours=Nn,ns.minute=ns.minutes=ts,ns.second=ns.seconds=es,ns.millisecond=ns.milliseconds=os,ns.utcOffset=Ie,ns.utc=Le,ns.local=Fe,ns.parseZone=He,ns.hasAlignedHourOffset=Ye,ns.isDST=je,ns.isLocal=ze,ns.isUtcOffset=We,ns.isUtc=Ue,ns.isUTC=Ue,ns.zoneAbbr=ji,ns.zoneName=Gi,ns.dates=S("dates accessor is deprecated. Use date instead.",Qn),ns.months=S("months accessor is deprecated. Use month instead",ut),ns.years=S("years accessor is deprecated. Use year instead",xn),ns.zone=S("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",Re),ns.isDSTShifted=S("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",Ge);var ss=O.prototype;ss.calendar=E,ss.longDateFormat=P,ss.invalidDate=N,ss.ordinal=A,ss.preparse=Ui,ss.postformat=Ui,ss.relativeTime=I,ss.pastFuture=R,ss.set=C,ss.months=rt,ss.monthsShort=at,ss.monthsParse=dt,ss.monthsRegex=ft,ss.monthsShortRegex=ct,ss.week=kt,ss.firstDayOfYear=Ct,ss.firstDayOfWeek=Tt,ss.weekdays=Nt,ss.weekdaysMin=It,ss.weekdaysShort=At,ss.weekdaysParse=Lt,ss.weekdaysRegex=jt,ss.weekdaysShortRegex=Gt,ss.weekdaysMinRegex=zt,ss.isPM=Xt,ss.meridiem=Zt,Qt("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10,i=1===w(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th";return t+i}}),e.lang=S("moment.lang is deprecated. Use moment.locale instead.",Qt),e.langData=S("moment.langData is deprecated. Use moment.localeData instead.",ie);var rs=Math.abs,as=lo("ms"),hs=lo("s"),ds=lo("m"),ls=lo("h"),us=lo("d"),ps=lo("w"),cs=lo("M"),fs=lo("y"),ms=po("milliseconds"),gs=po("seconds"),vs=po("minutes"),ys=po("hours"),bs=po("days"),_s=po("months"),ws=po("years"),xs=Math.round,Ds={ss:44,s:45,m:45,h:22,d:26,M:11},Ss=Math.abs,ks=Ce.prototype;return ks.isValid=ke,ks.abs=Qi,ks.add=eo,ks.subtract=io,ks.as=ao,ks.asMilliseconds=as,ks.asSeconds=hs,ks.asMinutes=ds,ks.asHours=ls,ks.asDays=us,ks.asWeeks=ps,ks.asMonths=cs,ks.asYears=fs,ks.valueOf=ho,ks._bubble=no,ks.get=uo,ks.milliseconds=ms,ks.seconds=gs,ks.minutes=vs,ks.hours=ys,ks.days=bs,ks.weeks=co,ks.months=_s,ks.years=ws,ks.humanize=yo,ks.toISOString=bo,ks.toString=bo,ks.toJSON=bo,ks.locale=gi,ks.localeData=vi,ks.toIsoString=S("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",bo),ks.lang=Jn,q("X",0,0,"unix"),q("x",0,0,"valueOf"),J("x",Qo),J("X",on),it("X",function(t,e,i){i._d=new Date(1e3*parseFloat(t,10))}),it("x",function(t,e,i){i._d=new Date(w(t))}),e.version="2.18.1",i(_e),e.fn=ns,e.min=xe,e.max=De,e.now=Vn,e.utc=p,e.unix=zi,e.months=Xi,e.isDate=h,e.locale=Qt,e.invalid=g,e.duration=Ve,e.isMoment=b,e.weekdays=Ki,e.parseZone=Wi,e.localeData=ie,e.isDuration=Me,e.monthsShort=Zi,e.weekdaysMin=Ji,e.defineLocale=te,e.updateLocale=ee,e.locales=oe,e.weekdaysShort=$i,e.normalizeUnits=F,e.relativeTimeRounding=go,e.relativeTimeThreshold=vo,e.calendarFormat=$e,e.prototype=ns,e})}).call(e,i(84)(t))},function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children=[],t.webpackPolyfill=1),t}},function(t,e){function i(t){throw new Error("Cannot find module '"+t+"'.")}i.keys=function(){return[]},i.resolve=i,t.exports=i,i.id=85},function(t,e){(function(e){function i(t,e,i){var o=e&&i||0,n=0;for(e=e||[],t.toLowerCase().replace(/[0-9a-f]{2}/g,function(t){n<16&&(e[o+n++]=u[t])});n<16;)e[o+n++]=0;return e}function o(t,e){var i=e||0,o=l;return o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+"-"+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]+o[t[i++]]}function n(t,e,i){var n=e&&i||0,s=e||[];t=t||{};var r=void 0!==t.clockseq?t.clockseq:m,a=void 0!==t.msecs?t.msecs:(new Date).getTime(),h=void 0!==t.nsecs?t.nsecs:v+1,d=a-g+(h-v)/1e4;if(d<0&&void 0===t.clockseq&&(r=r+1&16383),(d<0||a>g)&&void 0===t.nsecs&&(h=0),h>=1e4)throw new Error("uuid.v1(): Can't create more than 10M uuids/sec");g=a,v=h,m=r,a+=122192928e5;var l=(1e4*(268435455&a)+h)%4294967296;s[n++]=l>>>24&255,s[n++]=l>>>16&255,s[n++]=l>>>8&255,s[n++]=255&l;var u=a/4294967296*1e4&268435455;s[n++]=u>>>8&255,s[n++]=255&u,s[n++]=u>>>24&15|16,s[n++]=u>>>16&255,s[n++]=r>>>8|128,s[n++]=255&r;for(var p=t.node||f,c=0;c<6;c++)s[n+c]=p[c];return e?e:o(s)}function s(t,e,i){var n=e&&i||0;"string"==typeof t&&(e="binary"==t?new Array(16):null,t=null),t=t||{};var s=t.random||(t.rng||r)();if(s[6]=15&s[6]|64,s[8]=63&s[8]|128,e)for(var a=0;a<16;a++)e[n+a]=s[a];return e||o(s)}var r,a="undefined"!=typeof window?window:"undefined"!=typeof e?e:null;if(a&&a.crypto&&crypto.getRandomValues){var h=new Uint8Array(16);r=function(){return crypto.getRandomValues(h),h}}if(!r){var d=new Array(16);r=function(){for(var t,e=0;e<16;e++)0===(3&e)&&(t=4294967296*Math.random()),d[e]=t>>>((3&e)<<3)&255;return d}}for(var l=[],u={},p=0;p<256;p++)l[p]=(p+256).toString(16).substr(1),u[l[p]]=p;var c=r(),f=[1|c[0],c[1],c[2],c[3],c[4],c[5]],m=16383&(c[6]<<8|c[7]),g=0,v=0,y=s;y.v1=n,y.v4=s,y.parse=i,y.unparse=o,t.exports=y}).call(e,function(){return this}())},function(t,e){e.prepareElements=function(t){for(var e in t)t.hasOwnProperty(e)&&(t[e].redundant=t[e].used,t[e].used=[])},e.cleanupElements=function(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e].redundant){for(var i=0;i0?(o=e[t].redundant[0],e[t].redundant.shift()):(o=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(o)):(o=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(o)),e[t].used.push(o),o},e.getDOMElement=function(t,e,i,o){var n;return e.hasOwnProperty(t)?e[t].redundant.length>0?(n=e[t].redundant[0],e[t].redundant.shift()):(n=document.createElement(t),void 0!==o?i.insertBefore(n,o):i.appendChild(n)):(n=document.createElement(t),e[t]={used:[],redundant:[]},void 0!==o?i.insertBefore(n,o):i.appendChild(n)),e[t].used.push(n),n},e.drawPoint=function(t,i,o,n,s,r){var a;if("circle"==o.style?(a=e.getSVGElement("circle",n,s),a.setAttributeNS(null,"cx",t),a.setAttributeNS(null,"cy",i),a.setAttributeNS(null,"r",.5*o.size)):(a=e.getSVGElement("rect",n,s),a.setAttributeNS(null,"x",t-.5*o.size),a.setAttributeNS(null,"y",i-.5*o.size),a.setAttributeNS(null,"width",o.size),a.setAttributeNS(null,"height",o.size)),void 0!==o.styles&&a.setAttributeNS(null,"style",o.styles),a.setAttributeNS(null,"class",o.className+" vis-point"),r){var h=e.getSVGElement("text",n,s);r.xOffset&&(t+=r.xOffset),r.yOffset&&(i+=r.yOffset),r.content&&(h.textContent=r.content),r.className&&h.setAttributeNS(null,"class",r.className+" vis-label"),h.setAttributeNS(null,"x",t),h.setAttributeNS(null,"y",i)}return a},e.drawBar=function(t,i,o,n,s,r,a,h){if(0!=n){n<0&&(n*=-1,i-=n);var d=e.getSVGElement("rect",r,a);d.setAttributeNS(null,"x",t-.5*o),d.setAttributeNS(null,"y",i),d.setAttributeNS(null,"width",o),d.setAttributeNS(null,"height",n),d.setAttributeNS(null,"class",s),h&&d.setAttributeNS(null,"style",h)}}},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}function n(t,e){if(t&&!Array.isArray(t)&&(e=t,t=null),this._options=e||{},this._data={},this.length=0,this._fieldId=this._options.fieldId||"id",this._type={},this._options.type)for(var i=(0,l.default)(this._options.type),o=0,n=i.length;on?1:or)&&(s=h,r=d)}return s},n.prototype.min=function(t){var e,i,o=this._data,n=(0,l.default)(o),s=null,r=null;for(e=0,i=n.length;ethis.max&&this.flush(),clearTimeout(this._timeout),this.queue.length>0&&"number"==typeof this.delay){var t=this;this._timeout=setTimeout(function(){t.flush()},this.delay)}},i.prototype.flush=function(){for(;this._queue.length>0;){var t=this._queue.shift();t.fn.apply(t.context||t.fn,t.args||[])}},t.exports=i},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}function n(t,e){this._data=null,this._ids={},this.length=0,this._options=e||{},this._fieldId="id",this._subscribers={};var i=this;this.listener=function(){i._onEvent.apply(i,arguments)},this.setData(t)}var s=i(58),r=o(s),a=i(1),h=i(88);n.prototype.setData=function(t){var e,i,o,n,s;if(this._data){for(this._data.off&&this._data.off("*",this.listener),e=this._data.getIds({filter:this._options&&this._options.filter}),s=[],o=0,n=e.length;os)&&(s=i)}),null!==n&&null!==s){var r=(n+s)/2,a=Math.max(this.range.end-this.range.start,1.1*(s-n)),h=!e||void 0===e.animation||e.animation;this.range.setRange(r-a/2,r+a/2,{animation:h})}}},o.prototype.fit=function(t){var e,i=!t||void 0===t.animation||t.animation,o=this.itemsData&&this.itemsData.getDataSet();1===o.length&&void 0===o.get()[0].end?(e=this.getDataRange(),this.moveTo(e.min.valueOf(),{animation:i})):(e=this.getItemRange(),this.range.setRange(e.min,e.max,{animation:i}))},o.prototype.getItemRange=function(){var t=this.getDataRange(),e=null!==t.min?t.min.valueOf():null,i=null!==t.max?t.max.valueOf():null,o=null,n=null;if(null!=e&&null!=i){var r=function(t){return s.convert(t.data.start,"Date").valueOf()},a=function(t){var e=void 0!=t.data.end?t.data.end:t.data.start;return s.convert(e,"Date").valueOf()},h=i-e;h<=0&&(h=10);var d=h/this.props.center.width;if(s.forEach(this.itemSet.items,function(t){t.groupShowing&&(t.show(),t.repositionX());var s=r(t),h=a(t);if(this.options.rtl)var l=s-(t.getWidthRight()+10)*d,u=h+(t.getWidthLeft()+10)*d;else var l=s-(t.getWidthLeft()+10)*d,u=h+(t.getWidthRight()+10)*d;li&&(i=u,n=t)}.bind(this)),o&&n){var l=o.getWidthLeft()+10,u=n.getWidthRight()+10,p=this.props.center.width-l-u;p>0&&(this.options.rtl?(e=r(o)-u*h/p,i=a(n)+l*h/p):(e=r(o)-l*h/p,i=a(n)+u*h/p))}}return{min:null!=e?new Date(e):null,max:null!=i?new Date(i):null}},o.prototype.getDataRange=function(){var t=null,e=null,i=this.itemsData&&this.itemsData.getDataSet();return i&&i.forEach(function(i){var o=s.convert(i.start,"Date").valueOf(),n=s.convert(void 0!=i.end?i.end:i.start,"Date").valueOf();(null===t||oe)&&(e=n)}),{min:null!=t?new Date(t):null,max:null!=e?new Date(e):null}},o.prototype.getEventProperties=function(t){var e=t.center?t.center.x:t.clientX,i=t.center?t.center.y:t.clientY;if(this.options.rtl)var o=s.getAbsoluteRight(this.dom.centerContainer)-e;else var o=e-s.getAbsoluteLeft(this.dom.centerContainer);var n=i-s.getAbsoluteTop(this.dom.centerContainer),r=this.itemSet.itemFromTarget(t),a=this.itemSet.groupFromTarget(t),h=p.customTimeFromTarget(t),d=this.itemSet.options.snap||null,l=this.body.util.getScale(),u=this.body.util.getStep(),c=this._toTime(o),f=d?d(c,l,u):c,m=s.getTarget(t),g=null;return null!=r?g="item":null!=h?g="custom-time":s.hasParent(m,this.timeAxis.dom.foreground)?g="axis":this.timeAxis2&&s.hasParent(m,this.timeAxis2.dom.foreground)?g="axis":s.hasParent(m,this.itemSet.dom.labelSet)?g="group-label":s.hasParent(m,this.currentTime.bar)?g="current-time":s.hasParent(m,this.dom.center)&&(g="background"),{event:t,item:r?r.id:null,group:a?a.groupId:null,what:g,pageX:t.srcEvent?t.srcEvent.pageX:t.pageX,pageY:t.srcEvent?t.srcEvent.pageY:t.pageY,x:o,y:n,time:c,snappedTime:f}},o.prototype.toggleRollingMode=function(){this.range.rolling?this.range.stopRolling():(void 0==this.options.rollingMode&&this.setOptions(this.options),this.range.startRolling())},t.exports=o},function(t,e){function i(t){if(t)return o(t)}function o(t){for(var e in i.prototype)t[e]=i.prototype[e];return t}t.exports=i,i.prototype.on=i.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks[t]=this._callbacks[t]||[]).push(e),this},i.prototype.once=function(t,e){function i(){o.off(t,i),e.apply(this,arguments)}var o=this;return this._callbacks=this._callbacks||{},i.fn=e,this.on(t,i),this},i.prototype.off=i.prototype.removeListener=i.prototype.removeAllListeners=i.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var i=this._callbacks[t];if(!i)return this;if(1==arguments.length)return delete this._callbacks[t],this;for(var o,n=0;n0?d._handlers[t]=o:(i.off(t,s),delete d._handlers[t]))}),d},d.emit=function(e,o){t=o.target,i.emit(e,o)},d.destroy=function(){var t=i.element.hammer,e=t.indexOf(d);e!==-1&&t.splice(e,1),t.length||delete i.element.hammer,d._handlers={},i.destroy()},d}})},function(t,e,i){var o;/*! Hammer.JS - v2.0.7 - 2016-04-22 - * http://hammerjs.github.io/ - * - * Copyright (c) 2016 Jorik Tangelder; - * Licensed under the MIT license */ -!function(n,s,r,a){function h(t,e,i){return setTimeout(c(t,i),e)}function d(t,e,i){return!!Array.isArray(t)&&(l(t,i[e],i),!0)}function l(t,e,i){var o;if(t)if(t.forEach)t.forEach(e,i);else if(t.length!==a)for(o=0;o\s*\(/gm,"{anonymous}()@"):"Unknown Stack Trace",s=n.console&&(n.console.warn||n.console.log);return s&&s.call(n.console,o,i),t.apply(this,arguments)}}function p(t,e,i){var o,n=e.prototype;o=t.prototype=Object.create(n),o.constructor=t,o._super=n,i&&mt(o,i)}function c(t,e){return function(){return t.apply(e,arguments)}}function f(t,e){return typeof t==yt?t.apply(e?e[0]||a:a,e):t}function m(t,e){return t===a?e:t}function g(t,e,i){l(_(e),function(e){t.addEventListener(e,i,!1)})}function v(t,e,i){l(_(e),function(e){t.removeEventListener(e,i,!1)})}function y(t,e){for(;t;){if(t==e)return!0;t=t.parentNode}return!1}function b(t,e){return t.indexOf(e)>-1}function _(t){return t.trim().split(/\s+/g)}function w(t,e,i){if(t.indexOf&&!i)return t.indexOf(e);for(var o=0;oi[e]}):o.sort()),o}function S(t,e){for(var i,o,n=e[0].toUpperCase()+e.slice(1),s=0;s1&&!i.firstMultiple?i.firstMultiple=A(e):1===n&&(i.firstMultiple=!1);var s=i.firstInput,r=i.firstMultiple,a=r?r.center:s.center,h=e.center=I(o);e.timeStamp=wt(),e.deltaTime=e.timeStamp-s.timeStamp,e.angle=H(a,h),e.distance=F(a,h),P(i,e),e.offsetDirection=L(e.deltaX,e.deltaY);var d=R(e.deltaTime,e.deltaX,e.deltaY);e.overallVelocityX=d.x,e.overallVelocityY=d.y,e.overallVelocity=_t(d.x)>_t(d.y)?d.x:d.y,e.scale=r?j(r.pointers,o):1,e.rotation=r?Y(r.pointers,o):0,e.maxPointers=i.prevInput?e.pointers.length>i.prevInput.maxPointers?e.pointers.length:i.prevInput.maxPointers:e.pointers.length,N(i,e);var l=t.element;y(e.srcEvent.target,l)&&(l=e.srcEvent.target),e.target=l}function P(t,e){var i=e.center,o=t.offsetDelta||{},n=t.prevDelta||{},s=t.prevInput||{};e.eventType!==It&&s.eventType!==Lt||(n=t.prevDelta={x:s.deltaX||0,y:s.deltaY||0},o=t.offsetDelta={x:i.x,y:i.y}),e.deltaX=n.x+(i.x-o.x),e.deltaY=n.y+(i.y-o.y)}function N(t,e){var i,o,n,s,r=t.lastInterval||e,h=e.timeStamp-r.timeStamp;if(e.eventType!=Ft&&(h>At||r.velocity===a)){var d=e.deltaX-r.deltaX,l=e.deltaY-r.deltaY,u=R(h,d,l);o=u.x,n=u.y,i=_t(u.x)>_t(u.y)?u.x:u.y,s=L(d,l),t.lastInterval=e}else i=r.velocity,o=r.velocityX,n=r.velocityY,s=r.direction;e.velocity=i,e.velocityX=o,e.velocityY=n,e.direction=s}function A(t){for(var e=[],i=0;i=_t(e)?t<0?Yt:jt:e<0?Gt:zt}function F(t,e,i){i||(i=Bt);var o=e[i[0]]-t[i[0]],n=e[i[1]]-t[i[1]];return Math.sqrt(o*o+n*n)}function H(t,e,i){i||(i=Bt);var o=e[i[0]]-t[i[0]],n=e[i[1]]-t[i[1]];return 180*Math.atan2(n,o)/Math.PI}function Y(t,e){return H(e[1],e[0],qt)+H(t[1],t[0],qt)}function j(t,e){return F(e[0],e[1],qt)/F(t[0],t[1],qt)}function G(){this.evEl=Zt,this.evWin=Kt,this.pressed=!1,C.apply(this,arguments)}function z(){this.evEl=Qt,this.evWin=te,C.apply(this,arguments),this.store=this.manager.session.pointerEvents=[]}function W(){this.evTarget=ie,this.evWin=oe,this.started=!1,C.apply(this,arguments)}function U(t,e){var i=x(t.touches),o=x(t.changedTouches);return e&(Lt|Ft)&&(i=D(i.concat(o),"identifier",!0)),[i,o]}function V(){this.evTarget=se,this.targetIds={},C.apply(this,arguments)}function B(t,e){var i=x(t.touches),o=this.targetIds;if(e&(It|Rt)&&1===i.length)return o[i[0].identifier]=!0,[i,i];var n,s,r=x(t.changedTouches),a=[],h=this.target;if(s=i.filter(function(t){return y(t.target,h)}),e===It)for(n=0;n-1&&o.splice(t,1)};setTimeout(n,re)}}function K(t){for(var e=t.srcEvent.clientX,i=t.srcEvent.clientY,o=0;o-1&&this.requireFail.splice(e,1),this},hasRequireFailures:function(){return this.requireFail.length>0},canRecognizeWith:function(t){return!!this.simultaneous[t.id]},emit:function(t){function e(e){i.manager.emit(e,t)}var i=this,o=this.state;o<_e&&e(i.options.event+et(o)),e(i.options.event),t.additionalEvent&&e(t.additionalEvent),o>=_e&&e(i.options.event+et(o))},tryEmit:function(t){return this.canEmit()?this.emit(t):void(this.state=De)},canEmit:function(){for(var t=0;te.threshold&&n&e.direction},attrTest:function(t){return nt.prototype.attrTest.call(this,t)&&(this.state&ye||!(this.state&ye)&&this.directionTest(t))},emit:function(t){this.pX=t.deltaX,this.pY=t.deltaY;var e=it(t.direction);e&&(t.additionalEvent=this.options.event+e),this._super.emit.call(this,t)}}),p(rt,nt,{defaults:{event:"pinch",threshold:0,pointers:2},getTouchAction:function(){return[ce]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.scale-1)>this.options.threshold||this.state&ye)},emit:function(t){if(1!==t.scale){var e=t.scale<1?"in":"out";t.additionalEvent=this.options.event+e}this._super.emit.call(this,t)}}),p(at,tt,{defaults:{event:"press",pointers:1,time:251,threshold:9},getTouchAction:function(){return[ue]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distancee.time;if(this._input=t,!o||!i||t.eventType&(Lt|Ft)&&!n)this.reset();else if(t.eventType&It)this.reset(),this._timer=h(function(){this.state=we,this.tryEmit()},e.time,this);else if(t.eventType&Lt)return we;return De},reset:function(){clearTimeout(this._timer)},emit:function(t){this.state===we&&(t&&t.eventType&Lt?this.manager.emit(this.options.event+"up",t):(this._input.timeStamp=wt(),this.manager.emit(this.options.event,this._input)))}}),p(ht,nt,{defaults:{event:"rotate",threshold:0,pointers:2},getTouchAction:function(){return[ce]},attrTest:function(t){return this._super.attrTest.call(this,t)&&(Math.abs(t.rotation)>this.options.threshold||this.state&ye)}}),p(dt,nt,{defaults:{event:"swipe",threshold:10,velocity:.3,direction:Wt|Ut,pointers:1},getTouchAction:function(){return st.prototype.getTouchAction.call(this)},attrTest:function(t){var e,i=this.options.direction;return i&(Wt|Ut)?e=t.overallVelocity:i&Wt?e=t.overallVelocityX:i&Ut&&(e=t.overallVelocityY),this._super.attrTest.call(this,t)&&i&t.offsetDirection&&t.distance>this.options.threshold&&t.maxPointers==this.options.pointers&&_t(e)>this.options.velocity&&t.eventType&Lt},emit:function(t){var e=it(t.offsetDirection);e&&this.manager.emit(this.options.event+e,t),this.manager.emit(this.options.event,t)}}),p(lt,tt,{defaults:{event:"tap",pointers:1,taps:1,interval:300,time:250,threshold:9,posThreshold:10},getTouchAction:function(){return[pe]},process:function(t){var e=this.options,i=t.pointers.length===e.pointers,o=t.distance1e3&&(i=1e3),e.body.dom.rollingModeBtn.style.visibility="hidden",e.currentTimeTimer=setTimeout(t,i)}var e=this;t()},n.prototype.stopRolling=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),this.rolling=!1,this.body.dom.rollingModeBtn.style.visibility="visible")},n.prototype.setRange=function(t,e,i,o){i||(i={}),i.byUser!==!0&&(i.byUser=!1);var n=this,s=void 0!=t?p.convert(t,"Date").valueOf():null,r=void 0!=e?p.convert(e,"Date").valueOf():null;if(this._cancelAnimation(),i.animation){var h=this.start,l=this.end,c="object"===(0,u.default)(i.animation)&&"duration"in i.animation?i.animation.duration:500,f="object"===(0,u.default)(i.animation)&&"easingFunction"in i.animation?i.animation.easingFunction:"easeInOutQuad",g=p.easingFunctions[f];if(!g)throw new Error("Unknown easing function "+(0,d.default)(f)+". Choose from: "+(0,a.default)(p.easingFunctions).join(", "));var v=(new Date).valueOf(),y=!1,b=function t(){if(!n.props.touch.dragging){var e=(new Date).valueOf(),a=e-v,d=g(a/c),u=a>c,p=u||null===s?s:h+(s-h)*d,f=u||null===r?r:l+(r-l)*d;_=n._applyRange(p,f),m.updateHiddenDates(n.options.moment,n.body,n.options.hiddenDates),y=y||_;var b={start:new Date(n.start),end:new Date(n.end),byUser:i.byUser,event:i.event};if(_&&n.body.emitter.emit("rangechange",b),u){if(y&&(n.body.emitter.emit("rangechanged",b),o))return o()}else n.animationTimer=setTimeout(t,20)}};return b()}var _=this._applyRange(s,r);if(m.updateHiddenDates(this.options.moment,this.body,this.options.hiddenDates),_){var w={start:new Date(this.start),end:new Date(this.end),byUser:i.byUser,event:i.event};if(this.body.emitter.emit("rangechange",w),clearTimeout(n.timeoutID),n.timeoutID=setTimeout(function(){n.body.emitter.emit("rangechanged",w)},200),o)return o()}},n.prototype.getMillisecondsPerPixel=function(){return(this.end-this.start)/this.body.dom.center.clientWidth},n.prototype._cancelAnimation=function(){this.animationTimer&&(clearTimeout(this.animationTimer),this.animationTimer=null)},n.prototype._applyRange=function(t,e){var i,o=null!=t?p.convert(t,"Date").valueOf():this.start,n=null!=e?p.convert(e,"Date").valueOf():this.end,s=null!=this.options.max?p.convert(this.options.max,"Date").valueOf():null,r=null!=this.options.min?p.convert(this.options.min,"Date").valueOf():null;if(isNaN(o)||null===o)throw new Error('Invalid start "'+t+'"');if(isNaN(n)||null===n)throw new Error('Invalid end "'+e+'"');if(ns&&(n=s)),null!==s&&n>s&&(i=n-s,o-=i,n-=i,null!=r&&o=this.start-h&&n<=this.end?(o=this.start,n=this.end):(i=a-(n-o),o-=i/2,n+=i/2)}}if(null!==this.options.zoomMax){var d=parseFloat(this.options.zoomMax);d<0&&(d=0),n-o>d&&(this.end-this.start===d&&othis.end?(o=this.start,n=this.end):(i=n-o-d,o+=i/2,n-=i/2))}var l=this.start!=o||this.end!=n;return o>=this.start&&o<=this.end||n>=this.start&&n<=this.end||this.start>=o&&this.start<=n||this.end>=o&&this.end<=n||this.body.emitter.emit("checkRangedItems"),this.start=o,this.end=n,l},n.prototype.getRange=function(){return{start:this.start,end:this.end}},n.prototype.conversion=function(t,e){return n.conversion(this.start,this.end,t,e)},n.conversion=function(t,e,i,o){return void 0===o&&(o=0),0!=i&&e-t!=0?{offset:t,scale:i/(e-t-o)}:{offset:0,scale:1}},n.prototype._onDragStart=function(t){this.deltaDifference=0,this.previousDelta=0,this.options.moveable&&this._isInsideRange(t)&&this.props.touch.allowDragging&&(this.stopRolling(),this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.dragging=!0,this.body.dom.root&&(this.body.dom.root.style.cursor="move"))},n.prototype._onDrag=function(t){if(t&&this.props.touch.dragging&&this.options.moveable&&this.props.touch.allowDragging){var e=this.options.direction;s(e);var i="horizontal"==e?t.deltaX:t.deltaY;i-=this.deltaDifference;var o=this.props.touch.end-this.props.touch.start,n=m.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end);o-=n;var r="horizontal"==e?this.body.domProps.center.width:this.body.domProps.center.height;if(this.options.rtl)var a=i/r*o;else var a=-i/r*o;var h=this.props.touch.start+a,d=this.props.touch.end+a,l=m.snapAwayFromHidden(this.body.hiddenDates,h,this.previousDelta-i,!0),u=m.snapAwayFromHidden(this.body.hiddenDates,d,this.previousDelta-i,!0);if(l!=h||u!=d)return this.deltaDifference+=i,this.props.touch.start=l,this.props.touch.end=u,void this._onDrag(t);this.previousDelta=i,this._applyRange(h,d);var p=new Date(this.start),c=new Date(this.end);this.body.emitter.emit("rangechange",{start:p,end:c,byUser:!0,event:t}),this.body.emitter.emit("panmove")}},n.prototype._onDragEnd=function(t){this.props.touch.dragging&&this.options.moveable&&this.props.touch.allowDragging&&(this.props.touch.dragging=!1,this.body.dom.root&&(this.body.dom.root.style.cursor="auto"),this.body.emitter.emit("rangechanged",{start:new Date(this.start),end:new Date(this.end),byUser:!0,event:t}))},n.prototype._onMouseWheel=function(t){var e=0;if(t.wheelDelta?e=t.wheelDelta/120:t.detail&&(e=-t.detail/3),this.options.zoomKey&&!t[this.options.zoomKey]&&this.options.zoomable||!this.options.zoomable&&this.options.moveable){if(this.options.horizontalScroll){t.preventDefault();var i=e*(this.end-this.start)/20,o=this.start-i,n=this.end-i,s={animation:!1,byUser:!0,event:t};this.setRange(o,n,s)}}else if(this.options.zoomable&&this.options.moveable&&this._isInsideRange(t)&&e){var r;r=e<0?1-e/5:1/(1+e/5);var a;if(this.rolling)a=this.start+(this.end-this.start)*this.options.rollingMode.offset;else{var h=this.getPointer({x:t.clientX,y:t.clientY},this.body.dom.center);a=this._pointerToDate(h)}this.zoom(r,a,e,t),t.preventDefault()}},n.prototype._onTouch=function(t){this.props.touch.start=this.start,this.props.touch.end=this.end,this.props.touch.allowDragging=!0,this.props.touch.center=null,this.scaleOffset=0,this.deltaDifference=0},n.prototype._onPinch=function(t){if(this.options.zoomable&&this.options.moveable){this.props.touch.allowDragging=!1,this.props.touch.center||(this.props.touch.center=this.getPointer(t.center,this.body.dom.center)),this.stopRolling();var e=1/(t.scale+this.scaleOffset),i=this._pointerToDate(this.props.touch.center),o=m.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),n=m.getHiddenDurationBefore(this.options.moment,this.body.hiddenDates,this,i),s=o-n,r=i-n+(this.props.touch.start-(i-n))*e,a=i+s+(this.props.touch.end-(i+s))*e;this.startToFront=1-e<=0,this.endToFront=e-1<=0;var h=m.snapAwayFromHidden(this.body.hiddenDates,r,1-e,!0),d=m.snapAwayFromHidden(this.body.hiddenDates,a,e-1,!0);h==r&&d==a||(this.props.touch.start=h,this.props.touch.end=d,this.scaleOffset=1-t.scale,r=h,a=d);var l={animation:!1,byUser:!0,event:t};this.setRange(r,a,l),this.startToFront=!1,this.endToFront=!0}},n.prototype._isInsideRange=function(t){var e=t.center?t.center.x:t.clientX;if(this.options.rtl)var i=e-p.getAbsoluteLeft(this.body.dom.centerContainer);else var i=p.getAbsoluteRight(this.body.dom.centerContainer)-e;var o=this.body.util.toTime(i);return o>=this.start&&o<=this.end},n.prototype._pointerToDate=function(t){var e,i=this.options.direction;if(s(i),"horizontal"==i)return this.body.util.toTime(t.x).valueOf();var o=this.body.domProps.center.height;return e=this.conversion(o),t.y/e.scale+e.offset},n.prototype.getPointer=function(t,e){return this.options.rtl?{x:p.getAbsoluteRight(e)-t.x,y:t.y-p.getAbsoluteTop(e)}:{x:t.x-p.getAbsoluteLeft(e),y:t.y-p.getAbsoluteTop(e)}},n.prototype.zoom=function(t,e,i,o){null==e&&(e=(this.start+this.end)/2);var n=m.getHiddenDurationBetween(this.body.hiddenDates,this.start,this.end),s=m.getHiddenDurationBefore(this.options.moment,this.body.hiddenDates,this,e),r=n-s,a=e-s+(this.start-(e-s))*t,h=e+r+(this.end-(e+r))*t;this.startToFront=!(i>0),this.endToFront=!(-i>0);var d=m.snapAwayFromHidden(this.body.hiddenDates,a,i,!0),l=m.snapAwayFromHidden(this.body.hiddenDates,h,-i,!0);d==a&&l==h||(a=d,h=l);var u={animation:!1,byUser:!0,event:o};this.setRange(a,h,u),this.startToFront=!1,this.endToFront=!0},n.prototype.move=function(t){var e=this.end-this.start,i=this.start+e*t,o=this.end+e*t;this.start=i,this.end=o},n.prototype.moveTo=function(t){var e=(this.start+this.end)/2,i=e-t,o=this.start-i,n=this.end-i,s={animation:!1,byUser:!0,event:null};this.setRange(o,n,s)},t.exports=n},function(t,e,i){i(95);e.onTouch=function(t,e){e.inputHandler=function(t){t.isFirst&&e(t)},t.on("hammer.input",e.inputHandler)},e.onRelease=function(t,e){return e.inputHandler=function(t){t.isFinal&&e(t)},t.on("hammer.input",e.inputHandler)},e.offTouch=function(t,e){t.off("hammer.input",e.inputHandler)},e.offRelease=e.offTouch,e.disablePreventDefaultVertically=function(t){var e="pan-y";return t.getTouchAction=function(){return[e]},t}},function(t,e,i){function o(t,e){this.options=null,this.props=null}var n=i(1);o.prototype.setOptions=function(t){t&&n.extend(this.options,t)},o.prototype.redraw=function(){return!1},o.prototype.destroy=function(){},o.prototype._isResized=function(){var t=this.props._previousWidth!==this.props.width||this.props._previousHeight!==this.props.height;return this.props._previousWidth=this.props.width,this.props._previousHeight=this.props.height,t},t.exports=o; -},function(t,e){e.convertHiddenOptions=function(t,i,o){if(o&&!Array.isArray(o))return e.convertHiddenOptions(t,i,[o]);if(i.hiddenDates=[],o&&1==Array.isArray(o)){for(var n=0;n=4*a){var p=0,c=s.clone();switch(o[h].repeat){case"daily":d.day()!=l.day()&&(p=1),d.dayOfYear(n.dayOfYear()),d.year(n.year()),d.subtract(7,"days"),l.dayOfYear(n.dayOfYear()),l.year(n.year()),l.subtract(7-p,"days"),c.add(1,"weeks");break;case"weekly":var f=l.diff(d,"days"),m=d.day();d.date(n.date()),d.month(n.month()),d.year(n.year()),l=d.clone(),d.day(m),l.day(m),l.add(f,"days"),d.subtract(1,"weeks"),l.subtract(1,"weeks"),c.add(1,"weeks");break;case"monthly":d.month()!=l.month()&&(p=1),d.month(n.month()),d.year(n.year()),d.subtract(1,"months"),l.month(n.month()),l.year(n.year()),l.subtract(1,"months"),l.add(p,"months"),c.add(1,"months");break;case"yearly":d.year()!=l.year()&&(p=1),d.year(n.year()),d.subtract(1,"years"),l.year(n.year()),l.subtract(1,"years"),l.add(p,"years"),c.add(1,"years");break;default:return void console.log("Wrong repeat format, allowed are: daily, weekly, monthly, yearly. Given:",o[h].repeat)}for(;d=e[o].start&&e[n].end<=e[o].end?e[n].remove=!0:e[n].start>=e[o].start&&e[n].start<=e[o].end?(e[o].end=e[n].end,e[n].remove=!0):e[n].end>=e[o].start&&e[n].end<=e[o].end&&(e[o].start=e[n].start,e[n].remove=!0));for(var o=0;o=r&&nt.range.end){var h={start:t.range.start,end:i};i=e.correctTimeForHidden(t.options.moment,t.body.hiddenDates,h,i);var n=t.range.conversion(o,r);return(i.valueOf()-n.offset)*n.scale}i=e.correctTimeForHidden(t.options.moment,t.body.hiddenDates,t.range,i);var n=t.range.conversion(o,r);return(i.valueOf()-n.offset)*n.scale},e.toTime=function(t,i,o){if(0==t.body.hiddenDates.length){var n=t.range.conversion(o);return new Date(i/n.scale+n.offset)}var s=e.getHiddenDurationBetween(t.body.hiddenDates,t.range.start,t.range.end),r=t.range.end-t.range.start-s,a=r*i/o,h=e.getAccumulatedHiddenDuration(t.body.hiddenDates,t.range,a),d=new Date(h+a+t.range.start);return d},e.getHiddenDurationBetween=function(t,e,i){for(var o=0,n=0;n=e&&r=e&&r<=i&&(o+=r-s)}return o},e.correctTimeForHidden=function(t,i,o,n){return n=t(n).toDate().valueOf(),n-=e.getHiddenDurationBefore(t,i,o,n)},e.getHiddenDurationBefore=function(t,e,i,o){var n=0;o=t(o).toDate().valueOf();for(var s=0;s=i.start&&a=a&&(n+=a-r)}return n},e.getAccumulatedHiddenDuration=function(t,e,i){for(var o=0,n=0,s=e.start,r=0;r=e.start&&h=i)break;o+=h-a}}return o},e.snapAwayFromHidden=function(t,i,o,n){var s=e.isHidden(i,t);return 1==s.hidden?o<0?1==n?s.startDate-(s.endDate-i)-1:s.startDate-1:1==n?s.endDate+(i-s.startDate)+1:s.endDate+1:i},e.isHidden=function(t,e){for(var i=0;i=o&&t-1||h))return t.dataTransfer.dropEffect="move",h=!0,!1}function n(t){t.preventDefault&&t.preventDefault(),t.stopPropagation&&t.stopPropagation();try{var e=JSON.parse(t.dataTransfer.getData("text"));if(!e.content)return}catch(t){return!1}return h=!1,t.center={x:t.clientX,y:t.clientY},s.itemSet._onAddItem(t),s.emit("drop",s.getEventProperties(t)),!1}this.dom={},this.dom.container=t,this.dom.root=document.createElement("div"),this.dom.background=document.createElement("div"),this.dom.backgroundVertical=document.createElement("div"),this.dom.backgroundHorizontal=document.createElement("div"),this.dom.centerContainer=document.createElement("div"),this.dom.leftContainer=document.createElement("div"),this.dom.rightContainer=document.createElement("div"),this.dom.center=document.createElement("div"),this.dom.left=document.createElement("div"),this.dom.right=document.createElement("div"),this.dom.top=document.createElement("div"),this.dom.bottom=document.createElement("div"),this.dom.shadowTop=document.createElement("div"),this.dom.shadowBottom=document.createElement("div"),this.dom.shadowTopLeft=document.createElement("div"),this.dom.shadowBottomLeft=document.createElement("div"),this.dom.shadowTopRight=document.createElement("div"),this.dom.shadowBottomRight=document.createElement("div"),this.dom.rollingModeBtn=document.createElement("div"),this.dom.root.className="vis-timeline",this.dom.background.className="vis-panel vis-background",this.dom.backgroundVertical.className="vis-panel vis-background vis-vertical",this.dom.backgroundHorizontal.className="vis-panel vis-background vis-horizontal",this.dom.centerContainer.className="vis-panel vis-center",this.dom.leftContainer.className="vis-panel vis-left",this.dom.rightContainer.className="vis-panel vis-right",this.dom.top.className="vis-panel vis-top",this.dom.bottom.className="vis-panel vis-bottom",this.dom.left.className="vis-content",this.dom.center.className="vis-content",this.dom.right.className="vis-content",this.dom.shadowTop.className="vis-shadow vis-top",this.dom.shadowBottom.className="vis-shadow vis-bottom",this.dom.shadowTopLeft.className="vis-shadow vis-top",this.dom.shadowBottomLeft.className="vis-shadow vis-bottom",this.dom.shadowTopRight.className="vis-shadow vis-top",this.dom.shadowBottomRight.className="vis-shadow vis-bottom",this.dom.rollingModeBtn.className="vis-rolling-mode-btn",this.dom.root.appendChild(this.dom.background),this.dom.root.appendChild(this.dom.backgroundVertical),this.dom.root.appendChild(this.dom.backgroundHorizontal),this.dom.root.appendChild(this.dom.centerContainer),this.dom.root.appendChild(this.dom.leftContainer),this.dom.root.appendChild(this.dom.rightContainer),this.dom.root.appendChild(this.dom.top),this.dom.root.appendChild(this.dom.bottom),this.dom.root.appendChild(this.dom.bottom),this.dom.root.appendChild(this.dom.rollingModeBtn),this.dom.centerContainer.appendChild(this.dom.center),this.dom.leftContainer.appendChild(this.dom.left),this.dom.rightContainer.appendChild(this.dom.right),this.dom.centerContainer.appendChild(this.dom.shadowTop),this.dom.centerContainer.appendChild(this.dom.shadowBottom),this.dom.leftContainer.appendChild(this.dom.shadowTopLeft),this.dom.leftContainer.appendChild(this.dom.shadowBottomLeft),this.dom.rightContainer.appendChild(this.dom.shadowTopRight),this.dom.rightContainer.appendChild(this.dom.shadowBottomRight),this.props={root:{},background:{},centerContainer:{},leftContainer:{},rightContainer:{},center:{},left:{},right:{},top:{},bottom:{},border:{},scrollTop:0,scrollTopMin:0},this.on("rangechange",function(){this.initialDrawDone===!0&&this._redraw()}.bind(this)),this.on("touch",this._onTouch.bind(this)),this.on("panmove",this._onDrag.bind(this));var s=this;this._origRedraw=this._redraw.bind(this),this._redraw=p.throttle(this._origRedraw),this.on("_change",function(t){s.itemSet&&s.itemSet.initialItemSetDrawn&&t&&1==t.queue?s._redraw():s._origRedraw()}),this.hammer=new l(this.dom.root);var r=this.hammer.get("pinch").set({enable:!0});u.disablePreventDefaultVertically(r),this.hammer.get("pan").set({threshold:5,direction:l.DIRECTION_HORIZONTAL}),this.listeners={};var a=["tap","doubletap","press","pinch","pan","panstart","panmove","panend"];a.forEach(function(t){var e=function(e){s.isActive()&&s.emit(t,e)};s.hammer.on(t,e),s.listeners[t]=e}),u.onTouch(this.hammer,function(t){s.emit("touch",t)}.bind(this)),u.onRelease(this.hammer,function(t){s.emit("release",t)}.bind(this)),this.dom.centerContainer.addEventListener?(this.dom.centerContainer.addEventListener("mousewheel",e.bind(this),!1),this.dom.centerContainer.addEventListener("DOMMouseScroll",e.bind(this),!1)):this.dom.centerContainer.attachEvent("onmousewheel",e.bind(this)),this.dom.left.parentNode.addEventListener("scroll",i.bind(this)),this.dom.right.parentNode.addEventListener("scroll",i.bind(this));var h=!1;if(this.dom.center.addEventListener("dragover",o.bind(this),!1),this.dom.center.addEventListener("drop",n.bind(this),!1),this.customTimes=[],this.touch={},this.redrawCount=0,this.initialDrawDone=!1,!t)throw new Error("No container provided");t.appendChild(this.dom.root)},n.prototype.setOptions=function(t){if(t){var e=["width","height","minHeight","maxHeight","autoResize","start","end","clickToUse","dataAttributes","hiddenDates","locale","locales","moment","rtl","zoomKey","horizontalScroll","verticalScroll"];if(p.selectiveExtend(e,this.options,t),this.dom.rollingModeBtn.style.visibility="hidden",this.options.rtl&&(this.dom.container.style.direction="rtl",this.dom.backgroundVertical.className="vis-panel vis-background vis-vertical-rtl"),this.options.verticalScroll&&(this.options.rtl?this.dom.rightContainer.className="vis-panel vis-right vis-vertical-scroll":this.dom.leftContainer.className="vis-panel vis-left vis-vertical-scroll"),this.options.orientation={item:void 0,axis:void 0},"orientation"in t&&("string"==typeof t.orientation?this.options.orientation={item:t.orientation,axis:t.orientation}:"object"===(0,h.default)(t.orientation)&&("item"in t.orientation&&(this.options.orientation.item=t.orientation.item),"axis"in t.orientation&&(this.options.orientation.axis=t.orientation.axis))),"both"===this.options.orientation.axis){if(!this.timeAxis2){var i=this.timeAxis2=new c(this.body);i.setOptions=function(t){var e=t?p.extend({},t):{};e.orientation="top",c.prototype.setOptions.call(i,e)},this.components.push(i)}}else if(this.timeAxis2){var o=this.components.indexOf(this.timeAxis2);o!==-1&&this.components.splice(o,1),this.timeAxis2.destroy(),this.timeAxis2=null}if("function"==typeof t.drawPoints&&(t.drawPoints={onRender:t.drawPoints}),"hiddenDates"in this.options&&m.convertHiddenOptions(this.options.moment,this.body,this.options.hiddenDates),"clickToUse"in t&&(t.clickToUse?this.activator||(this.activator=new f(this.dom.root)):this.activator&&(this.activator.destroy(),delete this.activator)),"showCustomTime"in t)throw new Error("Option `showCustomTime` is deprecated. Create a custom time bar via timeline.addCustomTime(time [, id])");this._initAutoResize()}if(this.components.forEach(function(e){return e.setOptions(t)}),"configure"in t){this.configurator||(this.configurator=this._createConfigurator()),this.configurator.setOptions(t.configure);var n=p.deepExtend({},this.options);this.components.forEach(function(t){p.deepExtend(n,t.options)}),this.configurator.setModuleOptions({global:n})}this._redraw()},n.prototype.isActive=function(){return!this.activator||this.activator.active},n.prototype.destroy=function(){this.setItems(null),this.setGroups(null),this.off(),this._stopAutoResize(),this.dom.root.parentNode&&this.dom.root.parentNode.removeChild(this.dom.root),this.dom=null,this.activator&&(this.activator.destroy(),delete this.activator);for(var t in this.listeners)this.listeners.hasOwnProperty(t)&&delete this.listeners[t];this.listeners=null,this.hammer=null,this.components.forEach(function(t){return t.destroy()}),this.body=null},n.prototype.setCustomTime=function(t,e){var i=this.customTimes.filter(function(t){return e===t.options.id});if(0===i.length)throw new Error("No custom time bar found with id "+(0,r.default)(e));i.length>0&&i[0].setCustomTime(t)},n.prototype.getCustomTime=function(t){var e=this.customTimes.filter(function(e){return e.options.id===t});if(0===e.length)throw new Error("No custom time bar found with id "+(0,r.default)(t));return e[0].getCustomTime()},n.prototype.setCustomTimeTitle=function(t,e){var i=this.customTimes.filter(function(t){return t.options.id===e});if(0===i.length)throw new Error("No custom time bar found with id "+(0,r.default)(e));if(i.length>0)return i[0].setCustomTitle(t)},n.prototype.getEventProperties=function(t){return{event:t}},n.prototype.addCustomTime=function(t,e){var i=void 0!==t?p.convert(t,"Date").valueOf():new Date,o=this.customTimes.some(function(t){return t.options.id===e});if(o)throw new Error("A custom time with id "+(0,r.default)(e)+" already exists");var n=new g(this.body,p.extend({},this.options,{time:i,id:e}));return this.customTimes.push(n),this.components.push(n),this._redraw(),e},n.prototype.removeCustomTime=function(t){var e=this.customTimes.filter(function(e){return e.options.id===t});if(0===e.length)throw new Error("No custom time bar found with id "+(0,r.default)(t));e.forEach(function(t){this.customTimes.splice(this.customTimes.indexOf(t),1),this.components.splice(this.components.indexOf(t),1),t.destroy()}.bind(this))},n.prototype.getVisibleItems=function(){return this.itemSet&&this.itemSet.getVisibleItems()||[]},n.prototype.fit=function(t,e){var i=this.getDataRange();if(null!==i.min||null!==i.max){var o=i.max-i.min,n=new Date(i.min.valueOf()-.01*o),s=new Date(i.max.valueOf()+.01*o),r=!t||void 0===t.animation||t.animation;this.range.setRange(n,s,{animation:r},e)}},n.prototype.getDataRange=function(){throw new Error("Cannot invoke abstract method getDataRange")},n.prototype.setWindow=function(t,e,i,o){"function"==typeof arguments[2]&&(o=arguments[2],i={});var n;if(1==arguments.length){var s=arguments[0];n=void 0===s.animation||s.animation,this.range.setRange(s.start,s.end,{animation:n})}else if(2==arguments.length&&"function"==typeof arguments[1]){var s=arguments[0];o=arguments[1],n=void 0===s.animation||s.animation,this.range.setRange(s.start,s.end,{animation:n},o)}else n=!i||void 0===i.animation||i.animation,this.range.setRange(t,e,{animation:n},o)},n.prototype.moveTo=function(t,e,i){"function"==typeof arguments[1]&&(i=arguments[1],e={});var o=this.range.end-this.range.start,n=p.convert(t,"Date").valueOf(),s=n-o/2,r=n+o/2,a=!e||void 0===e.animation||e.animation;this.range.setRange(s,r,{animation:a},i)},n.prototype.getWindow=function(){var t=this.range.getRange();return{start:new Date(t.start),end:new Date(t.end)}},n.prototype.zoomIn=function(t,e,i){if(!(!t||t<0||t>1)){"function"==typeof arguments[1]&&(i=arguments[1],e={});var o=this.getWindow(),n=o.start.valueOf(),s=o.end.valueOf(),r=s-n,a=r/(1+t),h=(r-a)/2,d=n+h,l=s-h;this.setWindow(d,l,e,i)}},n.prototype.zoomOut=function(t,e,i){if(!(!t||t<0||t>1)){"function"==typeof arguments[1]&&(i=arguments[1],e={});var o=this.getWindow(),n=o.start.valueOf(),s=o.end.valueOf(),r=s-n,a=n-r*t/2,h=s+r*t/2;this.setWindow(a,h,e,i)}},n.prototype.redraw=function(){this._redraw()},n.prototype._redraw=function(){this.redrawCount++;var t=!1,e=this.options,i=this.props,o=this.dom;if(o&&o.container&&0!=o.root.offsetWidth){m.updateHiddenDates(this.options.moment,this.body,this.options.hiddenDates),"top"==e.orientation?(p.addClassName(o.root,"vis-top"),p.removeClassName(o.root,"vis-bottom")):(p.removeClassName(o.root,"vis-top"),p.addClassName(o.root,"vis-bottom")),o.root.style.maxHeight=p.option.asSize(e.maxHeight,""),o.root.style.minHeight=p.option.asSize(e.minHeight,""),o.root.style.width=p.option.asSize(e.width,""),i.border.left=(o.centerContainer.offsetWidth-o.centerContainer.clientWidth)/2,i.border.right=i.border.left,i.border.top=(o.centerContainer.offsetHeight-o.centerContainer.clientHeight)/2,i.border.bottom=i.border.top,i.borderRootHeight=o.root.offsetHeight-o.root.clientHeight,i.borderRootWidth=o.root.offsetWidth-o.root.clientWidth,0===o.centerContainer.clientHeight&&(i.border.left=i.border.top,i.border.right=i.border.left),0===o.root.clientHeight&&(i.borderRootWidth=i.borderRootHeight),i.center.height=o.center.offsetHeight,i.left.height=o.left.offsetHeight,i.right.height=o.right.offsetHeight,i.top.height=o.top.clientHeight||-i.border.top,i.bottom.height=o.bottom.clientHeight||-i.border.bottom;var n=Math.max(i.left.height,i.center.height,i.right.height),s=i.top.height+n+i.bottom.height+i.borderRootHeight+i.border.top+i.border.bottom;o.root.style.height=p.option.asSize(e.height,s+"px"),i.root.height=o.root.offsetHeight,i.background.height=i.root.height-i.borderRootHeight;var r=i.root.height-i.top.height-i.bottom.height-i.borderRootHeight;i.centerContainer.height=r,i.leftContainer.height=r,i.rightContainer.height=i.leftContainer.height,i.root.width=o.root.offsetWidth,i.background.width=i.root.width-i.borderRootWidth,this.initialDrawDone||(i.scrollbarWidth=p.getScrollBarWidth()),e.verticalScroll?e.rtl?(i.left.width=o.leftContainer.clientWidth||-i.border.left,i.right.width=o.rightContainer.clientWidth+i.scrollbarWidth||-i.border.right):(i.left.width=o.leftContainer.clientWidth+i.scrollbarWidth||-i.border.left,i.right.width=o.rightContainer.clientWidth||-i.border.right):(i.left.width=o.leftContainer.clientWidth||-i.border.left,i.right.width=o.rightContainer.clientWidth||-i.border.right),this._setDOM();var a=this._updateScrollTop();"top"!=e.orientation.item&&(a+=Math.max(i.centerContainer.height-i.center.height-i.border.top-i.border.bottom,0)),o.center.style.top=a+"px";var h=0==i.scrollTop?"hidden":"",d=i.scrollTop==i.scrollTopMin?"hidden":"";o.shadowTop.style.visibility=h,o.shadowBottom.style.visibility=d,o.shadowTopLeft.style.visibility=h,o.shadowBottomLeft.style.visibility=d,o.shadowTopRight.style.visibility=h,o.shadowBottomRight.style.visibility=d,e.verticalScroll&&(o.rightContainer.className="vis-panel vis-right vis-vertical-scroll",o.leftContainer.className="vis-panel vis-left vis-vertical-scroll",o.shadowTopRight.style.visibility="hidden",o.shadowBottomRight.style.visibility="hidden",o.shadowTopLeft.style.visibility="hidden",o.shadowBottomLeft.style.visibility="hidden",o.left.style.top="0px",o.right.style.top="0px"),(!e.verticalScroll||i.center.heighti.centerContainer.height;this.hammer.get("pan").set({direction:u?l.DIRECTION_ALL:l.DIRECTION_HORIZONTAL}),this.components.forEach(function(e){t=e.redraw()||t});var c=5;if(t){if(this.redrawCount0&&(this.props.scrollTop=0),this.props.scrollTope&&o.push(h.id):h.lefti&&o.push(h.id)}return o},n.prototype._deselect=function(t){for(var e=this.selection,i=0,o=e.length;in)return}}if(i&&i!=this.groupTouchParams.group){var h=e.get(i.groupId),d=e.get(this.groupTouchParams.group.groupId);d&&h&&(this.options.groupOrderSwap(d,h,e),e.update(d),e.update(h));var u=e.getIds({order:this.options.groupOrder});if(!l.equalArray(u,this.groupTouchParams.originalOrder))for(var c=this.groupTouchParams.originalOrder,f=this.groupTouchParams.group.groupId,m=Math.min(c.length,u.length),g=0,v=0,y=0;g=m)break;if(u[g+v]!=f)if(c[g+y]!=f){var b=u.indexOf(c[g+y]),_=e.get(u[g+v]),w=e.get(c[g+y]);this.options.groupOrderSwap(_,w,e),e.update(_),e.update(w);var x=u[g+v];u[g+v]=c[g+y],u[b]=x,g++}else y=1;else v=1}}}},n.prototype._onGroupDragEnd=function(t){if(this.options.groupEditable.order&&this.groupTouchParams.group){t.stopPropagation();var e=this,i=e.groupTouchParams.group.groupId,o=e.groupsData.getDataSet(),n=l.extend({},o.get(i));e.options.onMoveGroup(n,function(t){if(t)t[o._fieldId]=i,o.update(t);else{var n=o.getIds({order:e.options.groupOrder});if(!l.equalArray(n,e.groupTouchParams.originalOrder))for(var s=e.groupTouchParams.originalOrder,r=Math.min(s.length,n.length),a=0;a=r)break;var h=n.indexOf(s[a]),d=o.get(n[a]),u=o.get(s[a]);e.options.groupOrderSwap(d,u,o),o.update(d),o.update(u);var p=n[a];n[a]=s[a],n[h]=p,a++}}}),e.body.emitter.emit("groupDragged",{groupId:i})}},n.prototype._onSelectItem=function(t){if(this.options.selectable){var e=t.srcEvent&&(t.srcEvent.ctrlKey||t.srcEvent.metaKey),i=t.srcEvent&&t.srcEvent.shiftKey;if(e||i)return void this._onMultiSelectItem(t);var o=this.getSelection(),n=this.itemFromTarget(t),s=n?[n.id]:[];this.setSelection(s);var r=this.getSelection();(r.length>0||o.length>0)&&this.body.emitter.emit("select",{items:r,event:t})}},n.prototype._onMouseOver=function(t){var e=this.itemFromTarget(t);if(e){var i=this.itemFromRelatedTarget(t);if(e!==i){var o=e.getTitle();if(this.options.showTooltips&&o){null==this.popup&&(this.popup=new w(this.body.dom.root,this.options.tooltip.overflowMethod||"flip")),this.popup.setText(o);var n=this.body.dom.centerContainer;this.popup.setPosition(t.clientX-l.getAbsoluteLeft(n)+n.offsetLeft,t.clientY-l.getAbsoluteTop(n)+n.offsetTop),this.popup.show()}else null!=this.popup&&this.popup.hide();this.body.emitter.emit("itemover",{item:e.id,event:t})}}},n.prototype._onMouseOut=function(t){var e=this.itemFromTarget(t);if(e){var i=this.itemFromRelatedTarget(t);e!==i&&(null!=this.popup&&this.popup.hide(),this.body.emitter.emit("itemout",{item:e.id,event:t}))}},n.prototype._onMouseMove=function(t){var e=this.itemFromTarget(t);if(e&&this.options.showTooltips&&this.options.tooltip.followMouse&&this.popup&&!this.popup.hidden){var i=this.body.dom.centerContainer;this.popup.setPosition(t.clientX-l.getAbsoluteLeft(i)+i.offsetLeft,t.clientY-l.getAbsoluteTop(i)+i.offsetTop),this.popup.show()}},n.prototype._onMouseWheel=function(t){this.touchParams.itemIsDragging&&this._onDragEnd(t)},n.prototype._onUpdateItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this;if(t){var i=e.itemsData.get(t.id);this.options.onUpdate(i,function(t){t&&e.itemsData.getDataSet().update(t)})}}},n.prototype._onAddItem=function(t){if(this.options.selectable&&this.options.editable.add){var e=this,i=this.options.snap||null,o=this.itemFromTarget(t);if(!o){if(this.options.rtl)var n=l.getAbsoluteRight(this.dom.frame),s=n-t.center.x;else var n=l.getAbsoluteLeft(this.dom.frame),s=t.center.x-n;var r,a=this.body.util.toTime(s),h=this.body.util.getScale(),d=this.body.util.getStep();if("drop"==t.type){if(r=JSON.parse(t.dataTransfer.getData("text")),r.content=r.content?r.content:"new item",r.start=r.start?r.start:i?i(a,h,d):a,r.type=r.type||"box",r[this.itemsData._fieldId]=r.id||l.randomUUID(),"range"==r.type&&!r.end){var u=this.body.util.toTime(s+this.props.width/5);r.end=i?i(u,h,d):u}}else if(r={start:i?i(a,h,d):a,content:"new item"},r[this.itemsData._fieldId]=l.randomUUID(),"range"===this.options.type){var u=this.body.util.toTime(s+this.props.width/5);r.end=i?i(u,h,d):u}var p=this.groupFromTarget(t);p&&(r.group=p.groupId),r=this._cloneItemData(r),this.options.onAdd(r,function(i){i&&(e.itemsData.getDataSet().add(i),"drop"==t.type&&e.setSelection([i.id]))})}}},n.prototype._onMultiSelectItem=function(t){if(this.options.selectable){var e=this.itemFromTarget(t);if(e){var i=this.options.multiselect?this.getSelection():[],o=t.srcEvent&&t.srcEvent.shiftKey||!1;if(o&&this.options.multiselect){var s=this.itemsData.get(e.id).group,r=void 0;this.options.multiselectPerGroup&&i.length>0&&(r=this.itemsData.get(i[0]).group),this.options.multiselectPerGroup&&void 0!=r&&r!=s||i.push(e.id);var a=n._getItemRange(this.itemsData.get(i,this.itemOptions));if(!this.options.multiselectPerGroup||r==s){i=[];for(var h in this.items)if(this.items.hasOwnProperty(h)){var d=this.items[h],l=d.data.start,u=void 0!==d.data.end?d.data.end:l;!(l>=a.min&&u<=a.max)||this.options.multiselectPerGroup&&r!=this.itemsData.get(d.id).group||d instanceof _||i.push(d.id)}}}else{var p=i.indexOf(e.id);p==-1?i.push(e.id):i.splice(p,1)}this.setSelection(i),this.body.emitter.emit("select",{items:this.getSelection(),event:t})}}},n._getItemRange=function(t){var e=null,i=null;return t.forEach(function(t){(null==i||t.starte)&&(e=t.end):(null==e||t.start>e)&&(e=t.start)}),{min:i,max:e}},n.prototype.itemFromElement=function(t){for(var e=t;e;){if(e.hasOwnProperty("timeline-item"))return e["timeline-item"];e=e.parentNode}return null},n.prototype.itemFromTarget=function(t){return this.itemFromElement(t.target)},n.prototype.itemFromRelatedTarget=function(t){return this.itemFromElement(t.relatedTarget)},n.prototype.groupFromTarget=function(t){var e=t.center?t.center.y:t.clientY,i=this.groupIds;i.length<=0&&this.groupsData&&(i=this.groupsData.getIds({order:this.options.groupOrder}));for(var o=0;oa&&ea)return s}else if(0===o&&e0&&this.current.milliseconds()0&&this.current.seconds()0&&this.current.minutes()0&&this.current.hours()0?t.step:1,this.autoScale=!1)},o.prototype.setAutoScale=function(t){this.autoScale=t},o.prototype.setMinimumStep=function(t){if(void 0!=t){var e=31104e6,i=2592e6,o=864e5,n=36e5,s=6e4,r=1e3,a=1;1e3*e>t&&(this.scale="year",this.step=1e3),500*e>t&&(this.scale="year",this.step=500),100*e>t&&(this.scale="year",this.step=100),50*e>t&&(this.scale="year",this.step=50),10*e>t&&(this.scale="year",this.step=10),5*e>t&&(this.scale="year",this.step=5),e>t&&(this.scale="year",this.step=1),3*i>t&&(this.scale="month",this.step=3),i>t&&(this.scale="month",this.step=1),5*o>t&&(this.scale="day",this.step=5),2*o>t&&(this.scale="day",this.step=2),o>t&&(this.scale="day",this.step=1),o/2>t&&(this.scale="weekday",this.step=1),4*n>t&&(this.scale="hour",this.step=4),n>t&&(this.scale="hour",this.step=1),15*s>t&&(this.scale="minute",this.step=15),10*s>t&&(this.scale="minute",this.step=10),5*s>t&&(this.scale="minute",this.step=5),s>t&&(this.scale="minute",this.step=1),15*r>t&&(this.scale="second",this.step=15),10*r>t&&(this.scale="second",this.step=10),5*r>t&&(this.scale="second",this.step=5),r>t&&(this.scale="second",this.step=1),200*a>t&&(this.scale="millisecond",this.step=200),100*a>t&&(this.scale="millisecond",this.step=100),50*a>t&&(this.scale="millisecond",this.step=50),10*a>t&&(this.scale="millisecond",this.step=10),5*a>t&&(this.scale="millisecond",this.step=5),a>t&&(this.scale="millisecond",this.step=1)}},o.snap=function(t,e,i){var o=n(t);if("year"==e){var s=o.year()+Math.round(o.month()/12);o.year(Math.round(s/i)*i),o.month(0),o.date(0),o.hours(0),o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("month"==e)o.date()>15?(o.date(1),o.add(1,"month")):o.date(1),o.hours(0),o.minutes(0),o.seconds(0),o.milliseconds(0);else if("week"==e)o.weekday()>2?(o.weekday(0),o.add(1,"week")):o.weekday(0),o.hours(0),o.minutes(0),o.seconds(0),o.milliseconds(0);else if("day"==e){switch(i){case 5:case 2:o.hours(24*Math.round(o.hours()/24));break;default:o.hours(12*Math.round(o.hours()/12))}o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("weekday"==e){switch(i){case 5:case 2:o.hours(12*Math.round(o.hours()/12));break;default:o.hours(6*Math.round(o.hours()/6))}o.minutes(0),o.seconds(0),o.milliseconds(0)}else if("hour"==e){switch(i){case 4:o.minutes(60*Math.round(o.minutes()/60));break;default:o.minutes(30*Math.round(o.minutes()/30))}o.seconds(0),o.milliseconds(0)}else if("minute"==e){switch(i){case 15:case 10:o.minutes(5*Math.round(o.minutes()/5)),o.seconds(0);break;case 5:o.seconds(60*Math.round(o.seconds()/60));break;default:o.seconds(30*Math.round(o.seconds()/30))}o.milliseconds(0)}else if("second"==e)switch(i){case 15:case 10:o.seconds(5*Math.round(o.seconds()/5)),o.milliseconds(0);break;case 5:o.milliseconds(1e3*Math.round(o.milliseconds()/1e3));break;default:o.milliseconds(500*Math.round(o.milliseconds()/500))}else if("millisecond"==e){var r=i>5?i/2:1;o.milliseconds(Math.round(o.milliseconds()/r)*r)}return o},o.prototype.isMajor=function(){if(1==this.switchedYear)switch(this.scale){case"year":case"month":case"week":case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedMonth)switch(this.scale){case"week":case"weekday":case"day":case"hour":case"minute":case"second":case"millisecond":return!0;default:return!1}else if(1==this.switchedDay)switch(this.scale){case"millisecond":case"second":case"minute":case"hour":return!0;default:return!1}var t=this.moment(this.current);switch(this.scale){case"millisecond":return 0==t.milliseconds();case"second":return 0==t.seconds();case"minute":return 0==t.hours()&&0==t.minutes();case"hour":return 0==t.hours();case"weekday":case"day":return 1==t.date();case"week":return 1==t.date();case"month":return 0==t.month();case"year":return!1;default:return!1}},o.prototype.getLabelMinor=function(t){if(void 0==t&&(t=this.current),t instanceof Date&&(t=this.moment(t)),"function"==typeof this.format.minorLabels)return this.format.minorLabels(t,this.scale,this.step);var e=this.format.minorLabels[this.scale];switch(this.scale){case"week":if(this.isMajor()&&0!==t.weekday())return"";default:return e&&e.length>0?this.moment(t).format(e):""}},o.prototype.getLabelMajor=function(t){if(void 0==t&&(t=this.current),t instanceof Date&&(t=this.moment(t)),"function"==typeof this.format.majorLabels)return this.format.majorLabels(t,this.scale,this.step);var e=this.format.majorLabels[this.scale];return e&&e.length>0?this.moment(t).format(e):""},o.prototype.getClassName=function(){function t(t){return t/h%2==0?" vis-even":" vis-odd"}function e(t){return t.isSame(new Date,"day")?" vis-today":t.isSame(s().add(1,"day"),"day")?" vis-tomorrow":t.isSame(s().add(-1,"day"),"day")?" vis-yesterday":""}function i(t){return t.isSame(new Date,"week")?" vis-current-week":""}function o(t){return t.isSame(new Date,"month")?" vis-current-month":""}function n(t){return t.isSame(new Date,"year")?" vis-current-year":""}var s=this.moment,r=this.moment(this.current),a=r.locale?r.locale("en"):r.lang("en"),h=this.step,d=[];switch(this.scale){case"millisecond": -d.push(e(a)),d.push(t(a.milliseconds()));break;case"second":d.push(e(a)),d.push(t(a.seconds()));break;case"minute":d.push(e(a)),d.push(t(a.minutes()));break;case"hour":d.push("vis-h"+a.hours()+this.step==4?"-h"+(a.hours()+4):""),d.push(e(a)),d.push(t(a.hours()));break;case"weekday":d.push("vis-"+a.format("dddd").toLowerCase()),d.push(e(a)),d.push(i(a)),d.push(t(a.date()));break;case"day":d.push("vis-day"+a.date()),d.push("vis-"+a.format("MMMM").toLowerCase()),d.push(e(a)),d.push(o(a)),d.push(this.step<=2?e(a):""),d.push(this.step<=2?"vis-"+a.format("dddd").toLowerCase():""),d.push(t(a.date()-1));break;case"week":d.push("vis-week"+a.format("w")),d.push(i(a)),d.push(t(a.week()));break;case"month":d.push("vis-"+a.format("MMMM").toLowerCase()),d.push(o(a)),d.push(t(a.month()));break;case"year":d.push("vis-year"+a.year()),d.push(n(a)),d.push(t(a.year()))}return d.filter(String).join(" ")},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}function n(t,e,i){this.groupId=t,this.subgroups={},this.subgroupIndex=0,this.subgroupOrderer=e&&e.subgroupOrder,this.itemSet=i,this.isVisible=null,this.stackDirty=!0,e&&e.nestedGroups&&(this.nestedGroups=e.nestedGroups,0==e.showNested?this.showNested=!1:this.showNested=!0),this.nestedInGroup=null,this.dom={},this.props={label:{width:0,height:0}},this.className=null,this.items={},this.visibleItems=[],this.itemsInRange=[],this.orderedItems={byStart:[],byEnd:[]},this.checkRangedItems=!1;var o=this;this.itemSet.body.emitter.on("checkRangedItems",function(){o.checkRangedItems=!0}),this._create(),this.setData(e)}var s=i(58),r=o(s),a=i(1),h=i(106);i(107);n.prototype._create=function(){var t=document.createElement("div");this.itemSet.options.groupEditable.order?t.className="vis-label draggable":t.className="vis-label",this.dom.label=t;var e=document.createElement("div");e.className="vis-inner",t.appendChild(e),this.dom.inner=e;var i=document.createElement("div");i.className="vis-group",i["timeline-group"]=this,this.dom.foreground=i,this.dom.background=document.createElement("div"),this.dom.background.className="vis-group",this.dom.axis=document.createElement("div"),this.dom.axis.className="vis-group",this.dom.marker=document.createElement("div"),this.dom.marker.style.visibility="hidden",this.dom.marker.style.position="absolute",this.dom.marker.innerHTML="",this.dom.background.appendChild(this.dom.marker)},n.prototype.setData=function(t){var e,i;if(this.itemSet.options&&this.itemSet.options.groupTemplate?(i=this.itemSet.options.groupTemplate.bind(this),e=i(t,this.dom.inner)):e=t&&t.content,e instanceof Element){for(this.dom.inner.appendChild(e);this.dom.inner.firstChild;)this.dom.inner.removeChild(this.dom.inner.firstChild);this.dom.inner.appendChild(e)}else e instanceof Object?i(t,this.dom.inner):void 0!==e&&null!==e?this.dom.inner.innerHTML=e:this.dom.inner.innerHTML=this.groupId||"";if(this.dom.label.title=t&&t.title||"",this.dom.inner.firstChild?a.removeClassName(this.dom.inner,"vis-hidden"):a.addClassName(this.dom.inner,"vis-hidden"),t&&t.nestedGroups){this.nestedGroups&&this.nestedGroups==t.nestedGroups||(this.nestedGroups=t.nestedGroups),void 0===t.showNested&&void 0!==this.showNested||(0==t.showNested?this.showNested=!1:this.showNested=!0),a.addClassName(this.dom.label,"vis-nesting-group");var o=this.itemSet.options.rtl?"collapsed-rtl":"collapsed";this.showNested?(a.removeClassName(this.dom.label,o),a.addClassName(this.dom.label,"expanded")):(a.removeClassName(this.dom.label,"expanded"),a.addClassName(this.dom.label,o))}else if(this.nestedGroups){this.nestedGroups=null;var o=this.itemSet.options.rtl?"collapsed-rtl":"collapsed";a.removeClassName(this.dom.label,o),a.removeClassName(this.dom.label,"expanded"),a.removeClassName(this.dom.label,"vis-nesting-group")}t&&t.nestedInGroup&&(a.addClassName(this.dom.label,"vis-nested-group"),this.itemSet.options&&this.itemSet.options.rtl?this.dom.inner.style.paddingRight="30px":this.dom.inner.style.paddingLeft="30px");var n=t&&t.className||null;n!=this.className&&(this.className&&(a.removeClassName(this.dom.label,this.className),a.removeClassName(this.dom.foreground,this.className),a.removeClassName(this.dom.background,this.className),a.removeClassName(this.dom.axis,this.className)),a.addClassName(this.dom.label,n),a.addClassName(this.dom.foreground,n),a.addClassName(this.dom.background,n),a.addClassName(this.dom.axis,n),this.className=n),this.style&&(a.removeCssText(this.dom.label,this.style),this.style=null),t&&t.style&&(a.addCssText(this.dom.label,t.style),this.style=t.style)},n.prototype.getLabelWidth=function(){return this.props.label.width},n.prototype.redraw=function(t,e,i){var o=!1,n=this.dom.marker.clientHeight;n!=this.lastMarkerHeight&&(this.lastMarkerHeight=n,a.forEach(this.items,function(t){t.dirty=!0,t.displayed&&t.redraw()}),i=!0),this._calculateSubGroupHeights(e);var s=this.dom.foreground;this.top=s.offsetTop,this.right=s.offsetLeft,this.width=s.offsetWidth;var r=this.isVisible;this.isVisible=this._isGroupVisible(t,e);var d=i||this.stackDirty||this.isVisible&&!r;if(d){if("function"==typeof this.itemSet.options.order){var l=this,u=!1;a.forEach(this.items,function(t){t.displayed||(t.redraw(),l.visibleItems.push(t)),t.repositionX(u)});var p=this.orderedItems.byStart.slice().sort(function(t,e){return l.itemSet.options.order(t.data,e.data)});h.stack(p,e,!0),this.visibleItems=this._updateItemsInRange(this.orderedItems,this.visibleItems,t)}else this.visibleItems=this._updateItemsInRange(this.orderedItems,this.visibleItems,t),this.itemSet.options.stack?h.stack(this.visibleItems,e,!0):h.nostack(this.visibleItems,e,this.subgroups,this.itemSet.options.stackSubgroups);this.stackDirty=!1}this._updateSubgroupsSizes();var c=this._calculateHeight(e),s=this.dom.foreground;this.top=s.offsetTop,this.right=s.offsetLeft,this.width=s.offsetWidth,o=a.updateProperty(this,"height",c)||o,o=a.updateProperty(this.props.label,"width",this.dom.inner.clientWidth)||o,o=a.updateProperty(this.props.label,"height",this.dom.inner.clientHeight)||o,this.dom.background.style.height=c+"px",this.dom.foreground.style.height=c+"px",this.dom.label.style.height=c+"px";for(var f=0,m=this.visibleItems.length;f0){var e=this;this.resetSubgroups(),a.forEach(this.visibleItems,function(i){void 0!==i.data.subgroup&&(e.subgroups[i.data.subgroup].height=Math.max(e.subgroups[i.data.subgroup].height,i.height+t.item.vertical),e.subgroups[i.data.subgroup].visible=!0)})}},n.prototype._isGroupVisible=function(t,e){var i=this.top<=t.body.domProps.centerContainer.height-t.body.domProps.scrollTop+e.axis&&this.top+this.height+e.axis>=-t.body.domProps.scrollTop;return i},n.prototype._calculateHeight=function(t){var e,i=this.visibleItems;if(i.length>0){var o=i[0].top,n=i[0].top+i[0].height;if(a.forEach(i,function(t){o=Math.min(o,t.top),n=Math.max(n,t.top+t.height)}),o>t.axis){var s=o-t.axis;n-=s,a.forEach(i,function(t){t.top-=s})}e=n+t.item.vertical/2}else e=0;return e=Math.max(e,this.props.label.height)},n.prototype.show=function(){this.dom.label.parentNode||this.itemSet.dom.labelSet.appendChild(this.dom.label),this.dom.foreground.parentNode||this.itemSet.dom.foreground.appendChild(this.dom.foreground),this.dom.background.parentNode||this.itemSet.dom.background.appendChild(this.dom.background),this.dom.axis.parentNode||this.itemSet.dom.axis.appendChild(this.dom.axis)},n.prototype.hide=function(){var t=this.dom.label;t.parentNode&&t.parentNode.removeChild(t);var e=this.dom.foreground;e.parentNode&&e.parentNode.removeChild(e);var i=this.dom.background;i.parentNode&&i.parentNode.removeChild(i);var o=this.dom.axis;o.parentNode&&o.parentNode.removeChild(o)},n.prototype.add=function(t){if(this.items[t.id]=t,t.setParent(this),this.stackDirty=!0,void 0!==t.data.subgroup&&(this._addToSubgroup(t),this.orderSubgroups()),this.visibleItems.indexOf(t)==-1){var e=this.itemSet.body.range;this._checkIfVisible(t,this.visibleItems,e)}},n.prototype._addToSubgroup=function(t,e){e=e||t.data.subgroup,void 0!=e&&void 0===this.subgroups[e]&&(this.subgroups[e]={height:0,top:0,start:t.data.start,end:t.data.end,visible:!1,index:this.subgroupIndex,items:[]},this.subgroupIndex++),new Date(t.data.start)new Date(this.subgroups[e].end)&&(this.subgroups[e].end=t.data.end),this.subgroups[e].items.push(t)},n.prototype._updateSubgroupsSizes=function(){var t=this;if(t.subgroups)for(var e in t.subgroups){var i=t.subgroups[e].items[0].data.start,o=t.subgroups[e].items[0].data.end;t.subgroups[e].items.forEach(function(t){new Date(t.data.start)new Date(o)&&(o=t.data.end)}),t.subgroups[e].start=i,t.subgroups[e].end=o}},n.prototype.orderSubgroups=function(){if(void 0!==this.subgroupOrderer){var t=[];if("string"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push({subgroup:e,sortField:this.subgroups[e].items[0].data[this.subgroupOrderer]});t.sort(function(t,e){return t.sortField-e.sortField})}else if("function"==typeof this.subgroupOrderer){for(var e in this.subgroups)t.push(this.subgroups[e].items[0].data);t.sort(this.subgroupOrderer)}if(t.length>0)for(var i=0;i=0&&(i.items.splice(o,1),i.items.length?this._updateSubgroupsSizes():delete this.subgroups[e])}}},n.prototype.removeFromDataSet=function(t){this.itemSet.removeItem(t.id)},n.prototype.order=function(){for(var t=a.toArray(this.items),e=[],i=[],o=0;o0)for(var l=0;lh}),1==this.checkRangedItems)for(this.checkRangedItems=!1,l=0;lh})}for(var l=0;l=0;s--){var r=e[s];if(n(r))break;void 0===o[r.id]&&(o[r.id]=!0,i.push(r))}for(var s=t+1;so[r].index&&e.collisionByTimes(o[n],o[r])){s=o[r];break}null!=s&&(o[n].top=s.top+s.height)}while(s)}for(var a=0;ae.right&&t.top-o.vertical+ie.top:t.left-o.horizontal+ie.left&&t.top-o.vertical+ie.top},e.collisionByTimes=function(t,e){return t.start<=e.start&&t.end>=e.start&&t.tope.top||e.start<=t.start&&e.end>=t.start&&e.topt.top}},function(t,e,i){function o(t,e,i){if(this.props={content:{width:0}},this.overflow=!1,this.options=i,t){if(void 0==t.start)throw new Error('Property "start" missing in item '+t.id);if(void 0==t.end)throw new Error('Property "end" missing in item '+t.id)}n.call(this,t,e,i)}var n=(i(95),i(108));o.prototype=new n(null,null,null),o.prototype.baseClassName="vis-item vis-range",o.prototype.isVisible=function(t){return this.data.startt.start},o.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.frame=document.createElement("div"),t.frame.className="vis-item-overflow",t.box.appendChild(t.frame),t.visibleFrame=document.createElement("div"),t.visibleFrame.className="vis-item-visible-frame",t.box.appendChild(t.visibleFrame),t.content=document.createElement("div"),t.content.className="vis-item-content",t.frame.appendChild(t.content),t.box["timeline-item"]=this,this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.foreground;if(!e)throw new Error("Cannot redraw item: parent has no foreground container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateDataAttributes(this.dom.box),this._updateStyle(this.dom.box);var i=this.editable.updateTime||this.editable.updateGroup,o=(this.data.className?" "+this.data.className:"")+(this.selected?" vis-selected":"")+(i?" vis-editable":" vis-readonly");t.box.className=this.baseClassName+o,this.overflow="hidden"!==window.getComputedStyle(t.frame).overflow,this.dom.content.style.maxWidth="none",this.props.content.width=this.dom.content.offsetWidth,this.height=this.dom.box.offsetHeight,this.dom.content.style.maxWidth="",this.dirty=!1}this._repaintOnItemUpdateTimeTooltip(t.box),this._repaintDeleteButton(t.box),this._repaintDragCenter(),this._repaintDragLeft(),this._repaintDragRight()},o.prototype.show=function(){this.displayed||this.redraw()},o.prototype.hide=function(){if(this.displayed){var t=this.dom.box;t.parentNode&&t.parentNode.removeChild(t),this.displayed=!1}},o.prototype.repositionX=function(t){var e,i,o=this.parent.width,n=this.conversion.toScreen(this.data.start),s=this.conversion.toScreen(this.data.end);void 0!==t&&t!==!0||(n<-o&&(n=-o),s>2*o&&(s=2*o));var r=Math.max(s-n+.5,1);switch(this.overflow?(this.options.rtl?this.right=n:this.left=n,this.width=r+this.props.content.width,i=this.props.content.width):(this.options.rtl?this.right=n:this.left=n,this.width=r,i=Math.min(s-n,this.props.content.width)),this.options.rtl?this.dom.box.style.right=this.right+"px":this.dom.box.style.left=this.left+"px",this.dom.box.style.width=r+"px",this.options.align){case"left":this.options.rtl?this.dom.content.style.right="0":this.dom.content.style.left="0";break;case"right":this.options.rtl?this.dom.content.style.right=Math.max(r-i,0)+"px":this.dom.content.style.left=Math.max(r-i,0)+"px";break;case"center":this.options.rtl?this.dom.content.style.right=Math.max((r-i)/2,0)+"px":this.dom.content.style.left=Math.max((r-i)/2,0)+"px";break;default:e=this.overflow?s>0?Math.max(-n,0):-i:n<0?-n:0,this.options.rtl?this.dom.content.style.right=e+"px":(this.dom.content.style.left=e+"px",this.dom.content.style.width="calc(100% - "+e+"px)")}},o.prototype.repositionY=function(){var t=this.options.orientation.item,e=this.dom.box;"top"==t?e.style.top=this.top+"px":e.style.top=this.parent.height-this.top-this.height+"px"},o.prototype._repaintDragLeft=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragLeft){var t=document.createElement("div");t.className="vis-drag-left",t.dragLeftItem=this,this.dom.box.appendChild(t),this.dom.dragLeft=t}else!this.selected&&this.dom.dragLeft&&(this.dom.dragLeft.parentNode&&this.dom.dragLeft.parentNode.removeChild(this.dom.dragLeft),this.dom.dragLeft=null)},o.prototype._repaintDragRight=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragRight){var t=document.createElement("div");t.className="vis-drag-right",t.dragRightItem=this,this.dom.box.appendChild(t),this.dom.dragRight=t}else!this.selected&&this.dom.dragRight&&(this.dom.dragRight.parentNode&&this.dom.dragRight.parentNode.removeChild(this.dom.dragRight),this.dom.dragRight=null)},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}function n(t,e,i){this.id=null,this.parent=null,this.data=t,this.dom=null,this.conversion=e||{},this.options=i||{},this.selected=!1,this.displayed=!1,this.groupShowing=!0,this.dirty=!0,this.top=null,this.right=null,this.left=null,this.width=null,this.height=null,this.editable=null,this._updateEditStatus()}var s=i(62),r=o(s),a=i(58),h=o(a),d=i(95),l=i(1),u=i(82);n.prototype.stack=!0,n.prototype.select=function(){this.selected=!0,this.dirty=!0,this.displayed&&this.redraw()},n.prototype.unselect=function(){this.selected=!1,this.dirty=!0,this.displayed&&this.redraw()},n.prototype.setData=function(t){var e=void 0!=t.group&&this.data.group!=t.group;e&&null!=this.parent&&this.parent.itemSet._moveToGroup(this,t.group),this.parent.stackDirty=!0;var i=void 0!=t.subgroup&&this.data.subgroup!=t.subgroup;i&&null!=this.parent&&this.parent.changeSubgroup(this,this.data.subgroup,t.subgroup),this.data=t,this._updateEditStatus(),this.dirty=!0,this.displayed&&this.redraw()},n.prototype.setParent=function(t){this.displayed?(this.hide(),this.parent=t,this.parent&&this.show()):this.parent=t},n.prototype.isVisible=function(t){return!1},n.prototype.show=function(){return!1},n.prototype.hide=function(){return!1},n.prototype.redraw=function(){},n.prototype.repositionX=function(){},n.prototype.repositionY=function(){},n.prototype._repaintDragCenter=function(){if(this.selected&&this.options.editable.updateTime&&!this.dom.dragCenter){var t=this,e=document.createElement("div");e.className="vis-drag-center",e.dragCenterItem=this;var i=new d(e);i.on("tap",function(e){t.parent.itemSet.body.emitter.emit("click",{event:e,item:t.id})}),i.on("doubletap",function(e){e.stopPropagation(),t.parent.itemSet._onUpdateItem(t),t.parent.itemSet.body.emitter.emit("doubleClick",{event:e,item:t.id})}),this.dom.box?this.dom.box.appendChild(e):this.dom.point&&this.dom.point.appendChild(e),this.dom.dragCenter=e}else!this.selected&&this.dom.dragCenter&&(this.dom.dragCenter.parentNode&&this.dom.dragCenter.parentNode.removeChild(this.dom.dragCenter),this.dom.dragCenter=null)},n.prototype._repaintDeleteButton=function(t){var e=(this.options.editable.overrideItems||null==this.editable)&&this.options.editable.remove||!this.options.editable.overrideItems&&null!=this.editable&&this.editable.remove;if(this.selected&&e&&!this.dom.deleteButton){var i=this,o=document.createElement("div");this.options.rtl?o.className="vis-delete-rtl":o.className="vis-delete",o.title="Delete this item",new d(o).on("tap",function(t){t.stopPropagation(),i.parent.removeFromDataSet(i)}),t.appendChild(o),this.dom.deleteButton=o}else!this.selected&&this.dom.deleteButton&&(this.dom.deleteButton.parentNode&&this.dom.deleteButton.parentNode.removeChild(this.dom.deleteButton),this.dom.deleteButton=null)},n.prototype._repaintOnItemUpdateTimeTooltip=function(t){if(this.options.tooltipOnItemUpdateTime){var e=(this.options.editable.updateTime||this.data.editable===!0)&&this.data.editable!==!1;if(this.selected&&e&&!this.dom.onItemUpdateTimeTooltip){var i=document.createElement("div");i.className="vis-onUpdateTime-tooltip",t.appendChild(i),this.dom.onItemUpdateTimeTooltip=i}else!this.selected&&this.dom.onItemUpdateTimeTooltip&&(this.dom.onItemUpdateTimeTooltip.parentNode&&this.dom.onItemUpdateTimeTooltip.parentNode.removeChild(this.dom.onItemUpdateTimeTooltip),this.dom.onItemUpdateTimeTooltip=null);if(this.dom.onItemUpdateTimeTooltip){this.dom.onItemUpdateTimeTooltip.style.visibility=this.parent.itemSet.touchParams.itemIsDragging?"visible":"hidden",this.options.rtl?this.dom.onItemUpdateTimeTooltip.style.right=this.dom.content.style.right:this.dom.onItemUpdateTimeTooltip.style.left=this.dom.content.style.left;var o,n=50,s=this.parent.itemSet.body.domProps.scrollTop;o="top"==this.options.orientation.item?this.top:this.parent.height-this.top-this.height;var r=o+this.parent.top-n<-s;r?(this.dom.onItemUpdateTimeTooltip.style.bottom="",this.dom.onItemUpdateTimeTooltip.style.top=this.height+2+"px"):(this.dom.onItemUpdateTimeTooltip.style.top="",this.dom.onItemUpdateTimeTooltip.style.bottom=this.height+2+"px");var a,h;this.options.tooltipOnItemUpdateTime&&this.options.tooltipOnItemUpdateTime.template?(h=this.options.tooltipOnItemUpdateTime.template.bind(this),a=h(this.data)):(a="start: "+u(this.data.start).format("MM/DD/YYYY hh:mm"),this.data.end&&(a+="
end: "+u(this.data.end).format("MM/DD/YYYY hh:mm"))),this.dom.onItemUpdateTimeTooltip.innerHTML=a}}},n.prototype._updateContents=function(t){var e,i,o,n,s=this.parent.itemSet.itemsData.get(this.id),r=this.dom.box||this.dom.point,a=r.getElementsByClassName("vis-item-visible-frame")[0];if(this.options.visibleFrameTemplate?(n=this.options.visibleFrameTemplate.bind(this),o=n(s,r)):o="",a)if(o instanceof Object&&!(o instanceof Element))n(s,a);else{var h=this._contentToString(this.itemVisibleFrameContent)!==this._contentToString(o);if(h){if(o instanceof Element)a.innerHTML="",a.appendChild(o);else if(void 0!=o)a.innerHTML=o;else if("background"!=this.data.type||void 0!==this.data.content)throw new Error('Property "content" missing in item '+this.id);this.itemVisibleFrameContent=o}}if(this.options.template?(i=this.options.template.bind(this),e=i(s,t,this.data)):e=this.data.content,e instanceof Object&&!(e instanceof Element))i(s,t);else{var h=this._contentToString(this.content)!==this._contentToString(e);if(h){if(e instanceof Element)t.innerHTML="",t.appendChild(e);else if(void 0!=e)t.innerHTML=e;else if("background"!=this.data.type||void 0!==this.data.content)throw new Error('Property "content" missing in item '+this.id);this.content=e}}},n.prototype._updateDataAttributes=function(t){if(this.options.dataAttributes&&this.options.dataAttributes.length>0){var e=[];if(Array.isArray(this.options.dataAttributes))e=this.options.dataAttributes;else{if("all"!=this.options.dataAttributes)return;e=(0,h.default)(this.data)}for(var i=0;it.start&&this.data.start.getTime()-ot.start&&this.data.start.getTime()t.start&&this.data.start.getTime()-o/2t.start&&this.data.startt.start},o.prototype.redraw=function(){var t=this.dom;if(t||(this.dom={},t=this.dom,t.box=document.createElement("div"),t.frame=document.createElement("div"),t.frame.className="vis-item-overflow",t.box.appendChild(t.frame),t.content=document.createElement("div"),t.content.className="vis-item-content",t.frame.appendChild(t.content),this.dirty=!0),!this.parent)throw new Error("Cannot redraw item: no parent attached");if(!t.box.parentNode){var e=this.parent.dom.background;if(!e)throw new Error("Cannot redraw item: parent has no background container element");e.appendChild(t.box)}if(this.displayed=!0,this.dirty){this._updateContents(this.dom.content),this._updateDataAttributes(this.dom.content),this._updateStyle(this.dom.box);var i=(this.data.className?" "+this.data.className:"")+(this.selected?" vis-selected":"");t.box.className=this.baseClassName+i,this.overflow="hidden"!==window.getComputedStyle(t.content).overflow,this.props.content.width=this.dom.content.offsetWidth,this.height=0,this.dirty=!1}},o.prototype.show=r.prototype.show,o.prototype.hide=r.prototype.hide,o.prototype.repositionX=r.prototype.repositionX,o.prototype.repositionY=function(t){var e,i=this.options.orientation.item;if(void 0!==this.data.subgroup){var o=this.data.subgroup,n=this.parent.subgroups;n[o].index;this.dom.box.style.height=this.parent.subgroups[o].height+"px","top"==i?this.dom.box.style.top=this.parent.top+this.parent.subgroups[o].top+"px":this.dom.box.style.top=this.parent.top+this.parent.height-this.parent.subgroups[o].top-this.parent.subgroups[o].height+"px",this.dom.box.style.bottom=""}else this.parent instanceof s?(e=Math.max(this.parent.height,this.parent.itemSet.body.domProps.center.height,this.parent.itemSet.body.domProps.centerContainer.height),this.dom.box.style.bottom="bottom"==i?"0":"",this.dom.box.style.top="top"==i?"0":""):(e=this.parent.height,this.dom.box.style.top=this.parent.top+"px",this.dom.box.style.bottom="");this.dom.box.style.height=e+"px"},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var n=i(114),s=o(n),r=i(115),a=o(r),h=function(){function t(e,i){(0,s.default)(this,t),this.container=e,this.overflowMethod=i||"cap",this.x=0,this.y=0,this.padding=5,this.hidden=!1,this.frame=document.createElement("div"),this.frame.className="vis-tooltip",this.container.appendChild(this.frame)}return(0,a.default)(t,[{key:"setPosition",value:function(t,e){this.x=parseInt(t),this.y=parseInt(e)}},{key:"setText",value:function(t){t instanceof Element?(this.frame.innerHTML="",this.frame.appendChild(t)):this.frame.innerHTML=t}},{key:"show",value:function(t){if(void 0===t&&(t=!0),t===!0){var e=this.frame.clientHeight,i=this.frame.clientWidth,o=this.frame.parentNode.clientHeight,n=this.frame.parentNode.clientWidth,s=0,r=0;if("flip"==this.overflowMethod){var a=!1,h=!0;this.y-en-this.padding&&(a=!0),s=a?this.x-i:this.x,r=h?this.y-e:this.y}else r=this.y-e,r+e+this.padding>o&&(r=o-e-this.padding),rn&&(s=n-i-this.padding),s=.4*y}if(this.options.showMinorLabels&&v){var T=this._repaintMinorText(c,_,t,w);T.style.width=x+"px"}m&&this.options.showMajorLabels?(c>0&&(void 0==D&&(D=c),T=this._repaintMajorText(c,s.getLabelMajor(),t,w)),b=this._repaintMajorLine(c,x,t,w)):v?b=this._repaintMinorLine(c,x,t,w):b&&(b.style.width=parseInt(b.style.width)+x+"px")}if(S!==k||p||(console.warn("Something is wrong with the Timeline scale. Limited drawing of grid lines to "+k+" lines."),p=!0),this.options.showMajorLabels){var C=this.body.util.toTime(0),M=s.getLabelMajor(C),O=M.length*(this.props.majorCharWidth||10)+10;(void 0==D||O1e3&&(o=1e3),e.redraw(),e.body.emitter.emit("currentTimeTick"),e.currentTimeTimer=setTimeout(t,o)}var e=this;t()},o.prototype.stop=function(){void 0!==this.currentTimeTimer&&(clearTimeout(this.currentTimeTimer),delete this.currentTimeTimer)},o.prototype.setCurrentTime=function(t){var e=n.convert(t,"Date").valueOf(),i=(new Date).valueOf();this.offset=e-i,this.redraw()},o.prototype.getCurrentTime=function(){return new Date((new Date).valueOf()+this.offset)},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0}),e.printStyle=void 0;var n=i(89),s=o(n),r=i(62),a=o(r),h=i(58),d=o(h),l=i(114),u=o(l),p=i(115),c=o(p),f=i(1),m=!1,g=void 0,v="background: #FFeeee; color: #dd0000",y=function(){function t(){(0,u.default)(this,t)}return(0,c.default)(t,null,[{key:"validate",value:function(e,i,o){m=!1,g=i;var n=i;return void 0!==o&&(n=i[o]),t.parse(e,n,[]),m}},{key:"parse",value:function(e,i,o){for(var n in e)e.hasOwnProperty(n)&&t.check(n,e,i,o)}},{key:"check",value:function(e,i,o,n){void 0===o[e]&&void 0===o.__any__?t.getSuggestion(e,o,n):void 0===o[e]&&void 0!==o.__any__?"object"===t.getType(i[e])&&void 0!==o.__any__.__type__?t.checkFields(e,i,o,"__any__",o.__any__.__type__,n):t.checkFields(e,i,o,"__any__",o.__any__,n):void 0!==o[e].__type__?t.checkFields(e,i,o,e,o[e].__type__,n):t.checkFields(e,i,o,e,o[e],n)}},{key:"checkFields",value:function(e,i,o,n,s,r){var a=t.getType(i[e]),h=s[a];void 0!==h?"array"===t.getType(h)&&h.indexOf(i[e])===-1?(console.log('%cInvalid option detected in "'+e+'". Allowed values are:'+t.print(h)+' not "'+i[e]+'". '+t.printLocation(r,e),v),m=!0):"object"===a&&"__any__"!==n&&(r=f.copyAndExtendArray(r,e),t.parse(i[e],o[n],r)):void 0===s.any&&(console.log('%cInvalid type received for "'+e+'". Expected: '+t.print((0,d.default)(s))+". Received ["+a+'] "'+i[e]+'"'+t.printLocation(r,e),v),m=!0)}},{key:"getType",value:function(t){var e="undefined"==typeof t?"undefined":(0,a.default)(t);return"object"===e?null===t?"null":t instanceof Boolean?"boolean":t instanceof Number?"number":t instanceof String?"string":Array.isArray(t)?"array":t instanceof Date?"date":void 0!==t.nodeType?"dom":t._isAMomentObject===!0?"moment":"object":"number"===e?"number":"boolean"===e?"boolean":"string"===e?"string":void 0===e?"undefined":e}},{key:"getSuggestion",value:function(e,i,o){var n=t.findInOptions(e,i,o,!1),s=t.findInOptions(e,g,[],!0),r=8,a=4;void 0!==n.indexMatch?console.log('%cUnknown option detected: "'+e+'" in '+t.printLocation(n.path,e,"")+'Perhaps it was incomplete? Did you mean: "'+n.indexMatch+'"?\n\n',v):s.distance<=a&&n.distance>s.distance?console.log('%cUnknown option detected: "'+e+'" in '+t.printLocation(n.path,e,"")+"Perhaps it was misplaced? Matching option found at: "+t.printLocation(s.path,s.closestMatch,""),v):n.distance<=r?console.log('%cUnknown option detected: "'+e+'". Did you mean "'+n.closestMatch+'"?'+t.printLocation(n.path,e),v):console.log('%cUnknown option detected: "'+e+'". Did you mean one of these: '+t.print((0,d.default)(i))+t.printLocation(o,e),v),m=!0}},{key:"findInOptions",value:function(e,i,o){var n=arguments.length>3&&void 0!==arguments[3]&&arguments[3],s=1e9,r="",a=[],h=e.toLowerCase(),d=void 0;for(var l in i){var u=void 0;if(void 0!==i[l].__type__&&n===!0){var p=t.findInOptions(e,i[l],f.copyAndExtendArray(o,l));s>p.distance&&(r=p.closestMatch,a=p.path,s=p.distance,d=p.indexMatch)}else l.toLowerCase().indexOf(h)!==-1&&(d=l),u=t.levenshteinDistance(e,l),s>u&&(r=l,a=f.copyArray(o),s=u)}return{closestMatch:r,path:a,distance:s,indexMatch:d}}},{key:"printLocation",value:function(t,e){for(var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Problem value found at: \n",o="\n\n"+i+"options = {\n",n=0;n3&&void 0!==arguments[3]?arguments[3]:1;(0,d.default)(this,t),this.parent=e,this.changedOptions=[],this.container=i,this.allowCreation=!1,this.options={},this.initialized=!1,this.popupCounter=0,this.defaultOptions={enabled:!1,filter:!0,container:void 0,showButton:!0},p.extend(this.options,this.defaultOptions),this.configureOptions=o,this.moduleOptions={},this.domElements=[],this.popupDiv={},this.popupLimit=5,this.popupHistory={},this.colorPicker=new c(n),this.wrapper=void 0}return(0,u.default)(t,[{key:"setOptions",value:function(t){if(void 0!==t){this.popupHistory={},this._removePopup();var e=!0;"string"==typeof t?this.options.filter=t:t instanceof Array?this.options.filter=t.join():"object"===("undefined"==typeof t?"undefined":(0,a.default)(t))?(void 0!==t.container&&(this.options.container=t.container),void 0!==t.filter&&(this.options.filter=t.filter),void 0!==t.showButton&&(this.options.showButton=t.showButton),void 0!==t.enabled&&(e=t.enabled)):"boolean"==typeof t?(this.options.filter=!0,e=t):"function"==typeof t&&(this.options.filter=t,e=!0),this.options.filter===!1&&(e=!1),this.options.enabled=e}this._clean()}},{key:"setModuleOptions",value:function(t){this.moduleOptions=t,this.options.enabled===!0&&(this._clean(),void 0!==this.options.container&&(this.container=this.options.container),this._create())}},{key:"_create",value:function(){var t=this;this._clean(),this.changedOptions=[];var e=this.options.filter,i=0,o=!1;for(var n in this.configureOptions)this.configureOptions.hasOwnProperty(n)&&(this.allowCreation=!1,o=!1,"function"==typeof e?(o=e(n,[]),o=o||this._handleObject(this.configureOptions[n],[n],!0)):e!==!0&&e.indexOf(n)===-1||(o=!0),o!==!1&&(this.allowCreation=!0,i>0&&this._makeItem([]),this._makeHeader(n),this._handleObject(this.configureOptions[n],[n])),i++);if(this.options.showButton===!0){var s=document.createElement("div");s.className="vis-configuration vis-config-button",s.innerHTML="generate options",s.onclick=function(){t._printOptions()},s.onmouseover=function(){s.className="vis-configuration vis-config-button hover"},s.onmouseout=function(){s.className="vis-configuration vis-config-button"},this.optionsContainer=document.createElement("div"),this.optionsContainer.className="vis-configuration vis-config-option-container",this.domElements.push(this.optionsContainer),this.domElements.push(s)}this._push()}},{key:"_push",value:function(){this.wrapper=document.createElement("div"),this.wrapper.className="vis-configuration-wrapper",this.container.appendChild(this.wrapper);for(var t=0;t1?i-1:0),n=1;n2&&void 0!==arguments[2]&&arguments[2],o=document.createElement("div");return o.className="vis-configuration vis-config-label vis-config-s"+e.length,i===!0?o.innerHTML=""+t+":":o.innerHTML=t+":",o}},{key:"_makeDropdown",value:function(t,e,i){var o=document.createElement("select");o.className="vis-configuration vis-config-select";var n=0;void 0!==e&&t.indexOf(e)!==-1&&(n=t.indexOf(e));for(var s=0;ss&&1!==s&&(a.max=Math.ceil(e*l),d=a.max,h="range increased"),a.value=e}else a.value=o;var u=document.createElement("input");u.className="vis-configuration vis-config-rangeinput",u.value=a.value;var p=this;a.onchange=function(){u.value=this.value,p._update(Number(this.value),i)},a.oninput=function(){u.value=this.value};var c=this._makeLabel(i[i.length-1],i),f=this._makeItem(i,c,a,u);""!==h&&this.popupHistory[f]!==d&&(this.popupHistory[f]=d,this._setupPopup(h,f))}},{key:"_setupPopup",value:function(t,e){var i=this;if(this.initialized===!0&&this.allowCreation===!0&&this.popupCounter1&&void 0!==arguments[1]?arguments[1]:[],i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],o=!1,n=this.options.filter,s=!1;for(var r in t)if(t.hasOwnProperty(r)){o=!0;var a=t[r],h=p.copyAndExtendArray(e,r);if("function"==typeof n&&(o=n(r,e),o===!1&&!(a instanceof Array)&&"string"!=typeof a&&"boolean"!=typeof a&&a instanceof Object&&(this.allowCreation=!1,o=this._handleObject(a,h,!0),this.allowCreation=i===!1)),o!==!1){s=!0;var d=this._getValue(h);if(a instanceof Array)this._handleArray(a,d,h);else if("string"==typeof a)this._makeTextInput(a,d,h);else if("boolean"==typeof a)this._makeCheckbox(a,d,h);else if(a instanceof Object){var l=!0;if(e.indexOf("physics")!==-1&&this.moduleOptions.physics.solver!==r&&(l=!1),l===!0)if(void 0!==a.enabled){var u=p.copyAndExtendArray(h,"enabled"),c=this._getValue(u);if(c===!0){var f=this._makeLabel(r,h,!0);this._makeItem(h,f),s=this._handleObject(a,h)||s}else this._makeCheckbox(a,c,h)}else{var m=this._makeLabel(r,h,!0);this._makeItem(h,m),s=this._handleObject(a,h)||s}}else console.error("dont know how to handle",a,r,h)}}return s}},{key:"_handleArray",value:function(t,e,i){"string"==typeof t[0]&&"color"===t[0]?(this._makeColorField(t,e,i),t[1]!==e&&this.changedOptions.push({path:i,value:e})):"string"==typeof t[0]?(this._makeDropdown(t,e,i),t[0]!==e&&this.changedOptions.push({path:i,value:e})):"number"==typeof t[0]&&(this._makeRange(t,e,i),t[0]!==e&&this.changedOptions.push({path:i,value:Number(e)}))}},{key:"_update",value:function(t,e){var i=this._constructOptions(t,e);this.parent.body&&this.parent.body.emitter&&this.parent.body.emitter.emit&&this.parent.body.emitter.emit("configChange",i),this.initialized=!0,this.parent.setOptions(i)}},{key:"_constructOptions",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=i;t="true"===t||t,t="false"!==t&&t;for(var n=0;nvar options = "+(0,s.default)(t,null,2)+""}},{key:"getOptions",value:function(){for(var t={},e=0;e0&&void 0!==arguments[0]?arguments[0]:1;(0,a.default)(this,t),this.pixelRatio=e,this.generated=!1,this.centerCoordinates={x:144.5,y:144.5},this.r=289*.49,this.color={r:255,g:255,b:255,a:1},this.hueCircle=void 0,this.initialColor={r:255,g:255,b:255,a:1},this.previousColor=void 0,this.applied=!1,this.updateCallback=function(){},this.closeCallback=function(){},this._create()}return(0,d.default)(t,[{key:"insertTo",value:function(t){void 0!==this.hammer&&(this.hammer.destroy(),this.hammer=void 0),this.container=t,this.container.appendChild(this.frame),this._bindHammer(),this._setSize()}},{key:"setUpdateCallback",value:function(t){if("function"!=typeof t)throw new Error("Function attempted to set as colorPicker update callback is not a function.");this.updateCallback=t}},{key:"setCloseCallback",value:function(t){if("function"!=typeof t)throw new Error("Function attempted to set as colorPicker closing callback is not a function.");this.closeCallback=t}},{key:"_isColorString",value:function(t){var e={black:"#000000",navy:"#000080",darkblue:"#00008B",mediumblue:"#0000CD",blue:"#0000FF",darkgreen:"#006400",green:"#008000",teal:"#008080",darkcyan:"#008B8B",deepskyblue:"#00BFFF",darkturquoise:"#00CED1",mediumspringgreen:"#00FA9A",lime:"#00FF00",springgreen:"#00FF7F",aqua:"#00FFFF",cyan:"#00FFFF",midnightblue:"#191970",dodgerblue:"#1E90FF",lightseagreen:"#20B2AA",forestgreen:"#228B22",seagreen:"#2E8B57",darkslategray:"#2F4F4F",limegreen:"#32CD32",mediumseagreen:"#3CB371",turquoise:"#40E0D0",royalblue:"#4169E1",steelblue:"#4682B4",darkslateblue:"#483D8B",mediumturquoise:"#48D1CC",indigo:"#4B0082",darkolivegreen:"#556B2F",cadetblue:"#5F9EA0",cornflowerblue:"#6495ED",mediumaquamarine:"#66CDAA",dimgray:"#696969",slateblue:"#6A5ACD",olivedrab:"#6B8E23",slategray:"#708090",lightslategray:"#778899",mediumslateblue:"#7B68EE",lawngreen:"#7CFC00",chartreuse:"#7FFF00",aquamarine:"#7FFFD4",maroon:"#800000",purple:"#800080",olive:"#808000",gray:"#808080",skyblue:"#87CEEB",lightskyblue:"#87CEFA",blueviolet:"#8A2BE2",darkred:"#8B0000",darkmagenta:"#8B008B",saddlebrown:"#8B4513",darkseagreen:"#8FBC8F",lightgreen:"#90EE90",mediumpurple:"#9370D8",darkviolet:"#9400D3",palegreen:"#98FB98",darkorchid:"#9932CC",yellowgreen:"#9ACD32",sienna:"#A0522D",brown:"#A52A2A",darkgray:"#A9A9A9",lightblue:"#ADD8E6",greenyellow:"#ADFF2F",paleturquoise:"#AFEEEE",lightsteelblue:"#B0C4DE",powderblue:"#B0E0E6",firebrick:"#B22222",darkgoldenrod:"#B8860B",mediumorchid:"#BA55D3",rosybrown:"#BC8F8F",darkkhaki:"#BDB76B",silver:"#C0C0C0",mediumvioletred:"#C71585",indianred:"#CD5C5C",peru:"#CD853F",chocolate:"#D2691E",tan:"#D2B48C",lightgrey:"#D3D3D3",palevioletred:"#D87093",thistle:"#D8BFD8",orchid:"#DA70D6",goldenrod:"#DAA520",crimson:"#DC143C",gainsboro:"#DCDCDC",plum:"#DDA0DD",burlywood:"#DEB887",lightcyan:"#E0FFFF",lavender:"#E6E6FA",darksalmon:"#E9967A",violet:"#EE82EE",palegoldenrod:"#EEE8AA",lightcoral:"#F08080",khaki:"#F0E68C",aliceblue:"#F0F8FF",honeydew:"#F0FFF0",azure:"#F0FFFF",sandybrown:"#F4A460",wheat:"#F5DEB3",beige:"#F5F5DC",whitesmoke:"#F5F5F5",mintcream:"#F5FFFA",ghostwhite:"#F8F8FF",salmon:"#FA8072",antiquewhite:"#FAEBD7",linen:"#FAF0E6",lightgoldenrodyellow:"#FAFAD2",oldlace:"#FDF5E6",red:"#FF0000",fuchsia:"#FF00FF",magenta:"#FF00FF",deeppink:"#FF1493",orangered:"#FF4500",tomato:"#FF6347",hotpink:"#FF69B4",coral:"#FF7F50",darkorange:"#FF8C00",lightsalmon:"#FFA07A",orange:"#FFA500",lightpink:"#FFB6C1",pink:"#FFC0CB",gold:"#FFD700",peachpuff:"#FFDAB9",navajowhite:"#FFDEAD",moccasin:"#FFE4B5",bisque:"#FFE4C4",mistyrose:"#FFE4E1",blanchedalmond:"#FFEBCD",papayawhip:"#FFEFD5",lavenderblush:"#FFF0F5",seashell:"#FFF5EE",cornsilk:"#FFF8DC",lemonchiffon:"#FFFACD",floralwhite:"#FFFAF0",snow:"#FFFAFA",yellow:"#FFFF00",lightyellow:"#FFFFE0",ivory:"#FFFFF0",white:"#FFFFFF"};if("string"==typeof t)return e[t]}},{key:"setColor",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if("none"!==t){var i=void 0,o=this._isColorString(t);if(void 0!==o&&(t=o),p.isString(t)===!0){if(p.isValidRGB(t)===!0){var n=t.substr(4).substr(0,t.length-5).split(",");i={r:n[0],g:n[1],b:n[2],a:1}}else if(p.isValidRGBA(t)===!0){var r=t.substr(5).substr(0,t.length-6).split(",");i={r:r[0],g:r[1],b:r[2],a:r[3]}}else if(p.isValidHex(t)===!0){var a=p.hexToRGB(t);i={r:a.r,g:a.g,b:a.b,a:1}}}else if(t instanceof Object&&void 0!==t.r&&void 0!==t.g&&void 0!==t.b){var h=void 0!==t.a?t.a:"1.0";i={r:t.r,g:t.g,b:t.b,a:h}}if(void 0===i)throw new Error("Unknown color passed to the colorPicker. Supported are strings: rgb, hex, rgba. Object: rgb ({r:r,g:g,b:b,[a:a]}). Supplied: "+(0,s.default)(t));this._setColor(i,e)}}},{key:"show",value:function(){void 0!==this.closeCallback&&(this.closeCallback(),this.closeCallback=void 0),this.applied=!1,this.frame.style.display="block",this._generateHueCircle()}},{key:"_hide",value:function(){var t=this,e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];e===!0&&(this.previousColor=p.extend({},this.color)),this.applied===!0&&this.updateCallback(this.initialColor),this.frame.style.display="none",setTimeout(function(){void 0!==t.closeCallback&&(t.closeCallback(),t.closeCallback=void 0)},0)}},{key:"_save",value:function(){this.updateCallback(this.color),this.applied=!1,this._hide()}},{key:"_apply",value:function(){this.applied=!0,this.updateCallback(this.color),this._updatePicker(this.color)}},{key:"_loadLast",value:function(){void 0!==this.previousColor?this.setColor(this.previousColor,!1):alert("There is no last color to load...")}},{key:"_setColor",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];e===!0&&(this.initialColor=p.extend({},t)),this.color=t;var i=p.RGBToHSV(t.r,t.g,t.b),o=2*Math.PI,n=this.r*i.s,s=this.centerCoordinates.x+n*Math.sin(o*i.h),r=this.centerCoordinates.y+n*Math.cos(o*i.h);this.colorPickerSelector.style.left=s-.5*this.colorPickerSelector.clientWidth+"px",this.colorPickerSelector.style.top=r-.5*this.colorPickerSelector.clientHeight+"px",this._updatePicker(t)}},{key:"_setOpacity",value:function(t){this.color.a=t/100,this._updatePicker(this.color)}},{key:"_setBrightness",value:function(t){var e=p.RGBToHSV(this.color.r,this.color.g,this.color.b);e.v=t/100;var i=p.HSVToRGB(e.h,e.s,e.v);i.a=this.color.a,this.color=i,this._updatePicker()}},{key:"_updatePicker",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.color,e=p.RGBToHSV(t.r,t.g,t.b),i=this.colorPickerCanvas.getContext("2d");void 0===this.pixelRation&&(this.pixelRatio=(window.devicePixelRatio||1)/(i.webkitBackingStorePixelRatio||i.mozBackingStorePixelRatio||i.msBackingStorePixelRatio||i.oBackingStorePixelRatio||i.backingStorePixelRatio||1)),i.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0);var o=this.colorPickerCanvas.clientWidth,n=this.colorPickerCanvas.clientHeight;i.clearRect(0,0,o,n),i.putImageData(this.hueCircle,0,0),i.fillStyle="rgba(0,0,0,"+(1-e.v)+")",i.circle(this.centerCoordinates.x,this.centerCoordinates.y,this.r),i.fill(),this.brightnessRange.value=100*e.v,this.opacityRange.value=100*t.a,this.initialColorDiv.style.backgroundColor="rgba("+this.initialColor.r+","+this.initialColor.g+","+this.initialColor.b+","+this.initialColor.a+")",this.newColorDiv.style.backgroundColor="rgba("+this.color.r+","+this.color.g+","+this.color.b+","+this.color.a+")"}},{key:"_setSize",value:function(){this.colorPickerCanvas.style.width="100%",this.colorPickerCanvas.style.height="100%",this.colorPickerCanvas.width=289*this.pixelRatio,this.colorPickerCanvas.height=289*this.pixelRatio}},{key:"_create",value:function(){if(this.frame=document.createElement("div"),this.frame.className="vis-color-picker",this.colorPickerDiv=document.createElement("div"),this.colorPickerSelector=document.createElement("div"),this.colorPickerSelector.className="vis-selector",this.colorPickerDiv.appendChild(this.colorPickerSelector),this.colorPickerCanvas=document.createElement("canvas"),this.colorPickerDiv.appendChild(this.colorPickerCanvas),this.colorPickerCanvas.getContext){var t=this.colorPickerCanvas.getContext("2d");this.pixelRatio=(window.devicePixelRatio||1)/(t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1),this.colorPickerCanvas.getContext("2d").setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0)}else{var e=document.createElement("DIV");e.style.color="red",e.style.fontWeight="bold",e.style.padding="10px",e.innerHTML="Error: your browser does not support HTML canvas",this.colorPickerCanvas.appendChild(e)}this.colorPickerDiv.className="vis-color",this.opacityDiv=document.createElement("div"),this.opacityDiv.className="vis-opacity",this.brightnessDiv=document.createElement("div"),this.brightnessDiv.className="vis-brightness",this.arrowDiv=document.createElement("div"),this.arrowDiv.className="vis-arrow",this.opacityRange=document.createElement("input");try{this.opacityRange.type="range",this.opacityRange.min="0",this.opacityRange.max="100"}catch(t){}this.opacityRange.value="100",this.opacityRange.className="vis-range",this.brightnessRange=document.createElement("input");try{this.brightnessRange.type="range",this.brightnessRange.min="0",this.brightnessRange.max="100"}catch(t){}this.brightnessRange.value="100",this.brightnessRange.className="vis-range",this.opacityDiv.appendChild(this.opacityRange),this.brightnessDiv.appendChild(this.brightnessRange);var i=this;this.opacityRange.onchange=function(){i._setOpacity(this.value)},this.opacityRange.oninput=function(){i._setOpacity(this.value)},this.brightnessRange.onchange=function(){i._setBrightness(this.value)},this.brightnessRange.oninput=function(){i._setBrightness(this.value)},this.brightnessLabel=document.createElement("div"),this.brightnessLabel.className="vis-label vis-brightness",this.brightnessLabel.innerHTML="brightness:",this.opacityLabel=document.createElement("div"),this.opacityLabel.className="vis-label vis-opacity",this.opacityLabel.innerHTML="opacity:",this.newColorDiv=document.createElement("div"),this.newColorDiv.className="vis-new-color",this.newColorDiv.innerHTML="new",this.initialColorDiv=document.createElement("div"),this.initialColorDiv.className="vis-initial-color",this.initialColorDiv.innerHTML="initial",this.cancelButton=document.createElement("div"),this.cancelButton.className="vis-button vis-cancel",this.cancelButton.innerHTML="cancel",this.cancelButton.onclick=this._hide.bind(this,!1),this.applyButton=document.createElement("div"),this.applyButton.className="vis-button vis-apply",this.applyButton.innerHTML="apply",this.applyButton.onclick=this._apply.bind(this),this.saveButton=document.createElement("div"),this.saveButton.className="vis-button vis-save",this.saveButton.innerHTML="save",this.saveButton.onclick=this._save.bind(this),this.loadButton=document.createElement("div"),this.loadButton.className="vis-button vis-load",this.loadButton.innerHTML="load last",this.loadButton.onclick=this._loadLast.bind(this),this.frame.appendChild(this.colorPickerDiv),this.frame.appendChild(this.arrowDiv),this.frame.appendChild(this.brightnessLabel),this.frame.appendChild(this.brightnessDiv),this.frame.appendChild(this.opacityLabel),this.frame.appendChild(this.opacityDiv),this.frame.appendChild(this.newColorDiv),this.frame.appendChild(this.initialColorDiv),this.frame.appendChild(this.cancelButton),this.frame.appendChild(this.applyButton),this.frame.appendChild(this.saveButton),this.frame.appendChild(this.loadButton)}},{key:"_bindHammer",value:function(){var t=this;this.drag={},this.pinch={},this.hammer=new l(this.colorPickerCanvas),this.hammer.get("pinch").set({enable:!0}),u.onTouch(this.hammer,function(e){t._moveSelector(e)}),this.hammer.on("tap",function(e){t._moveSelector(e)}),this.hammer.on("panstart",function(e){t._moveSelector(e)}),this.hammer.on("panmove",function(e){t._moveSelector(e)}),this.hammer.on("panend",function(e){t._moveSelector(e)})}},{key:"_generateHueCircle",value:function(){if(this.generated===!1){var t=this.colorPickerCanvas.getContext("2d");void 0===this.pixelRation&&(this.pixelRatio=(window.devicePixelRatio||1)/(t.webkitBackingStorePixelRatio||t.mozBackingStorePixelRatio||t.msBackingStorePixelRatio||t.oBackingStorePixelRatio||t.backingStorePixelRatio||1)),t.setTransform(this.pixelRatio,0,0,this.pixelRatio,0,0);var e=this.colorPickerCanvas.clientWidth,i=this.colorPickerCanvas.clientHeight;t.clearRect(0,0,e,i);var o=void 0,n=void 0,s=void 0,r=void 0;this.centerCoordinates={x:.5*e,y:.5*i},this.r=.49*e;var a=2*Math.PI/360,h=1/360,d=1/this.r,l=void 0;for(s=0;s<360;s++)for(r=0;rr?r:t,e=null==e?r:e0&&l.push(u.screenToValue(n)),!c.hidden&&this.itemsData.length>0&&l.push(c.screenToValue(n)),{event:t,what:d,pageX:t.srcEvent?t.srcEvent.pageX:t.pageX,pageY:t.srcEvent?t.srcEvent.pageY:t.pageY,x:o,y:n,time:r,value:l}},o.prototype._createConfigurator=function(){return new v(this,this.dom.container,g)},t.exports=o},function(t,e,i){function o(t){return t&&t.__esModule?t:{default:t}}function n(t,e){this.id=a.randomUUID(),this.body=t,this.defaultOptions={yAxisOrientation:"left",defaultGroup:"default",sort:!0,sampling:!0,stack:!1,graphHeight:"400px",shaded:{enabled:!1,orientation:"bottom"},style:"line",barChart:{width:50,sideBySide:!1,align:"center"},interpolation:{enabled:!0,parametrization:"centripetal",alpha:.5},drawPoints:{enabled:!0,size:6,style:"square"},dataAxis:{},legend:{},groups:{visibility:{}}},this.options=a.extend({},this.defaultOptions),this.dom={},this.props={},this.hammer=null,this.groups={},this.abortedGraphUpdate=!1,this.updateSVGheight=!1,this.updateSVGheightOnResize=!1,this.forceGraphUpdate=!0;var i=this;this.itemsData=null,this.groupsData=null,this.itemListeners={add:function(t,e,o){i._onAdd(e.items)},update:function(t,e,o){i._onUpdate(e.items)},remove:function(t,e,o){i._onRemove(e.items)}},this.groupListeners={add:function(t,e,o){i._onAddGroups(e.items)},update:function(t,e,o){i._onUpdateGroups(e.items)},remove:function(t,e,o){i._onRemoveGroups(e.items)}},this.items={},this.selection=[],this.lastStart=this.body.range.start,this.touchParams={},this.svgElements={},this.setOptions(e),this.groupsUsingDefaultStyles=[0],this.body.emitter.on("rangechanged",function(){i.lastStart=i.body.range.start,i.svg.style.left=a.option.asSize(-i.props.width),i.forceGraphUpdate=!0,i.redraw.call(i)}),this._create(),this.framework={svg:this.svg,svgElements:this.svgElements,options:this.options,groups:this.groups}}var s=i(62),r=o(s),a=i(1),h=i(87),d=i(88),l=i(92),u=i(100),p=i(131),c=i(133),f=i(137),m=i(134),g=i(136),v=i(135),y="__ungrouped__";n.prototype=new u,n.prototype._create=function(){var t=document.createElement("div");t.className="vis-line-graph",this.dom.frame=t,this.svg=document.createElementNS("http://www.w3.org/2000/svg","svg"),this.svg.style.position="relative",this.svg.style.height=(""+this.options.graphHeight).replace("px","")+"px",this.svg.style.display="block",t.appendChild(this.svg),this.options.dataAxis.orientation="left",this.yAxisLeft=new p(this.body,this.options.dataAxis,this.svg,this.options.groups),this.options.dataAxis.orientation="right",this.yAxisRight=new p(this.body,this.options.dataAxis,this.svg,this.options.groups),delete this.options.dataAxis.orientation,this.legendLeft=new f(this.body,this.options.legend,"left",this.options.groups), -this.legendRight=new f(this.body,this.options.legend,"right",this.options.groups),this.show()},n.prototype.setOptions=function(t){if(t){var e=["sampling","defaultGroup","stack","height","graphHeight","yAxisOrientation","style","barChart","dataAxis","sort","groups"];void 0===t.graphHeight&&void 0!==t.height?(this.updateSVGheight=!0,this.updateSVGheightOnResize=!0):void 0!==this.body.domProps.centerContainer.height&&void 0!==t.graphHeight&&parseInt((t.graphHeight+"").replace("px",""))0){var a={};for(this._getRelevantData(r,a,n,s),this._applySampling(r,a),e=0;e0)switch(t.options.style){case"line":l.hasOwnProperty(r[e])||(l[r[e]]=g.calcPath(a[r[e]],t)),g.draw(l[r[e]],t,this.framework);case"point":case"points":"point"!=t.options.style&&"points"!=t.options.style&&1!=t.options.drawPoints.enabled||v.draw(a[r[e]],t,this.framework);break;case"bar":}}}return h.cleanupElements(this.svgElements),!1},n.prototype._stack=function(t,e){var i,o,n,s,r;i=0;for(var a=0;at[a].x){r=e[h],s=0==h?r:e[h-1],i=h;break}}void 0===r&&(s=e[e.length-1],r=e[e.length-1]),o=r.x-s.x,n=r.y-s.y,0==o?t[a].y=t[a].orginalY+r.y:t[a].y=t[a].orginalY+n/o*(t[a].x-s.x)+s.y}},n.prototype._getRelevantData=function(t,e,i,o){var n,s,r,h;if(t.length>0)for(s=0;s0)for(var o=0;o0){var s=1,r=n.length,a=this.body.util.toGlobalScreen(n[n.length-1].x)-this.body.util.toGlobalScreen(n[0].x),h=r/a;s=Math.min(Math.ceil(.2*r),Math.max(1,Math.round(h)));for(var d=new Array(r),l=0;l0){for(s=0;s0&&(n=this.groups[t[s]],r.stack===!0&&"bar"===r.style?"left"===r.yAxisOrientation?a=a.concat(o):h=h.concat(o):i[t[s]]=n.getYRange(o,t[s]));m.getStackedYRange(a,i,t,"__barStackLeft","left"),m.getStackedYRange(h,i,t,"__barStackRight","right")}},n.prototype._updateYAxis=function(t,e){var i,o,n=!1,s=!1,r=!1,a=1e9,h=1e9,d=-1e9,l=-1e9;if(t.length>0){for(var u=0;ui?i:a,d=di?i:h,l=l=0&&t._redrawLabel(o-2,e.val,i,"vis-y-axis vis-major",t.props.majorCharHeight),t.master===!0&&(n?t._redrawLine(o,i,"vis-grid vis-horizontal vis-major",t.options.majorLinesOffset,t.props.majorLineWidth):t._redrawLine(o,i,"vis-grid vis-horizontal vis-minor",t.options.minorLinesOffset,t.props.minorLineWidth))});var a=0;void 0!==this.options[i].title&&void 0!==this.options[i].title.text&&(a=this.props.titleCharHeight);var d=this.options.icons===!0?Math.max(this.options.iconWidth,a)+this.options.labelOffsetX+15:a+this.options.labelOffsetX+15;return this.maxLabelSize>this.width-d&&this.options.visible===!0?(this.width=this.maxLabelSize+d,this.options.width=this.width+"px",h.cleanupElements(this.DOMelements.lines),h.cleanupElements(this.DOMelements.labels),this.redraw(),e=!0):this.maxLabelSizethis.minWidth?(this.width=Math.max(this.minWidth,this.maxLabelSize+d),this.options.width=this.width+"px",h.cleanupElements(this.DOMelements.lines),h.cleanupElements(this.DOMelements.labels),this.redraw(),e=!0):(h.cleanupElements(this.DOMelements.lines),h.cleanupElements(this.DOMelements.labels),e=!1),e},n.prototype.convertValue=function(t){return this.scale.convertValue(t)},n.prototype.screenToValue=function(t){return this.scale.screenToValue(t)},n.prototype._redrawLabel=function(t,e,i,o,n){var s=h.getDOMElement("div",this.DOMelements.labels,this.dom.frame);s.className=o,s.innerHTML=e,"left"===i?(s.style.left="-"+this.options.labelOffsetX+"px",s.style.textAlign="right"):(s.style.right="-"+this.options.labelOffsetX+"px",s.style.textAlign="left"),s.style.top=t-.5*n+this.options.labelOffsetY+"px",e+="";var r=Math.max(this.props.majorCharWidth,this.props.minorCharWidth);this.maxLabelSize6&&void 0!==arguments[6]&&arguments[6],a=arguments.length>7&&void 0!==arguments[7]&&arguments[7];if(this.majorSteps=[1,2,5,10],this.minorSteps=[.25,.5,1,2],this.customLines=null,this.containerHeight=n,this.majorCharHeight=s,this._start=t,this._end=e,this.scale=1,this.minorStepIdx=-1,this.magnitudefactor=1,this.determineScale(),this.zeroAlign=r,this.autoScaleStart=i,this.autoScaleEnd=o,this.formattingFunction=a,i||o){var h=this,d=function(t){var e=t-t%(h.magnitudefactor*h.minorSteps[h.minorStepIdx]);return t%(h.magnitudefactor*h.minorSteps[h.minorStepIdx])>.5*(h.magnitudefactor*h.minorSteps[h.minorStepIdx])?e+h.magnitudefactor*h.minorSteps[h.minorStepIdx]:e};i&&(this._start-=2*this.magnitudefactor*this.minorSteps[this.minorStepIdx],this._start=d(this._start)),o&&(this._end+=this.magnitudefactor*this.minorSteps[this.minorStepIdx],this._end=d(this._end)),this.determineScale()}}i.prototype.setCharHeight=function(t){this.majorCharHeight=t},i.prototype.setHeight=function(t){this.containerHeight=t},i.prototype.determineScale=function(){var t=this._end-this._start;this.scale=this.containerHeight/t;var e=this.majorCharHeight/this.scale,i=t>0?Math.round(Math.log(t)/Math.LN10):0;this.minorStepIdx=-1,this.magnitudefactor=Math.pow(10,i);var o=0;i<0&&(o=i);for(var n=!1,s=o;Math.abs(s)<=Math.abs(i);s++){this.magnitudefactor=Math.pow(10,s);for(var r=0;r=e){n=!0,this.minorStepIdx=r;break}}if(n===!0)break}},i.prototype.is_major=function(t){return t%(this.magnitudefactor*this.majorSteps[this.minorStepIdx])===0},i.prototype.getStep=function(){return this.magnitudefactor*this.minorSteps[this.minorStepIdx]},i.prototype.getFirstMajor=function(){var t=this.magnitudefactor*this.majorSteps[this.minorStepIdx];return this.convertValue(this._start+(t-this._start%t)%t)},i.prototype.formatValue=function(t){var e=t.toPrecision(5);return"function"==typeof this.formattingFunction&&(e=this.formattingFunction(t)),"number"==typeof e?""+e:"string"==typeof e?e:t.toPrecision(5)},i.prototype.getLines=function(){for(var t=[],e=this.getStep(),i=(e-this._start%e)%e,o=this._start+i;this._end-o>1e-5;o+=e)o!=this._start&&t.push({major:this.is_major(o),y:this.convertValue(o),val:this.formatValue(o)});return t},i.prototype.followScale=function(t){var e=this.minorStepIdx,i=this._start,o=this._end,n=this,s=function(){n.magnitudefactor*=2},r=function(){n.magnitudefactor/=2};t.minorStepIdx<=1&&this.minorStepIdx<=1||t.minorStepIdx>1&&this.minorStepIdx>1||(t.minorStepIdxo+1e-5)r(),d=!1;else{if(!this.autoScaleStart&&this._start=0)){r(),d=!1;continue}console.warn("Can't adhere to given 'min' range, due to zeroalign")}this.autoScaleStart&&this.autoScaleEnd&&ue.x?1:-1})):this.itemsData=[]},n.prototype.getItems=function(){return this.itemsData},n.prototype.setZeroPosition=function(t){this.zeroPosition=t},n.prototype.setOptions=function(t){if(void 0!==t){var e=["sampling","style","sort","yAxisOrientation","barChart","zIndex","excludeFromStacking","excludeFromLegend"];a.selectiveDeepExtend(e,this.options,t),"function"==typeof t.drawPoints&&(t.drawPoints={onRender:t.drawPoints}),a.mergeOptions(this.options,t,"interpolation"),a.mergeOptions(this.options,t,"drawPoints"),a.mergeOptions(this.options,t,"shaded"),t.interpolation&&"object"==(0,r.default)(t.interpolation)&&t.interpolation.parametrization&&("uniform"==t.interpolation.parametrization?this.options.interpolation.alpha=0:"chordal"==t.interpolation.parametrization?this.options.interpolation.alpha=1:(this.options.interpolation.parametrization="centripetal",this.options.interpolation.alpha=.5))}},n.prototype.update=function(t){this.group=t,this.content=t.content||"graph",this.className=t.className||this.className||"vis-graph-group"+this.groupsUsingDefaultStyles[0]%10,this.visible=void 0===t.visible||t.visible,this.style=t.style,this.setOptions(t.options)},n.prototype.getLegend=function(t,e,i,o,n){if(void 0==i||null==i){var s=document.createElementNS("http://www.w3.org/2000/svg","svg");i={svg:s,svgElements:{},options:this.options,groups:[this]}}switch(void 0!=o&&null!=o||(o=0),void 0!=n&&null!=n||(n=.5*e),this.options.style){case"line":d.drawIcon(this,o,n,t,e,i);break;case"points":case"point":l.drawIcon(this,o,n,t,e,i);break;case"bar":h.drawIcon(this,o,n,t,e,i)}return{icon:i.svg,label:this.content,orientation:this.options.yAxisOrientation}},n.prototype.getYRange=function(t){for(var e=t[0].y,i=t[0].y,o=0;ot[o].y?t[o].y:e,i=i0&&(i=Math.min(i,Math.abs(e[o-1].screen_x-e[o].screen_x))),0===i&&(void 0===t[e[o].screen_x]&&(t[e[o].screen_x]={amount:0,resolved:0,accumulatedPositive:0,accumulatedNegative:0}),t[e[o].screen_x].amount+=1)},o._getSafeDrawData=function(t,e,i){var o,n;return t0?(o=t0){t.sort(function(t,e){return t.screen_x===e.screen_x?t.groupIde[s].screen_y?e[s].screen_y:o,n=nt[r].accumulatedNegative?t[r].accumulatedNegative:o,o=o>t[r].accumulatedPositive?t[r].accumulatedPositive:o,n=n0){var i=[];return i=1==e.options.interpolation.enabled?o._catmullRom(t,e):o._linear(t)}},o.drawIcon=function(t,e,i,o,s,r){var a,h,d=.5*s,l=n.getSVGElement("rect",r.svgElements,r.svg);if(l.setAttributeNS(null,"x",e),l.setAttributeNS(null,"y",i-d),l.setAttributeNS(null,"width",o),l.setAttributeNS(null,"height",2*d),l.setAttributeNS(null,"class","vis-outline"),a=n.getSVGElement("path",r.svgElements,r.svg),a.setAttributeNS(null,"class",t.className),void 0!==t.style&&a.setAttributeNS(null,"style",t.style),a.setAttributeNS(null,"d","M"+e+","+i+" L"+(e+o)+","+i),1==t.options.shaded.enabled&&(h=n.getSVGElement("path",r.svgElements,r.svg),"top"==t.options.shaded.orientation?h.setAttributeNS(null,"d","M"+e+", "+(i-d)+"L"+e+","+i+" L"+(e+o)+","+i+" L"+(e+o)+","+(i-d)):h.setAttributeNS(null,"d","M"+e+","+i+" L"+e+","+(i+d)+" L"+(e+o)+","+(i+d)+"L"+(e+o)+","+i),h.setAttributeNS(null,"class",t.className+" vis-icon-fill"),void 0!==t.options.shaded.style&&""!==t.options.shaded.style&&h.setAttributeNS(null,"style",t.options.shaded.style)),1==t.options.drawPoints.enabled){var u={style:t.options.drawPoints.style,styles:t.options.drawPoints.styles,size:t.options.drawPoints.size,className:t.className};n.drawPoint(e+.5*o,i,u,r.svgElements,r.svg)}},o.drawShading=function(t,e,i,o){if(1==e.options.shaded.enabled){var s=Number(o.svg.style.height.replace("px","")),r=n.getSVGElement("path",o.svgElements,o.svg),a="L";1==e.options.interpolation.enabled&&(a="C");var h,d=0;d="top"==e.options.shaded.orientation?0:"bottom"==e.options.shaded.orientation?s:Math.min(Math.max(0,e.zeroPosition),s),h="group"==e.options.shaded.orientation&&null!=i&&void 0!=i?"M"+t[0][0]+","+t[0][1]+" "+this.serializePath(t,a,!1)+" L"+i[i.length-1][0]+","+i[i.length-1][1]+" "+this.serializePath(i,a,!0)+i[0][0]+","+i[0][1]+" Z":"M"+t[0][0]+","+t[0][1]+" "+this.serializePath(t,a,!1)+" V"+d+" H"+t[0][0]+" Z",r.setAttributeNS(null,"class",e.className+" vis-fill"),void 0!==e.options.shaded.style&&r.setAttributeNS(null,"style",e.options.shaded.style),r.setAttributeNS(null,"d",h)}},o.draw=function(t,e,i){if(null!=t&&void 0!=t){var o=n.getSVGElement("path",i.svgElements,i.svg);o.setAttributeNS(null,"class",e.className),void 0!==e.style&&o.setAttributeNS(null,"style",e.style);var s="L";1==e.options.interpolation.enabled&&(s="C"),o.setAttributeNS(null,"d","M"+t[0][0]+","+t[0][1]+" "+this.serializePath(t,s,!1))}},o.serializePath=function(t,e,i){if(t.length<2)return"";var o=e;if(i)for(var n=t.length-2;n>0;n--)o+=t[n][0]+","+t[n][1]+" ";else for(var n=1;n0&&(f=1/f),m=3*g*(g+v),m>0&&(m=1/m),a={screen_x:(-b*o.screen_x+p*n.screen_x+_*s.screen_x)*f,screen_y:(-b*o.screen_y+p*n.screen_y+_*s.screen_y)*f},h={screen_x:(y*n.screen_x+c*s.screen_x-b*r.screen_x)*m,screen_y:(y*n.screen_y+c*s.screen_y-b*r.screen_y)*m},0==a.screen_x&&0==a.screen_y&&(a=n),0==h.screen_x&&0==h.screen_y&&(h=s),x.push([a.screen_x,a.screen_y]),x.push([h.screen_x,h.screen_y]),x.push([s.screen_x,s.screen_y]);return x},o._linear=function(t){for(var e=[],i=0;i")}this.dom.textArea.innerHTML=s,this.dom.textArea.style.lineHeight=.75*this.options.iconSize+this.options.iconSpacing+"px"}},n.prototype.drawLegendIcons=function(){if(this.dom.frame.parentNode){var t=(0,r.default)(this.groups);t.sort(function(t,e){return t>>0,n=0;n0)for(i=0;i=0?i?"+":"":"-")+Math.pow(10,Math.max(0,s)).toString().substr(1)+n}var H=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,G=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,W={},z={};function U(t,e,i,n){var s=n;"string"==typeof n&&(s=function(){return this[n]()}),t&&(z[t]=s),e&&(z[e[0]]=function(){return F(s.apply(this,arguments),e[1],e[2])}),i&&(z[i]=function(){return this.localeData().ordinal(s.apply(this,arguments),t)})}function V(t,e){return t.isValid()?(e=B(e,t.localeData()),W[e]=W[e]||function(t){var e,i,n,s=t.match(H);for(e=0,i=s.length;e=0&&G.test(t);)t=t.replace(G,n),G.lastIndex=0,i-=1;return t}var X=/\d/,q=/\d\d/,Z=/\d{3}/,$=/\d{4}/,J=/[+-]?\d{6}/,K=/\d\d?/,Q=/\d\d\d\d?/,tt=/\d\d\d\d\d\d?/,et=/\d{1,3}/,it=/\d{1,4}/,nt=/[+-]?\d{1,6}/,st=/\d+/,rt=/[+-]?\d+/,ot=/Z|[+-]\d\d:?\d\d/gi,at=/Z|[+-]\d\d(?::?\d\d)?/gi,lt=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,ht={};function ut(t,e,i){ht[t]=Y(e)?e:function(t,n){return t&&i?i:e}}function dt(t,e){return d(ht,t)?ht[t](e._strict,e._locale):new RegExp(ct(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(t,e,i,n,s){return e||i||n||s}))))}function ct(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ft={};function mt(t,e){var i,n=e;for("string"==typeof t&&(t=[t]),l(e)&&(n=function(t,i){i[e]=D(t)}),i=0;i68?1900:2e3)};var Ot,Ct=Yt("FullYear",!0);function Yt(t,e){return function(i){return null!=i?(Et(this,t,i),n.updateOffset(this,e),this):Pt(this,t)}}function Pt(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function Et(t,e,i){t.isValid()&&!isNaN(i)&&("FullYear"===e&&Tt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](i,t.month(),Lt(i,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](i))}function Lt(t,e){if(isNaN(t)||isNaN(e))return NaN;var i,n=(e%(i=12)+i)%i;return t+=(e-n)/12,1===n?Tt(t)?29:28:31-n%7%2}Ot=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0?(a=new Date(t+400,e,i,n,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(t)):a=new Date(t,e,i,n,s,r,o),a}function Ut(t){var e;if(t<100&&t>=0){var i=Array.prototype.slice.call(arguments);i[0]=t+400,e=new Date(Date.UTC.apply(null,i)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Vt(t,e,i){var n=7+e-i;return-(7+Ut(t,0,n).getUTCDay()-e)%7+n-1}function Bt(t,e,i,n,s){var r,o,a=1+7*(e-1)+(7+i-n)%7+Vt(t,n,s);return a<=0?o=Mt(r=t-1)+a:a>Mt(t)?(r=t+1,o=a-Mt(t)):(r=t,o=a),{year:r,dayOfYear:o}}function Xt(t,e,i){var n,s,r=Vt(t.year(),e,i),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?n=o+qt(s=t.year()-1,e,i):o>qt(t.year(),e,i)?(n=o-qt(t.year(),e,i),s=t.year()+1):(s=t.year(),n=o),{week:n,year:s}}function qt(t,e,i){var n=Vt(t,e,i),s=Vt(t+1,e,i);return(Mt(t)-n+s)/7}function Zt(t,e){return t.slice(e,7).concat(t.slice(0,e))}U("w",["ww",2],"wo","week"),U("W",["WW",2],"Wo","isoWeek"),I("week","w"),I("isoWeek","W"),j("week",5),j("isoWeek",5),ut("w",K),ut("ww",K,q),ut("W",K),ut("WW",K,q),pt(["w","ww","W","WW"],(function(t,e,i,n){e[n.substr(0,1)]=D(t)})),U("d",0,"do","day"),U("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),U("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),U("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),U("e",0,0,"weekday"),U("E",0,0,"isoWeekday"),I("day","d"),I("weekday","e"),I("isoWeekday","E"),j("day",11),j("weekday",11),j("isoWeekday",11),ut("d",K),ut("e",K),ut("E",K),ut("dd",(function(t,e){return e.weekdaysMinRegex(t)})),ut("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),ut("dddd",(function(t,e){return e.weekdaysRegex(t)})),pt(["dd","ddd","dddd"],(function(t,e,i,n){var s=i._locale.weekdaysParse(t,n,i._strict);null!=s?e.d=s:m(i).invalidWeekday=t})),pt(["d","e","E"],(function(t,e,i,n){e[n]=D(t)}));var $t="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),Jt="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Kt="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function Qt(t,e,i){var n,s,r,o=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],n=0;n<7;++n)r=f([2e3,1]).day(n),this._minWeekdaysParse[n]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[n]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[n]=this.weekdays(r,"").toLocaleLowerCase();return i?"dddd"===e?-1!==(s=Ot.call(this._weekdaysParse,o))?s:null:"ddd"===e?-1!==(s=Ot.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=Ot.call(this._minWeekdaysParse,o))?s:null:"dddd"===e?-1!==(s=Ot.call(this._weekdaysParse,o))?s:-1!==(s=Ot.call(this._shortWeekdaysParse,o))?s:-1!==(s=Ot.call(this._minWeekdaysParse,o))?s:null:"ddd"===e?-1!==(s=Ot.call(this._shortWeekdaysParse,o))?s:-1!==(s=Ot.call(this._weekdaysParse,o))?s:-1!==(s=Ot.call(this._minWeekdaysParse,o))?s:null:-1!==(s=Ot.call(this._minWeekdaysParse,o))?s:-1!==(s=Ot.call(this._weekdaysParse,o))?s:-1!==(s=Ot.call(this._shortWeekdaysParse,o))?s:null}var te=lt,ee=lt,ie=lt;function ne(){function t(t,e){return e.length-t.length}var e,i,n,s,r,o=[],a=[],l=[],h=[];for(e=0;e<7;e++)i=f([2e3,1]).day(e),n=this.weekdaysMin(i,""),s=this.weekdaysShort(i,""),r=this.weekdays(i,""),o.push(n),a.push(s),l.push(r),h.push(n),h.push(s),h.push(r);for(o.sort(t),a.sort(t),l.sort(t),h.sort(t),e=0;e<7;e++)a[e]=ct(a[e]),l[e]=ct(l[e]),h[e]=ct(h[e]);this._weekdaysRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function se(){return this.hours()%12||12}function re(t,e){U(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function oe(t,e){return e._meridiemParse}U("H",["HH",2],0,"hour"),U("h",["hh",2],0,se),U("k",["kk",2],0,(function(){return this.hours()||24})),U("hmm",0,0,(function(){return""+se.apply(this)+F(this.minutes(),2)})),U("hmmss",0,0,(function(){return""+se.apply(this)+F(this.minutes(),2)+F(this.seconds(),2)})),U("Hmm",0,0,(function(){return""+this.hours()+F(this.minutes(),2)})),U("Hmmss",0,0,(function(){return""+this.hours()+F(this.minutes(),2)+F(this.seconds(),2)})),re("a",!0),re("A",!1),I("hour","h"),j("hour",13),ut("a",oe),ut("A",oe),ut("H",K),ut("h",K),ut("k",K),ut("HH",K,q),ut("hh",K,q),ut("kk",K,q),ut("hmm",Q),ut("hmmss",tt),ut("Hmm",Q),ut("Hmmss",tt),mt(["H","HH"],bt),mt(["k","kk"],(function(t,e,i){var n=D(t);e[bt]=24===n?0:n})),mt(["a","A"],(function(t,e,i){i._isPm=i._locale.isPM(t),i._meridiem=t})),mt(["h","hh"],(function(t,e,i){e[bt]=D(t),m(i).bigHour=!0})),mt("hmm",(function(t,e,i){var n=t.length-2;e[bt]=D(t.substr(0,n)),e[wt]=D(t.substr(n)),m(i).bigHour=!0})),mt("hmmss",(function(t,e,i){var n=t.length-4,s=t.length-2;e[bt]=D(t.substr(0,n)),e[wt]=D(t.substr(n,2)),e[kt]=D(t.substr(s)),m(i).bigHour=!0})),mt("Hmm",(function(t,e,i){var n=t.length-2;e[bt]=D(t.substr(0,n)),e[wt]=D(t.substr(n))})),mt("Hmmss",(function(t,e,i){var n=t.length-4,s=t.length-2;e[bt]=D(t.substr(0,n)),e[wt]=D(t.substr(n,2)),e[kt]=D(t.substr(s))}));var ae,le=Yt("Hours",!0),he={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:At,monthsShort:Nt,week:{dow:0,doy:6},weekdays:$t,weekdaysMin:Kt,weekdaysShort:Jt,meridiemParse:/[ap]\.?m?\.?/i},ue={},de={};function ce(t){return t?t.toLowerCase().replace("_","-"):t}function fe(e){var i=null;if(!ue[e]&&t&&t.exports)try{i=ae._abbr,o(),me(i)}catch(t){}return ue[e]}function me(t,e){var i;return t&&((i=a(e)?ge(t):pe(t,e))?ae=i:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),ae._abbr}function pe(t,e){if(null!==e){var i,n=he;if(e.abbr=t,null!=ue[t])C("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=ue[t]._config;else if(null!=e.parentLocale)if(null!=ue[e.parentLocale])n=ue[e.parentLocale]._config;else{if(null==(i=fe(e.parentLocale)))return de[e.parentLocale]||(de[e.parentLocale]=[]),de[e.parentLocale].push({name:t,config:e}),null;n=i._config}return ue[t]=new E(P(n,e)),de[t]&&de[t].forEach((function(t){pe(t.name,t.config)})),me(t),ue[t]}return delete ue[t],null}function ge(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return ae;if(!s(t)){if(e=fe(t))return e;t=[t]}return function(t){for(var e,i,n,s,r=0;r0;){if(n=fe(s.slice(0,e).join("-")))return n;if(i&&i.length>=e&&S(s,i,!0)>=e-1)break;e--}r++}return ae}(t)}function ve(t){var e,i=t._a;return i&&-2===m(t).overflow&&(e=i[yt]<0||i[yt]>11?yt:i[_t]<1||i[_t]>Lt(i[vt],i[yt])?_t:i[bt]<0||i[bt]>24||24===i[bt]&&(0!==i[wt]||0!==i[kt]||0!==i[Dt])?bt:i[wt]<0||i[wt]>59?wt:i[kt]<0||i[kt]>59?kt:i[Dt]<0||i[Dt]>999?Dt:-1,m(t)._overflowDayOfYear&&(e_t)&&(e=_t),m(t)._overflowWeeks&&-1===e&&(e=St),m(t)._overflowWeekday&&-1===e&&(e=xt),m(t).overflow=e),t}function ye(t,e,i){return null!=t?t:null!=e?e:i}function _e(t){var e,i,s,r,o,a=[];if(!t._d){for(s=function(t){var e=new Date(n.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[_t]&&null==t._a[yt]&&function(t){var e,i,n,s,r,o,a,l;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)r=1,o=4,i=ye(e.GG,t._a[vt],Xt(Ie(),1,4).year),n=ye(e.W,1),((s=ye(e.E,1))<1||s>7)&&(l=!0);else{r=t._locale._week.dow,o=t._locale._week.doy;var h=Xt(Ie(),r,o);i=ye(e.gg,t._a[vt],h.year),n=ye(e.w,h.week),null!=e.d?((s=e.d)<0||s>6)&&(l=!0):null!=e.e?(s=e.e+r,(e.e<0||e.e>6)&&(l=!0)):s=r}n<1||n>qt(i,r,o)?m(t)._overflowWeeks=!0:null!=l?m(t)._overflowWeekday=!0:(a=Bt(i,n,s,r,o),t._a[vt]=a.year,t._dayOfYear=a.dayOfYear)}(t),null!=t._dayOfYear&&(o=ye(t._a[vt],s[vt]),(t._dayOfYear>Mt(o)||0===t._dayOfYear)&&(m(t)._overflowDayOfYear=!0),i=Ut(o,0,t._dayOfYear),t._a[yt]=i.getUTCMonth(),t._a[_t]=i.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=a[e]=s[e];for(;e<7;e++)t._a[e]=a[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[bt]&&0===t._a[wt]&&0===t._a[kt]&&0===t._a[Dt]&&(t._nextDay=!0,t._a[bt]=0),t._d=(t._useUTC?Ut:zt).apply(null,a),r=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[bt]=24),t._w&&void 0!==t._w.d&&t._w.d!==r&&(m(t).weekdayMismatch=!0)}}var be=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,we=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ke=/Z|[+-]\d\d(?::?\d\d)?/,De=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Se=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],xe=/^\/?Date\((\-?\d+)/i;function Me(t){var e,i,n,s,r,o,a=t._i,l=be.exec(a)||we.exec(a);if(l){for(m(t).iso=!0,e=0,i=De.length;e0&&m(t).unusedInput.push(o),a=a.slice(a.indexOf(i)+i.length),h+=i.length),z[r]?(i?m(t).empty=!1:m(t).unusedTokens.push(r),gt(r,i,t)):t._strict&&!i&&m(t).unusedTokens.push(r);m(t).charsLeftOver=l-h,a.length>0&&m(t).unusedInput.push(a),t._a[bt]<=12&&!0===m(t).bigHour&&t._a[bt]>0&&(m(t).bigHour=void 0),m(t).parsedDateParts=t._a.slice(0),m(t).meridiem=t._meridiem,t._a[bt]=function(t,e,i){var n;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?((n=t.isPM(i))&&e<12&&(e+=12),n||12!==e||(e=0),e):e}(t._locale,t._a[bt],t._meridiem),_e(t),ve(t)}else Ye(t);else Me(t)}function Ee(t){var e=t._i,i=t._f;return t._locale=t._locale||ge(t._l),null===e||void 0===i&&""===e?g({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),w(e)?new b(ve(e)):(h(e)?t._d=e:s(i)?function(t){var e,i,n,s,r;if(0===t._f.length)return m(t).invalidFormat=!0,void(t._d=new Date(NaN));for(s=0;sthis?this:t:g()}));function Re(t,e){var i,n;if(1===e.length&&s(e[0])&&(e=e[0]),!e.length)return Ie();for(i=e[0],n=1;n=0?new Date(t+400,e,i)-ui:new Date(t,e,i).valueOf()}function fi(t,e,i){return t<100&&t>=0?Date.UTC(t+400,e,i)-ui:Date.UTC(t,e,i)}function mi(t,e){U(0,[t,t.length],0,e)}function pi(t,e,i,n,s){var r;return null==t?Xt(this,n,s).year:(e>(r=qt(t,n,s))&&(e=r),gi.call(this,t,e,i,n,s))}function gi(t,e,i,n,s){var r=Bt(t,e,i,n,s),o=Ut(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}U(0,["gg",2],0,(function(){return this.weekYear()%100})),U(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),mi("gggg","weekYear"),mi("ggggg","weekYear"),mi("GGGG","isoWeekYear"),mi("GGGGG","isoWeekYear"),I("weekYear","gg"),I("isoWeekYear","GG"),j("weekYear",1),j("isoWeekYear",1),ut("G",rt),ut("g",rt),ut("GG",K,q),ut("gg",K,q),ut("GGGG",it,$),ut("gggg",it,$),ut("GGGGG",nt,J),ut("ggggg",nt,J),pt(["gggg","ggggg","GGGG","GGGGG"],(function(t,e,i,n){e[n.substr(0,2)]=D(t)})),pt(["gg","GG"],(function(t,e,i,s){e[s]=n.parseTwoDigitYear(t)})),U("Q",0,"Qo","quarter"),I("quarter","Q"),j("quarter",7),ut("Q",X),mt("Q",(function(t,e){e[yt]=3*(D(t)-1)})),U("D",["DD",2],"Do","date"),I("date","D"),j("date",9),ut("D",K),ut("DD",K,q),ut("Do",(function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient})),mt(["D","DD"],_t),mt("Do",(function(t,e){e[_t]=D(t.match(K)[0])}));var vi=Yt("Date",!0);U("DDD",["DDDD",3],"DDDo","dayOfYear"),I("dayOfYear","DDD"),j("dayOfYear",4),ut("DDD",et),ut("DDDD",Z),mt(["DDD","DDDD"],(function(t,e,i){i._dayOfYear=D(t)})),U("m",["mm",2],0,"minute"),I("minute","m"),j("minute",14),ut("m",K),ut("mm",K,q),mt(["m","mm"],wt);var yi=Yt("Minutes",!1);U("s",["ss",2],0,"second"),I("second","s"),j("second",15),ut("s",K),ut("ss",K,q),mt(["s","ss"],kt);var _i,bi=Yt("Seconds",!1);for(U("S",0,0,(function(){return~~(this.millisecond()/100)})),U(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),U(0,["SSS",3],0,"millisecond"),U(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),U(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),U(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),U(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),U(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),U(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),I("millisecond","ms"),j("millisecond",16),ut("S",et,X),ut("SS",et,q),ut("SSS",et,Z),_i="SSSS";_i.length<=9;_i+="S")ut(_i,st);function wi(t,e){e[Dt]=D(1e3*("0."+t))}for(_i="S";_i.length<=9;_i+="S")mt(_i,wi);var ki=Yt("Milliseconds",!1);U("z",0,0,"zoneAbbr"),U("zz",0,0,"zoneName");var Di=b.prototype;function Si(t){return t}Di.add=ei,Di.calendar=function(t,e){var i=t||Ie(),s=Ve(i,this).startOf("day"),r=n.calendarFormat(this,s)||"sameElse",o=e&&(Y(e[r])?e[r].call(this,i):e[r]);return this.format(o||this.localeData().calendar(r,this,Ie(i)))},Di.clone=function(){return new b(this)},Di.diff=function(t,e,i){var n,s,r;if(!this.isValid())return NaN;if(!(n=Ve(t,this)).isValid())return NaN;switch(s=6e4*(n.utcOffset()-this.utcOffset()),e=A(e)){case"year":r=ni(this,n)/12;break;case"month":r=ni(this,n);break;case"quarter":r=ni(this,n)/3;break;case"second":r=(this-n)/1e3;break;case"minute":r=(this-n)/6e4;break;case"hour":r=(this-n)/36e5;break;case"day":r=(this-n-s)/864e5;break;case"week":r=(this-n-s)/6048e5;break;default:r=this-n}return i?r:k(r)},Di.endOf=function(t){var e;if(void 0===(t=A(t))||"millisecond"===t||!this.isValid())return this;var i=this._isUTC?fi:ci;switch(t){case"year":e=i(this.year()+1,0,1)-1;break;case"quarter":e=i(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=i(this.year(),this.month()+1,1)-1;break;case"week":e=i(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=i(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=i(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=hi-di(e+(this._isUTC?0:this.utcOffset()*li),hi)-1;break;case"minute":e=this._d.valueOf(),e+=li-di(e,li)-1;break;case"second":e=this._d.valueOf(),e+=ai-di(e,ai)-1}return this._d.setTime(e),n.updateOffset(this,!0),this},Di.format=function(t){t||(t=this.isUtc()?n.defaultFormatUtc:n.defaultFormat);var e=V(this,t);return this.localeData().postformat(e)},Di.from=function(t,e){return this.isValid()&&(w(t)&&t.isValid()||Ie(t).isValid())?$e({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Di.fromNow=function(t){return this.from(Ie(),t)},Di.to=function(t,e){return this.isValid()&&(w(t)&&t.isValid()||Ie(t).isValid())?$e({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Di.toNow=function(t){return this.to(Ie(),t)},Di.get=function(t){return Y(this[t=A(t)])?this[t]():this},Di.invalidAt=function(){return m(this).overflow},Di.isAfter=function(t,e){var i=w(t)?t:Ie(t);return!(!this.isValid()||!i.isValid())&&("millisecond"===(e=A(e)||"millisecond")?this.valueOf()>i.valueOf():i.valueOf()9999?V(i,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):Y(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",V(i,"Z")):V(i,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},Di.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var i="["+t+'("]',n=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",s=e+'[")]';return this.format(i+n+"-MM-DD[T]HH:mm:ss.SSS"+s)},Di.toJSON=function(){return this.isValid()?this.toISOString():null},Di.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},Di.unix=function(){return Math.floor(this.valueOf()/1e3)},Di.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},Di.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},Di.year=Ct,Di.isLeapYear=function(){return Tt(this.year())},Di.weekYear=function(t){return pi.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},Di.isoWeekYear=function(t){return pi.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},Di.quarter=Di.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},Di.month=Ft,Di.daysInMonth=function(){return Lt(this.year(),this.month())},Di.week=Di.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},Di.isoWeek=Di.isoWeeks=function(t){var e=Xt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},Di.weeksInYear=function(){var t=this.localeData()._week;return qt(this.year(),t.dow,t.doy)},Di.isoWeeksInYear=function(){return qt(this.year(),1,4)},Di.date=vi,Di.day=Di.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},Di.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},Di.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},Di.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},Di.hour=Di.hours=le,Di.minute=Di.minutes=yi,Di.second=Di.seconds=bi,Di.millisecond=Di.milliseconds=ki,Di.utcOffset=function(t,e,i){var s,r=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=Ue(at,t)))return this}else Math.abs(t)<16&&!i&&(t*=60);return!this._isUTC&&e&&(s=Be(this)),this._offset=t,this._isUTC=!0,null!=s&&this.add(s,"m"),r!==t&&(!e||this._changeInProgress?ti(this,$e(t-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,n.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Be(this)},Di.utc=function(t){return this.utcOffset(0,t)},Di.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Be(this),"m")),this},Di.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=Ue(ot,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},Di.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Ie(t).utcOffset():0,(this.utcOffset()-t)%60==0)},Di.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},Di.isLocal=function(){return!!this.isValid()&&!this._isUTC},Di.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},Di.isUtc=Xe,Di.isUTC=Xe,Di.zoneAbbr=function(){return this._isUTC?"UTC":""},Di.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},Di.dates=M("dates accessor is deprecated. Use date instead.",vi),Di.months=M("months accessor is deprecated. Use month instead",Ft),Di.years=M("years accessor is deprecated. Use year instead",Ct),Di.zone=M("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),Di.isDSTShifted=M("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!a(this._isDSTShifted))return this._isDSTShifted;var t={};if(y(t,this),(t=Ee(t))._a){var e=t._isUTC?f(t._a):Ie(t._a);this._isDSTShifted=this.isValid()&&S(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var xi=E.prototype;function Mi(t,e,i,n){var s=ge(),r=f().set(n,e);return s[i](r,t)}function Ti(t,e,i){if(l(t)&&(e=t,t=void 0),t=t||"",null!=e)return Mi(t,e,i,"month");var n,s=[];for(n=0;n<12;n++)s[n]=Mi(t,n,i,"month");return s}function Oi(t,e,i,n){"boolean"==typeof t?(l(e)&&(i=e,e=void 0),e=e||""):(i=e=t,t=!1,l(e)&&(i=e,e=void 0),e=e||"");var s,r=ge(),o=t?r._week.dow:0;if(null!=i)return Mi(e,(i+o)%7,n,"day");var a=[];for(s=0;s<7;s++)a[s]=Mi(e,(s+o)%7,n,"day");return a}xi.calendar=function(t,e,i){var n=this._calendar[t]||this._calendar.sameElse;return Y(n)?n.call(e,i):n},xi.longDateFormat=function(t){var e=this._longDateFormat[t],i=this._longDateFormat[t.toUpperCase()];return e||!i?e:(this._longDateFormat[t]=i.replace(/MMMM|MM|DD|dddd/g,(function(t){return t.slice(1)})),this._longDateFormat[t])},xi.invalidDate=function(){return this._invalidDate},xi.ordinal=function(t){return this._ordinal.replace("%d",t)},xi.preparse=Si,xi.postformat=Si,xi.relativeTime=function(t,e,i,n){var s=this._relativeTime[i];return Y(s)?s(t,e,i,n):s.replace(/%d/i,t)},xi.pastFuture=function(t,e){var i=this._relativeTime[t>0?"future":"past"];return Y(i)?i(e):i.replace(/%s/i,e)},xi.set=function(t){var e,i;for(i in t)Y(e=t[i])?this[i]=e:this["_"+i]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},xi.months=function(t,e){return t?s(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||It).test(e)?"format":"standalone"][t.month()]:s(this._months)?this._months:this._months.standalone},xi.monthsShort=function(t,e){return t?s(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[It.test(e)?"format":"standalone"][t.month()]:s(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},xi.monthsParse=function(t,e,i){var n,s,r;if(this._monthsParseExact)return Rt.call(this,t,e,i);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),n=0;n<12;n++){if(s=f([2e3,n]),i&&!this._longMonthsParse[n]&&(this._longMonthsParse[n]=new RegExp("^"+this.months(s,"").replace(".","")+"$","i"),this._shortMonthsParse[n]=new RegExp("^"+this.monthsShort(s,"").replace(".","")+"$","i")),i||this._monthsParse[n]||(r="^"+this.months(s,"")+"|^"+this.monthsShort(s,""),this._monthsParse[n]=new RegExp(r.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[n].test(t))return n;if(i&&"MMM"===e&&this._shortMonthsParse[n].test(t))return n;if(!i&&this._monthsParse[n].test(t))return n}},xi.monthsRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Wt.call(this),t?this._monthsStrictRegex:this._monthsRegex):(d(this,"_monthsRegex")||(this._monthsRegex=Gt),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},xi.monthsShortRegex=function(t){return this._monthsParseExact?(d(this,"_monthsRegex")||Wt.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(d(this,"_monthsShortRegex")||(this._monthsShortRegex=Ht),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},xi.week=function(t){return Xt(t,this._week.dow,this._week.doy).week},xi.firstDayOfYear=function(){return this._week.doy},xi.firstDayOfWeek=function(){return this._week.dow},xi.weekdays=function(t,e){var i=s(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?Zt(i,this._week.dow):t?i[t.day()]:i},xi.weekdaysMin=function(t){return!0===t?Zt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},xi.weekdaysShort=function(t){return!0===t?Zt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},xi.weekdaysParse=function(t,e,i){var n,s,r;if(this._weekdaysParseExact)return Qt.call(this,t,e,i);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),n=0;n<7;n++){if(s=f([2e3,1]).day(n),i&&!this._fullWeekdaysParse[n]&&(this._fullWeekdaysParse[n]=new RegExp("^"+this.weekdays(s,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[n]=new RegExp("^"+this.weekdaysShort(s,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[n]=new RegExp("^"+this.weekdaysMin(s,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[n]||(r="^"+this.weekdays(s,"")+"|^"+this.weekdaysShort(s,"")+"|^"+this.weekdaysMin(s,""),this._weekdaysParse[n]=new RegExp(r.replace(".",""),"i")),i&&"dddd"===e&&this._fullWeekdaysParse[n].test(t))return n;if(i&&"ddd"===e&&this._shortWeekdaysParse[n].test(t))return n;if(i&&"dd"===e&&this._minWeekdaysParse[n].test(t))return n;if(!i&&this._weekdaysParse[n].test(t))return n}},xi.weekdaysRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(d(this,"_weekdaysRegex")||(this._weekdaysRegex=te),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},xi.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(d(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ee),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},xi.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(d(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(d(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=ie),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},xi.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},xi.meridiem=function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},me("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===D(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),n.lang=M("moment.lang is deprecated. Use moment.locale instead.",me),n.langData=M("moment.langData is deprecated. Use moment.localeData instead.",ge);var Ci=Math.abs;function Yi(t,e,i,n){var s=$e(e,i);return t._milliseconds+=n*s._milliseconds,t._days+=n*s._days,t._months+=n*s._months,t._bubble()}function Pi(t){return t<0?Math.floor(t):Math.ceil(t)}function Ei(t){return 4800*t/146097}function Li(t){return 146097*t/4800}function Ii(t){return function(){return this.as(t)}}var Ai=Ii("ms"),Ni=Ii("s"),Ri=Ii("m"),ji=Ii("h"),Fi=Ii("d"),Hi=Ii("w"),Gi=Ii("M"),Wi=Ii("Q"),zi=Ii("y");function Ui(t){return function(){return this.isValid()?this._data[t]:NaN}}var Vi=Ui("milliseconds"),Bi=Ui("seconds"),Xi=Ui("minutes"),qi=Ui("hours"),Zi=Ui("days"),$i=Ui("months"),Ji=Ui("years"),Ki=Math.round,Qi={ss:44,s:45,m:45,h:22,d:26,M:11};function tn(t,e,i,n,s){return s.relativeTime(e||1,!!i,t,n)}var en=Math.abs;function nn(t){return(t>0)-(t<0)||+t}function sn(){if(!this.isValid())return this.localeData().invalidDate();var t,e,i=en(this._milliseconds)/1e3,n=en(this._days),s=en(this._months);t=k(i/60),e=k(t/60),i%=60,t%=60;var r=k(s/12),o=s%=12,a=n,l=e,h=t,u=i?i.toFixed(3).replace(/\.?0+$/,""):"",d=this.asSeconds();if(!d)return"P0D";var c=d<0?"-":"",f=nn(this._months)!==nn(d)?"-":"",m=nn(this._days)!==nn(d)?"-":"",p=nn(this._milliseconds)!==nn(d)?"-":"";return c+"P"+(r?f+r+"Y":"")+(o?f+o+"M":"")+(a?m+a+"D":"")+(l||h||u?"T":"")+(l?p+l+"H":"")+(h?p+h+"M":"")+(u?p+u+"S":"")}var rn=Fe.prototype;return rn.isValid=function(){return this._isValid},rn.abs=function(){var t=this._data;return this._milliseconds=Ci(this._milliseconds),this._days=Ci(this._days),this._months=Ci(this._months),t.milliseconds=Ci(t.milliseconds),t.seconds=Ci(t.seconds),t.minutes=Ci(t.minutes),t.hours=Ci(t.hours),t.months=Ci(t.months),t.years=Ci(t.years),this},rn.add=function(t,e){return Yi(this,t,e,1)},rn.subtract=function(t,e){return Yi(this,t,e,-1)},rn.as=function(t){if(!this.isValid())return NaN;var e,i,n=this._milliseconds;if("month"===(t=A(t))||"quarter"===t||"year"===t)switch(e=this._days+n/864e5,i=this._months+Ei(e),t){case"month":return i;case"quarter":return i/3;case"year":return i/12}else switch(e=this._days+Math.round(Li(this._months)),t){case"week":return e/7+n/6048e5;case"day":return e+n/864e5;case"hour":return 24*e+n/36e5;case"minute":return 1440*e+n/6e4;case"second":return 86400*e+n/1e3;case"millisecond":return Math.floor(864e5*e)+n;default:throw new Error("Unknown unit "+t)}},rn.asMilliseconds=Ai,rn.asSeconds=Ni,rn.asMinutes=Ri,rn.asHours=ji,rn.asDays=Fi,rn.asWeeks=Hi,rn.asMonths=Gi,rn.asQuarters=Wi,rn.asYears=zi,rn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*D(this._months/12):NaN},rn._bubble=function(){var t,e,i,n,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*Pi(Li(a)+o),o=0,a=0),l.milliseconds=r%1e3,t=k(r/1e3),l.seconds=t%60,e=k(t/60),l.minutes=e%60,i=k(e/60),l.hours=i%24,o+=k(i/24),s=k(Ei(o)),a+=s,o-=Pi(Li(s)),n=k(a/12),a%=12,l.days=o,l.months=a,l.years=n,this},rn.clone=function(){return $e(this)},rn.get=function(t){return t=A(t),this.isValid()?this[t+"s"]():NaN},rn.milliseconds=Vi,rn.seconds=Bi,rn.minutes=Xi,rn.hours=qi,rn.days=Zi,rn.weeks=function(){return k(this.days()/7)},rn.months=$i,rn.years=Ji,rn.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),i=function(t,e,i){var n=$e(t).abs(),s=Ki(n.as("s")),r=Ki(n.as("m")),o=Ki(n.as("h")),a=Ki(n.as("d")),l=Ki(n.as("M")),h=Ki(n.as("y")),u=s<=Qi.ss&&["s",s]||s0,u[4]=i,tn.apply(null,u)}(this,!t,e);return t&&(i=e.pastFuture(+this,i)),e.postformat(i)},rn.toISOString=sn,rn.toString=sn,rn.toJSON=sn,rn.locale=si,rn.localeData=oi,rn.toIsoString=M("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",sn),rn.lang=ri,U("X",0,0,"unix"),U("x",0,0,"valueOf"),ut("x",rt),ut("X",/[+-]?\d+(\.\d{1,3})?/),mt("X",(function(t,e,i){i._d=new Date(1e3*parseFloat(t,10))})),mt("x",(function(t,e,i){i._d=new Date(D(t))})),n.version="2.24.0",e=Ie,n.fn=Di,n.min=function(){return Re("isBefore",[].slice.call(arguments,0))},n.max=function(){return Re("isAfter",[].slice.call(arguments,0))},n.now=function(){return Date.now?Date.now():+new Date},n.utc=f,n.unix=function(t){return Ie(1e3*t)},n.months=function(t,e){return Ti(t,e,"months")},n.isDate=h,n.locale=me,n.invalid=g,n.duration=$e,n.isMoment=w,n.weekdays=function(t,e,i){return Oi(t,e,i,"weekdays")},n.parseZone=function(){return Ie.apply(null,arguments).parseZone()},n.localeData=ge,n.isDuration=He,n.monthsShort=function(t,e){return Ti(t,e,"monthsShort")},n.weekdaysMin=function(t,e,i){return Oi(t,e,i,"weekdaysMin")},n.defineLocale=pe,n.updateLocale=function(t,e){if(null!=e){var i,n,s=he;null!=(n=fe(t))&&(s=n._config),e=P(s,e),(i=new E(e)).parentLocale=ue[t],ue[t]=i,me(t)}else null!=ue[t]&&(null!=ue[t].parentLocale?ue[t]=ue[t].parentLocale:null!=ue[t]&&delete ue[t]);return ue[t]},n.locales=function(){return T(ue)},n.weekdaysShort=function(t,e,i){return Oi(t,e,i,"weekdaysShort")},n.normalizeUnits=A,n.relativeTimeRounding=function(t){return void 0===t?Ki:"function"==typeof t&&(Ki=t,!0)},n.relativeTimeThreshold=function(t,e){return void 0!==Qi[t]&&(void 0===e?Qi[t]:(Qi[t]=e,"s"===t&&(Qi.ss=e-1),!0))},n.calendarFormat=function(t,e){var i=t.diff(e,"days",!0);return i<-6?"sameElse":i<-1?"lastWeek":i<0?"lastDay":i<1?"sameDay":i<2?"nextDay":i<7?"nextWeek":"sameElse"},n.prototype=Di,n.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},n}()})),u=[],d=0;d<256;d++)u[d]=(d+256).toString(16).substr(1);for(var c=function(){if("undefined"!=typeof crypto&&crypto.getRandomValues){var t=new Uint8Array(16);return function(){return crypto.getRandomValues(t),t}}var e=new Array(16);return function(){for(var t,i=0;i<16;i++)0==(3&i)&&(t=4294967296*Math.random()),e[i]=t>>>((3&i)<<3)&255;return e}}(),f=[],m=0;m<256;m++)f[m]=(m+256).toString(16).substr(1);var p=c();p[0],p[1],p[2],p[3],p[4],p[5],p[6],p[7];function g(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1?arguments[1]:void 0,i=arguments.length>2?arguments[2]:void 0,n=e&&i||0;"string"==typeof t&&(e="binary"===t?new Array(16):void 0,t={});var s=t.random||(t.rng||c)();if(s[6]=15&s[6]|64,s[8]=63&s[8]|128,e)for(var r=0;r<16;r++)e[n+r]=s[r];return e||function(t,e){var i=e||0,n=u;return n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]}(s)}function v(t,e){var i=Object.keys(t);return Object.getOwnPropertySymbols&&i.push.apply(i,Object.getOwnPropertySymbols(t)),e&&(i=i.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i}var y=/^\/?Date\((-?\d+)/i,_=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,b=/^#?([a-f\d])([a-f\d])([a-f\d])$/i;function w(t){return t instanceof Number||"number"==typeof t}function k(t){if(t)for(;!0===t.hasChildNodes();){var e=t.firstChild;e&&(k(e),t.removeChild(e))}}function D(t){return t instanceof String||"string"==typeof t}function S(t){return"object"===l(t)&&null!==t}function x(t){if(t instanceof Date)return!0;if(D(t)){if(y.exec(t))return!0;if(!isNaN(Date.parse(t)))return!0}return!1}function M(t){return h.isMoment(t)}function T(t,e,i,n){var s=!1;!0===n&&(s=null===e[i]&&void 0!==t[i]),s?delete t[i]:t[i]=e[i]}function O(t,e){var i=arguments.length>2&&void 0!==arguments[2]&&arguments[2];for(var n in t)if(void 0!==e[n])if(null===e[n]||"object"!==l(e[n]))T(t,e,n,i);else{var s=t[n],r=e[n];S(s)&&S(r)&&O(s,r,i)}}var C=Object.assign;function Y(t,e){if(!Array.isArray(t))throw new Error("Array with property names expected as first argument");for(var i=arguments.length,n=new Array(i>2?i-2:0),s=2;s3&&void 0!==arguments[3]&&arguments[3];if(Array.isArray(i))throw new TypeError("Arrays are not supported by deepExtend");for(var s=0;s3&&void 0!==arguments[3]&&arguments[3];if(Array.isArray(i))throw new TypeError("Arrays are not supported by deepExtend");for(var s in i)if(Object.prototype.hasOwnProperty.call(i,s)&&-1===t.indexOf(s))if(i[s]&&i[s].constructor===Object)void 0===e[s]&&(e[s]={}),e[s].constructor===Object?L(e[s],i[s]):T(e,i,s,n);else if(Array.isArray(i[s])){e[s]=[];for(var r=0;r2&&void 0!==arguments[2]&&arguments[2],n=arguments.length>3&&void 0!==arguments[3]&&arguments[3];for(var s in e)if(Object.prototype.hasOwnProperty.call(e,s)||!0===i)if(e[s]&&e[s].constructor===Object)void 0===t[s]&&(t[s]={}),t[s].constructor===Object?L(t[s],e[s],i):T(t,e,s,n);else if(Array.isArray(e[s])){t[s]=[];for(var r=0;r=0&&(e="DOMMouseScroll"),t.addEventListener(e,i,n)):t.attachEvent("on"+e,i)}function Z(t,e,i,n){t.removeEventListener?(void 0===n&&(n=!1),"mousewheel"===e&&navigator.userAgent.indexOf("Firefox")>=0&&(e="DOMMouseScroll"),t.removeEventListener(e,i,n)):t.detachEvent("on"+e,i)}function $(t){t||(t=window.event),t&&(t.preventDefault?t.preventDefault():t.returnValue=!1)}function J(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window.event,e=null;return t&&(t.target?e=t.target:t.srcElement&&(e=t.srcElement)),e instanceof Element&&(null==e.nodeType||3!=e.nodeType||(e=e.parentNode)instanceof Element)?e:null}function K(t,e){for(var i=t;i;){if(i===e)return!0;if(!i.parentNode)return!1;i=i.parentNode}return!1}var Q={asBoolean:function(t,e){return"function"==typeof t&&(t=t()),null!=t?0!=t:e||null},asNumber:function(t,e){return"function"==typeof t&&(t=t()),null!=t?Number(t)||e||null:e||null},asString:function(t,e){return"function"==typeof t&&(t=t()),null!=t?String(t):e||null},asSize:function(t,e){return"function"==typeof t&&(t=t()),D(t)?t:w(t)?t+"px":e||null},asElement:function(t,e){return"function"==typeof t&&(t=t()),t||e||null}};function tt(t){var e;switch(t.length){case 3:case 4:return(e=b.exec(t))?{r:parseInt(e[1]+e[1],16),g:parseInt(e[2]+e[2],16),b:parseInt(e[3]+e[3],16)}:null;case 6:case 7:return(e=_.exec(t))?{r:parseInt(e[1],16),g:parseInt(e[2],16),b:parseInt(e[3],16)}:null;default:return null}}function et(t,e){if(-1!==t.indexOf("rgba"))return t;if(-1!==t.indexOf("rgb")){var i=t.substr(t.indexOf("(")+1).replace(")","").split(",");return"rgba("+i[0]+","+i[1]+","+i[2]+","+e+")"}var n=tt(t);return null==n?t:"rgba("+n.r+","+n.g+","+n.b+","+e+")"}function it(t,e,i){return"#"+((1<<24)+(t<<16)+(e<<8)+i).toString(16).slice(1)}function nt(t,e){if(D(t)){var i=t;if(ct(i)){var n=i.substr(4).substr(0,i.length-5).split(",").map((function(t){return parseInt(t)}));i=it(n[0],n[1],n[2])}if(!0===dt(i)){var s=ut(i),r={h:s.h,s:.8*s.s,v:Math.min(1,1.02*s.v)},o={h:s.h,s:Math.min(1,1.25*s.s),v:.8*s.v},a=ht(o.h,o.s,o.v),l=ht(r.h,r.s,r.v);return{background:i,border:a,highlight:{background:l,border:a},hover:{background:l,border:a}}}return{background:i,border:i,highlight:{background:i,border:i},hover:{background:i,border:i}}}return e?{background:t.background||e.background,border:t.border||e.border,highlight:D(t.highlight)?{border:t.highlight,background:t.highlight}:{background:t.highlight&&t.highlight.background||e.highlight.background,border:t.highlight&&t.highlight.border||e.highlight.border},hover:D(t.hover)?{border:t.hover,background:t.hover}:{border:t.hover&&t.hover.border||e.hover.border,background:t.hover&&t.hover.background||e.hover.background}}:{background:t.background||void 0,border:t.border||void 0,highlight:D(t.highlight)?{border:t.highlight,background:t.highlight}:{background:t.highlight&&t.highlight.background||void 0,border:t.highlight&&t.highlight.border||void 0},hover:D(t.hover)?{border:t.hover,background:t.hover}:{border:t.hover&&t.hover.border||void 0,background:t.hover&&t.hover.background||void 0}}}function st(t,e,i){t/=255,e/=255,i/=255;var n=Math.min(t,Math.min(e,i)),s=Math.max(t,Math.max(e,i));return n===s?{h:0,s:0,v:n}:{h:60*((t===n?3:i===n?1:5)-(t===n?e-i:i===n?t-e:i-t)/(s-n))/360,s:(s-n)/s,v:s}}var rt={split:function(t){var e={};return t.split(";").forEach((function(t){if(""!=t.trim()){var i=t.split(":"),n=i[0].trim(),s=i[1].trim();e[n]=s}})),e},join:function(t){return Object.keys(t).map((function(e){return e+": "+t[e]})).join("; ")}};function ot(t,i){var n=function(t){for(var i=1;i0&&e(n,t[s-1])<0;s--)t[s]=t[s-1];t[s]=n}return t}function vt(t,e,i){var n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},s=function(t){return null!=t},r=function(t){return null!==t&&"object"===l(t)};if(!r(t))throw new Error("Parameter mergeTarget must be an object");if(!r(e))throw new Error("Parameter options must be an object");if(!s(i))throw new Error("Parameter option must have a value");if(!r(n))throw new Error("Parameter globalOptions must be an object");var o=e[i],a=r(n)&&!function(t){for(var e in t)if(Object.prototype.hasOwnProperty.call(t,e))return!1;return!0}(n)?n[i]:void 0,h=a?a.enabled:void 0;if(void 0!==o){if("boolean"==typeof o)return r(t[i])||(t[i]={}),void(t[i].enabled=o);if(null===o&&!r(t[i])){if(!s(a))return;t[i]=Object.create(a)}if(r(o)){var u=!0;void 0!==o.enabled?u=o.enabled:void 0!==h&&(u=a.enabled),function(t,e,i){r(t[i])||(t[i]={});var n=e[i],s=t[i];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(s[o]=n[o])}(t,e,i),t[i].enabled=u}}}function yt(t,e,i,n){for(var s=0,r=0,o=t.length-1;r<=o&&s<1e4;){var a=Math.floor((r+o)/2),l=t[a],h=e(void 0===n?l[i]:l[i][n]);if(0==h)return a;-1==h?r=a+1:o=a-1,s++}return-1}function _t(t,e,i,n,s){var r,o,a,l,h=0,u=0,d=t.length-1;for(s=null!=s?s:function(t,e){return t==e?0:t0)return"before"==n?Math.max(0,l-1):l;if(s(o,e)<0&&s(a,e)>0)return"before"==n?l:Math.min(t.length-1,l+1);s(o,e)<0?u=l+1:d=l-1,h++}return-1}var bt={linear:function(t){return t},easeInQuad:function(t){return t*t},easeOutQuad:function(t){return t*(2-t)},easeInOutQuad:function(t){return t<.5?2*t*t:(4-2*t)*t-1},easeInCubic:function(t){return t*t*t},easeOutCubic:function(t){return--t*t*t+1},easeInOutCubic:function(t){return t<.5?4*t*t*t:(t-1)*(2*t-2)*(2*t-2)+1},easeInQuart:function(t){return t*t*t*t},easeOutQuart:function(t){return 1- --t*t*t*t},easeInOutQuart:function(t){return t<.5?8*t*t*t*t:1-8*--t*t*t*t},easeInQuint:function(t){return t*t*t*t*t},easeOutQuint:function(t){return 1+--t*t*t*t*t},easeInOutQuint:function(t){return t<.5?16*t*t*t*t*t:1+16*--t*t*t*t*t}};function wt(){var t=document.createElement("p");t.style.width="100%",t.style.height="200px";var e=document.createElement("div");e.style.position="absolute",e.style.top="0px",e.style.left="0px",e.style.visibility="hidden",e.style.width="200px",e.style.height="150px",e.style.overflow="hidden",e.appendChild(t),document.body.appendChild(e);var i=t.offsetWidth;e.style.overflow="scroll";var n=t.offsetWidth;return i==n&&(n=e.clientWidth),document.body.removeChild(e),i-n}function kt(t,e){var i;Array.isArray(e)||(e=[e]);var n=!0,s=!1,r=void 0;try{for(var o,a=t[Symbol.iterator]();!(n=(o=a.next()).done);n=!0){var l=o.value;if(l){i=l[e[0]];for(var h=1;h0?(n=e[t].redundant[0],e[t].redundant.shift()):(n=document.createElementNS("http://www.w3.org/2000/svg",t),i.appendChild(n)):(n=document.createElementNS("http://www.w3.org/2000/svg",t),e[t]={used:[],redundant:[]},i.appendChild(n)),e[t].used.push(n),n}function Ct(t,e,i,n){var s;return e.hasOwnProperty(t)?e[t].redundant.length>0?(s=e[t].redundant[0],e[t].redundant.shift()):(s=document.createElement(t),void 0!==n?i.insertBefore(s,n):i.appendChild(s)):(s=document.createElement(t),e[t]={used:[],redundant:[]},void 0!==n?i.insertBefore(s,n):i.appendChild(s)),e[t].used.push(s),s}function Yt(t,e,i,n,s,r){var o;if("circle"==i.style?((o=Ot("circle",n,s)).setAttributeNS(null,"cx",t),o.setAttributeNS(null,"cy",e),o.setAttributeNS(null,"r",.5*i.size)):((o=Ot("rect",n,s)).setAttributeNS(null,"x",t-.5*i.size),o.setAttributeNS(null,"y",e-.5*i.size),o.setAttributeNS(null,"width",i.size),o.setAttributeNS(null,"height",i.size)),void 0!==i.styles&&o.setAttributeNS(null,"style",i.styles),o.setAttributeNS(null,"class",i.className+" vis-point"),r){var a=Ot("text",n,s);r.xOffset&&(t+=r.xOffset),r.yOffset&&(e+=r.yOffset),r.content&&(a.textContent=r.content),r.className&&a.setAttributeNS(null,"class",r.className+" vis-label"),a.setAttributeNS(null,"x",t),a.setAttributeNS(null,"y",e)}return o}function Pt(t,e,i,n,s,r,o,a){if(0!=n){n<0&&(e-=n*=-1);var l=Ot("rect",r,o);l.setAttributeNS(null,"x",t-.5*i),l.setAttributeNS(null,"y",e),l.setAttributeNS(null,"width",i),l.setAttributeNS(null,"height",n),l.setAttributeNS(null,"class",s),a&&l.setAttributeNS(null,"style",a)}}function Et(){return navigator?navigator.languages&&navigator.languages.length?navigator.languages:navigator.userLanguage||navigator.language||navigator.browserLanguage||"en":"en"}var Lt=Object.freeze({prepareElements:xt,cleanupElements:Mt,resetElements:Tt,getSVGElement:Ot,getDOMElement:Ct,drawPoint:Yt,drawBar:Pt,getNavigatorLanguage:Et}); +/** + * vis-data - data + * http://visjs.org/ + * + * Manage unstructured data using DataSet. Add, update, and remove data, and listen for changes in the data. + * + * @version 6.1.0 + * @date 2019-07-16T13:37:00Z + * + * @copyright (c) 2011-2017 Almende B.V, http://almende.com + * @copyright (c) 2018-2019 visjs contributors, https://github.com/visjs + * + * @license + * vis.js is dual licensed under both + * + * 1. The Apache 2.0 License + * http://www.apache.org/licenses/LICENSE-2.0 + * + * and + * + * 2. The MIT License + * http://opensource.org/licenses/MIT + * + * vis.js may be distributed under either license. + */var It=function(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t};function At(t,e){return t(e={exports:{}},e.exports),e.exports}var Nt=At((function(t){function e(t){return(e="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(n){return"function"==typeof Symbol&&"symbol"===e(Symbol.iterator)?t.exports=i=function(t){return e(t)}:t.exports=i=function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":e(t)},i(n)}t.exports=i}));var Rt=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")};function jt(t,e){for(var i=0;i>>((3&i)<<3)&255;return e}}(),qt=[],Zt=0;Zt<256;Zt++)qt[Zt]=(Zt+256).toString(16).substr(1);var $t=Xt();$t[0],$t[1],$t[2],$t[3],$t[4],$t[5],$t[6],$t[7];function Jt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=arguments.length>1?arguments[1]:void 0,i=arguments.length>2?arguments[2]:void 0,n=e&&i||0;"string"==typeof t&&(e="binary"===t?new Array(16):void 0,t={});var s=t.random||(t.rng||Xt)();if(s[6]=15&s[6]|64,s[8]=63&s[8]|128,e)for(var r=0;r<16;r++)e[n+r]=s[r];return e||function(t,e){var i=e||0,n=Vt;return n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+"-"+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]+n[t[i++]]}(s)}function Kt(t){return(Kt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function Qt(){throw new Error("Dynamic requires are not currently supported by rollup-plugin-commonjs")}for(var te=function(t,e){return t(e={exports:{}},e.exports),e.exports}((function(t,e){t.exports=function(){var e,i;function n(){return e.apply(null,arguments)}function s(t){return t instanceof Array||"[object Array]"===Object.prototype.toString.call(t)}function r(t){return null!=t&&"[object Object]"===Object.prototype.toString.call(t)}function o(t){return void 0===t}function a(t){return"number"==typeof t||"[object Number]"===Object.prototype.toString.call(t)}function l(t){return t instanceof Date||"[object Date]"===Object.prototype.toString.call(t)}function h(t,e){var i,n=[];for(i=0;i>>0,n=0;n0)for(i=0;i=0?i?"+":"":"-")+Math.pow(10,Math.max(0,s)).toString().substr(1)+n}var F=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,H=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,G={},W={};function z(t,e,i,n){var s=n;"string"==typeof n&&(s=function(){return this[n]()}),t&&(W[t]=s),e&&(W[e[0]]=function(){return j(s.apply(this,arguments),e[1],e[2])}),i&&(W[i]=function(){return this.localeData().ordinal(s.apply(this,arguments),t)})}function U(t,e){return t.isValid()?(e=V(e,t.localeData()),G[e]=G[e]||function(t){var e,i,n,s=t.match(F);for(e=0,i=s.length;e=0&&H.test(t);)t=t.replace(H,n),H.lastIndex=0,i-=1;return t}var B=/\d/,X=/\d\d/,q=/\d{3}/,Z=/\d{4}/,$=/[+-]?\d{6}/,J=/\d\d?/,K=/\d\d\d\d?/,Q=/\d\d\d\d\d\d?/,tt=/\d{1,3}/,et=/\d{1,4}/,it=/[+-]?\d{1,6}/,nt=/\d+/,st=/[+-]?\d+/,rt=/Z|[+-]\d\d:?\d\d/gi,ot=/Z|[+-]\d\d(?::?\d\d)?/gi,at=/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,lt={};function ht(t,e,i){lt[t]=C(e)?e:function(t,n){return t&&i?i:e}}function ut(t,e){return u(lt,t)?lt[t](e._strict,e._locale):new RegExp(dt(t.replace("\\","").replace(/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,(function(t,e,i,n,s){return e||i||n||s}))))}function dt(t){return t.replace(/[-\/\\^$*+?.()|[\]{}]/g,"\\$&")}var ct={};function ft(t,e){var i,n=e;for("string"==typeof t&&(t=[t]),a(e)&&(n=function(t,i){i[e]=k(t)}),i=0;i68?1900:2e3)};var Tt,Ot=Ct("FullYear",!0);function Ct(t,e){return function(i){return null!=i?(Pt(this,t,i),n.updateOffset(this,e),this):Yt(this,t)}}function Yt(t,e){return t.isValid()?t._d["get"+(t._isUTC?"UTC":"")+e]():NaN}function Pt(t,e,i){t.isValid()&&!isNaN(i)&&("FullYear"===e&&Mt(t.year())&&1===t.month()&&29===t.date()?t._d["set"+(t._isUTC?"UTC":"")+e](i,t.month(),Et(i,t.month())):t._d["set"+(t._isUTC?"UTC":"")+e](i))}function Et(t,e){if(isNaN(t)||isNaN(e))return NaN;var i,n=(e%(i=12)+i)%i;return t+=(e-n)/12,1===n?Mt(t)?29:28:31-n%7%2}Tt=Array.prototype.indexOf?Array.prototype.indexOf:function(t){var e;for(e=0;e=0?(a=new Date(t+400,e,i,n,s,r,o),isFinite(a.getFullYear())&&a.setFullYear(t)):a=new Date(t,e,i,n,s,r,o),a}function zt(t){var e;if(t<100&&t>=0){var i=Array.prototype.slice.call(arguments);i[0]=t+400,e=new Date(Date.UTC.apply(null,i)),isFinite(e.getUTCFullYear())&&e.setUTCFullYear(t)}else e=new Date(Date.UTC.apply(null,arguments));return e}function Ut(t,e,i){var n=7+e-i;return-(7+zt(t,0,n).getUTCDay()-e)%7+n-1}function Vt(t,e,i,n,s){var r,o,a=1+7*(e-1)+(7+i-n)%7+Ut(t,n,s);return a<=0?o=xt(r=t-1)+a:a>xt(t)?(r=t+1,o=a-xt(t)):(r=t,o=a),{year:r,dayOfYear:o}}function Bt(t,e,i){var n,s,r=Ut(t.year(),e,i),o=Math.floor((t.dayOfYear()-r-1)/7)+1;return o<1?n=o+Xt(s=t.year()-1,e,i):o>Xt(t.year(),e,i)?(n=o-Xt(t.year(),e,i),s=t.year()+1):(s=t.year(),n=o),{week:n,year:s}}function Xt(t,e,i){var n=Ut(t,e,i),s=Ut(t+1,e,i);return(xt(t)-n+s)/7}function qt(t,e){return t.slice(e,7).concat(t.slice(0,e))}z("w",["ww",2],"wo","week"),z("W",["WW",2],"Wo","isoWeek"),L("week","w"),L("isoWeek","W"),R("week",5),R("isoWeek",5),ht("w",J),ht("ww",J,X),ht("W",J),ht("WW",J,X),mt(["w","ww","W","WW"],(function(t,e,i,n){e[n.substr(0,1)]=k(t)})),z("d",0,"do","day"),z("dd",0,0,(function(t){return this.localeData().weekdaysMin(this,t)})),z("ddd",0,0,(function(t){return this.localeData().weekdaysShort(this,t)})),z("dddd",0,0,(function(t){return this.localeData().weekdays(this,t)})),z("e",0,0,"weekday"),z("E",0,0,"isoWeekday"),L("day","d"),L("weekday","e"),L("isoWeekday","E"),R("day",11),R("weekday",11),R("isoWeekday",11),ht("d",J),ht("e",J),ht("E",J),ht("dd",(function(t,e){return e.weekdaysMinRegex(t)})),ht("ddd",(function(t,e){return e.weekdaysShortRegex(t)})),ht("dddd",(function(t,e){return e.weekdaysRegex(t)})),mt(["dd","ddd","dddd"],(function(t,e,i,n){var s=i._locale.weekdaysParse(t,n,i._strict);null!=s?e.d=s:f(i).invalidWeekday=t})),mt(["d","e","E"],(function(t,e,i,n){e[n]=k(t)}));var Zt="Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),$t="Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),Jt="Su_Mo_Tu_We_Th_Fr_Sa".split("_");function Kt(t,e,i){var n,s,r,o=t.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],n=0;n<7;++n)r=c([2e3,1]).day(n),this._minWeekdaysParse[n]=this.weekdaysMin(r,"").toLocaleLowerCase(),this._shortWeekdaysParse[n]=this.weekdaysShort(r,"").toLocaleLowerCase(),this._weekdaysParse[n]=this.weekdays(r,"").toLocaleLowerCase();return i?"dddd"===e?-1!==(s=Tt.call(this._weekdaysParse,o))?s:null:"ddd"===e?-1!==(s=Tt.call(this._shortWeekdaysParse,o))?s:null:-1!==(s=Tt.call(this._minWeekdaysParse,o))?s:null:"dddd"===e?-1!==(s=Tt.call(this._weekdaysParse,o))?s:-1!==(s=Tt.call(this._shortWeekdaysParse,o))?s:-1!==(s=Tt.call(this._minWeekdaysParse,o))?s:null:"ddd"===e?-1!==(s=Tt.call(this._shortWeekdaysParse,o))?s:-1!==(s=Tt.call(this._weekdaysParse,o))?s:-1!==(s=Tt.call(this._minWeekdaysParse,o))?s:null:-1!==(s=Tt.call(this._minWeekdaysParse,o))?s:-1!==(s=Tt.call(this._weekdaysParse,o))?s:-1!==(s=Tt.call(this._shortWeekdaysParse,o))?s:null}var te=at,ee=at,ie=at;function ne(){function t(t,e){return e.length-t.length}var e,i,n,s,r,o=[],a=[],l=[],h=[];for(e=0;e<7;e++)i=c([2e3,1]).day(e),n=this.weekdaysMin(i,""),s=this.weekdaysShort(i,""),r=this.weekdays(i,""),o.push(n),a.push(s),l.push(r),h.push(n),h.push(s),h.push(r);for(o.sort(t),a.sort(t),l.sort(t),h.sort(t),e=0;e<7;e++)a[e]=dt(a[e]),l[e]=dt(l[e]),h[e]=dt(h[e]);this._weekdaysRegex=new RegExp("^("+h.join("|")+")","i"),this._weekdaysShortRegex=this._weekdaysRegex,this._weekdaysMinRegex=this._weekdaysRegex,this._weekdaysStrictRegex=new RegExp("^("+l.join("|")+")","i"),this._weekdaysShortStrictRegex=new RegExp("^("+a.join("|")+")","i"),this._weekdaysMinStrictRegex=new RegExp("^("+o.join("|")+")","i")}function se(){return this.hours()%12||12}function re(t,e){z(t,0,0,(function(){return this.localeData().meridiem(this.hours(),this.minutes(),e)}))}function oe(t,e){return e._meridiemParse}z("H",["HH",2],0,"hour"),z("h",["hh",2],0,se),z("k",["kk",2],0,(function(){return this.hours()||24})),z("hmm",0,0,(function(){return""+se.apply(this)+j(this.minutes(),2)})),z("hmmss",0,0,(function(){return""+se.apply(this)+j(this.minutes(),2)+j(this.seconds(),2)})),z("Hmm",0,0,(function(){return""+this.hours()+j(this.minutes(),2)})),z("Hmmss",0,0,(function(){return""+this.hours()+j(this.minutes(),2)+j(this.seconds(),2)})),re("a",!0),re("A",!1),L("hour","h"),R("hour",13),ht("a",oe),ht("A",oe),ht("H",J),ht("h",J),ht("k",J),ht("HH",J,X),ht("hh",J,X),ht("kk",J,X),ht("hmm",K),ht("hmmss",Q),ht("Hmm",K),ht("Hmmss",Q),ft(["H","HH"],_t),ft(["k","kk"],(function(t,e,i){var n=k(t);e[_t]=24===n?0:n})),ft(["a","A"],(function(t,e,i){i._isPm=i._locale.isPM(t),i._meridiem=t})),ft(["h","hh"],(function(t,e,i){e[_t]=k(t),f(i).bigHour=!0})),ft("hmm",(function(t,e,i){var n=t.length-2;e[_t]=k(t.substr(0,n)),e[bt]=k(t.substr(n)),f(i).bigHour=!0})),ft("hmmss",(function(t,e,i){var n=t.length-4,s=t.length-2;e[_t]=k(t.substr(0,n)),e[bt]=k(t.substr(n,2)),e[wt]=k(t.substr(s)),f(i).bigHour=!0})),ft("Hmm",(function(t,e,i){var n=t.length-2;e[_t]=k(t.substr(0,n)),e[bt]=k(t.substr(n))})),ft("Hmmss",(function(t,e,i){var n=t.length-4,s=t.length-2;e[_t]=k(t.substr(0,n)),e[bt]=k(t.substr(n,2)),e[wt]=k(t.substr(s))}));var ae,le=Ct("Hours",!0),he={calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},longDateFormat:{LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},invalidDate:"Invalid date",ordinal:"%d",dayOfMonthOrdinalParse:/\d{1,2}/,relativeTime:{future:"in %s",past:"%s ago",s:"a few seconds",ss:"%d seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"},months:It,monthsShort:At,week:{dow:0,doy:6},weekdays:Zt,weekdaysMin:Jt,weekdaysShort:$t,meridiemParse:/[ap]\.?m?\.?/i},ue={},de={};function ce(t){return t?t.toLowerCase().replace("_","-"):t}function fe(e){var i=null;if(!ue[e]&&t&&t.exports)try{i=ae._abbr,Qt(),me(i)}catch(t){}return ue[e]}function me(t,e){var i;return t&&((i=o(e)?ge(t):pe(t,e))?ae=i:"undefined"!=typeof console&&console.warn&&console.warn("Locale "+t+" not found. Did you forget to load it?")),ae._abbr}function pe(t,e){if(null!==e){var i,n=he;if(e.abbr=t,null!=ue[t])O("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."),n=ue[t]._config;else if(null!=e.parentLocale)if(null!=ue[e.parentLocale])n=ue[e.parentLocale]._config;else{if(null==(i=fe(e.parentLocale)))return de[e.parentLocale]||(de[e.parentLocale]=[]),de[e.parentLocale].push({name:t,config:e}),null;n=i._config}return ue[t]=new P(Y(n,e)),de[t]&&de[t].forEach((function(t){pe(t.name,t.config)})),me(t),ue[t]}return delete ue[t],null}function ge(t){var e;if(t&&t._locale&&t._locale._abbr&&(t=t._locale._abbr),!t)return ae;if(!s(t)){if(e=fe(t))return e;t=[t]}return function(t){for(var e,i,n,s,r=0;r0;){if(n=fe(s.slice(0,e).join("-")))return n;if(i&&i.length>=e&&D(s,i,!0)>=e-1)break;e--}r++}return ae}(t)}function ve(t){var e,i=t._a;return i&&-2===f(t).overflow&&(e=i[vt]<0||i[vt]>11?vt:i[yt]<1||i[yt]>Et(i[gt],i[vt])?yt:i[_t]<0||i[_t]>24||24===i[_t]&&(0!==i[bt]||0!==i[wt]||0!==i[kt])?_t:i[bt]<0||i[bt]>59?bt:i[wt]<0||i[wt]>59?wt:i[kt]<0||i[kt]>999?kt:-1,f(t)._overflowDayOfYear&&(eyt)&&(e=yt),f(t)._overflowWeeks&&-1===e&&(e=Dt),f(t)._overflowWeekday&&-1===e&&(e=St),f(t).overflow=e),t}function ye(t,e,i){return null!=t?t:null!=e?e:i}function _e(t){var e,i,s,r,o,a=[];if(!t._d){for(s=function(t){var e=new Date(n.now());return t._useUTC?[e.getUTCFullYear(),e.getUTCMonth(),e.getUTCDate()]:[e.getFullYear(),e.getMonth(),e.getDate()]}(t),t._w&&null==t._a[yt]&&null==t._a[vt]&&function(t){var e,i,n,s,r,o,a,l;if(null!=(e=t._w).GG||null!=e.W||null!=e.E)r=1,o=4,i=ye(e.GG,t._a[gt],Bt(Ie(),1,4).year),n=ye(e.W,1),((s=ye(e.E,1))<1||s>7)&&(l=!0);else{r=t._locale._week.dow,o=t._locale._week.doy;var h=Bt(Ie(),r,o);i=ye(e.gg,t._a[gt],h.year),n=ye(e.w,h.week),null!=e.d?((s=e.d)<0||s>6)&&(l=!0):null!=e.e?(s=e.e+r,(e.e<0||e.e>6)&&(l=!0)):s=r}n<1||n>Xt(i,r,o)?f(t)._overflowWeeks=!0:null!=l?f(t)._overflowWeekday=!0:(a=Vt(i,n,s,r,o),t._a[gt]=a.year,t._dayOfYear=a.dayOfYear)}(t),null!=t._dayOfYear&&(o=ye(t._a[gt],s[gt]),(t._dayOfYear>xt(o)||0===t._dayOfYear)&&(f(t)._overflowDayOfYear=!0),i=zt(o,0,t._dayOfYear),t._a[vt]=i.getUTCMonth(),t._a[yt]=i.getUTCDate()),e=0;e<3&&null==t._a[e];++e)t._a[e]=a[e]=s[e];for(;e<7;e++)t._a[e]=a[e]=null==t._a[e]?2===e?1:0:t._a[e];24===t._a[_t]&&0===t._a[bt]&&0===t._a[wt]&&0===t._a[kt]&&(t._nextDay=!0,t._a[_t]=0),t._d=(t._useUTC?zt:Wt).apply(null,a),r=t._useUTC?t._d.getUTCDay():t._d.getDay(),null!=t._tzm&&t._d.setUTCMinutes(t._d.getUTCMinutes()-t._tzm),t._nextDay&&(t._a[_t]=24),t._w&&void 0!==t._w.d&&t._w.d!==r&&(f(t).weekdayMismatch=!0)}}var be=/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,we=/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([\+\-]\d\d(?::?\d\d)?|\s*Z)?)?$/,ke=/Z|[+-]\d\d(?::?\d\d)?/,De=[["YYYYYY-MM-DD",/[+-]\d{6}-\d\d-\d\d/],["YYYY-MM-DD",/\d{4}-\d\d-\d\d/],["GGGG-[W]WW-E",/\d{4}-W\d\d-\d/],["GGGG-[W]WW",/\d{4}-W\d\d/,!1],["YYYY-DDD",/\d{4}-\d{3}/],["YYYY-MM",/\d{4}-\d\d/,!1],["YYYYYYMMDD",/[+-]\d{10}/],["YYYYMMDD",/\d{8}/],["GGGG[W]WWE",/\d{4}W\d{3}/],["GGGG[W]WW",/\d{4}W\d{2}/,!1],["YYYYDDD",/\d{7}/]],Se=[["HH:mm:ss.SSSS",/\d\d:\d\d:\d\d\.\d+/],["HH:mm:ss,SSSS",/\d\d:\d\d:\d\d,\d+/],["HH:mm:ss",/\d\d:\d\d:\d\d/],["HH:mm",/\d\d:\d\d/],["HHmmss.SSSS",/\d\d\d\d\d\d\.\d+/],["HHmmss,SSSS",/\d\d\d\d\d\d,\d+/],["HHmmss",/\d\d\d\d\d\d/],["HHmm",/\d\d\d\d/],["HH",/\d\d/]],xe=/^\/?Date\((\-?\d+)/i;function Me(t){var e,i,n,s,r,o,a=t._i,l=be.exec(a)||we.exec(a);if(l){for(f(t).iso=!0,e=0,i=De.length;e0&&f(t).unusedInput.push(o),a=a.slice(a.indexOf(i)+i.length),h+=i.length),W[r]?(i?f(t).empty=!1:f(t).unusedTokens.push(r),pt(r,i,t)):t._strict&&!i&&f(t).unusedTokens.push(r);f(t).charsLeftOver=l-h,a.length>0&&f(t).unusedInput.push(a),t._a[_t]<=12&&!0===f(t).bigHour&&t._a[_t]>0&&(f(t).bigHour=void 0),f(t).parsedDateParts=t._a.slice(0),f(t).meridiem=t._meridiem,t._a[_t]=function(t,e,i){var n;return null==i?e:null!=t.meridiemHour?t.meridiemHour(e,i):null!=t.isPM?((n=t.isPM(i))&&e<12&&(e+=12),n||12!==e||(e=0),e):e}(t._locale,t._a[_t],t._meridiem),_e(t),ve(t)}else Ye(t);else Me(t)}function Ee(t){var e=t._i,i=t._f;return t._locale=t._locale||ge(t._l),null===e||void 0===i&&""===e?p({nullInput:!0}):("string"==typeof e&&(t._i=e=t._locale.preparse(e)),b(e)?new _(ve(e)):(l(e)?t._d=e:s(i)?function(t){var e,i,n,s,r;if(0===t._f.length)return f(t).invalidFormat=!0,void(t._d=new Date(NaN));for(s=0;sthis?this:t:p()}));function Re(t,e){var i,n;if(1===e.length&&s(e[0])&&(e=e[0]),!e.length)return Ie();for(i=e[0],n=1;n=0?new Date(t+400,e,i)-ui:new Date(t,e,i).valueOf()}function fi(t,e,i){return t<100&&t>=0?Date.UTC(t+400,e,i)-ui:Date.UTC(t,e,i)}function mi(t,e){z(0,[t,t.length],0,e)}function pi(t,e,i,n,s){var r;return null==t?Bt(this,n,s).year:(e>(r=Xt(t,n,s))&&(e=r),gi.call(this,t,e,i,n,s))}function gi(t,e,i,n,s){var r=Vt(t,e,i,n,s),o=zt(r.year,0,r.dayOfYear);return this.year(o.getUTCFullYear()),this.month(o.getUTCMonth()),this.date(o.getUTCDate()),this}z(0,["gg",2],0,(function(){return this.weekYear()%100})),z(0,["GG",2],0,(function(){return this.isoWeekYear()%100})),mi("gggg","weekYear"),mi("ggggg","weekYear"),mi("GGGG","isoWeekYear"),mi("GGGGG","isoWeekYear"),L("weekYear","gg"),L("isoWeekYear","GG"),R("weekYear",1),R("isoWeekYear",1),ht("G",st),ht("g",st),ht("GG",J,X),ht("gg",J,X),ht("GGGG",et,Z),ht("gggg",et,Z),ht("GGGGG",it,$),ht("ggggg",it,$),mt(["gggg","ggggg","GGGG","GGGGG"],(function(t,e,i,n){e[n.substr(0,2)]=k(t)})),mt(["gg","GG"],(function(t,e,i,s){e[s]=n.parseTwoDigitYear(t)})),z("Q",0,"Qo","quarter"),L("quarter","Q"),R("quarter",7),ht("Q",B),ft("Q",(function(t,e){e[vt]=3*(k(t)-1)})),z("D",["DD",2],"Do","date"),L("date","D"),R("date",9),ht("D",J),ht("DD",J,X),ht("Do",(function(t,e){return t?e._dayOfMonthOrdinalParse||e._ordinalParse:e._dayOfMonthOrdinalParseLenient})),ft(["D","DD"],yt),ft("Do",(function(t,e){e[yt]=k(t.match(J)[0])}));var vi=Ct("Date",!0);z("DDD",["DDDD",3],"DDDo","dayOfYear"),L("dayOfYear","DDD"),R("dayOfYear",4),ht("DDD",tt),ht("DDDD",q),ft(["DDD","DDDD"],(function(t,e,i){i._dayOfYear=k(t)})),z("m",["mm",2],0,"minute"),L("minute","m"),R("minute",14),ht("m",J),ht("mm",J,X),ft(["m","mm"],bt);var yi=Ct("Minutes",!1);z("s",["ss",2],0,"second"),L("second","s"),R("second",15),ht("s",J),ht("ss",J,X),ft(["s","ss"],wt);var _i,bi=Ct("Seconds",!1);for(z("S",0,0,(function(){return~~(this.millisecond()/100)})),z(0,["SS",2],0,(function(){return~~(this.millisecond()/10)})),z(0,["SSS",3],0,"millisecond"),z(0,["SSSS",4],0,(function(){return 10*this.millisecond()})),z(0,["SSSSS",5],0,(function(){return 100*this.millisecond()})),z(0,["SSSSSS",6],0,(function(){return 1e3*this.millisecond()})),z(0,["SSSSSSS",7],0,(function(){return 1e4*this.millisecond()})),z(0,["SSSSSSSS",8],0,(function(){return 1e5*this.millisecond()})),z(0,["SSSSSSSSS",9],0,(function(){return 1e6*this.millisecond()})),L("millisecond","ms"),R("millisecond",16),ht("S",tt,B),ht("SS",tt,X),ht("SSS",tt,q),_i="SSSS";_i.length<=9;_i+="S")ht(_i,nt);function wi(t,e){e[kt]=k(1e3*("0."+t))}for(_i="S";_i.length<=9;_i+="S")ft(_i,wi);var ki=Ct("Milliseconds",!1);z("z",0,0,"zoneAbbr"),z("zz",0,0,"zoneName");var Di=_.prototype;function Si(t){return t}Di.add=ei,Di.calendar=function(t,e){var i=t||Ie(),s=Ve(i,this).startOf("day"),r=n.calendarFormat(this,s)||"sameElse",o=e&&(C(e[r])?e[r].call(this,i):e[r]);return this.format(o||this.localeData().calendar(r,this,Ie(i)))},Di.clone=function(){return new _(this)},Di.diff=function(t,e,i){var n,s,r;if(!this.isValid())return NaN;if(!(n=Ve(t,this)).isValid())return NaN;switch(s=6e4*(n.utcOffset()-this.utcOffset()),e=I(e)){case"year":r=ni(this,n)/12;break;case"month":r=ni(this,n);break;case"quarter":r=ni(this,n)/3;break;case"second":r=(this-n)/1e3;break;case"minute":r=(this-n)/6e4;break;case"hour":r=(this-n)/36e5;break;case"day":r=(this-n-s)/864e5;break;case"week":r=(this-n-s)/6048e5;break;default:r=this-n}return i?r:w(r)},Di.endOf=function(t){var e;if(void 0===(t=I(t))||"millisecond"===t||!this.isValid())return this;var i=this._isUTC?fi:ci;switch(t){case"year":e=i(this.year()+1,0,1)-1;break;case"quarter":e=i(this.year(),this.month()-this.month()%3+3,1)-1;break;case"month":e=i(this.year(),this.month()+1,1)-1;break;case"week":e=i(this.year(),this.month(),this.date()-this.weekday()+7)-1;break;case"isoWeek":e=i(this.year(),this.month(),this.date()-(this.isoWeekday()-1)+7)-1;break;case"day":case"date":e=i(this.year(),this.month(),this.date()+1)-1;break;case"hour":e=this._d.valueOf(),e+=hi-di(e+(this._isUTC?0:this.utcOffset()*li),hi)-1;break;case"minute":e=this._d.valueOf(),e+=li-di(e,li)-1;break;case"second":e=this._d.valueOf(),e+=ai-di(e,ai)-1}return this._d.setTime(e),n.updateOffset(this,!0),this},Di.format=function(t){t||(t=this.isUtc()?n.defaultFormatUtc:n.defaultFormat);var e=U(this,t);return this.localeData().postformat(e)},Di.from=function(t,e){return this.isValid()&&(b(t)&&t.isValid()||Ie(t).isValid())?$e({to:this,from:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Di.fromNow=function(t){return this.from(Ie(),t)},Di.to=function(t,e){return this.isValid()&&(b(t)&&t.isValid()||Ie(t).isValid())?$e({from:this,to:t}).locale(this.locale()).humanize(!e):this.localeData().invalidDate()},Di.toNow=function(t){return this.to(Ie(),t)},Di.get=function(t){return C(this[t=I(t)])?this[t]():this},Di.invalidAt=function(){return f(this).overflow},Di.isAfter=function(t,e){var i=b(t)?t:Ie(t);return!(!this.isValid()||!i.isValid())&&("millisecond"===(e=I(e)||"millisecond")?this.valueOf()>i.valueOf():i.valueOf()9999?U(i,e?"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYYYY-MM-DD[T]HH:mm:ss.SSSZ"):C(Date.prototype.toISOString)?e?this.toDate().toISOString():new Date(this.valueOf()+60*this.utcOffset()*1e3).toISOString().replace("Z",U(i,"Z")):U(i,e?"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]":"YYYY-MM-DD[T]HH:mm:ss.SSSZ")},Di.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var t="moment",e="";this.isLocal()||(t=0===this.utcOffset()?"moment.utc":"moment.parseZone",e="Z");var i="["+t+'("]',n=0<=this.year()&&this.year()<=9999?"YYYY":"YYYYYY",s=e+'[")]';return this.format(i+n+"-MM-DD[T]HH:mm:ss.SSS"+s)},Di.toJSON=function(){return this.isValid()?this.toISOString():null},Di.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")},Di.unix=function(){return Math.floor(this.valueOf()/1e3)},Di.valueOf=function(){return this._d.valueOf()-6e4*(this._offset||0)},Di.creationData=function(){return{input:this._i,format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}},Di.year=Ot,Di.isLeapYear=function(){return Mt(this.year())},Di.weekYear=function(t){return pi.call(this,t,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)},Di.isoWeekYear=function(t){return pi.call(this,t,this.isoWeek(),this.isoWeekday(),1,4)},Di.quarter=Di.quarters=function(t){return null==t?Math.ceil((this.month()+1)/3):this.month(3*(t-1)+this.month()%3)},Di.month=jt,Di.daysInMonth=function(){return Et(this.year(),this.month())},Di.week=Di.weeks=function(t){var e=this.localeData().week(this);return null==t?e:this.add(7*(t-e),"d")},Di.isoWeek=Di.isoWeeks=function(t){var e=Bt(this,1,4).week;return null==t?e:this.add(7*(t-e),"d")},Di.weeksInYear=function(){var t=this.localeData()._week;return Xt(this.year(),t.dow,t.doy)},Di.isoWeeksInYear=function(){return Xt(this.year(),1,4)},Di.date=vi,Di.day=Di.days=function(t){if(!this.isValid())return null!=t?this:NaN;var e=this._isUTC?this._d.getUTCDay():this._d.getDay();return null!=t?(t=function(t,e){return"string"!=typeof t?t:isNaN(t)?"number"==typeof(t=e.weekdaysParse(t))?t:null:parseInt(t,10)}(t,this.localeData()),this.add(t-e,"d")):e},Di.weekday=function(t){if(!this.isValid())return null!=t?this:NaN;var e=(this.day()+7-this.localeData()._week.dow)%7;return null==t?e:this.add(t-e,"d")},Di.isoWeekday=function(t){if(!this.isValid())return null!=t?this:NaN;if(null!=t){var e=function(t,e){return"string"==typeof t?e.weekdaysParse(t)%7||7:isNaN(t)?null:t}(t,this.localeData());return this.day(this.day()%7?e:e-7)}return this.day()||7},Di.dayOfYear=function(t){var e=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864e5)+1;return null==t?e:this.add(t-e,"d")},Di.hour=Di.hours=le,Di.minute=Di.minutes=yi,Di.second=Di.seconds=bi,Di.millisecond=Di.milliseconds=ki,Di.utcOffset=function(t,e,i){var s,r=this._offset||0;if(!this.isValid())return null!=t?this:NaN;if(null!=t){if("string"==typeof t){if(null===(t=Ue(ot,t)))return this}else Math.abs(t)<16&&!i&&(t*=60);return!this._isUTC&&e&&(s=Be(this)),this._offset=t,this._isUTC=!0,null!=s&&this.add(s,"m"),r!==t&&(!e||this._changeInProgress?ti(this,$e(t-r,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,n.updateOffset(this,!0),this._changeInProgress=null)),this}return this._isUTC?r:Be(this)},Di.utc=function(t){return this.utcOffset(0,t)},Di.local=function(t){return this._isUTC&&(this.utcOffset(0,t),this._isUTC=!1,t&&this.subtract(Be(this),"m")),this},Di.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm,!1,!0);else if("string"==typeof this._i){var t=Ue(rt,this._i);null!=t?this.utcOffset(t):this.utcOffset(0,!0)}return this},Di.hasAlignedHourOffset=function(t){return!!this.isValid()&&(t=t?Ie(t).utcOffset():0,(this.utcOffset()-t)%60==0)},Di.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()},Di.isLocal=function(){return!!this.isValid()&&!this._isUTC},Di.isUtcOffset=function(){return!!this.isValid()&&this._isUTC},Di.isUtc=Xe,Di.isUTC=Xe,Di.zoneAbbr=function(){return this._isUTC?"UTC":""},Di.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""},Di.dates=x("dates accessor is deprecated. Use date instead.",vi),Di.months=x("months accessor is deprecated. Use month instead",jt),Di.years=x("years accessor is deprecated. Use year instead",Ot),Di.zone=x("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/",(function(t,e){return null!=t?("string"!=typeof t&&(t=-t),this.utcOffset(t,e),this):-this.utcOffset()})),Di.isDSTShifted=x("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",(function(){if(!o(this._isDSTShifted))return this._isDSTShifted;var t={};if(v(t,this),(t=Ee(t))._a){var e=t._isUTC?c(t._a):Ie(t._a);this._isDSTShifted=this.isValid()&&D(t._a,e.toArray())>0}else this._isDSTShifted=!1;return this._isDSTShifted}));var xi=P.prototype;function Mi(t,e,i,n){var s=ge(),r=c().set(n,e);return s[i](r,t)}function Ti(t,e,i){if(a(t)&&(e=t,t=void 0),t=t||"",null!=e)return Mi(t,e,i,"month");var n,s=[];for(n=0;n<12;n++)s[n]=Mi(t,n,i,"month");return s}function Oi(t,e,i,n){"boolean"==typeof t?(a(e)&&(i=e,e=void 0),e=e||""):(i=e=t,t=!1,a(e)&&(i=e,e=void 0),e=e||"");var s,r=ge(),o=t?r._week.dow:0;if(null!=i)return Mi(e,(i+o)%7,n,"day");var l=[];for(s=0;s<7;s++)l[s]=Mi(e,(s+o)%7,n,"day");return l}xi.calendar=function(t,e,i){var n=this._calendar[t]||this._calendar.sameElse;return C(n)?n.call(e,i):n},xi.longDateFormat=function(t){var e=this._longDateFormat[t],i=this._longDateFormat[t.toUpperCase()];return e||!i?e:(this._longDateFormat[t]=i.replace(/MMMM|MM|DD|dddd/g,(function(t){return t.slice(1)})),this._longDateFormat[t])},xi.invalidDate=function(){return this._invalidDate},xi.ordinal=function(t){return this._ordinal.replace("%d",t)},xi.preparse=Si,xi.postformat=Si,xi.relativeTime=function(t,e,i,n){var s=this._relativeTime[i];return C(s)?s(t,e,i,n):s.replace(/%d/i,t)},xi.pastFuture=function(t,e){var i=this._relativeTime[t>0?"future":"past"];return C(i)?i(e):i.replace(/%s/i,e)},xi.set=function(t){var e,i;for(i in t)C(e=t[i])?this[i]=e:this["_"+i]=e;this._config=t,this._dayOfMonthOrdinalParseLenient=new RegExp((this._dayOfMonthOrdinalParse.source||this._ordinalParse.source)+"|"+/\d{1,2}/.source)},xi.months=function(t,e){return t?s(this._months)?this._months[t.month()]:this._months[(this._months.isFormat||Lt).test(e)?"format":"standalone"][t.month()]:s(this._months)?this._months:this._months.standalone},xi.monthsShort=function(t,e){return t?s(this._monthsShort)?this._monthsShort[t.month()]:this._monthsShort[Lt.test(e)?"format":"standalone"][t.month()]:s(this._monthsShort)?this._monthsShort:this._monthsShort.standalone},xi.monthsParse=function(t,e,i){var n,s,r;if(this._monthsParseExact)return Nt.call(this,t,e,i);for(this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]),n=0;n<12;n++){if(s=c([2e3,n]),i&&!this._longMonthsParse[n]&&(this._longMonthsParse[n]=new RegExp("^"+this.months(s,"").replace(".","")+"$","i"),this._shortMonthsParse[n]=new RegExp("^"+this.monthsShort(s,"").replace(".","")+"$","i")),i||this._monthsParse[n]||(r="^"+this.months(s,"")+"|^"+this.monthsShort(s,""),this._monthsParse[n]=new RegExp(r.replace(".",""),"i")),i&&"MMMM"===e&&this._longMonthsParse[n].test(t))return n;if(i&&"MMM"===e&&this._shortMonthsParse[n].test(t))return n;if(!i&&this._monthsParse[n].test(t))return n}},xi.monthsRegex=function(t){return this._monthsParseExact?(u(this,"_monthsRegex")||Gt.call(this),t?this._monthsStrictRegex:this._monthsRegex):(u(this,"_monthsRegex")||(this._monthsRegex=Ht),this._monthsStrictRegex&&t?this._monthsStrictRegex:this._monthsRegex)},xi.monthsShortRegex=function(t){return this._monthsParseExact?(u(this,"_monthsRegex")||Gt.call(this),t?this._monthsShortStrictRegex:this._monthsShortRegex):(u(this,"_monthsShortRegex")||(this._monthsShortRegex=Ft),this._monthsShortStrictRegex&&t?this._monthsShortStrictRegex:this._monthsShortRegex)},xi.week=function(t){return Bt(t,this._week.dow,this._week.doy).week},xi.firstDayOfYear=function(){return this._week.doy},xi.firstDayOfWeek=function(){return this._week.dow},xi.weekdays=function(t,e){var i=s(this._weekdays)?this._weekdays:this._weekdays[t&&!0!==t&&this._weekdays.isFormat.test(e)?"format":"standalone"];return!0===t?qt(i,this._week.dow):t?i[t.day()]:i},xi.weekdaysMin=function(t){return!0===t?qt(this._weekdaysMin,this._week.dow):t?this._weekdaysMin[t.day()]:this._weekdaysMin},xi.weekdaysShort=function(t){return!0===t?qt(this._weekdaysShort,this._week.dow):t?this._weekdaysShort[t.day()]:this._weekdaysShort},xi.weekdaysParse=function(t,e,i){var n,s,r;if(this._weekdaysParseExact)return Kt.call(this,t,e,i);for(this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]),n=0;n<7;n++){if(s=c([2e3,1]).day(n),i&&!this._fullWeekdaysParse[n]&&(this._fullWeekdaysParse[n]=new RegExp("^"+this.weekdays(s,"").replace(".","\\.?")+"$","i"),this._shortWeekdaysParse[n]=new RegExp("^"+this.weekdaysShort(s,"").replace(".","\\.?")+"$","i"),this._minWeekdaysParse[n]=new RegExp("^"+this.weekdaysMin(s,"").replace(".","\\.?")+"$","i")),this._weekdaysParse[n]||(r="^"+this.weekdays(s,"")+"|^"+this.weekdaysShort(s,"")+"|^"+this.weekdaysMin(s,""),this._weekdaysParse[n]=new RegExp(r.replace(".",""),"i")),i&&"dddd"===e&&this._fullWeekdaysParse[n].test(t))return n;if(i&&"ddd"===e&&this._shortWeekdaysParse[n].test(t))return n;if(i&&"dd"===e&&this._minWeekdaysParse[n].test(t))return n;if(!i&&this._weekdaysParse[n].test(t))return n}},xi.weekdaysRegex=function(t){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysStrictRegex:this._weekdaysRegex):(u(this,"_weekdaysRegex")||(this._weekdaysRegex=te),this._weekdaysStrictRegex&&t?this._weekdaysStrictRegex:this._weekdaysRegex)},xi.weekdaysShortRegex=function(t){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex):(u(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=ee),this._weekdaysShortStrictRegex&&t?this._weekdaysShortStrictRegex:this._weekdaysShortRegex)},xi.weekdaysMinRegex=function(t){return this._weekdaysParseExact?(u(this,"_weekdaysRegex")||ne.call(this),t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex):(u(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=ie),this._weekdaysMinStrictRegex&&t?this._weekdaysMinStrictRegex:this._weekdaysMinRegex)},xi.isPM=function(t){return"p"===(t+"").toLowerCase().charAt(0)},xi.meridiem=function(t,e,i){return t>11?i?"pm":"PM":i?"am":"AM"},me("en",{dayOfMonthOrdinalParse:/\d{1,2}(th|st|nd|rd)/,ordinal:function(t){var e=t%10;return t+(1===k(t%100/10)?"th":1===e?"st":2===e?"nd":3===e?"rd":"th")}}),n.lang=x("moment.lang is deprecated. Use moment.locale instead.",me),n.langData=x("moment.langData is deprecated. Use moment.localeData instead.",ge);var Ci=Math.abs;function Yi(t,e,i,n){var s=$e(e,i);return t._milliseconds+=n*s._milliseconds,t._days+=n*s._days,t._months+=n*s._months,t._bubble()}function Pi(t){return t<0?Math.floor(t):Math.ceil(t)}function Ei(t){return 4800*t/146097}function Li(t){return 146097*t/4800}function Ii(t){return function(){return this.as(t)}}var Ai=Ii("ms"),Ni=Ii("s"),Ri=Ii("m"),ji=Ii("h"),Fi=Ii("d"),Hi=Ii("w"),Gi=Ii("M"),Wi=Ii("Q"),zi=Ii("y");function Ui(t){return function(){return this.isValid()?this._data[t]:NaN}}var Vi=Ui("milliseconds"),Bi=Ui("seconds"),Xi=Ui("minutes"),qi=Ui("hours"),Zi=Ui("days"),$i=Ui("months"),Ji=Ui("years"),Ki=Math.round,Qi={ss:44,s:45,m:45,h:22,d:26,M:11};function tn(t,e,i,n,s){return s.relativeTime(e||1,!!i,t,n)}var en=Math.abs;function nn(t){return(t>0)-(t<0)||+t}function sn(){if(!this.isValid())return this.localeData().invalidDate();var t,e,i=en(this._milliseconds)/1e3,n=en(this._days),s=en(this._months);t=w(i/60),e=w(t/60),i%=60,t%=60;var r=w(s/12),o=s%=12,a=n,l=e,h=t,u=i?i.toFixed(3).replace(/\.?0+$/,""):"",d=this.asSeconds();if(!d)return"P0D";var c=d<0?"-":"",f=nn(this._months)!==nn(d)?"-":"",m=nn(this._days)!==nn(d)?"-":"",p=nn(this._milliseconds)!==nn(d)?"-":"";return c+"P"+(r?f+r+"Y":"")+(o?f+o+"M":"")+(a?m+a+"D":"")+(l||h||u?"T":"")+(l?p+l+"H":"")+(h?p+h+"M":"")+(u?p+u+"S":"")}var rn=Fe.prototype;return rn.isValid=function(){return this._isValid},rn.abs=function(){var t=this._data;return this._milliseconds=Ci(this._milliseconds),this._days=Ci(this._days),this._months=Ci(this._months),t.milliseconds=Ci(t.milliseconds),t.seconds=Ci(t.seconds),t.minutes=Ci(t.minutes),t.hours=Ci(t.hours),t.months=Ci(t.months),t.years=Ci(t.years),this},rn.add=function(t,e){return Yi(this,t,e,1)},rn.subtract=function(t,e){return Yi(this,t,e,-1)},rn.as=function(t){if(!this.isValid())return NaN;var e,i,n=this._milliseconds;if("month"===(t=I(t))||"quarter"===t||"year"===t)switch(e=this._days+n/864e5,i=this._months+Ei(e),t){case"month":return i;case"quarter":return i/3;case"year":return i/12}else switch(e=this._days+Math.round(Li(this._months)),t){case"week":return e/7+n/6048e5;case"day":return e+n/864e5;case"hour":return 24*e+n/36e5;case"minute":return 1440*e+n/6e4;case"second":return 86400*e+n/1e3;case"millisecond":return Math.floor(864e5*e)+n;default:throw new Error("Unknown unit "+t)}},rn.asMilliseconds=Ai,rn.asSeconds=Ni,rn.asMinutes=Ri,rn.asHours=ji,rn.asDays=Fi,rn.asWeeks=Hi,rn.asMonths=Gi,rn.asQuarters=Wi,rn.asYears=zi,rn.valueOf=function(){return this.isValid()?this._milliseconds+864e5*this._days+this._months%12*2592e6+31536e6*k(this._months/12):NaN},rn._bubble=function(){var t,e,i,n,s,r=this._milliseconds,o=this._days,a=this._months,l=this._data;return r>=0&&o>=0&&a>=0||r<=0&&o<=0&&a<=0||(r+=864e5*Pi(Li(a)+o),o=0,a=0),l.milliseconds=r%1e3,t=w(r/1e3),l.seconds=t%60,e=w(t/60),l.minutes=e%60,i=w(e/60),l.hours=i%24,o+=w(i/24),s=w(Ei(o)),a+=s,o-=Pi(Li(s)),n=w(a/12),a%=12,l.days=o,l.months=a,l.years=n,this},rn.clone=function(){return $e(this)},rn.get=function(t){return t=I(t),this.isValid()?this[t+"s"]():NaN},rn.milliseconds=Vi,rn.seconds=Bi,rn.minutes=Xi,rn.hours=qi,rn.days=Zi,rn.weeks=function(){return w(this.days()/7)},rn.months=$i,rn.years=Ji,rn.humanize=function(t){if(!this.isValid())return this.localeData().invalidDate();var e=this.localeData(),i=function(t,e,i){var n=$e(t).abs(),s=Ki(n.as("s")),r=Ki(n.as("m")),o=Ki(n.as("h")),a=Ki(n.as("d")),l=Ki(n.as("M")),h=Ki(n.as("y")),u=s<=Qi.ss&&["s",s]||s0,u[4]=i,tn.apply(null,u)}(this,!t,e);return t&&(i=e.pastFuture(+this,i)),e.postformat(i)},rn.toISOString=sn,rn.toString=sn,rn.toJSON=sn,rn.locale=si,rn.localeData=oi,rn.toIsoString=x("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",sn),rn.lang=ri,z("X",0,0,"unix"),z("x",0,0,"valueOf"),ht("x",st),ht("X",/[+-]?\d+(\.\d{1,3})?/),ft("X",(function(t,e,i){i._d=new Date(1e3*parseFloat(t,10))})),ft("x",(function(t,e,i){i._d=new Date(k(t))})),n.version="2.24.0",e=Ie,n.fn=Di,n.min=function(){return Re("isBefore",[].slice.call(arguments,0))},n.max=function(){return Re("isAfter",[].slice.call(arguments,0))},n.now=function(){return Date.now?Date.now():+new Date},n.utc=c,n.unix=function(t){return Ie(1e3*t)},n.months=function(t,e){return Ti(t,e,"months")},n.isDate=l,n.locale=me,n.invalid=p,n.duration=$e,n.isMoment=b,n.weekdays=function(t,e,i){return Oi(t,e,i,"weekdays")},n.parseZone=function(){return Ie.apply(null,arguments).parseZone()},n.localeData=ge,n.isDuration=He,n.monthsShort=function(t,e){return Ti(t,e,"monthsShort")},n.weekdaysMin=function(t,e,i){return Oi(t,e,i,"weekdaysMin")},n.defineLocale=pe,n.updateLocale=function(t,e){if(null!=e){var i,n,s=he;null!=(n=fe(t))&&(s=n._config),e=Y(s,e),(i=new P(e)).parentLocale=ue[t],ue[t]=i,me(t)}else null!=ue[t]&&(null!=ue[t].parentLocale?ue[t]=ue[t].parentLocale:null!=ue[t]&&delete ue[t]);return ue[t]},n.locales=function(){return M(ue)},n.weekdaysShort=function(t,e,i){return Oi(t,e,i,"weekdaysShort")},n.normalizeUnits=I,n.relativeTimeRounding=function(t){return void 0===t?Ki:"function"==typeof t&&(Ki=t,!0)},n.relativeTimeThreshold=function(t,e){return void 0!==Qi[t]&&(void 0===e?Qi[t]:(Qi[t]=e,"s"===t&&(Qi.ss=e-1),!0))},n.calendarFormat=function(t,e){var i=t.diff(e,"days",!0);return i<-6?"sameElse":i<-1?"lastWeek":i<0?"lastDay":i<1?"sameDay":i<2?"nextDay":i<7?"nextWeek":"sameElse"},n.prototype=Di,n.HTML5_FMT={DATETIME_LOCAL:"YYYY-MM-DDTHH:mm",DATETIME_LOCAL_SECONDS:"YYYY-MM-DDTHH:mm:ss",DATETIME_LOCAL_MS:"YYYY-MM-DDTHH:mm:ss.SSS",DATE:"YYYY-MM-DD",TIME:"HH:mm",TIME_SECONDS:"HH:mm:ss",TIME_MS:"HH:mm:ss.SSS",WEEK:"GGGG-[W]WW",MONTH:"YYYY-MM"},n}()})),ee=[],ie=0;ie<256;ie++)ee[ie]=(ie+256).toString(16).substr(1);for(var ne=function(){if("undefined"!=typeof crypto&&crypto.getRandomValues){var t=new Uint8Array(16);return function(){return crypto.getRandomValues(t),t}}var e=new Array(16);return function(){for(var t,i=0;i<16;i++)0==(3&i)&&(t=4294967296*Math.random()),e[i]=t>>>((3&i)<<3)&255;return e}}(),se=[],re=0;re<256;re++)se[re]=(re+256).toString(16).substr(1);var oe=ne(),ae=(oe[0],oe[1],oe[2],oe[3],oe[4],oe[5],oe[6],oe[7],/^\/?Date\((-?\d+)/i);function le(t){return t instanceof Number||"number"==typeof t}function he(t){return t instanceof String||"string"==typeof t}function ue(t){return te.isMoment(t)}function de(t,e){var i;if(void 0!==t){if(null===t)return null;if(!e)return t;if("string"!=typeof e&&!(e instanceof String))throw new Error("Type must be a string");switch(e){case"boolean":case"Boolean":return Boolean(t);case"number":case"Number":return he(t)&&!isNaN(Date.parse(t))?te(t).valueOf():Number(t.valueOf());case"string":case"String":return String(t);case"Date":if(le(t))return new Date(t);if(t instanceof Date)return new Date(t.valueOf());if(ue(t))return new Date(t.valueOf());if(he(t))return(i=ae.exec(t))?new Date(Number(i[1])):te(new Date(t)).toDate();throw new Error("Cannot convert object of type "+ce(t)+" to type Date");case"Moment":if(le(t))return te(t);if(t instanceof Date)return te(t.valueOf());if(ue(t))return te(t);if(he(t))return i=ae.exec(t),te(i?Number(i[1]):t);throw new Error("Cannot convert object of type "+ce(t)+" to type Date");case"ISODate":if(le(t))return new Date(t);if(t instanceof Date)return t.toISOString();if(ue(t))return t.toDate().toISOString();if(he(t))return(i=ae.exec(t))?new Date(Number(i[1])).toISOString():te(t).format();throw new Error("Cannot convert object of type "+ce(t)+" to type ISODate");case"ASPDate":if(le(t))return"/Date("+t+")/";if(t instanceof Date)return"/Date("+t.valueOf()+")/";if(he(t))return"/Date("+((i=ae.exec(t))?new Date(Number(i[1])).valueOf():new Date(t).valueOf())+")/";throw new Error("Cannot convert object of type "+ce(t)+" to type ASPDate");default:throw new Error("Unknown type ".concat(e))}}}function ce(t){var e=Kt(t);return"object"===e?null===t?"null":t instanceof Boolean?"Boolean":t instanceof Number?"Number":t instanceof String?"String":Array.isArray(t)?"Array":t instanceof Date?"Date":"Object":"number"===e?"Number":"boolean"===e?"Boolean":"string"===e?"String":void 0===e?"undefined":e}function fe(t){return"string"==typeof t||"number"==typeof t}var me=function(){function t(e){Rt(this,t),this._queue=[],this._timeout=null,this._extended=null,this.delay=null,this.max=1/0,this.setOptions(e)}return Ft(t,[{key:"setOptions",value:function(t){t&&void 0!==t.delay&&(this.delay=t.delay),t&&void 0!==t.max&&(this.max=t.max),this._flushIfNeeded()}},{key:"destroy",value:function(){if(this.flush(),this._extended){for(var t=this._extended.object,e=this._extended.methods,i=0;ithis.max&&this.flush(),null!=this._timeout&&(clearTimeout(this._timeout),this._timeout=null),this.queue.length>0&&"number"==typeof this.delay&&(this._timeout=setTimeout((function(){t.flush()}),this.delay))}},{key:"flush",value:function(){this._queue.splice(0).forEach((function(t){t.fn.apply(t.context||t.fn,t.args||[])}))}}],[{key:"extend",value:function(e,i){var n=new t(i);if(void 0!==e.flush)throw new Error("Target object already has a property flush");e.flush=function(){n.flush()};var s=[{name:"flush",original:void 0}];if(i&&i.replace)for(var r=0;rs?1:ns)&&(n=a,s=l)}return n}},{key:"min",value:function(t){for(var e=this._data,i=Object.keys(e),n=null,s=null,r=0,o=i.length;r0?Ji:$i)(t)},Qi=Math.min,tn=function(t){return t>0?Qi(Ki(t),9007199254740991):0},en=Math.max,nn=Math.min,sn=function(t,e){var i=Ki(t);return i<0?en(i+e,0):nn(i,e)},rn=function(t){return function(e,i,n){var s,r=Ce(e),o=tn(r.length),a=sn(n,o);if(t&&i!=i){for(;o>a;)if((s=r[a++])!=s)return!0}else for(;o>a;a++)if((t||a in r)&&r[a]===i)return t||a||0;return!t&&-1}},on={includes:rn(!0),indexOf:rn(!1)},an=on.indexOf,ln=function(t,e){var i,n=Ce(t),s=0,r=[];for(i in n)!si(ui,i)&&si(n,i)&&r.push(i);for(;e.length>s;)si(n,i=e[s++])&&(~an(r,i)||r.push(i));return r},hn=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"],un=Object.keys||function(t){return ln(t,hn)},dn=Ge?Object.defineProperties:function(t,e){Xe(t);for(var i,n=un(e),s=n.length,r=0;s>r;)$e.f(t,i=n[r++],e[i]);return t},cn=function(t){return"function"==typeof t?t:void 0},fn=function(t,e){return arguments.length<2?cn(Li[t])||cn(He[t]):Li[t]&&Li[t][e]||He[t]&&He[t][e]},mn=fn("document","documentElement"),pn=hi("IE_PROTO"),gn=function(){},vn=function(){var t,e=Ve("iframe"),i=hn.length;for(e.style.display="none",mn.appendChild(e),e.src=String("javascript:"),(t=e.contentWindow.document).open(),t.write("