@puckeditor/plugin-pages 0.6.1-canary.9c67fdb1 → 0.6.1-canary.9cefc9aa
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 +259 -235
- package/dist/index.d.mts +23 -0
- package/dist/index.d.ts +23 -0
- package/dist/index.js +10203 -10296
- package/dist/index.mjs +10246 -10208
- package/package.json +4 -7
- package/dist/api/edit.js +0 -163
- package/dist/api/edit.mjs +0 -58
- package/dist/api/view.js +0 -114
- package/dist/api/view.mjs +0 -8
- package/dist/chunk-BZD7XJC3.mjs +0 -6
- package/dist/chunk-CFUMG5V5.mjs +0 -26
- package/dist/chunk-UYZYALB5.mjs +0 -128
- package/dist/server.js +0 -129
- package/dist/server.mjs +0 -13
package/dist/index.css
CHANGED
|
@@ -1,3 +1,142 @@
|
|
|
1
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Toast/Toast.module.css/#css-module-data */
|
|
2
|
+
._Viewport_13rvx_1 {
|
|
3
|
+
position: fixed;
|
|
4
|
+
width: 250px;
|
|
5
|
+
margin: 0 auto;
|
|
6
|
+
bottom: 1rem;
|
|
7
|
+
right: 1rem;
|
|
8
|
+
left: auto;
|
|
9
|
+
top: auto;
|
|
10
|
+
@media (min-width: 500px) {
|
|
11
|
+
bottom: 2rem;
|
|
12
|
+
right: 2rem;
|
|
13
|
+
width: 300px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
._Toast_13rvx_17 {
|
|
17
|
+
--gap: 0.75rem;
|
|
18
|
+
--offset-y: calc( var(--toast-offset-y) * -1 + (var(--toast-index) * var(--gap) * -1) + var(--toast-swipe-movement-y) );
|
|
19
|
+
position: absolute;
|
|
20
|
+
right: 0;
|
|
21
|
+
margin: 0 auto;
|
|
22
|
+
box-sizing: border-box;
|
|
23
|
+
background: var(--puck-color-white);
|
|
24
|
+
color: var(--puck-color-grey-01);
|
|
25
|
+
border: 1px solid var(--puck-color-grey-09);
|
|
26
|
+
padding: 1rem;
|
|
27
|
+
width: 100%;
|
|
28
|
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
29
|
+
background-clip: padding-box;
|
|
30
|
+
border-radius: 0.5rem;
|
|
31
|
+
bottom: 0;
|
|
32
|
+
left: auto;
|
|
33
|
+
margin-right: 0;
|
|
34
|
+
-webkit-user-select: none;
|
|
35
|
+
user-select: none;
|
|
36
|
+
transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
|
|
37
|
+
cursor: default;
|
|
38
|
+
z-index: calc(1000 - var(--toast-index));
|
|
39
|
+
transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y) + (min(var(--toast-index), 10) * -20%))) scale(calc(max(0, 1 - (var(--toast-index) * 0.1))));
|
|
40
|
+
&::after {
|
|
41
|
+
content: "";
|
|
42
|
+
position: absolute;
|
|
43
|
+
width: 100%;
|
|
44
|
+
top: 100%;
|
|
45
|
+
left: 0;
|
|
46
|
+
height: calc(var(--gap) + 1px);
|
|
47
|
+
}
|
|
48
|
+
&[data-expanded] {
|
|
49
|
+
transform: translateX(var(--toast-swipe-movement-x)) translateY(var(--offset-y));
|
|
50
|
+
}
|
|
51
|
+
&[data-starting-style],
|
|
52
|
+
&[data-ending-style] {
|
|
53
|
+
transform: translateY(150%);
|
|
54
|
+
}
|
|
55
|
+
&[data-limited] {
|
|
56
|
+
opacity: 0;
|
|
57
|
+
}
|
|
58
|
+
&[data-ending-style] {
|
|
59
|
+
opacity: 0;
|
|
60
|
+
&[data-swipe-direction=up] {
|
|
61
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) - 150%));
|
|
62
|
+
}
|
|
63
|
+
&[data-swipe-direction=left] {
|
|
64
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) - 150%)) translateY(var(--offset-y));
|
|
65
|
+
}
|
|
66
|
+
&[data-swipe-direction=right] {
|
|
67
|
+
transform: translateX(calc(var(--toast-swipe-movement-x) + 150%)) translateY(var(--offset-y));
|
|
68
|
+
}
|
|
69
|
+
&[data-swipe-direction=down] {
|
|
70
|
+
transform: translateY(calc(var(--toast-swipe-movement-y) + 150%));
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
._Title_13rvx_95 {
|
|
75
|
+
font-weight: 500;
|
|
76
|
+
font-size: 0.975rem;
|
|
77
|
+
line-height: 1.25rem;
|
|
78
|
+
margin: 0;
|
|
79
|
+
}
|
|
80
|
+
._Description_13rvx_102 {
|
|
81
|
+
font-size: 0.925rem;
|
|
82
|
+
line-height: 1.25rem;
|
|
83
|
+
margin: 0;
|
|
84
|
+
margin-top: 0.25rem;
|
|
85
|
+
}
|
|
86
|
+
._Action_13rvx_109 {
|
|
87
|
+
appearance: none;
|
|
88
|
+
background: var(--puck-color-azure-04);
|
|
89
|
+
border: 1px solid transparent;
|
|
90
|
+
border-radius: 8px;
|
|
91
|
+
color: var(--puck-color-white);
|
|
92
|
+
display: inline-flex;
|
|
93
|
+
align-items: center;
|
|
94
|
+
gap: 8px;
|
|
95
|
+
letter-spacing: 0.05ch;
|
|
96
|
+
font-family: var(--puck-font-family);
|
|
97
|
+
font-size: 14px;
|
|
98
|
+
font-weight: 400;
|
|
99
|
+
box-sizing: border-box;
|
|
100
|
+
line-height: 1;
|
|
101
|
+
text-align: center;
|
|
102
|
+
text-decoration: none;
|
|
103
|
+
transition: background-color 50ms ease-in;
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
white-space: nowrap;
|
|
106
|
+
margin: 8px 0 0;
|
|
107
|
+
padding: 8px 12px;
|
|
108
|
+
}
|
|
109
|
+
@media (hover: hover) and (pointer: fine) {
|
|
110
|
+
._Action_13rvx_109:hover {
|
|
111
|
+
background-color: var(--puck-color-azure-03);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
._Action_13rvx_109:active {
|
|
115
|
+
background-color: var(--puck-color-azure-02);
|
|
116
|
+
}
|
|
117
|
+
._Close_13rvx_143 {
|
|
118
|
+
position: absolute;
|
|
119
|
+
top: 0.5rem;
|
|
120
|
+
right: 0.5rem;
|
|
121
|
+
border: none;
|
|
122
|
+
background: transparent;
|
|
123
|
+
width: 1.25rem;
|
|
124
|
+
height: 1.25rem;
|
|
125
|
+
display: flex;
|
|
126
|
+
align-items: center;
|
|
127
|
+
justify-content: center;
|
|
128
|
+
border-radius: 0.25rem;
|
|
129
|
+
}
|
|
130
|
+
@media (hover: hover) and (pointer: fine) {
|
|
131
|
+
._Close_13rvx_143:hover {
|
|
132
|
+
background-color: var(--puck-color-grey-11);
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
._Icon_13rvx_163 {
|
|
136
|
+
width: 1rem;
|
|
137
|
+
height: 1rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
1
140
|
/* ../platform-client/styles/color.css */
|
|
2
141
|
:root {
|
|
3
142
|
--puck-color-rose-01: #4a001c;
|
|
@@ -141,7 +280,7 @@ p {
|
|
|
141
280
|
margin: 0;
|
|
142
281
|
}
|
|
143
282
|
|
|
144
|
-
/* css-module:/home/runner/work/
|
|
283
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/ActionModal/ActionModal.module.css/#css-module-data */
|
|
145
284
|
._ActionModal_r3pvy_1 {
|
|
146
285
|
display: block;
|
|
147
286
|
min-width: 356px;
|
|
@@ -168,7 +307,7 @@ p {
|
|
|
168
307
|
padding: 16px 24px;
|
|
169
308
|
}
|
|
170
309
|
|
|
171
|
-
/* css-module:/home/runner/work/
|
|
310
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Modal/Modal.module.css/#css-module-data */
|
|
172
311
|
._Modal-background_1bedq_1 {
|
|
173
312
|
align-items: center;
|
|
174
313
|
display: flex;
|
|
@@ -197,8 +336,8 @@ p {
|
|
|
197
336
|
overflow: auto;
|
|
198
337
|
}
|
|
199
338
|
|
|
200
|
-
/* css-module:/home/runner/work/
|
|
201
|
-
.
|
|
339
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Button/Button.module.css/#css-module-data */
|
|
340
|
+
._Button_1tog0_1 {
|
|
202
341
|
appearance: none;
|
|
203
342
|
background: none;
|
|
204
343
|
border: 1px solid transparent;
|
|
@@ -220,85 +359,84 @@ p {
|
|
|
220
359
|
white-space: nowrap;
|
|
221
360
|
margin: 0;
|
|
222
361
|
}
|
|
223
|
-
.
|
|
224
|
-
.
|
|
362
|
+
._Button_1tog0_1:hover,
|
|
363
|
+
._Button_1tog0_1:active {
|
|
225
364
|
transition: none;
|
|
226
365
|
}
|
|
227
|
-
.
|
|
366
|
+
._Button_1tog0_1:focus-visible {
|
|
228
367
|
outline: 2px solid var(--puck-color-azure-05);
|
|
229
368
|
outline-offset: 2px;
|
|
230
369
|
}
|
|
231
|
-
._Button--
|
|
370
|
+
._Button--medium_1tog0_34 {
|
|
232
371
|
min-height: 34px;
|
|
233
372
|
padding-bottom: 7px;
|
|
234
373
|
padding-left: 15px;
|
|
235
374
|
padding-right: 15px;
|
|
236
375
|
padding-top: 7px;
|
|
237
376
|
}
|
|
238
|
-
._Button--
|
|
377
|
+
._Button--large_1tog0_42 {
|
|
239
378
|
padding-bottom: 11px;
|
|
240
379
|
padding-left: 19px;
|
|
241
380
|
padding-right: 19px;
|
|
242
381
|
padding-top: 11px;
|
|
243
382
|
}
|
|
244
|
-
._Button--
|
|
383
|
+
._Button--brand_1tog0_49 {
|
|
245
384
|
background-image:
|
|
246
385
|
linear-gradient(
|
|
247
386
|
210deg,
|
|
248
387
|
var(--puck-color-azure-01) 0%,
|
|
249
|
-
var(--puck-color-azure-03)
|
|
250
|
-
var(--puck-color-red-05)
|
|
388
|
+
var(--puck-color-azure-03) 30%,
|
|
389
|
+
var(--puck-color-red-05) 130%);
|
|
251
390
|
border: none;
|
|
252
|
-
border-radius: 48px;
|
|
253
391
|
}
|
|
254
392
|
@media (hover: hover) and (pointer: fine) {
|
|
255
|
-
._Button--
|
|
393
|
+
._Button--brand_1tog0_49:hover {
|
|
256
394
|
opacity: 0.8;
|
|
257
395
|
}
|
|
258
396
|
}
|
|
259
|
-
._Button--
|
|
397
|
+
._Button--brand_1tog0_49:active {
|
|
260
398
|
opacity: 0.8;
|
|
261
399
|
}
|
|
262
|
-
._Button--
|
|
400
|
+
._Button--primary_1tog0_69 {
|
|
263
401
|
background: var(--puck-color-azure-04);
|
|
264
402
|
}
|
|
265
403
|
@media (hover: hover) and (pointer: fine) {
|
|
266
|
-
._Button--
|
|
404
|
+
._Button--primary_1tog0_69:hover {
|
|
267
405
|
background-color: var(--puck-color-azure-03);
|
|
268
406
|
}
|
|
269
407
|
}
|
|
270
|
-
._Button--
|
|
408
|
+
._Button--primary_1tog0_69:active {
|
|
271
409
|
background-color: var(--puck-color-azure-02);
|
|
272
410
|
}
|
|
273
|
-
._Button--
|
|
411
|
+
._Button--secondary_1tog0_83 {
|
|
274
412
|
border: 1px solid currentColor;
|
|
275
413
|
color: currentColor;
|
|
276
414
|
}
|
|
277
415
|
@media (hover: hover) and (pointer: fine) {
|
|
278
|
-
._Button--
|
|
416
|
+
._Button--secondary_1tog0_83:hover {
|
|
279
417
|
background-color: var(--puck-color-azure-12);
|
|
280
418
|
color: var(--puck-color-black);
|
|
281
419
|
}
|
|
282
420
|
}
|
|
283
|
-
._Button--
|
|
421
|
+
._Button--secondary_1tog0_83:active {
|
|
284
422
|
background-color: var(--puck-color-azure-11);
|
|
285
423
|
color: var(--puck-color-black);
|
|
286
424
|
}
|
|
287
|
-
._Button--
|
|
425
|
+
._Button--danger_1tog0_100 {
|
|
288
426
|
background: var(--puck-color-red-04);
|
|
289
427
|
}
|
|
290
428
|
@media (hover: hover) and (pointer: fine) {
|
|
291
|
-
._Button--
|
|
429
|
+
._Button--danger_1tog0_100:hover {
|
|
292
430
|
background-color: var(--puck-color-red-03);
|
|
293
431
|
}
|
|
294
432
|
}
|
|
295
|
-
._Button--
|
|
433
|
+
._Button--danger_1tog0_100:active {
|
|
296
434
|
background-color: var(--puck-color-red-02);
|
|
297
435
|
}
|
|
298
|
-
._Button--
|
|
436
|
+
._Button--flush_1tog0_114 {
|
|
299
437
|
border-radius: 0;
|
|
300
438
|
}
|
|
301
|
-
._Button--
|
|
439
|
+
._Button--ghost_1tog0_118 {
|
|
302
440
|
align-items: center;
|
|
303
441
|
background-color: transparent;
|
|
304
442
|
border: none;
|
|
@@ -307,30 +445,30 @@ p {
|
|
|
307
445
|
display: flex;
|
|
308
446
|
}
|
|
309
447
|
@media (hover: hover) and (pointer: fine) {
|
|
310
|
-
._Button--
|
|
448
|
+
._Button--ghost_1tog0_118:hover {
|
|
311
449
|
background-color: var(--puck-color-grey-11);
|
|
312
450
|
color: var(--puck-color-azure-04);
|
|
313
451
|
cursor: pointer;
|
|
314
452
|
}
|
|
315
453
|
}
|
|
316
|
-
._Button--
|
|
317
|
-
._Button--
|
|
318
|
-
._Button--
|
|
319
|
-
._Button--
|
|
454
|
+
._Button--disabled_1tog0_135,
|
|
455
|
+
._Button--disabled_1tog0_135:hover,
|
|
456
|
+
._Button--secondary_1tog0_83._Button--disabled_1tog0_135,
|
|
457
|
+
._Button--secondary_1tog0_83._Button--disabled_1tog0_135:hover {
|
|
320
458
|
background-color: var(--puck-color-grey-12);
|
|
321
459
|
border-color: var(--puck-color-grey-08);
|
|
322
460
|
color: var(--puck-color-grey-07);
|
|
323
461
|
cursor: not-allowed;
|
|
324
462
|
}
|
|
325
|
-
._Button--
|
|
463
|
+
._Button--fullWidth_1tog0_145 {
|
|
326
464
|
justify-content: center;
|
|
327
465
|
width: 100%;
|
|
328
466
|
}
|
|
329
|
-
._Button-
|
|
467
|
+
._Button-spinner_1tog0_150 {
|
|
330
468
|
padding-left: 8px;
|
|
331
469
|
}
|
|
332
470
|
|
|
333
|
-
/* css-module:/home/runner/work/
|
|
471
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Loader/styles.module.css/#css-module-data */
|
|
334
472
|
@keyframes _loader-animation_nacdm_1 {
|
|
335
473
|
0% {
|
|
336
474
|
transform: rotate(0deg) scale(1);
|
|
@@ -352,75 +490,83 @@ p {
|
|
|
352
490
|
animation-fill-mode: both;
|
|
353
491
|
}
|
|
354
492
|
|
|
355
|
-
/* css-module:/home/runner/work/
|
|
356
|
-
.
|
|
493
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Heading/Heading.module.css/#css-module-data */
|
|
494
|
+
._Heading_1sfil_1 {
|
|
357
495
|
display: block;
|
|
496
|
+
font-family: var(--heading-font-family, var(--puck-font-family));
|
|
358
497
|
font-weight: 700;
|
|
359
498
|
margin: 0;
|
|
360
499
|
}
|
|
361
|
-
.
|
|
500
|
+
._Heading_1sfil_1 b {
|
|
501
|
+
font-weight: 700;
|
|
502
|
+
}
|
|
503
|
+
._Heading--brand_1sfil_12,
|
|
504
|
+
._Heading--brand_1sfil_12 * {
|
|
505
|
+
font-weight: 500;
|
|
506
|
+
letter-spacing: -7%;
|
|
507
|
+
line-height: 1;
|
|
508
|
+
}
|
|
509
|
+
._Heading--brand_1sfil_12 b {
|
|
362
510
|
font-weight: 700;
|
|
363
511
|
}
|
|
364
|
-
._Heading--
|
|
512
|
+
._Heading--xxxxl_1sfil_23 {
|
|
365
513
|
font-size: var(--puck-font-size-xxxl);
|
|
366
514
|
}
|
|
367
|
-
._Heading--
|
|
515
|
+
._Heading--xxxl_1sfil_27 {
|
|
368
516
|
font-size: var(--puck-font-size-xxl);
|
|
369
517
|
}
|
|
370
|
-
._Heading--
|
|
518
|
+
._Heading--xxl_1sfil_31 {
|
|
371
519
|
font-size: var(--puck-font-size-xl);
|
|
372
520
|
}
|
|
373
|
-
._Heading--
|
|
521
|
+
._Heading--xl_1sfil_35 {
|
|
374
522
|
font-size: var(--puck-font-size-l);
|
|
375
523
|
}
|
|
376
|
-
._Heading--
|
|
524
|
+
._Heading--l_1sfil_39 {
|
|
377
525
|
font-size: var(--puck-font-size-m);
|
|
378
526
|
}
|
|
379
|
-
._Heading--
|
|
527
|
+
._Heading--m_1sfil_43 {
|
|
380
528
|
font-size: var(--puck-font-size-s);
|
|
381
529
|
}
|
|
382
|
-
._Heading--
|
|
530
|
+
._Heading--s_1sfil_47 {
|
|
383
531
|
font-size: var(--puck-font-size-xs);
|
|
384
532
|
}
|
|
385
|
-
._Heading--
|
|
533
|
+
._Heading--xs_1sfil_51 {
|
|
386
534
|
font-size: var(--puck-font-size-xxs);
|
|
387
535
|
}
|
|
388
|
-
._Heading--
|
|
536
|
+
._Heading--xxs_1sfil_55 {
|
|
389
537
|
font-size: var(--puck-font-size-xxs);
|
|
390
538
|
}
|
|
391
539
|
@media (min-width: 768px) {
|
|
392
|
-
._Heading--
|
|
540
|
+
._Heading--xxxxl_1sfil_23 {
|
|
393
541
|
font-size: var(--puck-font-size-xxxxl);
|
|
394
|
-
letter-spacing: 0.08ch;
|
|
395
|
-
font-weight: 800;
|
|
396
542
|
}
|
|
397
|
-
._Heading--
|
|
543
|
+
._Heading--xxxl_1sfil_27 {
|
|
398
544
|
font-size: var(--puck-font-size-xxxl);
|
|
399
545
|
}
|
|
400
|
-
._Heading--
|
|
546
|
+
._Heading--xxl_1sfil_31 {
|
|
401
547
|
font-size: var(--puck-font-size-xxl);
|
|
402
548
|
}
|
|
403
|
-
._Heading--
|
|
549
|
+
._Heading--xl_1sfil_35 {
|
|
404
550
|
font-size: var(--puck-font-size-xl);
|
|
405
551
|
}
|
|
406
|
-
._Heading--
|
|
552
|
+
._Heading--l_1sfil_39 {
|
|
407
553
|
font-size: var(--puck-font-size-l);
|
|
408
554
|
}
|
|
409
|
-
._Heading--
|
|
555
|
+
._Heading--m_1sfil_43 {
|
|
410
556
|
font-size: var(--puck-font-size-m);
|
|
411
557
|
}
|
|
412
|
-
._Heading--
|
|
558
|
+
._Heading--s_1sfil_47 {
|
|
413
559
|
font-size: var(--puck-font-size-s);
|
|
414
560
|
}
|
|
415
|
-
._Heading--
|
|
561
|
+
._Heading--xs_1sfil_51 {
|
|
416
562
|
font-size: var(--puck-font-size-xs);
|
|
417
563
|
}
|
|
418
|
-
._Heading--
|
|
564
|
+
._Heading--xxs_1sfil_55 {
|
|
419
565
|
font-size: var(--puck-font-size-xxs);
|
|
420
566
|
}
|
|
421
567
|
}
|
|
422
568
|
|
|
423
|
-
/* css-module:/home/runner/work/
|
|
569
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Align/Align.module.css/#css-module-data */
|
|
424
570
|
._Align_oewlu_1 {
|
|
425
571
|
align-items: flex-start;
|
|
426
572
|
display: flex;
|
|
@@ -444,7 +590,7 @@ p {
|
|
|
444
590
|
position: relative;
|
|
445
591
|
}
|
|
446
592
|
|
|
447
|
-
/* css-module:/home/runner/work/
|
|
593
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/AutoForm/AutoForm.module.css/#css-module-data */
|
|
448
594
|
._AutoForm_1vmh9_1 {
|
|
449
595
|
display: flex;
|
|
450
596
|
gap: 16px;
|
|
@@ -455,7 +601,7 @@ p {
|
|
|
455
601
|
padding: 0px !important;
|
|
456
602
|
}
|
|
457
603
|
|
|
458
|
-
/* css-module:/home/runner/work/
|
|
604
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Card/Card.module.css/#css-module-data */
|
|
459
605
|
._Card_rpnal_1 {
|
|
460
606
|
background-color: white;
|
|
461
607
|
border: 1px solid var(--puck-color-grey-08);
|
|
@@ -495,7 +641,7 @@ p {
|
|
|
495
641
|
color: var(--puck-color-azure-04);
|
|
496
642
|
}
|
|
497
643
|
|
|
498
|
-
/* css-module:/home/runner/work/
|
|
644
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/CardSelector/styles.module.css/#css-module-data */
|
|
499
645
|
._CardSelector_1ogry_1 {
|
|
500
646
|
display: grid;
|
|
501
647
|
gap: 16px;
|
|
@@ -533,7 +679,7 @@ p {
|
|
|
533
679
|
cursor: pointer;
|
|
534
680
|
}
|
|
535
681
|
|
|
536
|
-
/* css-module:/home/runner/work/
|
|
682
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Code/Code.module.css/#css-module-data */
|
|
537
683
|
._Code_d4378_1 {
|
|
538
684
|
border-radius: 8px;
|
|
539
685
|
position: relative;
|
|
@@ -653,7 +799,7 @@ p {
|
|
|
653
799
|
background: var(--puck-color-grey-11);
|
|
654
800
|
}
|
|
655
801
|
|
|
656
|
-
/* css-module:/home/runner/work/
|
|
802
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/IconButton/IconButton.module.css/#css-module-data */
|
|
657
803
|
._IconButton_thegm_1 {
|
|
658
804
|
align-items: center;
|
|
659
805
|
background: transparent;
|
|
@@ -698,7 +844,7 @@ p {
|
|
|
698
844
|
color: var(--puck-color-grey-07);
|
|
699
845
|
}
|
|
700
846
|
|
|
701
|
-
/* css-module:/home/runner/work/
|
|
847
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/InfoBar/InfoBar.module.css/#css-module-data */
|
|
702
848
|
._InfoBar_kchdj_1 {
|
|
703
849
|
border: 1px solid var(--puck-color-grey-10);
|
|
704
850
|
border-radius: 8px;
|
|
@@ -721,7 +867,7 @@ p {
|
|
|
721
867
|
font-weight: 600;
|
|
722
868
|
}
|
|
723
869
|
|
|
724
|
-
/* css-module:/home/runner/work/
|
|
870
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Inline/Inline.module.css/#css-module-data */
|
|
725
871
|
._Inline_6o5on_3 {
|
|
726
872
|
display: block;
|
|
727
873
|
}
|
|
@@ -761,7 +907,7 @@ p {
|
|
|
761
907
|
flex-grow: 1;
|
|
762
908
|
}
|
|
763
909
|
|
|
764
|
-
/* css-module:/home/runner/work/
|
|
910
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Link/Link.module.css/#css-module-data */
|
|
765
911
|
._Link_1j70m_1 {
|
|
766
912
|
color: var(--puck-color-azure-04);
|
|
767
913
|
text-decoration: none;
|
|
@@ -770,7 +916,7 @@ p {
|
|
|
770
916
|
color: var(--puck-color-azure-05);
|
|
771
917
|
}
|
|
772
918
|
|
|
773
|
-
/* css-module:/home/runner/work/
|
|
919
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Menu/styles.module.css/#css-module-data */
|
|
774
920
|
._Menu_1tu16_1 {
|
|
775
921
|
display: flex;
|
|
776
922
|
position: relative;
|
|
@@ -846,7 +992,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
846
992
|
opacity: 0.5;
|
|
847
993
|
}
|
|
848
994
|
|
|
849
|
-
/* css-module:/home/runner/work/
|
|
995
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Page/Page.module.css/#css-module-data */
|
|
850
996
|
._Page_nkzj9_1 {
|
|
851
997
|
display: flex;
|
|
852
998
|
flex-direction: column;
|
|
@@ -905,7 +1051,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
905
1051
|
padding: 16px 24px;
|
|
906
1052
|
}
|
|
907
1053
|
|
|
908
|
-
/* css-module:/home/runner/work/
|
|
1054
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Pagination/Pagination.module.css/#css-module-data */
|
|
909
1055
|
._Pagination_1okv2_1 {
|
|
910
1056
|
align-items: baseline;
|
|
911
1057
|
display: flex;
|
|
@@ -933,7 +1079,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
933
1079
|
color: var(--puck-color-grey-05);
|
|
934
1080
|
}
|
|
935
1081
|
|
|
936
|
-
/* css-module:/home/runner/work/
|
|
1082
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/PlanGrid/styles.module.css/#css-module-data */
|
|
937
1083
|
._PlanGrid--loading_97rn7_1 {
|
|
938
1084
|
opacity: 0;
|
|
939
1085
|
}
|
|
@@ -961,7 +1107,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
961
1107
|
font-weight: 500;
|
|
962
1108
|
}
|
|
963
1109
|
|
|
964
|
-
/* css-module:/home/runner/work/
|
|
1110
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/PlanCard/styles.module.css/#css-module-data */
|
|
965
1111
|
._PlanCard_16zmu_1 {
|
|
966
1112
|
border: 1px solid var(--puck-color-grey-09);
|
|
967
1113
|
border-radius: 16px;
|
|
@@ -1145,7 +1291,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1145
1291
|
grid-auto-flow: column;
|
|
1146
1292
|
}
|
|
1147
1293
|
|
|
1148
|
-
/* css-module:/home/runner/work/
|
|
1294
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Section/Section.module.css/#css-module-data */
|
|
1149
1295
|
._Section-inner_1uwo0_1 {
|
|
1150
1296
|
margin-left: auto;
|
|
1151
1297
|
margin-right: auto;
|
|
@@ -1163,7 +1309,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1163
1309
|
max-width: unset;
|
|
1164
1310
|
}
|
|
1165
1311
|
|
|
1166
|
-
/* css-module:/home/runner/work/
|
|
1312
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Tag/Tag.module.css/#css-module-data */
|
|
1167
1313
|
._Tag_s2h0n_1 {
|
|
1168
1314
|
align-items: center;
|
|
1169
1315
|
display: flex;
|
|
@@ -1234,7 +1380,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1234
1380
|
margin-top: 1px;
|
|
1235
1381
|
}
|
|
1236
1382
|
|
|
1237
|
-
/* css-module:/home/runner/work/
|
|
1383
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Table/Table.module.css/#css-module-data */
|
|
1238
1384
|
._Table_o345u_1 {
|
|
1239
1385
|
color: black;
|
|
1240
1386
|
display: flex;
|
|
@@ -1334,178 +1480,56 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1334
1480
|
background-color: var(--puck-color-grey-12);
|
|
1335
1481
|
}
|
|
1336
1482
|
|
|
1337
|
-
/* css-module:/home/runner/work/
|
|
1338
|
-
.
|
|
1339
|
-
|
|
1340
|
-
width: 250px;
|
|
1341
|
-
margin: 0 auto;
|
|
1342
|
-
bottom: 1rem;
|
|
1343
|
-
right: 1rem;
|
|
1344
|
-
left: auto;
|
|
1345
|
-
top: auto;
|
|
1346
|
-
@media (min-width: 500px) {
|
|
1347
|
-
bottom: 2rem;
|
|
1348
|
-
right: 2rem;
|
|
1349
|
-
width: 300px;
|
|
1350
|
-
}
|
|
1483
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/VerticalSpace/VerticalSpace.module.css/#css-module-data */
|
|
1484
|
+
._VerticalSpace_16t6j_1 {
|
|
1485
|
+
padding-top: 24px;
|
|
1351
1486
|
}
|
|
1352
|
-
.
|
|
1353
|
-
--gap: 0.75rem;
|
|
1354
|
-
--offset-y: calc( var(--toast-offset-y) * -1 + (var(--toast-index) * var(--gap) * -1) + var(--toast-swipe-movement-y) );
|
|
1355
|
-
position: absolute;
|
|
1356
|
-
right: 0;
|
|
1357
|
-
margin: 0 auto;
|
|
1358
|
-
box-sizing: border-box;
|
|
1359
|
-
background: var(--puck-color-white);
|
|
1360
|
-
color: var(--puck-color-grey-01);
|
|
1361
|
-
border: 1px solid var(--puck-color-grey-09);
|
|
1362
|
-
padding: 1rem;
|
|
1363
|
-
width: 100%;
|
|
1364
|
-
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
1365
|
-
background-clip: padding-box;
|
|
1366
|
-
border-radius: 0.5rem;
|
|
1367
|
-
bottom: 0;
|
|
1368
|
-
left: auto;
|
|
1369
|
-
margin-right: 0;
|
|
1370
|
-
-webkit-user-select: none;
|
|
1371
|
-
user-select: none;
|
|
1372
|
-
transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s;
|
|
1373
|
-
cursor: default;
|
|
1374
|
-
z-index: calc(1000 - var(--toast-index));
|
|
1375
|
-
transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y) + (min(var(--toast-index), 10) * -20%))) scale(calc(max(0, 1 - (var(--toast-index) * 0.1))));
|
|
1376
|
-
&::after {
|
|
1377
|
-
content: "";
|
|
1378
|
-
position: absolute;
|
|
1379
|
-
width: 100%;
|
|
1380
|
-
top: 100%;
|
|
1381
|
-
left: 0;
|
|
1382
|
-
height: calc(var(--gap) + 1px);
|
|
1383
|
-
}
|
|
1384
|
-
&[data-expanded] {
|
|
1385
|
-
transform: translateX(var(--toast-swipe-movement-x)) translateY(var(--offset-y));
|
|
1386
|
-
}
|
|
1387
|
-
&[data-starting-style],
|
|
1388
|
-
&[data-ending-style] {
|
|
1389
|
-
transform: translateY(150%);
|
|
1390
|
-
}
|
|
1391
|
-
&[data-limited] {
|
|
1392
|
-
opacity: 0;
|
|
1393
|
-
}
|
|
1394
|
-
&[data-ending-style] {
|
|
1395
|
-
opacity: 0;
|
|
1396
|
-
&[data-swipe-direction=up] {
|
|
1397
|
-
transform: translateY(calc(var(--toast-swipe-movement-y) - 150%));
|
|
1398
|
-
}
|
|
1399
|
-
&[data-swipe-direction=left] {
|
|
1400
|
-
transform: translateX(calc(var(--toast-swipe-movement-x) - 150%)) translateY(var(--offset-y));
|
|
1401
|
-
}
|
|
1402
|
-
&[data-swipe-direction=right] {
|
|
1403
|
-
transform: translateX(calc(var(--toast-swipe-movement-x) + 150%)) translateY(var(--offset-y));
|
|
1404
|
-
}
|
|
1405
|
-
&[data-swipe-direction=down] {
|
|
1406
|
-
transform: translateY(calc(var(--toast-swipe-movement-y) + 150%));
|
|
1407
|
-
}
|
|
1408
|
-
}
|
|
1409
|
-
}
|
|
1410
|
-
._Title_13rvx_95 {
|
|
1411
|
-
font-weight: 500;
|
|
1412
|
-
font-size: 0.975rem;
|
|
1413
|
-
line-height: 1.25rem;
|
|
1414
|
-
margin: 0;
|
|
1415
|
-
}
|
|
1416
|
-
._Description_13rvx_102 {
|
|
1417
|
-
font-size: 0.925rem;
|
|
1418
|
-
line-height: 1.25rem;
|
|
1419
|
-
margin: 0;
|
|
1420
|
-
margin-top: 0.25rem;
|
|
1421
|
-
}
|
|
1422
|
-
._Action_13rvx_109 {
|
|
1423
|
-
appearance: none;
|
|
1424
|
-
background: var(--puck-color-azure-04);
|
|
1425
|
-
border: 1px solid transparent;
|
|
1426
|
-
border-radius: 8px;
|
|
1427
|
-
color: var(--puck-color-white);
|
|
1428
|
-
display: inline-flex;
|
|
1429
|
-
align-items: center;
|
|
1430
|
-
gap: 8px;
|
|
1431
|
-
letter-spacing: 0.05ch;
|
|
1432
|
-
font-family: var(--puck-font-family);
|
|
1433
|
-
font-size: 14px;
|
|
1434
|
-
font-weight: 400;
|
|
1435
|
-
box-sizing: border-box;
|
|
1436
|
-
line-height: 1;
|
|
1437
|
-
text-align: center;
|
|
1438
|
-
text-decoration: none;
|
|
1439
|
-
transition: background-color 50ms ease-in;
|
|
1440
|
-
cursor: pointer;
|
|
1441
|
-
white-space: nowrap;
|
|
1442
|
-
margin: 8px 0 0;
|
|
1443
|
-
padding: 8px 12px;
|
|
1444
|
-
}
|
|
1445
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1446
|
-
._Action_13rvx_109:hover {
|
|
1447
|
-
background-color: var(--puck-color-azure-03);
|
|
1448
|
-
}
|
|
1449
|
-
}
|
|
1450
|
-
._Action_13rvx_109:active {
|
|
1451
|
-
background-color: var(--puck-color-azure-02);
|
|
1452
|
-
}
|
|
1453
|
-
._Close_13rvx_143 {
|
|
1454
|
-
position: absolute;
|
|
1455
|
-
top: 0.5rem;
|
|
1456
|
-
right: 0.5rem;
|
|
1457
|
-
border: none;
|
|
1458
|
-
background: transparent;
|
|
1459
|
-
width: 1.25rem;
|
|
1460
|
-
height: 1.25rem;
|
|
1461
|
-
display: flex;
|
|
1462
|
-
align-items: center;
|
|
1463
|
-
justify-content: center;
|
|
1464
|
-
border-radius: 0.25rem;
|
|
1465
|
-
}
|
|
1466
|
-
@media (hover: hover) and (pointer: fine) {
|
|
1467
|
-
._Close_13rvx_143:hover {
|
|
1468
|
-
background-color: var(--puck-color-grey-11);
|
|
1469
|
-
}
|
|
1470
|
-
}
|
|
1471
|
-
._Icon_13rvx_163 {
|
|
1472
|
-
width: 1rem;
|
|
1473
|
-
height: 1rem;
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
/* css-module:/home/runner/work/puck-platform/puck-platform/packages/platform-client/components/VerticalSpace/VerticalSpace.module.css/#css-module-data */
|
|
1477
|
-
._VerticalSpace_1tjaw_1 {
|
|
1478
|
-
padding-top: 16px;
|
|
1479
|
-
}
|
|
1480
|
-
._VerticalSpace--size4_1tjaw_5 {
|
|
1487
|
+
._VerticalSpace--size4_16t6j_5 {
|
|
1481
1488
|
padding-top: 4px;
|
|
1482
1489
|
}
|
|
1483
|
-
._VerticalSpace--
|
|
1490
|
+
._VerticalSpace--size8_16t6j_9 {
|
|
1484
1491
|
padding-top: 8px;
|
|
1485
1492
|
}
|
|
1486
|
-
._VerticalSpace--
|
|
1493
|
+
._VerticalSpace--size16_16t6j_13 {
|
|
1487
1494
|
padding-top: 16px;
|
|
1488
1495
|
}
|
|
1489
|
-
._VerticalSpace--
|
|
1496
|
+
._VerticalSpace--size32_16t6j_17 {
|
|
1490
1497
|
padding-top: 32px;
|
|
1491
1498
|
}
|
|
1492
|
-
._VerticalSpace--
|
|
1499
|
+
._VerticalSpace--size40_16t6j_21 {
|
|
1493
1500
|
padding-top: 40px;
|
|
1494
1501
|
}
|
|
1495
|
-
._VerticalSpace--
|
|
1502
|
+
._VerticalSpace--size48_16t6j_25 {
|
|
1496
1503
|
padding-top: 48px;
|
|
1497
1504
|
}
|
|
1498
|
-
._VerticalSpace--
|
|
1505
|
+
._VerticalSpace--size56_16t6j_29 {
|
|
1499
1506
|
padding-top: 56px;
|
|
1500
1507
|
}
|
|
1501
|
-
._VerticalSpace--
|
|
1508
|
+
._VerticalSpace--size96_16t6j_33 {
|
|
1502
1509
|
padding-top: 96px;
|
|
1503
1510
|
}
|
|
1504
|
-
._VerticalSpace--
|
|
1511
|
+
._VerticalSpace--size128_16t6j_37 {
|
|
1505
1512
|
padding-top: 128px;
|
|
1506
1513
|
}
|
|
1514
|
+
@media (max-width: 767px) {
|
|
1515
|
+
._VerticalSpace--size40_16t6j_21 {
|
|
1516
|
+
padding-top: 40px;
|
|
1517
|
+
}
|
|
1518
|
+
._VerticalSpace--size48_16t6j_25 {
|
|
1519
|
+
padding-top: 48px;
|
|
1520
|
+
}
|
|
1521
|
+
._VerticalSpace--size56_16t6j_29 {
|
|
1522
|
+
padding-top: 56px;
|
|
1523
|
+
}
|
|
1524
|
+
._VerticalSpace--size96_16t6j_33 {
|
|
1525
|
+
padding-top: 72px;
|
|
1526
|
+
}
|
|
1527
|
+
._VerticalSpace--size128_16t6j_37 {
|
|
1528
|
+
padding-top: 96px;
|
|
1529
|
+
}
|
|
1530
|
+
}
|
|
1507
1531
|
|
|
1508
|
-
/* css-module:/home/runner/work/
|
|
1532
|
+
/* css-module:/home/runner/work/platform/platform/packages/platform-client/components/Viewport/styles.module.css/#css-module-data */
|
|
1509
1533
|
._Viewport_1vvhm_3 {
|
|
1510
1534
|
}
|
|
1511
1535
|
._Viewport--standard_1vvhm_6,
|
|
@@ -1540,7 +1564,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1540
1564
|
}
|
|
1541
1565
|
}
|
|
1542
1566
|
|
|
1543
|
-
/* css-module:/home/runner/work/
|
|
1567
|
+
/* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/PagePlugin/styles.module.css/#css-module-data */
|
|
1544
1568
|
._Pages_ey49w_5 {
|
|
1545
1569
|
display: flex;
|
|
1546
1570
|
flex-direction: column;
|
|
@@ -1720,7 +1744,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1720
1744
|
white-space: nowrap;
|
|
1721
1745
|
}
|
|
1722
1746
|
|
|
1723
|
-
/* css-module:/home/runner/work/
|
|
1747
|
+
/* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/CreateForm/styles.module.css/#css-module-data */
|
|
1724
1748
|
._CreateForm_kkdt2_1 {
|
|
1725
1749
|
width: 100%;
|
|
1726
1750
|
}
|
|
@@ -1765,7 +1789,7 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1765
1789
|
line-height: 1.2;
|
|
1766
1790
|
}
|
|
1767
1791
|
|
|
1768
|
-
/* css-module:/home/runner/work/
|
|
1792
|
+
/* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/ConfirmModal/styles.module.css/#css-module-data */
|
|
1769
1793
|
._ConfirmModal_1r63q_1 {
|
|
1770
1794
|
width: 100%;
|
|
1771
1795
|
}
|
|
@@ -1836,13 +1860,13 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1836
1860
|
padding: 16px 24px;
|
|
1837
1861
|
}
|
|
1838
1862
|
|
|
1839
|
-
/* css-module:/home/runner/work/
|
|
1840
|
-
.
|
|
1863
|
+
/* css-module:/home/runner/work/platform/platform/packages/plugin-pages/src/components/HeaderActions/styles.module.css/#css-module-data */
|
|
1864
|
+
._HeaderActions-publish_7nzbl_1 {
|
|
1841
1865
|
position: relative;
|
|
1842
1866
|
display: inline-flex;
|
|
1843
1867
|
align-items: stretch;
|
|
1844
1868
|
}
|
|
1845
|
-
._HeaderActions-
|
|
1869
|
+
._HeaderActions-trigger_7nzbl_7 {
|
|
1846
1870
|
display: inline-flex;
|
|
1847
1871
|
align-items: center;
|
|
1848
1872
|
justify-content: center;
|
|
@@ -1853,19 +1877,19 @@ button._Menu-item_1tu16_55:hover {
|
|
|
1853
1877
|
background: var(--puck-color-white);
|
|
1854
1878
|
color: var(--puck-color-grey-01);
|
|
1855
1879
|
}
|
|
1856
|
-
._HeaderActions-
|
|
1880
|
+
._HeaderActions-versionHeader_7nzbl_19 {
|
|
1857
1881
|
align-items: center;
|
|
1858
1882
|
display: flex;
|
|
1859
1883
|
gap: 8px;
|
|
1860
1884
|
height: 21px;
|
|
1861
1885
|
}
|
|
1862
|
-
._HeaderActions-
|
|
1886
|
+
._HeaderActions-versionLabel_7nzbl_26 {
|
|
1863
1887
|
font-family: var(--puck-font-family-monospaced);
|
|
1864
1888
|
font-size: var(--puck-font-size-xs);
|
|
1865
1889
|
font-weight: 600;
|
|
1866
1890
|
line-height: 1;
|
|
1867
1891
|
}
|
|
1868
|
-
._HeaderActions-
|
|
1892
|
+
._HeaderActions-versionDate_7nzbl_33 {
|
|
1869
1893
|
color: var(--puck-color-grey-06);
|
|
1870
1894
|
font-size: var(--puck-font-size-xxxs);
|
|
1871
1895
|
font-weight: 500;
|