-
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
a436d3f
commit 9cd4c86
Showing
26 changed files
with
52 additions
and
27 deletions.
There are no files selected for viewing
2 changes: 2 additions & 0 deletions
2
src/Umbraco.Web.UI.Client/src/packages/dictionary/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,3 @@ | ||
export const UMB_DICTIONARY_COLLECTION_ALIAS = 'Umb.Collection.Dictionary'; | ||
export * from './repository/constants.js'; | ||
export * from './views/constants.js'; |
10 changes: 10 additions & 0 deletions
10
src/Umbraco.Web.UI.Client/src/packages/dictionary/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,10 @@ | ||
export * from './collection/constants.js'; | ||
export * from './dashboard/constants.js'; | ||
export * from './entity-action/constants.js'; | ||
export * from './modals/constants.js'; | ||
export * from './repository/constants.js'; | ||
export * from './search/constants.js'; | ||
export * from './tree/constants.js'; | ||
export * from './workspace/constants.js'; | ||
|
||
export { UMB_DICTIONARY_ROOT_ENTITY_TYPE, UMB_DICTIONARY_ENTITY_TYPE } from './entity.js'; |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/dictionary/dashboard/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 +1 @@ | ||
export * from './paths.js'; | ||
export * from './constants.js'; |
3 changes: 3 additions & 0 deletions
3
src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/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 { UMB_EXPORT_DICTIONARY_MODAL } from './export/export-dictionary-modal.token.js'; | ||
export { UMB_IMPORT_DICTIONARY_MODAL } from './import/import-dictionary-modal.token.js'; | ||
export * from './move-to/constants.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/move-to/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 './repository/constants.js'; |
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/move-to/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 +1 @@ | ||
export { UmbMoveDictionaryRepository, UMB_MOVE_DICTIONARY_REPOSITORY_ALIAS } from './repository/index.js'; | ||
export { UmbMoveDictionaryRepository } from './repository/index.js'; |
2 changes: 1 addition & 1 deletion
2
src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/move-to/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
1 change: 0 additions & 1 deletion
1
src/Umbraco.Web.UI.Client/src/packages/dictionary/entity-action/move-to/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 { UmbMoveDictionaryRepository } from './dictionary-move.repository.js'; | ||
export { UMB_MOVE_DICTIONARY_REPOSITORY_ALIAS } from './constants.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,6 +1,6 @@ | ||
export * from './constants.js'; | ||
export * from './repository/index.js'; | ||
export * from './tree/index.js'; | ||
export * from './modals/dictionary-picker-modal.token.js'; | ||
export * from './entity.js'; | ||
export * from './components/index.js'; | ||
export * from './workspace/paths.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/dictionary/modals/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 { UMB_DICTIONARY_PICKER_MODAL } from './dictionary-picker-modal.token.js'; |
4 changes: 4 additions & 0 deletions
4
src/Umbraco.Web.UI.Client/src/packages/dictionary/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,4 @@ | ||
export * from './detail/constants.js'; | ||
export * from './export/constants.js'; | ||
export * from './import/constants.js'; | ||
export * from './item/constants.js'; |
1 change: 1 addition & 0 deletions
1
src/Umbraco.Web.UI.Client/src/packages/dictionary/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,3 @@ | ||
export const UMB_DICTIONARY_DETAIL_REPOSITORY_ALIAS = 'Umb.Repository.Dictionary.Detail'; | ||
export const UMB_DICTIONARY_DETAIL_STORE_ALIAS = 'Umb.Store.Dictionary.Detail'; | ||
export { UMB_DICTIONARY_DETAIL_STORE_CONTEXT } from './dictionary-detail.store.context-token.js'; |
2 changes: 1 addition & 1 deletion
2
...o.Web.UI.Client/src/packages/dictionary/repository/detail/dictionary-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
...Client/src/packages/dictionary/repository/detail/dictionary-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 { UmbDictionaryDetailStore } from './dictionary-detail.store.js'; | ||
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api'; | ||
|
||
export const UMB_DICTIONARY_DETAIL_STORE_CONTEXT = new UmbContextToken<UmbDictionaryDetailStore>( | ||
'UmbDictionaryDetailStore', | ||
); |
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/dictionary/repository/item/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,3 @@ | ||
export const UMB_DICTIONARY_ITEM_REPOSITORY_ALIAS = 'Umb.Repository.Dictionary.Item'; | ||
export const UMB_DICTIONARY_STORE_ALIAS = 'Umb.Store.Dictionary.Item'; | ||
export { UMB_DICTIONARY_ITEM_STORE_CONTEXT } from './dictionary-item.store.context-token.js'; |
2 changes: 1 addition & 1 deletion
2
...braco.Web.UI.Client/src/packages/dictionary/repository/item/dictionary-item.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
4 changes: 4 additions & 0 deletions
4
....UI.Client/src/packages/dictionary/repository/item/dictionary-item.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,4 @@ | ||
import type { UmbDictionaryItemStore } from './dictionary-item.store.js'; | ||
import { UmbContextToken } from '@umbraco-cms/backoffice/context-api'; | ||
|
||
export const UMB_DICTIONARY_ITEM_STORE_CONTEXT = new UmbContextToken<UmbDictionaryItemStore>('UmbDictionaryItemStore'); |
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: 2 additions & 0 deletions
2
src/Umbraco.Web.UI.Client/src/packages/dictionary/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,2 @@ | ||
export const UMB_DICTIONARY_WORKSPACE_ALIAS = 'Umb.Workspace.Dictionary'; | ||
export { UMB_DICTIONARY_WORKSPACE_CONTEXT } from './dictionary-workspace.context-token.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
3 changes: 1 addition & 2 deletions
3
src/Umbraco.Web.UI.Client/src/packages/dictionary/workspace/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
...Umbraco.Web.UI.Client/src/packages/documents/document-blueprints/tree/folder/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
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