@measured/puck-plugin-heading-analyzer 0.16.0-canary.eb42734 → 0.16.0-canary.f0655f0
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 +5 -1
- package/dist/index.js +4483 -5419
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
@@ -90,7 +90,7 @@ type ObjectField<Props extends {
|
|
90
90
|
[key: string]: any;
|
91
91
|
}> = BaseField & {
|
92
92
|
type: "object";
|
93
|
-
objectFields: {
|
93
|
+
objectFields: Props extends any[] ? never : {
|
94
94
|
[SubPropName in keyof Props]: Field<Props[SubPropName]>;
|
95
95
|
};
|
96
96
|
};
|
@@ -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
|
}>;
|