@datarailsshared/datarailsshared 1.4.248 → 1.4.257

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.
@@ -854,7 +854,7 @@
854
854
  this.dateChange.emit(resultTag);
855
855
  };
856
856
  WeekTagComponent.prototype.getWeekLabel = function (moment) {
857
- return "W" + moment.isoWeek() + " " + moment.year();
857
+ return "W" + moment.week() + " " + moment.year();
858
858
  };
859
859
  return WeekTagComponent;
860
860
  }(AnyTagComponent));
@@ -2052,7 +2052,7 @@
2052
2052
  DateFromats["YEAR_FORMAT"] = "yyyy";
2053
2053
  DateFromats["MONTH_YEAR_FORMAT"] = "MM/yyyy";
2054
2054
  DateFromats["QUARTER_FORMAT"] = "Q/yyyy";
2055
- DateFromats["WEEK_FORMAT"] = "W/yyyy";
2055
+ DateFromats["WEEK_FORMAT"] = "w/yyyy";
2056
2056
  })(exports.DateFromats || (exports.DateFromats = {}));
2057
2057
  var CustomDateFormat = /** @class */ (function () {
2058
2058
  function CustomDateFormat() {