@measured/puck 0.11.0-canary.4613df4 → 0.11.0-canary.7f13efc
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/README.md +51 -68
- package/dist/index.css +228 -173
- package/dist/index.d.ts +49 -57
- package/dist/index.js +30528 -1026
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -210,25 +210,25 @@
|
|
210
210
|
}
|
211
211
|
|
212
212
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/DraggableComponent/styles.module.css/#css-module-data */
|
213
|
-
.
|
213
|
+
._DraggableComponent_2abzb_1 {
|
214
214
|
pointer-events: auto;
|
215
215
|
}
|
216
|
-
._DraggableComponent--
|
216
|
+
._DraggableComponent--isDragging_2abzb_5 {
|
217
217
|
background: #abc7e510;
|
218
218
|
outline: 2px var(--puck-color-azure-8) solid;
|
219
219
|
overflow: hidden;
|
220
220
|
}
|
221
|
-
._DraggableComponent-
|
221
|
+
._DraggableComponent-contents_2abzb_11 {
|
222
222
|
position: relative;
|
223
223
|
pointer-events: none;
|
224
224
|
z-index: 0;
|
225
225
|
}
|
226
|
-
._DraggableComponent-
|
227
|
-
._DraggableComponent-
|
226
|
+
._DraggableComponent-contents_2abzb_11::before,
|
227
|
+
._DraggableComponent-contents_2abzb_11::after {
|
228
228
|
content: " ";
|
229
229
|
display: table;
|
230
230
|
}
|
231
|
-
._DraggableComponent-
|
231
|
+
._DraggableComponent-overlay_2abzb_24 {
|
232
232
|
display: none;
|
233
233
|
background: #abc7e530;
|
234
234
|
cursor: pointer;
|
@@ -236,41 +236,56 @@
|
|
236
236
|
width: 100%;
|
237
237
|
top: 0;
|
238
238
|
position: absolute;
|
239
|
-
z-index:
|
239
|
+
z-index: 0;
|
240
240
|
font-family: var(--puck-font-stack);
|
241
241
|
pointer-events: none;
|
242
242
|
box-sizing: border-box;
|
243
243
|
}
|
244
|
-
.
|
244
|
+
._DraggableComponent-loadingOverlay_2abzb_38 {
|
245
|
+
background: var(--puck-color-white);
|
246
|
+
color: var(--puck-color-grey-2);
|
247
|
+
border-radius: 4px;
|
248
|
+
display: flex;
|
249
|
+
padding: 8px;
|
250
|
+
top: 8px;
|
251
|
+
right: 8px;
|
252
|
+
position: absolute;
|
253
|
+
z-index: 1;
|
254
|
+
pointer-events: all;
|
255
|
+
box-sizing: border-box;
|
256
|
+
opacity: 0.8;
|
257
|
+
z-index: 1;
|
258
|
+
}
|
259
|
+
._DraggableComponent_2abzb_1:hover:not(._DraggableComponent--isLocked_2abzb_54) > ._DraggableComponent-overlay_2abzb_24 {
|
245
260
|
display: block;
|
246
261
|
pointer-events: none;
|
247
262
|
}
|
248
|
-
._DraggableComponent--
|
263
|
+
._DraggableComponent--forceHover_2abzb_60 > ._DraggableComponent-overlay_2abzb_24 {
|
249
264
|
display: block;
|
250
265
|
pointer-events: none;
|
251
266
|
}
|
252
|
-
.
|
267
|
+
._DraggableComponent_2abzb_1:not(._DraggableComponent--isSelected_2abzb_65) > ._DraggableComponent-overlay_2abzb_24 {
|
253
268
|
outline: 2px var(--puck-color-azure-8) solid;
|
254
269
|
}
|
255
|
-
._DraggableComponent--
|
270
|
+
._DraggableComponent--indicativeHover_2abzb_70 > ._DraggableComponent-overlay_2abzb_24 {
|
256
271
|
display: block;
|
257
272
|
background: transparent;
|
258
273
|
pointer-events: none;
|
259
274
|
}
|
260
|
-
.
|
275
|
+
._DraggableComponent_2abzb_1:not(._DraggableComponent--isSelected_2abzb_65):has(._DraggableComponent_2abzb_1:hover > ._DraggableComponent-overlay_2abzb_24) > ._DraggableComponent-overlay_2abzb_24 {
|
261
276
|
display: none;
|
262
277
|
}
|
263
|
-
._DraggableComponent--
|
278
|
+
._DraggableComponent--isSelected_2abzb_65 {
|
264
279
|
outline: 2px var(--puck-color-azure-6) solid;
|
265
280
|
}
|
266
|
-
._DraggableComponent--
|
281
|
+
._DraggableComponent--isSelected_2abzb_65 > ._DraggableComponent-overlay_2abzb_24 {
|
267
282
|
background: none;
|
268
283
|
display: block;
|
269
284
|
position: sticky;
|
270
285
|
top: 56px;
|
271
286
|
z-index: 1;
|
272
287
|
}
|
273
|
-
._DraggableComponent-
|
288
|
+
._DraggableComponent-actions_2abzb_96 {
|
274
289
|
position: absolute;
|
275
290
|
right: 6.5px;
|
276
291
|
width: auto;
|
@@ -286,10 +301,10 @@
|
|
286
301
|
pointer-events: auto;
|
287
302
|
box-sizing: border-box;
|
288
303
|
}
|
289
|
-
._DraggableComponent--
|
304
|
+
._DraggableComponent--isSelected_2abzb_65 > ._DraggableComponent-overlay_2abzb_24 > ._DraggableComponent-actions_2abzb_96 {
|
290
305
|
display: flex;
|
291
306
|
}
|
292
|
-
._DraggableComponent-
|
307
|
+
._DraggableComponent-actionsLabel_2abzb_119 {
|
293
308
|
color: var(--puck-color-grey-7);
|
294
309
|
display: flex;
|
295
310
|
font-size: var(--puck-font-size-xxxs);
|
@@ -303,7 +318,7 @@
|
|
303
318
|
text-overflow: ellipsis;
|
304
319
|
white-space: nowrap;
|
305
320
|
}
|
306
|
-
._DraggableComponent-
|
321
|
+
._DraggableComponent-action_2abzb_96 {
|
307
322
|
background: transparent;
|
308
323
|
border: none;
|
309
324
|
color: var(--puck-color-grey-7);
|
@@ -311,14 +326,14 @@
|
|
311
326
|
border-radius: 4px;
|
312
327
|
overflow: hidden;
|
313
328
|
}
|
314
|
-
._DraggableComponent-
|
329
|
+
._DraggableComponent-action_2abzb_96:hover {
|
315
330
|
background: var(--puck-color-grey-2);
|
316
331
|
color: var(--puck-color-azure-5);
|
317
332
|
cursor: pointer;
|
318
333
|
}
|
319
334
|
|
320
335
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/DropZone/styles.module.css/#css-module-data */
|
321
|
-
.
|
336
|
+
._DropZone_1akqa_1 {
|
322
337
|
margin-left: auto;
|
323
338
|
margin-right: auto;
|
324
339
|
zoom: 1.33;
|
@@ -327,37 +342,36 @@
|
|
327
342
|
outline-offset: -1px;
|
328
343
|
width: 100%;
|
329
344
|
}
|
330
|
-
._DropZone-
|
345
|
+
._DropZone-content_1akqa_11 {
|
331
346
|
min-height: 128px;
|
332
347
|
height: 100%;
|
333
348
|
}
|
334
|
-
._DropZone--
|
349
|
+
._DropZone--userIsDragging_1akqa_16 ._DropZone-content_1akqa_11 {
|
335
350
|
pointer-events: all;
|
336
351
|
}
|
337
|
-
._DropZone--
|
352
|
+
._DropZone--userIsDragging_1akqa_16:not(._DropZone--draggingOverArea_1akqa_20):not(._DropZone--draggingNewComponent_1akqa_21) > ._DropZone-content_1akqa_11 {
|
338
353
|
pointer-events: none;
|
339
354
|
}
|
340
|
-
._DropZone--
|
341
|
-
._DropZone--
|
342
|
-
._DropZone--
|
355
|
+
._DropZone--isAreaSelected_1akqa_27,
|
356
|
+
._DropZone--draggingOverArea_1akqa_20:not(:has(._DropZone--hoveringOverArea_1akqa_28)),
|
357
|
+
._DropZone--hoveringOverArea_1akqa_28:not(._DropZone--isDisabled_1akqa_29):not(._DropZone--isRootZone_1akqa_30) {
|
343
358
|
background: var(--puck-color-azure-9);
|
344
359
|
outline: 2px dashed var(--puck-color-azure-7);
|
345
360
|
}
|
346
|
-
.
|
361
|
+
._DropZone_1akqa_1:not(._DropZone--hasChildren_1akqa_36) {
|
347
362
|
background: var(--puck-color-azure-9);
|
348
363
|
outline: 2px dashed var(--puck-color-azure-7);
|
349
364
|
}
|
350
|
-
._DropZone--
|
365
|
+
._DropZone--isDestination_1akqa_41 {
|
351
366
|
outline: 2px dashed var(--puck-color-azure-3) !important;
|
352
367
|
}
|
353
|
-
._DropZone--
|
368
|
+
._DropZone--isDestination_1akqa_41:not(._DropZone--isRootZone_1akqa_30) {
|
354
369
|
background: var(--puck-color-azure-85) !important;
|
355
370
|
}
|
356
|
-
._DropZone-
|
371
|
+
._DropZone-item_1akqa_49 {
|
357
372
|
position: relative;
|
358
|
-
z-index: 0;
|
359
373
|
}
|
360
|
-
._DropZone-
|
374
|
+
._DropZone-hitbox_1akqa_53 {
|
361
375
|
position: absolute;
|
362
376
|
bottom: -12px;
|
363
377
|
height: 24px;
|
@@ -383,38 +397,43 @@
|
|
383
397
|
}
|
384
398
|
|
385
399
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/styles.module.css/#css-module-data */
|
386
|
-
.
|
400
|
+
._Input_1kw16_1 {
|
387
401
|
color: var(--puck-color-grey-3);
|
388
402
|
padding: 16px;
|
389
403
|
padding-bottom: 12px;
|
390
404
|
display: block;
|
391
405
|
font-family: var(--puck-font-stack);
|
392
406
|
}
|
393
|
-
.
|
407
|
+
._Input_1kw16_1 ._Input_1kw16_1 {
|
394
408
|
padding: 0px;
|
395
409
|
}
|
396
|
-
.
|
410
|
+
._Input_1kw16_1 * {
|
397
411
|
box-sizing: border-box;
|
398
412
|
}
|
399
|
-
.
|
413
|
+
._Input_1kw16_1 + ._Input_1kw16_1 {
|
400
414
|
border-top: 1px solid var(--puck-color-grey-8);
|
401
415
|
margin-top: 8px;
|
402
416
|
}
|
403
|
-
.
|
417
|
+
._Input_1kw16_1 ._Input_1kw16_1 + ._Input_1kw16_1 {
|
404
418
|
border-top: 0px;
|
405
419
|
margin-top: 12px;
|
406
420
|
}
|
407
|
-
._Input-
|
421
|
+
._Input-label_1kw16_27 {
|
408
422
|
display: flex;
|
409
423
|
padding-bottom: 12px;
|
410
424
|
font-size: var(--puck-font-size-xxs);
|
411
425
|
font-weight: 600;
|
412
426
|
}
|
413
|
-
._Input-
|
427
|
+
._Input-labelIcon_1kw16_34 {
|
414
428
|
color: var(--puck-color-grey-6);
|
415
429
|
margin-right: 4px;
|
430
|
+
padding-left: 4px;
|
431
|
+
}
|
432
|
+
._Input-disabledIcon_1kw16_40 {
|
433
|
+
color: var(--puck-color-grey-4);
|
434
|
+
margin-left: auto;
|
416
435
|
}
|
417
|
-
._Input-
|
436
|
+
._Input-input_1kw16_45 {
|
418
437
|
border-width: 1px;
|
419
438
|
border-style: solid;
|
420
439
|
border-color: var(--puck-color-grey-8);
|
@@ -423,7 +442,7 @@
|
|
423
442
|
padding: 12px 16px;
|
424
443
|
width: 100%;
|
425
444
|
}
|
426
|
-
.
|
445
|
+
._Input_1kw16_1 select._Input-input_1kw16_45 {
|
427
446
|
appearance: none;
|
428
447
|
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%23c3c3c3'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
|
429
448
|
background-size: 12px;
|
@@ -431,61 +450,76 @@
|
|
431
450
|
background-repeat: no-repeat;
|
432
451
|
background-color: white;
|
433
452
|
}
|
434
|
-
._Input--
|
435
|
-
|
453
|
+
._Input--readOnly_1kw16_66 > ._Input-input_1kw16_45,
|
454
|
+
._Input--readOnly_1kw16_66 > select._Input-input_1kw16_45 {
|
455
|
+
background-color: var(--puck-color-grey-11);
|
436
456
|
border-color: var(--puck-color-grey-8);
|
457
|
+
color: var(--puck-color-grey-5);
|
458
|
+
opacity: 1;
|
437
459
|
}
|
438
|
-
._Input-
|
460
|
+
._Input-input_1kw16_45:hover {
|
439
461
|
border-color: var(--puck-color-neutral-3);
|
440
462
|
}
|
441
|
-
._Input-
|
463
|
+
._Input-radioGroupItems_1kw16_78 {
|
442
464
|
display: flex;
|
443
465
|
border: 1px solid var(--puck-color-grey-7);
|
444
466
|
border-radius: 4px;
|
445
467
|
flex-wrap: wrap;
|
446
468
|
overflow: hidden;
|
447
469
|
}
|
448
|
-
._Input-
|
470
|
+
._Input-radio_1kw16_78 {
|
449
471
|
border-right: 1px solid var(--puck-color-grey-7);
|
450
472
|
flex-grow: 1;
|
451
473
|
}
|
452
|
-
._Input-
|
474
|
+
._Input-radio_1kw16_78:last-of-type {
|
453
475
|
border-right: none;
|
454
476
|
}
|
455
|
-
._Input-
|
477
|
+
._Input-radioInner_1kw16_95 {
|
478
|
+
background-color: white;
|
456
479
|
color: var(--puck-color-grey-4);
|
457
480
|
font-size: var(--puck-font-size-xxxs);
|
458
481
|
padding: 8px 12px;
|
459
482
|
text-align: center;
|
460
483
|
}
|
461
|
-
._Input-
|
484
|
+
._Input-radioInner_1kw16_95:hover {
|
462
485
|
background-color: var(--puck-color-azure-9);
|
463
486
|
cursor: pointer;
|
464
487
|
}
|
465
|
-
._Input
|
488
|
+
._Input--readOnly_1kw16_66 ._Input-radioGroupItems_1kw16_78 {
|
489
|
+
border-color: var(--puck-color-grey-8);
|
490
|
+
}
|
491
|
+
._Input--readOnly_1kw16_66 ._Input-radioInner_1kw16_95 {
|
492
|
+
background-color: var(--puck-color-grey-11);
|
493
|
+
color: var(--puck-color-grey-5);
|
494
|
+
}
|
495
|
+
._Input-radio_1kw16_78 ._Input-radioInput_1kw16_117:checked ~ ._Input-radioInner_1kw16_95 {
|
466
496
|
background-color: var(--puck-color-azure-9);
|
467
|
-
color: var(--puck-color-grey-
|
497
|
+
color: var(--puck-color-grey-1);
|
468
498
|
font-weight: 500;
|
469
499
|
}
|
470
|
-
._Input-
|
500
|
+
._Input--readOnly_1kw16_66 ._Input-radioInput_1kw16_117:checked ~ ._Input-radioInner_1kw16_95 {
|
501
|
+
background-color: var(--puck-color-azure-9);
|
502
|
+
color: var(--puck-color-grey-4);
|
503
|
+
}
|
504
|
+
._Input-radio_1kw16_78 ._Input-radioInput_1kw16_117 {
|
471
505
|
display: none;
|
472
506
|
}
|
473
|
-
.
|
507
|
+
._Input_1kw16_1 textarea._Input-input_1kw16_45 {
|
474
508
|
margin-bottom: -4px;
|
475
509
|
}
|
476
510
|
|
477
511
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/InputOrGroup/fields/ArrayField/styles.module.css/#css-module-data */
|
478
|
-
.
|
512
|
+
._ArrayField_13rp0_5 {
|
479
513
|
display: flex;
|
480
514
|
flex-direction: column;
|
481
515
|
background-color: var(--puck-color-grey-8);
|
482
516
|
border: 1px solid var(--puck-color-grey-8);
|
483
517
|
border-radius: 4px;
|
484
518
|
}
|
485
|
-
._ArrayField--
|
519
|
+
._ArrayField--isDraggingFrom_13rp0_13 {
|
486
520
|
background-color: var(--puck-color-azure-9);
|
487
521
|
}
|
488
|
-
._ArrayField-
|
522
|
+
._ArrayField-addButton_13rp0_17 {
|
489
523
|
background-color: white;
|
490
524
|
border: none;
|
491
525
|
border-radius: 4px;
|
@@ -498,37 +532,37 @@
|
|
498
532
|
padding: 16px;
|
499
533
|
text-align: left;
|
500
534
|
}
|
501
|
-
._ArrayField--
|
535
|
+
._ArrayField--hasItems_13rp0_31 > ._ArrayField-addButton_13rp0_17 {
|
502
536
|
border-top-left-radius: 0;
|
503
537
|
border-top-right-radius: 0;
|
504
538
|
}
|
505
|
-
.
|
539
|
+
._ArrayField_13rp0_5:not(._ArrayField--isDraggingFrom_13rp0_13) > ._ArrayField-addButton_13rp0_17:hover {
|
506
540
|
background: var(--puck-color-azure-9);
|
507
541
|
color: var(--puck-color-azure-4);
|
508
542
|
}
|
509
|
-
.
|
543
|
+
._ArrayFieldItem_13rp0_45 {
|
510
544
|
background: white;
|
511
545
|
border-top-left-radius: 4px;
|
512
546
|
border-top-right-radius: 4px;
|
513
547
|
display: block;
|
514
548
|
margin-bottom: 1px;
|
515
549
|
}
|
516
|
-
._ArrayField--
|
550
|
+
._ArrayField--isDraggingFrom_13rp0_13 > ._ArrayFieldItem_13rp0_45:not(._ArrayFieldItem--isDragging_13rp0_53) {
|
517
551
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
518
552
|
margin-bottom: 0;
|
519
553
|
}
|
520
|
-
._ArrayFieldItem--
|
554
|
+
._ArrayFieldItem--isExpanded_13rp0_58 {
|
521
555
|
border-bottom: 0;
|
522
556
|
outline: 1px solid var(--puck-color-azure-6);
|
523
557
|
}
|
524
|
-
._ArrayFieldItem--
|
558
|
+
._ArrayFieldItem--isDragging_13rp0_53 {
|
525
559
|
box-shadow: rgba(140, 152, 164, 0.25) 0 3px 6px 0;
|
526
560
|
}
|
527
|
-
.
|
561
|
+
._ArrayFieldItem_13rp0_45 + ._ArrayFieldItem_13rp0_45 {
|
528
562
|
border-top-left-radius: 0;
|
529
563
|
border-top-right-radius: 0;
|
530
564
|
}
|
531
|
-
._ArrayFieldItem-
|
565
|
+
._ArrayFieldItem-summary_13rp0_72 {
|
532
566
|
color: var(--puck-color-grey-3);
|
533
567
|
display: flex;
|
534
568
|
align-items: center;
|
@@ -539,45 +573,49 @@
|
|
539
573
|
position: relative;
|
540
574
|
overflow: hidden;
|
541
575
|
}
|
542
|
-
._ArrayFieldItem--
|
576
|
+
._ArrayFieldItem--readOnly_13rp0_84 > ._ArrayFieldItem-summary_13rp0_72 {
|
577
|
+
background-color: var(--puck-color-grey-11);
|
578
|
+
color: var(--puck-color-grey-5);
|
579
|
+
}
|
580
|
+
._ArrayFieldItem--isExpanded_13rp0_58 > ._ArrayFieldItem-summary_13rp0_72 {
|
543
581
|
font-weight: 600;
|
544
582
|
}
|
545
|
-
.
|
583
|
+
._ArrayFieldItem_13rp0_45:first-of-type > ._ArrayFieldItem-summary_13rp0_72 {
|
546
584
|
border-top-left-radius: 4px;
|
547
585
|
border-top-right-radius: 4px;
|
548
586
|
}
|
549
|
-
._ArrayFieldItem-
|
550
|
-
._ArrayFieldItem--
|
587
|
+
._ArrayFieldItem-summary_13rp0_72:hover,
|
588
|
+
._ArrayFieldItem--isExpanded_13rp0_58 > ._ArrayFieldItem-summary_13rp0_72 {
|
551
589
|
background: var(--puck-color-azure-9);
|
552
590
|
cursor: pointer;
|
553
591
|
color: var(--puck-color-azure-4);
|
554
592
|
}
|
555
|
-
._ArrayFieldItem-
|
593
|
+
._ArrayFieldItem-body_13rp0_105 {
|
556
594
|
display: none;
|
557
595
|
}
|
558
|
-
._ArrayFieldItem--
|
596
|
+
._ArrayFieldItem--isExpanded_13rp0_58 > ._ArrayFieldItem-body_13rp0_105 {
|
559
597
|
display: block;
|
560
598
|
}
|
561
|
-
._ArrayFieldItem-
|
599
|
+
._ArrayFieldItem-fieldset_13rp0_113 {
|
562
600
|
border: none;
|
563
601
|
border-top: 1px solid var(--puck-color-grey-8);
|
564
602
|
margin: 0;
|
565
603
|
padding: 16px;
|
566
604
|
}
|
567
|
-
._ArrayFieldItem-
|
605
|
+
._ArrayFieldItem-rhs_13rp0_120 {
|
568
606
|
display: flex;
|
569
607
|
gap: 8px;
|
570
608
|
align-items: center;
|
571
609
|
}
|
572
|
-
._ArrayFieldItem-
|
610
|
+
._ArrayFieldItem-actions_13rp0_126 {
|
573
611
|
display: flex;
|
574
612
|
gap: 8px;
|
575
613
|
opacity: 0;
|
576
614
|
}
|
577
|
-
._ArrayFieldItem-
|
615
|
+
._ArrayFieldItem-summary_13rp0_72:hover > ._ArrayFieldItem-rhs_13rp0_120 > ._ArrayFieldItem-actions_13rp0_126 {
|
578
616
|
opacity: 1;
|
579
617
|
}
|
580
|
-
._ArrayFieldItem-
|
618
|
+
._ArrayFieldItem-action_13rp0_126:hover {
|
581
619
|
background: var(--puck-color-grey-9);
|
582
620
|
border-radius: 4px;
|
583
621
|
color: var(--puck-color-blue);
|
@@ -596,13 +634,13 @@
|
|
596
634
|
}
|
597
635
|
|
598
636
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css/#css-module-data */
|
599
|
-
.
|
637
|
+
._ExternalInput_ufl4h_1 {
|
600
638
|
font-family: var(--puck-font-stack);
|
601
639
|
}
|
602
|
-
._ExternalInput-
|
640
|
+
._ExternalInput-actions_ufl4h_5 {
|
603
641
|
display: flex;
|
604
642
|
}
|
605
|
-
._ExternalInput-
|
643
|
+
._ExternalInput-button_ufl4h_9 {
|
606
644
|
display: flex;
|
607
645
|
gap: 8px;
|
608
646
|
align-items: center;
|
@@ -610,7 +648,7 @@
|
|
610
648
|
background-color: white;
|
611
649
|
border: 1px solid var(--puck-color-grey-8);
|
612
650
|
border-radius: 4px;
|
613
|
-
color: var(--puck-color-
|
651
|
+
color: var(--puck-color-azure-4);
|
614
652
|
padding: 12px 16px;
|
615
653
|
font-weight: 500;
|
616
654
|
white-space: nowrap;
|
@@ -619,24 +657,25 @@
|
|
619
657
|
overflow: hidden;
|
620
658
|
flex-grow: 1;
|
621
659
|
}
|
622
|
-
._ExternalInput-
|
623
|
-
._ExternalInput-
|
660
|
+
._ExternalInput-button_ufl4h_9:hover,
|
661
|
+
._ExternalInput-detachButton_ufl4h_28:hover {
|
624
662
|
cursor: pointer;
|
625
|
-
background: var(--puck-color-
|
626
|
-
|
663
|
+
background: var(--puck-color-azure-9);
|
664
|
+
color: var(--puck-color-azure-4);
|
627
665
|
z-index: 1;
|
628
666
|
}
|
629
|
-
._ExternalInput--
|
667
|
+
._ExternalInput--hasData_ufl4h_35 ._ExternalInput-button_ufl4h_9 {
|
668
|
+
color: var(--puck-color-grey-2);
|
630
669
|
display: block;
|
631
|
-
color: var(--puck-color-neutral-4);
|
632
670
|
border-top-right-radius: 0px;
|
633
671
|
border-bottom-right-radius: 0px;
|
634
672
|
}
|
635
|
-
._ExternalInput-
|
673
|
+
._ExternalInput-detachButton_ufl4h_28 {
|
636
674
|
border: 1px solid var(--puck-color-grey-8);
|
637
675
|
border-top-right-radius: 4px;
|
638
676
|
border-bottom-right-radius: 4px;
|
639
|
-
background-color: var(--puck-color-
|
677
|
+
background-color: var(--puck-color-grey-11);
|
678
|
+
color: var(--puck-color-grey-4);
|
640
679
|
display: flex;
|
641
680
|
gap: 8px;
|
642
681
|
align-items: center;
|
@@ -644,81 +683,122 @@
|
|
644
683
|
padding: 8px 12px;
|
645
684
|
margin-left: -1px;
|
646
685
|
}
|
647
|
-
._ExternalInput-
|
648
|
-
background: #00000099;
|
649
|
-
display: none;
|
650
|
-
justify-content: center;
|
651
|
-
align-items: center;
|
652
|
-
position: fixed;
|
653
|
-
top: 0;
|
654
|
-
left: 0;
|
655
|
-
bottom: 0;
|
656
|
-
right: 0;
|
657
|
-
z-index: 1;
|
658
|
-
padding: 64px;
|
659
|
-
}
|
660
|
-
._ExternalInput--modalVisible_l4bks_69 ._ExternalInput-modal_l4bks_55 {
|
661
|
-
display: flex;
|
662
|
-
}
|
663
|
-
._ExternalInput-modalInner_l4bks_73 {
|
664
|
-
width: 100%;
|
665
|
-
max-width: 1024px;
|
666
|
-
border-radius: 16px;
|
667
|
-
overflow: hidden;
|
668
|
-
background: white;
|
669
|
-
display: flex;
|
670
|
-
flex-direction: column;
|
671
|
-
max-height: 90vh;
|
672
|
-
}
|
673
|
-
._ExternalInput-modalHeading_l4bks_84 {
|
686
|
+
._ExternalInput-masthead_ufl4h_56 {
|
674
687
|
background-color: white;
|
675
688
|
padding: 32px 24px;
|
676
689
|
}
|
677
|
-
._ExternalInput-
|
690
|
+
._ExternalInput-modalTableWrapper_ufl4h_61 {
|
678
691
|
overflow-x: scroll;
|
679
692
|
overflow-y: scroll;
|
680
693
|
flex-grow: 1;
|
681
694
|
}
|
682
|
-
.
|
695
|
+
._ExternalInput-table_ufl4h_67 {
|
683
696
|
border-spacing: 0px;
|
684
697
|
color: var(--puck-color-neutral-4);
|
685
698
|
position: relative;
|
686
699
|
}
|
687
|
-
.
|
700
|
+
._ExternalInput-table_ufl4h_67 thead {
|
688
701
|
position: sticky;
|
689
702
|
top: 0;
|
690
703
|
}
|
691
|
-
.
|
704
|
+
._ExternalInput-table_ufl4h_67 th {
|
692
705
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
693
706
|
border-top: 1px solid var(--puck-color-grey-8);
|
694
707
|
font-weight: 700;
|
695
708
|
padding: 16px 24px;
|
696
709
|
opacity: 0.9;
|
697
710
|
}
|
698
|
-
.
|
711
|
+
._ExternalInput-table_ufl4h_67 td {
|
699
712
|
padding: 16px 24px;
|
700
713
|
}
|
701
|
-
.
|
714
|
+
._ExternalInput-table_ufl4h_67 tr:nth-of-type(n) {
|
702
715
|
background-color: white;
|
703
716
|
}
|
704
|
-
.
|
717
|
+
._ExternalInput-table_ufl4h_67 tr:nth-of-type(2n) {
|
705
718
|
background-color: var(--puck-color-grey-10);
|
706
719
|
}
|
707
|
-
.
|
720
|
+
._ExternalInput-table_ufl4h_67 tr td:first-of-type {
|
708
721
|
font-weight: 500;
|
709
722
|
}
|
710
|
-
.
|
723
|
+
._ExternalInput-table_ufl4h_67 tbody tr:hover {
|
711
724
|
background: var(--puck-color-grey-11);
|
712
725
|
color: var(--puck-color-azure-4);
|
713
726
|
cursor: pointer;
|
714
727
|
position: relative;
|
715
728
|
margin-left: -5px;
|
716
729
|
}
|
717
|
-
.
|
730
|
+
._ExternalInput-table_ufl4h_67 tbody tr:hover td:first-of-type {
|
718
731
|
border-left: 4px solid var(--puck-color-azure-4);
|
719
732
|
padding-left: 20px;
|
720
733
|
}
|
721
734
|
|
735
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Modal/styles.module.css/#css-module-data */
|
736
|
+
._Modal_hx2u6_1 {
|
737
|
+
background: #00000099;
|
738
|
+
display: none;
|
739
|
+
justify-content: center;
|
740
|
+
align-items: center;
|
741
|
+
position: fixed;
|
742
|
+
top: 0;
|
743
|
+
left: 0;
|
744
|
+
bottom: 0;
|
745
|
+
right: 0;
|
746
|
+
z-index: 1;
|
747
|
+
padding: 64px;
|
748
|
+
}
|
749
|
+
._Modal--isOpen_hx2u6_15 {
|
750
|
+
display: flex;
|
751
|
+
}
|
752
|
+
._Modal-inner_hx2u6_19 {
|
753
|
+
width: 100%;
|
754
|
+
max-width: 1024px;
|
755
|
+
border-radius: 16px;
|
756
|
+
overflow: hidden;
|
757
|
+
background: white;
|
758
|
+
display: flex;
|
759
|
+
flex-direction: column;
|
760
|
+
max-height: 90vh;
|
761
|
+
}
|
762
|
+
|
763
|
+
/* css-module:/home/runner/work/puck/puck/packages/core/components/Heading/styles.module.css/#css-module-data */
|
764
|
+
._Heading_7sjz7_1 {
|
765
|
+
display: block;
|
766
|
+
color: var(--puck-color-black);
|
767
|
+
font-family: var(--puck-font-stack);
|
768
|
+
font-weight: 700;
|
769
|
+
margin: 0;
|
770
|
+
word-break: break-word;
|
771
|
+
}
|
772
|
+
._Heading_7sjz7_1 b {
|
773
|
+
font-weight: 700;
|
774
|
+
}
|
775
|
+
._Heading--xxxxl_7sjz7_14 {
|
776
|
+
font-size: var(--puck-font-size-xxxxl);
|
777
|
+
letter-spacing: 0.08ch;
|
778
|
+
font-weight: 800;
|
779
|
+
}
|
780
|
+
._Heading--xxxl_7sjz7_20 {
|
781
|
+
font-size: var(--puck-font-size-xxxl);
|
782
|
+
}
|
783
|
+
._Heading--xxl_7sjz7_24 {
|
784
|
+
font-size: var(--puck-font-size-xxl);
|
785
|
+
}
|
786
|
+
._Heading--xl_7sjz7_28 {
|
787
|
+
font-size: var(--puck-font-size-xl);
|
788
|
+
}
|
789
|
+
._Heading--l_7sjz7_32 {
|
790
|
+
font-size: var(--puck-font-size-l);
|
791
|
+
}
|
792
|
+
._Heading--m_7sjz7_36 {
|
793
|
+
font-size: var(--puck-font-size-m);
|
794
|
+
}
|
795
|
+
._Heading--s_7sjz7_40 {
|
796
|
+
font-size: var(--puck-font-size-s);
|
797
|
+
}
|
798
|
+
._Heading--xs_7sjz7_44 {
|
799
|
+
font-size: var(--puck-font-size-xs);
|
800
|
+
}
|
801
|
+
|
722
802
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css/#css-module-data */
|
723
803
|
._ComponentList_3rdy2_1 {
|
724
804
|
font-family: var(--puck-font-stack);
|
@@ -779,92 +859,67 @@
|
|
779
859
|
}
|
780
860
|
|
781
861
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
|
782
|
-
.
|
862
|
+
._SidebarSection_r7dv3_1 {
|
783
863
|
display: flex;
|
784
864
|
position: relative;
|
785
865
|
flex-direction: column;
|
786
866
|
color: black;
|
787
867
|
}
|
788
|
-
.
|
868
|
+
._SidebarSection_r7dv3_1:last-of-type {
|
789
869
|
flex-grow: 1;
|
790
870
|
}
|
791
|
-
._SidebarSection-
|
871
|
+
._SidebarSection-title_r7dv3_12 {
|
792
872
|
background: white;
|
793
873
|
padding: 16px;
|
794
874
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
795
875
|
overflow-x: auto;
|
796
876
|
}
|
797
|
-
._SidebarSection-
|
877
|
+
._SidebarSection-content_r7dv3_19 {
|
798
878
|
border-bottom: 1px solid var(--puck-color-grey-8);
|
799
879
|
padding: 16px;
|
800
880
|
}
|
801
|
-
._SidebarSection--
|
881
|
+
._SidebarSection--noPadding_r7dv3_24 ._SidebarSection-content_r7dv3_19 {
|
802
882
|
padding: 0px;
|
803
883
|
}
|
804
|
-
.
|
884
|
+
._SidebarSection_r7dv3_1:last-of-type ._SidebarSection-content_r7dv3_19 {
|
805
885
|
border-bottom: none;
|
806
886
|
flex-grow: 1;
|
807
887
|
}
|
808
|
-
._SidebarSection-
|
888
|
+
._SidebarSection-breadcrumbLabel_r7dv3_33 {
|
809
889
|
color: var(--puck-color-azure-3);
|
810
890
|
flex-shrink: 0;
|
811
891
|
}
|
812
|
-
._SidebarSection-
|
892
|
+
._SidebarSection-breadcrumbLabel_r7dv3_33:hover {
|
813
893
|
color: var(--puck-color-azure-4);
|
814
894
|
cursor: pointer;
|
815
895
|
text-decoration: underline;
|
816
896
|
}
|
817
|
-
._SidebarSection-
|
897
|
+
._SidebarSection-breadcrumbs_r7dv3_44 {
|
818
898
|
align-items: center;
|
819
899
|
display: flex;
|
820
900
|
gap: 4px;
|
821
901
|
}
|
822
|
-
._SidebarSection-
|
902
|
+
._SidebarSection-breadcrumb_r7dv3_33 {
|
823
903
|
align-items: center;
|
824
904
|
display: flex;
|
825
905
|
gap: 4px;
|
826
906
|
}
|
827
|
-
._SidebarSection-
|
907
|
+
._SidebarSection-heading_r7dv3_56 {
|
828
908
|
padding-right: 16px;
|
829
909
|
}
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
._Heading--xxxxl_7sjz7_14 {
|
844
|
-
font-size: var(--puck-font-size-xxxxl);
|
845
|
-
letter-spacing: 0.08ch;
|
846
|
-
font-weight: 800;
|
847
|
-
}
|
848
|
-
._Heading--xxxl_7sjz7_20 {
|
849
|
-
font-size: var(--puck-font-size-xxxl);
|
850
|
-
}
|
851
|
-
._Heading--xxl_7sjz7_24 {
|
852
|
-
font-size: var(--puck-font-size-xxl);
|
853
|
-
}
|
854
|
-
._Heading--xl_7sjz7_28 {
|
855
|
-
font-size: var(--puck-font-size-xl);
|
856
|
-
}
|
857
|
-
._Heading--l_7sjz7_32 {
|
858
|
-
font-size: var(--puck-font-size-l);
|
859
|
-
}
|
860
|
-
._Heading--m_7sjz7_36 {
|
861
|
-
font-size: var(--puck-font-size-m);
|
862
|
-
}
|
863
|
-
._Heading--s_7sjz7_40 {
|
864
|
-
font-size: var(--puck-font-size-s);
|
865
|
-
}
|
866
|
-
._Heading--xs_7sjz7_44 {
|
867
|
-
font-size: var(--puck-font-size-xs);
|
910
|
+
._SidebarSection-loadingOverlay_r7dv3_60 {
|
911
|
+
background: white;
|
912
|
+
display: flex;
|
913
|
+
justify-content: center;
|
914
|
+
align-items: center;
|
915
|
+
height: 100%;
|
916
|
+
width: 100%;
|
917
|
+
top: 0;
|
918
|
+
position: absolute;
|
919
|
+
z-index: 1;
|
920
|
+
pointer-events: all;
|
921
|
+
box-sizing: border-box;
|
922
|
+
opacity: 0.8;
|
868
923
|
}
|
869
924
|
|
870
925
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css/#css-module-data */
|