@measured/puck-plugin-heading-analyzer 0.14.0-canary.f975d87 → 0.14.1-canary.041ca64
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/index.d.ts +30 -5
- package/dist/index.js +4351 -1754
- package/package.json +2 -2
package/README.md
CHANGED
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,18 @@
|
|
1
|
-
import {
|
1
|
+
import { ReactNode, ReactElement } from 'react';
|
2
2
|
|
3
3
|
type ItemSelector = {
|
4
4
|
index: number;
|
5
5
|
zone?: string;
|
6
6
|
};
|
7
7
|
|
8
|
+
type iconTypes = "Smartphone" | "Monitor" | "Tablet";
|
9
|
+
type Viewport = {
|
10
|
+
width: number;
|
11
|
+
height?: number | "auto";
|
12
|
+
label?: string;
|
13
|
+
icon?: iconTypes | ReactNode;
|
14
|
+
};
|
15
|
+
|
8
16
|
type FieldOption = {
|
9
17
|
label: string;
|
10
18
|
value: string | number | boolean;
|
@@ -43,6 +51,8 @@ type ArrayField<Props extends {
|
|
43
51
|
};
|
44
52
|
defaultItemProps?: Props[0];
|
45
53
|
getItemSummary?: (item: Props[0], index?: number) => string;
|
54
|
+
max?: number;
|
55
|
+
min?: number;
|
46
56
|
};
|
47
57
|
type ObjectField<Props extends {
|
48
58
|
[key: string]: any;
|
@@ -51,7 +61,7 @@ type ObjectField<Props extends {
|
|
51
61
|
}> = BaseField & {
|
52
62
|
type: "object";
|
53
63
|
objectFields: {
|
54
|
-
[SubPropName in keyof Props
|
64
|
+
[SubPropName in keyof Props]: Field<Props[SubPropName]>;
|
55
65
|
};
|
56
66
|
};
|
57
67
|
type Adaptor<AdaptorParams = {}, TableShape extends Record<string, any> = {}, PropShape = TableShape> = {
|
@@ -79,11 +89,15 @@ type ExternalField<Props extends {
|
|
79
89
|
placeholder?: string;
|
80
90
|
fetchList: (params: {
|
81
91
|
query: string;
|
92
|
+
filters: Record<string, any>;
|
82
93
|
}) => Promise<any[] | null>;
|
83
94
|
mapProp?: (value: any) => Props;
|
84
|
-
|
95
|
+
mapRow?: (value: any) => Record<string, string | number>;
|
96
|
+
getItemSummary?: (item: Props, index?: number) => string;
|
85
97
|
showSearch?: boolean;
|
86
98
|
initialQuery?: string;
|
99
|
+
filterFields?: Record<string, Field>;
|
100
|
+
initialFilters?: Record<string, any>;
|
87
101
|
};
|
88
102
|
type CustomField<Props extends {
|
89
103
|
[key: string]: any;
|
@@ -124,6 +138,14 @@ type UiState = {
|
|
124
138
|
expanded?: boolean;
|
125
139
|
}>;
|
126
140
|
isDragging: boolean;
|
141
|
+
viewports: {
|
142
|
+
current: {
|
143
|
+
width: number;
|
144
|
+
height: number | "auto";
|
145
|
+
};
|
146
|
+
controlsVisible: boolean;
|
147
|
+
options: Viewport[];
|
148
|
+
};
|
127
149
|
};
|
128
150
|
|
129
151
|
type InputProps<F = Field<any>> = {
|
@@ -141,7 +163,7 @@ type RenderFunc<Props extends {
|
|
141
163
|
[key: string]: any;
|
142
164
|
} = {
|
143
165
|
children: ReactNode;
|
144
|
-
}> =
|
166
|
+
}> = (props: Props) => ReactElement;
|
145
167
|
declare const overrideKeys: readonly ["header", "headerActions", "fields", "fieldLabel", "components", "componentItem", "outline", "puck", "preview"];
|
146
168
|
type OverrideKey = (typeof overrideKeys)[number];
|
147
169
|
type OverridesGeneric<Shape extends {
|
@@ -171,7 +193,10 @@ type Overrides = OverridesGeneric<{
|
|
171
193
|
className?: string;
|
172
194
|
}>;
|
173
195
|
components: RenderFunc;
|
174
|
-
componentItem: RenderFunc
|
196
|
+
componentItem: RenderFunc<{
|
197
|
+
children: ReactNode;
|
198
|
+
name: string;
|
199
|
+
}>;
|
175
200
|
outline: RenderFunc;
|
176
201
|
puck: RenderFunc;
|
177
202
|
}>;
|