(bool: boolean)
| 1105 | Object.defineProperty(self, "_hidePrevMonthArrow", { |
| 1106 | get: () => self.__hidePrevMonthArrow, |
| 1107 | set(bool: boolean) { |
| 1108 | if (self.__hidePrevMonthArrow !== bool) { |
| 1109 | toggleClass(self.prevMonthNav, "flatpickr-disabled", bool); |
| 1110 | self.__hidePrevMonthArrow = bool; |
| 1111 | } |
| 1112 | }, |
| 1113 | }); |
| 1114 | |
| 1115 | Object.defineProperty(self, "_hideNextMonthArrow", { |
nothing calls this directly
no test coverage detected