@hpcc-js/other 2.15.0 → 2.15.2
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.js
CHANGED
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
var PKG_NAME = "@hpcc-js/other";
|
|
23
|
-
var PKG_VERSION = "2.15.
|
|
24
|
-
var BUILD_VERSION = "2.104.
|
|
23
|
+
var PKG_VERSION = "2.15.2";
|
|
24
|
+
var BUILD_VERSION = "2.104.5";
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
/******************************************************************************
|
|
27
27
|
Copyright (c) Microsoft Corporation.
|
|
28
28
|
|
|
29
29
|
Permission to use, copy, modify, and/or distribute this software for any
|
|
@@ -713,12 +713,20 @@
|
|
|
713
713
|
}
|
|
714
714
|
|
|
715
715
|
var sunday = weekday(0);
|
|
716
|
-
weekday(1);
|
|
717
|
-
weekday(2);
|
|
718
|
-
weekday(3);
|
|
719
|
-
weekday(4);
|
|
720
|
-
weekday(5);
|
|
721
|
-
weekday(6);
|
|
716
|
+
var monday = weekday(1);
|
|
717
|
+
var tuesday = weekday(2);
|
|
718
|
+
var wednesday = weekday(3);
|
|
719
|
+
var thursday = weekday(4);
|
|
720
|
+
var friday = weekday(5);
|
|
721
|
+
var saturday = weekday(6);
|
|
722
|
+
|
|
723
|
+
sunday.range;
|
|
724
|
+
monday.range;
|
|
725
|
+
tuesday.range;
|
|
726
|
+
wednesday.range;
|
|
727
|
+
thursday.range;
|
|
728
|
+
friday.range;
|
|
729
|
+
saturday.range;
|
|
722
730
|
|
|
723
731
|
var month = newInterval(function(date) {
|
|
724
732
|
date.setDate(1);
|
|
@@ -755,6 +763,7 @@
|
|
|
755
763
|
};
|
|
756
764
|
|
|
757
765
|
var d3TimeYear = year;
|
|
766
|
+
year.range;
|
|
758
767
|
|
|
759
768
|
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}";
|
|
760
769
|
styleInject(css_248z$b);
|