@bams-app/configs 0.0.1

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.
@@ -0,0 +1,23 @@
1
+ {
2
+ "bxjc-cmp": {
3
+ "appName": "生产管理系统",
4
+ "theme": "blue",
5
+ "logo": "/logo-device.png",
6
+ "features": ["monitoring", "maintenance"],
7
+ "showHeader": false
8
+ },
9
+ "bxjc-energy": {
10
+ "appName": "能源管理系统",
11
+ "theme": "green",
12
+ "logo": "/logo-energy.png",
13
+ "features": ["statistics", "analysis"],
14
+ "showHeader": false
15
+ },
16
+ "bams-pds": {
17
+ "appName": "调度管理系统",
18
+ "theme": "red",
19
+ "logo": "/logo-mes.png",
20
+ "features": ["production", "quality"],
21
+ "showHeader": true
22
+ }
23
+ }
@@ -0,0 +1,5 @@
1
+ module.exports = {
2
+ login: '@bams-app/ui-login-component',
3
+ header: '@bams-app/ui-header-component',
4
+ 'startr-layout': '@bams-app/ui-startr-layout-component'
5
+ };
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ const componentDefaults = require("./component-defaults.js");
2
+ const appConfigs = require("./app-config.json");
3
+
4
+ module.exports = {
5
+ componentDefaults,
6
+ appConfigs
7
+ };
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@bams-app/configs",
3
+ "private": false,
4
+ "version": "0.0.1",
5
+ "main": "index.js",
6
+ "files": [
7
+ "index.js",
8
+ "component-defaults.js",
9
+ "app-config.json"
10
+ ],
11
+ "description": "BAMS-Work 公共配置(应用配置、可配置组件插槽默认值)"
12
+ }