-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2328 from umbraco/v15/fix/move-user-permission-se…
…ttings-token Fix: move user permission settings token
- Loading branch information
Showing
21 changed files
with
55 additions
and
34 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
4 changes: 2 additions & 2 deletions
4
src/packages/core/modal/common/confirm/confirm-modal.controller.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
...s/core/modal/token/confirm-modal.token.ts → ...dal/common/confirm/confirm-modal.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
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 * from './confirm-modal.token.js'; | ||
export * from './confirm-modal.controller.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const manifests: Array<UmbExtensionManifest> = [ | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.Confirm', | ||
name: 'Confirm Modal', | ||
element: () => import('./confirm-modal.element.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 +1,3 @@ | ||
export * from './embedded-media/index.js'; | ||
export * from './confirm/index.js'; | ||
export * from './item-picker/index.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './item-picker-modal.token.js'; |
2 changes: 1 addition & 1 deletion
2
...re/modal/token/item-picker-modal.token.ts → ...on/item-picker/item-picker-modal.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
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,8 @@ | ||
export const manifests: Array<UmbExtensionManifest> = [ | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.ItemPicker', | ||
name: 'Item Picker Modal', | ||
element: () => import('./item-picker-modal.element.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,20 +1,13 @@ | ||
import { manifests as confirmManifests } from './confirm/manifests.js'; | ||
import { manifests as itemPickerManifests } from './item-picker/manifests.js'; | ||
|
||
export const manifests: Array<UmbExtensionManifest> = [ | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.Confirm', | ||
name: 'Confirm Modal', | ||
element: () => import('./confirm/confirm-modal.element.js'), | ||
}, | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.EmbeddedMedia', | ||
name: 'Embedded Media Modal', | ||
element: () => import('./embedded-media/embedded-media-modal.element.js'), | ||
}, | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.ItemPicker', | ||
name: 'Item Picker Modal', | ||
element: () => import('./item-picker/item-picker-modal.element.js'), | ||
}, | ||
...confirmManifests, | ||
...itemPickerManifests, | ||
]; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import { manifests as commonManifests } from './common/manifests.js'; | ||
|
||
export const manifests: Array<UmbExtensionManifest> = [...commonManifests]; |
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,7 +1,4 @@ | ||
export * from './change-password-modal.token.js'; | ||
export * from './confirm-modal.token.js'; | ||
export * from './embedded-media-modal.token.js'; | ||
export * from './entity-user-permission-settings-modal.token.js'; | ||
export * from './item-picker-modal.token.js'; | ||
export * from './modal-token.js'; | ||
export * from './property-editor-ui-picker-modal.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
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 './components/index.js'; | ||
export * from './modals/index.js'; | ||
|
||
export type { UmbUserPermissionModel } from './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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './settings/index.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,8 +1,3 @@ | ||
export const manifests: Array<UmbExtensionManifest> = [ | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.EntityUserPermissionSettings', | ||
name: 'Entity User Permission Settings Modal', | ||
js: () => import('./settings/entity-user-permission-settings-modal.element.js'), | ||
}, | ||
]; | ||
import { manifests as settingsManifests } from './settings/manifests.js'; | ||
|
||
export const manifests: Array<UmbExtensionManifest> = [...settingsManifests]; |
6 changes: 3 additions & 3 deletions
6
...ges/user/user-permission/modals/settings/entity-user-permission-settings-modal.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
...y-user-permission-settings-modal.token.ts → ...y-user-permission-settings-modal.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
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 './entity-user-permission-settings-modal.token.js'; |
8 changes: 8 additions & 0 deletions
8
src/packages/user/user-permission/modals/settings/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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const manifests: Array<UmbExtensionManifest> = [ | ||
{ | ||
type: 'modal', | ||
alias: 'Umb.Modal.EntityUserPermissionSettings', | ||
name: 'Entity User Permission Settings Modal', | ||
js: () => import('./entity-user-permission-settings-modal.element.js'), | ||
}, | ||
]; |