@operato/app 1.4.39 → 1.4.47
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 +18 -0
- package/dist/src/grist-editor/ox-grist-editor-code.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-code.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-editor-json.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-json.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-code.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-code.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-id.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-id.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-object-legacy.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-object-legacy.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js +2 -1
- package/dist/src/grist-editor/ox-grist-editor-resource-object.js.map +1 -1
- package/dist/src/grist-editor/ox-grist-renderer-resource-code.js +2 -1
- package/dist/src/grist-editor/ox-grist-renderer-resource-code.js.map +1 -1
- package/dist/src/grist-editor/ox-popup-code-input.js +2 -1
- package/dist/src/grist-editor/ox-popup-code-input.js.map +1 -1
- package/dist/src/input/ox-input-background-pattern.js +2 -1
- package/dist/src/input/ox-input-background-pattern.js.map +1 -1
- package/dist/src/input/ox-input-fill-style.d.ts +1 -0
- package/dist/src/input/ox-input-fill-style.js +20 -9
- package/dist/src/input/ox-input-fill-style.js.map +1 -1
- package/dist/src/property-editor/ox-property-editor-graphql.js +2 -1
- package/dist/src/property-editor/ox-property-editor-graphql.js.map +1 -1
- package/dist/src/property-editor/ox-property-editor-resource-object.js +2 -1
- package/dist/src/property-editor/ox-property-editor-resource-object.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-id.js +2 -1
- package/dist/src/selector/ox-selector-resource-id.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object-legacy.js +2 -1
- package/dist/src/selector/ox-selector-resource-object-legacy.js.map +1 -1
- package/dist/src/selector/ox-selector-resource-object.js +2 -1
- package/dist/src/selector/ox-selector-resource-object.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/input/ox-input-fill-style.ts +16 -8
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.4.
|
|
5
|
+
"version": "1.4.47",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -178,5 +178,5 @@
|
|
|
178
178
|
"prettier --write"
|
|
179
179
|
]
|
|
180
180
|
},
|
|
181
|
-
"gitHead": "
|
|
181
|
+
"gitHead": "183fefa68487e65a84cf0638fa8b35fd680ba2e8"
|
|
182
182
|
}
|
|
@@ -90,6 +90,8 @@ export class OxInputColorStyle extends OxFormField {
|
|
|
90
90
|
@property({ type: Object }) gradient?: GradientOption
|
|
91
91
|
@property({ type: Object }) pattern?: BackgroundPatternOption
|
|
92
92
|
|
|
93
|
+
@property({ type: Boolean, attribute: 'color-only' }) colorOnly: boolean = false
|
|
94
|
+
|
|
93
95
|
private _block_reset: boolean = false
|
|
94
96
|
|
|
95
97
|
updated(changes: PropertyValues<this>) {
|
|
@@ -116,15 +118,21 @@ export class OxInputColorStyle extends OxFormField {
|
|
|
116
118
|
value="gradient"
|
|
117
119
|
.checked=${this.fillType == 'gradient'}
|
|
118
120
|
/>
|
|
121
|
+
|
|
119
122
|
<label for="fill-type-gradient"><ox-i18n msgid="label.gradient">gradient</ox-i18n></label>
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
123
|
+
|
|
124
|
+
${this.colorOnly
|
|
125
|
+
? html``
|
|
126
|
+
: html`
|
|
127
|
+
<input
|
|
128
|
+
type="radio"
|
|
129
|
+
id="fill-type-pattern"
|
|
130
|
+
name="fill-type"
|
|
131
|
+
value="pattern"
|
|
132
|
+
.checked=${this.fillType == 'pattern'}
|
|
133
|
+
/>
|
|
134
|
+
<label for="fill-type-pattern"><ox-i18n msgid="label.pattern">pattern</ox-i18n></label>
|
|
135
|
+
`}
|
|
128
136
|
</div>
|
|
129
137
|
|
|
130
138
|
<div editors>
|