@operato/app 1.0.0-alpha.18 → 1.0.0-alpha.20

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.18",
6
+ "version": "1.0.0-alpha.20",
7
7
  "main": "dist/src/index.js",
8
8
  "module": "dist/src/index.js",
9
9
  "exports": {
@@ -50,18 +50,18 @@
50
50
  "@material/mwc-button": "^0.25.3",
51
51
  "@material/mwc-icon": "^0.25.3",
52
52
  "@material/mwc-icon-button": "^0.25.3",
53
- "@operato/attachment": "^1.0.0-alpha.18",
54
- "@operato/data-grist": "^1.0.0-alpha.18",
55
- "@operato/font": "^1.0.0-alpha.18",
56
- "@operato/form": "^1.0.0-alpha.18",
57
- "@operato/graphql": "^1.0.0-alpha.18",
58
- "@operato/i18n": "^1.0.0-alpha.18",
59
- "@operato/input": "^1.0.0-alpha.18",
60
- "@operato/layout": "^1.0.0-alpha.18",
61
- "@operato/property-editor": "^1.0.0-alpha.18",
62
- "@operato/shell": "^1.0.0-alpha.18",
63
- "@operato/styles": "^1.0.0-alpha.18",
64
- "@operato/utils": "^1.0.0-alpha.18",
53
+ "@operato/attachment": "^1.0.0-alpha.20",
54
+ "@operato/data-grist": "^1.0.0-alpha.20",
55
+ "@operato/font": "^1.0.0-alpha.20",
56
+ "@operato/form": "^1.0.0-alpha.20",
57
+ "@operato/graphql": "^1.0.0-alpha.20",
58
+ "@operato/i18n": "^1.0.0-alpha.20",
59
+ "@operato/input": "^1.0.0-alpha.20",
60
+ "@operato/layout": "^1.0.0-alpha.20",
61
+ "@operato/property-editor": "^1.0.0-alpha.20",
62
+ "@operato/shell": "^1.0.0-alpha.20",
63
+ "@operato/styles": "^1.0.0-alpha.20",
64
+ "@operato/utils": "^1.0.0-alpha.20",
65
65
  "codemirror": "^5.59.1",
66
66
  "codemirror-graphql": "^0.15.2",
67
67
  "cross-fetch": "^3.1.5",
@@ -101,5 +101,5 @@
101
101
  "prettier --write"
102
102
  ]
103
103
  },
104
- "gitHead": "f52f9284e4a8c36fa7cab1bec6db4f64e3ae1619"
104
+ "gitHead": "5dfb4809dcd75e15b2ccc1af713d0977a1840e7e"
105
105
  }
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  import '@operato/i18n/ox-i18n.js'
6
- import '@operato/attachment/ox-attachment-list.js'
6
+ import '@operato/attachment/ox-attachment-selector.js'
7
7
 
8
8
  import { css, html } from 'lit'
9
9
  import { customElement, property } from 'lit/decorators.js'
@@ -99,11 +99,14 @@ export class OxInputBackgroundPattern extends OxFormField {
99
99
  return html`
100
100
  <label> <ox-i18n msgid="label.image" auto="">image</ox-i18n> </label>
101
101
 
102
- <ox-property-editor-attachment-selector
102
+ <ox-attachment-selector
103
103
  value-key="image"
104
104
  .value=${value.image || ''}
105
+ .properties=${{
106
+ category: 'image'
107
+ }}
105
108
  custom-editor
106
- ></ox-property-editor-attachment-selector>
109
+ ></ox-attachment-selector>
107
110
 
108
111
  <label> <ox-i18n msgid="label.align" auto="">align</ox-i18n> </label>
109
112