@sveltia/cms 0.146.8 → 0.146.10
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/dist/sveltia-cms.js +209 -209
- package/dist/sveltia-cms.js.map +1 -1
- package/dist/sveltia-cms.mjs +220 -220
- 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 +11 -0
package/types/public.d.ts
CHANGED
|
@@ -2298,6 +2298,13 @@ export type OutputOptions = {
|
|
|
2298
2298
|
*/
|
|
2299
2299
|
yaml?: YamlFormatOptions;
|
|
2300
2300
|
};
|
|
2301
|
+
export type IssueReports = {
|
|
2302
|
+
/**
|
|
2303
|
+
* URL of the issue reporting endpoint. Default:
|
|
2304
|
+
* `https://github.com/sveltia/sveltia-cms/issues/new`.
|
|
2305
|
+
*/
|
|
2306
|
+
url: string;
|
|
2307
|
+
};
|
|
2301
2308
|
/**
|
|
2302
2309
|
* CMS configuration.
|
|
2303
2310
|
*/
|
|
@@ -2370,6 +2377,10 @@ export type CmsConfig = {
|
|
|
2370
2377
|
* URL to redirect users to after logging out.
|
|
2371
2378
|
*/
|
|
2372
2379
|
logout_redirect_url?: string;
|
|
2380
|
+
/**
|
|
2381
|
+
* Issue reporting options.
|
|
2382
|
+
*/
|
|
2383
|
+
issue_reports?: IssueReports;
|
|
2373
2384
|
/**
|
|
2374
2385
|
* Whether to show site preview links. Default: `true`.
|
|
2375
2386
|
*/
|