fix import order
This commit is contained in:
@@ -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';
|
||||
|
||||
|
||||
@@ -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')
|
||||
|
||||
@@ -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';
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user