-
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
b8b28dc
commit bf324ff
Showing
14 changed files
with
21 additions
and
12 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/collection/constants.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 +1,2 @@ | ||
export const UMB_RELATION_TYPE_COLLECTION_ALIAS = 'Umb.Collection.RelationType'; | ||
export * from './repository/constants.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/collection/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 { UmbRelationTypeCollectionRepository } from './repository/index.js'; | ||
export { UMB_RELATION_TYPE_COLLECTION_ALIAS } from './constants.js'; |
1 change: 0 additions & 1 deletion
1
...mbraco.Web.UI.Client/src/packages/relations/relation-types/collection/repository/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 { UMB_RELATION_TYPE_COLLECTION_REPOSITORY_ALIAS } from './constants.js'; | ||
export { UmbRelationTypeCollectionRepository } from './relation-type-collection.repository.js'; |
3 changes: 3 additions & 0 deletions
3
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/constants.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 * from './collection/constants.js'; | ||
export * from './repository/constants.js'; | ||
export * from './workspace/constants.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/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,4 @@ | ||
export * from './collection/index.js'; | ||
export * from './constants.js'; | ||
export * from './entity.js'; | ||
export * from './repository/index.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/repository/constants.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 * from './detail/constants.js'; |
4 changes: 2 additions & 2 deletions
4
...mbraco.Web.UI.Client/src/packages/relations/relation-types/repository/detail/constants.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 const UMB_RELATION_TYPE_DETAIL_REPOSITORY_ALIAS = 'Umb.Repository.RelationType.Detail'; | ||
export const UMB_RELATION_TYPE_DETAIL_STORE_ALIAS = 'Umb.Store.RelationType.Detail'; | ||
export { UMB_RELATION_TYPE_DETAIL_REPOSITORY_ALIAS, UMB_RELATION_TYPE_DETAIL_STORE_ALIAS } from './manifests.js'; | ||
export { UMB_RELATION_TYPE_DETAIL_STORE_CONTEXT } from './relation-type-detail.store.context-token.js'; |
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/repository/detail/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 { UmbRelationTypeDetailRepository } from './relation-type-detail.repository.js'; | ||
export { UMB_RELATION_TYPE_DETAIL_REPOSITORY_ALIAS } from './constants.js'; |
3 changes: 2 additions & 1 deletion
3
...mbraco.Web.UI.Client/src/packages/relations/relation-types/repository/detail/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
2 changes: 1 addition & 1 deletion
2
...rc/packages/relations/relation-types/repository/detail/relation-type-detail.repository.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
6 changes: 6 additions & 0 deletions
6
...es/relations/relation-types/repository/detail/relation-type-detail.store.context-token.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,6 @@ | ||
import type UmbRelationTypeDetailStore from './relation-type-detail.store.js'; | ||
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api'; | ||
|
||
export const UMB_RELATION_TYPE_DETAIL_STORE_CONTEXT = new UmbContextToken<UmbRelationTypeDetailStore>( | ||
'UmbRelationTypeDetailStore', | ||
); |
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: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/relations/relation-types/workspace/constants.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 * from './relation-type/constants.js'; |
2 changes: 2 additions & 0 deletions
2
....Web.UI.Client/src/packages/relations/relation-types/workspace/relation-type/constants.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,2 @@ | ||
export { UMB_RELATION_TYPE_WORKSPACE_ALIAS } from './manifests.js'; | ||
export { UMB_RELATION_TYPE_WORKSPACE_CONTEXT } from './relation-type-workspace.context-token.js'; |