-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1336e7
commit eb0535e
Showing
12 changed files
with
42 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/clipboard/property/actions/manifests.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import { manifests as copyManifests } from './copy/manifests.js'; | ||
import { manifests as pasteManifests } from './paste/manifests.js'; | ||
import { manifests as pasteManifests } from './replace/manifests.js'; | ||
import type { UmbExtensionManifestKind } from '@umbraco-cms/backoffice/extension-registry'; | ||
|
||
export const manifests: Array<UmbExtensionManifest | UmbExtensionManifestKind> = [...copyManifests, ...pasteManifests]; |
16 changes: 0 additions & 16 deletions
16
src/Umbraco.Web.UI.Client/src/packages/clipboard/property/actions/paste/types.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/Umbraco.Web.UI.Client/src/packages/clipboard/property/actions/replace/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { ManifestPropertyAction, MetaPropertyAction } from '@umbraco-cms/backoffice/property-action'; | ||
|
||
export interface ManifestPropertyActionReplaceFromClipboardKind | ||
extends ManifestPropertyAction<MetaPropertyActionReplaceFromClipboardKind> { | ||
type: 'propertyAction'; | ||
kind: 'replaceFromClipboard'; | ||
} | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-empty-object-type | ||
export interface MetaPropertyActionReplaceFromClipboardKind extends MetaPropertyAction {} | ||
|
||
declare global { | ||
interface UmbExtensionManifestMap { | ||
umbManifestPropertyActionReplaceFromClipboardKind: ManifestPropertyActionReplaceFromClipboardKind; | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/clipboard/property/actions/types.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export type * from './copy/types.js'; | ||
export type * from './paste/types.js'; | ||
export type * from './replace/types.js'; |