@operato/app 1.2.25 → 1.2.26
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 +9 -0
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js +1 -0
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js.map +1 -1
- package/dist/src/property-editor/ox-property-editor-resource-object.js +1 -0
- package/dist/src/property-editor/ox-property-editor-resource-object.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/grist-editor/ox-grist-editor-resource-object.ts +1 -0
- package/src/property-editor/ox-property-editor-resource-object.ts +1 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@operato/app",
|
|
3
3
|
"description": "WebApplication production supporting components following open-wc recommendations",
|
|
4
4
|
"author": "heartyoh",
|
|
5
|
-
"version": "1.2.
|
|
5
|
+
"version": "1.2.26",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -118,15 +118,15 @@
|
|
|
118
118
|
"@material/mwc-button": "^0.27.0",
|
|
119
119
|
"@material/mwc-icon": "^0.27.0",
|
|
120
120
|
"@material/mwc-icon-button": "^0.27.0",
|
|
121
|
-
"@operato/attachment": "^1.2.
|
|
122
|
-
"@operato/data-grist": "^1.2.
|
|
123
|
-
"@operato/font": "^1.2.
|
|
124
|
-
"@operato/form": "^1.2.
|
|
121
|
+
"@operato/attachment": "^1.2.26",
|
|
122
|
+
"@operato/data-grist": "^1.2.26",
|
|
123
|
+
"@operato/font": "^1.2.26",
|
|
124
|
+
"@operato/form": "^1.2.26",
|
|
125
125
|
"@operato/graphql": "^1.2.6",
|
|
126
126
|
"@operato/i18n": "^1.2.0",
|
|
127
|
-
"@operato/input": "^1.2.
|
|
128
|
-
"@operato/layout": "^1.2.
|
|
129
|
-
"@operato/property-editor": "^1.2.
|
|
127
|
+
"@operato/input": "^1.2.26",
|
|
128
|
+
"@operato/layout": "^1.2.26",
|
|
129
|
+
"@operato/property-editor": "^1.2.26",
|
|
130
130
|
"@operato/shell": "^1.2.16",
|
|
131
131
|
"@operato/styles": "^1.2.0",
|
|
132
132
|
"@operato/utils": "^1.2.11",
|
|
@@ -170,5 +170,5 @@
|
|
|
170
170
|
"prettier --write"
|
|
171
171
|
]
|
|
172
172
|
},
|
|
173
|
-
"gitHead": "
|
|
173
|
+
"gitHead": "8f43100e1c0ee8a84465000163b9dd2cf68a44da"
|
|
174
174
|
}
|
|
@@ -138,6 +138,7 @@ export class OxGristEditorResourceObject extends OxGristEditor {
|
|
|
138
138
|
backdrop: true,
|
|
139
139
|
size: 'large',
|
|
140
140
|
search: {
|
|
141
|
+
autofocus: true,
|
|
141
142
|
placeholder: title || i18next.t('title.select_item'),
|
|
142
143
|
handler: (instance: any, value: any) => {
|
|
143
144
|
/* instance: template instance */
|
|
@@ -127,6 +127,7 @@ export class OxPropertyEditorResourceObject extends OxPropertyEditor {
|
|
|
127
127
|
backdrop: true,
|
|
128
128
|
size: 'large',
|
|
129
129
|
search: {
|
|
130
|
+
autofocus: true,
|
|
130
131
|
placeholder: title || i18next.t('title.select_item'),
|
|
131
132
|
handler: (instance: any, value: any) => {
|
|
132
133
|
/* instance: template instance */
|