@fmsim/fmsim 1.0.87 → 2.0.0-beta.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/Dockerfile +3 -3
- package/_index.html +9 -39
- package/dist-client/apptools/favorite-tool.js +4 -5
- package/dist-client/apptools/favorite-tool.js.map +1 -1
- package/dist-client/board-list/board-tile-list.js +9 -9
- package/dist-client/board-list/board-tile-list.js.map +1 -1
- package/dist-client/board-list/group-bar.js +6 -6
- package/dist-client/board-list/group-bar.js.map +1 -1
- package/dist-client/bootstrap.js +0 -2
- package/dist-client/bootstrap.js.map +1 -1
- package/dist-client/entries/headless-scene-components.js +7 -0
- package/dist-client/entries/headless-scene-components.js.map +1 -0
- package/dist-client/entries/scene-player.js +83 -0
- package/dist-client/entries/scene-player.js.map +1 -0
- package/dist-client/entries/scene-viewer.js +80 -0
- package/dist-client/entries/scene-viewer.js.map +1 -0
- package/dist-client/entries/things-scene-components.import +1 -0
- package/dist-client/pages/board-list-page.js +2 -3
- package/dist-client/pages/board-list-page.js.map +1 -1
- package/dist-client/themes/index.css +8 -2
- package/dist-client/themes/light.css +51 -0
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/board-info.js +16 -26
- package/dist-client/viewparts/board-info.js.map +1 -1
- package/dist-client/viewparts/group-info.js +15 -25
- package/dist-client/viewparts/group-info.js.map +1 -1
- package/dist-client/viewparts/menu-tools.js +9 -10
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +33 -32
- package/schema.graphql +3309 -384
- package/views/auth-page.html +2 -2
- package/views/internal-board-full-feature-view.html +1 -1
- package/views/internal-board-service-view.html +1 -1
- package/views/public/home.html +2 -2
- package/dist-client/apptools/favorite-tool.d.ts +0 -26
- package/dist-client/board-list/board-tile-list.d.ts +0 -20
- package/dist-client/board-list/group-bar.d.ts +0 -14
- package/dist-client/bootstrap.d.ts +0 -5
- package/dist-client/index.d.ts +0 -0
- package/dist-client/pages/attachment-list-page.d.ts +0 -21
- package/dist-client/pages/board-list-page.d.ts +0 -70
- package/dist-client/pages/connection-list-page.d.ts +0 -30
- package/dist-client/pages/font-list-page.d.ts +0 -10
- package/dist-client/pages/scenario-list-page.d.ts +0 -30
- package/dist-client/pages/toplevel-theme-list-page.d.ts +0 -25
- package/dist-client/route.d.ts +0 -1
- package/dist-client/viewparts/board-info.d.ts +0 -16
- package/dist-client/viewparts/group-info.d.ts +0 -15
- package/dist-client/viewparts/menu-tools.d.ts +0 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fmsim/fmsim",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"serve": "things-factory fmsim",
|
|
20
20
|
"serve:dev": "npm run build:server && things-factory-dev fmsim --webpack @fmsim/builder/webpack.config.dev.js",
|
|
21
21
|
"build": "npm run build:server && npm run build:client",
|
|
22
|
-
"build:client": "npm run clean:client && npm run copy:files && tsc --p ./client/tsconfig.json",
|
|
23
|
-
"build:server": "npm run clean:server && tsc --p ./server/tsconfig.json",
|
|
22
|
+
"build:client": "npm run clean:client && npm run copy:files && (tsc --p ./client/tsconfig.json; exit 0)",
|
|
23
|
+
"build:server": "npm run clean:server && (tsc --p ./server/tsconfig.json; exit 0)",
|
|
24
24
|
"build:app": "npm run clean:app && webpack --config ../../node_modules/@fmsim/builder/webpack.config.js",
|
|
25
25
|
"clean": "npm run clean:server && npm run clean:client",
|
|
26
26
|
"clean:server": "rm -rf dist-server",
|
|
@@ -40,42 +40,43 @@
|
|
|
40
40
|
"docker:push": "docker image push hatiolab/fmsim:latest && docker image push hatiolab/fmsim:$npm_package_version"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@fmsim/layout-view": "^
|
|
44
|
-
"@fmsim/machine": "^
|
|
45
|
-
"@operato/attachment": "^
|
|
46
|
-
"@operato/font": "^
|
|
47
|
-
"@operato/i18n": "^
|
|
48
|
-
"@operato/layout": "^
|
|
49
|
-
"@operato/pull-to-refresh": "^
|
|
50
|
-
"@operato/scene-integration": "^
|
|
51
|
-
"@operato/shell": "^
|
|
52
|
-
"@operato/styles": "^
|
|
53
|
-
"@operato/utils": "^
|
|
54
|
-
"@things-factory/apptool-ui": "^
|
|
55
|
-
"@things-factory/auth-base": "^
|
|
56
|
-
"@things-factory/auth-ui": "^
|
|
57
|
-
"@things-factory/board-service": "^
|
|
58
|
-
"@things-factory/context-ui": "^
|
|
59
|
-
"@things-factory/
|
|
60
|
-
"@things-factory/
|
|
61
|
-
"@things-factory/
|
|
62
|
-
"@things-factory/
|
|
63
|
-
"@things-factory/
|
|
64
|
-
"@things-factory/integration-
|
|
65
|
-
"@things-factory/
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/
|
|
69
|
-
"@things-factory/
|
|
43
|
+
"@fmsim/layout-view": "^2.0.0-beta.3",
|
|
44
|
+
"@fmsim/machine": "^2.0.0-beta.3",
|
|
45
|
+
"@operato/attachment": "^10.0.0-beta.1",
|
|
46
|
+
"@operato/font": "^10.0.0-beta.1",
|
|
47
|
+
"@operato/i18n": "^10.0.0-beta.1",
|
|
48
|
+
"@operato/layout": "^10.0.0-beta.1",
|
|
49
|
+
"@operato/pull-to-refresh": "^10.0.0-beta.1",
|
|
50
|
+
"@operato/scene-integration": "^10.0.0-beta.1",
|
|
51
|
+
"@operato/shell": "^10.0.0-beta.1",
|
|
52
|
+
"@operato/styles": "^10.0.0-beta.1",
|
|
53
|
+
"@operato/utils": "^10.0.0-beta.1",
|
|
54
|
+
"@things-factory/apptool-ui": "^10.0.0-beta.1",
|
|
55
|
+
"@things-factory/auth-base": "^10.0.0-beta.1",
|
|
56
|
+
"@things-factory/auth-ui": "^10.0.0-beta.1",
|
|
57
|
+
"@things-factory/board-service": "^10.0.0-beta.1",
|
|
58
|
+
"@things-factory/context-ui": "^10.0.0-beta.1",
|
|
59
|
+
"@things-factory/evaluation": "^10.0.0-beta.1",
|
|
60
|
+
"@things-factory/fav-base": "^10.0.0-beta.1",
|
|
61
|
+
"@things-factory/font-base": "^10.0.0-beta.1",
|
|
62
|
+
"@things-factory/form-ui": "^10.0.0-beta.1",
|
|
63
|
+
"@things-factory/i18n-base": "^10.0.0-beta.1",
|
|
64
|
+
"@things-factory/integration-base": "^10.0.0-beta.1",
|
|
65
|
+
"@things-factory/integration-ui": "^10.0.0-beta.1",
|
|
66
|
+
"@things-factory/more-ui": "^10.0.0-beta.1",
|
|
67
|
+
"@things-factory/notification": "^10.0.0-beta.1",
|
|
68
|
+
"@things-factory/resource-ui": "^10.0.0-beta.1",
|
|
69
|
+
"@things-factory/shell": "^10.0.0-beta.1",
|
|
70
|
+
"@things-factory/system": "^10.0.0-beta.1",
|
|
70
71
|
"pretendard": "^1.3.9"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|
|
73
|
-
"@fmsim/builder": "^
|
|
74
|
+
"@fmsim/builder": "^2.0.0-beta.3",
|
|
74
75
|
"copyfiles": "^2.4.1",
|
|
75
76
|
"typescript": "^5.8.2"
|
|
76
77
|
},
|
|
77
78
|
"resolutions": {
|
|
78
79
|
"lit": "^3.0.0"
|
|
79
80
|
},
|
|
80
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "29cf1d4f43eb48dc030aaeb188f2dce65ecff95f"
|
|
81
82
|
}
|