@operato/app 1.22.0 → 1.22.1
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 +9 -0
- package/dist/src/input/ox-input-background-pattern.d.ts +1 -0
- package/dist/src/input/ox-input-background-pattern.js +6 -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.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/input/ox-input-background-pattern.ts +7 -1
- package/src/input/ox-input-fill-style.ts +1 -0
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.22.
|
|
5
|
+
"version": "1.22.1",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
7
7
|
"module": "dist/src/index.js",
|
|
8
8
|
"exports": {
|
|
@@ -194,5 +194,5 @@
|
|
|
194
194
|
"prettier --write"
|
|
195
195
|
]
|
|
196
196
|
},
|
|
197
|
-
"gitHead": "
|
|
197
|
+
"gitHead": "9e174e080a8c4c7fcb588d6d7961c03dbda7b3dd"
|
|
198
198
|
}
|
|
@@ -20,6 +20,7 @@ export type BackgroundPatternOption = {
|
|
|
20
20
|
width?: number
|
|
21
21
|
height?: number
|
|
22
22
|
fitPattern?: boolean
|
|
23
|
+
guideOnly?: boolean
|
|
23
24
|
noRepeat?: boolean
|
|
24
25
|
}
|
|
25
26
|
|
|
@@ -170,6 +171,11 @@ export class OxInputBackgroundPattern extends OxFormField {
|
|
|
170
171
|
<input value-key="noRepeat" type="checkbox" .checked=${value.noRepeat} required />
|
|
171
172
|
<label> <ox-i18n msgid="label.no-repeat" auto="">no repeat</ox-i18n> </label>
|
|
172
173
|
</div>
|
|
174
|
+
|
|
175
|
+
<div class="grid-10">
|
|
176
|
+
<input value-key="guideOnly" type="checkbox" .checked=${value.guideOnly} required />
|
|
177
|
+
<label> <ox-i18n msgid="label.guide-only" auto="">guide only</ox-i18n> </label>
|
|
178
|
+
</div>
|
|
173
179
|
`
|
|
174
180
|
}
|
|
175
181
|
|
|
@@ -182,7 +188,7 @@ export class OxInputBackgroundPattern extends OxFormField {
|
|
|
182
188
|
var key = element.getAttribute('value-key')
|
|
183
189
|
var value: any = element.value
|
|
184
190
|
|
|
185
|
-
if (key === 'fitPattern' || key === 'noRepeat') {
|
|
191
|
+
if (key === 'fitPattern' || key === 'noRepeat' || key == 'guideOnly') {
|
|
186
192
|
value = element.checked
|
|
187
193
|
}
|
|
188
194
|
|