@operato/app 1.0.0-alpha.28 → 1.0.0-alpha.29

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
@@ -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.28",
6
+ "version": "1.0.0-alpha.29",
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.28",
60
- "@operato/data-grist": "^1.0.0-alpha.28",
61
- "@operato/font": "^1.0.0-alpha.28",
62
- "@operato/form": "^1.0.0-alpha.28",
63
- "@operato/graphql": "^1.0.0-alpha.28",
64
- "@operato/i18n": "^1.0.0-alpha.28",
65
- "@operato/input": "^1.0.0-alpha.28",
66
- "@operato/layout": "^1.0.0-alpha.28",
67
- "@operato/property-editor": "^1.0.0-alpha.28",
68
- "@operato/shell": "^1.0.0-alpha.28",
69
- "@operato/styles": "^1.0.0-alpha.28",
70
- "@operato/utils": "^1.0.0-alpha.28",
59
+ "@operato/attachment": "^1.0.0-alpha.29",
60
+ "@operato/data-grist": "^1.0.0-alpha.29",
61
+ "@operato/font": "^1.0.0-alpha.29",
62
+ "@operato/form": "^1.0.0-alpha.29",
63
+ "@operato/graphql": "^1.0.0-alpha.29",
64
+ "@operato/i18n": "^1.0.0-alpha.29",
65
+ "@operato/input": "^1.0.0-alpha.29",
66
+ "@operato/layout": "^1.0.0-alpha.29",
67
+ "@operato/property-editor": "^1.0.0-alpha.29",
68
+ "@operato/shell": "^1.0.0-alpha.29",
69
+ "@operato/styles": "^1.0.0-alpha.29",
70
+ "@operato/utils": "^1.0.0-alpha.29",
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": "740f5e661cd3d3c2866eab2713d8ace1d4e0c3fc"
110
+ "gitHead": "cce287ceb1150ae48d6cca9b191a5990995b60e6"
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
- <object-selector
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
- ></object-selector>
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-select-resource-object')
24
- export class OxSelectResourceObject extends LitElement {
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
- data-grist {
35
+ ox-grist {
36
36
  flex: 1;
37
37
  }
38
38