@hpcc-js/other 2.14.6 → 2.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.es6.js +18 -9
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +18 -9
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +8 -8
- package/src/__package__.ts +2 -2
- package/types/__package__.d.ts +2 -2
- package/types-3.4/__package__.d.ts +2 -2
package/dist/index.es6.js
CHANGED
|
@@ -17,10 +17,10 @@ function _mergeNamespaces(n, m) {
|
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
var PKG_NAME = "@hpcc-js/other";
|
|
20
|
-
var PKG_VERSION = "2.
|
|
21
|
-
var BUILD_VERSION = "2.
|
|
20
|
+
var PKG_VERSION = "2.15.1";
|
|
21
|
+
var BUILD_VERSION = "2.104.2";
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
/******************************************************************************
|
|
24
24
|
Copyright (c) Microsoft Corporation.
|
|
25
25
|
|
|
26
26
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -710,12 +710,20 @@ function weekday(i) {
|
|
|
710
710
|
}
|
|
711
711
|
|
|
712
712
|
var sunday = weekday(0);
|
|
713
|
-
weekday(1);
|
|
714
|
-
weekday(2);
|
|
715
|
-
weekday(3);
|
|
716
|
-
weekday(4);
|
|
717
|
-
weekday(5);
|
|
718
|
-
weekday(6);
|
|
713
|
+
var monday = weekday(1);
|
|
714
|
+
var tuesday = weekday(2);
|
|
715
|
+
var wednesday = weekday(3);
|
|
716
|
+
var thursday = weekday(4);
|
|
717
|
+
var friday = weekday(5);
|
|
718
|
+
var saturday = weekday(6);
|
|
719
|
+
|
|
720
|
+
sunday.range;
|
|
721
|
+
monday.range;
|
|
722
|
+
tuesday.range;
|
|
723
|
+
wednesday.range;
|
|
724
|
+
thursday.range;
|
|
725
|
+
friday.range;
|
|
726
|
+
saturday.range;
|
|
719
727
|
|
|
720
728
|
var month = newInterval(function(date) {
|
|
721
729
|
date.setDate(1);
|
|
@@ -752,6 +760,7 @@ year.every = function(k) {
|
|
|
752
760
|
};
|
|
753
761
|
|
|
754
762
|
var d3TimeYear = year;
|
|
763
|
+
year.range;
|
|
755
764
|
|
|
756
765
|
var css_248z$b = ".other_CalendarHeatMap{shape-rendering:crispEdges}.other_CalendarHeatMap .day{fill:#fff;stroke:#ccc}.other_CalendarHeatMap .day.selected{stroke:red}.other_CalendarHeatMap .day.over{stroke:orange}.other_CalendarHeatMap .day.selected.over{stroke:red}.other_CalendarHeatMap .month{fill:none;stroke:#000;stroke-width:2px}";
|
|
757
766
|
styleInject(css_248z$b);
|