@puckeditor/plugin-ai 0.1.0-canary.b477dbbe → 0.1.0-canary.bde85814
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.css +747 -318
- package/dist/index.d.mts +25 -107
- package/dist/index.d.ts +25 -107
- package/dist/index.js +463 -20972
- package/dist/index.mjs +488 -21001
- package/package.json +8 -8
package/dist/index.css
CHANGED
|
@@ -1,68 +1,3 @@
|
|
|
1
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/Chat/styles.module.css/#css-module-data */
|
|
2
|
-
._Chat_1mv7h_1 {
|
|
3
|
-
background: white;
|
|
4
|
-
height: 100%;
|
|
5
|
-
display: flex;
|
|
6
|
-
flex-direction: column;
|
|
7
|
-
}
|
|
8
|
-
._Chat-header_1mv7h_8 {
|
|
9
|
-
display: block;
|
|
10
|
-
padding: 8px 16px;
|
|
11
|
-
font-weight: 600;
|
|
12
|
-
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
13
|
-
}
|
|
14
|
-
@media (min-width: 638px) {
|
|
15
|
-
._Chat-header_1mv7h_8 {
|
|
16
|
-
display: block;
|
|
17
|
-
padding: 16px;
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
._Chat-placeholder_1mv7h_22 {
|
|
21
|
-
align-items: center;
|
|
22
|
-
color: var(--puck-color-grey-06);
|
|
23
|
-
display: none;
|
|
24
|
-
justify-content: center;
|
|
25
|
-
flex-direction: column;
|
|
26
|
-
height: 100%;
|
|
27
|
-
text-align: center;
|
|
28
|
-
padding: 32px;
|
|
29
|
-
gap: 8px;
|
|
30
|
-
}
|
|
31
|
-
@media (min-width: 638px) {
|
|
32
|
-
._Chat-placeholder_1mv7h_22 {
|
|
33
|
-
display: flex;
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
._Chat-actions_1mv7h_40 {
|
|
37
|
-
display: flex;
|
|
38
|
-
gap: 8px;
|
|
39
|
-
justify-content: center;
|
|
40
|
-
flex-wrap: wrap;
|
|
41
|
-
margin-top: 4px;
|
|
42
|
-
}
|
|
43
|
-
._Chat-action_1mv7h_40,
|
|
44
|
-
._Chat-actionOutlined_1mv7h_49 {
|
|
45
|
-
border: 1px solid var(--puck-color-azure-04);
|
|
46
|
-
border-radius: 16px;
|
|
47
|
-
padding: 4px 12px;
|
|
48
|
-
font-size: 12px;
|
|
49
|
-
cursor: pointer;
|
|
50
|
-
}
|
|
51
|
-
._Chat-action_1mv7h_40 {
|
|
52
|
-
background: var(--puck-color-azure-04);
|
|
53
|
-
color: white;
|
|
54
|
-
}
|
|
55
|
-
._Chat-action_1mv7h_40:hover {
|
|
56
|
-
opacity: 0.8;
|
|
57
|
-
}
|
|
58
|
-
._Chat-actionOutlined_1mv7h_49 {
|
|
59
|
-
background: transparent;
|
|
60
|
-
color: var(--puck-color-azure-04);
|
|
61
|
-
}
|
|
62
|
-
._Chat-actionOutlined_1mv7h_49:hover {
|
|
63
|
-
background: var(--puck-color-azure-11);
|
|
64
|
-
}
|
|
65
|
-
|
|
66
1
|
/* ../platform-client/styles/color.css */
|
|
67
2
|
:root {
|
|
68
3
|
--puck-color-rose-01: #4a001c;
|
|
@@ -234,7 +169,7 @@ p {
|
|
|
234
169
|
}
|
|
235
170
|
|
|
236
171
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Modal/Modal.module.css/#css-module-data */
|
|
237
|
-
._Modal-
|
|
172
|
+
._Modal-background_874yi_1 {
|
|
238
173
|
align-items: center;
|
|
239
174
|
display: flex;
|
|
240
175
|
justify-content: center;
|
|
@@ -248,26 +183,24 @@ p {
|
|
|
248
183
|
opacity: 0;
|
|
249
184
|
pointer-events: none;
|
|
250
185
|
}
|
|
251
|
-
._Modal--
|
|
186
|
+
._Modal--visible_874yi_16 ._Modal-background_874yi_1 {
|
|
252
187
|
opacity: 1;
|
|
253
188
|
transition: opacity ease 100ms;
|
|
254
189
|
pointer-events: auto;
|
|
255
190
|
}
|
|
256
|
-
._Modal-
|
|
191
|
+
._Modal-modal_874yi_22 {
|
|
257
192
|
background: white;
|
|
258
|
-
border-radius:
|
|
193
|
+
border-radius: 8px;
|
|
259
194
|
display: block;
|
|
260
|
-
|
|
261
|
-
margin-inline: 24px;
|
|
262
|
-
overflow: auto;
|
|
195
|
+
overflow: hidden;
|
|
263
196
|
}
|
|
264
197
|
|
|
265
198
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Button/Button.module.css/#css-module-data */
|
|
266
|
-
.
|
|
199
|
+
._Button_w2ngt_1 {
|
|
267
200
|
appearance: none;
|
|
268
201
|
background: none;
|
|
269
202
|
border: 1px solid transparent;
|
|
270
|
-
border-radius:
|
|
203
|
+
border-radius: 4px;
|
|
271
204
|
color: var(--puck-color-white);
|
|
272
205
|
display: inline-flex;
|
|
273
206
|
align-items: center;
|
|
@@ -285,80 +218,69 @@ p {
|
|
|
285
218
|
white-space: nowrap;
|
|
286
219
|
margin: 0;
|
|
287
220
|
}
|
|
288
|
-
.
|
|
289
|
-
.
|
|
221
|
+
._Button_w2ngt_1:hover,
|
|
222
|
+
._Button_w2ngt_1:active {
|
|
290
223
|
transition: none;
|
|
291
224
|
}
|
|
292
|
-
._Button--
|
|
225
|
+
._Button--medium_w2ngt_29 {
|
|
293
226
|
min-height: 34px;
|
|
294
227
|
padding-bottom: 7px;
|
|
295
228
|
padding-left: 19px;
|
|
296
229
|
padding-right: 19px;
|
|
297
230
|
padding-top: 7px;
|
|
298
231
|
}
|
|
299
|
-
._Button--
|
|
232
|
+
._Button--large_w2ngt_37 {
|
|
300
233
|
padding-bottom: 11px;
|
|
301
234
|
padding-left: 19px;
|
|
302
235
|
padding-right: 19px;
|
|
303
236
|
padding-top: 11px;
|
|
304
237
|
}
|
|
305
|
-
._Button-
|
|
238
|
+
._Button-icon_w2ngt_44 {
|
|
306
239
|
margin-top: 2px;
|
|
307
240
|
}
|
|
308
|
-
._Button--
|
|
241
|
+
._Button--primary_w2ngt_48 {
|
|
309
242
|
background: var(--puck-color-azure-04);
|
|
310
243
|
}
|
|
311
|
-
.
|
|
244
|
+
._Button_w2ngt_1:focus-visible {
|
|
312
245
|
outline: 2px solid var(--puck-color-azure-05);
|
|
313
246
|
outline-offset: 2px;
|
|
314
247
|
}
|
|
315
248
|
@media (hover: hover) and (pointer: fine) {
|
|
316
|
-
._Button--
|
|
249
|
+
._Button--primary_w2ngt_48:hover {
|
|
317
250
|
background-color: var(--puck-color-azure-03);
|
|
318
251
|
}
|
|
319
252
|
}
|
|
320
|
-
._Button--
|
|
253
|
+
._Button--primary_w2ngt_48:active {
|
|
321
254
|
background-color: var(--puck-color-azure-02);
|
|
322
255
|
}
|
|
323
|
-
._Button--
|
|
256
|
+
._Button--secondary_w2ngt_67 {
|
|
324
257
|
border: 1px solid currentColor;
|
|
325
258
|
color: currentColor;
|
|
326
259
|
}
|
|
327
260
|
@media (hover: hover) and (pointer: fine) {
|
|
328
|
-
._Button--
|
|
261
|
+
._Button--secondary_w2ngt_67:hover {
|
|
329
262
|
background-color: var(--puck-color-azure-12);
|
|
330
263
|
color: var(--puck-color-black);
|
|
331
264
|
}
|
|
332
265
|
}
|
|
333
|
-
._Button--
|
|
266
|
+
._Button--secondary_w2ngt_67:active {
|
|
334
267
|
background-color: var(--puck-color-azure-11);
|
|
335
268
|
color: var(--puck-color-black);
|
|
336
269
|
}
|
|
337
|
-
._Button--
|
|
338
|
-
background: var(--puck-color-red-04);
|
|
339
|
-
}
|
|
340
|
-
@media (hover: hover) and (pointer: fine) {
|
|
341
|
-
._Button--danger_1wyvm_84:hover {
|
|
342
|
-
background-color: var(--puck-color-red-03);
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
._Button--danger_1wyvm_84:active {
|
|
346
|
-
background-color: var(--puck-color-red-02);
|
|
347
|
-
}
|
|
348
|
-
._Button--flush_1wyvm_98 {
|
|
270
|
+
._Button--flush_w2ngt_84 {
|
|
349
271
|
border-radius: 0;
|
|
350
272
|
}
|
|
351
|
-
._Button--
|
|
352
|
-
._Button--
|
|
273
|
+
._Button--disabled_w2ngt_88,
|
|
274
|
+
._Button--disabled_w2ngt_88:hover {
|
|
353
275
|
background-color: var(--puck-color-grey-09);
|
|
354
276
|
color: var(--puck-color-grey-03);
|
|
355
277
|
cursor: not-allowed;
|
|
356
278
|
}
|
|
357
|
-
._Button--
|
|
279
|
+
._Button--fullWidth_w2ngt_95 {
|
|
358
280
|
justify-content: center;
|
|
359
281
|
width: 100%;
|
|
360
282
|
}
|
|
361
|
-
._Button-
|
|
283
|
+
._Button-spinner_w2ngt_100 {
|
|
362
284
|
padding-left: 8px;
|
|
363
285
|
}
|
|
364
286
|
|
|
@@ -385,72 +307,43 @@ p {
|
|
|
385
307
|
}
|
|
386
308
|
|
|
387
309
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Heading/Heading.module.css/#css-module-data */
|
|
388
|
-
.
|
|
310
|
+
._Heading_1czuc_1 {
|
|
389
311
|
display: block;
|
|
390
312
|
font-weight: 700;
|
|
391
313
|
margin: 0;
|
|
392
314
|
}
|
|
393
|
-
.
|
|
315
|
+
._Heading_1czuc_1 b {
|
|
394
316
|
font-weight: 700;
|
|
395
317
|
}
|
|
396
|
-
._Heading--
|
|
318
|
+
._Heading--xxxxl_1czuc_11 {
|
|
319
|
+
font-size: var(--puck-font-size-xxxxl);
|
|
320
|
+
letter-spacing: 0.08ch;
|
|
321
|
+
font-weight: 800;
|
|
322
|
+
}
|
|
323
|
+
._Heading--xxxl_1czuc_17 {
|
|
397
324
|
font-size: var(--puck-font-size-xxxl);
|
|
398
325
|
}
|
|
399
|
-
._Heading--
|
|
326
|
+
._Heading--xxl_1czuc_21 {
|
|
400
327
|
font-size: var(--puck-font-size-xxl);
|
|
401
328
|
}
|
|
402
|
-
._Heading--
|
|
329
|
+
._Heading--xl_1czuc_25 {
|
|
403
330
|
font-size: var(--puck-font-size-xl);
|
|
404
331
|
}
|
|
405
|
-
._Heading--
|
|
332
|
+
._Heading--l_1czuc_29 {
|
|
406
333
|
font-size: var(--puck-font-size-l);
|
|
407
334
|
}
|
|
408
|
-
._Heading--
|
|
335
|
+
._Heading--m_1czuc_33 {
|
|
409
336
|
font-size: var(--puck-font-size-m);
|
|
410
337
|
}
|
|
411
|
-
._Heading--
|
|
338
|
+
._Heading--s_1czuc_37 {
|
|
412
339
|
font-size: var(--puck-font-size-s);
|
|
413
340
|
}
|
|
414
|
-
._Heading--
|
|
341
|
+
._Heading--xs_1czuc_41 {
|
|
415
342
|
font-size: var(--puck-font-size-xs);
|
|
416
343
|
}
|
|
417
|
-
._Heading--
|
|
418
|
-
font-size: var(--puck-font-size-xxs);
|
|
419
|
-
}
|
|
420
|
-
._Heading--xxs_qkzg9_43 {
|
|
344
|
+
._Heading--xxs_1czuc_45 {
|
|
421
345
|
font-size: var(--puck-font-size-xxs);
|
|
422
346
|
}
|
|
423
|
-
@media (min-width: 768px) {
|
|
424
|
-
._Heading--xxxxl_qkzg9_11 {
|
|
425
|
-
font-size: var(--puck-font-size-xxxxl);
|
|
426
|
-
letter-spacing: 0.08ch;
|
|
427
|
-
font-weight: 800;
|
|
428
|
-
}
|
|
429
|
-
._Heading--xxxl_qkzg9_15 {
|
|
430
|
-
font-size: var(--puck-font-size-xxxl);
|
|
431
|
-
}
|
|
432
|
-
._Heading--xxl_qkzg9_19 {
|
|
433
|
-
font-size: var(--puck-font-size-xxl);
|
|
434
|
-
}
|
|
435
|
-
._Heading--xl_qkzg9_23 {
|
|
436
|
-
font-size: var(--puck-font-size-xl);
|
|
437
|
-
}
|
|
438
|
-
._Heading--l_qkzg9_27 {
|
|
439
|
-
font-size: var(--puck-font-size-l);
|
|
440
|
-
}
|
|
441
|
-
._Heading--m_qkzg9_31 {
|
|
442
|
-
font-size: var(--puck-font-size-m);
|
|
443
|
-
}
|
|
444
|
-
._Heading--s_qkzg9_35 {
|
|
445
|
-
font-size: var(--puck-font-size-s);
|
|
446
|
-
}
|
|
447
|
-
._Heading--xs_qkzg9_39 {
|
|
448
|
-
font-size: var(--puck-font-size-xs);
|
|
449
|
-
}
|
|
450
|
-
._Heading--xxs_qkzg9_43 {
|
|
451
|
-
font-size: var(--puck-font-size-xxs);
|
|
452
|
-
}
|
|
453
|
-
}
|
|
454
347
|
|
|
455
348
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Align/Align.module.css/#css-module-data */
|
|
456
349
|
._Align_oewlu_1 {
|
|
@@ -487,6 +380,59 @@ p {
|
|
|
487
380
|
padding: 0px !important;
|
|
488
381
|
}
|
|
489
382
|
|
|
383
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Avatar/Avatar.module.css/#css-module-data */
|
|
384
|
+
._Avatar_meij0_1 {
|
|
385
|
+
align-items: center;
|
|
386
|
+
border-radius: 4px;
|
|
387
|
+
display: flex;
|
|
388
|
+
gap: 16px;
|
|
389
|
+
height: 100%;
|
|
390
|
+
padding: 8px 12px;
|
|
391
|
+
text-decoration: none;
|
|
392
|
+
}
|
|
393
|
+
a._Avatar_meij0_1:hover {
|
|
394
|
+
background-color: var(--puck-color-azure-11);
|
|
395
|
+
}
|
|
396
|
+
a._Avatar--onLightGrey_meij0_15:hover {
|
|
397
|
+
background-color: var(--puck-color-azure-10);
|
|
398
|
+
}
|
|
399
|
+
._Avatar--flush_meij0_19 {
|
|
400
|
+
gap: 8px;
|
|
401
|
+
padding: 0;
|
|
402
|
+
}
|
|
403
|
+
._Avatar-image_meij0_24 {
|
|
404
|
+
align-items: center;
|
|
405
|
+
border-radius: 100%;
|
|
406
|
+
background-color: var(--puck-color-grey-10);
|
|
407
|
+
border: 1px solid var(--puck-color-grey-10);
|
|
408
|
+
color: var(--puck-color-grey-06);
|
|
409
|
+
display: flex;
|
|
410
|
+
justify-content: center;
|
|
411
|
+
font-size: var(--puck-font-size-xxs);
|
|
412
|
+
overflow: hidden;
|
|
413
|
+
}
|
|
414
|
+
._Avatar-image_meij0_24 img {
|
|
415
|
+
width: 100%;
|
|
416
|
+
height: 100%;
|
|
417
|
+
}
|
|
418
|
+
._Avatar-name_meij0_41 {
|
|
419
|
+
color: black;
|
|
420
|
+
font-weight: 600;
|
|
421
|
+
}
|
|
422
|
+
a._Avatar_meij0_1:hover ._Avatar-name_meij0_41 {
|
|
423
|
+
color: var(--puck-color-azure-04);
|
|
424
|
+
}
|
|
425
|
+
._Avatar--smallText_meij0_50 ._Avatar-name_meij0_41 {
|
|
426
|
+
font-size: var(--puck-font-size-xxs);
|
|
427
|
+
}
|
|
428
|
+
._Avatar--inline_meij0_54 {
|
|
429
|
+
align-self: baseline;
|
|
430
|
+
display: inline-flex;
|
|
431
|
+
}
|
|
432
|
+
._Avatar--muted_meij0_59 ._Avatar-name_meij0_41 {
|
|
433
|
+
color: var(--puck-color-grey-06);
|
|
434
|
+
}
|
|
435
|
+
|
|
490
436
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Card/Card.module.css/#css-module-data */
|
|
491
437
|
._Card_jzb6b_1 {
|
|
492
438
|
background-color: white;
|
|
@@ -526,6 +472,100 @@ p {
|
|
|
526
472
|
color: var(--puck-color-azure-04);
|
|
527
473
|
}
|
|
528
474
|
|
|
475
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Footer/styles.module.css/#css-module-data */
|
|
476
|
+
._Footer_eew04_1 {
|
|
477
|
+
background-color: var(--puck-color-grey-11);
|
|
478
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
479
|
+
color: var(--puck-color-grey-01);
|
|
480
|
+
}
|
|
481
|
+
._Footer--dark_eew04_7 {
|
|
482
|
+
background-color: var(--puck-color-grey-02);
|
|
483
|
+
border-top: 1px solid var(--puck-color-grey-03);
|
|
484
|
+
color: var(--puck-color-grey-10);
|
|
485
|
+
}
|
|
486
|
+
._Footer-inner_eew04_13 {
|
|
487
|
+
font-size: var(--puck-font-size-xxs);
|
|
488
|
+
margin-left: auto;
|
|
489
|
+
margin-right: auto;
|
|
490
|
+
max-width: 1440px;
|
|
491
|
+
padding: 32px 24px;
|
|
492
|
+
}
|
|
493
|
+
._Footer-brand_eew04_21 {
|
|
494
|
+
display: flex;
|
|
495
|
+
flex-direction: column;
|
|
496
|
+
}
|
|
497
|
+
._Footer-main_eew04_26 {
|
|
498
|
+
display: flex;
|
|
499
|
+
flex-direction: column;
|
|
500
|
+
gap: 16px;
|
|
501
|
+
margin-bottom: 64px;
|
|
502
|
+
}
|
|
503
|
+
@media (min-width: 768px) {
|
|
504
|
+
._Footer-main_eew04_26 {
|
|
505
|
+
gap: 128px;
|
|
506
|
+
flex-direction: row;
|
|
507
|
+
margin-bottom: 16px;
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
._Footer-logo_eew04_41 {
|
|
511
|
+
flex-grow: 1;
|
|
512
|
+
margin-bottom: 16px;
|
|
513
|
+
}
|
|
514
|
+
._Footer-copyright_eew04_46 {
|
|
515
|
+
color: var(--puck-color-grey-05);
|
|
516
|
+
}
|
|
517
|
+
._Footer--dark_eew04_7 ._Footer-copyright_eew04_46 {
|
|
518
|
+
color: var(--puck-color-grey-08);
|
|
519
|
+
}
|
|
520
|
+
._Footer-sections_eew04_54 {
|
|
521
|
+
display: flex;
|
|
522
|
+
gap: 32px;
|
|
523
|
+
flex-grow: 1;
|
|
524
|
+
flex-direction: column;
|
|
525
|
+
}
|
|
526
|
+
@media (min-width: 768px) {
|
|
527
|
+
._Footer-sections_eew04_54 {
|
|
528
|
+
gap: 16px;
|
|
529
|
+
flex-direction: row;
|
|
530
|
+
}
|
|
531
|
+
}
|
|
532
|
+
._Footer-section_eew04_54 {
|
|
533
|
+
flex-grow: 1;
|
|
534
|
+
}
|
|
535
|
+
._Footer-sectionHeader_eew04_72 {
|
|
536
|
+
margin-bottom: 8px;
|
|
537
|
+
font-weight: 600;
|
|
538
|
+
}
|
|
539
|
+
._Footer-icon_eew04_77 {
|
|
540
|
+
color: var(--puck-color-grey-05);
|
|
541
|
+
width: 16px;
|
|
542
|
+
}
|
|
543
|
+
._Footer--dark_eew04_7 ._Footer-icon_eew04_77 {
|
|
544
|
+
color: var(--puck-color-grey-08);
|
|
545
|
+
}
|
|
546
|
+
._Footer-link_eew04_86 {
|
|
547
|
+
align-items: center;
|
|
548
|
+
display: flex;
|
|
549
|
+
gap: 8px;
|
|
550
|
+
padding-top: 4px;
|
|
551
|
+
padding-bottom: 4px;
|
|
552
|
+
}
|
|
553
|
+
._Footer--dark_eew04_7 ._Footer-link_eew04_86 {
|
|
554
|
+
color: var(--puck-color-grey-08);
|
|
555
|
+
}
|
|
556
|
+
._Footer-link_eew04_86:hover {
|
|
557
|
+
color: var(--puck-color-azure-04);
|
|
558
|
+
}
|
|
559
|
+
._Footer--dark_eew04_7 ._Footer-link_eew04_86:hover {
|
|
560
|
+
color: var(--puck-color-azure-08);
|
|
561
|
+
}
|
|
562
|
+
._Footer-link_eew04_86:hover ._Footer-icon_eew04_77 {
|
|
563
|
+
color: var(--puck-color-azure-05);
|
|
564
|
+
}
|
|
565
|
+
._Footer--dark_eew04_7 ._Footer-link_eew04_86:hover ._Footer-icon_eew04_77 {
|
|
566
|
+
color: var(--puck-color-azure-09);
|
|
567
|
+
}
|
|
568
|
+
|
|
529
569
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/IconButton/IconButton.module.css/#css-module-data */
|
|
530
570
|
._IconButton_thegm_1 {
|
|
531
571
|
align-items: center;
|
|
@@ -634,6 +674,127 @@ p {
|
|
|
634
674
|
flex-grow: 1;
|
|
635
675
|
}
|
|
636
676
|
|
|
677
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Layout/Layout.module.css/#css-module-data */
|
|
678
|
+
._Layout_hy65k_1 {
|
|
679
|
+
--header-height: 76px;
|
|
680
|
+
--nav-width: 256px;
|
|
681
|
+
display: grid;
|
|
682
|
+
background-color: white;
|
|
683
|
+
grid-template-areas: "switcher bar" "nav page";
|
|
684
|
+
grid-template-columns: var(--nav-width) auto;
|
|
685
|
+
grid-template-rows: var(--header-height) auto;
|
|
686
|
+
height: 100vh;
|
|
687
|
+
}
|
|
688
|
+
._Layout-switcher_hy65k_12 {
|
|
689
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
690
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
691
|
+
grid-area: switcher;
|
|
692
|
+
}
|
|
693
|
+
._Layout-bar_hy65k_18 {
|
|
694
|
+
align-items: center;
|
|
695
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
696
|
+
grid-area: bar;
|
|
697
|
+
display: flex;
|
|
698
|
+
}
|
|
699
|
+
._Layout-nav_hy65k_25 {
|
|
700
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
701
|
+
grid-area: nav;
|
|
702
|
+
}
|
|
703
|
+
._Layout-page_hy65k_30 {
|
|
704
|
+
grid-area: page;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Nav/Nav.module.css/#css-module-data */
|
|
708
|
+
._Nav-list_b6txo_1 {
|
|
709
|
+
list-style: none;
|
|
710
|
+
margin: 0;
|
|
711
|
+
padding: 0;
|
|
712
|
+
}
|
|
713
|
+
._NavSection_b6txo_7 {
|
|
714
|
+
padding: 16px;
|
|
715
|
+
}
|
|
716
|
+
._NavSection_b6txo_7:first-of-type {
|
|
717
|
+
padding-top: 32px;
|
|
718
|
+
}
|
|
719
|
+
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 {
|
|
720
|
+
padding-left: 0;
|
|
721
|
+
padding-right: 0;
|
|
722
|
+
}
|
|
723
|
+
._Nav--slim_b6txo_15 ._NavSection_b6txo_7 + ._NavSection_b6txo_7 {
|
|
724
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
725
|
+
}
|
|
726
|
+
._NavSection-list_b6txo_24 {
|
|
727
|
+
display: flex;
|
|
728
|
+
flex-direction: column;
|
|
729
|
+
list-style: none;
|
|
730
|
+
margin: 0;
|
|
731
|
+
padding: 0;
|
|
732
|
+
}
|
|
733
|
+
._Nav--slim_b6txo_15 ._NavSection-list_b6txo_24 {
|
|
734
|
+
gap: 16px;
|
|
735
|
+
}
|
|
736
|
+
._NavSection-title_b6txo_36 {
|
|
737
|
+
font-weight: 700;
|
|
738
|
+
margin-bottom: 8px;
|
|
739
|
+
padding-left: 8px;
|
|
740
|
+
padding-right: 8px;
|
|
741
|
+
}
|
|
742
|
+
._Nav--slim_b6txo_15 ._NavSection-title_b6txo_36 {
|
|
743
|
+
opacity: 0;
|
|
744
|
+
}
|
|
745
|
+
._NavItem-link_b6txo_47 {
|
|
746
|
+
align-items: center;
|
|
747
|
+
color: var(--puck-color-grey-03);
|
|
748
|
+
display: flex;
|
|
749
|
+
gap: 8px;
|
|
750
|
+
text-decoration: none;
|
|
751
|
+
cursor: pointer;
|
|
752
|
+
border-radius: 4px;
|
|
753
|
+
padding: 8px 4px;
|
|
754
|
+
}
|
|
755
|
+
._Nav--slim_b6txo_15 ._NavItem-link_b6txo_47 {
|
|
756
|
+
border-left: 4px solid transparent;
|
|
757
|
+
border-right: 4px solid transparent;
|
|
758
|
+
border-radius: 0;
|
|
759
|
+
flex-direction: column;
|
|
760
|
+
font-size: var(--puck-font-size-xxxs);
|
|
761
|
+
}
|
|
762
|
+
._NavItem-linkIcon_b6txo_67 {
|
|
763
|
+
height: 24px;
|
|
764
|
+
width: 24px;
|
|
765
|
+
}
|
|
766
|
+
._NavItem--active_b6txo_72 > ._NavItem-link_b6txo_47 {
|
|
767
|
+
background-color: var(--puck-color-azure-10);
|
|
768
|
+
color: var(--puck-color-azure-04);
|
|
769
|
+
font-weight: 600;
|
|
770
|
+
}
|
|
771
|
+
._Nav--slim_b6txo_15 ._NavItem--active_b6txo_72 > ._NavItem-link_b6txo_47 {
|
|
772
|
+
background-color: transparent;
|
|
773
|
+
border-right-color: var(--puck-color-azure-04);
|
|
774
|
+
border-top-right-radius: 0;
|
|
775
|
+
border-bottom-right-radius: 0;
|
|
776
|
+
font-weight: 600;
|
|
777
|
+
}
|
|
778
|
+
._NavItem_b6txo_47:not(._NavItem--active_b6txo_72) > ._NavItem-link_b6txo_47:hover {
|
|
779
|
+
background-color: var(--puck-color-azure-11);
|
|
780
|
+
color: var(--puck-color-azure-04);
|
|
781
|
+
}
|
|
782
|
+
._NavItem-list_b6txo_91 {
|
|
783
|
+
border-left: 1px solid var(--puck-color-grey-09);
|
|
784
|
+
display: flex;
|
|
785
|
+
flex-direction: column;
|
|
786
|
+
list-style: none;
|
|
787
|
+
margin-top: 8px;
|
|
788
|
+
margin-left: 4px;
|
|
789
|
+
padding: 0;
|
|
790
|
+
padding-left: 8px;
|
|
791
|
+
}
|
|
792
|
+
._Nav--slim_b6txo_15 ._NavItem-list_b6txo_91 {
|
|
793
|
+
border-left: 0;
|
|
794
|
+
padding-left: 0;
|
|
795
|
+
margin-left: 0;
|
|
796
|
+
}
|
|
797
|
+
|
|
637
798
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Link/Link.module.css/#css-module-data */
|
|
638
799
|
._Link_1j70m_1 {
|
|
639
800
|
color: var(--puck-color-azure-04);
|
|
@@ -644,13 +805,13 @@ p {
|
|
|
644
805
|
}
|
|
645
806
|
|
|
646
807
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Page/Page.module.css/#css-module-data */
|
|
647
|
-
.
|
|
808
|
+
._Page_1uz1e_1 {
|
|
648
809
|
display: flex;
|
|
649
810
|
flex-direction: column;
|
|
650
811
|
height: 100%;
|
|
651
812
|
overflow: hidden;
|
|
652
813
|
}
|
|
653
|
-
._Page-
|
|
814
|
+
._Page-masthead_1uz1e_8 {
|
|
654
815
|
align-items: center;
|
|
655
816
|
display: flex;
|
|
656
817
|
gap: 16px;
|
|
@@ -658,95 +819,107 @@ p {
|
|
|
658
819
|
box-sizing: border-box;
|
|
659
820
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
660
821
|
min-height: 64px;
|
|
661
|
-
overflow-x: auto;
|
|
662
822
|
}
|
|
663
|
-
._Page-
|
|
823
|
+
._Page-crumbs_1uz1e_18 {
|
|
664
824
|
display: flex;
|
|
665
825
|
gap: 32px;
|
|
666
826
|
}
|
|
667
|
-
._Page-
|
|
827
|
+
._Page-crumb_1uz1e_18 {
|
|
668
828
|
color: var(--puck-color-grey-05);
|
|
669
829
|
position: relative;
|
|
670
|
-
white-space: nowrap;
|
|
671
830
|
}
|
|
672
|
-
._Page-
|
|
831
|
+
._Page-crumbLink_1uz1e_28 {
|
|
673
832
|
color: var(--puck-color-grey-05);
|
|
674
833
|
text-decoration: none;
|
|
675
834
|
}
|
|
676
|
-
._Page-
|
|
835
|
+
._Page-crumbLink_1uz1e_28:hover {
|
|
677
836
|
color: var(--puck-color-azure-04);
|
|
678
837
|
}
|
|
679
|
-
._Page-
|
|
838
|
+
._Page-crumb_1uz1e_18:last-of-type {
|
|
680
839
|
color: var(--puck-color-grey-01);
|
|
681
840
|
font-weight: 600;
|
|
682
841
|
}
|
|
683
|
-
._Page-
|
|
842
|
+
._Page-crumb_1uz1e_18::before {
|
|
684
843
|
position: absolute;
|
|
685
844
|
content: "/";
|
|
686
845
|
left: -19px;
|
|
687
846
|
color: var(--puck-color-grey-09);
|
|
688
847
|
font-weight: 400;
|
|
689
848
|
}
|
|
690
|
-
._Page-
|
|
849
|
+
._Page-crumb_1uz1e_18:first-of-type::before {
|
|
691
850
|
display: none;
|
|
692
851
|
}
|
|
693
|
-
._Page-
|
|
852
|
+
._Page-crumb_1uz1e_18 {
|
|
694
853
|
color: var(--puck-color-grey-05);
|
|
695
854
|
position: relative;
|
|
696
855
|
text-decoration: none;
|
|
697
856
|
}
|
|
698
|
-
._Page-
|
|
857
|
+
._Page-actions_1uz1e_60 {
|
|
699
858
|
margin-left: auto;
|
|
700
859
|
}
|
|
701
|
-
._Page-footer_1ajs1_66 {
|
|
702
|
-
border-top: 1px solid var(--puck-color-grey-10);
|
|
703
|
-
padding: 16px 24px;
|
|
704
|
-
}
|
|
705
860
|
|
|
706
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/
|
|
707
|
-
.
|
|
708
|
-
align-items:
|
|
709
|
-
|
|
710
|
-
|
|
861
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/PuckHeader/PuckHeader.module.css/#css-module-data */
|
|
862
|
+
._PuckHeader_19h0f_1 {
|
|
863
|
+
align-items: center;
|
|
864
|
+
background-color: var(--puck-color-grey-12);
|
|
865
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
866
|
+
display: grid;
|
|
867
|
+
box-sizing: border-box;
|
|
868
|
+
grid-area: header;
|
|
869
|
+
grid-template-columns: min-content auto 256px;
|
|
870
|
+
height: var(--header-height);
|
|
871
|
+
width: 100%;
|
|
711
872
|
}
|
|
712
|
-
.
|
|
873
|
+
._PuckHeader-left_19h0f_16 {
|
|
713
874
|
align-items: center;
|
|
714
|
-
border-radius: 4px;
|
|
715
|
-
color: var(--puck-color-grey-05);
|
|
716
875
|
display: flex;
|
|
717
|
-
|
|
718
|
-
text-decoration: none;
|
|
719
|
-
min-width: 40px;
|
|
720
|
-
height: 40px;
|
|
876
|
+
padding-left: 16px;
|
|
721
877
|
}
|
|
722
|
-
.
|
|
723
|
-
|
|
724
|
-
|
|
878
|
+
._PuckHeader-center_19h0f_22 {
|
|
879
|
+
padding-left: 16px;
|
|
880
|
+
padding-right: 16px;
|
|
725
881
|
}
|
|
726
|
-
.
|
|
727
|
-
|
|
728
|
-
|
|
882
|
+
._PuckHeader-right_19h0f_27 {
|
|
883
|
+
display: flex;
|
|
884
|
+
justify-content: flex-end;
|
|
885
|
+
gap: 8px;
|
|
886
|
+
padding-right: 16px;
|
|
729
887
|
}
|
|
730
|
-
.
|
|
731
|
-
|
|
888
|
+
._PuckHeader-pageInput_19h0f_34 {
|
|
889
|
+
align-items: center;
|
|
890
|
+
background-color: var(--puck-color-grey-10);
|
|
891
|
+
border: none;
|
|
892
|
+
border-radius: 4px;
|
|
893
|
+
box-sizing: border-box;
|
|
894
|
+
color: var(--puck-color-grey-04);
|
|
895
|
+
display: flex;
|
|
896
|
+
font-weight: 600;
|
|
897
|
+
width: 100%;
|
|
732
898
|
}
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
._Section-inner_1uwo0_1 {
|
|
736
|
-
margin-left: auto;
|
|
737
|
-
margin-right: auto;
|
|
738
|
-
max-width: 1280px;
|
|
739
|
-
padding: 16px;
|
|
899
|
+
._PuckHeader-pageInput_19h0f_34:focus-within {
|
|
900
|
+
outline: 2px solid var(--puck-color-azure-05);
|
|
740
901
|
}
|
|
741
|
-
.
|
|
742
|
-
|
|
743
|
-
|
|
902
|
+
._PuckHeader-pageInputActions_19h0f_50 {
|
|
903
|
+
display: flex;
|
|
904
|
+
gap: 8px;
|
|
905
|
+
padding-right: 12px;
|
|
744
906
|
}
|
|
745
|
-
.
|
|
746
|
-
|
|
907
|
+
._PuckHeader-input_19h0f_56 {
|
|
908
|
+
background-color: transparent;
|
|
909
|
+
border: none;
|
|
910
|
+
color: var(--puck-color-grey-04);
|
|
911
|
+
font-weight: 600;
|
|
912
|
+
padding: 12px 16px;
|
|
913
|
+
width: 100%;
|
|
747
914
|
}
|
|
748
|
-
.
|
|
749
|
-
|
|
915
|
+
._PuckHeader-input_19h0f_56:focus {
|
|
916
|
+
outline: none;
|
|
917
|
+
}
|
|
918
|
+
._PuckHeader-historyActions_19h0f_69 {
|
|
919
|
+
display: flex;
|
|
920
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
921
|
+
padding-right: 12px;
|
|
922
|
+
margin-right: 4px;
|
|
750
923
|
}
|
|
751
924
|
|
|
752
925
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Tag/Tag.module.css/#css-module-data */
|
|
@@ -812,27 +985,248 @@ p {
|
|
|
812
985
|
}
|
|
813
986
|
}
|
|
814
987
|
|
|
988
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/AppSwitchers/AppSwitchers.module.css/#css-module-data */
|
|
989
|
+
._AppSwitchers_b7m1z_1 {
|
|
990
|
+
align-items: center;
|
|
991
|
+
display: flex;
|
|
992
|
+
gap: 8px;
|
|
993
|
+
padding: 12px 16px;
|
|
994
|
+
}
|
|
995
|
+
._AppSwitchers-divider_b7m1z_8 {
|
|
996
|
+
color: var(--puck-color-grey-10);
|
|
997
|
+
font-size: var(--puck-font-size-l);
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Switcher/Switcher.module.css/#css-module-data */
|
|
1001
|
+
._Switcher_134wo_1 {
|
|
1002
|
+
--switcher-width: 32px;
|
|
1003
|
+
align-items: center;
|
|
1004
|
+
display: flex;
|
|
1005
|
+
position: relative;
|
|
1006
|
+
}
|
|
1007
|
+
._Switcher-link_134wo_8 {
|
|
1008
|
+
align-items: center;
|
|
1009
|
+
border-radius: 4px;
|
|
1010
|
+
display: flex;
|
|
1011
|
+
gap: 16px;
|
|
1012
|
+
height: 100%;
|
|
1013
|
+
padding: 8px 12px;
|
|
1014
|
+
text-decoration: none;
|
|
1015
|
+
}
|
|
1016
|
+
._Switcher-switcher_134wo_18 {
|
|
1017
|
+
align-items: center;
|
|
1018
|
+
background-color: transparent;
|
|
1019
|
+
border: none;
|
|
1020
|
+
border-radius: 4px;
|
|
1021
|
+
color: var(--puck-color-grey-08);
|
|
1022
|
+
padding: 8px;
|
|
1023
|
+
display: flex;
|
|
1024
|
+
width: var(--switcher-width);
|
|
1025
|
+
}
|
|
1026
|
+
._Switcher--hasHref_134wo_29 ._Switcher-switcher_134wo_18:hover {
|
|
1027
|
+
background-color: var(--puck-color-azure-11);
|
|
1028
|
+
color: var(--puck-color-azure-04);
|
|
1029
|
+
cursor: pointer;
|
|
1030
|
+
}
|
|
1031
|
+
._Switcher-logoInner_134wo_35 {
|
|
1032
|
+
border-radius: 100%;
|
|
1033
|
+
background-color: var(--puck-color-grey-09);
|
|
1034
|
+
height: 24px;
|
|
1035
|
+
width: 24px;
|
|
1036
|
+
}
|
|
1037
|
+
._Switcher-label_134wo_42 {
|
|
1038
|
+
color: black;
|
|
1039
|
+
font-weight: 600;
|
|
1040
|
+
}
|
|
1041
|
+
._Switcher-link_134wo_8:hover {
|
|
1042
|
+
background-color: var(--puck-color-azure-11);
|
|
1043
|
+
}
|
|
1044
|
+
._Switcher-link_134wo_8:hover ._Switcher-label_134wo_42 {
|
|
1045
|
+
color: var(--puck-color-azure-04);
|
|
1046
|
+
}
|
|
1047
|
+
._Switcher--slim_134wo_55 ._Switcher-label_134wo_42 {
|
|
1048
|
+
display: none;
|
|
1049
|
+
}
|
|
1050
|
+
._Switcher--slim_134wo_55 ._Switcher-logo_134wo_35 {
|
|
1051
|
+
transform: translateX(-6px);
|
|
1052
|
+
transition: transform 250ms ease-in;
|
|
1053
|
+
}
|
|
1054
|
+
._Switcher-menu_134wo_64 {
|
|
1055
|
+
background: white;
|
|
1056
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
1057
|
+
border-radius: 4px;
|
|
1058
|
+
display: none;
|
|
1059
|
+
position: absolute;
|
|
1060
|
+
top: 100%;
|
|
1061
|
+
left: calc(100% - var(--switcher-width));
|
|
1062
|
+
z-index: 1;
|
|
1063
|
+
}
|
|
1064
|
+
._Switcher--menuVisible_134wo_75 ._Switcher-menu_134wo_64 {
|
|
1065
|
+
display: block;
|
|
1066
|
+
}
|
|
1067
|
+
._Switcher-menuList_134wo_79 {
|
|
1068
|
+
list-style: none;
|
|
1069
|
+
margin: 0;
|
|
1070
|
+
padding: 8px;
|
|
1071
|
+
}
|
|
1072
|
+
._Switcher-menuItemAction_134wo_85 {
|
|
1073
|
+
background-color: transparent;
|
|
1074
|
+
border: none;
|
|
1075
|
+
color: black;
|
|
1076
|
+
display: block;
|
|
1077
|
+
font-size: var(--puck-font-size-xs);
|
|
1078
|
+
font-weight: 500;
|
|
1079
|
+
padding: 12px 16px;
|
|
1080
|
+
text-align: left;
|
|
1081
|
+
text-decoration: none;
|
|
1082
|
+
}
|
|
1083
|
+
._Switcher-menuItemAction_134wo_85:hover {
|
|
1084
|
+
background-color: var(--puck-color-azure-11);
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/PuckLayout/PuckLayout.module.css/#css-module-data */
|
|
1088
|
+
._PuckLayout_1yvk1_1 {
|
|
1089
|
+
display: flex;
|
|
1090
|
+
flex-direction: column;
|
|
1091
|
+
width: 100vw;
|
|
1092
|
+
height: 100vh;
|
|
1093
|
+
}
|
|
1094
|
+
._PuckLayout-layout_1yvk1_8 {
|
|
1095
|
+
display: grid;
|
|
1096
|
+
grid-template-columns: 68px 256px auto 256px;
|
|
1097
|
+
flex-grow: 1;
|
|
1098
|
+
min-height: 0;
|
|
1099
|
+
}
|
|
1100
|
+
._PuckLayout-loader_1yvk1_15 {
|
|
1101
|
+
align-items: center;
|
|
1102
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
1103
|
+
display: flex;
|
|
1104
|
+
justify-content: center;
|
|
1105
|
+
background-color: white;
|
|
1106
|
+
height: 100%;
|
|
1107
|
+
}
|
|
1108
|
+
._PuckLayout-sideHeader_1yvk1_24 {
|
|
1109
|
+
align-items: center;
|
|
1110
|
+
display: flex;
|
|
1111
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1112
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
1113
|
+
padding-left: 16px;
|
|
1114
|
+
}
|
|
1115
|
+
._PuckLayout-switcher_1yvk1_32 {
|
|
1116
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
1117
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
1118
|
+
}
|
|
1119
|
+
._PuckLayout-nav_1yvk1_37 {
|
|
1120
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
1121
|
+
background-color: var(--puck-color-grey-12);
|
|
1122
|
+
}
|
|
1123
|
+
._PuckLayout-versionLoader_1yvk1_42 {
|
|
1124
|
+
align-items: center;
|
|
1125
|
+
display: flex;
|
|
1126
|
+
justify-content: center;
|
|
1127
|
+
}
|
|
1128
|
+
._PuckLayout-versionList_1yvk1_48 {
|
|
1129
|
+
list-style: none;
|
|
1130
|
+
display: flex;
|
|
1131
|
+
flex-direction: column;
|
|
1132
|
+
gap: 16px;
|
|
1133
|
+
margin: 0;
|
|
1134
|
+
padding: 16px;
|
|
1135
|
+
}
|
|
1136
|
+
._PuckLayout-version_1yvk1_42 {
|
|
1137
|
+
background-color: white;
|
|
1138
|
+
padding: 8px 12px;
|
|
1139
|
+
border: 1px solid var(--puck-color-grey-10);
|
|
1140
|
+
border-radius: 4px;
|
|
1141
|
+
}
|
|
1142
|
+
._PuckLayout-versionBody_1yvk1_64 {
|
|
1143
|
+
display: flex;
|
|
1144
|
+
padding-bottom: 4px;
|
|
1145
|
+
margin-bottom: 8px;
|
|
1146
|
+
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
1147
|
+
}
|
|
1148
|
+
._PuckLayout-versionDetails_1yvk1_71 {
|
|
1149
|
+
display: flex;
|
|
1150
|
+
}
|
|
1151
|
+
._PuckLayout-version_1yvk1_42:hover {
|
|
1152
|
+
background-color: var(--puck-color-azure-11);
|
|
1153
|
+
border-color: var(--puck-color-azure-04);
|
|
1154
|
+
cursor: pointer;
|
|
1155
|
+
}
|
|
1156
|
+
._PuckLayout-versionInner_1yvk1_81 {
|
|
1157
|
+
color: unset;
|
|
1158
|
+
text-decoration: none;
|
|
1159
|
+
}
|
|
1160
|
+
._PuckLayout-versionVersion_1yvk1_86 {
|
|
1161
|
+
font-weight: 600;
|
|
1162
|
+
}
|
|
1163
|
+
._PuckLayout-versionStatus_1yvk1_90 {
|
|
1164
|
+
margin-left: auto;
|
|
1165
|
+
text-transform: uppercase;
|
|
1166
|
+
font-weight: 600;
|
|
1167
|
+
font-size: var(--puck-font-size-xxs);
|
|
1168
|
+
border-radius: 4px;
|
|
1169
|
+
border: 1px solid var(--puck-color-grey-01);
|
|
1170
|
+
padding: 4px 8px;
|
|
1171
|
+
}
|
|
1172
|
+
._PuckLayout-versionDetails_1yvk1_71 {
|
|
1173
|
+
width: 100%;
|
|
1174
|
+
}
|
|
1175
|
+
._PuckLayout-versionAuthor_1yvk1_104 {
|
|
1176
|
+
flex-grow: 1;
|
|
1177
|
+
}
|
|
1178
|
+
._PuckLayout-versionAuthorName_1yvk1_108 {
|
|
1179
|
+
font-size: var(--puck-font-size-xxs);
|
|
1180
|
+
}
|
|
1181
|
+
._PuckLayout-versionDate_1yvk1_112 {
|
|
1182
|
+
font-size: var(--puck-font-size-xxs);
|
|
1183
|
+
margin-left: auto;
|
|
1184
|
+
}
|
|
1185
|
+
._PuckLayout-fields_1yvk1_117 {
|
|
1186
|
+
border-left: 1px solid var(--puck-color-grey-09);
|
|
1187
|
+
}
|
|
1188
|
+
._PuckLayout-sidebar_1yvk1_121 {
|
|
1189
|
+
background-color: var(--puck-color-grey-12);
|
|
1190
|
+
border-right: 1px solid var(--puck-color-grey-09);
|
|
1191
|
+
overflow: auto;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
|
|
1195
|
+
._Section-inner_1uwo0_1 {
|
|
1196
|
+
margin-left: auto;
|
|
1197
|
+
margin-right: auto;
|
|
1198
|
+
max-width: 1280px;
|
|
1199
|
+
padding: 16px;
|
|
1200
|
+
}
|
|
1201
|
+
._Section--flush_1uwo0_8 ._Section-inner_1uwo0_1 {
|
|
1202
|
+
padding-bottom: 0;
|
|
1203
|
+
padding-top: 0;
|
|
1204
|
+
}
|
|
1205
|
+
._Section_1uwo0_1 + ._Section_1uwo0_1 {
|
|
1206
|
+
border-top: 1px solid var(--puck-color-grey-09);
|
|
1207
|
+
}
|
|
1208
|
+
._Section--full_1uwo0_17 ._Section-inner_1uwo0_1 {
|
|
1209
|
+
max-width: unset;
|
|
1210
|
+
}
|
|
1211
|
+
|
|
815
1212
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Table/Table.module.css/#css-module-data */
|
|
816
|
-
.
|
|
1213
|
+
._Table_1t44j_1 {
|
|
817
1214
|
color: black;
|
|
818
1215
|
display: flex;
|
|
819
1216
|
flex-direction: column;
|
|
820
1217
|
flex-grow: 1;
|
|
821
|
-
overflow-y: auto;
|
|
822
1218
|
}
|
|
823
|
-
._Table-
|
|
1219
|
+
._Table-filters_1t44j_8 {
|
|
824
1220
|
margin: 16px;
|
|
825
1221
|
}
|
|
826
|
-
._Table-
|
|
1222
|
+
._Table-inner_1t44j_12 {
|
|
827
1223
|
text-align: left;
|
|
828
1224
|
}
|
|
829
|
-
._Table-
|
|
830
|
-
color: var(--puck-color-grey-02);
|
|
831
|
-
font-size: var(--puck-font-size-xxs);
|
|
1225
|
+
._Table-table_1t44j_16 {
|
|
832
1226
|
position: relative;
|
|
833
1227
|
width: 100%;
|
|
834
1228
|
}
|
|
835
|
-
.
|
|
1229
|
+
._Table_1t44j_1 thead {
|
|
836
1230
|
background: white;
|
|
837
1231
|
font-size: var(--puck-font-size-xxs);
|
|
838
1232
|
position: sticky;
|
|
@@ -840,61 +1234,55 @@ p {
|
|
|
840
1234
|
white-space: nowrap;
|
|
841
1235
|
z-index: 1;
|
|
842
1236
|
}
|
|
843
|
-
.
|
|
1237
|
+
._Table_1t44j_1 thead::after {
|
|
844
1238
|
content: "";
|
|
845
1239
|
position: absolute;
|
|
846
1240
|
height: 1px;
|
|
847
1241
|
width: 100%;
|
|
848
|
-
background-color: var(--puck-color-grey-
|
|
849
|
-
}
|
|
850
|
-
._Table--hideHeader_1bbu5_41 thead {
|
|
851
|
-
display: none;
|
|
1242
|
+
background-color: var(--puck-color-grey-09);
|
|
852
1243
|
}
|
|
853
|
-
.
|
|
1244
|
+
._Table_1t44j_1 tbody tr {
|
|
854
1245
|
z-index: 0;
|
|
855
1246
|
}
|
|
856
|
-
.
|
|
857
|
-
background:
|
|
858
|
-
font-weight:
|
|
1247
|
+
._Table_1t44j_1 th {
|
|
1248
|
+
background: white;
|
|
1249
|
+
font-weight: 600;
|
|
859
1250
|
padding-left: 24px;
|
|
860
1251
|
padding-right: 24px;
|
|
861
|
-
padding-bottom:
|
|
862
|
-
padding-top:
|
|
1252
|
+
padding-bottom: 20px;
|
|
1253
|
+
padding-top: 20px;
|
|
863
1254
|
}
|
|
864
1255
|
@media (--standard-viewport) {
|
|
865
|
-
.
|
|
1256
|
+
._Table_1t44j_1 th {
|
|
866
1257
|
padding-left: 32px;
|
|
867
1258
|
padding-right: 32px;
|
|
868
1259
|
}
|
|
869
1260
|
}
|
|
870
|
-
.
|
|
1261
|
+
._Table_1t44j_1 td {
|
|
871
1262
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
|
872
1263
|
padding-left: 24px;
|
|
873
1264
|
padding-right: 24px;
|
|
874
|
-
padding-bottom:
|
|
875
|
-
padding-top:
|
|
1265
|
+
padding-bottom: 20px;
|
|
1266
|
+
padding-top: 20px;
|
|
876
1267
|
white-space: nowrap;
|
|
877
1268
|
}
|
|
878
|
-
.
|
|
879
|
-
color: var(--puck-color-grey-05);
|
|
880
|
-
}
|
|
881
|
-
._Table_1bbu5_1 tbody tr:last-of-type td {
|
|
1269
|
+
._Table_1t44j_1 tbody tr:last-of-type td {
|
|
882
1270
|
border-bottom: none;
|
|
883
1271
|
}
|
|
884
1272
|
@media (--standard-viewport) {
|
|
885
|
-
.
|
|
1273
|
+
._Table_1t44j_1 td {
|
|
886
1274
|
padding-left: 32px;
|
|
887
1275
|
padding-right: 32px;
|
|
888
1276
|
}
|
|
889
1277
|
}
|
|
890
|
-
._Table-
|
|
1278
|
+
._Table-footer_1t44j_78 {
|
|
891
1279
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
892
1280
|
}
|
|
893
|
-
._Table--
|
|
1281
|
+
._Table--clickableRows_1t44j_82 tbody tr:hover {
|
|
894
1282
|
background: var(--puck-color-azure-12);
|
|
895
1283
|
cursor: pointer;
|
|
896
1284
|
}
|
|
897
|
-
._Table-
|
|
1285
|
+
._Table-placeholder_1t44j_87 {
|
|
898
1286
|
align-items: center;
|
|
899
1287
|
color: var(--puck-color-grey-06);
|
|
900
1288
|
justify-content: center;
|
|
@@ -904,11 +1292,37 @@ p {
|
|
|
904
1292
|
width: 100%;
|
|
905
1293
|
height: 100%;
|
|
906
1294
|
}
|
|
907
|
-
|
|
908
|
-
|
|
1295
|
+
|
|
1296
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/Tabs/Tabs.module.css/#css-module-data */
|
|
1297
|
+
._Tabs_1d592_1 {
|
|
1298
|
+
display: flex;
|
|
1299
|
+
margin: 0;
|
|
1300
|
+
padding: 0;
|
|
1301
|
+
list-style: none;
|
|
909
1302
|
}
|
|
910
|
-
.
|
|
911
|
-
|
|
1303
|
+
._TabItem_1d592_8 {
|
|
1304
|
+
display: flex;
|
|
1305
|
+
}
|
|
1306
|
+
._TabItem-link_1d592_12 {
|
|
1307
|
+
align-items: center;
|
|
1308
|
+
border-bottom: 3px solid transparent;
|
|
1309
|
+
border-top: 3px solid transparent;
|
|
1310
|
+
color: black;
|
|
1311
|
+
display: flex;
|
|
1312
|
+
gap: 4px;
|
|
1313
|
+
text-decoration: none;
|
|
1314
|
+
padding: 16px;
|
|
1315
|
+
}
|
|
1316
|
+
._TabItem-icon_1d592_23 {
|
|
1317
|
+
align-items: center;
|
|
1318
|
+
color: var(--puck-color-grey-05);
|
|
1319
|
+
display: flex;
|
|
1320
|
+
}
|
|
1321
|
+
._TabItem--isActive_1d592_29 ._TabItem-link_1d592_12 {
|
|
1322
|
+
border-bottom-color: var(--puck-color-azure-04);
|
|
1323
|
+
}
|
|
1324
|
+
._TabItem-link_1d592_12:hover {
|
|
1325
|
+
background-color: var(--puck-color-azure-10);
|
|
912
1326
|
}
|
|
913
1327
|
|
|
914
1328
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/VerticalSpace/VerticalSpace.module.css/#css-module-data */
|
|
@@ -943,43 +1357,73 @@ p {
|
|
|
943
1357
|
padding-top: 128px;
|
|
944
1358
|
}
|
|
945
1359
|
|
|
946
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/
|
|
947
|
-
.
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
._Viewport--inline_1vvhm_7._Viewport--standard_1vvhm_6 {
|
|
951
|
-
display: none;
|
|
952
|
-
}
|
|
953
|
-
._Viewport--narrow_1vvhm_11 {
|
|
954
|
-
display: block;
|
|
955
|
-
}
|
|
956
|
-
._Viewport--inline_1vvhm_7._Viewport--narrow_1vvhm_11 {
|
|
957
|
-
display: inline;
|
|
958
|
-
}
|
|
959
|
-
._Viewport--flex_1vvhm_19._Viewport--narrow_1vvhm_11 {
|
|
1360
|
+
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/Chat/styles.module.css/#css-module-data */
|
|
1361
|
+
._Chat_1mv7h_1 {
|
|
1362
|
+
background: white;
|
|
1363
|
+
height: 100%;
|
|
960
1364
|
display: flex;
|
|
1365
|
+
flex-direction: column;
|
|
961
1366
|
}
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
}
|
|
1367
|
+
._Chat-header_1mv7h_8 {
|
|
1368
|
+
display: block;
|
|
1369
|
+
padding: 8px 16px;
|
|
1370
|
+
font-weight: 600;
|
|
1371
|
+
border-bottom: 1px solid var(--puck-color-grey-09);
|
|
968
1372
|
}
|
|
969
|
-
@media (min-width:
|
|
970
|
-
.
|
|
1373
|
+
@media (min-width: 638px) {
|
|
1374
|
+
._Chat-header_1mv7h_8 {
|
|
971
1375
|
display: block;
|
|
1376
|
+
padding: 16px;
|
|
972
1377
|
}
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
1378
|
+
}
|
|
1379
|
+
._Chat-placeholder_1mv7h_22 {
|
|
1380
|
+
align-items: center;
|
|
1381
|
+
color: var(--puck-color-grey-06);
|
|
1382
|
+
display: none;
|
|
1383
|
+
justify-content: center;
|
|
1384
|
+
flex-direction: column;
|
|
1385
|
+
height: 100%;
|
|
1386
|
+
text-align: center;
|
|
1387
|
+
padding: 32px;
|
|
1388
|
+
gap: 8px;
|
|
1389
|
+
}
|
|
1390
|
+
@media (min-width: 638px) {
|
|
1391
|
+
._Chat-placeholder_1mv7h_22 {
|
|
977
1392
|
display: flex;
|
|
978
1393
|
}
|
|
979
1394
|
}
|
|
1395
|
+
._Chat-actions_1mv7h_40 {
|
|
1396
|
+
display: flex;
|
|
1397
|
+
gap: 8px;
|
|
1398
|
+
justify-content: center;
|
|
1399
|
+
flex-wrap: wrap;
|
|
1400
|
+
margin-top: 4px;
|
|
1401
|
+
}
|
|
1402
|
+
._Chat-action_1mv7h_40,
|
|
1403
|
+
._Chat-actionOutlined_1mv7h_49 {
|
|
1404
|
+
border: 1px solid var(--puck-color-azure-04);
|
|
1405
|
+
border-radius: 16px;
|
|
1406
|
+
padding: 4px 12px;
|
|
1407
|
+
font-size: 12px;
|
|
1408
|
+
cursor: pointer;
|
|
1409
|
+
}
|
|
1410
|
+
._Chat-action_1mv7h_40 {
|
|
1411
|
+
background: var(--puck-color-azure-04);
|
|
1412
|
+
color: white;
|
|
1413
|
+
}
|
|
1414
|
+
._Chat-action_1mv7h_40:hover {
|
|
1415
|
+
opacity: 0.8;
|
|
1416
|
+
}
|
|
1417
|
+
._Chat-actionOutlined_1mv7h_49 {
|
|
1418
|
+
background: transparent;
|
|
1419
|
+
color: var(--puck-color-azure-04);
|
|
1420
|
+
}
|
|
1421
|
+
._Chat-actionOutlined_1mv7h_49:hover {
|
|
1422
|
+
background: var(--puck-color-azure-11);
|
|
1423
|
+
}
|
|
980
1424
|
|
|
981
1425
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/ChatBody/styles.module.css/#css-module-data */
|
|
982
|
-
.
|
|
1426
|
+
._Chat_dx6l4_1 {
|
|
983
1427
|
--fade-size: 32px;
|
|
984
1428
|
--chat-background-color: white;
|
|
985
1429
|
display: flex;
|
|
@@ -989,46 +1433,46 @@ p {
|
|
|
989
1433
|
overflow: hidden;
|
|
990
1434
|
}
|
|
991
1435
|
@media (min-width: 638px) {
|
|
992
|
-
.
|
|
1436
|
+
._Chat_dx6l4_1 {
|
|
993
1437
|
max-height: none;
|
|
994
1438
|
}
|
|
995
1439
|
}
|
|
996
|
-
._Chat-
|
|
1440
|
+
._Chat-inner_dx6l4_17 {
|
|
997
1441
|
background-color: var(--chat-background-color);
|
|
998
1442
|
display: flex;
|
|
999
1443
|
flex-direction: column;
|
|
1000
1444
|
max-height: 100%;
|
|
1001
1445
|
position: relative;
|
|
1002
1446
|
}
|
|
1003
|
-
._Chat--
|
|
1447
|
+
._Chat--hasMessages_dx6l4_25 ._Chat-inner_dx6l4_17 {
|
|
1004
1448
|
padding-top: 0;
|
|
1005
1449
|
}
|
|
1006
|
-
.
|
|
1450
|
+
._Chat_dx6l4_1:not(._Chat--hasChildren_dx6l4_29) ._Chat-inner_dx6l4_17 {
|
|
1007
1451
|
height: 100%;
|
|
1008
1452
|
padding-top: 0;
|
|
1009
1453
|
}
|
|
1010
|
-
._Chat--
|
|
1454
|
+
._Chat--hasMessages_dx6l4_25 ._Chat-messages_dx6l4_34 {
|
|
1011
1455
|
display: flex;
|
|
1012
1456
|
flex-direction: column-reverse;
|
|
1013
1457
|
padding: 16px;
|
|
1014
1458
|
overflow: auto;
|
|
1015
1459
|
}
|
|
1016
|
-
._Chat-
|
|
1460
|
+
._Chat-form_dx6l4_41 {
|
|
1017
1461
|
background-color: white;
|
|
1018
1462
|
padding: 16px;
|
|
1019
1463
|
}
|
|
1020
|
-
._Chat--
|
|
1464
|
+
._Chat--hideInput_dx6l4_46 ._Chat-form_dx6l4_41 {
|
|
1021
1465
|
display: none;
|
|
1022
1466
|
}
|
|
1023
|
-
._Chat--
|
|
1467
|
+
._Chat--hasMessages_dx6l4_25 ._Chat-form_dx6l4_41 {
|
|
1024
1468
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1025
1469
|
}
|
|
1026
1470
|
@media (min-width: 638px) {
|
|
1027
|
-
._Chat-
|
|
1471
|
+
._Chat-form_dx6l4_41 {
|
|
1028
1472
|
border-top: 1px solid var(--puck-color-grey-09);
|
|
1029
1473
|
}
|
|
1030
1474
|
}
|
|
1031
|
-
._Chat-
|
|
1475
|
+
._Chat-formHelper_dx6l4_60 {
|
|
1032
1476
|
align-items: center;
|
|
1033
1477
|
display: flex;
|
|
1034
1478
|
color: var(--puck-color-grey-04);
|
|
@@ -1037,11 +1481,11 @@ p {
|
|
|
1037
1481
|
gap: 8px;
|
|
1038
1482
|
padding-bottom: 12px;
|
|
1039
1483
|
}
|
|
1040
|
-
._Chat--
|
|
1484
|
+
._Chat--hasMessages_dx6l4_25 ._Chat-formHelper_dx6l4_60 {
|
|
1041
1485
|
opacity: 0;
|
|
1042
1486
|
transition: opacity 250ms ease-in;
|
|
1043
1487
|
}
|
|
1044
|
-
._Chat-
|
|
1488
|
+
._Chat-examplePrompts_dx6l4_75 {
|
|
1045
1489
|
align-items: center;
|
|
1046
1490
|
display: flex;
|
|
1047
1491
|
flex-wrap: nowrap;
|
|
@@ -1050,7 +1494,7 @@ p {
|
|
|
1050
1494
|
width: 100%;
|
|
1051
1495
|
overflow-x: auto;
|
|
1052
1496
|
}
|
|
1053
|
-
._Chat-
|
|
1497
|
+
._Chat-examplePrompt_dx6l4_75 {
|
|
1054
1498
|
align-items: center;
|
|
1055
1499
|
background: white;
|
|
1056
1500
|
border: 1px solid var(--puck-color-grey-09);
|
|
@@ -1061,34 +1505,33 @@ p {
|
|
|
1061
1505
|
padding: 6px 12px;
|
|
1062
1506
|
text-wrap: nowrap;
|
|
1063
1507
|
}
|
|
1064
|
-
._Chat-
|
|
1508
|
+
._Chat-examplePrompt_dx6l4_75:hover {
|
|
1065
1509
|
background: var(--puck-color-azure-11);
|
|
1066
1510
|
border-color: var(--puck-color-azure-08);
|
|
1067
1511
|
color: var(--puck-color-azure-04);
|
|
1068
1512
|
}
|
|
1069
|
-
._Chat-
|
|
1513
|
+
._Chat-examplePromptArrow_dx6l4_103 {
|
|
1070
1514
|
margin-left: auto;
|
|
1071
1515
|
}
|
|
1072
|
-
._Chat-
|
|
1516
|
+
._Chat-default_dx6l4_107 {
|
|
1073
1517
|
overflow-y: auto;
|
|
1074
1518
|
flex-grow: 1;
|
|
1075
1519
|
}
|
|
1076
|
-
._Chat--
|
|
1520
|
+
._Chat--hasMessages_dx6l4_25 ._Chat-default_dx6l4_107 {
|
|
1077
1521
|
opacity: 0;
|
|
1078
1522
|
padding: 0;
|
|
1079
1523
|
pointer-events: none;
|
|
1080
1524
|
transition: opacity 250ms ease-in;
|
|
1081
1525
|
}
|
|
1082
|
-
._Chat--
|
|
1526
|
+
._Chat--hasMessages_dx6l4_25 {
|
|
1083
1527
|
background-color: white;
|
|
1084
1528
|
transition: background-color 250ms ease-in;
|
|
1085
1529
|
}
|
|
1086
|
-
.
|
|
1530
|
+
._ChatMessage_dx6l4_124 {
|
|
1087
1531
|
font-size: var(--puck-font-size-xs);
|
|
1088
1532
|
line-height: var(--line-height-s);
|
|
1089
|
-
overflow-wrap: break-word;
|
|
1090
1533
|
}
|
|
1091
|
-
._ChatMessage--
|
|
1534
|
+
._ChatMessage--userRole_dx6l4_129 ._ChatMessage-text_dx6l4_129 {
|
|
1092
1535
|
background: var(--puck-color-azure-10);
|
|
1093
1536
|
border-radius: 16px;
|
|
1094
1537
|
color: var(--puck-color-grey-03);
|
|
@@ -1097,64 +1540,64 @@ p {
|
|
|
1097
1540
|
margin-top: 8px;
|
|
1098
1541
|
padding: 12px 16px;
|
|
1099
1542
|
}
|
|
1100
|
-
.
|
|
1101
|
-
.
|
|
1543
|
+
._ChatMessage_dx6l4_124 ul,
|
|
1544
|
+
._ChatMessage_dx6l4_124 ol {
|
|
1102
1545
|
list-style: decimal;
|
|
1103
1546
|
margin: 0;
|
|
1104
1547
|
margin-bottom: 12px;
|
|
1105
1548
|
margin-top: 12px;
|
|
1106
1549
|
padding-left: 32px;
|
|
1107
1550
|
}
|
|
1108
|
-
.
|
|
1551
|
+
._ChatMessage_dx6l4_124 li {
|
|
1109
1552
|
margin-bottom: 8px;
|
|
1110
1553
|
margin-top: 8px;
|
|
1111
1554
|
padding-left: 8px;
|
|
1112
1555
|
}
|
|
1113
|
-
.
|
|
1114
|
-
.
|
|
1115
|
-
.
|
|
1116
|
-
.
|
|
1117
|
-
.
|
|
1118
|
-
.
|
|
1556
|
+
._ChatMessage_dx6l4_124 h1,
|
|
1557
|
+
._ChatMessage_dx6l4_124 h2,
|
|
1558
|
+
._ChatMessage_dx6l4_124 h3,
|
|
1559
|
+
._ChatMessage_dx6l4_124 h4,
|
|
1560
|
+
._ChatMessage_dx6l4_124 h5,
|
|
1561
|
+
._ChatMessage_dx6l4_124 h6 {
|
|
1119
1562
|
font-weight: 600;
|
|
1120
1563
|
}
|
|
1121
|
-
.
|
|
1564
|
+
._ChatMessage_dx6l4_124 h1 {
|
|
1122
1565
|
font-size: var(--puck-font-l);
|
|
1123
1566
|
}
|
|
1124
|
-
.
|
|
1567
|
+
._ChatMessage_dx6l4_124 h2 {
|
|
1125
1568
|
font-size: var(--puck-font-m);
|
|
1126
1569
|
}
|
|
1127
|
-
.
|
|
1570
|
+
._ChatMessage_dx6l4_124 h3 {
|
|
1128
1571
|
font-size: var(--puck-font-m);
|
|
1129
1572
|
}
|
|
1130
|
-
.
|
|
1573
|
+
._ChatMessage_dx6l4_124 h4 {
|
|
1131
1574
|
font-size: var(--puck-font-s);
|
|
1132
1575
|
}
|
|
1133
|
-
.
|
|
1576
|
+
._ChatMessage_dx6l4_124 h5 {
|
|
1134
1577
|
font-size: var(--puck-font-xs);
|
|
1135
1578
|
}
|
|
1136
|
-
.
|
|
1579
|
+
._ChatMessage_dx6l4_124 h6 {
|
|
1137
1580
|
font-size: var(--puck-font-xm);
|
|
1138
1581
|
}
|
|
1139
|
-
.
|
|
1582
|
+
._ChatMessage_dx6l4_124 p {
|
|
1140
1583
|
margin-bottom: 8px;
|
|
1141
1584
|
margin-top: 8px;
|
|
1142
1585
|
}
|
|
1143
|
-
.
|
|
1586
|
+
._ChatMessage_dx6l4_124 a {
|
|
1144
1587
|
color: var(--puck-color-azure-04);
|
|
1145
1588
|
font-weight: 600;
|
|
1146
1589
|
text-decoration: none;
|
|
1147
1590
|
}
|
|
1148
|
-
.
|
|
1591
|
+
._ChatMessage_dx6l4_124 a:hover {
|
|
1149
1592
|
color: var(--puck-color-azure-05);
|
|
1150
1593
|
}
|
|
1151
|
-
.
|
|
1594
|
+
._ChatMessage_dx6l4_124 hr {
|
|
1152
1595
|
border-top: none;
|
|
1153
1596
|
border-bottom-color: var(--puck-color-grey-09);
|
|
1154
1597
|
margin-bottom: 16px;
|
|
1155
1598
|
margin-top: 16px;
|
|
1156
1599
|
}
|
|
1157
|
-
.
|
|
1600
|
+
._ChatMessage_dx6l4_124 blockquote {
|
|
1158
1601
|
margin-bottom: 8px;
|
|
1159
1602
|
margin-top: 8px;
|
|
1160
1603
|
margin-left: 0;
|
|
@@ -1163,7 +1606,7 @@ p {
|
|
|
1163
1606
|
padding-bottom: 2px;
|
|
1164
1607
|
padding-top: 2px;
|
|
1165
1608
|
}
|
|
1166
|
-
._ChatMessage-
|
|
1609
|
+
._ChatMessage-data_dx6l4_219 {
|
|
1167
1610
|
background: var(--puck-color-grey-12);
|
|
1168
1611
|
border: 1px solid var(--puck-color-grey-08);
|
|
1169
1612
|
border-radius: 16px;
|
|
@@ -1173,32 +1616,18 @@ p {
|
|
|
1173
1616
|
margin-top: 12px;
|
|
1174
1617
|
padding: 12px 16px;
|
|
1175
1618
|
}
|
|
1176
|
-
._ChatMessage-
|
|
1619
|
+
._ChatMessage-dataInner_dx6l4_230 {
|
|
1177
1620
|
align-items: center;
|
|
1178
1621
|
display: flex;
|
|
1179
1622
|
gap: 8px;
|
|
1180
1623
|
}
|
|
1181
|
-
._ChatMessage-
|
|
1624
|
+
._ChatMessage-dataIcon_dx6l4_236 {
|
|
1182
1625
|
display: flex;
|
|
1183
1626
|
}
|
|
1184
|
-
._Chat-
|
|
1627
|
+
._Chat-loader_dx6l4_240 {
|
|
1185
1628
|
padding: 16px;
|
|
1186
1629
|
padding-top: 0;
|
|
1187
1630
|
}
|
|
1188
|
-
._Chat-error_150yz_246 {
|
|
1189
|
-
align-items: center;
|
|
1190
|
-
display: flex;
|
|
1191
|
-
gap: 8px;
|
|
1192
|
-
font-size: var(--puck-font-size-xxs);
|
|
1193
|
-
margin: 16px;
|
|
1194
|
-
margin-top: 0;
|
|
1195
|
-
}
|
|
1196
|
-
._Chat-errorLabel_150yz_255 {
|
|
1197
|
-
color: var(--puck-color-red-04);
|
|
1198
|
-
}
|
|
1199
|
-
._Chat-errorAction_150yz_259 {
|
|
1200
|
-
margin-left: auto;
|
|
1201
|
-
}
|
|
1202
1631
|
|
|
1203
1632
|
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/plugin-ai/src/components/PromptForm/styles.module.css/#css-module-data */
|
|
1204
1633
|
._PromptForm_136g1_1 {
|