@measured/puck-plugin-emotion-cache 0.16.0-canary.6d43ba0 → 0.16.0-canary.88c5ab6
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 +39 -39
- package/dist/index.d.ts +39 -39
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,48 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactElement, ReactNode } 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
|
-
|
|
16
|
-
type ItemWithId = {
|
|
17
|
-
_arrayId: string;
|
|
18
|
-
_originalIndex: number;
|
|
19
|
-
};
|
|
20
|
-
type ArrayState = {
|
|
21
|
-
items: ItemWithId[];
|
|
22
|
-
openId: string;
|
|
23
|
-
};
|
|
24
|
-
type UiState = {
|
|
25
|
-
leftSideBarVisible: boolean;
|
|
26
|
-
rightSideBarVisible: boolean;
|
|
27
|
-
itemSelector: ItemSelector | null;
|
|
28
|
-
arrayState: Record<string, ArrayState | undefined>;
|
|
29
|
-
componentList: Record<string, {
|
|
30
|
-
components?: string[];
|
|
31
|
-
title?: string;
|
|
32
|
-
visible?: boolean;
|
|
33
|
-
expanded?: boolean;
|
|
34
|
-
}>;
|
|
35
|
-
isDragging: boolean;
|
|
36
|
-
viewports: {
|
|
37
|
-
current: {
|
|
38
|
-
width: number;
|
|
39
|
-
height: number | "auto";
|
|
40
|
-
};
|
|
41
|
-
controlsVisible: boolean;
|
|
42
|
-
options: Viewport[];
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
|
|
46
8
|
type FieldOption = {
|
|
47
9
|
label: string;
|
|
48
10
|
value: string | number | boolean;
|
|
@@ -157,6 +119,36 @@ type FieldProps<ValueType = any, F = Field<any>> = {
|
|
|
157
119
|
readOnly?: boolean;
|
|
158
120
|
};
|
|
159
121
|
|
|
122
|
+
type ItemWithId = {
|
|
123
|
+
_arrayId: string;
|
|
124
|
+
_originalIndex: number;
|
|
125
|
+
};
|
|
126
|
+
type ArrayState = {
|
|
127
|
+
items: ItemWithId[];
|
|
128
|
+
openId: string;
|
|
129
|
+
};
|
|
130
|
+
type UiState = {
|
|
131
|
+
leftSideBarVisible: boolean;
|
|
132
|
+
rightSideBarVisible: boolean;
|
|
133
|
+
itemSelector: ItemSelector | null;
|
|
134
|
+
arrayState: Record<string, ArrayState | undefined>;
|
|
135
|
+
componentList: Record<string, {
|
|
136
|
+
components?: string[];
|
|
137
|
+
title?: string;
|
|
138
|
+
visible?: boolean;
|
|
139
|
+
expanded?: boolean;
|
|
140
|
+
}>;
|
|
141
|
+
isDragging: boolean;
|
|
142
|
+
viewports: {
|
|
143
|
+
current: {
|
|
144
|
+
width: number;
|
|
145
|
+
height: number | "auto";
|
|
146
|
+
};
|
|
147
|
+
controlsVisible: boolean;
|
|
148
|
+
options: Viewport[];
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
|
|
160
152
|
type RenderFunc<Props extends {
|
|
161
153
|
[key: string]: any;
|
|
162
154
|
} = {
|
|
@@ -220,6 +212,14 @@ type FieldRenderFunctions = Omit<{
|
|
|
220
212
|
}>;
|
|
221
213
|
};
|
|
222
214
|
|
|
215
|
+
type iconTypes = "Smartphone" | "Monitor" | "Tablet";
|
|
216
|
+
type Viewport = {
|
|
217
|
+
width: number;
|
|
218
|
+
height?: number | "auto";
|
|
219
|
+
label?: string;
|
|
220
|
+
icon?: iconTypes | ReactNode;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
223
|
type Plugin = {
|
|
224
224
|
overrides: Partial<Overrides>;
|
|
225
225
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -1,48 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ReactElement, ReactNode } 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
|
-
|
|
16
|
-
type ItemWithId = {
|
|
17
|
-
_arrayId: string;
|
|
18
|
-
_originalIndex: number;
|
|
19
|
-
};
|
|
20
|
-
type ArrayState = {
|
|
21
|
-
items: ItemWithId[];
|
|
22
|
-
openId: string;
|
|
23
|
-
};
|
|
24
|
-
type UiState = {
|
|
25
|
-
leftSideBarVisible: boolean;
|
|
26
|
-
rightSideBarVisible: boolean;
|
|
27
|
-
itemSelector: ItemSelector | null;
|
|
28
|
-
arrayState: Record<string, ArrayState | undefined>;
|
|
29
|
-
componentList: Record<string, {
|
|
30
|
-
components?: string[];
|
|
31
|
-
title?: string;
|
|
32
|
-
visible?: boolean;
|
|
33
|
-
expanded?: boolean;
|
|
34
|
-
}>;
|
|
35
|
-
isDragging: boolean;
|
|
36
|
-
viewports: {
|
|
37
|
-
current: {
|
|
38
|
-
width: number;
|
|
39
|
-
height: number | "auto";
|
|
40
|
-
};
|
|
41
|
-
controlsVisible: boolean;
|
|
42
|
-
options: Viewport[];
|
|
43
|
-
};
|
|
44
|
-
};
|
|
45
|
-
|
|
46
8
|
type FieldOption = {
|
|
47
9
|
label: string;
|
|
48
10
|
value: string | number | boolean;
|
|
@@ -157,6 +119,36 @@ type FieldProps<ValueType = any, F = Field<any>> = {
|
|
|
157
119
|
readOnly?: boolean;
|
|
158
120
|
};
|
|
159
121
|
|
|
122
|
+
type ItemWithId = {
|
|
123
|
+
_arrayId: string;
|
|
124
|
+
_originalIndex: number;
|
|
125
|
+
};
|
|
126
|
+
type ArrayState = {
|
|
127
|
+
items: ItemWithId[];
|
|
128
|
+
openId: string;
|
|
129
|
+
};
|
|
130
|
+
type UiState = {
|
|
131
|
+
leftSideBarVisible: boolean;
|
|
132
|
+
rightSideBarVisible: boolean;
|
|
133
|
+
itemSelector: ItemSelector | null;
|
|
134
|
+
arrayState: Record<string, ArrayState | undefined>;
|
|
135
|
+
componentList: Record<string, {
|
|
136
|
+
components?: string[];
|
|
137
|
+
title?: string;
|
|
138
|
+
visible?: boolean;
|
|
139
|
+
expanded?: boolean;
|
|
140
|
+
}>;
|
|
141
|
+
isDragging: boolean;
|
|
142
|
+
viewports: {
|
|
143
|
+
current: {
|
|
144
|
+
width: number;
|
|
145
|
+
height: number | "auto";
|
|
146
|
+
};
|
|
147
|
+
controlsVisible: boolean;
|
|
148
|
+
options: Viewport[];
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
|
|
160
152
|
type RenderFunc<Props extends {
|
|
161
153
|
[key: string]: any;
|
|
162
154
|
} = {
|
|
@@ -220,6 +212,14 @@ type FieldRenderFunctions = Omit<{
|
|
|
220
212
|
}>;
|
|
221
213
|
};
|
|
222
214
|
|
|
215
|
+
type iconTypes = "Smartphone" | "Monitor" | "Tablet";
|
|
216
|
+
type Viewport = {
|
|
217
|
+
width: number;
|
|
218
|
+
height?: number | "auto";
|
|
219
|
+
label?: string;
|
|
220
|
+
icon?: iconTypes | ReactNode;
|
|
221
|
+
};
|
|
222
|
+
|
|
223
223
|
type Plugin = {
|
|
224
224
|
overrides: Partial<Overrides>;
|
|
225
225
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@measured/puck-plugin-emotion-cache",
|
|
3
|
-
"version": "0.16.0-canary.
|
|
3
|
+
"version": "0.16.0-canary.88c5ab6",
|
|
4
4
|
"author": "Measured Corporation Ltd <hello@measured.co>",
|
|
5
5
|
"repository": "measuredco/puck",
|
|
6
6
|
"bugs": "https://github.com/measuredco/puck/issues",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
],
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@emotion/react": "^11.13.3",
|
|
26
|
-
"@measured/puck": "^0.16.0-canary.
|
|
26
|
+
"@measured/puck": "^0.16.0-canary.88c5ab6",
|
|
27
27
|
"@types/react": "^18.2.0",
|
|
28
28
|
"@types/react-dom": "^18.2.0",
|
|
29
29
|
"eslint": "^7.32.0",
|