fix imports

This commit is contained in:
Jesper Møller Jensen
2023-05-02 15:14:56 +12:00
parent 6dc3aa35d2
commit 8173f282b7
3 changed files with 5 additions and 12 deletions

View File

@@ -2,11 +2,9 @@ import { UUITextStyles } from '@umbraco-ui/uui-css';
import { css, html } from 'lit';
import { customElement, state } from 'lit/decorators.js';
import { UUIBooleanInputEvent, UUICheckboxElement, UUIRadioGroupElement, UUIRadioGroupEvent } from '@umbraco-ui/uui';
import { UMB_COLLECTION_CONTEXT_TOKEN } from '../../../shared/components/collection/collection.context';
import { UmbDropdownElement } from '../../../shared/components/dropdown/dropdown.element';
import { UUIPopoverElement } from '@umbraco-ui/uui';
import { UmbUserCollectionContext } from './user-collection.context';
import { UMB_COLLECTION_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/collection';
import { UmbDropdownElement } from '../../../shared/components/dropdown/dropdown.element';
import { UmbUserCollectionContext } from './user-collection.context';
import {
UMB_CREATE_USER_MODAL,
UMB_INVITE_USER_MODAL,

View File

@@ -1,10 +1,8 @@
import { UmbCollectionContext } from '@umbraco-cms/backoffice/collection';
import { USER_REPOSITORY_ALIAS } from '../repository/manifests';
import { UmbUserCollectionFilterModel } from '../types';
import { UserOrderModel, UserResponseModel, UserStateModel } from '@umbraco-cms/backoffice/backend-api';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller';
import { UmbCollectionContext } from '@umbraco-cms/backoffice/collection';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller';
import { UserResponseModel } from '@umbraco-cms/backoffice/backend-api';
export class UmbUserCollectionContext extends UmbCollectionContext<UserResponseModel, UmbUserCollectionFilterModel> {
constructor(host: UmbControllerHostElement) {

View File

@@ -1,13 +1,10 @@
import { css, html } from 'lit';
import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
import { customElement, state } from 'lit/decorators.js';
import { UMB_COLLECTION_CONTEXT_TOKEN } from '../../../shared/components/collection/collection.context';
import { UmbUserCollectionContext } from './user-collection.context';
import type { IRoute } from '@umbraco-cms/backoffice/router';
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
import { UMB_COLLECTION_CONTEXT_TOKEN } from '@umbraco-cms/backoffice/collection';
import type { UmbRoute } from '@umbraco-cms/backoffice/router';
import { UmbUserCollectionContext } from './user-collection.context';
import { UmbLitElement } from '@umbraco-cms/internal/lit-element';
import type { UmbRoute } from '@umbraco-cms/backoffice/router';
import './views/table/user-collection-table-view.element';
import './views/grid/user-collection-grid-view.element';