@jackuait/blok 0.4.1-beta.17 → 0.4.1-beta.19

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.
@@ -41,6 +41,13 @@ export interface OutputBlockData<Type extends string = string, Data extends obje
41
41
  * Omit if block has no children.
42
42
  */
43
43
  content?: BlockId[];
44
+
45
+ /**
46
+ * Slot index within parent container (e.g., which column in a columns block).
47
+ * Used for container blocks that have multiple slots like columns.
48
+ * Omit if block doesn't need slot assignment.
49
+ */
50
+ slot?: number;
44
51
  }
45
52
 
46
53
  export interface OutputData {