@things-factory/operato-board 4.0.39 → 4.0.43
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/client/apptools/favorite-tool.js +5 -5
- package/client/board-list/board-tile-list.js +5 -4
- package/client/board-list/group-bar.js +2 -2
- package/client/board-list/play-group-bar.js +3 -2
- package/client/bootstrap.js +1 -0
- package/client/pages/app-board-modeller-page.js +2 -1
- package/client/pages/attachment-list-page.js +1 -1
- package/client/pages/board-list-page.js +1 -1
- package/client/pages/font-list-page.js +5 -5
- package/client/pages/headroom-test-page.js +3 -1
- package/client/pages/play-list-page.js +2 -2
- package/client/pages/sticky-test-page.js +3 -1
- package/client/viewparts/board-info.js +1 -1
- package/client/viewparts/group-info.js +55 -31
- package/client/viewparts/menu-tools.js +1 -1
- package/client/viewparts/play-group-info.js +50 -28
- package/config.development.js +1 -0
- package/helps/release-note.ko.md +3 -0
- package/helps/release-note.md +3 -0
- package/package.json +66 -65
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
|
-
import gql from 'graphql-tag'
|
|
4
|
-
|
|
5
1
|
import '@material/mwc-icon'
|
|
6
2
|
|
|
7
|
-
import
|
|
3
|
+
import gql from 'graphql-tag'
|
|
4
|
+
import { css, html, LitElement } from 'lit'
|
|
5
|
+
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
|
+
|
|
8
7
|
import { UPDATE_FAVORITES } from '@things-factory/fav-base'
|
|
8
|
+
import { client, store } from '@things-factory/shell'
|
|
9
9
|
|
|
10
10
|
export class FavoriteTool extends connect(store)(LitElement) {
|
|
11
11
|
static get properties() {
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { css, html, LitElement } from 'lit-element'
|
|
2
|
-
import gql from 'graphql-tag'
|
|
3
|
-
import { client } from '@things-factory/shell'
|
|
4
1
|
import '@things-factory/board-ui'
|
|
5
|
-
|
|
6
2
|
import '@material/mwc-icon'
|
|
7
3
|
|
|
4
|
+
import gql from 'graphql-tag'
|
|
5
|
+
import { css, html, LitElement } from 'lit'
|
|
6
|
+
|
|
7
|
+
import { client } from '@things-factory/shell'
|
|
8
|
+
|
|
8
9
|
export default class BoardTileList extends LitElement {
|
|
9
10
|
static get styles() {
|
|
10
11
|
return [
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import
|
|
1
|
+
import '@material/mwc-icon'
|
|
2
|
+
|
|
3
|
+
import { css, html, LitElement } from 'lit'
|
|
2
4
|
import ScrollBooster from 'scrollbooster'
|
|
3
5
|
|
|
4
|
-
import '@material/mwc-icon'
|
|
5
6
|
import { longpressable } from '@things-factory/utils'
|
|
6
7
|
|
|
7
8
|
export default class PlayGroupBar extends LitElement {
|
package/client/bootstrap.js
CHANGED
|
@@ -5,7 +5,7 @@ import '../viewparts/board-info'
|
|
|
5
5
|
import '../viewparts/group-info'
|
|
6
6
|
|
|
7
7
|
import gql from 'graphql-tag'
|
|
8
|
-
import { css, html } from 'lit
|
|
8
|
+
import { css, html } from 'lit'
|
|
9
9
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
10
10
|
|
|
11
11
|
import InfiniteScrollable from '@operato/utils/mixins/infinite-scrollable.js'
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import { html, css } from 'lit-element'
|
|
2
|
-
import { PageView } from '@things-factory/shell'
|
|
3
1
|
import '@things-factory/font-ui'
|
|
4
2
|
|
|
3
|
+
import { css, html } from 'lit'
|
|
4
|
+
|
|
5
|
+
import { PageView } from '@things-factory/shell'
|
|
6
|
+
|
|
5
7
|
export class FontListPage extends PageView {
|
|
6
8
|
static get styles() {
|
|
7
9
|
return [
|
|
@@ -29,9 +31,7 @@ export class FontListPage extends PageView {
|
|
|
29
31
|
}
|
|
30
32
|
|
|
31
33
|
render() {
|
|
32
|
-
return html`
|
|
33
|
-
<font-selector .creatable=${true}></font-selector>
|
|
34
|
-
`
|
|
34
|
+
return html` <font-selector .creatable=${true}></font-selector> `
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import '@things-factory/grist-ui'
|
|
2
|
+
|
|
3
|
+
import { css, html } from 'lit'
|
|
4
|
+
|
|
2
5
|
import { i18next } from '@things-factory/i18n-base'
|
|
3
6
|
import { PageView } from '@things-factory/shell'
|
|
4
7
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
5
8
|
import { isMobileDevice } from '@things-factory/utils'
|
|
6
|
-
import { css, html } from 'lit-element'
|
|
7
9
|
|
|
8
10
|
export class HeadroomTestPage extends PageView {
|
|
9
11
|
static get properties() {
|
|
@@ -6,7 +6,7 @@ import '../viewparts/board-info'
|
|
|
6
6
|
import '../viewparts/play-group-info'
|
|
7
7
|
|
|
8
8
|
import gql from 'graphql-tag'
|
|
9
|
-
import { css, html } from 'lit
|
|
9
|
+
import { css, html } from 'lit'
|
|
10
10
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
11
11
|
|
|
12
12
|
import { UPDATE_FAVORITES } from '@things-factory/fav-base'
|
|
@@ -336,7 +336,7 @@ class PlayListPage extends connect(store)(PageView) {
|
|
|
336
336
|
try {
|
|
337
337
|
await client.mutate({
|
|
338
338
|
mutation: gql`
|
|
339
|
-
mutation($id: String!, $boardIds: [String!]!) {
|
|
339
|
+
mutation ($id: String!, $boardIds: [String!]!) {
|
|
340
340
|
leavePlayGroup(id: $id, boardIds: $boardIds) {
|
|
341
341
|
id
|
|
342
342
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import '@things-factory/grist-ui'
|
|
2
|
+
|
|
3
|
+
import { css, html } from 'lit'
|
|
4
|
+
|
|
2
5
|
import { i18next } from '@things-factory/i18n-base'
|
|
3
6
|
import { PageView } from '@things-factory/shell'
|
|
4
7
|
import { ScrollbarStyles } from '@things-factory/styles'
|
|
5
8
|
import { isMobileDevice } from '@things-factory/utils'
|
|
6
|
-
import { css, html } from 'lit-element'
|
|
7
9
|
|
|
8
10
|
export class StickyTestPage extends PageView {
|
|
9
11
|
static get properties() {
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
import { fetchGroup } from '../graphql'
|
|
3
|
-
import { i18next } from '@things-factory/i18n-base'
|
|
4
1
|
import '@material/mwc-icon'
|
|
5
2
|
|
|
3
|
+
import { css, html, LitElement } from 'lit'
|
|
4
|
+
|
|
5
|
+
import { i18next } from '@things-factory/i18n-base'
|
|
6
|
+
|
|
7
|
+
import { fetchGroup } from '../graphql'
|
|
8
|
+
|
|
6
9
|
export class GroupInfo extends LitElement {
|
|
7
10
|
static get properties() {
|
|
8
11
|
return {
|
|
@@ -22,10 +25,10 @@ export class GroupInfo extends LitElement {
|
|
|
22
25
|
overflow: auto;
|
|
23
26
|
position: relative;
|
|
24
27
|
|
|
25
|
-
--form-grid-gap:2px 0;
|
|
26
|
-
--input-field-padding
|
|
27
|
-
--legend-padding:var(--padding-default) 0 var(--padding-narrow) 0;
|
|
28
|
-
--mdc-button-horizontal-padding:var(--padding-default);
|
|
28
|
+
--form-grid-gap: 2px 0;
|
|
29
|
+
--input-field-padding: var(--padding-default);
|
|
30
|
+
--legend-padding: var(--padding-default) 0 var(--padding-narrow) 0;
|
|
31
|
+
--mdc-button-horizontal-padding: var(--padding-default);
|
|
29
32
|
}
|
|
30
33
|
|
|
31
34
|
form {
|
|
@@ -33,23 +36,23 @@ export class GroupInfo extends LitElement {
|
|
|
33
36
|
grid-template-columns: repeat(12, 1fr);
|
|
34
37
|
grid-gap: var(--form-grid-gap);
|
|
35
38
|
grid-auto-rows: minmax(24px, auto);
|
|
36
|
-
padding:var(--padding-wide);
|
|
39
|
+
padding: var(--padding-wide);
|
|
37
40
|
align-items: center;
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
[buttons] {
|
|
41
44
|
grid-column: span 12;
|
|
42
45
|
padding: var(--padding-default) 0;
|
|
43
|
-
text-align:right;
|
|
46
|
+
text-align: right;
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
[buttons] * {
|
|
47
|
-
margin:0 0 0 var(--margin-narrow);
|
|
50
|
+
margin: 0 0 0 var(--margin-narrow);
|
|
48
51
|
}
|
|
49
|
-
[danger]{
|
|
50
|
-
float:left;
|
|
51
|
-
margin:0 var(--margin-narrow) 0 0
|
|
52
|
-
--mdc-theme-primary
|
|
52
|
+
[danger] {
|
|
53
|
+
float: left;
|
|
54
|
+
margin: 0 var(--margin-narrow) 0 0;
|
|
55
|
+
--mdc-theme-primary: var(--status-danger-color);
|
|
53
56
|
}
|
|
54
57
|
|
|
55
58
|
fieldset {
|
|
@@ -58,7 +61,7 @@ export class GroupInfo extends LitElement {
|
|
|
58
61
|
|
|
59
62
|
legend {
|
|
60
63
|
grid-column: span 12;
|
|
61
|
-
padding: var(--legend-padding);
|
|
64
|
+
padding: var(--legend-padding);
|
|
62
65
|
font: var(--legend-font);
|
|
63
66
|
color: var(--legend-text-color);
|
|
64
67
|
text-transform: capitalize;
|
|
@@ -73,15 +76,15 @@ export class GroupInfo extends LitElement {
|
|
|
73
76
|
|
|
74
77
|
span {
|
|
75
78
|
grid-column: span 12;
|
|
76
|
-
border-bottom:var(--border-dark-color);
|
|
77
|
-
margin-bottom:var(--margin-default);
|
|
78
|
-
padding-bottom:var(--padding-narrow);
|
|
79
|
+
border-bottom: var(--border-dark-color);
|
|
80
|
+
margin-bottom: var(--margin-default);
|
|
81
|
+
padding-bottom: var(--padding-narrow);
|
|
79
82
|
font: var(--input-field-font);
|
|
80
83
|
}
|
|
81
|
-
span mwc-icon{
|
|
82
|
-
vertical-align:middle;
|
|
83
|
-
font-size:var(--fontsize-large);
|
|
84
|
-
color:var(--primary-color);
|
|
84
|
+
span mwc-icon {
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
font-size: var(--fontsize-large);
|
|
87
|
+
color: var(--primary-color);
|
|
85
88
|
}
|
|
86
89
|
|
|
87
90
|
input,
|
|
@@ -93,7 +96,7 @@ export class GroupInfo extends LitElement {
|
|
|
93
96
|
|
|
94
97
|
border: var(--input-field-border);
|
|
95
98
|
border-radius: var(--input-field-border-radius);
|
|
96
|
-
margin-bottom:var(--margin-default);
|
|
99
|
+
margin-bottom: var(--margin-default);
|
|
97
100
|
padding: var(--input-field-padding);
|
|
98
101
|
font: var(--input-field-font);
|
|
99
102
|
}
|
|
@@ -101,7 +104,7 @@ export class GroupInfo extends LitElement {
|
|
|
101
104
|
input[type='checkbox'],
|
|
102
105
|
input[type='radio'] {
|
|
103
106
|
place-self: center;
|
|
104
|
-
margin:0;
|
|
107
|
+
margin: 0;
|
|
105
108
|
grid-column: 1;
|
|
106
109
|
}
|
|
107
110
|
|
|
@@ -143,24 +146,45 @@ export class GroupInfo extends LitElement {
|
|
|
143
146
|
|
|
144
147
|
<label>${i18next.t('label.creator')}</label>
|
|
145
148
|
<span>
|
|
146
|
-
<mwc-icon>person</mwc-icon> ${group.creator && group.creator.name}
|
|
147
|
-
|
|
149
|
+
<mwc-icon>person</mwc-icon> ${group.creator && group.creator.name} <mwc-icon>schedule</mwc-icon> ${new Date(
|
|
150
|
+
Number(group.createdAt)
|
|
151
|
+
).toLocaleString()}
|
|
148
152
|
</span>
|
|
149
153
|
|
|
150
154
|
<label>${i18next.t('label.updater')}</label>
|
|
151
155
|
<span>
|
|
152
|
-
<mwc-icon>person</mwc-icon> ${group.updater && group.updater.name}
|
|
153
|
-
|
|
156
|
+
<mwc-icon>person</mwc-icon> ${group.updater && group.updater.name} <mwc-icon>schedule</mwc-icon> ${new Date(
|
|
157
|
+
Number(group.updatedAt)
|
|
158
|
+
).toLocaleString()}
|
|
154
159
|
</span>
|
|
155
160
|
|
|
156
161
|
<div buttons>
|
|
157
162
|
${this.groupId
|
|
158
163
|
? html`
|
|
159
|
-
<mwc-button
|
|
160
|
-
|
|
164
|
+
<mwc-button
|
|
165
|
+
dense
|
|
166
|
+
raised
|
|
167
|
+
danger
|
|
168
|
+
label=${i18next.t('button.delete')}
|
|
169
|
+
@click=${this.deleteGroup.bind(this)}
|
|
170
|
+
icon="delete_outline"
|
|
171
|
+
></mwc-button>
|
|
172
|
+
<mwc-button
|
|
173
|
+
dense
|
|
174
|
+
raised
|
|
175
|
+
label=${i18next.t('button.save')}
|
|
176
|
+
@click=${this.updateGroup.bind(this)}
|
|
177
|
+
icon="done"
|
|
178
|
+
></mwc-button>
|
|
161
179
|
`
|
|
162
180
|
: html`
|
|
163
|
-
<mwc-button
|
|
181
|
+
<mwc-button
|
|
182
|
+
dense
|
|
183
|
+
raised
|
|
184
|
+
label=${i18next.t('button.create')}
|
|
185
|
+
@click=${this.createGroup.bind(this)}
|
|
186
|
+
icon="create_new_folder"
|
|
187
|
+
></mwc-button>
|
|
164
188
|
`}
|
|
165
189
|
</div>
|
|
166
190
|
</fieldset>
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
import { LitElement, html, css } from 'lit-element'
|
|
2
|
-
import { fetchPlayGroup } from '../graphql'
|
|
3
|
-
import { i18next } from '@things-factory/i18n-base'
|
|
4
1
|
import '@material/mwc-icon'
|
|
5
2
|
|
|
3
|
+
import { css, html, LitElement } from 'lit'
|
|
4
|
+
|
|
5
|
+
import { i18next } from '@things-factory/i18n-base'
|
|
6
|
+
|
|
7
|
+
import { fetchPlayGroup } from '../graphql'
|
|
8
|
+
|
|
6
9
|
export class PlayGroupInfo extends LitElement {
|
|
7
10
|
static get properties() {
|
|
8
11
|
return {
|
|
@@ -22,10 +25,10 @@ export class PlayGroupInfo extends LitElement {
|
|
|
22
25
|
overflow: auto;
|
|
23
26
|
position: relative;
|
|
24
27
|
|
|
25
|
-
--form-grid-gap:2px 0;
|
|
26
|
-
--input-field-padding
|
|
27
|
-
--legend-padding:var(--padding-default) 0 var(--padding-narrow) 0;
|
|
28
|
-
--mdc-button-horizontal-padding:var(--padding-default);
|
|
28
|
+
--form-grid-gap: 2px 0;
|
|
29
|
+
--input-field-padding: var(--padding-default);
|
|
30
|
+
--legend-padding: var(--padding-default) 0 var(--padding-narrow) 0;
|
|
31
|
+
--mdc-button-horizontal-padding: var(--padding-default);
|
|
29
32
|
}
|
|
30
33
|
|
|
31
34
|
form {
|
|
@@ -33,23 +36,23 @@ export class PlayGroupInfo extends LitElement {
|
|
|
33
36
|
grid-template-columns: repeat(12, 1fr);
|
|
34
37
|
grid-gap: var(--form-grid-gap);
|
|
35
38
|
grid-auto-rows: minmax(24px, auto);
|
|
36
|
-
padding:var(--padding-wide);
|
|
39
|
+
padding: var(--padding-wide);
|
|
37
40
|
align-items: center;
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
[buttons] {
|
|
41
44
|
grid-column: span 12;
|
|
42
45
|
padding: var(--padding-default) 0;
|
|
43
|
-
text-align:right;
|
|
46
|
+
text-align: right;
|
|
44
47
|
}
|
|
45
48
|
|
|
46
49
|
[buttons] * {
|
|
47
|
-
margin:0 0 0 var(--margin-narrow);
|
|
50
|
+
margin: 0 0 0 var(--margin-narrow);
|
|
48
51
|
}
|
|
49
|
-
[danger]{
|
|
50
|
-
float:left;
|
|
51
|
-
margin:0 var(--margin-narrow) 0 0
|
|
52
|
-
--mdc-theme-primary
|
|
52
|
+
[danger] {
|
|
53
|
+
float: left;
|
|
54
|
+
margin: 0 var(--margin-narrow) 0 0;
|
|
55
|
+
--mdc-theme-primary: var(--status-danger-color);
|
|
53
56
|
}
|
|
54
57
|
|
|
55
58
|
fieldset {
|
|
@@ -58,7 +61,7 @@ export class PlayGroupInfo extends LitElement {
|
|
|
58
61
|
|
|
59
62
|
legend {
|
|
60
63
|
grid-column: span 12;
|
|
61
|
-
padding: var(--legend-padding);
|
|
64
|
+
padding: var(--legend-padding);
|
|
62
65
|
font: var(--legend-font);
|
|
63
66
|
color: var(--legend-text-color);
|
|
64
67
|
text-transform: capitalize;
|
|
@@ -73,15 +76,15 @@ export class PlayGroupInfo extends LitElement {
|
|
|
73
76
|
|
|
74
77
|
span {
|
|
75
78
|
grid-column: span 12;
|
|
76
|
-
border-bottom:var(--border-dark-color);
|
|
77
|
-
margin-bottom:var(--margin-default);
|
|
78
|
-
padding-bottom:var(--padding-narrow);
|
|
79
|
+
border-bottom: var(--border-dark-color);
|
|
80
|
+
margin-bottom: var(--margin-default);
|
|
81
|
+
padding-bottom: var(--padding-narrow);
|
|
79
82
|
font: var(--input-field-font);
|
|
80
83
|
}
|
|
81
|
-
span mwc-icon{
|
|
82
|
-
vertical-align:middle;
|
|
83
|
-
font-size:var(--fontsize-large);
|
|
84
|
-
color:var(--primary-color);
|
|
84
|
+
span mwc-icon {
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
font-size: var(--fontsize-large);
|
|
87
|
+
color: var(--primary-color);
|
|
85
88
|
}
|
|
86
89
|
|
|
87
90
|
input,
|
|
@@ -93,7 +96,7 @@ export class PlayGroupInfo extends LitElement {
|
|
|
93
96
|
|
|
94
97
|
border: var(--input-field-border);
|
|
95
98
|
border-radius: var(--input-field-border-radius);
|
|
96
|
-
margin-bottom:var(--margin-default);
|
|
99
|
+
margin-bottom: var(--margin-default);
|
|
97
100
|
padding: var(--input-field-padding);
|
|
98
101
|
font: var(--input-field-font);
|
|
99
102
|
}
|
|
@@ -101,7 +104,7 @@ export class PlayGroupInfo extends LitElement {
|
|
|
101
104
|
input[type='checkbox'],
|
|
102
105
|
input[type='radio'] {
|
|
103
106
|
place-self: center;
|
|
104
|
-
margin:0;
|
|
107
|
+
margin: 0;
|
|
105
108
|
grid-column: 1;
|
|
106
109
|
}
|
|
107
110
|
|
|
@@ -160,14 +163,33 @@ export class PlayGroupInfo extends LitElement {
|
|
|
160
163
|
<div buttons>
|
|
161
164
|
${this.playGroupId
|
|
162
165
|
? html`
|
|
163
|
-
<mwc-button
|
|
164
|
-
|
|
166
|
+
<mwc-button
|
|
167
|
+
dense
|
|
168
|
+
raised
|
|
169
|
+
danger
|
|
170
|
+
label=${i18next.t('button.delete')}
|
|
171
|
+
@click=${this.deletePlayGroup.bind(this)}
|
|
172
|
+
icon="delete_outline"
|
|
173
|
+
></mwc-button>
|
|
174
|
+
<mwc-button
|
|
175
|
+
dense
|
|
176
|
+
raised
|
|
177
|
+
label=${i18next.t('button.save')}
|
|
178
|
+
@click=${this.updateGroup.bind(this)}
|
|
179
|
+
icon="done"
|
|
180
|
+
></mwc-button>
|
|
165
181
|
`
|
|
166
182
|
: html`
|
|
167
|
-
<mwc-button
|
|
183
|
+
<mwc-button
|
|
184
|
+
dense
|
|
185
|
+
raised
|
|
186
|
+
label=${i18next.t('button.create')}
|
|
187
|
+
@click=${this.createPlayGroup.bind(this)}
|
|
188
|
+
icon="create_new_folder"
|
|
189
|
+
></mwc-button>
|
|
168
190
|
`}
|
|
169
191
|
</div>
|
|
170
|
-
|
|
192
|
+
</fieldset>
|
|
171
193
|
</form>
|
|
172
194
|
`
|
|
173
195
|
}
|
package/config.development.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.43",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -42,73 +42,74 @@
|
|
|
42
42
|
"docker:push:cn": "docker image push hatiolab/operato-board:latest-cn && docker image push hatiolab/operato-board:$npm_package_version-cn"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@operato/attachment": "^0.3.
|
|
46
|
-
"@operato/
|
|
47
|
-
"@operato/scene-
|
|
48
|
-
"@operato/scene-
|
|
49
|
-
"@operato/scene-
|
|
50
|
-
"@operato/scene-
|
|
51
|
-
"@operato/scene-
|
|
52
|
-
"@operato/scene-
|
|
53
|
-
"@operato/scene-
|
|
54
|
-
"@operato/scene-
|
|
55
|
-
"@operato/scene-
|
|
56
|
-
"@operato/scene-
|
|
57
|
-
"@operato/scene-
|
|
58
|
-
"@operato/scene-
|
|
59
|
-
"@operato/scene-
|
|
60
|
-
"@operato/scene-
|
|
61
|
-
"@operato/scene-
|
|
62
|
-
"@operato/scene-
|
|
63
|
-
"@operato/scene-
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@things-factory/
|
|
67
|
-
"@things-factory/
|
|
68
|
-
"@things-factory/
|
|
69
|
-
"@things-factory/
|
|
70
|
-
"@things-factory/
|
|
71
|
-
"@things-factory/
|
|
72
|
-
"@things-factory/
|
|
73
|
-
"@things-factory/
|
|
74
|
-
"@things-factory/
|
|
75
|
-
"@things-factory/
|
|
76
|
-
"@things-factory/
|
|
77
|
-
"@things-factory/
|
|
78
|
-
"@things-factory/
|
|
79
|
-
"@things-factory/
|
|
80
|
-
"@things-factory/
|
|
81
|
-
"@things-factory/
|
|
82
|
-
"@things-factory/
|
|
83
|
-
"@things-factory/
|
|
45
|
+
"@operato/attachment": "^0.3.26",
|
|
46
|
+
"@operato/help": "^0.3.26",
|
|
47
|
+
"@operato/scene-ar": "^0.1.4",
|
|
48
|
+
"@operato/scene-chartjs": "^0.1.4",
|
|
49
|
+
"@operato/scene-clock": "^0.1.4",
|
|
50
|
+
"@operato/scene-clone": "^0.1.4",
|
|
51
|
+
"@operato/scene-compass": "^0.1.4",
|
|
52
|
+
"@operato/scene-gauge": "^0.1.4",
|
|
53
|
+
"@operato/scene-grist": "^0.1.4",
|
|
54
|
+
"@operato/scene-half-roundrect": "^0.1.4",
|
|
55
|
+
"@operato/scene-i18n": "^0.1.4",
|
|
56
|
+
"@operato/scene-indoor-map": "^0.1.4",
|
|
57
|
+
"@operato/scene-integration": "^0.1.4",
|
|
58
|
+
"@operato/scene-legend": "^0.1.4",
|
|
59
|
+
"@operato/scene-progressbar": "^0.1.4",
|
|
60
|
+
"@operato/scene-random": "^0.1.4",
|
|
61
|
+
"@operato/scene-switch": "^0.1.4",
|
|
62
|
+
"@operato/scene-tab": "^0.1.4",
|
|
63
|
+
"@operato/scene-table": "^0.1.4",
|
|
64
|
+
"@operato/scene-timer": "^0.1.4",
|
|
65
|
+
"@operato/scene-wheel-sorter": "^0.1.4",
|
|
66
|
+
"@things-factory/apptool-ui": "^4.0.43",
|
|
67
|
+
"@things-factory/attachment-ui": "^4.0.43",
|
|
68
|
+
"@things-factory/auth-ui": "^4.0.43",
|
|
69
|
+
"@things-factory/board-service": "^4.0.43",
|
|
70
|
+
"@things-factory/board-ui": "^4.0.43",
|
|
71
|
+
"@things-factory/context-ui": "^4.0.43",
|
|
72
|
+
"@things-factory/export-ui": "^4.0.43",
|
|
73
|
+
"@things-factory/fav-base": "^4.0.43",
|
|
74
|
+
"@things-factory/font-base": "^4.0.43",
|
|
75
|
+
"@things-factory/form-ui": "^4.0.43",
|
|
76
|
+
"@things-factory/help": "^4.0.43",
|
|
77
|
+
"@things-factory/i18n-base": "^4.0.43",
|
|
78
|
+
"@things-factory/import-ui": "^4.0.43",
|
|
79
|
+
"@things-factory/integration-notification": "^4.0.43",
|
|
80
|
+
"@things-factory/integration-ui": "^4.0.43",
|
|
81
|
+
"@things-factory/layout-ui": "^4.0.43",
|
|
82
|
+
"@things-factory/more-ui": "^4.0.43",
|
|
83
|
+
"@things-factory/notification": "^4.0.43",
|
|
84
|
+
"@things-factory/oauth2-client": "^4.0.43",
|
|
85
|
+
"@things-factory/offline-ui": "^4.0.43",
|
|
84
86
|
"@things-factory/operato-license-checker": "^3.0.4",
|
|
85
|
-
"@things-factory/pdf": "^4.0.
|
|
86
|
-
"@things-factory/print-service": "^4.0.
|
|
87
|
-
"@things-factory/print-ui": "^4.0.
|
|
88
|
-
"@things-factory/resource-ui": "^4.0.
|
|
89
|
-
"@things-factory/scene-baidu-map": "^4.0.
|
|
90
|
-
"@things-factory/scene-data-transform": "^4.0.
|
|
91
|
-
"@things-factory/scene-excel": "^4.0.
|
|
92
|
-
"@things-factory/scene-firebase": "^4.0.
|
|
93
|
-
"@things-factory/scene-form": "^4.0.
|
|
94
|
-
"@things-factory/scene-google-map": "^4.0.
|
|
95
|
-
"@things-factory/scene-graphql": "^4.0.
|
|
96
|
-
"@things-factory/scene-
|
|
97
|
-
"@things-factory/scene-
|
|
98
|
-
"@things-factory/scene-
|
|
99
|
-
"@things-factory/scene-
|
|
100
|
-
"@things-factory/scene-
|
|
101
|
-
"@things-factory/scene-
|
|
102
|
-
"@things-factory/scene-
|
|
103
|
-
"@things-factory/
|
|
104
|
-
"@things-factory/
|
|
105
|
-
"@things-factory/
|
|
106
|
-
"@things-factory/system-ui": "^4.0.39"
|
|
87
|
+
"@things-factory/pdf": "^4.0.43",
|
|
88
|
+
"@things-factory/print-service": "^4.0.43",
|
|
89
|
+
"@things-factory/print-ui": "^4.0.43",
|
|
90
|
+
"@things-factory/resource-ui": "^4.0.43",
|
|
91
|
+
"@things-factory/scene-baidu-map": "^4.0.43",
|
|
92
|
+
"@things-factory/scene-data-transform": "^4.0.43",
|
|
93
|
+
"@things-factory/scene-excel": "^4.0.43",
|
|
94
|
+
"@things-factory/scene-firebase": "^4.0.43",
|
|
95
|
+
"@things-factory/scene-form": "^4.0.43",
|
|
96
|
+
"@things-factory/scene-google-map": "^4.0.43",
|
|
97
|
+
"@things-factory/scene-graphql": "^4.0.43",
|
|
98
|
+
"@things-factory/scene-label": "^4.0.43",
|
|
99
|
+
"@things-factory/scene-marker": "^4.0.43",
|
|
100
|
+
"@things-factory/scene-mqtt": "^4.0.43",
|
|
101
|
+
"@things-factory/scene-news-ticker": "^4.0.43",
|
|
102
|
+
"@things-factory/scene-restful": "^4.0.43",
|
|
103
|
+
"@things-factory/scene-urdf": "^4.0.43",
|
|
104
|
+
"@things-factory/scene-visualizer": "^4.0.43",
|
|
105
|
+
"@things-factory/screencast-ui": "^4.0.43",
|
|
106
|
+
"@things-factory/setting-ui": "^4.0.43",
|
|
107
|
+
"@things-factory/system-ui": "^4.0.43"
|
|
107
108
|
},
|
|
108
109
|
"devDependencies": {
|
|
109
|
-
"@things-factory/board-test": "^4.0.
|
|
110
|
-
"@things-factory/builder": "^4.0.
|
|
110
|
+
"@things-factory/board-test": "^4.0.43",
|
|
111
|
+
"@things-factory/builder": "^4.0.43"
|
|
111
112
|
},
|
|
112
113
|
"resolutions": {},
|
|
113
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "8f2a8008eb61b6efd266412be267186c5059fab6"
|
|
114
115
|
}
|