Skip to content

Commit bf813e9

Browse files
committed
lint fixes
1 parent 617b3ae commit bf813e9

File tree

20 files changed

+20
-21
lines changed

20 files changed

+20
-21
lines changed

src/packages/block/block-list/property-editors/block-list-editor/property-editor-ui-block-list.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export class UmbPropertyEditorUIBlockListElement
118118
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
119119
* @type {boolean}
120120
* @attr
121-
* @default false
121+
* @default
122122
*/
123123
@property({ type: Boolean, reflect: true })
124124
public get readonly() {

src/packages/core/property/property-dataset/property-dataset-base-context.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export class UmbPropertyDatasetContextBase
8282

8383
/**
8484
* Gets the read-only state of the current variant culture.
85-
* @return {*} {boolean}
85+
* @returns {*} {boolean}
8686
* @memberof UmbBlockGridInlinePropertyDatasetContext
8787
*/
8888
getReadOnly(): boolean {

src/packages/core/sorter/sorter.controller.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export class UmbSorterController<T, ElementType extends HTMLElement = HTMLElemen
298298

299299
/**
300300
* Enables the sorter, this will allow sorting to happen.
301-
* @return {*} {void}
301+
* @returns {*} {void}
302302
* @memberof UmbSorterController
303303
*/
304304
enable(): void {
@@ -311,7 +311,7 @@ export class UmbSorterController<T, ElementType extends HTMLElement = HTMLElemen
311311

312312
/**
313313
* Disables the sorter, this will prevent any sorting to happen.
314-
* @return {*} {void}
314+
* @returns {*} {void}
315315
* @memberof UmbSorterController
316316
*/
317317
disable(): void {
@@ -331,7 +331,7 @@ export class UmbSorterController<T, ElementType extends HTMLElement = HTMLElemen
331331

332332
/**
333333
* Returns the model of the sorter.
334-
* @return {Array<T>}
334+
* @returns {Array<T>}
335335
* @memberof UmbSorterController
336336
*/
337337
getModel(): Array<T> {

src/packages/documents/documents/components/input-document/input-document.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export class UmbInputDocumentElement extends UmbFormControlMixin<string | undefi
116116
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
117117
* @type {boolean}
118118
* @attr
119-
* @default false
119+
* @default
120120
*/
121121
@property({ type: Boolean, reflect: true })
122122
public get readonly() {

src/packages/markdown-editor/components/input-markdown-editor/input-markdown.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class UmbInputMarkdownElement extends UmbFormControlMixin(UmbLitElement,
4747
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
4848
* @type {boolean}
4949
* @attr
50-
* @default false
50+
* @default
5151
*/
5252
@property({ type: Boolean, reflect: true })
5353
public get readonly() {

src/packages/media/media/collection/views/manifests.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { UMB_MEDIA_GRID_COLLECTION_VIEW_ALIAS, UMB_MEDIA_TABLE_COLLECTION_VIEW_ALIAS } from './index.js';
22
import { UMB_COLLECTION_ALIAS_CONDITION } from '@umbraco-cms/backoffice/collection';
3-
import type { ManifestCollectionView } from '@umbraco-cms/backoffice/collection';
43

54
export const manifests: Array<UmbExtensionManifest> = [
65
{

src/packages/media/media/components/input-rich-media/input-rich-media.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export class UmbInputRichMediaElement extends UUIFormControlMixin(UmbLitElement,
154154
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
155155
* @type {boolean}
156156
* @attr
157-
* @default false
157+
* @default
158158
*/
159159
@property({ type: Boolean, reflect: true })
160160
public get readonly() {

src/packages/members/member-group/components/input-member-group/input-member-group.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export class UmbInputMemberGroupElement extends UmbFormControlMixin<string | und
104104
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
105105
* @type {boolean}
106106
* @attr
107-
* @default false
107+
* @default
108108
*/
109109
@property({ type: Boolean, reflect: true })
110110
public get readonly() {

src/packages/members/member-type/entity-actions/manifests.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ export const manifests: Array<UmbExtensionManifest> = [
2929
itemRepositoryAlias: UMB_MEMBER_TYPE_ITEM_REPOSITORY_ALIAS,
3030
},
3131
},
32+
...duplicateManifests,
3233
];

src/packages/members/member/components/input-member/input-member.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export class UmbInputMemberElement extends UmbFormControlMixin<string | undefine
106106
* Sets the input to readonly mode, meaning value cannot be changed but still able to read and select its content.
107107
* @type {boolean}
108108
* @attr
109-
* @default false
109+
* @default
110110
*/
111111
@property({ type: Boolean, reflect: true })
112112
public get readonly() {

0 commit comments

Comments
 (0)