@sveltia/cms 0.125.0 → 0.126.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/README.md +48 -8
- package/dist/sveltia-cms.js +271 -271
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +280 -280
- package/dist/sveltia-cms.mjs.map +1 -1
- package/package.json +1 -1
- package/schema/sveltia-cms.json +1 -1
- package/types/public.d.ts +2 -2
package/types/public.d.ts
CHANGED
|
@@ -1375,7 +1375,7 @@ export type CollectionFile = {
|
|
|
1375
1375
|
/**
|
|
1376
1376
|
* Supported file extension. Actually it can be any string.
|
|
1377
1377
|
*/
|
|
1378
|
-
export type FileExtension = "yml" | "yaml" | "toml" | "json" | "md" | "markdown" | "html" | string;
|
|
1378
|
+
export type FileExtension = "yml" | "yaml" | "toml" | "json" | "md" | "markdown" | "html" | "txt" | string;
|
|
1379
1379
|
/**
|
|
1380
1380
|
* Supported Markdown front matter format.
|
|
1381
1381
|
*/
|
|
@@ -1383,7 +1383,7 @@ export type FrontMatterFormat = "yaml-frontmatter" | "toml-frontmatter" | "json-
|
|
|
1383
1383
|
/**
|
|
1384
1384
|
* Supported file format. Actually it can be any string because of custom formats.
|
|
1385
1385
|
*/
|
|
1386
|
-
export type FileFormat = "yml" | "yaml" | "toml" | "json" | "frontmatter" | FrontMatterFormat | string;
|
|
1386
|
+
export type FileFormat = "yml" | "yaml" | "toml" | "json" | "frontmatter" | FrontMatterFormat | "raw" | string;
|
|
1387
1387
|
/**
|
|
1388
1388
|
* Collection filter options.
|
|
1389
1389
|
*/
|