@itfin/components 1.2.83 → 1.2.85

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.2.83",
3
+ "version": "1.2.85",
4
4
  "author": "Vitalii Savchuk <esvit666@gmail.com>",
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -20,20 +20,20 @@
20
20
  ],
21
21
  "dependencies": {
22
22
  "@egjs/vue-flicking": "^4.10.4",
23
- "@popperjs/core": "^2.11.6",
23
+ "@popperjs/core": "^2.11.8",
24
24
  "@vue/cli-service": "^5.0.1",
25
25
  "@vue/composition-api": "^1.7.1",
26
- "air-datepicker": "^3.3.3",
26
+ "air-datepicker": "^3.3.5",
27
27
  "bootstrap": "^5.2.3",
28
28
  "core-js": "^3.7.0",
29
29
  "debug": "^4.2.0",
30
30
  "intersection-observer": "^0.12.2",
31
31
  "lodash": "^4.17.20",
32
- "luxon": "^3.2.1",
32
+ "luxon": "^3.3.0",
33
33
  "pdfjs-dist": "^2.10.377",
34
34
  "tippy.js": "^6.3.2",
35
35
  "vue": "^2.6.12",
36
- "vue-imask": "^6.4.3",
36
+ "vue-imask": "^7.0.1",
37
37
  "vue-property-decorator": "^9.1.2"
38
38
  },
39
39
  "devDependencies": {
@@ -145,13 +145,14 @@ class itfModal extends Vue {
145
145
 
146
146
  hide() {
147
147
  if (this.modalEl) {
148
- this.modalEl.hide()
148
+ this.modalEl.hide();
149
149
  }
150
150
  }
151
151
 
152
152
  close() {
153
153
  if (this.modalEl) {
154
154
  this.value = false;
155
+ this.$emit('close');
155
156
  }
156
157
  }
157
158