@orion-studios/payload-studio 0.6.0-beta.60 → 0.6.0-beta.62
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()}`)}`,
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
border-radius: 10px;
|
|
265
265
|
display: grid;
|
|
266
266
|
gap: 6px;
|
|
267
|
-
grid-template-columns: minmax(0, 1fr)
|
|
267
|
+
grid-template-columns: minmax(0, 1fr);
|
|
268
268
|
padding: 8px;
|
|
269
269
|
}
|
|
270
270
|
|
|
@@ -272,9 +272,13 @@
|
|
|
272
272
|
color: var(--builder-v2-ink);
|
|
273
273
|
font-size: 0.8rem;
|
|
274
274
|
font-weight: 900;
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
white-space:
|
|
275
|
+
line-height: 1.25;
|
|
276
|
+
overflow-wrap: anywhere;
|
|
277
|
+
white-space: normal;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.orion-builder-v2-item-row button {
|
|
281
|
+
justify-self: stretch;
|
|
278
282
|
}
|
|
279
283
|
|
|
280
284
|
.orion-builder-v2-item-row button,
|
|
@@ -323,6 +327,13 @@
|
|
|
323
327
|
.orion-builder-v2-editor .gjs-cv-canvas {
|
|
324
328
|
background: #ede4d8;
|
|
325
329
|
top: 0;
|
|
330
|
+
width: 100%;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.orion-builder-v2-editor .gjs-cv-canvas__frames,
|
|
334
|
+
.orion-builder-v2-editor .gjs-frame-wrapper,
|
|
335
|
+
.orion-builder-v2-editor .gjs-frame {
|
|
336
|
+
width: 100% !important;
|
|
326
337
|
}
|
|
327
338
|
|
|
328
339
|
.orion-builder-v2-editor .gjs-frame-wrapper {
|
|
@@ -383,6 +394,12 @@
|
|
|
383
394
|
.orion-builder-v2-editor .gjs-trt-trait__label {
|
|
384
395
|
color: var(--builder-v2-muted);
|
|
385
396
|
font-weight: 800;
|
|
397
|
+
line-height: 1.25;
|
|
398
|
+
max-width: none;
|
|
399
|
+
overflow: visible;
|
|
400
|
+
overflow-wrap: anywhere;
|
|
401
|
+
text-overflow: clip;
|
|
402
|
+
white-space: normal;
|
|
386
403
|
}
|
|
387
404
|
|
|
388
405
|
.orion-builder-v2-editor .gjs-traits-label {
|
|
@@ -399,6 +416,24 @@
|
|
|
399
416
|
gap: 6px;
|
|
400
417
|
}
|
|
401
418
|
|
|
419
|
+
.orion-builder-v2-editor .gjs-trt-trait__wrp,
|
|
420
|
+
.orion-builder-v2-editor .gjs-trt-trait__cnt {
|
|
421
|
+
min-width: 0;
|
|
422
|
+
overflow: visible;
|
|
423
|
+
width: 100%;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.orion-builder-v2-editor .gjs-trt-trait .gjs-field,
|
|
427
|
+
.orion-builder-v2-editor .gjs-trt-trait input,
|
|
428
|
+
.orion-builder-v2-editor .gjs-trt-trait select,
|
|
429
|
+
.orion-builder-v2-editor .gjs-trt-trait textarea {
|
|
430
|
+
min-width: 0;
|
|
431
|
+
overflow: visible;
|
|
432
|
+
text-overflow: clip;
|
|
433
|
+
white-space: normal;
|
|
434
|
+
width: 100%;
|
|
435
|
+
}
|
|
436
|
+
|
|
402
437
|
.orion-builder-v2-editor .gjs-sm-sectors {
|
|
403
438
|
display: grid;
|
|
404
439
|
gap: 10px;
|
package/package.json
CHANGED