@openreplay/tracker 10.0.3 → 11.0.0
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/CHANGELOG.md +3 -1
- package/bun.lockb +0 -0
- package/cjs/app/canvas.d.ts +20 -0
- package/cjs/app/canvas.js +107 -0
- package/cjs/app/guards.d.ts +1 -0
- package/cjs/app/index.d.ts +3 -0
- package/cjs/app/index.js +36 -6
- package/cjs/app/messages.gen.d.ts +1 -0
- package/cjs/app/messages.gen.js +9 -1
- package/cjs/common/messages.gen.d.ts +8 -2
- package/cjs/index.js +1 -1
- package/cjs/modules/Network/fetchProxy.d.ts +1 -1
- package/cjs/modules/Network/fetchProxy.js +1 -1
- package/cjs/modules/userTesting/dnd.d.ts +1 -0
- package/cjs/modules/userTesting/dnd.js +40 -0
- package/cjs/modules/userTesting/index.d.ts +45 -0
- package/cjs/modules/userTesting/index.js +476 -0
- package/cjs/modules/userTesting/recorder.d.ts +24 -0
- package/cjs/modules/userTesting/recorder.js +119 -0
- package/cjs/modules/userTesting/styles.d.ts +260 -0
- package/cjs/modules/userTesting/styles.js +229 -0
- package/lib/app/canvas.d.ts +20 -0
- package/lib/app/canvas.js +105 -0
- package/lib/app/guards.d.ts +1 -0
- package/lib/app/index.d.ts +3 -0
- package/lib/app/index.js +36 -6
- package/lib/app/messages.gen.d.ts +1 -0
- package/lib/app/messages.gen.js +7 -0
- package/lib/common/messages.gen.d.ts +8 -2
- package/lib/common/tsconfig.tsbuildinfo +1 -1
- package/lib/index.js +1 -1
- package/lib/modules/Network/fetchProxy.d.ts +1 -1
- package/lib/modules/Network/fetchProxy.js +1 -1
- package/lib/modules/userTesting/dnd.d.ts +1 -0
- package/lib/modules/userTesting/dnd.js +37 -0
- package/lib/modules/userTesting/index.d.ts +45 -0
- package/lib/modules/userTesting/index.js +473 -0
- package/lib/modules/userTesting/recorder.d.ts +24 -0
- package/lib/modules/userTesting/recorder.js +115 -0
- package/lib/modules/userTesting/styles.d.ts +260 -0
- package/lib/modules/userTesting/styles.js +226 -0
- package/package.json +4 -3
|
@@ -0,0 +1,260 @@
|
|
|
1
|
+
export declare const bgStyle: {
|
|
2
|
+
position: string;
|
|
3
|
+
top: number;
|
|
4
|
+
left: number;
|
|
5
|
+
width: string;
|
|
6
|
+
height: string;
|
|
7
|
+
background: string;
|
|
8
|
+
display: string;
|
|
9
|
+
alignItems: string;
|
|
10
|
+
justifyContent: string;
|
|
11
|
+
zIndex: number;
|
|
12
|
+
};
|
|
13
|
+
export declare const containerStyle: {
|
|
14
|
+
display: string;
|
|
15
|
+
flexDirection: string;
|
|
16
|
+
gap: string;
|
|
17
|
+
alignItems: string;
|
|
18
|
+
padding: string;
|
|
19
|
+
borderRadius: string;
|
|
20
|
+
border: string;
|
|
21
|
+
background: string;
|
|
22
|
+
width: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const containerWidgetStyle: {
|
|
25
|
+
display: string;
|
|
26
|
+
'flex-direction': string;
|
|
27
|
+
gap: string;
|
|
28
|
+
'align-items': string;
|
|
29
|
+
padding: string;
|
|
30
|
+
'border-radius': string;
|
|
31
|
+
border: string;
|
|
32
|
+
background: string;
|
|
33
|
+
width: string;
|
|
34
|
+
};
|
|
35
|
+
export declare const titleStyle: {
|
|
36
|
+
fontFamily: string;
|
|
37
|
+
fontSize: string;
|
|
38
|
+
fontStyle: string;
|
|
39
|
+
fontWeight: string;
|
|
40
|
+
lineHeight: string;
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
43
|
+
export declare const descriptionStyle: {
|
|
44
|
+
borderTop: string;
|
|
45
|
+
borderBottom: string;
|
|
46
|
+
padding: string;
|
|
47
|
+
color: string;
|
|
48
|
+
fontFamily: string;
|
|
49
|
+
fontSize: string;
|
|
50
|
+
fontStyle: string;
|
|
51
|
+
fontWeight: string;
|
|
52
|
+
lineHeight: string;
|
|
53
|
+
};
|
|
54
|
+
export declare const noticeStyle: {
|
|
55
|
+
color: string;
|
|
56
|
+
fontFamily: string;
|
|
57
|
+
fontSize: string;
|
|
58
|
+
fontStyle: string;
|
|
59
|
+
fontWeight: string;
|
|
60
|
+
lineHeight: string;
|
|
61
|
+
};
|
|
62
|
+
export declare const buttonStyle: {
|
|
63
|
+
display: string;
|
|
64
|
+
padding: string;
|
|
65
|
+
justifyContent: string;
|
|
66
|
+
alignItems: string;
|
|
67
|
+
gap: string;
|
|
68
|
+
borderRadius: string;
|
|
69
|
+
border: string;
|
|
70
|
+
background: string;
|
|
71
|
+
boxShadow: string;
|
|
72
|
+
color: string;
|
|
73
|
+
textAlign: string;
|
|
74
|
+
fontFamily: string;
|
|
75
|
+
fontSize: string;
|
|
76
|
+
fontStyle: string;
|
|
77
|
+
fontWeight: string;
|
|
78
|
+
lineHeight: string;
|
|
79
|
+
cursor: string;
|
|
80
|
+
};
|
|
81
|
+
export declare const sectionTitleStyle: {
|
|
82
|
+
fontFamily: string;
|
|
83
|
+
fontSize: string;
|
|
84
|
+
fontWeight: string;
|
|
85
|
+
lineHeight: string;
|
|
86
|
+
display: string;
|
|
87
|
+
justifyContent: string;
|
|
88
|
+
width: string;
|
|
89
|
+
cursor: string;
|
|
90
|
+
};
|
|
91
|
+
export declare const contentStyle: {
|
|
92
|
+
display: string;
|
|
93
|
+
flexDirection: string;
|
|
94
|
+
alignItems: string;
|
|
95
|
+
gap: string;
|
|
96
|
+
};
|
|
97
|
+
export declare const titleWidgetStyle: {
|
|
98
|
+
padding: string;
|
|
99
|
+
gap: string;
|
|
100
|
+
fontFamily: string;
|
|
101
|
+
fontSize: string;
|
|
102
|
+
fontStyle: string;
|
|
103
|
+
fontWeight: string;
|
|
104
|
+
lineHeight: string;
|
|
105
|
+
color: string;
|
|
106
|
+
display: string;
|
|
107
|
+
alignItems: string;
|
|
108
|
+
width: string;
|
|
109
|
+
borderRadius: string;
|
|
110
|
+
background: string;
|
|
111
|
+
boxSizing: string;
|
|
112
|
+
};
|
|
113
|
+
export declare const descriptionWidgetStyle: {
|
|
114
|
+
boxSizing: string;
|
|
115
|
+
display: string;
|
|
116
|
+
width: string;
|
|
117
|
+
borderRadius: string;
|
|
118
|
+
border: string;
|
|
119
|
+
background: string;
|
|
120
|
+
padding: string;
|
|
121
|
+
alignSelf: string;
|
|
122
|
+
color: string;
|
|
123
|
+
fontFamily: string;
|
|
124
|
+
fontSize: string;
|
|
125
|
+
fontStyle: string;
|
|
126
|
+
fontWeight: string;
|
|
127
|
+
lineHeight: string;
|
|
128
|
+
};
|
|
129
|
+
export declare const endSectionStyle: {
|
|
130
|
+
display: string;
|
|
131
|
+
flexDirection: string;
|
|
132
|
+
alignItems: string;
|
|
133
|
+
gap: string;
|
|
134
|
+
boxSizing: string;
|
|
135
|
+
width: string;
|
|
136
|
+
borderRadius: string;
|
|
137
|
+
border: string;
|
|
138
|
+
background: string;
|
|
139
|
+
padding: string;
|
|
140
|
+
alignSelf: string;
|
|
141
|
+
color: string;
|
|
142
|
+
fontFamily: string;
|
|
143
|
+
fontSize: string;
|
|
144
|
+
fontStyle: string;
|
|
145
|
+
fontWeight: string;
|
|
146
|
+
lineHeight: string;
|
|
147
|
+
};
|
|
148
|
+
export declare const symbolIcon: {
|
|
149
|
+
fontSize: string;
|
|
150
|
+
fontWeight: string;
|
|
151
|
+
cursor: string;
|
|
152
|
+
color: string;
|
|
153
|
+
};
|
|
154
|
+
export declare const buttonWidgetStyle: {
|
|
155
|
+
display: string;
|
|
156
|
+
padding: string;
|
|
157
|
+
justifyContent: string;
|
|
158
|
+
alignItems: string;
|
|
159
|
+
gap: string;
|
|
160
|
+
borderRadius: string;
|
|
161
|
+
border: string;
|
|
162
|
+
background: string;
|
|
163
|
+
boxShadow: string;
|
|
164
|
+
color: string;
|
|
165
|
+
textAlign: string;
|
|
166
|
+
fontFamily: string;
|
|
167
|
+
fontSize: string;
|
|
168
|
+
fontStyle: string;
|
|
169
|
+
fontWeight: string;
|
|
170
|
+
lineHeight: string;
|
|
171
|
+
width: string;
|
|
172
|
+
boxSizing: string;
|
|
173
|
+
cursor: string;
|
|
174
|
+
};
|
|
175
|
+
export declare const stopWidgetStyle: {
|
|
176
|
+
marginTop: string;
|
|
177
|
+
cursor: string;
|
|
178
|
+
display: string;
|
|
179
|
+
fontWeight: string;
|
|
180
|
+
};
|
|
181
|
+
export declare const paginationStyle: {
|
|
182
|
+
display: string;
|
|
183
|
+
justifyContent: string;
|
|
184
|
+
alignItems: string;
|
|
185
|
+
gap: string;
|
|
186
|
+
padding: string;
|
|
187
|
+
width: string;
|
|
188
|
+
boxSizing: string;
|
|
189
|
+
};
|
|
190
|
+
export declare const taskNumberActive: {
|
|
191
|
+
display: string;
|
|
192
|
+
padding: string;
|
|
193
|
+
flexDirection: string;
|
|
194
|
+
alignItems: string;
|
|
195
|
+
borderRadius: string;
|
|
196
|
+
outline: string;
|
|
197
|
+
};
|
|
198
|
+
export declare const taskNumberDone: {
|
|
199
|
+
display: string;
|
|
200
|
+
padding: string;
|
|
201
|
+
flexDirection: string;
|
|
202
|
+
alignItems: string;
|
|
203
|
+
borderRadius: string;
|
|
204
|
+
outline: string;
|
|
205
|
+
boxShadow: string;
|
|
206
|
+
background: string;
|
|
207
|
+
};
|
|
208
|
+
export declare const taskDescriptionCard: {
|
|
209
|
+
borderRadius: string;
|
|
210
|
+
border: string;
|
|
211
|
+
background: string;
|
|
212
|
+
boxShadow: string;
|
|
213
|
+
display: string;
|
|
214
|
+
flexDirection: string;
|
|
215
|
+
padding: string;
|
|
216
|
+
gap: string;
|
|
217
|
+
alignSelf: string;
|
|
218
|
+
};
|
|
219
|
+
export declare const taskTextStyle: {
|
|
220
|
+
fontWeight: string;
|
|
221
|
+
};
|
|
222
|
+
export declare const taskDescriptionStyle: {
|
|
223
|
+
color: string;
|
|
224
|
+
};
|
|
225
|
+
export declare const taskButtonStyle: {
|
|
226
|
+
marginRight: string;
|
|
227
|
+
cursor: string;
|
|
228
|
+
color: string;
|
|
229
|
+
textAlign: string;
|
|
230
|
+
fontFamily: string;
|
|
231
|
+
fontSize: string;
|
|
232
|
+
fontStyle: string;
|
|
233
|
+
fontWeight: string;
|
|
234
|
+
lineHeight: string;
|
|
235
|
+
};
|
|
236
|
+
export declare const taskButtonBorderedStyle: {
|
|
237
|
+
display: string;
|
|
238
|
+
padding: string;
|
|
239
|
+
justifyContent: string;
|
|
240
|
+
alignItems: string;
|
|
241
|
+
gap: string;
|
|
242
|
+
borderRadius: string;
|
|
243
|
+
border: string;
|
|
244
|
+
marginRight: string;
|
|
245
|
+
cursor: string;
|
|
246
|
+
color: string;
|
|
247
|
+
textAlign: string;
|
|
248
|
+
fontFamily: string;
|
|
249
|
+
fontSize: string;
|
|
250
|
+
fontStyle: string;
|
|
251
|
+
fontWeight: string;
|
|
252
|
+
lineHeight: string;
|
|
253
|
+
};
|
|
254
|
+
export declare const taskButtonsRow: {
|
|
255
|
+
display: string;
|
|
256
|
+
justifyContent: string;
|
|
257
|
+
alignItems: string;
|
|
258
|
+
width: string;
|
|
259
|
+
boxSizing: string;
|
|
260
|
+
};
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
export const bgStyle = {
|
|
2
|
+
position: 'fixed',
|
|
3
|
+
top: 0,
|
|
4
|
+
left: 0,
|
|
5
|
+
width: '100vw',
|
|
6
|
+
height: '100vh',
|
|
7
|
+
background: 'rgba(0, 0, 0, 0.40)',
|
|
8
|
+
display: 'flex',
|
|
9
|
+
alignItems: 'center',
|
|
10
|
+
justifyContent: 'center',
|
|
11
|
+
zIndex: 999999,
|
|
12
|
+
};
|
|
13
|
+
export const containerStyle = {
|
|
14
|
+
display: 'flex',
|
|
15
|
+
flexDirection: 'column',
|
|
16
|
+
gap: '8px',
|
|
17
|
+
alignItems: 'center',
|
|
18
|
+
padding: '1.5rem',
|
|
19
|
+
borderRadius: '0.375rem',
|
|
20
|
+
border: '1px solid #D9D9D9',
|
|
21
|
+
background: '#FFF',
|
|
22
|
+
width: '29rem',
|
|
23
|
+
};
|
|
24
|
+
export const containerWidgetStyle = {
|
|
25
|
+
display: 'flex',
|
|
26
|
+
'flex-direction': 'column',
|
|
27
|
+
gap: '8px',
|
|
28
|
+
'align-items': 'center',
|
|
29
|
+
padding: '1rem',
|
|
30
|
+
'border-radius': '0.375rem',
|
|
31
|
+
border: '1px solid #D9D9D9',
|
|
32
|
+
background: '#FFF',
|
|
33
|
+
width: '29rem',
|
|
34
|
+
};
|
|
35
|
+
export const titleStyle = {
|
|
36
|
+
fontFamily: 'Verdana, sans-serif',
|
|
37
|
+
fontSize: '1.25rem',
|
|
38
|
+
fontStyle: 'normal',
|
|
39
|
+
fontWeight: '500',
|
|
40
|
+
lineHeight: '1.75rem',
|
|
41
|
+
color: 'rgba(0, 0, 0, 0.85)',
|
|
42
|
+
};
|
|
43
|
+
export const descriptionStyle = {
|
|
44
|
+
borderTop: '1px solid rgba(0, 0, 0, 0.06)',
|
|
45
|
+
borderBottom: '1px solid rgba(0, 0, 0, 0.06)',
|
|
46
|
+
padding: '1.25rem 0rem',
|
|
47
|
+
color: 'rgba(0, 0, 0, 0.85)',
|
|
48
|
+
fontFamily: 'Verdana, sans-serif',
|
|
49
|
+
fontSize: '1rem',
|
|
50
|
+
fontStyle: 'normal',
|
|
51
|
+
fontWeight: '400',
|
|
52
|
+
lineHeight: '1.5rem',
|
|
53
|
+
};
|
|
54
|
+
export const noticeStyle = {
|
|
55
|
+
color: 'rgba(0, 0, 0, 0.85)',
|
|
56
|
+
fontFamily: 'Verdana, sans-serif',
|
|
57
|
+
fontSize: '0.875rem',
|
|
58
|
+
fontStyle: 'normal',
|
|
59
|
+
fontWeight: '400',
|
|
60
|
+
lineHeight: '1.375rem',
|
|
61
|
+
};
|
|
62
|
+
export const buttonStyle = {
|
|
63
|
+
display: 'flex',
|
|
64
|
+
padding: '0.4rem 0.9375rem',
|
|
65
|
+
justifyContent: 'center',
|
|
66
|
+
alignItems: 'center',
|
|
67
|
+
gap: '0.625rem',
|
|
68
|
+
borderRadius: '0.25rem',
|
|
69
|
+
border: '1px solid #394EFF',
|
|
70
|
+
background: '#394EFF',
|
|
71
|
+
boxShadow: '0px 2px 0px 0px rgba(0, 0, 0, 0.04)',
|
|
72
|
+
color: '#FFF',
|
|
73
|
+
textAlign: 'center',
|
|
74
|
+
fontFamily: 'Verdana, sans-serif',
|
|
75
|
+
fontSize: '1rem',
|
|
76
|
+
fontStyle: 'normal',
|
|
77
|
+
fontWeight: '500',
|
|
78
|
+
lineHeight: '1.5rem',
|
|
79
|
+
cursor: 'pointer',
|
|
80
|
+
};
|
|
81
|
+
export const sectionTitleStyle = {
|
|
82
|
+
fontFamily: 'Verdana, sans-serif',
|
|
83
|
+
fontSize: '0.875rem',
|
|
84
|
+
fontWeight: '500',
|
|
85
|
+
lineHeight: '1.375rem',
|
|
86
|
+
display: 'flex',
|
|
87
|
+
justifyContent: 'space-between',
|
|
88
|
+
width: '100%',
|
|
89
|
+
cursor: 'pointer',
|
|
90
|
+
};
|
|
91
|
+
export const contentStyle = {
|
|
92
|
+
display: 'flex',
|
|
93
|
+
flexDirection: 'column',
|
|
94
|
+
alignItems: 'flex-start',
|
|
95
|
+
gap: '0.625rem',
|
|
96
|
+
};
|
|
97
|
+
// New widget styles
|
|
98
|
+
export const titleWidgetStyle = {
|
|
99
|
+
padding: '0.5rem',
|
|
100
|
+
gap: '0.5rem',
|
|
101
|
+
fontFamily: 'Verdana, sans-serif',
|
|
102
|
+
fontSize: '1.25rem',
|
|
103
|
+
fontStyle: 'normal',
|
|
104
|
+
fontWeight: '500',
|
|
105
|
+
lineHeight: '1.75rem',
|
|
106
|
+
color: 'white',
|
|
107
|
+
display: 'flex',
|
|
108
|
+
alignItems: 'center',
|
|
109
|
+
width: '100%',
|
|
110
|
+
borderRadius: '0.375rem',
|
|
111
|
+
background: 'rgba(0, 0, 0, 0.60)',
|
|
112
|
+
boxSizing: 'border-box',
|
|
113
|
+
};
|
|
114
|
+
export const descriptionWidgetStyle = {
|
|
115
|
+
boxSizing: 'border-box',
|
|
116
|
+
display: 'block',
|
|
117
|
+
width: '100%',
|
|
118
|
+
borderRadius: '0.375rem',
|
|
119
|
+
border: '1px solid #D9D9D9',
|
|
120
|
+
background: '#FFF',
|
|
121
|
+
padding: '0.625rem 1rem',
|
|
122
|
+
alignSelf: 'stretch',
|
|
123
|
+
color: '#000',
|
|
124
|
+
fontFamily: 'Verdana, sans-serif',
|
|
125
|
+
fontSize: '0.875rem',
|
|
126
|
+
fontStyle: 'normal',
|
|
127
|
+
fontWeight: '400',
|
|
128
|
+
lineHeight: '1.375rem',
|
|
129
|
+
};
|
|
130
|
+
export const endSectionStyle = Object.assign(Object.assign({}, descriptionWidgetStyle), { display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '0.625rem' });
|
|
131
|
+
export const symbolIcon = {
|
|
132
|
+
fontSize: '1.25rem',
|
|
133
|
+
fontWeight: '500',
|
|
134
|
+
cursor: 'pointer',
|
|
135
|
+
color: '#394EFF',
|
|
136
|
+
};
|
|
137
|
+
export const buttonWidgetStyle = {
|
|
138
|
+
display: 'flex',
|
|
139
|
+
padding: '0.4rem 0.9375rem',
|
|
140
|
+
justifyContent: 'center',
|
|
141
|
+
alignItems: 'center',
|
|
142
|
+
gap: '0.625rem',
|
|
143
|
+
borderRadius: '0.25rem',
|
|
144
|
+
border: '1px solid #394EFF',
|
|
145
|
+
background: '#394EFF',
|
|
146
|
+
boxShadow: '0px 2px 0px 0px rgba(0, 0, 0, 0.04)',
|
|
147
|
+
color: '#FFF',
|
|
148
|
+
textAlign: 'center',
|
|
149
|
+
fontFamily: 'Verdana, sans-serif',
|
|
150
|
+
fontSize: '1rem',
|
|
151
|
+
fontStyle: 'normal',
|
|
152
|
+
fontWeight: '500',
|
|
153
|
+
lineHeight: '1.5rem',
|
|
154
|
+
width: '100%',
|
|
155
|
+
boxSizing: 'border-box',
|
|
156
|
+
cursor: 'pointer',
|
|
157
|
+
};
|
|
158
|
+
export const stopWidgetStyle = {
|
|
159
|
+
marginTop: '2rem',
|
|
160
|
+
cursor: 'pointer',
|
|
161
|
+
display: 'block',
|
|
162
|
+
fontWeight: '600',
|
|
163
|
+
};
|
|
164
|
+
export const paginationStyle = {
|
|
165
|
+
display: 'flex',
|
|
166
|
+
justifyContent: 'space-between',
|
|
167
|
+
alignItems: 'center',
|
|
168
|
+
gap: '1rem',
|
|
169
|
+
padding: '0.5rem',
|
|
170
|
+
width: '100%',
|
|
171
|
+
boxSizing: 'border-box',
|
|
172
|
+
};
|
|
173
|
+
export const taskNumberActive = {
|
|
174
|
+
display: 'flex',
|
|
175
|
+
padding: '0.0625rem 0.5rem',
|
|
176
|
+
flexDirection: 'column',
|
|
177
|
+
alignItems: 'center',
|
|
178
|
+
borderRadius: '6.25em',
|
|
179
|
+
outline: '1px solid #394EFF',
|
|
180
|
+
};
|
|
181
|
+
export const taskNumberDone = {
|
|
182
|
+
display: 'flex',
|
|
183
|
+
padding: '0.0625rem 0.5rem',
|
|
184
|
+
flexDirection: 'column',
|
|
185
|
+
alignItems: 'center',
|
|
186
|
+
borderRadius: '6.25em',
|
|
187
|
+
outline: '1px solid #D2DFFF',
|
|
188
|
+
boxShadow: '0px 2px 0px 0px rgba(0, 0, 0, 0.04)',
|
|
189
|
+
background: '#D2DFFF',
|
|
190
|
+
};
|
|
191
|
+
export const taskDescriptionCard = {
|
|
192
|
+
borderRadius: '0.375rem',
|
|
193
|
+
border: '1px solid rgba(0, 0, 0, 0.06)',
|
|
194
|
+
background: '#F5F7FF',
|
|
195
|
+
boxShadow: '0px 2px 0px 0px rgba(0, 0, 0, 0.04)',
|
|
196
|
+
display: 'flex',
|
|
197
|
+
flexDirection: 'column',
|
|
198
|
+
padding: '0.625rem 0.9375rem',
|
|
199
|
+
gap: '0.5rem',
|
|
200
|
+
alignSelf: 'stretch',
|
|
201
|
+
};
|
|
202
|
+
export const taskTextStyle = {
|
|
203
|
+
fontWeight: 'bold',
|
|
204
|
+
};
|
|
205
|
+
export const taskDescriptionStyle = {
|
|
206
|
+
color: '#8C8C8C',
|
|
207
|
+
};
|
|
208
|
+
export const taskButtonStyle = {
|
|
209
|
+
marginRight: '0.5rem',
|
|
210
|
+
cursor: 'pointer',
|
|
211
|
+
color: '#394EFF',
|
|
212
|
+
textAlign: 'center',
|
|
213
|
+
fontFamily: 'Verdana, sans-serif',
|
|
214
|
+
fontSize: '0.875rem',
|
|
215
|
+
fontStyle: 'normal',
|
|
216
|
+
fontWeight: '500',
|
|
217
|
+
lineHeight: '1.375rem',
|
|
218
|
+
};
|
|
219
|
+
export const taskButtonBorderedStyle = Object.assign(Object.assign({}, taskButtonStyle), { display: 'flex', padding: '0.25rem 0.9375rem', justifyContent: 'center', alignItems: 'center', gap: '0.5rem', borderRadius: '0.25rem', border: '1px solid #394EFF' });
|
|
220
|
+
export const taskButtonsRow = {
|
|
221
|
+
display: 'flex',
|
|
222
|
+
justifyContent: 'space-between',
|
|
223
|
+
alignItems: 'center',
|
|
224
|
+
width: '100%',
|
|
225
|
+
boxSizing: 'border-box',
|
|
226
|
+
};
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openreplay/tracker",
|
|
3
3
|
"description": "The OpenReplay tracker main package",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "11.0.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"logging",
|
|
7
7
|
"replay"
|
|
8
8
|
],
|
|
9
9
|
"author": "Alex Tsokurov",
|
|
10
10
|
"contributors": [
|
|
11
|
-
"Aleksandr K <alex@openreplay.com>"
|
|
11
|
+
"Aleksandr K <alex@openreplay.com>",
|
|
12
|
+
"Nikita D <nikita@openreplay.com>"
|
|
12
13
|
],
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"type": "module",
|
|
@@ -25,7 +26,7 @@
|
|
|
25
26
|
"test": "jest --coverage=false",
|
|
26
27
|
"test:ci": "jest --coverage=true",
|
|
27
28
|
"postversion": "bun run build",
|
|
28
|
-
"prepublishOnly": "bun run build"
|
|
29
|
+
"prepublishOnly": "bun run test && bun run build"
|
|
29
30
|
},
|
|
30
31
|
"devDependencies": {
|
|
31
32
|
"@babel/core": "^7.10.2",
|