Merge remote-tracking branch 'origin/main' into feature/document-type-workspace-take-5

This commit is contained in:
Niels Lyngsø
2023-05-18 19:51:33 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -27,7 +27,7 @@ export class UmbAppElement extends UmbLitElement {
* @remarks This is the base URL of the Umbraco server, not the base URL of the backoffice.
*/
@property({ type: String })
serverUrl = '';
serverUrl = window.location.origin;
/**
* The base path of the backoffice.

View File

@@ -1,10 +1,10 @@
import { Meta, StoryObj } from '@storybook/web-components';
import './input-user-group.element';
import type { UmbUserGroupInputElement } from './user-group-input.element';
import './user-group-input.element';
const meta: Meta<UmbUserGroupInputElement> = {
title: 'Components/Inputs/User Group',
component: 'umb-input-user-group',
title: 'User Group/Components/User Group Input',
component: 'umb-user-group-input',
argTypes: {
// modalType: {
// control: 'inline-radio',

View File

@@ -6,7 +6,7 @@ import { plugins } from './vite.config';
export default defineConfig({
build: {
lib: {
entry: 'src/app.ts',
entry: 'src/apps/app/app.element.ts',
formats: ['es'],
fileName: 'main',
},