@orion-studios/payload-studio 0.6.0-beta.61 → 0.6.0-beta.63
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.
|
@@ -919,11 +919,6 @@ var registerProjectDynamicComponents = (editor, adapter) => {
|
|
|
919
919
|
droppable: false,
|
|
920
920
|
tagName: "div",
|
|
921
921
|
traits: [
|
|
922
|
-
{
|
|
923
|
-
label: "Component",
|
|
924
|
-
name: "data-orion-component",
|
|
925
|
-
type: "text"
|
|
926
|
-
},
|
|
927
922
|
...(definition.traits || []).map((trait) => ({
|
|
928
923
|
label: trait.label,
|
|
929
924
|
name: `data-orion-${trait.name.replace(/[A-Z]/g, (char) => `-${char.toLowerCase()}`)}`,
|
|
@@ -795,11 +795,6 @@ var registerProjectDynamicComponents = (editor, adapter) => {
|
|
|
795
795
|
droppable: false,
|
|
796
796
|
tagName: "div",
|
|
797
797
|
traits: [
|
|
798
|
-
{
|
|
799
|
-
label: "Component",
|
|
800
|
-
name: "data-orion-component",
|
|
801
|
-
type: "text"
|
|
802
|
-
},
|
|
803
798
|
...(definition.traits || []).map((trait) => ({
|
|
804
799
|
label: trait.label,
|
|
805
800
|
name: `data-orion-${trait.name.replace(/[A-Z]/g, (char) => `-${char.toLowerCase()}`)}`,
|
|
@@ -394,6 +394,13 @@
|
|
|
394
394
|
.orion-builder-v2-editor .gjs-trt-trait__label {
|
|
395
395
|
color: var(--builder-v2-muted);
|
|
396
396
|
font-weight: 800;
|
|
397
|
+
line-height: 1.25;
|
|
398
|
+
max-width: none;
|
|
399
|
+
overflow: visible;
|
|
400
|
+
overflow-wrap: normal;
|
|
401
|
+
text-overflow: clip;
|
|
402
|
+
white-space: normal;
|
|
403
|
+
word-break: normal;
|
|
397
404
|
}
|
|
398
405
|
|
|
399
406
|
.orion-builder-v2-editor .gjs-traits-label {
|
|
@@ -410,6 +417,39 @@
|
|
|
410
417
|
gap: 6px;
|
|
411
418
|
}
|
|
412
419
|
|
|
420
|
+
.orion-builder-v2-editor .gjs-trt-trait__wrp {
|
|
421
|
+
display: grid;
|
|
422
|
+
gap: 6px;
|
|
423
|
+
grid-template-columns: minmax(0, 1fr);
|
|
424
|
+
min-width: 0;
|
|
425
|
+
overflow: visible;
|
|
426
|
+
width: 100%;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.orion-builder-v2-editor .gjs-trt-trait__cnt {
|
|
430
|
+
min-width: 0;
|
|
431
|
+
overflow: visible;
|
|
432
|
+
width: 100%;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.orion-builder-v2-editor .gjs-trt-trait__label {
|
|
436
|
+
flex: none;
|
|
437
|
+
min-width: 0;
|
|
438
|
+
padding: 0;
|
|
439
|
+
width: 100%;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.orion-builder-v2-editor .gjs-trt-trait .gjs-field,
|
|
443
|
+
.orion-builder-v2-editor .gjs-trt-trait input,
|
|
444
|
+
.orion-builder-v2-editor .gjs-trt-trait select,
|
|
445
|
+
.orion-builder-v2-editor .gjs-trt-trait textarea {
|
|
446
|
+
min-width: 0;
|
|
447
|
+
overflow: visible;
|
|
448
|
+
text-overflow: clip;
|
|
449
|
+
white-space: normal;
|
|
450
|
+
width: 100%;
|
|
451
|
+
}
|
|
452
|
+
|
|
413
453
|
.orion-builder-v2-editor .gjs-sm-sectors {
|
|
414
454
|
display: grid;
|
|
415
455
|
gap: 10px;
|
package/package.json
CHANGED