@blaze-cms/admin 0.133.0-project-admin-customisations.0 → 0.134.0-admin-updates.0

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,25 +3,76 @@
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
- # [0.133.0-project-admin-customisations.0](https://github.com/thebyte9/blaze/compare/v0.132.0...v0.133.0-project-admin-customisations.0) (2023-09-01)
6
+ # [0.134.0-admin-updates.0](https://github.com/thebyte9/blaze/compare/v0.133.0...v0.134.0-admin-updates.0) (2023-10-17)
7
7
 
8
8
 
9
+ ### Bug Fixes
9
10
 
10
- # [0.129.0-project-admin-customisations.1](https://github.com/thebyte9/blaze/compare/v0.129.0-project-admin-customisations.0...v0.129.0-project-admin-customisations.1) (2023-05-05)
11
+ * revert to template modal ([#3823](https://github.com/thebyte9/blaze/issues/3823)) ([7263ad5](https://github.com/thebyte9/blaze/commit/7263ad57cde4ab21a8b44b446444cd5ea40bc959))
11
12
 
12
13
 
13
14
 
14
- # [0.129.0-project-admin-customisations.0](https://github.com/thebyte9/blaze/compare/v0.128.2...v0.129.0-project-admin-customisations.0) (2023-05-03)
15
15
 
16
16
 
17
- ### Bug Fixes
17
+ # [0.133.0](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.6...v0.133.0) (2023-10-04)
18
18
 
19
- * revert to template modal ([#3823](https://github.com/thebyte9/blaze/issues/3823)) ([7263ad5](https://github.com/thebyte9/blaze/commit/7263ad57cde4ab21a8b44b446444cd5ea40bc959))
19
+ **Note:** Version bump only for package @blaze-cms/admin
20
20
 
21
21
 
22
- ### Features
23
22
 
24
- * add initial admin renderhook plugin with first hook ([#3785](https://github.com/thebyte9/blaze/issues/3785)) ([c535036](https://github.com/thebyte9/blaze/commit/c5350369d28e870afe8a10de1a284fd63592be33))
23
+
24
+
25
+ # [0.133.0-alpha.6](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.5...v0.133.0-alpha.6) (2023-10-03)
26
+
27
+ **Note:** Version bump only for package @blaze-cms/admin
28
+
29
+
30
+
31
+
32
+
33
+ # [0.133.0-alpha.5](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.4...v0.133.0-alpha.5) (2023-10-03)
34
+
35
+ **Note:** Version bump only for package @blaze-cms/admin
36
+
37
+
38
+
39
+
40
+
41
+ # [0.133.0-alpha.4](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.3...v0.133.0-alpha.4) (2023-10-02)
42
+
43
+ **Note:** Version bump only for package @blaze-cms/admin
44
+
45
+
46
+
47
+
48
+
49
+ # [0.133.0-alpha.3](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.2...v0.133.0-alpha.3) (2023-09-18)
50
+
51
+ **Note:** Version bump only for package @blaze-cms/admin
52
+
53
+
54
+
55
+
56
+
57
+ # [0.133.0-alpha.2](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.1...v0.133.0-alpha.2) (2023-09-06)
58
+
59
+ **Note:** Version bump only for package @blaze-cms/admin
60
+
61
+
62
+
63
+
64
+
65
+ # [0.133.0-alpha.1](https://github.com/thebyte9/blaze/compare/v0.133.0-alpha.0...v0.133.0-alpha.1) (2023-09-05)
66
+
67
+ **Note:** Version bump only for package @blaze-cms/admin
68
+
69
+
70
+
71
+
72
+
73
+ # [0.133.0-alpha.0](https://github.com/thebyte9/blaze/compare/v0.132.0...v0.133.0-alpha.0) (2023-08-25)
74
+
75
+ **Note:** Version bump only for package @blaze-cms/admin
25
76
 
26
77
 
27
78
 
package/blaze.config.js CHANGED
@@ -6,7 +6,6 @@ import pageBuilder from '@blaze-cms/plugin-page-builder-ui';
6
6
  import media from '@blaze-cms/plugin-media-ui';
7
7
  import gtm from '@blaze-cms/plugin-gtm-ui';
8
8
  import googleMaps from '@blaze-cms/plugin-google-maps-ui';
9
- import renderHooks from '@blaze-cms/plugin-render-hooks-ui';
10
9
 
11
10
  const plugins = new Map();
12
11
  plugins.set(authLocal, {});
@@ -17,7 +16,6 @@ plugins.set(pageBuilder, {});
17
16
  plugins.set(media, {});
18
17
  plugins.set(gtm, {});
19
18
  plugins.set(googleMaps, {});
20
- plugins.set(renderHooks, {});
21
19
 
22
20
  const apollo = { addTypename: false };
23
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blaze-cms/admin",
3
- "version": "0.133.0-project-admin-customisations.0",
3
+ "version": "0.134.0-admin-updates.0",
4
4
  "description": "Blaze example project",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib-es/index.js",
@@ -28,19 +28,19 @@
28
28
  "license": "GPL-3.0",
29
29
  "dependencies": {
30
30
  "@apollo/client": "3.5.x",
31
- "@blaze-cms/admin-ui-utils": "0.133.0-project-admin-customisations.0",
32
- "@blaze-cms/core-errors-ui": "0.133.0-project-admin-customisations.0",
33
- "@blaze-cms/core-ui": "0.133.0-project-admin-customisations.0",
34
- "@blaze-cms/plugin-admin-core-ui": "0.133.0-project-admin-customisations.0",
35
- "@blaze-cms/plugin-auth-local-ui": "0.133.0-project-admin-customisations.0",
36
- "@blaze-cms/plugin-auth-ui": "0.133.0-project-admin-customisations.0",
37
- "@blaze-cms/plugin-data-ui": "0.133.0-project-admin-customisations.0",
38
- "@blaze-cms/plugin-google-maps-ui": "0.133.0-project-admin-customisations.0",
39
- "@blaze-cms/plugin-gtm-ui": "0.133.0-project-admin-customisations.0",
40
- "@blaze-cms/plugin-media-ui": "0.133.0-project-admin-customisations.0",
41
- "@blaze-cms/plugin-page-builder-ui": "0.133.0-project-admin-customisations.0",
42
- "@blaze-cms/react-form-builder": "0.133.0-project-admin-customisations.0",
43
- "@blaze-cms/setup-ui": "0.133.0-project-admin-customisations.0",
31
+ "@blaze-cms/admin-ui-utils": "0.134.0-admin-updates.0",
32
+ "@blaze-cms/core-errors-ui": "0.134.0-admin-updates.0",
33
+ "@blaze-cms/core-ui": "0.134.0-admin-updates.0",
34
+ "@blaze-cms/plugin-admin-core-ui": "0.134.0-admin-updates.0",
35
+ "@blaze-cms/plugin-auth-local-ui": "0.134.0-admin-updates.0",
36
+ "@blaze-cms/plugin-auth-ui": "0.134.0-admin-updates.0",
37
+ "@blaze-cms/plugin-data-ui": "0.134.0-admin-updates.0",
38
+ "@blaze-cms/plugin-google-maps-ui": "0.134.0-admin-updates.0",
39
+ "@blaze-cms/plugin-gtm-ui": "0.134.0-admin-updates.0",
40
+ "@blaze-cms/plugin-media-ui": "0.134.0-admin-updates.0",
41
+ "@blaze-cms/plugin-page-builder-ui": "0.134.0-admin-updates.0",
42
+ "@blaze-cms/react-form-builder": "0.134.0-admin-updates.0",
43
+ "@blaze-cms/setup-ui": "0.134.0-admin-updates.0",
44
44
  "@blaze-react/alert": "0.5.19",
45
45
  "@blaze-react/modal": "0.5.19",
46
46
  "@blaze-react/toaster": "0.5.17",
@@ -66,5 +66,5 @@
66
66
  "lib/*",
67
67
  "lib-es/*"
68
68
  ],
69
- "gitHead": "aaf10121050962f9219e752b37ad56e8b5bf265b"
69
+ "gitHead": "6eebfa2c3fdbef9c3cf817a86ea4ecb0224c9880"
70
70
  }