@o3r/application 11.4.0-prerelease.24 → 11.4.0-prerelease.25
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/package.json +6 -6
- package/schemas/cms.schema.json +29 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/application",
|
|
3
|
-
"version": "11.4.0-prerelease.
|
|
3
|
+
"version": "11.4.0-prerelease.25",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"@angular-devkit/schematics": "~18.2.0",
|
|
29
29
|
"@angular/common": "~18.2.0",
|
|
30
30
|
"@angular/core": "~18.2.0",
|
|
31
|
-
"@o3r/core": "^11.4.0-prerelease.
|
|
32
|
-
"@o3r/logger": "^11.4.0-prerelease.
|
|
33
|
-
"@o3r/routing": "^11.4.0-prerelease.
|
|
34
|
-
"@o3r/schematics": "^11.4.0-prerelease.
|
|
35
|
-
"@o3r/testing": "^11.4.0-prerelease.
|
|
31
|
+
"@o3r/core": "^11.4.0-prerelease.25",
|
|
32
|
+
"@o3r/logger": "^11.4.0-prerelease.25",
|
|
33
|
+
"@o3r/routing": "^11.4.0-prerelease.25",
|
|
34
|
+
"@o3r/schematics": "^11.4.0-prerelease.25",
|
|
35
|
+
"@o3r/testing": "^11.4.0-prerelease.25",
|
|
36
36
|
"@schematics/angular": "~18.2.0",
|
|
37
37
|
"rxjs": "^7.8.1",
|
|
38
38
|
"typescript": "~5.5.4"
|
package/schemas/cms.schema.json
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
"title": "Schema of CMS application configuration",
|
|
6
6
|
"description": "Schema used to indicate the configuration to the CMS when the application is loaded by it",
|
|
7
7
|
"additionalProperties": false,
|
|
8
|
+
"required": [
|
|
9
|
+
"localisationsFolder"
|
|
10
|
+
],
|
|
8
11
|
"properties": {
|
|
9
12
|
"assetsFolder": {
|
|
10
13
|
"type": "string",
|
|
@@ -20,7 +23,8 @@
|
|
|
20
23
|
"description": "An array of the CSS files which are used by placeholders at runtime. These files will be used in the placeholder editor",
|
|
21
24
|
"items": {
|
|
22
25
|
"type": "string"
|
|
23
|
-
}
|
|
26
|
+
},
|
|
27
|
+
"default": []
|
|
24
28
|
},
|
|
25
29
|
"defaultLanguage": {
|
|
26
30
|
"type": "string",
|
|
@@ -29,11 +33,33 @@
|
|
|
29
33
|
},
|
|
30
34
|
"functionalContentsFolder": {
|
|
31
35
|
"type": "string",
|
|
32
|
-
"description": "The relative path to the functional contents metadata folder to import"
|
|
36
|
+
"description": "The relative path to the functional contents metadata folder to import",
|
|
37
|
+
"default": "functional-contents-metadata"
|
|
38
|
+
},
|
|
39
|
+
"features": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"description": "Set of additional CMS features that can be activated or deactivated for the application",
|
|
42
|
+
"properties": {
|
|
43
|
+
"themingCssOverrideEnabled": {
|
|
44
|
+
"type": "boolean",
|
|
45
|
+
"description": "Specifies that the blueprint supports theming CSS file customization",
|
|
46
|
+
"default": false
|
|
47
|
+
},
|
|
48
|
+
"themingCssVariablesEnabled": {
|
|
49
|
+
"type": "boolean",
|
|
50
|
+
"description": "Specifies that the blueprint supports theming CSS variables customization",
|
|
51
|
+
"default": true
|
|
52
|
+
}
|
|
53
|
+
}
|
|
33
54
|
},
|
|
34
55
|
"migrationScriptFolder": {
|
|
35
56
|
"type": "string",
|
|
36
|
-
"description": "The relative path to the migration scripts"
|
|
57
|
+
"description": "The relative path to the migration scripts",
|
|
58
|
+
"default": "migration-scripts"
|
|
59
|
+
},
|
|
60
|
+
"migrationScriptVersionDependency": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"description": "Name of the package dependency to get the current blueprint version from. If the dependency is not found, the field version in the package.json will be used instead if defined. If not defined, no migration script will be executed"
|
|
37
63
|
}
|
|
38
64
|
}
|
|
39
65
|
}
|