@operato/app 1.1.10 → 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/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.10",
5
+ "version": "1.1.14",
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.10",
119
- "@operato/data-grist": "^1.1.10",
120
- "@operato/font": "^1.1.10",
121
- "@operato/form": "^1.1.1",
122
- "@operato/graphql": "^1.1.1",
123
- "@operato/i18n": "^1.1.4",
124
- "@operato/input": "^1.1.10",
125
- "@operato/layout": "^1.1.10",
126
- "@operato/property-editor": "^1.1.10",
127
- "@operato/shell": "^1.1.1",
128
- "@operato/styles": "^1.1.1",
129
- "@operato/utils": "^1.1.1",
117
+ "@operato/attachment": "^1.1.14",
118
+ "@operato/data-grist": "^1.1.14",
119
+ "@operato/font": "^1.1.14",
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.14",
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": "e4f3cc8687d0e2e0d2650c94097ef99a7315001f"
169
+ "gitHead": "81dfb4b3a8faa30711c8be2fe55169ddd85ec0b1"
171
170
  }
@@ -54,8 +54,8 @@ export class OxGristEditorJson extends OxGristEditor {
54
54
  `,
55
55
  {
56
56
  backdrop: true,
57
- title: i18next.t('title.setting schedule'),
58
- help: 'data-grist/grist-editor/code'
57
+ title: i18next.t('title.edit json'),
58
+ help: 'data-grist/grist-editor/json'
59
59
  }
60
60
  )
61
61
  }
@@ -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.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>
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
- onempty() {
77
+ onEmpty() {
78
78
  this.confirmCallback && this.confirmCallback()
79
79
  closePopup(this)
80
80
  }
81
81
 
82
- oncancel() {
82
+ onCancel() {
83
83
  closePopup(this)
84
84
  }
85
85
 
86
- onconfirm() {
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.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>
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
- onempty() {
117
+ onEmpty() {
118
118
  this.confirmCallback && this.confirmCallback()
119
119
  closePopup(this)
120
120
  }
121
121
 
122
- oncancel() {
122
+ onCancel() {
123
123
  closePopup(this)
124
124
  }
125
125
 
126
- onconfirm() {
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.onconfirm()
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.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>
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
- onempty() {
97
+ onEmpty() {
98
98
  this.confirmCallback && this.confirmCallback()
99
99
  closePopup(this)
100
100
  }
101
101
 
102
- oncancel() {
102
+ onCancel() {
103
103
  closePopup(this)
104
104
  }
105
105
 
106
- onconfirm() {
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.onconfirm()
179
+ this.onConfirm()
180
180
  }) as GristEventHandler
181
181
  },
182
182
  appendable: false
@@ -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.