diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/components/index.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/components/index.ts index a4fa49584b..38ae8bd471 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/components/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/components/index.ts @@ -1 +1 @@ -export * from './tags-input/tags-input.element'; +export * from './tags-input/tags-input.element.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.element.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.element.ts index 1ebdce2fe9..fba776ffbc 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.element.ts @@ -4,7 +4,7 @@ import { customElement, property, query, queryAll, state } from 'lit/decorators. import { FormControlMixin } from '@umbraco-ui/uui-base/lib/mixins'; import { repeat } from 'lit/directives/repeat.js'; import { UUIInputElement, UUIInputEvent, UUITagElement } from '@umbraco-ui/uui'; -import { UmbTagRepository } from '../../repository/tag.repository'; +import { UmbTagRepository } from '../../repository/tag.repository.js'; import { UmbLitElement } from '@umbraco-cms/internal/lit-element'; import { TagResponseModel } from '@umbraco-cms/backoffice/backend-api'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.stories.ts index 96a9cf4bd0..7c5b0a7628 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/components/tags-input/tags-input.stories.ts @@ -1,6 +1,6 @@ import { Meta, StoryObj } from '@storybook/web-components'; import './tags-input.element'; -import type { UmbTagsInputElement } from './tags-input.element'; +import type { UmbTagsInputElement } from './tags-input.element.js'; const meta: Meta = { title: 'Components/Inputs/Tags', diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/index.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/index.ts index 201267ad4f..35c7e83047 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/index.ts @@ -1,5 +1,5 @@ -import { manifests as repositoryManifests } from './repository/manifests'; -import { manifests as propertyEditorManifests } from './property-editors/manifests'; +import { manifests as repositoryManifests } from './repository/manifests.js'; +import { manifests as propertyEditorManifests } from './property-editors/manifests.js'; import { UmbEntryPointOnInit } from '@umbraco-cms/backoffice/extension-api'; import './components'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/manifests.ts index 41632edd64..67558a3376 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/manifests.ts @@ -1,4 +1,4 @@ -import { manifests as tagsUI } from './tags/manifests'; +import { manifests as tagsUI } from './tags/manifests.js'; import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; export const manifests: Array = [...tagsUI]; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.stories.ts index 2dde067661..c867f6f358 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.stories.ts @@ -1,7 +1,7 @@ import { Meta, Story } from '@storybook/web-components'; import { html } from 'lit'; -import type { UmbPropertyEditorUITagsStorageTypeElement } from './property-editor-ui-tags-storage-type.element'; +import type { UmbPropertyEditorUITagsStorageTypeElement } from './property-editor-ui-tags-storage-type.element.js'; import './property-editor-ui-tags-storage-type.element'; export default { diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.test.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.test.ts index b37a82f97f..aefa7c2698 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.test.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/config/storage-type/property-editor-ui-tags-storage-type.test.ts @@ -1,21 +1,21 @@ import { expect, fixture, html } from '@open-wc/testing'; -import { UmbPropertyEditorUITagsStorageTypeElement } from './property-editor-ui-tags-storage-type.element'; +import { UmbPropertyEditorUITagsStorageTypeElement } from './property-editor-ui-tags-storage-type.element.js'; import { defaultA11yConfig } from '@umbraco-cms/internal/test-utils'; describe('UmbPropertyEditorUITagsStorageTypeElement', () => { - let element: UmbPropertyEditorUITagsStorageTypeElement; + let element: UmbPropertyEditorUITagsStorageTypeElement; - beforeEach(async () => { - element = await fixture( - html` ` - ); - }); + beforeEach(async () => { + element = await fixture( + html` ` + ); + }); - it('is defined with its own instance', () => { - expect(element).to.be.instanceOf(UmbPropertyEditorUITagsStorageTypeElement); - }); + it('is defined with its own instance', () => { + expect(element).to.be.instanceOf(UmbPropertyEditorUITagsStorageTypeElement); + }); - it('passes the a11y audit', async () => { - await expect(element).shadowDom.to.be.accessible(defaultA11yConfig); - }); + it('passes the a11y audit', async () => { + await expect(element).shadowDom.to.be.accessible(defaultA11yConfig); + }); }); diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/manifests.ts index 2abe1d8e2e..9d36d50dd9 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/manifests.ts @@ -1,4 +1,4 @@ -import { manifest as storageType } from './config/storage-type/manifests'; +import { manifest as storageType } from './config/storage-type/manifests.js'; import type { ManifestPropertyEditorUI } from '@umbraco-cms/backoffice/extension-registry'; const manifest: ManifestPropertyEditorUI = { diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts index 90db7bc48a..41d1172550 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.element.ts @@ -2,7 +2,7 @@ import { html } from 'lit'; import { UUITextStyles } from '@umbraco-ui/uui-css'; import { customElement, property, state } from 'lit/decorators.js'; import { ifDefined } from 'lit/directives/if-defined.js'; -import { UmbTagsInputElement } from '../../components/tags-input/tags-input.element'; +import { UmbTagsInputElement } from '../../components/tags-input/tags-input.element.js'; import { UMB_WORKSPACE_PROPERTY_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/workspace'; import type { UmbDataTypePropertyCollection } from '@umbraco-cms/backoffice/components'; import { UmbPropertyEditorExtensionElement } from '@umbraco-cms/backoffice/extension-registry'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.stories.ts index de47fda75b..7339809651 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.stories.ts @@ -1,7 +1,7 @@ import { Meta, Story } from '@storybook/web-components'; import { html } from 'lit'; -import type { UmbPropertyEditorUITagsElement } from './property-editor-ui-tags.element'; +import type { UmbPropertyEditorUITagsElement } from './property-editor-ui-tags.element.js'; import './property-editor-ui-tags.element'; export default { diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.test.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.test.ts index 42ca8bd847..50b0cdc14c 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.test.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/property-editors/tags/property-editor-ui-tags.test.ts @@ -1,21 +1,19 @@ import { expect, fixture, html } from '@open-wc/testing'; -import { UmbPropertyEditorUITagsElement } from './property-editor-ui-tags.element'; +import { UmbPropertyEditorUITagsElement } from './property-editor-ui-tags.element.js'; import { defaultA11yConfig } from '@umbraco-cms/internal/test-utils'; describe('UmbPropertyEditorUITagsElement', () => { - let element: UmbPropertyEditorUITagsElement; + let element: UmbPropertyEditorUITagsElement; - beforeEach(async () => { - element = await fixture( - html` ` - ); - }); + beforeEach(async () => { + element = await fixture(html` `); + }); - it('is defined with its own instance', () => { - expect(element).to.be.instanceOf(UmbPropertyEditorUITagsElement); - }); + it('is defined with its own instance', () => { + expect(element).to.be.instanceOf(UmbPropertyEditorUITagsElement); + }); - it('passes the a11y audit', async () => { - await expect(element).shadowDom.to.be.accessible(defaultA11yConfig); - }); + it('passes the a11y audit', async () => { + await expect(element).shadowDom.to.be.accessible(defaultA11yConfig); + }); }); diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/repository/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/repository/manifests.ts index 4e843ded44..ab6d02aad5 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/repository/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/repository/manifests.ts @@ -1,5 +1,5 @@ -import { UmbTagRepository } from './tag.repository'; -import { UmbTagStore } from './tag.store'; +import { UmbTagRepository } from './tag.repository.js'; +import { UmbTagStore } from './tag.store.js'; import type { ManifestStore, ManifestRepository } from '@umbraco-cms/backoffice/extension-registry'; export const TAG_REPOSITORY_ALIAS = 'Umb.Repository.Tags'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/tags/repository/tag.repository.ts b/src/Umbraco.Web.UI.Client/src/packages/tags/repository/tag.repository.ts index d2df51c93d..9c72e60885 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/tags/repository/tag.repository.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/tags/repository/tag.repository.ts @@ -1,5 +1,5 @@ -import { UmbTagServerDataSource } from './sources/tag.server.data'; -import { UmbTagStore, UMB_TAG_STORE_CONTEXT_TOKEN } from './tag.store'; +import { UmbTagServerDataSource } from './sources/tag.server.data.js'; +import { UmbTagStore, UMB_TAG_STORE_CONTEXT_TOKEN } from './tag.store.js'; import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api'; import { UmbContextConsumerController } from '@umbraco-cms/backoffice/context-api';