alchemy-chimera 1.3.0-alpha.1 → 1.3.0-alpha.3
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
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
@
|
|
2
|
-
@
|
|
1
|
+
@use "styleboost";
|
|
2
|
+
@use "alchemy";
|
|
3
|
+
@import "fonts/roboto";
|
|
4
|
+
@import "/overrides/chimera_extra";
|
|
3
5
|
|
|
4
6
|
body {
|
|
5
7
|
font-family: 'Roboto', sans-serif;
|
|
@@ -286,15 +288,6 @@ al-widgets-navigation {
|
|
|
286
288
|
opacity: 0;
|
|
287
289
|
}
|
|
288
290
|
|
|
289
|
-
.alchemy-field-enum.alchemy-field-value {
|
|
290
|
-
margin: auto;
|
|
291
|
-
background: #777;
|
|
292
|
-
display: inline-block;
|
|
293
|
-
padding: 6px;
|
|
294
|
-
border-radius: 7px;
|
|
295
|
-
color: white;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
291
|
al-field-translatable {
|
|
299
292
|
.prefix-buttons {
|
|
300
293
|
width: 100%;
|
|
@@ -26,9 +26,7 @@ SettingsController.setAction(async function editor(conduit) {
|
|
|
26
26
|
return conduit.end();
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
const AlchemySetting = this.getModel('
|
|
30
|
-
|
|
31
|
-
console.log('Changes:', changes);
|
|
29
|
+
const AlchemySetting = this.getModel('System.Setting');
|
|
32
30
|
|
|
33
31
|
await AlchemySetting.saveChanges(changes, conduit);
|
|
34
32
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alchemy-chimera",
|
|
3
3
|
"description": "Chimera plugin for Alchemy MVC",
|
|
4
|
-
"version": "1.3.0-alpha.
|
|
4
|
+
"version": "1.3.0-alpha.3",
|
|
5
5
|
"author": "Jelle De Loecker <jelle@elevenways.be>",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"alchemy",
|
|
@@ -11,10 +11,11 @@
|
|
|
11
11
|
],
|
|
12
12
|
"repository": "11ways/alchemy-chimera",
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"alchemy-acl"
|
|
15
|
-
"alchemymvc"
|
|
16
|
-
"alchemy-form"
|
|
17
|
-
"alchemy-widget"
|
|
14
|
+
"alchemy-acl" : "~0.9.0||~0.9.0-alpha",
|
|
15
|
+
"alchemymvc" : ">=1.4.0||>=1.4.0-alpha",
|
|
16
|
+
"alchemy-form" : "~0.3.0||~0.3.0-alpha",
|
|
17
|
+
"alchemy-widget" : "~0.3.0||~0.3.0-alpha",
|
|
18
|
+
"alchemy-styleboost" : ">=0.5.0||>=0.5.0-alpha"
|
|
18
19
|
},
|
|
19
20
|
"license": "MIT",
|
|
20
21
|
"engines": {
|