@measured/puck-plugin-heading-analyzer 0.16.0-canary.c7007ac → 0.16.0-canary.d08a794
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/index.d.ts +8 -0
- package/dist/index.js +813 -602
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -173,6 +173,10 @@ type Overrides = OverridesGeneric<{
|
|
173
173
|
actions: ReactNode;
|
174
174
|
children: ReactNode;
|
175
175
|
}>;
|
176
|
+
actionBar: RenderFunc<{
|
177
|
+
label?: string;
|
178
|
+
children: ReactNode;
|
179
|
+
}>;
|
176
180
|
headerActions: RenderFunc<{
|
177
181
|
children: ReactNode;
|
178
182
|
}>;
|
@@ -195,6 +199,10 @@ type Overrides = OverridesGeneric<{
|
|
195
199
|
children: ReactNode;
|
196
200
|
name: string;
|
197
201
|
}>;
|
202
|
+
iframe: RenderFunc<{
|
203
|
+
children: ReactNode;
|
204
|
+
document?: Document;
|
205
|
+
}>;
|
198
206
|
outline: RenderFunc;
|
199
207
|
puck: RenderFunc;
|
200
208
|
}>;
|