@things-factory/reference-app 7.0.1-alpha.78 → 7.0.1-alpha.80
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/bootstrap.js +12 -10
- package/client/components/ocr-viewpart.js +1 -1
- package/client/pages/context-menu-page.js +1 -1
- package/client/pages/context-page.js +1 -1
- package/client/pages/data-entry/data-entry-generator-popup.js +1 -1
- package/client/pages/direct-print.js +1 -1
- package/client/pages/ghost-print-page.js +1 -1
- package/client/pages/grist-colorizing.js +1 -1
- package/client/pages/grist-mode-page.js +1 -1
- package/client/pages/grist-page.js +1 -1
- package/client/pages/label-scan-page.js +1 -1
- package/client/pages/layout-group-page.js +1 -1
- package/client/pages/main.js +1 -1
- package/client/pages/menu-page.js +1 -1
- package/client/pages/report-page.js +1 -1
- package/client/pages/web-editor-editorjs-page.js +1 -1
- package/client/pages/web-editor-jodit-page.js +1 -1
- package/client/pages/web-editor-lexical-page.js +1 -1
- package/client/pages/web-editor-tinymce-page.js +1 -1
- package/client/pages/web-editor-tui-page.js +1 -1
- package/package.json +24 -24
package/client/bootstrap.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import '@things-factory/auth-ui' /* for domain-switch */
|
|
1
|
+
import '@things-factory/auth-ui/dist-client' /* for domain-switch */
|
|
2
2
|
import '@things-factory/barcode-base' /* for <default-label-printer-setting-let> */
|
|
3
3
|
import '@things-factory/notification' /* for notification-badge */
|
|
4
4
|
import '@things-factory/board-ui'
|
|
@@ -12,21 +12,21 @@ import '@things-factory/setting-ui' /* secure-iplist-setting-let */
|
|
|
12
12
|
|
|
13
13
|
import { html } from 'lit-html'
|
|
14
14
|
|
|
15
|
+
import { navigate, store } from '@operato/shell'
|
|
15
16
|
import { OxGristEditorResourceId } from '@operato/app/grist-editor/ox-grist-editor-resource-id.js'
|
|
16
17
|
import { registerDefaultGroups } from '@operato/board/register-default-groups.js'
|
|
17
18
|
import { getEditor, registerEditor, registerRenderer } from '@operato/data-grist'
|
|
18
19
|
import { appendViewpart, toggleOverlay, TOOL_POSITION, VIEWPART_POSITION } from '@operato/layout'
|
|
19
20
|
import { OxPropertyEditor } from '@operato/property-editor'
|
|
20
21
|
import { isMobileDevice } from '@operato/utils'
|
|
21
|
-
import { APPEND_APP_TOOL } from '@things-factory/apptool-base'
|
|
22
|
-
import { setupAppToolPart } from '@things-factory/apptool-ui'
|
|
22
|
+
import { APPEND_APP_TOOL } from '@things-factory/apptool-base/client'
|
|
23
|
+
import { setupAppToolPart } from '@things-factory/apptool-ui/dist-client'
|
|
23
24
|
import { auth, hasPrivilege } from '@things-factory/auth-base/dist-client'
|
|
24
|
-
import { setAuthManagementMenus } from '@things-factory/auth-ui'
|
|
25
|
-
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu'
|
|
26
|
-
import { setupContextUIPart } from '@things-factory/context-ui'
|
|
27
|
-
import { ADD_MORENDA } from '@things-factory/more-base'
|
|
28
|
-
import { ADD_SETTING } from '@things-factory/setting-base'
|
|
29
|
-
import { navigate, store } from '@things-factory/shell'
|
|
25
|
+
import { setAuthManagementMenus } from '@things-factory/auth-ui/dist-client'
|
|
26
|
+
import { setupMenuPart, updateMenuTemplate } from '@things-factory/lite-menu/dist-client'
|
|
27
|
+
import { setupContextUIPart } from '@things-factory/context-ui/dist-client'
|
|
28
|
+
import { ADD_MORENDA } from '@things-factory/more-base/client'
|
|
29
|
+
import { ADD_SETTING } from '@things-factory/setting-base/dist-client'
|
|
30
30
|
|
|
31
31
|
import { getMenuTemplate } from './menu'
|
|
32
32
|
import { BarcodeRenderer } from './renderers/barcode-renderer'
|
|
@@ -90,7 +90,9 @@ export default async function bootstrap() {
|
|
|
90
90
|
})
|
|
91
91
|
|
|
92
92
|
/* add addon-menu management page morenda */
|
|
93
|
-
if (
|
|
93
|
+
if (
|
|
94
|
+
await hasPrivilege({ privilege: 'mutation', category: 'menu', domainOwnerGranted: true, superUserGranted: true })
|
|
95
|
+
) {
|
|
94
96
|
store.dispatch({
|
|
95
97
|
type: ADD_MORENDA,
|
|
96
98
|
morenda: {
|
|
@@ -5,7 +5,7 @@ import { css, html } from 'lit'
|
|
|
5
5
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
6
6
|
|
|
7
7
|
import { OxPopupMenu } from '@operato/popup/ox-popup-menu.js'
|
|
8
|
-
import { PageView, store } from '@
|
|
8
|
+
import { PageView, store } from '@operato/shell'
|
|
9
9
|
|
|
10
10
|
import { ReferencePageStyles } from './reference-page-styles'
|
|
11
11
|
|
|
@@ -6,7 +6,7 @@ import { css, html } from 'lit'
|
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
7
|
|
|
8
8
|
import { openImportPopUp } from '@things-factory/import-ui'
|
|
9
|
-
import { PageView, store } from '@
|
|
9
|
+
import { PageView, store } from '@operato/shell'
|
|
10
10
|
import { CommonButtonStyles } from '@things-factory/styles'
|
|
11
11
|
import { sleep } from '@things-factory/utils'
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SingleColumnFormStyles } from '@things-factory/form-ui'
|
|
2
2
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
3
|
-
import { client } from '@
|
|
3
|
+
import { client } from '@operato/graphql'
|
|
4
4
|
import gql from 'graphql-tag'
|
|
5
5
|
import { css, html, LitElement } from 'lit'
|
|
6
6
|
|
|
@@ -2,7 +2,7 @@ import { css, html } from 'lit'
|
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
4
|
import { DirectPrinter } from '@things-factory/barcode-base'
|
|
5
|
-
import { PageView, store } from '@
|
|
5
|
+
import { PageView, store } from '@operato/shell'
|
|
6
6
|
import { CommonButtonStyles } from '@things-factory/styles'
|
|
7
7
|
|
|
8
8
|
import { ReferencePageStyles } from './reference-page-styles'
|
|
@@ -2,7 +2,7 @@ import { css, html } from 'lit'
|
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
4
|
import { GhostPrint } from '@operato/ghost-print'
|
|
5
|
-
import { PageView, store } from '@
|
|
5
|
+
import { PageView, store } from '@operato/shell'
|
|
6
6
|
import { CommonButtonStyles } from '@things-factory/styles'
|
|
7
7
|
|
|
8
8
|
import { ReferencePageStyles } from './reference-page-styles'
|
|
@@ -2,7 +2,7 @@ import { css, html } from 'lit'
|
|
|
2
2
|
import { getEditor, getRenderer } from '@operato/data-grist'
|
|
3
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
4
|
|
|
5
|
-
import { PageView } from '@
|
|
5
|
+
import { PageView } from '@operato/shell'
|
|
6
6
|
import { isMobileDevice } from '@things-factory/utils'
|
|
7
7
|
import { ReferencePageStyles } from './reference-page-styles'
|
|
8
8
|
|
|
@@ -5,7 +5,7 @@ import '@operato/data-grist'
|
|
|
5
5
|
import { css, html } from 'lit'
|
|
6
6
|
|
|
7
7
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
8
|
-
import { PageView } from '@
|
|
8
|
+
import { PageView } from '@operato/shell'
|
|
9
9
|
|
|
10
10
|
class GristModePage extends localize(i18next)(PageView) {
|
|
11
11
|
static get styles() {
|
|
@@ -2,7 +2,7 @@ import { css, html } from 'lit'
|
|
|
2
2
|
import { getEditor, getRenderer } from '@operato/data-grist'
|
|
3
3
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
4
4
|
|
|
5
|
-
import { PageView } from '@
|
|
5
|
+
import { PageView } from '@operato/shell'
|
|
6
6
|
import { isMobileDevice } from '@things-factory/utils'
|
|
7
7
|
|
|
8
8
|
class GristPage extends localize(i18next)(PageView) {
|
|
@@ -5,7 +5,7 @@ import '@operato/barcode/ox-barcode.js'
|
|
|
5
5
|
import { css, html } from 'lit'
|
|
6
6
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
7
7
|
|
|
8
|
-
import { PageView, store } from '@
|
|
8
|
+
import { PageView, store } from '@operato/shell'
|
|
9
9
|
|
|
10
10
|
import { ReferencePageStyles } from './reference-page-styles'
|
|
11
11
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@
|
|
4
|
+
import { PageView, store } from '@operato/shell'
|
|
5
5
|
|
|
6
6
|
class LayoutGroupPage extends connect(store)(PageView) {
|
|
7
7
|
static get styles() {
|
package/client/pages/main.js
CHANGED
|
@@ -3,7 +3,7 @@ import '@operato/data-grist'
|
|
|
3
3
|
import { css, html } from 'lit'
|
|
4
4
|
import { i18next, localize } from '@things-factory/i18n-base'
|
|
5
5
|
|
|
6
|
-
import { PageView } from '@
|
|
6
|
+
import { PageView } from '@operato/shell'
|
|
7
7
|
|
|
8
8
|
class ReportPage extends localize(i18next)(PageView) {
|
|
9
9
|
static get styles() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@
|
|
4
|
+
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import '@things-factory/web-editor' // for web-editor-editorjs
|
|
6
6
|
|
|
7
7
|
class WebEditorEditorJSPage extends connect(store)(PageView) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@
|
|
4
|
+
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import '@things-factory/web-editor' // for web-editor-jodit
|
|
6
6
|
|
|
7
7
|
class WebEditorJoditPage extends connect(store)(PageView) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@
|
|
4
|
+
import { PageView, store } from '@operato/shell'
|
|
5
5
|
|
|
6
6
|
class WebEditorLexicalPage extends connect(store)(PageView) {
|
|
7
7
|
static get styles() {
|
|
@@ -3,7 +3,7 @@ import '@tinymce/tinymce-webcomponent'
|
|
|
3
3
|
import { css, html } from 'lit'
|
|
4
4
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
5
5
|
|
|
6
|
-
import { PageView, store } from '@
|
|
6
|
+
import { PageView, store } from '@operato/shell'
|
|
7
7
|
|
|
8
8
|
class WebEditorTinyMCEPage extends connect(store)(PageView) {
|
|
9
9
|
static get styles() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { css, html } from 'lit'
|
|
2
2
|
import { connect } from 'pwa-helpers/connect-mixin.js'
|
|
3
3
|
|
|
4
|
-
import { PageView, store } from '@
|
|
4
|
+
import { PageView, store } from '@operato/shell'
|
|
5
5
|
import '@things-factory/web-editor' // for web-editor-tui
|
|
6
6
|
|
|
7
7
|
class WebEditorTUIPage extends connect(store)(PageView) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/reference-app",
|
|
3
|
-
"version": "7.0.1-alpha.
|
|
3
|
+
"version": "7.0.1-alpha.80",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -69,36 +69,36 @@
|
|
|
69
69
|
"@operato/scene-tab": "^2.0.0-alpha.0",
|
|
70
70
|
"@operato/shell": "^2.0.0-alpha.0",
|
|
71
71
|
"@operato/utils": "^2.0.0-alpha.0",
|
|
72
|
-
"@things-factory/api": "^7.0.1-alpha.
|
|
73
|
-
"@things-factory/apptool-ui": "^7.0.1-alpha.
|
|
72
|
+
"@things-factory/api": "^7.0.1-alpha.79",
|
|
73
|
+
"@things-factory/apptool-ui": "^7.0.1-alpha.79",
|
|
74
74
|
"@things-factory/attachment-base": "^7.0.1-alpha.78",
|
|
75
|
-
"@things-factory/auth-ui": "^7.0.1-alpha.
|
|
76
|
-
"@things-factory/board-service": "^7.0.1-alpha.
|
|
77
|
-
"@things-factory/board-ui": "^7.0.1-alpha.
|
|
78
|
-
"@things-factory/ccp": "^7.0.1-alpha.
|
|
79
|
-
"@things-factory/code-ui": "^7.0.1-alpha.
|
|
75
|
+
"@things-factory/auth-ui": "^7.0.1-alpha.79",
|
|
76
|
+
"@things-factory/board-service": "^7.0.1-alpha.79",
|
|
77
|
+
"@things-factory/board-ui": "^7.0.1-alpha.79",
|
|
78
|
+
"@things-factory/ccp": "^7.0.1-alpha.80",
|
|
79
|
+
"@things-factory/code-ui": "^7.0.1-alpha.79",
|
|
80
80
|
"@things-factory/contact": "^7.0.1-alpha.78",
|
|
81
|
-
"@things-factory/context-ui": "^7.0.1-alpha.
|
|
82
|
-
"@things-factory/dashboard": "^7.0.1-alpha.
|
|
83
|
-
"@things-factory/dataset": "^7.0.1-alpha.
|
|
84
|
-
"@things-factory/export-ui": "^7.0.1-alpha.
|
|
85
|
-
"@things-factory/export-ui-excel": "^7.0.1-alpha.
|
|
81
|
+
"@things-factory/context-ui": "^7.0.1-alpha.79",
|
|
82
|
+
"@things-factory/dashboard": "^7.0.1-alpha.79",
|
|
83
|
+
"@things-factory/dataset": "^7.0.1-alpha.80",
|
|
84
|
+
"@things-factory/export-ui": "^7.0.1-alpha.79",
|
|
85
|
+
"@things-factory/export-ui-excel": "^7.0.1-alpha.79",
|
|
86
86
|
"@things-factory/help": "^7.0.1-alpha.71",
|
|
87
|
-
"@things-factory/integration-ui": "^7.0.1-alpha.
|
|
88
|
-
"@things-factory/lite-menu": "^7.0.1-alpha.
|
|
89
|
-
"@things-factory/more-ui": "^7.0.1-alpha.
|
|
87
|
+
"@things-factory/integration-ui": "^7.0.1-alpha.79",
|
|
88
|
+
"@things-factory/lite-menu": "^7.0.1-alpha.80",
|
|
89
|
+
"@things-factory/more-ui": "^7.0.1-alpha.79",
|
|
90
90
|
"@things-factory/notification": "^7.0.1-alpha.78",
|
|
91
91
|
"@things-factory/oauth2-client": "^7.0.1-alpha.78",
|
|
92
92
|
"@things-factory/organization": "^7.0.1-alpha.78",
|
|
93
|
-
"@things-factory/print-ui": "^7.0.1-alpha.
|
|
94
|
-
"@things-factory/product-base": "^7.0.1-alpha.
|
|
95
|
-
"@things-factory/qc": "^7.0.1-alpha.
|
|
96
|
-
"@things-factory/resource-ui": "^7.0.1-alpha.
|
|
97
|
-
"@things-factory/routing-base": "^7.0.1-alpha.
|
|
93
|
+
"@things-factory/print-ui": "^7.0.1-alpha.79",
|
|
94
|
+
"@things-factory/product-base": "^7.0.1-alpha.79",
|
|
95
|
+
"@things-factory/qc": "^7.0.1-alpha.80",
|
|
96
|
+
"@things-factory/resource-ui": "^7.0.1-alpha.79",
|
|
97
|
+
"@things-factory/routing-base": "^7.0.1-alpha.79",
|
|
98
98
|
"@things-factory/setting-base": "^7.0.1-alpha.78",
|
|
99
|
-
"@things-factory/setting-ui": "^7.0.1-alpha.
|
|
99
|
+
"@things-factory/setting-ui": "^7.0.1-alpha.79",
|
|
100
100
|
"@things-factory/shell": "^7.0.1-alpha.71",
|
|
101
|
-
"@things-factory/system": "^7.0.1-alpha.
|
|
101
|
+
"@things-factory/system": "^7.0.1-alpha.79",
|
|
102
102
|
"@things-factory/web-editor": "^7.0.1-alpha.71",
|
|
103
103
|
"@things-factory/work-shift": "^7.0.1-alpha.78",
|
|
104
104
|
"@tinymce/tinymce-webcomponent": "^2.0.1",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@things-factory/builder": "^7.0.1-alpha.71"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "1893bab2cc88910b3a3b080f450a7acf879b3011"
|
|
111
111
|
}
|