@measured/puck-plugin-heading-analyzer 0.17.0-canary.8ea38c3 → 0.17.0-canary.c3557ab

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.mts CHANGED
@@ -87,6 +87,9 @@ type ExternalField<Props extends {
87
87
  mapRow?: (value: any) => Record<string, string | number | ReactElement>;
88
88
  getItemSummary?: (item: Props, index?: number) => string;
89
89
  showSearch?: boolean;
90
+ renderFooter?: (props: {
91
+ items: any[];
92
+ }) => ReactElement;
90
93
  initialQuery?: string;
91
94
  filterFields?: Record<string, Field>;
92
95
  initialFilters?: Record<string, any>;
@@ -147,6 +150,9 @@ type UiState = {
147
150
  controlsVisible: boolean;
148
151
  options: Viewport[];
149
152
  };
153
+ field: {
154
+ focus?: string | null;
155
+ };
150
156
  };
151
157
 
152
158
  type RenderFunc<Props extends {
package/dist/index.d.ts CHANGED
@@ -87,6 +87,9 @@ type ExternalField<Props extends {
87
87
  mapRow?: (value: any) => Record<string, string | number | ReactElement>;
88
88
  getItemSummary?: (item: Props, index?: number) => string;
89
89
  showSearch?: boolean;
90
+ renderFooter?: (props: {
91
+ items: any[];
92
+ }) => ReactElement;
90
93
  initialQuery?: string;
91
94
  filterFields?: Record<string, Field>;
92
95
  initialFilters?: Record<string, any>;
@@ -147,6 +150,9 @@ type UiState = {
147
150
  controlsVisible: boolean;
148
151
  options: Viewport[];
149
152
  };
153
+ field: {
154
+ focus?: string | null;
155
+ };
150
156
  };
151
157
 
152
158
  type RenderFunc<Props extends {