@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/CHANGELOG.md +17 -0
- package/dist/src/input/ox-input-background-pattern.d.ts +1 -1
- package/dist/src/input/ox-input-background-pattern.js +6 -3
- package/dist/src/input/ox-input-background-pattern.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +14 -14
- package/src/input/ox-input-background-pattern.ts +6 -3
- package/yarn-error.log +0 -17112
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.
|
|
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.
|
|
54
|
-
"@operato/data-grist": "^1.0.0-alpha.
|
|
55
|
-
"@operato/font": "^1.0.0-alpha.
|
|
56
|
-
"@operato/form": "^1.0.0-alpha.
|
|
57
|
-
"@operato/graphql": "^1.0.0-alpha.
|
|
58
|
-
"@operato/i18n": "^1.0.0-alpha.
|
|
59
|
-
"@operato/input": "^1.0.0-alpha.
|
|
60
|
-
"@operato/layout": "^1.0.0-alpha.
|
|
61
|
-
"@operato/property-editor": "^1.0.0-alpha.
|
|
62
|
-
"@operato/shell": "^1.0.0-alpha.
|
|
63
|
-
"@operato/styles": "^1.0.0-alpha.
|
|
64
|
-
"@operato/utils": "^1.0.0-alpha.
|
|
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": "
|
|
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-
|
|
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-
|
|
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-
|
|
109
|
+
></ox-attachment-selector>
|
|
107
110
|
|
|
108
111
|
<label> <ox-i18n msgid="label.align" auto="">align</ox-i18n> </label>
|
|
109
112
|
|