@operato/app 1.0.0-alpha.28 → 1.0.0-alpha.30
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/CHANGELOG.md +18 -0
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js +3 -2
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js.map +1 -1
- package/dist/src/grist-editor/ox-selector-resource-object.d.ts +1 -1
- package/dist/src/grist-editor/ox-selector-resource-object.js +20 -20
- package/dist/src/grist-editor/ox-selector-resource-object.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -14
- package/src/grist-editor/ox-grist-editor-resource-object.ts +4 -2
- package/src/grist-editor/ox-selector-resource-object.ts +3 -3
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "WebApplication production supporting components following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.0.0-alpha.
|
|
6
|
+
"version": "1.0.0-alpha.30",
|
|
7
7
|
"main": "dist/src/index.js",
|
|
8
8
|
"module": "dist/src/index.js",
|
|
9
9
|
"exports": {
|
|
@@ -56,18 +56,18 @@
|
|
|
56
56
|
"@material/mwc-button": "^0.25.3",
|
|
57
57
|
"@material/mwc-icon": "^0.25.3",
|
|
58
58
|
"@material/mwc-icon-button": "^0.25.3",
|
|
59
|
-
"@operato/attachment": "^1.0.0-alpha.
|
|
60
|
-
"@operato/data-grist": "^1.0.0-alpha.
|
|
61
|
-
"@operato/font": "^1.0.0-alpha.
|
|
62
|
-
"@operato/form": "^1.0.0-alpha.
|
|
63
|
-
"@operato/graphql": "^1.0.0-alpha.
|
|
64
|
-
"@operato/i18n": "^1.0.0-alpha.
|
|
65
|
-
"@operato/input": "^1.0.0-alpha.
|
|
66
|
-
"@operato/layout": "^1.0.0-alpha.
|
|
67
|
-
"@operato/property-editor": "^1.0.0-alpha.
|
|
68
|
-
"@operato/shell": "^1.0.0-alpha.
|
|
69
|
-
"@operato/styles": "^1.0.0-alpha.
|
|
70
|
-
"@operato/utils": "^1.0.0-alpha.
|
|
59
|
+
"@operato/attachment": "^1.0.0-alpha.30",
|
|
60
|
+
"@operato/data-grist": "^1.0.0-alpha.30",
|
|
61
|
+
"@operato/font": "^1.0.0-alpha.30",
|
|
62
|
+
"@operato/form": "^1.0.0-alpha.30",
|
|
63
|
+
"@operato/graphql": "^1.0.0-alpha.30",
|
|
64
|
+
"@operato/i18n": "^1.0.0-alpha.30",
|
|
65
|
+
"@operato/input": "^1.0.0-alpha.30",
|
|
66
|
+
"@operato/layout": "^1.0.0-alpha.30",
|
|
67
|
+
"@operato/property-editor": "^1.0.0-alpha.30",
|
|
68
|
+
"@operato/shell": "^1.0.0-alpha.30",
|
|
69
|
+
"@operato/styles": "^1.0.0-alpha.30",
|
|
70
|
+
"@operato/utils": "^1.0.0-alpha.30",
|
|
71
71
|
"codemirror": "^5.59.1",
|
|
72
72
|
"codemirror-graphql": "^0.15.2",
|
|
73
73
|
"cross-fetch": "^3.1.5",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"prettier --write"
|
|
108
108
|
]
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "1c34587861ba435ec33a5eba542c88608f8ea6d3"
|
|
111
111
|
}
|
|
@@ -46,6 +46,8 @@ export class OxGristEditorResourceObject extends InputEditor {
|
|
|
46
46
|
|
|
47
47
|
this.openSelector()
|
|
48
48
|
})
|
|
49
|
+
|
|
50
|
+
this.openSelector()
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
openSelector() {
|
|
@@ -95,7 +97,7 @@ export class OxGristEditorResourceObject extends InputEditor {
|
|
|
95
97
|
var template =
|
|
96
98
|
this.template ||
|
|
97
99
|
html`
|
|
98
|
-
<
|
|
100
|
+
<ox-selector-resource-object
|
|
99
101
|
.value=${actualValue}
|
|
100
102
|
.confirmCallback=${confirmCallback.bind(this)}
|
|
101
103
|
.queryName=${this.column.record.options.queryName}
|
|
@@ -103,7 +105,7 @@ export class OxGristEditorResourceObject extends InputEditor {
|
|
|
103
105
|
.list=${this.column.record.options.list}
|
|
104
106
|
.basicArgs=${this.column.record.options.basicArgs}
|
|
105
107
|
.valueField=${this.column.record.options.valueField}
|
|
106
|
-
></
|
|
108
|
+
></ox-selector-resource-object>
|
|
107
109
|
`
|
|
108
110
|
|
|
109
111
|
this.popup = openPopup(template, {
|
|
@@ -20,8 +20,8 @@ import gql from 'graphql-tag'
|
|
|
20
20
|
import { i18next } from '@operato/i18n'
|
|
21
21
|
import { isMobileDevice } from '@operato/utils'
|
|
22
22
|
|
|
23
|
-
@customElement('ox-
|
|
24
|
-
export class
|
|
23
|
+
@customElement('ox-selector-resource-object')
|
|
24
|
+
export class OxSelectorResourceObject extends LitElement {
|
|
25
25
|
static styles = [
|
|
26
26
|
MultiColumnFormStyles,
|
|
27
27
|
css`
|
|
@@ -32,7 +32,7 @@ export class OxSelectResourceObject extends LitElement {
|
|
|
32
32
|
background-color: #fff;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
ox-grist {
|
|
36
36
|
flex: 1;
|
|
37
37
|
}
|
|
38
38
|
|