kirby-types 1.4.6 → 1.4.7
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 +1 -1
- package/src/panel/features.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kirby-types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.7",
|
|
5
5
|
"packageManager": "pnpm@10.27.0",
|
|
6
6
|
"description": "TypeScript types for Kirby Panel plugins and headless CMS usage",
|
|
7
7
|
"author": "Johann Schopplich <hello@johannschopplich.com>",
|
package/src/panel/features.d.ts
CHANGED
|
@@ -219,15 +219,15 @@ export interface PanelLanguageDefaults {
|
|
|
219
219
|
*/
|
|
220
220
|
export interface PanelLanguage extends PanelState<PanelLanguageDefaults> {
|
|
221
221
|
/** Language code (e.g., `"en"`, `"de"`) */
|
|
222
|
-
code: string
|
|
222
|
+
code: string;
|
|
223
223
|
/** Whether this is the default language */
|
|
224
224
|
default: boolean;
|
|
225
225
|
/** Text direction */
|
|
226
226
|
direction: "ltr" | "rtl";
|
|
227
227
|
/** Language name */
|
|
228
|
-
name: string
|
|
228
|
+
name: string;
|
|
229
229
|
/** Slug conversion rules */
|
|
230
|
-
rules: Record<string, string
|
|
230
|
+
rules: Record<string, string>;
|
|
231
231
|
|
|
232
232
|
/** Alias for `default` property */
|
|
233
233
|
readonly isDefault: boolean;
|