@empathyco/x-components 3.0.0-alpha.164 → 3.0.0-alpha.165

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.0.0-alpha.165](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.164...@empathyco/x-components@3.0.0-alpha.165) (2022-08-31)
7
+
8
+ ### Build System
9
+
10
+ - **dependencies:** fix Vue & Vuex versions (#686)
11
+ ([177e851](https://github.com/empathyco/x/commit/177e8511f4458fa13c627210cdfbbf6d42a85b17)),
12
+ closes [EX-6918](https://searchbroker.atlassian.net/browse/EX-6918)
13
+
14
+ # Change Log
15
+
16
+ All notable changes to this project will be documented in this file. See
17
+ [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
18
+
6
19
  ## [3.0.0-alpha.164](https://github.com/empathyco/x/compare/@empathyco/x-components@3.0.0-alpha.163...@empathyco/x-components@3.0.0-alpha.164) (2022-08-30)
7
20
 
8
21
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empathyco/x-components",
3
- "version": "3.0.0-alpha.164",
3
+ "version": "3.0.0-alpha.165",
4
4
  "description": "Empathy X Components",
5
5
  "author": "Empathy Systems Corporation S.L.",
6
6
  "license": "Apache-2.0",
@@ -69,11 +69,13 @@
69
69
  "@types/resize-observer-browser": "~0.1.5",
70
70
  "rxjs": "~7.4.0",
71
71
  "tslib": "~2.3.0",
72
- "vue": "^2.6.0",
73
72
  "vue-class-component": "~7.1.0",
74
73
  "vue-global-events": "~1.2.1",
75
74
  "vue-property-decorator": "~8.3.0",
76
- "vue-runtime-helpers": "~1.1.2",
75
+ "vue-runtime-helpers": "~1.1.2"
76
+ },
77
+ "peerDependencies": {
78
+ "vue": "~2.6.0",
77
79
  "vuex": "^3.0.0"
78
80
  },
79
81
  "devDependencies": {
@@ -121,13 +123,15 @@
121
123
  "ts-jest": "~27.0.7",
122
124
  "ts-node": "~8.9.1",
123
125
  "typescript": "~4.6.2",
126
+ "vue": "~2.6.14",
124
127
  "vue-docgen-cli": "~4.13.1",
125
128
  "vue-router": "~3.4.3",
126
- "vue-template-compiler": "^2.6.0"
129
+ "vue-template-compiler": "~2.6.14",
130
+ "vuex": "~3.6.2"
127
131
  },
128
132
  "publishConfig": {
129
133
  "access": "public",
130
134
  "directory": "dist"
131
135
  },
132
- "gitHead": "459eb4fcfd74cce943a28efd3b5bf4d44932030f"
136
+ "gitHead": "ae73f52aa83026452100e50da0d919427b8d4976"
133
137
  }