@operato/app 1.1.10 → 1.1.13
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 +10 -0
- package/dist/src/grist-editor/ox-grist-editor-json.js +2 -2
- package/dist/src/grist-editor/ox-grist-editor-json.js.map +1 -1
- package/dist/src/property-editor/index.d.ts +1 -0
- package/dist/src/property-editor/index.js +3 -1
- package/dist/src/property-editor/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -15
- package/src/grist-editor/ox-grist-editor-json.ts +2 -2
- package/src/property-editor/index.ts +3 -1
- package/LICENSE +0 -21
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/app",
|
|
3
3
|
"description": "WebApplication production supporting components following open-wc recommendations",
|
|
4
|
-
"license": "MIT",
|
|
5
4
|
"author": "heartyoh",
|
|
6
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.13",
|
|
7
6
|
"main": "dist/src/index.js",
|
|
8
7
|
"module": "dist/src/index.js",
|
|
9
8
|
"exports": {
|
|
@@ -115,18 +114,18 @@
|
|
|
115
114
|
"@material/mwc-button": "^0.27.0",
|
|
116
115
|
"@material/mwc-icon": "^0.27.0",
|
|
117
116
|
"@material/mwc-icon-button": "^0.27.0",
|
|
118
|
-
"@operato/attachment": "^1.1.
|
|
119
|
-
"@operato/data-grist": "^1.1.
|
|
120
|
-
"@operato/font": "^1.1.
|
|
121
|
-
"@operato/form": "^1.1.
|
|
122
|
-
"@operato/graphql": "^1.1.
|
|
123
|
-
"@operato/i18n": "^1.1.
|
|
124
|
-
"@operato/input": "^1.1.
|
|
125
|
-
"@operato/layout": "^1.1.
|
|
126
|
-
"@operato/property-editor": "^1.1.
|
|
127
|
-
"@operato/shell": "^1.1.
|
|
128
|
-
"@operato/styles": "^1.1.
|
|
129
|
-
"@operato/utils": "^1.1.
|
|
117
|
+
"@operato/attachment": "^1.1.13",
|
|
118
|
+
"@operato/data-grist": "^1.1.13",
|
|
119
|
+
"@operato/font": "^1.1.13",
|
|
120
|
+
"@operato/form": "^1.1.13",
|
|
121
|
+
"@operato/graphql": "^1.1.13",
|
|
122
|
+
"@operato/i18n": "^1.1.13",
|
|
123
|
+
"@operato/input": "^1.1.13",
|
|
124
|
+
"@operato/layout": "^1.1.13",
|
|
125
|
+
"@operato/property-editor": "^1.1.13",
|
|
126
|
+
"@operato/shell": "^1.1.13",
|
|
127
|
+
"@operato/styles": "^1.1.13",
|
|
128
|
+
"@operato/utils": "^1.1.13",
|
|
130
129
|
"codemirror": "^5.64.0",
|
|
131
130
|
"codemirror-graphql": "^1.3.2",
|
|
132
131
|
"cronstrue": "^2.2.0",
|
|
@@ -167,5 +166,5 @@
|
|
|
167
166
|
"prettier --write"
|
|
168
167
|
]
|
|
169
168
|
},
|
|
170
|
-
"gitHead": "
|
|
169
|
+
"gitHead": "b202a789101281a3ba6cf13992a57e8c4bb6687e"
|
|
171
170
|
}
|
|
@@ -54,8 +54,8 @@ export class OxGristEditorJson extends OxGristEditor {
|
|
|
54
54
|
`,
|
|
55
55
|
{
|
|
56
56
|
backdrop: true,
|
|
57
|
-
title: i18next.t('title.
|
|
58
|
-
help: 'data-grist/grist-editor/
|
|
57
|
+
title: i18next.t('title.edit json'),
|
|
58
|
+
help: 'data-grist/grist-editor/json'
|
|
59
59
|
}
|
|
60
60
|
)
|
|
61
61
|
}
|
|
@@ -21,6 +21,7 @@ import '@operato/property-editor/ox-property-editor-key-values.js'
|
|
|
21
21
|
import '@operato/property-editor/ox-property-editor-partition-keys.js'
|
|
22
22
|
import '@operato/property-editor/ox-property-editor-value-map.js'
|
|
23
23
|
import '@operato/property-editor/ox-property-editor-value-ranges.js'
|
|
24
|
+
import '@operato/property-editor/ox-property-editor-hashtags.js'
|
|
24
25
|
import '@operato/attachment/ox-property-editor-attachment-selector.js'
|
|
25
26
|
import '@operato/attachment/ox-property-editor-image-selector.js'
|
|
26
27
|
import '@operato/font/ox-property-editor-font-selector.js'
|
|
@@ -62,5 +63,6 @@ OxPropertyEditor.register({
|
|
|
62
63
|
'id-input': 'ox-property-editor-scene-component-id',
|
|
63
64
|
'font-selector': 'ox-property-editor-font-selector',
|
|
64
65
|
'partition-keys': 'ox-property-editor-partion-keys',
|
|
65
|
-
'key-values': 'ox-property-editor-key-values'
|
|
66
|
+
'key-values': 'ox-property-editor-key-values',
|
|
67
|
+
hashtags: 'ox-property-editor-hashtags'
|
|
66
68
|
})
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) hatiolab.com
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|