@rebilly/revel 5.10.0 → 5.10.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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [5.10.2](https://github.com/Rebilly/rebilly/compare/revel-v5.10.1...revel-v5.10.2) (2023-09-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **revel:** fix month picker for january ([#1530](https://github.com/Rebilly/rebilly/issues/1530)) ([e363977](https://github.com/Rebilly/rebilly/commit/e363977d691d5a3d30a3202bfff63c9760049c76))
7
+
8
+ ## [5.10.1](https://github.com/Rebilly/rebilly/compare/revel-v5.10.0...revel-v5.10.1) (2023-09-22)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Revert Fingerprint version ([#1493](https://github.com/Rebilly/rebilly/issues/1493)) ([f448a3c](https://github.com/Rebilly/rebilly/commit/f448a3c4ed536f4c5d9bb7709f339f22ca61caab))
14
+
1
15
  ## [5.10.0](https://github.com/Rebilly/rebilly/compare/revel-v5.9.0...revel-v5.10.0) (2023-09-18)
2
16
 
3
17
 
package/dist/revel.mjs CHANGED
@@ -12776,7 +12776,7 @@ const $7 = /* @__PURE__ */ Z(L7, [["render", T7]]), $p = [
12776
12776
  }),
12777
12777
  computed: {
12778
12778
  selectedDateLabel() {
12779
- return this.selectedDate?.monthIndex ? `${$p[this.selectedDate.monthIndex]}, ${this.selectedDate.year}` : this.placeholder;
12779
+ return this.selectedDate !== null && this.selectedDate.monthIndex !== null ? `${$p[this.selectedDate.monthIndex]}, ${this.selectedDate.year}` : this.placeholder;
12780
12780
  }
12781
12781
  },
12782
12782
  mounted() {