@itfin/components 1.0.58 → 1.0.59

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itfin/components",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "main": "dist/itfin-components.umd.js",
5
5
  "unpkg": "dist/itfin-components.common.js",
6
6
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
@@ -58,7 +58,7 @@
58
58
  <script>
59
59
  import { Vue, Component, Prop } from 'vue-property-decorator';
60
60
  import { DateTime } from 'luxon';
61
- import AirDatepicker from 'air-datepicker';
61
+ import AirDatepicker from 'air-datepicker/air-datepicker.js';
62
62
  import localeEn from 'air-datepicker/locale/en';
63
63
  import ITFSettings from '../../ITFSettings';
64
64
 
@@ -105,6 +105,7 @@ class itfDatePickerInline extends Vue {
105
105
  firstDay: 1,
106
106
  locale: localeEn,
107
107
  range: true,
108
+ toggleSelected: false,
108
109
  selectedDates: this.valueAsLuxon
109
110
  ? [this.valueAsLuxon[0].toJSDate(), this.valueAsLuxon[1].toJSDate()]
110
111
  : [],