Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Contentstack
Copyright (c) 2026 Contentstack

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kickstart-stack-seed",
"version": "1.1.0",
"version": "1.2.0",
"description": "This repository provides the Kickstart stack content for Kickstart projects. An easy way to import this stack content is by using the CLI seed command.",
"repository": {
"type": "git",
Expand Down
98 changes: 98 additions & 0 deletions stack/global_fields/block.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"title": "Block",
"uid": "block",
"schema": [
{
"data_type": "text",
"display_name": "Title",
"uid": "title",
"field_metadata": {
"description": "",
"default_value": "Block title",
"version": 3
},
"format": "",
"error_messages": {
"format": ""
},
"mandatory": false,
"multiple": false,
"non_localizable": false,
"unique": false
},
{
"data_type": "text",
"display_name": "Copy",
"uid": "copy",
"field_metadata": {
"allow_rich_text": true,
"description": "",
"multiline": false,
"rich_text_type": "custom",
"options": [
"html",
"bold",
"underline",
"italic",
"deleted",
"link",
"h2",
"h3",
"h4",
"h5",
"h6"
],
"version": 3
},
"mandatory": false,
"multiple": false,
"non_localizable": false,
"unique": false
},
{
"data_type": "file",
"display_name": "Image",
"uid": "image",
"extensions": [],
"field_metadata": {
"description": "",
"rich_text_type": "standard"
},
"mandatory": false,
"multiple": false,
"non_localizable": false,
"unique": false
},
{
"data_type": "text",
"display_name": "Layout",
"display_type": "dropdown",
"enum": {
"advanced": true,
"choices": [
{
"value": "image_left",
"key": "Image Left"
},
{
"value": "image_right",
"key": "Image Right"
}
]
},
"multiple": false,
"uid": "layout",
"field_metadata": {
"description": "",
"default_value": "",
"default_key": "",
"instruction": "Image left or right in the layout",
"version": 3
},
"mandatory": false,
"non_localizable": false,
"unique": false
}
],
"description": "A block!"
}
Loading