+ ${repeat(
+ grouped,
+ (group) => group.key,
+ (group) => html`
+
+
+ Unsupported ${group.key} items
+ The following content is no longer supported in this Editor.
+
+
+
+
+
+ If you still require this content, please contact your administrator. Otherwise you can remove it.
+
+
+
+ `,
+ )}
+
+ `;
+ }
+
+ static override readonly styles = [
+ css`
+ #messages {
+ color: var(--uui-color-danger-standalone);
+ }
+ `,
+ ];
}
export { UmbPropertyEditorUIContentPickerElement as element };
declare global {
interface HTMLElementTagNameMap {
- [elementName]: UmbPropertyEditorUIContentPickerElement;
+ 'umb-property-editor-ui-content-picker': UmbPropertyEditorUIContentPickerElement;
}
}