@operato/app 1.1.13 → 1.1.14
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-selector-resource-id.d.ts +3 -3
- package/dist/src/grist-editor/ox-selector-resource-id.js +6 -6
- package/dist/src/grist-editor/ox-selector-resource-id.js.map +1 -1
- package/dist/src/grist-editor/ox-selector-resource-object-legacy.d.ts +3 -3
- package/dist/src/grist-editor/ox-selector-resource-object-legacy.js +7 -7
- package/dist/src/grist-editor/ox-selector-resource-object-legacy.js.map +1 -1
- package/dist/src/grist-editor/ox-selector-resource-object.d.ts +3 -3
- package/dist/src/grist-editor/ox-selector-resource-object.js +7 -7
- package/dist/src/grist-editor/ox-selector-resource-object.js.map +1 -1
- package/dist/src/input/ox-input-background-pattern.d.ts +1 -1
- package/dist/src/input/ox-input-fill-style.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/grist-editor/ox-selector-resource-id.ts +6 -6
- package/src/grist-editor/ox-selector-resource-object-legacy.ts +7 -7
- package/src/grist-editor/ox-selector-resource-object.ts +7 -7
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.1.
|
|
5
|
+
"version": "1.1.14",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -114,15 +114,15 @@
|
|
|
114
114
|
"@material/mwc-button": "^0.27.0",
|
|
115
115
|
"@material/mwc-icon": "^0.27.0",
|
|
116
116
|
"@material/mwc-icon-button": "^0.27.0",
|
|
117
|
-
"@operato/attachment": "^1.1.
|
|
118
|
-
"@operato/data-grist": "^1.1.
|
|
119
|
-
"@operato/font": "^1.1.
|
|
117
|
+
"@operato/attachment": "^1.1.14",
|
|
118
|
+
"@operato/data-grist": "^1.1.14",
|
|
119
|
+
"@operato/font": "^1.1.14",
|
|
120
120
|
"@operato/form": "^1.1.13",
|
|
121
121
|
"@operato/graphql": "^1.1.13",
|
|
122
122
|
"@operato/i18n": "^1.1.13",
|
|
123
123
|
"@operato/input": "^1.1.13",
|
|
124
124
|
"@operato/layout": "^1.1.13",
|
|
125
|
-
"@operato/property-editor": "^1.1.
|
|
125
|
+
"@operato/property-editor": "^1.1.14",
|
|
126
126
|
"@operato/shell": "^1.1.13",
|
|
127
127
|
"@operato/styles": "^1.1.13",
|
|
128
128
|
"@operato/utils": "^1.1.13",
|
|
@@ -166,5 +166,5 @@
|
|
|
166
166
|
"prettier --write"
|
|
167
167
|
]
|
|
168
168
|
},
|
|
169
|
-
"gitHead": "
|
|
169
|
+
"gitHead": "81dfb4b3a8faa30711c8be2fe55169ddd85ec0b1"
|
|
170
170
|
}
|
|
@@ -67,23 +67,23 @@ export class OxSelectorResourceId extends LitElement {
|
|
|
67
67
|
</ox-grist>
|
|
68
68
|
|
|
69
69
|
<div class="button-container">
|
|
70
|
-
<mwc-button @click=${this.
|
|
71
|
-
<mwc-button @click=${this.
|
|
72
|
-
<mwc-button @click=${this.
|
|
70
|
+
<mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
|
|
71
|
+
<mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
|
|
72
|
+
<mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
|
|
73
73
|
</div>
|
|
74
74
|
`
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
-
|
|
77
|
+
onEmpty() {
|
|
78
78
|
this.confirmCallback && this.confirmCallback()
|
|
79
79
|
closePopup(this)
|
|
80
80
|
}
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
onCancel() {
|
|
83
83
|
closePopup(this)
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
onConfirm() {
|
|
87
87
|
this.confirmCallback && this.confirmCallback(this.selected)
|
|
88
88
|
closePopup(this)
|
|
89
89
|
}
|
|
@@ -107,23 +107,23 @@ export class OxSelectorResourceObjectLegacy extends LitElement {
|
|
|
107
107
|
</ox-grist>
|
|
108
108
|
|
|
109
109
|
<div class="button-container">
|
|
110
|
-
<mwc-button @click=${this.
|
|
111
|
-
<mwc-button @click=${this.
|
|
112
|
-
<mwc-button @click=${this.
|
|
110
|
+
<mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
|
|
111
|
+
<mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
|
|
112
|
+
<mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
|
|
113
113
|
</div>
|
|
114
114
|
`
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
|
|
117
|
+
onEmpty() {
|
|
118
118
|
this.confirmCallback && this.confirmCallback()
|
|
119
119
|
closePopup(this)
|
|
120
120
|
}
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
onCancel() {
|
|
123
123
|
closePopup(this)
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
onConfirm() {
|
|
127
127
|
this.confirmCallback && this.confirmCallback(this.selected)
|
|
128
128
|
closePopup(this)
|
|
129
129
|
}
|
|
@@ -190,7 +190,7 @@ export class OxSelectorResourceObjectLegacy extends LitElement {
|
|
|
190
190
|
handlers: {
|
|
191
191
|
click: 'select-row',
|
|
192
192
|
dblclick: ((columns, data, column, record, rowIndex, field) => {
|
|
193
|
-
this.
|
|
193
|
+
this.onConfirm()
|
|
194
194
|
}) as GristEventHandler
|
|
195
195
|
},
|
|
196
196
|
appendable: false
|
|
@@ -87,23 +87,23 @@ export class OxSelectorResourceObject extends LitElement {
|
|
|
87
87
|
</ox-grist>
|
|
88
88
|
|
|
89
89
|
<div class="button-container">
|
|
90
|
-
<mwc-button @click=${this.
|
|
91
|
-
<mwc-button @click=${this.
|
|
92
|
-
<mwc-button @click=${this.
|
|
90
|
+
<mwc-button @click=${this.onEmpty.bind(this)}>${i18next.t('button.empty')}</mwc-button>
|
|
91
|
+
<mwc-button @click=${this.onCancel.bind(this)}>${i18next.t('button.cancel')}</mwc-button>
|
|
92
|
+
<mwc-button @click=${this.onConfirm.bind(this)}>${i18next.t('button.confirm')}</mwc-button>
|
|
93
93
|
</div>
|
|
94
94
|
`
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
|
|
97
|
+
onEmpty() {
|
|
98
98
|
this.confirmCallback && this.confirmCallback()
|
|
99
99
|
closePopup(this)
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
|
|
102
|
+
onCancel() {
|
|
103
103
|
closePopup(this)
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
|
|
106
|
+
onConfirm() {
|
|
107
107
|
this.confirmCallback && this.confirmCallback(this.selected)
|
|
108
108
|
closePopup(this)
|
|
109
109
|
}
|
|
@@ -176,7 +176,7 @@ export class OxSelectorResourceObject extends LitElement {
|
|
|
176
176
|
handlers: {
|
|
177
177
|
click: 'select-row',
|
|
178
178
|
dblclick: ((columns, data, column, record, rowIndex, field) => {
|
|
179
|
-
this.
|
|
179
|
+
this.onConfirm()
|
|
180
180
|
}) as GristEventHandler
|
|
181
181
|
},
|
|
182
182
|
appendable: false
|