@qarakash/blockwriteai 1.0.12 → 1.0.14

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@qarakash/blockwriteai",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "BlockWriteAI JSON-first drop-in block writing editor with free core blocks, preview mounting, and license-gated premium plugins.",
5
5
  "keywords": [
6
6
  "blockwriteai",
package/types/index.d.ts CHANGED
@@ -99,11 +99,17 @@ export interface BlockWriteAIExportOptions {
99
99
  }
100
100
 
101
101
  export interface BlockWriteAIShellOptions {
102
+ showHeader?: boolean;
102
103
  title?: string;
103
104
  subtitle?: string | false;
104
105
  heading?: string;
105
106
  status?: string;
106
107
  logo?: string | false;
108
+ logoUrl?: string | false;
109
+ branding?: {
110
+ logo?: string | false;
111
+ [key: string]: unknown;
112
+ };
107
113
  maxWidth?: string | number;
108
114
  className?: string;
109
115
  }
@@ -116,11 +122,17 @@ export interface BlockWriteAIOptions {
116
122
  maxWidth?: string | number;
117
123
  editorMaxWidth?: string | number;
118
124
  shell?: boolean | BlockWriteAIShellOptions;
125
+ showHeader?: boolean;
119
126
  shellTitle?: string;
120
127
  shellSubtitle?: string | false;
121
128
  shellHeading?: string;
122
129
  shellStatus?: string;
123
130
  shellLogo?: string | false;
131
+ logoUrl?: string | false;
132
+ branding?: {
133
+ logo?: string | false;
134
+ [key: string]: unknown;
135
+ };
124
136
  shellClassName?: string;
125
137
  autofocus?: boolean;
126
138
  readOnly?: boolean;