-
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.
Hotfix: ensure we export all extension types (#17787)
* export all Extension Manifest Types * clean up * lint fix
- Loading branch information
1 parent
c26b45d
commit 2d428cc
Showing
77 changed files
with
103 additions
and
92 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
24 changes: 11 additions & 13 deletions
24
src/Umbraco.Web.UI.Client/examples/validation-context/index.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,23 +1,21 @@ | ||
import type { ManifestDashboard } from '@umbraco-cms/backoffice/dashboard'; | ||
|
||
const dashboard : ManifestDashboard = { | ||
const dashboard: ManifestDashboard = { | ||
type: 'dashboard', | ||
alias: 'Demo.Dashboard', | ||
name: 'Demo Dashboard Validation Context', | ||
weight: 1000, | ||
element: () => import('./validation-context-dashboard.js'), | ||
meta: { | ||
label: 'Validation Context Demo', | ||
pathname: 'demo' | ||
label: 'Validation Context Demo', | ||
pathname: 'demo', | ||
}, | ||
conditions : [ | ||
{ | ||
alias : "Umb.Condition.SectionAlias", | ||
match : "Umb.Section.Content" | ||
} | ||
] | ||
} | ||
conditions: [ | ||
{ | ||
alias: 'Umb.Condition.SectionAlias', | ||
match: 'Umb.Section.Content', | ||
}, | ||
], | ||
}; | ||
|
||
export const manifests = [ | ||
dashboard | ||
]; | ||
export const manifests = [dashboard]; |
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/core/collection/action/create/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
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/core/collection/collection-view.manager.test.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
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/core/collection/collection-view.manager.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
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/core/collection/collection.element.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
2 changes: 1 addition & 1 deletion
2
...o.Web.UI.Client/src/packages/core/collection/components/collection-view-bundle.element.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
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
File renamed without changes.
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
3 changes: 1 addition & 2 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/entity-action/common/create/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
3 changes: 1 addition & 2 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/entity-action/common/delete/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
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/entity-action/default/index.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
5 changes: 5 additions & 0 deletions
5
src/Umbraco.Web.UI.Client/src/packages/core/entity-action/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,5 +1,10 @@ | ||
import type { UmbEntityModel } from '@umbraco-cms/backoffice/entity'; | ||
|
||
export type * from './default/types.js'; | ||
export type * from './entity-action-element.interface.js'; | ||
export type * from './entity-action.extension.js'; | ||
export type * from './entity-action.interface.js'; | ||
|
||
export interface UmbEntityActionArgs<MetaArgsType> extends UmbEntityModel { | ||
meta: MetaArgsType; | ||
} |
2 changes: 0 additions & 2 deletions
2
src/Umbraco.Web.UI.Client/src/packages/core/entity-create-option-action/index.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,3 @@ | ||
export * from './constants.js'; | ||
export * from './entity-create-option-action-base.js'; | ||
export type * from './entity-create-option-action.extension.js'; | ||
export type * from './entity-create-option-action.interface.js'; | ||
export type * from './types.js'; |
3 changes: 3 additions & 0 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/entity-create-option-action/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,5 +1,8 @@ | ||
import type { UmbEntityModel } from '@umbraco-cms/backoffice/entity'; | ||
|
||
export type * from './entity-create-option-action.extension.js'; | ||
export type * from './entity-create-option-action.interface.js'; | ||
|
||
export interface UmbEntityCreateOptionActionArgs<MetaArgsType> extends UmbEntityModel { | ||
meta: MetaArgsType; | ||
} |
2 changes: 1 addition & 1 deletion
2
.../packages/core/extension-registry/extensions/external-login-provider-element.interface.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
File renamed without changes.
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
File renamed without changes.
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: 2 additions & 0 deletions
2
src/Umbraco.Web.UI.Client/src/packages/core/icon-registry/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
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/menu/components/menu-item/index.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 @@ | ||
export * from './menu-item-default.element.js'; | ||
export type * from './link/index.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/menu/components/menu-item/link/index.ts
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/core/menu/components/menu-item/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 @@ | ||
export type * from './link/types.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/core/menu/components/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 @@ | ||
export type * from './menu-item/types.js'; |
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,9 +1,7 @@ | ||
export * from './components/index.js'; | ||
export * from './menu-tree-structure-workspace-context-base.js'; | ||
export * from './menu-variant-tree-structure-workspace-context-base.js'; | ||
export type * from './menu-item-element.interface.js'; | ||
export type * from './menu-item.extension.js'; | ||
export type * from './menu.extension.js'; | ||
|
||
export type * from './types.js'; | ||
|
||
export type { UmbMenuStructureWorkspaceContext } from './menu-structure-workspace-context.interface.js'; |
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
File renamed without changes.
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
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/picker/search/index.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,4 +1,3 @@ | ||
export * from './manager/index.js'; | ||
export * from './picker-search-field.element.js'; | ||
export * from './picker-search-result.element.js'; | ||
export type * from './result-item/index.js'; |
File renamed without changes.
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/core/picker/search/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 @@ | ||
export type * from './result-item/types.js'; |
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 |
---|---|---|
|
@@ -4,3 +4,5 @@ export interface UmbPickerContextConfig { | |
queryParams?: object; | ||
}; | ||
} | ||
|
||
export type * from './search/types.js'; |
File renamed without changes.
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
1 change: 0 additions & 1 deletion
1
...raco.Web.UI.Client/src/packages/core/recycle-bin/entity-action/empty-recycle-bin/index.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 @@ | ||
export type * from './types.js'; | ||
export * from './empty-recycle-bin.action.js'; |
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
4 changes: 1 addition & 3 deletions
4
src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/move/index.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,3 +1 @@ | ||
export type { UmbMoveDataSource } from './move-data-source.interface.js'; | ||
export type { UmbMoveRepository } from './move-repository.interface.js'; | ||
export type * from './types.js'; | ||
export { UmbMoveToEntityAction } from './move-to.action.js'; |
2 changes: 2 additions & 0 deletions
2
src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/move/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
3 changes: 0 additions & 3 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/sort-children-of/index.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,4 +1 @@ | ||
export { UmbSortChildrenOfEntityAction } from './sort-children-of.action.js'; | ||
export type { UmbSortChildrenOfRepository } from './sort-children-of-repository.interface.js'; | ||
export type { UmbSortChildrenOfDataSource } from './sort-children-of-data-source.interface.js'; | ||
export type * from './types.js'; |
3 changes: 3 additions & 0 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-actions/sort-children-of/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
4 changes: 4 additions & 0 deletions
4
src/Umbraco.Web.UI.Client/src/packages/core/tree/entity-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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export type * from './duplicate-to/types.js'; | ||
export type * from './move/types.js'; | ||
export type * from './reload-tree-item-children/types.js'; | ||
export type * from './sort-children-of/types.js'; |
File renamed without changes.
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/entity-action/create-folder/index.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 @@ | ||
export * from './create-folder.action.js'; | ||
export type * from './types.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/entity-action/delete-folder/index.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 @@ | ||
export * from './delete-folder.action.js'; | ||
export type * from './types.js'; |
3 changes: 3 additions & 0 deletions
3
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/entity-action/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,3 @@ | ||
export type * from './create-folder/types.js'; | ||
export type * from './delete-folder/types.js'; | ||
export type * from './update-folder/types.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/entity-action/update-folder/index.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 @@ | ||
export type * from './types.js'; | ||
export * from './update-folder.action.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/index.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,3 +1,2 @@ | ||
export type * from './types.js'; | ||
export * from './modal/index.js'; | ||
export * from './entity-action/index.js'; |
2 changes: 2 additions & 0 deletions
2
src/Umbraco.Web.UI.Client/src/packages/core/tree/folder/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
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/core/tree/tree-item/tree-item.element.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
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/core/tree/tree-menu-item-default/index.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 @@ | ||
export * from './tree-menu-item-default.element.js'; | ||
export type * from './types.js'; |
Oops, something went wrong.