@operato/app 1.22.1 → 1.22.2

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
@@ -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.1",
5
+ "version": "1.22.2",
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": "9e174e080a8c4c7fcb588d6d7961c03dbda7b3dd"
197
+ "gitHead": "a2a59d2aeb1b44c18507600d59ac92210b825d7a"
198
198
  }
@@ -221,6 +221,7 @@ export class OxInputColorStyle extends OxFormField {
221
221
  align: value.align,
222
222
  fitPattern: value.fitPattern,
223
223
  noRepeat: value.noRepeat,
224
+ guideOnly: value.guideOnly,
224
225
  color: value.color
225
226
  }
226
227
 
@@ -292,6 +293,7 @@ export class OxInputColorStyle extends OxFormField {
292
293
  align: this.pattern.align,
293
294
  fitPattern: this.pattern.fitPattern,
294
295
  noRepeat: this.pattern.noRepeat,
296
+ guideOnly: this.pattern.guideOnly,
295
297
  color: this.pattern.color
296
298
  }
297
299
  break
@@ -369,6 +371,7 @@ export class OxInputColorStyle extends OxFormField {
369
371
  align: this.pattern?.align,
370
372
  fitPattern: this.pattern?.fitPattern,
371
373
  noRepeat: this.pattern?.noRepeat,
374
+ guideOnly: this.pattern?.guideOnly,
372
375
  color: this.pattern?.color
373
376
  }
374
377