lint fixes
This commit is contained in:
@@ -5,9 +5,7 @@
|
||||
*/
|
||||
//export type UmbBlockClipboardEntry = UmbClipboardEntry<'block', UmbBlockClipboardEntryMeta, any>;
|
||||
|
||||
interface UmbBlockClipboardEntryMeta {
|
||||
/**
|
||||
* The aliases of the content-types of these entries.
|
||||
*/
|
||||
/*interface UmbBlockClipboardEntryMeta {
|
||||
contentTypeAliases: Array<string>;
|
||||
}
|
||||
*/
|
||||
|
||||
@@ -89,7 +89,7 @@ export class UmbBlockElementManager extends UmbControllerBase {
|
||||
}
|
||||
|
||||
// We will implement propertyAlias in the future, when implementing Varying Blocks. [NL]
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
|
||||
async propertyVariantId(propertyAlias: string) {
|
||||
return mergeObservables(
|
||||
[await this.structure.propertyStructureByAlias(propertyAlias), this.variantId],
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import type { UmbValidator } from '../interfaces/validator.interface.js';
|
||||
import { UmbDataPathPropertyValueQuery } from '../utils/index.js';
|
||||
import { UMB_VALIDATION_CONTEXT } from './validation.context-token.js';
|
||||
import { UMB_VALIDATION_EMPTY_LOCALIZATION_KEY } from '../const.js';
|
||||
import { UMB_VALIDATION_CONTEXT } from './validation.context-token.js';
|
||||
import { UMB_SERVER_MODEL_VALIDATOR_CONTEXT } from './server-model-validator.context-token.js';
|
||||
import { UmbContextBase } from '@umbraco-cms/backoffice/class-api';
|
||||
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { manifests as workspaceViewManifests } from '../../content/collection/manifests.js';
|
||||
import { manifests as workspaceActionManifests } from './workspace-action/manifests.js';
|
||||
import { manifests as workspaceActionMenuItemManifests } from './workspace-action-menu-item/manifests.js';
|
||||
import { manifests as workspaceBreadcrumbManifests } from './workspace-breadcrumb/manifests.js';
|
||||
import { manifests as workspaceViewManifests } from '../../content/collection/manifests.js';
|
||||
import type { UmbExtensionManifestKind } from '@umbraco-cms/backoffice/extension-registry';
|
||||
|
||||
export const manifests: Array<UmbExtensionManifest | UmbExtensionManifestKind> = [
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import type { UmbConditionConfigBase } from '@umbraco-cms/backoffice/extension-api';
|
||||
import type { UMB_WORKSPACE_ENTITY_IS_NEW_CONDITION, UMB_WORKSPACE_HAS_COLLECTION_CONDITION } from './const.js';
|
||||
import type { UmbConditionConfigBase } from '@umbraco-cms/backoffice/extension-api';
|
||||
|
||||
export type WorkspaceAliasConditionConfig = UmbConditionConfigBase<'Umb.Condition.WorkspaceAlias'> & {
|
||||
/**
|
||||
|
||||
@@ -26,7 +26,7 @@ export class UmbMediaTypeFolderServerDataSource implements UmbDetailDataSource<U
|
||||
/**
|
||||
* Creates a scaffold for a Media Type folder
|
||||
* @param {Partial<UmbFolderModel>} [preset]
|
||||
* @return {*}
|
||||
* @returns {*}
|
||||
* @memberof UmbMediaTypeFolderServerDataSource
|
||||
*/
|
||||
async createScaffold(preset?: Partial<UmbFolderModel>) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { UmbPathPattern } from '@umbraco-cms/backoffice/router';
|
||||
import { UMB_MEMBER_MANAGEMENT_SECTION_PATHNAME } from '../section/paths.js';
|
||||
import { UMB_MEMBER_ENTITY_TYPE, UMB_MEMBER_ROOT_ENTITY_TYPE } from './entity.js';
|
||||
import { UmbPathPattern } from '@umbraco-cms/backoffice/router';
|
||||
import { UMB_WORKSPACE_PATH_PATTERN } from '@umbraco-cms/backoffice/workspace';
|
||||
|
||||
export const UMB_MEMBER_WORKSPACE_PATH = UMB_WORKSPACE_PATH_PATTERN.generateAbsolute({
|
||||
|
||||
@@ -7,7 +7,7 @@ import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
|
||||
/**
|
||||
* A server data source for Webhook items
|
||||
* @class UmbWebhookItemServerDataSource
|
||||
* @implements {DocumentTreeDataSource}
|
||||
* @implements {UmbItemServerDataSourceBase}
|
||||
*/
|
||||
export class UmbWebhookItemServerDataSource extends UmbItemServerDataSourceBase<
|
||||
WebhookItemResponseModel,
|
||||
|
||||
Reference in New Issue
Block a user