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,3 +1,11 @@
1
+ ## 1.3.0-alpha.3 (2025-05-11)
2
+
3
+ * Fix error when saving Alchemy settings from Chimera
4
+
5
+ ## 1.3.0-alpha.2 (2024-02-25)
6
+
7
+ * Begin implementing the Styleboost SCSS framework
8
+
1
9
  ## 1.3.0-alpha.1 (2024-02-15)
2
10
 
3
11
  * Upgrade to Alchemy v1.4.0
@@ -1,5 +1,7 @@
1
- @import "reset.scss";
2
- @import "fonts/roboto.scss";
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('AlchemySetting');
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.1",
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" : "~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"
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": {