<input type="text" ng-model="dt" uib-datepicker-popup="MM/yyyy" datepicker-options="{minMode: 'month'}" datepicker-mode="'month'" is-open="open" datepicker-append-to-body="false" ng-click="open = !open"> 

At the moment, the month is displayed in this format: uib-datepicker-popup

It is necessary to be written in the format "January", "February", "March", etc.

    1 answer 1

    If the library source code patch is not intimidating (it is no longer being developed), then you can add the following object to the formatCodeToRegex array:

     { key: 'LLLL', regex: $locale.DATETIME_FORMATS.STANDALONEMONTH.join('|'), apply: function(value) { this.month = $locale.DATETIME_FORMATS.STANDALONEMONTH.indexOf(value); }, formatter: function(date) { return dateFilter(date, 'LLLL'); } }, 

    And use in the parameters 'LLLL'