move files for users section view
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import { css, html, LitElement, nothing } from 'lit';
|
||||
import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import { customElement, state } from 'lit/decorators.js';
|
||||
import { UmbContextConsumerMixin } from '../../../../../core/context';
|
||||
import UmbSectionViewUsersElement from '../../../../sections/users/views/users/section-view-users.element';
|
||||
import UmbSectionViewUsersElement from './section-view-users.element';
|
||||
|
||||
export type UsersViewType = 'list' | 'grid';
|
||||
@customElement('umb-editor-view-users-invite')
|
||||
@@ -8,7 +8,7 @@ import './list-view-layouts/grid/editor-view-users-grid.element';
|
||||
import './editor-view-users-selection.element';
|
||||
import './editor-view-users-invite.element';
|
||||
import { IRoute } from 'router-slot';
|
||||
import UmbSectionViewUsersElement from '../../../../sections/users/views/users/section-view-users.element';
|
||||
import UmbSectionViewUsersElement from './section-view-users.element';
|
||||
import { UUIPopoverElement } from '@umbraco-ui/uui';
|
||||
import { isPathActive } from 'router-slot';
|
||||
|
||||
@@ -3,9 +3,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import { customElement, state } from 'lit/decorators.js';
|
||||
import { UmbContextConsumerMixin } from '../../../../../core/context';
|
||||
import { Subscription } from 'rxjs';
|
||||
import UmbSectionViewUsersElement, {
|
||||
UserItem,
|
||||
} from '../../../../sections/users/views/users/section-view-users.element';
|
||||
import UmbSectionViewUsersElement, { UserItem } from './section-view-users.element';
|
||||
|
||||
@customElement('umb-editor-view-users-selection')
|
||||
export class UmbEditorViewUsersSelectionElement extends UmbContextConsumerMixin(LitElement) {
|
||||
@@ -5,7 +5,7 @@ import { repeat } from 'lit/directives/repeat.js';
|
||||
import { Subscription } from 'rxjs';
|
||||
import { ifDefined } from 'lit-html/directives/if-defined.js';
|
||||
import { UmbContextConsumerMixin } from '../../../../../../../core/context';
|
||||
import UmbSectionViewUsersElement from '../../../../../../sections/users/views/users/section-view-users.element';
|
||||
import UmbSectionViewUsersElement from '../../section-view-users.element';
|
||||
import { UmbUserStore } from '../../../../../../../core/stores/user/user.store';
|
||||
import type { UserEntity } from '../../../../../../../core/models';
|
||||
|
||||
@@ -4,7 +4,7 @@ import { customElement, state } from 'lit/decorators.js';
|
||||
import { UmbContextConsumerMixin } from '../../../../../../../core/context';
|
||||
import { repeat } from 'lit/directives/repeat.js';
|
||||
import { Subscription } from 'rxjs';
|
||||
import UmbSectionViewUsersElement from '../../../../../../sections/users/views/users/section-view-users.element';
|
||||
import UmbSectionViewUsersElement from '../../section-view-users.element';
|
||||
import { UmbUserStore } from '../../../../../../../core/stores/user/user.store';
|
||||
import type { UserEntity } from '../../../../../../../core/models';
|
||||
|
||||
@@ -6,10 +6,10 @@ import { BehaviorSubject, Observable, Subscription } from 'rxjs';
|
||||
import { InterfaceColor, InterfaceLook } from '@umbraco-ui/uui-base/lib/types';
|
||||
import { IRoute, IRoutingInfo } from 'router-slot';
|
||||
import { v4 as uuidv4 } from 'uuid';
|
||||
import '../../../../editors/users/views/users/list-view-layouts/table/editor-view-users-table.element';
|
||||
import '../../../../editors/users/views/users/list-view-layouts/grid/editor-view-users-grid.element';
|
||||
import '../../../../editors/users/views/users/editor-view-users-selection.element';
|
||||
import '../../../../editors/users/views/users/editor-view-users-invite.element';
|
||||
import './list-view-layouts/table/editor-view-users-table.element';
|
||||
import './list-view-layouts/grid/editor-view-users-grid.element';
|
||||
import './editor-view-users-selection.element';
|
||||
import './editor-view-users-invite.element';
|
||||
|
||||
import type { UserDetails, UserEntity } from '../../../../../core/models';
|
||||
import type { UmbEditorViewUsersUserDetailsElement } from '../../../../editors/users/views/users/editor-view-users-user-details.element';
|
||||
@@ -22,11 +22,11 @@ export class UmbSectionViewUsersElement extends UmbContextProviderMixin(LitEleme
|
||||
private _routes: IRoute[] = [
|
||||
{
|
||||
path: 'overview',
|
||||
component: () => import('../../../../editors/users/views/users/editor-view-users-overview.element'),
|
||||
component: () => import('./editor-view-users-overview.element'),
|
||||
},
|
||||
{
|
||||
path: 'invite',
|
||||
component: () => import('../../../../editors/users/views/users/editor-view-users-invite.element'),
|
||||
component: () => import('./editor-view-users-invite.element'),
|
||||
},
|
||||
{
|
||||
path: 'details/:key',
|
||||
|
||||
Reference in New Issue
Block a user