fix imports
This commit is contained in:
@@ -2,12 +2,11 @@ import { css, html, nothing } from 'lit';
|
||||
import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import { customElement, query, state } from 'lit/decorators.js';
|
||||
import { UUIInputPasswordElement } from '@umbraco-ui/uui';
|
||||
import { UmbModalLayoutElement } from '../../../../../core/services/modal/layouts/modal-layout.element';
|
||||
import { UmbUserStore } from '../../../../../core/stores/user/user.store';
|
||||
import { UmbPickerUserGroupElement } from '../../picker-user-group.element';
|
||||
import { UmbContextConsumerMixin } from '@umbraco-cms/context-api';
|
||||
import type { UserDetails } from '@umbraco-cms/models';
|
||||
import { UmbNotificationDefaultData, UmbNotificationService } from '@umbraco-cms/services';
|
||||
import { UmbModalLayoutElement, UmbNotificationDefaultData, UmbNotificationService } from '@umbraco-cms/services';
|
||||
import { UmbUserStore } from '@umbraco-cms/stores/user/user.store';
|
||||
|
||||
export type UsersViewType = 'list' | 'grid';
|
||||
@customElement('umb-editor-view-users-create')
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { expect, fixture, html } from '@open-wc/testing';
|
||||
import { defaultA11yConfig } from '@umbraco-cms/test-utils';
|
||||
import UmbEditorViewUsersInviteElement from './editor-view-users-invite.element';
|
||||
import { defaultA11yConfig } from '@umbraco-cms/test-utils';
|
||||
|
||||
describe('UmbEditorViewUsersInviteElement', () => {
|
||||
let element: UmbEditorViewUsersInviteElement;
|
||||
|
||||
@@ -4,7 +4,6 @@ import { customElement, state } from 'lit/decorators.js';
|
||||
import { IRoute } from 'router-slot';
|
||||
import { UUIPopoverElement } from '@umbraco-ui/uui';
|
||||
|
||||
import { UmbModalService } from '../../../../../core/services/modal';
|
||||
import type { UmbSectionViewUsersElement } from './section-view-users.element';
|
||||
import { UmbContextConsumerMixin } from '@umbraco-cms/context-api';
|
||||
import { UmbObserverMixin } from '@umbraco-cms/observable-api';
|
||||
@@ -14,6 +13,7 @@ import './list-view-layouts/grid/editor-view-users-grid.element';
|
||||
import './editor-view-users-selection.element';
|
||||
import './editor-view-users-invite.element';
|
||||
import './editor-view-users-create.element';
|
||||
import { UmbModalService } from '@umbraco-cms/services';
|
||||
|
||||
export type UsersViewType = 'list' | 'grid';
|
||||
@customElement('umb-editor-view-users-overview')
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import { css, html, LitElement } from 'lit';
|
||||
import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import { customElement, state } from 'lit/decorators.js';
|
||||
import type { UmbUserStore } from '../../../../../core/stores/user/user.store';
|
||||
import { UmbSectionViewUsersElement } from './section-view-users.element';
|
||||
import { UmbContextConsumerMixin } from '@umbraco-cms/context-api';
|
||||
import { UmbObserverMixin } from '@umbraco-cms/observable-api';
|
||||
import { UmbUserStore } from '@umbraco-cms/stores/user/user.store';
|
||||
|
||||
@customElement('umb-editor-view-users-selection')
|
||||
export class UmbEditorViewUsersSelectionElement extends UmbContextConsumerMixin(UmbObserverMixin(LitElement)) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { expect, fixture, html } from '@open-wc/testing';
|
||||
import { defaultA11yConfig } from '@umbraco-cms/test-utils';
|
||||
import UmbEditorViewUsersSelectionElement from './editor-view-users-selection.element';
|
||||
import { defaultA11yConfig } from '@umbraco-cms/test-utils';
|
||||
|
||||
describe('UmbEditorViewUsersSelectionElement', () => {
|
||||
let element: UmbEditorViewUsersSelectionElement;
|
||||
|
||||
@@ -3,7 +3,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import { customElement, state } from 'lit/decorators.js';
|
||||
import { BehaviorSubject, Observable } from 'rxjs';
|
||||
import type { IRoute, IRoutingInfo } from 'router-slot';
|
||||
import type { UmbEditorEntityElement } from '../../../../editors/shared/editor-entity/editor-entity.element';
|
||||
import UmbEditorEntityElement from '../../../../editors/shared/editor-entity/editor-entity.element';
|
||||
import { UmbContextConsumerMixin, UmbContextProviderMixin } from '@umbraco-cms/context-api';
|
||||
|
||||
import './list-view-layouts/table/editor-view-users-table.element';
|
||||
|
||||
Reference in New Issue
Block a user