Merge branch 'release/beta002'

This commit is contained in:
Jacob Overgaard
2024-03-19 16:29:19 +01:00
4 changed files with 4 additions and 4 deletions

View File

@@ -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());
}

View File

@@ -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'));
}

View File

@@ -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 {

View File

@@ -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';