@things-factory/operato-board 9.2.5 → 10.0.0-beta.10
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 +7 -24
- package/_index.html +1 -2
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/menu-tools.d.ts +4 -12
- package/dist-client/viewparts/menu-tools.js +18 -22
- package/dist-client/viewparts/menu-tools.js.map +1 -1
- package/docker-compose.local.yml +13 -0
- package/package.json +83 -83
- package/schema.graphql +338 -34
- package/views/auth-page.html +1 -1
- package/views/public/home.html +1 -1
|
@@ -1,19 +1,11 @@
|
|
|
1
1
|
import '@material/web/icon/icon.js';
|
|
2
2
|
import '@operato/i18n/ox-i18n.js';
|
|
3
3
|
import { LitElement } from 'lit';
|
|
4
|
-
declare
|
|
5
|
-
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
6
|
-
connectedCallback(): void;
|
|
7
|
-
disconnectedCallback(): void;
|
|
8
|
-
stateChanged(_state: unknown): void;
|
|
9
|
-
readonly isConnected: boolean;
|
|
10
|
-
}) & typeof LitElement;
|
|
11
|
-
export declare class MenuTools extends MenuTools_base {
|
|
4
|
+
export declare class MenuTools extends LitElement {
|
|
12
5
|
static styles: import("lit").CSSResult[];
|
|
13
|
-
|
|
6
|
+
private _routeCtrl;
|
|
7
|
+
private _layoutCtrl;
|
|
14
8
|
width?: string;
|
|
15
|
-
context: any;
|
|
16
9
|
render(): import("lit-html").TemplateResult<1>;
|
|
17
|
-
|
|
10
|
+
protected willUpdate(): void;
|
|
18
11
|
}
|
|
19
|
-
export {};
|
|
@@ -3,10 +3,14 @@ import '@material/web/icon/icon.js';
|
|
|
3
3
|
import '@operato/i18n/ox-i18n.js';
|
|
4
4
|
import { css, html, LitElement } from 'lit';
|
|
5
5
|
import { customElement, property } from 'lit/decorators.js';
|
|
6
|
-
import {
|
|
7
|
-
import { store } from '@operato/shell';
|
|
6
|
+
import { RouteController, LayoutController } from '@operato/shell';
|
|
8
7
|
import { privileged } from '@things-factory/auth-base/dist-client';
|
|
9
|
-
let MenuTools = class MenuTools extends
|
|
8
|
+
let MenuTools = class MenuTools extends LitElement {
|
|
9
|
+
constructor() {
|
|
10
|
+
super(...arguments);
|
|
11
|
+
this._routeCtrl = new RouteController(this);
|
|
12
|
+
this._layoutCtrl = new LayoutController(this);
|
|
13
|
+
}
|
|
10
14
|
static { this.styles = [
|
|
11
15
|
css `
|
|
12
16
|
:host {
|
|
@@ -71,42 +75,44 @@ let MenuTools = class MenuTools extends connect(store)(LitElement) {
|
|
|
71
75
|
`
|
|
72
76
|
]; }
|
|
73
77
|
render() {
|
|
74
|
-
|
|
78
|
+
const page = this._routeCtrl.page;
|
|
79
|
+
const context = this._routeCtrl.context;
|
|
80
|
+
return context && context['board_topmenu']
|
|
75
81
|
? html `
|
|
76
82
|
<ul>
|
|
77
83
|
<li>
|
|
78
|
-
<a href="board-list" ?active=${
|
|
84
|
+
<a href="board-list" ?active=${page == 'board-list'}>
|
|
79
85
|
<md-icon>dvr</md-icon>
|
|
80
86
|
<div><ox-i18n msgid="label.board"></ox-i18n></div>
|
|
81
87
|
</a>
|
|
82
88
|
</li>
|
|
83
89
|
<li>
|
|
84
|
-
<a href="play-list" ?active=${
|
|
90
|
+
<a href="play-list" ?active=${page == 'play-list'}>
|
|
85
91
|
<md-icon>airplay</md-icon>
|
|
86
92
|
<div><ox-i18n msgid="label.player"></ox-i18n></div>
|
|
87
93
|
</a>
|
|
88
94
|
</li>
|
|
89
95
|
${privileged({ privilege: 'mutation', category: 'board' }, html `
|
|
90
96
|
<li>
|
|
91
|
-
<a href="board-template-list" ?active=${
|
|
97
|
+
<a href="board-template-list" ?active=${page == 'board-template-list'}>
|
|
92
98
|
<md-icon>developer_board</md-icon>
|
|
93
99
|
<div><ox-i18n msgid="label.template"></ox-i18n></div>
|
|
94
100
|
</a>
|
|
95
101
|
</li>
|
|
96
102
|
<li>
|
|
97
|
-
<a href="attachment-list" ?active=${
|
|
103
|
+
<a href="attachment-list" ?active=${page == 'attachment-list'}>
|
|
98
104
|
<md-icon>attachment</md-icon>
|
|
99
105
|
<div><ox-i18n msgid="label.attachment"></ox-i18n></div>
|
|
100
106
|
</a>
|
|
101
107
|
</li>
|
|
102
108
|
<li>
|
|
103
|
-
<a href="connection-list" ?active=${
|
|
109
|
+
<a href="connection-list" ?active=${page == 'connection-list'}>
|
|
104
110
|
<md-icon>device_hub</md-icon>
|
|
105
111
|
<div><ox-i18n msgid="label.connection"></ox-i18n></div>
|
|
106
112
|
</a>
|
|
107
113
|
</li>
|
|
108
114
|
<li>
|
|
109
|
-
<a href="scenario-list" ?active=${
|
|
115
|
+
<a href="scenario-list" ?active=${page == 'scenario-list'}>
|
|
110
116
|
<md-icon>format_list_numbered</md-icon>
|
|
111
117
|
<div><ox-i18n msgid="label.scenario"></ox-i18n></div>
|
|
112
118
|
</a>
|
|
@@ -117,24 +123,14 @@ let MenuTools = class MenuTools extends connect(store)(LitElement) {
|
|
|
117
123
|
`
|
|
118
124
|
: html ``;
|
|
119
125
|
}
|
|
120
|
-
|
|
121
|
-
this.
|
|
122
|
-
this.width = state.layout.width;
|
|
123
|
-
this.context = state.route.context;
|
|
126
|
+
willUpdate() {
|
|
127
|
+
this.width = this._layoutCtrl.width;
|
|
124
128
|
}
|
|
125
129
|
};
|
|
126
|
-
__decorate([
|
|
127
|
-
property({ type: String }),
|
|
128
|
-
__metadata("design:type", String)
|
|
129
|
-
], MenuTools.prototype, "page", void 0);
|
|
130
130
|
__decorate([
|
|
131
131
|
property({ type: String, reflect: true }),
|
|
132
132
|
__metadata("design:type", String)
|
|
133
133
|
], MenuTools.prototype, "width", void 0);
|
|
134
|
-
__decorate([
|
|
135
|
-
property({ type: Object }),
|
|
136
|
-
__metadata("design:type", Object)
|
|
137
|
-
], MenuTools.prototype, "context", void 0);
|
|
138
134
|
MenuTools = __decorate([
|
|
139
135
|
customElement('menu-tools')
|
|
140
136
|
], MenuTools);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"menu-tools.js","sourceRoot":"","sources":["../../client/viewparts/menu-tools.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,0BAA0B,CAAA;AAEjC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"menu-tools.js","sourceRoot":"","sources":["../../client/viewparts/menu-tools.ts"],"names":[],"mappings":";AAAA,OAAO,4BAA4B,CAAA;AACnC,OAAO,0BAA0B,CAAA;AAEjC,OAAO,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,EAAE,MAAM,KAAK,CAAA;AAC3C,OAAO,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAA;AAE3D,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAClE,OAAO,EAAE,UAAU,EAAE,MAAM,uCAAuC,CAAA;AAG3D,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,UAAU;IAAlC;;QAiEG,eAAU,GAAG,IAAI,eAAe,CAAC,IAAI,CAAC,CAAA;QACtC,gBAAW,GAAG,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAA;IA6DlD,CAAC;aA9HQ,WAAM,GAAG;QACd,GAAG,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA4DF;KACF,AA9DY,CA8DZ;IAOD,MAAM;QACJ,MAAM,IAAI,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAA;QACjC,MAAM,OAAO,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,CAAA;QAEvC,OAAO,OAAO,IAAI,OAAO,CAAC,eAAe,CAAC;YACxC,CAAC,CAAC,IAAI,CAAA;;;6CAGiC,IAAI,IAAI,YAAY;;;;;;4CAMrB,IAAI,IAAI,WAAW;;;;;cAKjD,UAAU,CACV,EAAE,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,OAAO,EAAE,EAC5C,IAAI,CAAA;;sDAEoC,IAAI,IAAI,qBAAqB;;;;;;kDAMjC,IAAI,IAAI,iBAAiB;;;;;;kDAMzB,IAAI,IAAI,iBAAiB;;;;;;gDAM3B,IAAI,IAAI,eAAe;;;;;;aAM1D,CACA;;SAEJ;YACH,CAAC,CAAC,IAAI,CAAA,EAAE,CAAA;IACZ,CAAC;IAES,UAAU;QAClB,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAA;IACrC,CAAC;;AA1D0C;IAA1C,QAAQ,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;;wCAAe;AApE9C,SAAS;IADrB,aAAa,CAAC,YAAY,CAAC;GACf,SAAS,CA+HrB","sourcesContent":["import '@material/web/icon/icon.js'\nimport '@operato/i18n/ox-i18n.js'\n\nimport { css, html, LitElement } from 'lit'\nimport { customElement, property } from 'lit/decorators.js'\n\nimport { RouteController, LayoutController } from '@operato/shell'\nimport { privileged } from '@things-factory/auth-base/dist-client'\n\n@customElement('menu-tools')\nexport class MenuTools extends LitElement {\n static styles = [\n css`\n :host {\n display: flex;\n background-color: var(--menu-tools-background-color);\n\n /* for narrow mode */\n flex-direction: column;\n width: 100%;\n }\n\n :host([width='WIDE']) {\n /* for wide mode */\n flex-direction: row;\n width: initial;\n height: 100%;\n }\n\n ul {\n display: flex;\n flex-direction: row;\n\n margin: auto;\n padding: 0;\n list-style: none;\n height: 100%;\n overflow: none;\n }\n\n :host([width='WIDE']) ul {\n flex-direction: column;\n }\n\n :host([width='WIDE']) li {\n border-top: 1px solid rgba(255, 255, 255, 0.1);\n border-bottom: 1px solid rgba(0, 0, 0, 0.1);\n }\n\n a {\n display: block;\n padding: 5px 0px;\n text-align: center;\n text-decoration: none;\n color: var(--menu-tools-color);\n }\n\n a[active] {\n color: var(--menu-tools-active-color);\n background-color: rgba(0, 0, 0, 0.2);\n }\n\n md-icon {\n font-variation-settings: 'FILL' 0;\n\n padding: 5px 15px 0px 15px;\n vertical-align: bottom;\n }\n\n div {\n font-size: 0.6em;\n }\n `\n ]\n\n private _routeCtrl = new RouteController(this)\n private _layoutCtrl = new LayoutController(this)\n\n @property({ type: String, reflect: true }) width?: string\n\n render() {\n const page = this._routeCtrl.page\n const context = this._routeCtrl.context\n\n return context && context['board_topmenu']\n ? html`\n <ul>\n <li>\n <a href=\"board-list\" ?active=${page == 'board-list'}>\n <md-icon>dvr</md-icon>\n <div><ox-i18n msgid=\"label.board\"></ox-i18n></div>\n </a>\n </li>\n <li>\n <a href=\"play-list\" ?active=${page == 'play-list'}>\n <md-icon>airplay</md-icon>\n <div><ox-i18n msgid=\"label.player\"></ox-i18n></div>\n </a>\n </li>\n ${privileged(\n { privilege: 'mutation', category: 'board' },\n html`\n <li>\n <a href=\"board-template-list\" ?active=${page == 'board-template-list'}>\n <md-icon>developer_board</md-icon>\n <div><ox-i18n msgid=\"label.template\"></ox-i18n></div>\n </a>\n </li>\n <li>\n <a href=\"attachment-list\" ?active=${page == 'attachment-list'}>\n <md-icon>attachment</md-icon>\n <div><ox-i18n msgid=\"label.attachment\"></ox-i18n></div>\n </a>\n </li>\n <li>\n <a href=\"connection-list\" ?active=${page == 'connection-list'}>\n <md-icon>device_hub</md-icon>\n <div><ox-i18n msgid=\"label.connection\"></ox-i18n></div>\n </a>\n </li>\n <li>\n <a href=\"scenario-list\" ?active=${page == 'scenario-list'}>\n <md-icon>format_list_numbered</md-icon>\n <div><ox-i18n msgid=\"label.scenario\"></ox-i18n></div>\n </a>\n </li>\n </ul>\n `\n )}\n </ul>\n `\n : html``\n }\n\n protected willUpdate() {\n this.width = this._layoutCtrl.width\n }\n}\n"]}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# 로컬 Docker 테스트용
|
|
2
|
+
# Usage: docker compose -f docker-compose.local.yml up
|
|
3
|
+
services:
|
|
4
|
+
operato-board:
|
|
5
|
+
image: hatiolab/operato-board:10.0.0-beta.6
|
|
6
|
+
platform: linux/amd64
|
|
7
|
+
ports:
|
|
8
|
+
- '4000:3000'
|
|
9
|
+
volumes:
|
|
10
|
+
- ./db.sqlite:/app/db.sqlite
|
|
11
|
+
- ./config.production.js:/app/config.production.js
|
|
12
|
+
- ./attachments:/app/attachments
|
|
13
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0-beta.10",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -47,92 +47,92 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@material/web": "^2.0.0",
|
|
50
|
-
"@operato/attachment": "^
|
|
51
|
-
"@operato/font": "^
|
|
52
|
-
"@operato/graphql": "^
|
|
53
|
-
"@operato/help": "^
|
|
54
|
-
"@operato/i18n": "^
|
|
55
|
-
"@operato/input": "^
|
|
56
|
-
"@operato/layout": "^
|
|
57
|
-
"@operato/pull-to-refresh": "^
|
|
58
|
-
"@operato/scene-auth": "^
|
|
59
|
-
"@operato/scene-chartjs": "^
|
|
60
|
-
"@operato/scene-clock": "^
|
|
61
|
-
"@operato/scene-clone": "^
|
|
62
|
-
"@operato/scene-compass": "^
|
|
63
|
-
"@operato/scene-data-transform": "^
|
|
64
|
-
"@operato/scene-excel": "^
|
|
65
|
-
"@operato/scene-form": "^
|
|
66
|
-
"@operato/scene-gantt": "^
|
|
67
|
-
"@operato/scene-gauge": "^
|
|
68
|
-
"@operato/scene-google-map": "^
|
|
69
|
-
"@operato/scene-graphql": "^
|
|
70
|
-
"@operato/scene-half-roundrect": "^
|
|
71
|
-
"@operato/scene-i18n": "^
|
|
72
|
-
"@operato/scene-image-slider": "^
|
|
73
|
-
"@operato/scene-indoor-map": "^
|
|
74
|
-
"@operato/scene-integration": "^
|
|
75
|
-
"@operato/scene-label": "^
|
|
76
|
-
"@operato/scene-legend": "^
|
|
77
|
-
"@operato/scene-manufacturing": "^
|
|
78
|
-
"@operato/scene-marker": "^
|
|
79
|
-
"@operato/scene-material-design": "^
|
|
80
|
-
"@operato/scene-news-ticker": "^
|
|
81
|
-
"@operato/scene-polypath": "^
|
|
82
|
-
"@operato/scene-progressbar": "^
|
|
83
|
-
"@operato/scene-random": "^
|
|
84
|
-
"@operato/scene-restful": "^
|
|
85
|
-
"@operato/scene-scichart": "^
|
|
86
|
-
"@operato/scene-switch": "^
|
|
87
|
-
"@operato/scene-tab": "^
|
|
88
|
-
"@operato/scene-table": "^
|
|
89
|
-
"@operato/scene-timer": "^
|
|
90
|
-
"@operato/scene-visualizer": "^
|
|
91
|
-
"@operato/scene-wheel-sorter": "^
|
|
92
|
-
"@operato/shell": "^
|
|
93
|
-
"@operato/styles": "^
|
|
94
|
-
"@operato/utils": "^
|
|
95
|
-
"@things-factory/apptool-ui": "^
|
|
96
|
-
"@things-factory/auth-azure-ad": "^
|
|
97
|
-
"@things-factory/auth-google": "^
|
|
98
|
-
"@things-factory/auth-ui": "^
|
|
99
|
-
"@things-factory/board-service": "^
|
|
100
|
-
"@things-factory/board-ui": "^
|
|
101
|
-
"@things-factory/context-ui": "^
|
|
102
|
-
"@things-factory/evaluation": "^
|
|
103
|
-
"@things-factory/export-ui": "^
|
|
104
|
-
"@things-factory/fav-base": "^
|
|
105
|
-
"@things-factory/font-base": "^
|
|
106
|
-
"@things-factory/form-ui": "^
|
|
107
|
-
"@things-factory/help": "^
|
|
108
|
-
"@things-factory/i18n-base": "^
|
|
109
|
-
"@things-factory/import-ui": "^
|
|
110
|
-
"@things-factory/integration-base": "^
|
|
111
|
-
"@things-factory/integration-email": "^
|
|
112
|
-
"@things-factory/integration-influxdb": "^
|
|
113
|
-
"@things-factory/integration-msgraph": "^
|
|
114
|
-
"@things-factory/integration-notification": "^
|
|
115
|
-
"@things-factory/integration-openai": "^
|
|
116
|
-
"@things-factory/integration-ui": "^
|
|
117
|
-
"@things-factory/integration-weather": "^
|
|
118
|
-
"@things-factory/more-ui": "^
|
|
119
|
-
"@things-factory/notification": "^
|
|
120
|
-
"@things-factory/oauth2-client": "^
|
|
121
|
-
"@things-factory/offline-ui": "^
|
|
122
|
-
"@things-factory/pdf": "^
|
|
123
|
-
"@things-factory/print-ui": "^
|
|
124
|
-
"@things-factory/resource-ui": "^
|
|
125
|
-
"@things-factory/scheduler": "^
|
|
126
|
-
"@things-factory/setting-ui": "^
|
|
127
|
-
"@things-factory/shell": "^
|
|
128
|
-
"@things-factory/system": "^
|
|
50
|
+
"@operato/attachment": "^10.0.0-beta.1",
|
|
51
|
+
"@operato/font": "^10.0.0-beta.1",
|
|
52
|
+
"@operato/graphql": "^10.0.0-beta.1",
|
|
53
|
+
"@operato/help": "^10.0.0-beta.1",
|
|
54
|
+
"@operato/i18n": "^10.0.0-beta.1",
|
|
55
|
+
"@operato/input": "^10.0.0-beta.1",
|
|
56
|
+
"@operato/layout": "^10.0.0-beta.1",
|
|
57
|
+
"@operato/pull-to-refresh": "^10.0.0-beta.1",
|
|
58
|
+
"@operato/scene-auth": "^10.0.0-beta.1",
|
|
59
|
+
"@operato/scene-chartjs": "^10.0.0-beta.1",
|
|
60
|
+
"@operato/scene-clock": "^10.0.0-beta.1",
|
|
61
|
+
"@operato/scene-clone": "^10.0.0-beta.1",
|
|
62
|
+
"@operato/scene-compass": "^10.0.0-beta.1",
|
|
63
|
+
"@operato/scene-data-transform": "^10.0.0-beta.1",
|
|
64
|
+
"@operato/scene-excel": "^10.0.0-beta.1",
|
|
65
|
+
"@operato/scene-form": "^10.0.0-beta.1",
|
|
66
|
+
"@operato/scene-gantt": "^10.0.0-beta.1",
|
|
67
|
+
"@operato/scene-gauge": "^10.0.0-beta.1",
|
|
68
|
+
"@operato/scene-google-map": "^10.0.0-beta.1",
|
|
69
|
+
"@operato/scene-graphql": "^10.0.0-beta.1",
|
|
70
|
+
"@operato/scene-half-roundrect": "^10.0.0-beta.1",
|
|
71
|
+
"@operato/scene-i18n": "^10.0.0-beta.1",
|
|
72
|
+
"@operato/scene-image-slider": "^10.0.0-beta.1",
|
|
73
|
+
"@operato/scene-indoor-map": "^10.0.0-beta.1",
|
|
74
|
+
"@operato/scene-integration": "^10.0.0-beta.1",
|
|
75
|
+
"@operato/scene-label": "^10.0.0-beta.1",
|
|
76
|
+
"@operato/scene-legend": "^10.0.0-beta.1",
|
|
77
|
+
"@operato/scene-manufacturing": "^10.0.0-beta.1",
|
|
78
|
+
"@operato/scene-marker": "^10.0.0-beta.1",
|
|
79
|
+
"@operato/scene-material-design": "^10.0.0-beta.1",
|
|
80
|
+
"@operato/scene-news-ticker": "^10.0.0-beta.1",
|
|
81
|
+
"@operato/scene-polypath": "^10.0.0-beta.1",
|
|
82
|
+
"@operato/scene-progressbar": "^10.0.0-beta.1",
|
|
83
|
+
"@operato/scene-random": "^10.0.0-beta.1",
|
|
84
|
+
"@operato/scene-restful": "^10.0.0-beta.1",
|
|
85
|
+
"@operato/scene-scichart": "^10.0.0-beta.1",
|
|
86
|
+
"@operato/scene-switch": "^10.0.0-beta.1",
|
|
87
|
+
"@operato/scene-tab": "^10.0.0-beta.1",
|
|
88
|
+
"@operato/scene-table": "^10.0.0-beta.1",
|
|
89
|
+
"@operato/scene-timer": "^10.0.0-beta.1",
|
|
90
|
+
"@operato/scene-visualizer": "^10.0.0-beta.1",
|
|
91
|
+
"@operato/scene-wheel-sorter": "^10.0.0-beta.1",
|
|
92
|
+
"@operato/shell": "^10.0.0-beta.1",
|
|
93
|
+
"@operato/styles": "^10.0.0-beta.1",
|
|
94
|
+
"@operato/utils": "^10.0.0-beta.1",
|
|
95
|
+
"@things-factory/apptool-ui": "^10.0.0-beta.10",
|
|
96
|
+
"@things-factory/auth-azure-ad": "^10.0.0-beta.10",
|
|
97
|
+
"@things-factory/auth-google": "^10.0.0-beta.10",
|
|
98
|
+
"@things-factory/auth-ui": "^10.0.0-beta.10",
|
|
99
|
+
"@things-factory/board-service": "^10.0.0-beta.10",
|
|
100
|
+
"@things-factory/board-ui": "^10.0.0-beta.10",
|
|
101
|
+
"@things-factory/context-ui": "^10.0.0-beta.10",
|
|
102
|
+
"@things-factory/evaluation": "^10.0.0-beta.10",
|
|
103
|
+
"@things-factory/export-ui": "^10.0.0-beta.10",
|
|
104
|
+
"@things-factory/fav-base": "^10.0.0-beta.10",
|
|
105
|
+
"@things-factory/font-base": "^10.0.0-beta.10",
|
|
106
|
+
"@things-factory/form-ui": "^10.0.0-beta.5",
|
|
107
|
+
"@things-factory/help": "^10.0.0-beta.10",
|
|
108
|
+
"@things-factory/i18n-base": "^10.0.0-beta.10",
|
|
109
|
+
"@things-factory/import-ui": "^10.0.0-beta.10",
|
|
110
|
+
"@things-factory/integration-base": "^10.0.0-beta.10",
|
|
111
|
+
"@things-factory/integration-email": "^10.0.0-beta.10",
|
|
112
|
+
"@things-factory/integration-influxdb": "^10.0.0-beta.10",
|
|
113
|
+
"@things-factory/integration-msgraph": "^10.0.0-beta.10",
|
|
114
|
+
"@things-factory/integration-notification": "^10.0.0-beta.10",
|
|
115
|
+
"@things-factory/integration-openai": "^10.0.0-beta.10",
|
|
116
|
+
"@things-factory/integration-ui": "^10.0.0-beta.10",
|
|
117
|
+
"@things-factory/integration-weather": "^10.0.0-beta.10",
|
|
118
|
+
"@things-factory/more-ui": "^10.0.0-beta.10",
|
|
119
|
+
"@things-factory/notification": "^10.0.0-beta.10",
|
|
120
|
+
"@things-factory/oauth2-client": "^10.0.0-beta.10",
|
|
121
|
+
"@things-factory/offline-ui": "^10.0.0-beta.10",
|
|
122
|
+
"@things-factory/pdf": "^10.0.0-beta.10",
|
|
123
|
+
"@things-factory/print-ui": "^10.0.0-beta.10",
|
|
124
|
+
"@things-factory/resource-ui": "^10.0.0-beta.10",
|
|
125
|
+
"@things-factory/scheduler": "^10.0.0-beta.10",
|
|
126
|
+
"@things-factory/setting-ui": "^10.0.0-beta.10",
|
|
127
|
+
"@things-factory/shell": "^10.0.0-beta.10",
|
|
128
|
+
"@things-factory/system": "^10.0.0-beta.10"
|
|
129
129
|
},
|
|
130
130
|
"devDependencies": {
|
|
131
|
-
"@things-factory/board-test": "^
|
|
132
|
-
"@things-factory/builder": "^
|
|
131
|
+
"@things-factory/board-test": "^10.0.0-beta.10",
|
|
132
|
+
"@things-factory/builder": "^10.0.0-beta.5"
|
|
133
133
|
},
|
|
134
134
|
"resolutions": {
|
|
135
135
|
"passport": "^0.7.0"
|
|
136
136
|
},
|
|
137
|
-
"gitHead": "
|
|
137
|
+
"gitHead": "95acadd39e9a0ff3b2f34d9f7082142395903179"
|
|
138
138
|
}
|