diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/editors/user/actions/editor-action-user-save.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/editors/user/actions/editor-action-user-save.element.ts index ac77da41ef..599048af65 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/editors/user/actions/editor-action-user-save.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/editors/user/actions/editor-action-user-save.element.ts @@ -2,11 +2,11 @@ import { css, html, LitElement, nothing } from 'lit'; import { UUITextStyles } from '@umbraco-ui/uui-css/lib'; import { customElement, state } from 'lit/decorators.js'; import { Subscription } from 'rxjs'; +import { UUIButtonState } from '@umbraco-ui/uui'; import { UmbContextConsumerMixin } from '../../../../core/context'; import { UmbUserStore } from '../../../../core/stores/user/user.store'; import type { UserEntity } from '../../../../core/models'; import { UmbUserContext } from '../user.context'; -import { UUIButtonState } from '@umbraco-ui/uui'; import { UmbNotificationDefaultData } from '../../../../core/services/notification/layouts/default'; import { UmbNotificationService } from '../../../../core/services/notification'; diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/sections/users/views/users/editor-view-users-overview.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/sections/users/views/users/editor-view-users-overview.element.ts index 78d78a92c7..8cac749dab 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/sections/users/views/users/editor-view-users-overview.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/sections/users/views/users/editor-view-users-overview.element.ts @@ -9,8 +9,8 @@ import './editor-view-users-invite.element'; import { IRoute } from 'router-slot'; import { UUIPopoverElement } from '@umbraco-ui/uui'; import { UmbContextConsumerMixin } from '../../../../../core/context'; -import UmbSectionViewUsersElement from './section-view-users.element'; import { UmbModalService } from '../../../../../core/services/modal'; +import UmbSectionViewUsersElement from './section-view-users.element'; export type UsersViewType = 'list' | 'grid'; @customElement('umb-editor-view-users-overview') diff --git a/src/Umbraco.Web.UI.Client/src/core/services/modal/modal.service.ts b/src/Umbraco.Web.UI.Client/src/core/services/modal/modal.service.ts index dc8744ddc5..f8027a2cdf 100644 --- a/src/Umbraco.Web.UI.Client/src/core/services/modal/modal.service.ts +++ b/src/Umbraco.Web.UI.Client/src/core/services/modal/modal.service.ts @@ -2,16 +2,15 @@ import './layouts/confirm/modal-layout-confirm.element'; import './layouts/content-picker/modal-layout-content-picker.element'; import './layouts/property-editor-ui-picker/modal-layout-property-editor-ui-picker.element'; -import './layouts/icon-picker/modal-layout-icon-picker.element'; import { UUIModalSidebarSize } from '@umbraco-ui/uui-modal-sidebar'; import { BehaviorSubject, Observable } from 'rxjs'; +import { UmbModalIconPickerData } from './layouts/icon-picker/modal-layout-icon-picker.element'; import type { UmbModalConfirmData } from './layouts/confirm/modal-layout-confirm.element'; import type { UmbModalContentPickerData } from './layouts/content-picker/modal-layout-content-picker.element'; import type { UmbModalPropertyEditorUIPickerData } from './layouts/property-editor-ui-picker/modal-layout-property-editor-ui-picker.element'; import { UmbModalHandler } from './'; -import { UmbModalIconPickerData } from './layouts/icon-picker/modal-layout-icon-picker.element'; export type UmbModelType = 'dialog' | 'sidebar'; diff --git a/src/Umbraco.Web.UI.Client/src/core/stores/user/user-group.store.ts b/src/Umbraco.Web.UI.Client/src/core/stores/user/user-group.store.ts index a35c541473..01424c7115 100644 --- a/src/Umbraco.Web.UI.Client/src/core/stores/user/user-group.store.ts +++ b/src/Umbraco.Web.UI.Client/src/core/stores/user/user-group.store.ts @@ -1,8 +1,8 @@ import { BehaviorSubject, map, Observable } from 'rxjs'; +import { v4 as uuidv4 } from 'uuid'; import type { UserDetails, UserEntity, UserGroupDetails } from '../../models'; import { UmbEntityStore } from '../entity.store'; import { UmbDataStoreBase } from '../store'; -import { v4 as uuidv4 } from 'uuid'; /** * @export diff --git a/src/Umbraco.Web.UI.Client/src/core/stores/user/user.store.ts b/src/Umbraco.Web.UI.Client/src/core/stores/user/user.store.ts index 722dc17c06..d562b3fdd8 100644 --- a/src/Umbraco.Web.UI.Client/src/core/stores/user/user.store.ts +++ b/src/Umbraco.Web.UI.Client/src/core/stores/user/user.store.ts @@ -1,8 +1,8 @@ import { BehaviorSubject, map, Observable } from 'rxjs'; +import { v4 as uuidv4 } from 'uuid'; import type { UserDetails, UserEntity } from '../../models'; import { UmbEntityStore } from '../entity.store'; import { UmbDataStoreBase } from '../store'; -import { v4 as uuidv4 } from 'uuid'; /** * @export