Merge branch 'v15/dev' into v16/dev

This commit is contained in:
Jacob Overgaard
2025-04-15 14:47:51 +02:00
38 changed files with 215 additions and 62 deletions

View File

@@ -1,4 +1,5 @@
export * from './validation.context.js';
export * from './validation.context-token.js';
export * from './validation-messages.manager.js';
export * from './server-model-validator.context-token.js';
export * from './server-model-validator.context.js';

View File

@@ -74,7 +74,12 @@ export class UmbInputImageCropperFieldElement extends UmbLitElement {
get source(): string {
if (this.src) {
return `${this._serverUrl}${this.src}`;
// Test that URL is relative:
if (this.src.startsWith('/')) {
return `${this._serverUrl}${this.src}`;
} else {
return this.src;
}
}
return this.fileDataUrl ?? '';

View File

@@ -10,7 +10,7 @@ const dataTypeData = umbDataTypeMockDb.read('dt-richTextEditor') as unknown as U
export default {
title: 'Property Editor UIs/Stylesheet Picker',
component: 'umb-property-editor-ui-stylesheet-picker',
id: 'umb-property-editor-ui-sstylesheet-picker',
id: 'umb-property-editor-ui-stylesheet-picker',
} as Meta;
export const AAAOverview = ({ value }: any) =>