kirby-types 1.1.0 → 1.1.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "kirby-types",
3
3
  "type": "module",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "packageManager": "pnpm@10.27.0",
6
6
  "description": "A collection of TypeScript types for the Kirby CMS",
7
7
  "author": "Johann Schopplich <hello@johannschopplich.com>",
@@ -248,6 +248,19 @@ export type {
248
248
  PanelLibrary,
249
249
  } from "./libraries";
250
250
 
251
+ // =============================================================================
252
+ // Re-exports from panel.writer.ts
253
+ // =============================================================================
254
+
255
+ export type {
256
+ // Writer Utilities
257
+ WriterUtils,
258
+ // Writer Contexts
259
+ WriterMarkContext,
260
+ WriterNodeContext,
261
+ WriterExtensionContext,
262
+ } from "./writer";
263
+
251
264
  // =============================================================================
252
265
  // Panel App
253
266
  // =============================================================================