@bendyline/squisq-editor-react 2.2.0 → 2.3.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/NOTICE.md +30 -30
- package/dist/chunk-54UGTQBO.js +862 -0
- package/dist/chunk-5JMHFAVW.js +2408 -0
- package/dist/chunk-5Q4JN4I5.js +132 -0
- package/dist/chunk-6VDYKI3L.js +49 -0
- package/dist/chunk-GS7QWYFT.js +9 -0
- package/dist/chunk-MJJK7YQB.js +949 -0
- package/dist/chunk-NITZVAXL.js +986 -0
- package/dist/chunk-TRCKHRBS.js +35234 -0
- package/dist/chunk-V44VP242.js +3256 -0
- package/dist/image-editor/index.d.ts +223 -0
- package/dist/image-editor/index.js +15 -0
- package/dist/index.d.ts +2310 -4423
- package/dist/index.js +494 -42158
- package/dist/json-editor/index.d.ts +27 -0
- package/dist/json-editor/index.js +7 -0
- package/dist/monaco.d.ts +1 -1
- package/dist/monaco.js +1 -1
- package/dist/recorder/index.d.ts +407 -0
- package/dist/recorder/index.js +43 -0
- package/dist/shell/index.d.ts +9 -0
- package/dist/shell/index.js +22 -0
- package/dist/shell-BxSCBm4H.d.ts +1064 -0
- package/dist/styles/index.css +367 -19
- package/dist/teleprompter/index.d.ts +497 -0
- package/dist/teleprompter/index.js +57 -0
- package/package.json +29 -6
package/dist/styles/index.css
CHANGED
|
@@ -8575,6 +8575,7 @@
|
|
|
8575
8575
|
width: max-content;
|
|
8576
8576
|
max-width: calc(100vw - 16px);
|
|
8577
8577
|
padding: 4px 8px;
|
|
8578
|
+
font-family: var( --squisq-ux-font, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif );
|
|
8578
8579
|
font-size: 12px;
|
|
8579
8580
|
font-weight: 500;
|
|
8580
8581
|
color: #f9fafb;
|
|
@@ -9274,6 +9275,112 @@
|
|
|
9274
9275
|
background: transparent;
|
|
9275
9276
|
color: inherit;
|
|
9276
9277
|
}
|
|
9278
|
+
.squisq-print-trigger {
|
|
9279
|
+
display: inline-flex;
|
|
9280
|
+
align-items: center;
|
|
9281
|
+
gap: 6px;
|
|
9282
|
+
flex: 0 0 auto;
|
|
9283
|
+
min-height: 30px;
|
|
9284
|
+
margin: 0 5px 0 0;
|
|
9285
|
+
padding: 0 9px;
|
|
9286
|
+
border: 1px solid var(--squisq-border, #d1d5db);
|
|
9287
|
+
border-radius: 5px;
|
|
9288
|
+
background: var(--squisq-input-bg, #fff);
|
|
9289
|
+
color: var(--squisq-text, #1f2937);
|
|
9290
|
+
font: 600 12px/1 var(--squisq-ux-font, sans-serif);
|
|
9291
|
+
cursor: pointer;
|
|
9292
|
+
}
|
|
9293
|
+
.squisq-print-trigger:hover,
|
|
9294
|
+
.squisq-print-trigger:focus-visible {
|
|
9295
|
+
outline: none;
|
|
9296
|
+
border-color: #9ca3af;
|
|
9297
|
+
background: rgba(107, 114, 128, 0.12);
|
|
9298
|
+
}
|
|
9299
|
+
.squisq-print-toolbar {
|
|
9300
|
+
display: flex;
|
|
9301
|
+
align-items: center;
|
|
9302
|
+
flex: 1 1 auto;
|
|
9303
|
+
min-width: 0;
|
|
9304
|
+
min-height: 38px;
|
|
9305
|
+
gap: 8px;
|
|
9306
|
+
padding: 3px 5px 3px 10px;
|
|
9307
|
+
}
|
|
9308
|
+
.squisq-print-toolbar-title {
|
|
9309
|
+
flex: 0 0 auto;
|
|
9310
|
+
color: var(--squisq-text, #1f2937);
|
|
9311
|
+
font: 650 12px/1 var(--squisq-ux-font, sans-serif);
|
|
9312
|
+
white-space: nowrap;
|
|
9313
|
+
}
|
|
9314
|
+
.squisq-print-density {
|
|
9315
|
+
display: inline-flex;
|
|
9316
|
+
align-items: center;
|
|
9317
|
+
flex: 0 1 auto;
|
|
9318
|
+
min-width: 0;
|
|
9319
|
+
overflow: hidden;
|
|
9320
|
+
border: 1px solid var(--squisq-border, #d1d5db);
|
|
9321
|
+
border-radius: 5px;
|
|
9322
|
+
background: var(--squisq-input-bg, #fff);
|
|
9323
|
+
}
|
|
9324
|
+
.squisq-print-density-button {
|
|
9325
|
+
min-height: 28px;
|
|
9326
|
+
padding: 0 9px;
|
|
9327
|
+
border: 0;
|
|
9328
|
+
border-left: 1px solid var(--squisq-border, #d1d5db);
|
|
9329
|
+
background: transparent;
|
|
9330
|
+
color: var(--squisq-text-muted, #6b7280);
|
|
9331
|
+
font: 500 11px/1 var(--squisq-ux-font, sans-serif);
|
|
9332
|
+
white-space: nowrap;
|
|
9333
|
+
cursor: pointer;
|
|
9334
|
+
}
|
|
9335
|
+
.squisq-print-density-button:first-child {
|
|
9336
|
+
border-left: 0;
|
|
9337
|
+
}
|
|
9338
|
+
.squisq-print-density-button:hover,
|
|
9339
|
+
.squisq-print-density-button:focus-visible {
|
|
9340
|
+
outline: none;
|
|
9341
|
+
background: rgba(107, 114, 128, 0.12);
|
|
9342
|
+
}
|
|
9343
|
+
.squisq-print-density-button--active {
|
|
9344
|
+
background: #dbeafe;
|
|
9345
|
+
color: #1d4ed8;
|
|
9346
|
+
font-weight: 650;
|
|
9347
|
+
}
|
|
9348
|
+
.squisq-print-toolbar-spacer {
|
|
9349
|
+
flex: 1 1 auto;
|
|
9350
|
+
}
|
|
9351
|
+
.squisq-print-action,
|
|
9352
|
+
.squisq-print-close {
|
|
9353
|
+
display: inline-flex;
|
|
9354
|
+
align-items: center;
|
|
9355
|
+
justify-content: center;
|
|
9356
|
+
gap: 6px;
|
|
9357
|
+
flex: 0 0 auto;
|
|
9358
|
+
min-height: 30px;
|
|
9359
|
+
padding: 0 10px;
|
|
9360
|
+
border: 1px solid transparent;
|
|
9361
|
+
border-radius: 5px;
|
|
9362
|
+
font: 600 12px/1 var(--squisq-ux-font, sans-serif);
|
|
9363
|
+
cursor: pointer;
|
|
9364
|
+
}
|
|
9365
|
+
.squisq-print-action {
|
|
9366
|
+
background: #2563eb;
|
|
9367
|
+
color: #fff;
|
|
9368
|
+
}
|
|
9369
|
+
.squisq-print-action:hover,
|
|
9370
|
+
.squisq-print-action:focus-visible {
|
|
9371
|
+
outline: none;
|
|
9372
|
+
background: #1d4ed8;
|
|
9373
|
+
}
|
|
9374
|
+
.squisq-print-close {
|
|
9375
|
+
border-color: var(--squisq-border, #d1d5db);
|
|
9376
|
+
background: var(--squisq-input-bg, #fff);
|
|
9377
|
+
color: var(--squisq-text, #1f2937);
|
|
9378
|
+
}
|
|
9379
|
+
.squisq-print-close:hover,
|
|
9380
|
+
.squisq-print-close:focus-visible {
|
|
9381
|
+
outline: none;
|
|
9382
|
+
background: rgba(107, 114, 128, 0.12);
|
|
9383
|
+
}
|
|
9277
9384
|
.squisq-wysiwyg-editor a {
|
|
9278
9385
|
color: color-mix(in srgb, var(--squisq-theme-primary, #2563eb) 65%, var(--squisq-theme-text, #1f2937));
|
|
9279
9386
|
text-decoration: underline;
|
|
@@ -9291,6 +9398,118 @@
|
|
|
9291
9398
|
background: #f5f5f5;
|
|
9292
9399
|
padding: 16px;
|
|
9293
9400
|
}
|
|
9401
|
+
.squisq-editor-shell[data-print-preview=true] > .squisq-status-bar,
|
|
9402
|
+
.squisq-editor-shell[data-print-preview=true] > .squisq-timeline,
|
|
9403
|
+
.squisq-editor-shell[data-print-preview=true] .squisq-media-bin,
|
|
9404
|
+
.squisq-editor-shell[data-print-preview=true] .squisq-custom-theme-pane {
|
|
9405
|
+
display: none;
|
|
9406
|
+
}
|
|
9407
|
+
.squisq-editor-shell[data-print-preview=true] .squisq-preview-player {
|
|
9408
|
+
padding: 0;
|
|
9409
|
+
background: #dfe3e8;
|
|
9410
|
+
}
|
|
9411
|
+
.squisq-print-preview {
|
|
9412
|
+
width: 100%;
|
|
9413
|
+
height: 100%;
|
|
9414
|
+
min-width: 0;
|
|
9415
|
+
min-height: 0;
|
|
9416
|
+
padding: 32px;
|
|
9417
|
+
overflow: auto;
|
|
9418
|
+
background: #dfe3e8;
|
|
9419
|
+
box-sizing: border-box;
|
|
9420
|
+
print-color-adjust: exact;
|
|
9421
|
+
-webkit-print-color-adjust: exact;
|
|
9422
|
+
}
|
|
9423
|
+
.squisq-print-preview--slides {
|
|
9424
|
+
display: flex;
|
|
9425
|
+
align-items: center;
|
|
9426
|
+
flex-direction: column;
|
|
9427
|
+
gap: 28px;
|
|
9428
|
+
}
|
|
9429
|
+
.squisq-print-sheet {
|
|
9430
|
+
display: grid;
|
|
9431
|
+
flex: 0 0 auto;
|
|
9432
|
+
width: min(11in, 100%);
|
|
9433
|
+
aspect-ratio: var(--squisq-print-paper-ratio, 11 / 8.5);
|
|
9434
|
+
padding: 0.28in;
|
|
9435
|
+
gap: 0.18in;
|
|
9436
|
+
overflow: hidden;
|
|
9437
|
+
background: #fff;
|
|
9438
|
+
box-shadow: 0 8px 28px rgba(15, 23, 42, 0.22);
|
|
9439
|
+
box-sizing: border-box;
|
|
9440
|
+
}
|
|
9441
|
+
.squisq-print-sheet[data-slides-per-page="1"] {
|
|
9442
|
+
grid-template: minmax(0, 1fr) / minmax(0, 1fr);
|
|
9443
|
+
padding: 0;
|
|
9444
|
+
gap: 0;
|
|
9445
|
+
}
|
|
9446
|
+
.squisq-print-sheet[data-slides-per-page="2"] {
|
|
9447
|
+
grid-template: repeat(2, minmax(0, 1fr)) / minmax(0, 1fr);
|
|
9448
|
+
}
|
|
9449
|
+
.squisq-print-sheet[data-slides-per-page="9"] {
|
|
9450
|
+
grid-template: repeat(3, minmax(0, 1fr)) / repeat(3, minmax(0, 1fr));
|
|
9451
|
+
}
|
|
9452
|
+
.squisq-print-slide-cell {
|
|
9453
|
+
display: flex;
|
|
9454
|
+
align-items: center;
|
|
9455
|
+
justify-content: center;
|
|
9456
|
+
min-width: 0;
|
|
9457
|
+
min-height: 0;
|
|
9458
|
+
overflow: hidden;
|
|
9459
|
+
background: var(--squisq-print-slide-bg, #fff);
|
|
9460
|
+
box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.12);
|
|
9461
|
+
}
|
|
9462
|
+
.squisq-print-sheet[data-slides-per-page="1"] .squisq-print-slide-cell {
|
|
9463
|
+
box-shadow: none;
|
|
9464
|
+
}
|
|
9465
|
+
.squisq-print-slide-frame,
|
|
9466
|
+
.squisq-print-slide-frame > .block-svg {
|
|
9467
|
+
display: block;
|
|
9468
|
+
width: 100%;
|
|
9469
|
+
height: 100%;
|
|
9470
|
+
min-width: 0;
|
|
9471
|
+
min-height: 0;
|
|
9472
|
+
}
|
|
9473
|
+
.squisq-print-page-paper,
|
|
9474
|
+
.squisq-print-document-paper {
|
|
9475
|
+
width: min(8.5in, 100%);
|
|
9476
|
+
min-height: 11in;
|
|
9477
|
+
margin: 0 auto;
|
|
9478
|
+
overflow: hidden;
|
|
9479
|
+
background: #fff;
|
|
9480
|
+
box-shadow: 0 8px 28px rgba(15, 23, 42, 0.22);
|
|
9481
|
+
}
|
|
9482
|
+
.squisq-print-page-paper .squisq-print-linear {
|
|
9483
|
+
min-height: 11in;
|
|
9484
|
+
}
|
|
9485
|
+
.squisq-print-document-paper > iframe {
|
|
9486
|
+
min-height: 11in;
|
|
9487
|
+
}
|
|
9488
|
+
.squisq-print-empty {
|
|
9489
|
+
margin: auto;
|
|
9490
|
+
color: #6b7280;
|
|
9491
|
+
font: 500 14px/1.4 var(--squisq-ux-font, sans-serif);
|
|
9492
|
+
}
|
|
9493
|
+
@container squisq-toolbar (max-width: 820px) {
|
|
9494
|
+
.squisq-print-trigger > span,
|
|
9495
|
+
.squisq-print-toolbar-title,
|
|
9496
|
+
.squisq-print-density-label {
|
|
9497
|
+
display: none;
|
|
9498
|
+
}
|
|
9499
|
+
}
|
|
9500
|
+
@media (max-width: 760px) {
|
|
9501
|
+
.squisq-print-trigger > span,
|
|
9502
|
+
.squisq-print-toolbar-title {
|
|
9503
|
+
display: none;
|
|
9504
|
+
}
|
|
9505
|
+
.squisq-print-density-button {
|
|
9506
|
+
padding-inline: 6px;
|
|
9507
|
+
font-size: 10px;
|
|
9508
|
+
}
|
|
9509
|
+
.squisq-print-preview {
|
|
9510
|
+
padding: 16px;
|
|
9511
|
+
}
|
|
9512
|
+
}
|
|
9294
9513
|
.squisq-preview-status {
|
|
9295
9514
|
display: flex;
|
|
9296
9515
|
align-items: center;
|
|
@@ -9765,6 +9984,107 @@
|
|
|
9765
9984
|
.squisq-editor-shell[data-theme=dark] .squisq-preview-player {
|
|
9766
9985
|
background: #111827;
|
|
9767
9986
|
}
|
|
9987
|
+
@media print {
|
|
9988
|
+
body.squisq-printing {
|
|
9989
|
+
margin: 0 !important;
|
|
9990
|
+
background: #fff !important;
|
|
9991
|
+
}
|
|
9992
|
+
body.squisq-printing * {
|
|
9993
|
+
visibility: hidden !important;
|
|
9994
|
+
}
|
|
9995
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true],
|
|
9996
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true] * {
|
|
9997
|
+
visibility: visible !important;
|
|
9998
|
+
}
|
|
9999
|
+
body.squisq-printing [data-squisq-print-ancestor=true] {
|
|
10000
|
+
position: static !important;
|
|
10001
|
+
display: block !important;
|
|
10002
|
+
width: auto !important;
|
|
10003
|
+
height: auto !important;
|
|
10004
|
+
min-width: 0 !important;
|
|
10005
|
+
min-height: 0 !important;
|
|
10006
|
+
max-width: none !important;
|
|
10007
|
+
max-height: none !important;
|
|
10008
|
+
margin: 0 !important;
|
|
10009
|
+
padding: 0 !important;
|
|
10010
|
+
overflow: visible !important;
|
|
10011
|
+
contain: none !important;
|
|
10012
|
+
transform: none !important;
|
|
10013
|
+
}
|
|
10014
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true] {
|
|
10015
|
+
position: absolute !important;
|
|
10016
|
+
inset: 0 auto auto 0 !important;
|
|
10017
|
+
display: block !important;
|
|
10018
|
+
width: 100% !important;
|
|
10019
|
+
height: auto !important;
|
|
10020
|
+
min-width: 0 !important;
|
|
10021
|
+
min-height: 0 !important;
|
|
10022
|
+
max-width: none !important;
|
|
10023
|
+
max-height: none !important;
|
|
10024
|
+
overflow: visible !important;
|
|
10025
|
+
background: #fff !important;
|
|
10026
|
+
}
|
|
10027
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true] > .squisq-editor-header,
|
|
10028
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true] > .squisq-status-bar,
|
|
10029
|
+
body.squisq-printing .squisq-editor-shell[data-print-preview=true] > .squisq-timeline,
|
|
10030
|
+
body.squisq-printing .squisq-media-bin,
|
|
10031
|
+
body.squisq-printing .squisq-custom-theme-pane,
|
|
10032
|
+
body.squisq-printing .squisq-presentation-exit,
|
|
10033
|
+
body.squisq-printing .squisq-presentation-error {
|
|
10034
|
+
display: none !important;
|
|
10035
|
+
}
|
|
10036
|
+
body.squisq-printing .squisq-editor-content,
|
|
10037
|
+
body.squisq-printing .squisq-editor-content > div,
|
|
10038
|
+
body.squisq-printing .squisq-preview-container,
|
|
10039
|
+
body.squisq-printing .squisq-preview-player,
|
|
10040
|
+
body.squisq-printing .squisq-print-preview {
|
|
10041
|
+
display: block !important;
|
|
10042
|
+
width: 100% !important;
|
|
10043
|
+
height: auto !important;
|
|
10044
|
+
min-height: 0 !important;
|
|
10045
|
+
max-height: none !important;
|
|
10046
|
+
padding: 0 !important;
|
|
10047
|
+
overflow: visible !important;
|
|
10048
|
+
background: #fff !important;
|
|
10049
|
+
}
|
|
10050
|
+
body.squisq-printing .squisq-print-sheet {
|
|
10051
|
+
width: 100vw !important;
|
|
10052
|
+
height: 100vh !important;
|
|
10053
|
+
aspect-ratio: auto !important;
|
|
10054
|
+
margin: 0 !important;
|
|
10055
|
+
box-shadow: none !important;
|
|
10056
|
+
break-after: page;
|
|
10057
|
+
page-break-after: always;
|
|
10058
|
+
}
|
|
10059
|
+
body.squisq-printing .squisq-print-sheet:last-of-type {
|
|
10060
|
+
break-after: auto;
|
|
10061
|
+
page-break-after: auto;
|
|
10062
|
+
}
|
|
10063
|
+
body.squisq-printing .squisq-print-page-paper {
|
|
10064
|
+
width: 100% !important;
|
|
10065
|
+
min-height: 0 !important;
|
|
10066
|
+
margin: 0 !important;
|
|
10067
|
+
overflow: visible !important;
|
|
10068
|
+
box-shadow: none !important;
|
|
10069
|
+
}
|
|
10070
|
+
body.squisq-printing .squisq-print-linear {
|
|
10071
|
+
width: 100% !important;
|
|
10072
|
+
height: auto !important;
|
|
10073
|
+
min-height: 0 !important;
|
|
10074
|
+
overflow: visible !important;
|
|
10075
|
+
}
|
|
10076
|
+
body.squisq-printing .squisq-linear-section,
|
|
10077
|
+
body.squisq-printing .squisq-page-card,
|
|
10078
|
+
body.squisq-printing .squisq-page-feature,
|
|
10079
|
+
body.squisq-printing .squisq-page-gallery-item {
|
|
10080
|
+
break-inside: avoid;
|
|
10081
|
+
page-break-inside: avoid;
|
|
10082
|
+
}
|
|
10083
|
+
body.squisq-printing video,
|
|
10084
|
+
body.squisq-printing audio {
|
|
10085
|
+
animation: none !important;
|
|
10086
|
+
}
|
|
10087
|
+
}
|
|
9768
10088
|
.squisq-editor-shell[data-theme=dark] .squisq-preview-status {
|
|
9769
10089
|
color: #6b7280;
|
|
9770
10090
|
}
|
|
@@ -10794,8 +11114,13 @@
|
|
|
10794
11114
|
right: 0;
|
|
10795
11115
|
z-index: 90;
|
|
10796
11116
|
width: 360px;
|
|
10797
|
-
max-width:
|
|
11117
|
+
max-width: calc(100vw - 16px);
|
|
11118
|
+
max-height: calc(100vh - 16px);
|
|
10798
11119
|
margin-top: 4px;
|
|
11120
|
+
box-sizing: border-box;
|
|
11121
|
+
display: flex;
|
|
11122
|
+
flex-direction: column;
|
|
11123
|
+
container-type: inline-size;
|
|
10799
11124
|
background: var(--squisq-bg, #fff);
|
|
10800
11125
|
border: 1px solid var(--squisq-border, #e5e7eb);
|
|
10801
11126
|
border-radius: 6px;
|
|
@@ -10813,7 +11138,9 @@
|
|
|
10813
11138
|
font-weight: 600;
|
|
10814
11139
|
}
|
|
10815
11140
|
.squisq-theme-customizer-body {
|
|
11141
|
+
min-height: 0;
|
|
10816
11142
|
max-height: 70vh;
|
|
11143
|
+
flex: 0 1 auto;
|
|
10817
11144
|
overflow-y: auto;
|
|
10818
11145
|
padding: 8px 0;
|
|
10819
11146
|
}
|
|
@@ -10871,6 +11198,8 @@
|
|
|
10871
11198
|
cursor: pointer;
|
|
10872
11199
|
}
|
|
10873
11200
|
.squisq-theme-customizer-input {
|
|
11201
|
+
box-sizing: border-box;
|
|
11202
|
+
min-width: 0;
|
|
10874
11203
|
width: 100%;
|
|
10875
11204
|
padding: 4px 6px;
|
|
10876
11205
|
border: 1px solid var(--squisq-border, #e5e7eb);
|
|
@@ -10929,6 +11258,35 @@
|
|
|
10929
11258
|
.squisq-theme-customizer-button--primary:hover {
|
|
10930
11259
|
background: #1d4ed8;
|
|
10931
11260
|
}
|
|
11261
|
+
@container (max-width: 280px) {
|
|
11262
|
+
.squisq-theme-customizer-row {
|
|
11263
|
+
grid-template-columns: 28px minmax(0, 1fr);
|
|
11264
|
+
align-items: start;
|
|
11265
|
+
gap: 4px 8px;
|
|
11266
|
+
}
|
|
11267
|
+
.squisq-theme-customizer-row-label {
|
|
11268
|
+
grid-column: 1 / -1;
|
|
11269
|
+
}
|
|
11270
|
+
.squisq-theme-customizer-row > .squisq-theme-customizer-input:not(.squisq-theme-customizer-input--hex) {
|
|
11271
|
+
grid-column: 1 / -1;
|
|
11272
|
+
}
|
|
11273
|
+
.squisq-theme-customizer-row--font {
|
|
11274
|
+
grid-template-columns: minmax(0, 1fr);
|
|
11275
|
+
}
|
|
11276
|
+
.squisq-theme-customizer-row--font > input,
|
|
11277
|
+
.squisq-theme-customizer-row--font > select:not(:first-of-type) {
|
|
11278
|
+
grid-column: 1;
|
|
11279
|
+
margin-top: 0;
|
|
11280
|
+
}
|
|
11281
|
+
.squisq-theme-customizer-scale {
|
|
11282
|
+
flex-wrap: wrap;
|
|
11283
|
+
margin-left: 0;
|
|
11284
|
+
}
|
|
11285
|
+
.squisq-theme-import-drop {
|
|
11286
|
+
align-items: stretch;
|
|
11287
|
+
flex-direction: column;
|
|
11288
|
+
}
|
|
11289
|
+
}
|
|
10932
11290
|
.squisq-theme-import {
|
|
10933
11291
|
display: flex;
|
|
10934
11292
|
flex-direction: column;
|
|
@@ -12523,6 +12881,8 @@
|
|
|
12523
12881
|
display: inline-flex;
|
|
12524
12882
|
align-items: center;
|
|
12525
12883
|
gap: 5px;
|
|
12884
|
+
box-sizing: border-box;
|
|
12885
|
+
height: 29px;
|
|
12526
12886
|
padding: 3px 8px;
|
|
12527
12887
|
font-size: 12px;
|
|
12528
12888
|
font-weight: 500;
|
|
@@ -14392,14 +14752,17 @@
|
|
|
14392
14752
|
max-width: none !important;
|
|
14393
14753
|
margin: 0 auto;
|
|
14394
14754
|
}
|
|
14395
|
-
.squisq-mermaid-svg [data-squisq-node-id]
|
|
14755
|
+
.squisq-mermaid-svg [data-squisq-node-id],
|
|
14756
|
+
.squisq-mermaid-svg [data-squisq-text-id] {
|
|
14396
14757
|
cursor: pointer;
|
|
14397
14758
|
}
|
|
14398
|
-
.squisq-mermaid-svg [data-squisq-node-id]:focus-visible
|
|
14759
|
+
.squisq-mermaid-svg [data-squisq-node-id]:focus-visible,
|
|
14760
|
+
.squisq-mermaid-svg [data-squisq-text-id]:focus-visible {
|
|
14399
14761
|
outline: none;
|
|
14400
14762
|
filter: drop-shadow(0 0 4px #4f46e5);
|
|
14401
14763
|
}
|
|
14402
|
-
.squisq-mermaid-svg .squisq-mermaid-node-selected
|
|
14764
|
+
.squisq-mermaid-svg .squisq-mermaid-node-selected,
|
|
14765
|
+
.squisq-mermaid-svg .squisq-mermaid-text-selected {
|
|
14403
14766
|
filter: drop-shadow(0 0 5px #4f46e5);
|
|
14404
14767
|
}
|
|
14405
14768
|
.squisq-mermaid-svg .squisq-mermaid-connect-source {
|
|
@@ -14855,8 +15218,6 @@
|
|
|
14855
15218
|
display: flex;
|
|
14856
15219
|
min-height: 34px;
|
|
14857
15220
|
align-items: center;
|
|
14858
|
-
justify-content: space-between;
|
|
14859
|
-
gap: 12px;
|
|
14860
15221
|
padding: 0 10px;
|
|
14861
15222
|
border-bottom: 1px solid var(--squisq-border, #d1d5db);
|
|
14862
15223
|
background: var(--squisq-surface-muted, #f8fafc);
|
|
@@ -14873,19 +15234,6 @@
|
|
|
14873
15234
|
color: var(--squisq-text, #334155);
|
|
14874
15235
|
font-weight: 600;
|
|
14875
15236
|
}
|
|
14876
|
-
.squisq-code-snippet-header code {
|
|
14877
|
-
overflow: hidden;
|
|
14878
|
-
color: inherit;
|
|
14879
|
-
font-family:
|
|
14880
|
-
ui-monospace,
|
|
14881
|
-
SFMono-Regular,
|
|
14882
|
-
Menlo,
|
|
14883
|
-
Consolas,
|
|
14884
|
-
"Liberation Mono",
|
|
14885
|
-
monospace;
|
|
14886
|
-
text-overflow: ellipsis;
|
|
14887
|
-
white-space: nowrap;
|
|
14888
|
-
}
|
|
14889
15237
|
.squisq-code-snippet-editor {
|
|
14890
15238
|
position: relative;
|
|
14891
15239
|
min-height: 0;
|