@sveltia/cms 0.107.3 → 0.108.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltia/cms",
3
- "version": "0.107.3",
3
+ "version": "0.108.0",
4
4
  "description": "Sveltia CMS is a modern, lightweight, Git-based headless content management system.",
5
5
  "keywords": [
6
6
  "cms",
@@ -13,7 +13,7 @@
13
13
  "license": "MIT",
14
14
  "type": "module",
15
15
  "devDependencies": {
16
- "@types/react": "^19.1.13"
16
+ "@types/react": "^19.1.15"
17
17
  },
18
18
  "publishConfig": {
19
19
  "directory": "package",
@@ -5173,6 +5173,11 @@
5173
5173
  "description": "Indent size. Default: `2`.",
5174
5174
  "markdownDescription": "Indent size. Default: `2`."
5175
5175
  },
5176
+ "indent_sequences": {
5177
+ "type": "boolean",
5178
+ "description": "Whether to indent block sequences. Default: `true`.",
5179
+ "markdownDescription": "Whether to indent block sequences. Default: `true`."
5180
+ },
5176
5181
  "quote": {
5177
5182
  "type": "string",
5178
5183
  "enum": [
package/types/public.d.ts CHANGED
@@ -1981,6 +1981,10 @@ export type YamlFormatOptions = {
1981
1981
  * Indent size. Default: `2`.
1982
1982
  */
1983
1983
  indent_size?: number;
1984
+ /**
1985
+ * Whether to indent block sequences. Default: `true`.
1986
+ */
1987
+ indent_sequences?: boolean;
1984
1988
  /**
1985
1989
  * String value’s default quote type. Default:
1986
1990
  * 'none'.