mapomodule 1.0.0-alpha.14 → 1.0.0-alpha.17

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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.17](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2022-04-03)
7
+
8
+ **Note:** Version bump only for package mapomodule
9
+
10
+
11
+
12
+
13
+
14
+ # [1.0.0-alpha.16](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2022-04-03)
15
+
16
+
17
+ ### Features
18
+
19
+ * Added mapo integrations module! 🎉 ([76d2c80](https://github.com/lotrekagency/mapo/commit/76d2c805245b4cf49a33696339da52e4c17f4053))
20
+
21
+
22
+ ### BREAKING CHANGES
23
+
24
+ * This change removes all the camomilla cms references moving the compatibility layer in a detached package [mapo-integrations-camomilla](https://github.com/lotrekagency/mapo-integrations-camomilla). The guidelines to make mapo work with camomilla will be provided in the package readme.
25
+
26
+
27
+
28
+
29
+
30
+ # [1.0.0-alpha.15](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2022-03-11)
31
+
32
+ **Note:** Version bump only for package mapomodule
33
+
34
+
35
+
36
+
37
+
6
38
  # [1.0.0-alpha.14](https://github.com/lotrekagency/mapo/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2022-03-01)
7
39
 
8
40
  **Note:** Version bump only for package mapomodule
package/defaults.js CHANGED
@@ -20,8 +20,7 @@ export default {
20
20
  },
21
21
  vuetify,
22
22
  axios: {
23
- baseURL: 'http://localhost:8000',
24
- browserBaseURL: 'http://localhost:8000',
23
+ withCredentials: true,
25
24
  },
26
25
 
27
26
  extendPlugins(plugins) {
package/module.js CHANGED
@@ -21,11 +21,12 @@ export default async function MapoModule(moduleOptions) {
21
21
  this.options = _mergeWith(this.options, mapoDefaults, customMerger)
22
22
 
23
23
  this.requireModule(['@nuxtjs/axios', (this.options && this.options.axios) || userModuleOptions.axios || mapoDefaults.axios || {}])
24
- this.requireModule(['@mapomodule/store'], userModuleOptions.store)
25
- this.requireModule(['@mapomodule/core'], userModuleOptions)
24
+ this.requireModule(['@mapomodule/store', userModuleOptions.store])
25
+ this.requireModule(['@mapomodule/core', userModuleOptions])
26
+ this.requireModule(['@mapomodule/integrations', userModuleOptions.integrations])
26
27
  /* Await prevents to load routemeta before mapo pages. Also needed to correclty load mapo components */
27
- await this.requireModule(['@mapomodule/uikit'], userModuleOptions.ui)
28
- this.requireModule(['@mapomodule/routemeta'], userModuleOptions.routemeta)
28
+ await this.requireModule(['@mapomodule/uikit', userModuleOptions.ui])
29
+ this.requireModule(['@mapomodule/routemeta', userModuleOptions.routemeta])
29
30
 
30
31
  }
31
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mapomodule",
3
- "version": "1.0.0-alpha.14",
3
+ "version": "1.0.0-alpha.17",
4
4
  "description": "Mapo is a nuxt module that helps in the creation of Administration Panels.",
5
5
  "author": "bnznamco <gabriele.baldi.01@gmail.com>",
6
6
  "keywords": [
@@ -13,15 +13,16 @@
13
13
  "repository": "https://github.com/lotrekagency/mapo",
14
14
  "main": "./module.js",
15
15
  "dependencies": {
16
- "@mapomodule/core": "^1.0.0-alpha.13",
16
+ "@mapomodule/core": "^1.0.0-alpha.17",
17
+ "@mapomodule/integrations": "^1.0.0-alpha.16",
17
18
  "@mapomodule/routemeta": "^1.0.0-alpha.8",
18
- "@mapomodule/store": "^1.0.0-alpha.13",
19
- "@mapomodule/uikit": "^1.0.0-alpha.14",
19
+ "@mapomodule/store": "^1.0.0-alpha.17",
20
+ "@mapomodule/uikit": "^1.0.0-alpha.17",
20
21
  "@nuxtjs/axios": "^5.13.6",
21
22
  "lodash.mergewith": "^4.6.2"
22
23
  },
23
24
  "publishConfig": {
24
25
  "access": "public"
25
26
  },
26
- "gitHead": "0975dada05d34efb26a3c7ab0f3ebe8c01f1ca30"
27
+ "gitHead": "abd0d72a2d294acfde87af3a6f3fa3c19f100b30"
27
28
  }