@operato/app 1.4.45 → 1.4.60
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/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.js +12 -10
- 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 +5 -5
- package/src/input/ox-input-fill-style.ts +10 -9
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.60",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -125,15 +125,15 @@
|
|
|
125
125
|
"@material/mwc-button": "^0.27.0",
|
|
126
126
|
"@material/mwc-icon": "^0.27.0",
|
|
127
127
|
"@material/mwc-icon-button": "^0.27.0",
|
|
128
|
-
"@operato/attachment": "^1.4.
|
|
128
|
+
"@operato/attachment": "^1.4.60",
|
|
129
129
|
"@operato/data-grist": "^1.4.39",
|
|
130
|
-
"@operato/font": "^1.4.
|
|
130
|
+
"@operato/font": "^1.4.60",
|
|
131
131
|
"@operato/form": "^1.4.28",
|
|
132
132
|
"@operato/graphql": "^1.4.20",
|
|
133
133
|
"@operato/i18n": "^1.4.36",
|
|
134
134
|
"@operato/input": "^1.4.39",
|
|
135
135
|
"@operato/layout": "^1.4.32",
|
|
136
|
-
"@operato/property-editor": "^1.4.
|
|
136
|
+
"@operato/property-editor": "^1.4.60",
|
|
137
137
|
"@operato/shell": "^1.4.31",
|
|
138
138
|
"@operato/styles": "^1.4.11",
|
|
139
139
|
"@operato/utils": "^1.4.28",
|
|
@@ -178,5 +178,5 @@
|
|
|
178
178
|
"prettier --write"
|
|
179
179
|
]
|
|
180
180
|
},
|
|
181
|
-
"gitHead": "
|
|
181
|
+
"gitHead": "98624d8defbe231fce92cf3e2307558b5ebe8d2a"
|
|
182
182
|
}
|
|
@@ -111,18 +111,19 @@ export class OxInputColorStyle extends OxFormField {
|
|
|
111
111
|
<label for="fill-type-no"><ox-i18n msgid="label.no-fill">no fill</ox-i18n></label>
|
|
112
112
|
<input type="radio" id="fill-type-solid" name="fill-type" value="solid" .checked=${this.fillType == 'solid'} />
|
|
113
113
|
<label for="fill-type-solid"><ox-i18n msgid="label.solid">solid</ox-i18n></label>
|
|
114
|
+
<input
|
|
115
|
+
type="radio"
|
|
116
|
+
id="fill-type-gradient"
|
|
117
|
+
name="fill-type"
|
|
118
|
+
value="gradient"
|
|
119
|
+
.checked=${this.fillType == 'gradient'}
|
|
120
|
+
/>
|
|
121
|
+
|
|
122
|
+
<label for="fill-type-gradient"><ox-i18n msgid="label.gradient">gradient</ox-i18n></label>
|
|
123
|
+
|
|
114
124
|
${this.colorOnly
|
|
115
125
|
? html``
|
|
116
126
|
: html`
|
|
117
|
-
<input
|
|
118
|
-
type="radio"
|
|
119
|
-
id="fill-type-gradient"
|
|
120
|
-
name="fill-type"
|
|
121
|
-
value="gradient"
|
|
122
|
-
.checked=${this.fillType == 'gradient'}
|
|
123
|
-
/>
|
|
124
|
-
|
|
125
|
-
<label for="fill-type-gradient"><ox-i18n msgid="label.gradient">gradient</ox-i18n></label>
|
|
126
127
|
<input
|
|
127
128
|
type="radio"
|
|
128
129
|
id="fill-type-pattern"
|