-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[sitecore-jss] [sitecore-jss-nextjs] Pass
sc_layoutKind
to grapqhl …
…layout request header. (#1907) * pass layout kind to grapqhl request * update changelog * refactor * remove only * Update CHANGELOG.md Co-authored-by: Illia Kovalenko <[email protected]> * Update packages/sitecore-jss/src/editing/graphql-editing-service.ts Co-authored-by: Illia Kovalenko <[email protected]> * Update packages/sitecore-jss/src/editing/graphql-editing-service.ts Co-authored-by: Illia Kovalenko <[email protected]> * resolve review comments * Update CHANGELOG.md * update changelog * fix changelog --------- Co-authored-by: Addy Pathania <[email protected]> Co-authored-by: Illia Kovalenko <[email protected]>
- Loading branch information
1 parent
e232f6f
commit 20ac215
Showing
10 changed files
with
192 additions
and
27 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
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 |
---|---|---|
|
@@ -20,3 +20,4 @@ export { | |
EditButtonTypes, | ||
mapButtonToCommand, | ||
} from './edit-frame'; | ||
export { LayoutKind } from './models'; |
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,9 @@ | ||
/** | ||
* Represents the Editing Layout variant. | ||
* - shared - shared layout | ||
* - final - final layout | ||
*/ | ||
export enum LayoutKind { | ||
Final = 'final', | ||
Shared = 'shared', | ||
} |
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
Oops, something went wrong.