Merge branch 'release/beta002'
This commit is contained in:
@@ -23,7 +23,7 @@ export class UmbInputColorElement extends FormControlMixin(UmbLitElement) {
|
||||
|
||||
#onChange(event: UUIColorSwatchesEvent) {
|
||||
event.stopPropagation();
|
||||
super.value = event.target.value;
|
||||
this.value = event.target.value;
|
||||
this.dispatchEvent(new UmbChangeEvent());
|
||||
}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ export class UmbInputEyeDropperElement extends FormControlMixin(UmbLitElement) {
|
||||
|
||||
#onChange(e: UUIColorPickerChangeEvent) {
|
||||
e.stopPropagation();
|
||||
super.value = e.target.value;
|
||||
this.value = e.target.value;
|
||||
this.dispatchEvent(new CustomEvent('change'));
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import icons from './icons/icons.json' assert { type: 'json' };
|
||||
import icons from './icons/icons.json' with { type: 'json' };
|
||||
import { UUIIconRegistry } from '@umbraco-cms/backoffice/external/uui';
|
||||
|
||||
interface UmbIconDescriptor {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import icons from '../../../icon-registry/icons/icons.json' assert { type: 'json' };
|
||||
import icons from '../../../icon-registry/icons/icons.json' with { type: 'json' };
|
||||
import type { UUIColorSwatchesEvent } from '@umbraco-cms/backoffice/external/uui';
|
||||
|
||||
import { css, html, customElement, state, repeat } from '@umbraco-cms/backoffice/external/lit';
|
||||
|
||||
Reference in New Issue
Block a user