@blaze-cms/plugin-admin-core-ui 0.126.0-admin-updates.4 → 0.127.0-project-admin-customisations.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 +1 -33
- package/lib/constants.js +1 -1
- package/lib/constants.js.map +1 -1
- package/lib-es/constants.js +1 -1
- package/lib-es/constants.js.map +1 -1
- package/package.json +7 -7
- package/src/constants.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,39 +3,7 @@
|
|
|
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.
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @blaze-cms/plugin-admin-core-ui
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [0.126.0-admin-updates.3](https://github.com/thebyte9/blaze/compare/v0.126.0-admin-updates.2...v0.126.0-admin-updates.3) (2023-01-03)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @blaze-cms/plugin-admin-core-ui
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [0.126.0-admin-updates.2](https://github.com/thebyte9/blaze/compare/v0.126.0-admin-updates.1...v0.126.0-admin-updates.2) (2022-12-28)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @blaze-cms/plugin-admin-core-ui
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
# [0.126.0-admin-updates.1](https://github.com/thebyte9/blaze/compare/v0.126.0-admin-updates.0...v0.126.0-admin-updates.1) (2022-12-22)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @blaze-cms/plugin-admin-core-ui
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
# [0.126.0-admin-updates.0](https://github.com/thebyte9/blaze/compare/v0.125.2...v0.126.0-admin-updates.0) (2022-12-16)
|
|
6
|
+
# [0.127.0-project-admin-customisations.0](https://github.com/thebyte9/blaze/compare/v0.126.1...v0.127.0-project-admin-customisations.0) (2023-01-25)
|
|
39
7
|
|
|
40
8
|
|
|
41
9
|
### Bug Fixes
|
package/lib/constants.js
CHANGED
|
@@ -8,7 +8,7 @@ exports.PLUGIN_NAME = exports.LOGO_PROPS = exports.DOWN_ICON = exports.DEFAULT_L
|
|
|
8
8
|
var PLUGIN_NAME = 'admin-core-ui';
|
|
9
9
|
exports.PLUGIN_NAME = PLUGIN_NAME;
|
|
10
10
|
var LOGO_PROPS = {
|
|
11
|
-
src: 'https://images.thisisblaze.com/logo-98-148.png'
|
|
11
|
+
src: process.env.BLAZE_ADMIN_HEAD_LOGO_URL || 'https://images.thisisblaze.com/logo-98-148.png'
|
|
12
12
|
};
|
|
13
13
|
exports.LOGO_PROPS = LOGO_PROPS;
|
|
14
14
|
var DEFAULT_LABEL = {
|
package/lib/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","names":["PLUGIN_NAME","LOGO_PROPS","src","DEFAULT_LABEL","text","icon","ACTIVE_LABEL","DOWN_ICON"],"sources":["../src/constants.js"],"sourcesContent":["const PLUGIN_NAME = 'admin-core-ui';\nconst LOGO_PROPS = {
|
|
1
|
+
{"version":3,"file":"constants.js","names":["PLUGIN_NAME","LOGO_PROPS","src","process","env","BLAZE_ADMIN_HEAD_LOGO_URL","DEFAULT_LABEL","text","icon","ACTIVE_LABEL","DOWN_ICON"],"sources":["../src/constants.js"],"sourcesContent":["const PLUGIN_NAME = 'admin-core-ui';\nconst LOGO_PROPS = {\n src: process.env.BLAZE_ADMIN_HEAD_LOGO_URL || 'https://images.thisisblaze.com/logo-98-148.png'\n};\n\nconst DEFAULT_LABEL = {\n text: 'See more',\n icon: 'down'\n};\n\nconst ACTIVE_LABEL = {\n text: 'See less',\n icon: 'up'\n};\n\nconst DOWN_ICON = 'down';\n\nexport { PLUGIN_NAME, LOGO_PROPS, ACTIVE_LABEL, DEFAULT_LABEL, DOWN_ICON };\n"],"mappings":";;;;;;;AAAA,IAAMA,WAAW,GAAG,eAAe;AAAC;AACpC,IAAMC,UAAU,GAAG;EACjBC,GAAG,EAAEC,OAAO,CAACC,GAAG,CAACC,yBAAyB,IAAI;AAChD,CAAC;AAAC;AAEF,IAAMC,aAAa,GAAG;EACpBC,IAAI,EAAE,UAAU;EAChBC,IAAI,EAAE;AACR,CAAC;AAAC;AAEF,IAAMC,YAAY,GAAG;EACnBF,IAAI,EAAE,UAAU;EAChBC,IAAI,EAAE;AACR,CAAC;AAAC;AAEF,IAAME,SAAS,GAAG,MAAM;AAAC"}
|
package/lib-es/constants.js
CHANGED
package/lib-es/constants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","names":["PLUGIN_NAME","LOGO_PROPS","src","DEFAULT_LABEL","text","icon","ACTIVE_LABEL","DOWN_ICON"],"sources":["../src/constants.js"],"sourcesContent":["const PLUGIN_NAME = 'admin-core-ui';\nconst LOGO_PROPS = {
|
|
1
|
+
{"version":3,"file":"constants.js","names":["PLUGIN_NAME","LOGO_PROPS","src","process","env","BLAZE_ADMIN_HEAD_LOGO_URL","DEFAULT_LABEL","text","icon","ACTIVE_LABEL","DOWN_ICON"],"sources":["../src/constants.js"],"sourcesContent":["const PLUGIN_NAME = 'admin-core-ui';\nconst LOGO_PROPS = {\n src: process.env.BLAZE_ADMIN_HEAD_LOGO_URL || 'https://images.thisisblaze.com/logo-98-148.png'\n};\n\nconst DEFAULT_LABEL = {\n text: 'See more',\n icon: 'down'\n};\n\nconst ACTIVE_LABEL = {\n text: 'See less',\n icon: 'up'\n};\n\nconst DOWN_ICON = 'down';\n\nexport { PLUGIN_NAME, LOGO_PROPS, ACTIVE_LABEL, DEFAULT_LABEL, DOWN_ICON };\n"],"mappings":"AAAA,MAAMA,WAAW,GAAG,eAAe;AACnC,MAAMC,UAAU,GAAG;EACjBC,GAAG,EAAEC,OAAO,CAACC,GAAG,CAACC,yBAAyB,IAAI;AAChD,CAAC;AAED,MAAMC,aAAa,GAAG;EACpBC,IAAI,EAAE,UAAU;EAChBC,IAAI,EAAE;AACR,CAAC;AAED,MAAMC,YAAY,GAAG;EACnBF,IAAI,EAAE,UAAU;EAChBC,IAAI,EAAE;AACR,CAAC;AAED,MAAME,SAAS,GAAG,MAAM;AAExB,SAASV,WAAW,EAAEC,UAAU,EAAEQ,YAAY,EAAEH,aAAa,EAAEI,SAAS"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blaze-cms/plugin-admin-core-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.127.0-project-admin-customisations.0",
|
|
4
4
|
"description": "Blaze plugin admin core ui",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib-es/index.js",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
},
|
|
28
28
|
"license": "GPL-3.0",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@blaze-cms/admin-ui-styles": "0.
|
|
31
|
-
"@blaze-cms/admin-ui-utils": "0.
|
|
32
|
-
"@blaze-cms/core-ui": "0.
|
|
33
|
-
"@blaze-cms/plugin-search-ui": "0.
|
|
30
|
+
"@blaze-cms/admin-ui-styles": "0.127.0-project-admin-customisations.0",
|
|
31
|
+
"@blaze-cms/admin-ui-utils": "0.127.0-project-admin-customisations.0",
|
|
32
|
+
"@blaze-cms/core-ui": "^0.125.0",
|
|
33
|
+
"@blaze-cms/plugin-search-ui": "0.127.0-project-admin-customisations.0",
|
|
34
34
|
"@blaze-cms/setup-ui": "^0.92.0",
|
|
35
35
|
"@blaze-react/avatar": "0.5.19",
|
|
36
36
|
"@blaze-react/button": "0.5.19",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"react-router-dom": "^5.0.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@blaze-cms/plugin-auth-ui": "0.
|
|
50
|
+
"@blaze-cms/plugin-auth-ui": "0.127.0-project-admin-customisations.0",
|
|
51
51
|
"waait": "1.0.5"
|
|
52
52
|
},
|
|
53
53
|
"eslintIgnore": [
|
|
54
54
|
"lib/*",
|
|
55
55
|
"lib-es/*"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "9690b49d267fb5c4990ac8cbfff65edc9f326a63"
|
|
58
58
|
}
|
package/src/constants.js
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
const PLUGIN_NAME = 'admin-core-ui';
|
|
2
|
-
const LOGO_PROPS = {
|
|
2
|
+
const LOGO_PROPS = {
|
|
3
|
+
src: process.env.BLAZE_ADMIN_HEAD_LOGO_URL || 'https://images.thisisblaze.com/logo-98-148.png'
|
|
4
|
+
};
|
|
3
5
|
|
|
4
6
|
const DEFAULT_LABEL = {
|
|
5
7
|
text: 'See more',
|