-
Notifications
You must be signed in to change notification settings - Fork 0
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
f64a184
commit 38dbf2a
Showing
7 changed files
with
253 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<script lang="ts"> | ||
import type { Content } from '@prismicio/client'; | ||
export let slice: Content.ExperienceSlice; | ||
</script> | ||
|
||
<section data-slice-type={slice.slice_type} data-slice-variation={slice.variation}> | ||
Placeholder component for {slice.slice_type} (variation: {slice.variation}) Slices | ||
</section> |
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,72 @@ | ||
[ | ||
{ | ||
"__TYPE__": "SharedSliceContent", | ||
"variation": "default", | ||
"primary": {}, | ||
"items": [ | ||
{ | ||
"__TYPE__": "GroupItemContent", | ||
"value": [ | ||
[ | ||
"title", | ||
{ | ||
"__TYPE__": "FieldContent", | ||
"value": "particles", | ||
"type": "Text" | ||
} | ||
], | ||
[ | ||
"affiliation", | ||
{ | ||
"__TYPE__": "LinkContent", | ||
"value": { | ||
"__TYPE__": "DocumentLink", | ||
"id": "mock_document_id" | ||
} | ||
} | ||
], | ||
[ | ||
"url", | ||
{ | ||
"__TYPE__": "LinkContent", | ||
"value": { | ||
"__TYPE__": "ExternalLink", | ||
"url": "https://prismic.io" | ||
} | ||
} | ||
], | ||
[ | ||
"timeframe", | ||
{ | ||
"__TYPE__": "FieldContent", | ||
"value": "plan", | ||
"type": "Text" | ||
} | ||
], | ||
[ | ||
"caption", | ||
{ | ||
"__TYPE__": "FieldContent", | ||
"value": "lady", | ||
"type": "Text" | ||
} | ||
], | ||
[ | ||
"body", | ||
{ | ||
"__TYPE__": "StructuredTextContent", | ||
"value": [ | ||
{ | ||
"type": "paragraph", | ||
"content": { | ||
"text": "Est mollit anim et sunt Lorem minim incididunt consequat aliqua ipsum do enim anim." | ||
} | ||
} | ||
] | ||
} | ||
] | ||
] | ||
} | ||
] | ||
} | ||
] |
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,67 @@ | ||
{ | ||
"id": "experience", | ||
"type": "SharedSlice", | ||
"name": "Experience", | ||
"description": "Experience", | ||
"variations": [ | ||
{ | ||
"id": "default", | ||
"name": "Default", | ||
"docURL": "...", | ||
"version": "initial", | ||
"description": "Default", | ||
"imageUrl": "", | ||
"primary": {}, | ||
"items": { | ||
"title": { | ||
"type": "Text", | ||
"config": { | ||
"label": "Title", | ||
"placeholder": "" | ||
} | ||
}, | ||
"affiliation": { | ||
"type": "Link", | ||
"config": { | ||
"label": "Affiliation", | ||
"select": "document", | ||
"customtypes": [ | ||
"affiliation" | ||
] | ||
} | ||
}, | ||
"url": { | ||
"type": "Link", | ||
"config": { | ||
"label": "URL", | ||
"placeholder": "", | ||
"select": null | ||
} | ||
}, | ||
"timeframe": { | ||
"type": "Text", | ||
"config": { | ||
"label": "Timeframe", | ||
"placeholder": "" | ||
} | ||
}, | ||
"caption": { | ||
"type": "Text", | ||
"config": { | ||
"label": "Caption", | ||
"placeholder": "" | ||
} | ||
}, | ||
"body": { | ||
"type": "StructuredText", | ||
"config": { | ||
"label": "Body", | ||
"placeholder": "", | ||
"allowTargetBlank": true, | ||
"single": "paragraph,preformatted,heading1,heading2,heading3,heading4,heading5,heading6,strong,em,hyperlink,image,embed,list-item,o-list-item,rtl" | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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