@measured/puck 0.18.1-canary.f077a37 → 0.18.2-canary.23c8dda
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 +2 -2
- package/dist/index.css +236 -230
- package/dist/index.d.mts +3 -45
- package/dist/index.d.ts +3 -45
- package/dist/index.js +91 -45
- package/dist/index.mjs +91 -43
- package/dist/{resolve-all-data-DzJEE28m.d.mts → resolve-all-data-C-cc7ftj.d.mts} +2 -2
- package/dist/{resolve-all-data-DzJEE28m.d.ts → resolve-all-data-C-cc7ftj.d.ts} +2 -2
- package/dist/rsc.d.mts +4 -4
- package/dist/rsc.d.ts +4 -4
- package/dist/rsc.js +3 -5
- package/dist/rsc.mjs +3 -5
- package/package.json +3 -3
package/dist/index.css
CHANGED
@@ -141,14 +141,14 @@
|
|
141
141
|
}
|
142
142
|
|
143
143
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ActionBar/styles.module.css/#css-module-data */
|
144
|
-
.
|
144
|
+
._ActionBar_rvadt_1 {
|
145
145
|
align-items: center;
|
146
146
|
cursor: default;
|
147
147
|
display: flex;
|
148
148
|
width: auto;
|
149
149
|
padding: 4px;
|
150
|
-
padding-
|
151
|
-
padding-
|
150
|
+
padding-inline-start: 0;
|
151
|
+
padding-inline-end: 0;
|
152
152
|
border-top-left-radius: 8px;
|
153
153
|
border-top-right-radius: 8px;
|
154
154
|
border-radius: 8px;
|
@@ -157,45 +157,45 @@
|
|
157
157
|
font-family: var(--puck-font-family);
|
158
158
|
min-height: 26px;
|
159
159
|
}
|
160
|
-
._ActionBar-
|
160
|
+
._ActionBar-label_rvadt_18 {
|
161
161
|
color: var(--puck-color-grey-08);
|
162
162
|
font-size: var(--puck-font-size-xxxs);
|
163
163
|
font-weight: 500;
|
164
|
-
padding-
|
165
|
-
padding-
|
166
|
-
margin-
|
167
|
-
margin-
|
164
|
+
padding-inline-start: 8px;
|
165
|
+
padding-inline-end: 8px;
|
166
|
+
margin-inline-start: 4px;
|
167
|
+
margin-inline-end: 4px;
|
168
168
|
text-overflow: ellipsis;
|
169
169
|
white-space: nowrap;
|
170
170
|
}
|
171
|
-
._ActionBar-
|
172
|
-
padding-
|
171
|
+
._ActionBar-action_rvadt_30 + ._ActionBar-label_rvadt_18 {
|
172
|
+
padding-inline-start: 0;
|
173
173
|
}
|
174
|
-
._ActionBar-
|
175
|
-
margin-
|
174
|
+
._ActionBar-label_rvadt_18 + ._ActionBar-action_rvadt_30 {
|
175
|
+
margin-inline-start: -4px;
|
176
176
|
}
|
177
|
-
._ActionBar-
|
177
|
+
._ActionBar-group_rvadt_38 {
|
178
178
|
align-items: center;
|
179
179
|
border-inline-start: 0.5px solid var(--puck-color-grey-05);
|
180
180
|
display: flex;
|
181
181
|
height: 100%;
|
182
|
-
padding-
|
183
|
-
padding-
|
182
|
+
padding-inline-start: 4px;
|
183
|
+
padding-inline-end: 4px;
|
184
184
|
}
|
185
|
-
._ActionBar-
|
185
|
+
._ActionBar-group_rvadt_38:first-of-type {
|
186
186
|
border-inline-start: 0;
|
187
187
|
}
|
188
|
-
._ActionBar-
|
188
|
+
._ActionBar-group_rvadt_38:empty {
|
189
189
|
display: none;
|
190
190
|
}
|
191
|
-
._ActionBar-
|
191
|
+
._ActionBar-action_rvadt_30 {
|
192
192
|
background: transparent;
|
193
193
|
border: none;
|
194
194
|
color: var(--puck-color-grey-08);
|
195
195
|
cursor: pointer;
|
196
196
|
padding: 6px 8px;
|
197
|
-
margin-
|
198
|
-
margin-
|
197
|
+
margin-inline-start: 4px;
|
198
|
+
margin-inline-end: 4px;
|
199
199
|
border-radius: 4px;
|
200
200
|
overflow: hidden;
|
201
201
|
display: flex;
|
@@ -203,32 +203,32 @@
|
|
203
203
|
justify-content: center;
|
204
204
|
transition: color 50ms ease-in;
|
205
205
|
}
|
206
|
-
._ActionBar-
|
206
|
+
._ActionBar-action_rvadt_30 svg {
|
207
207
|
max-width: none !important;
|
208
208
|
}
|
209
|
-
._ActionBar-
|
209
|
+
._ActionBar-action_rvadt_30:focus-visible {
|
210
210
|
outline: 2px solid var(--puck-color-azure-05);
|
211
211
|
outline-offset: -2px;
|
212
212
|
}
|
213
213
|
@media (hover: hover) and (pointer: fine) {
|
214
|
-
._ActionBar-
|
214
|
+
._ActionBar-action_rvadt_30:hover {
|
215
215
|
color: var(--puck-color-azure-06);
|
216
216
|
transition: none;
|
217
217
|
}
|
218
218
|
}
|
219
|
-
._ActionBar-
|
219
|
+
._ActionBar-action_rvadt_30:active {
|
220
220
|
color: var(--puck-color-azure-07);
|
221
221
|
transition: none;
|
222
222
|
}
|
223
|
-
._ActionBar-
|
223
|
+
._ActionBar-group_rvadt_38 * {
|
224
224
|
margin: 0;
|
225
225
|
}
|
226
226
|
|
227
227
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/styles.module.css/#css-module-data */
|
228
|
-
.
|
228
|
+
._InputWrapper_g5w3n_1 + ._InputWrapper_g5w3n_1 {
|
229
229
|
margin-top: 12px;
|
230
230
|
}
|
231
|
-
._Input-
|
231
|
+
._Input-label_g5w3n_5 {
|
232
232
|
align-items: center;
|
233
233
|
color: var(--puck-color-grey-04);
|
234
234
|
display: flex;
|
@@ -236,17 +236,17 @@
|
|
236
236
|
font-size: var(--puck-font-size-xxs);
|
237
237
|
font-weight: 600;
|
238
238
|
}
|
239
|
-
._Input-
|
239
|
+
._Input-labelIcon_g5w3n_14 {
|
240
240
|
color: var(--puck-color-grey-07);
|
241
241
|
display: flex;
|
242
|
-
margin-
|
243
|
-
padding-
|
242
|
+
margin-inline-end: 4px;
|
243
|
+
padding-inline-start: 4px;
|
244
244
|
}
|
245
|
-
._Input-
|
245
|
+
._Input-disabledIcon_g5w3n_21 {
|
246
246
|
color: var(--puck-color-grey-05);
|
247
|
-
margin-
|
247
|
+
margin-inline-start: auto;
|
248
248
|
}
|
249
|
-
._Input-
|
249
|
+
._Input-input_g5w3n_26 {
|
250
250
|
background: var(--puck-color-white);
|
251
251
|
border-width: 1px;
|
252
252
|
border-style: solid;
|
@@ -258,7 +258,7 @@
|
|
258
258
|
transition: border-color 50ms ease-in;
|
259
259
|
width: 100%;
|
260
260
|
}
|
261
|
-
select._Input-
|
261
|
+
select._Input-input_g5w3n_26 {
|
262
262
|
appearance: none;
|
263
263
|
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;
|
264
264
|
background-size: 12px;
|
@@ -267,26 +267,29 @@ select._Input-input_1h1p1_26 {
|
|
267
267
|
background-color: var(--puck-color-white);
|
268
268
|
cursor: pointer;
|
269
269
|
}
|
270
|
+
select._Input-input_g5w3n_26:dir(rtl) {
|
271
|
+
background-position: 12px calc(50% + 3px);
|
272
|
+
}
|
270
273
|
@media (hover: hover) and (pointer: fine) {
|
271
|
-
.
|
272
|
-
.
|
274
|
+
._Input_g5w3n_1:has(> input):hover ._Input-input_g5w3n_26:not([readonly]),
|
275
|
+
._Input_g5w3n_1:has(> textarea):hover ._Input-input_g5w3n_26:not([readonly]) {
|
273
276
|
border-color: var(--puck-color-grey-05);
|
274
277
|
transition: none;
|
275
278
|
}
|
276
|
-
.
|
279
|
+
._Input_g5w3n_1:has(> select):hover ._Input-input_g5w3n_26:not([disabled]) {
|
277
280
|
background-color: var(--puck-color-azure-12);
|
278
281
|
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='%235a5a5a'><polygon points='0,0 100,0 50,50'/></svg>");
|
279
282
|
border-color: var(--puck-color-grey-05);
|
280
283
|
transition: none;
|
281
284
|
}
|
282
285
|
}
|
283
|
-
._Input-
|
286
|
+
._Input-input_g5w3n_26:focus {
|
284
287
|
border-color: var(--puck-color-grey-05);
|
285
288
|
outline: 2px solid var(--puck-color-azure-05);
|
286
289
|
transition: none;
|
287
290
|
}
|
288
|
-
._Input--
|
289
|
-
._Input--
|
291
|
+
._Input--readOnly_g5w3n_74 > ._Input-input_g5w3n_26,
|
292
|
+
._Input--readOnly_g5w3n_74 > select._Input-input_g5w3n_26 {
|
290
293
|
background-color: var(--puck-color-grey-11);
|
291
294
|
border-color: var(--puck-color-grey-09);
|
292
295
|
color: var(--puck-color-grey-04);
|
@@ -295,34 +298,34 @@ select._Input-input_1h1p1_26 {
|
|
295
298
|
outline: 0;
|
296
299
|
transition: none;
|
297
300
|
}
|
298
|
-
._Input-
|
301
|
+
._Input-radioGroupItems_g5w3n_85 {
|
299
302
|
display: flex;
|
300
303
|
border: 1px solid var(--puck-color-grey-09);
|
301
304
|
border-radius: 4px;
|
302
305
|
flex-wrap: wrap;
|
303
306
|
}
|
304
|
-
._Input-
|
305
|
-
border-
|
307
|
+
._Input-radio_g5w3n_85 {
|
308
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
306
309
|
flex-grow: 1;
|
307
310
|
}
|
308
|
-
._Input-
|
311
|
+
._Input-radio_g5w3n_85:first-of-type {
|
309
312
|
border-bottom-left-radius: 4px;
|
310
313
|
border-top-left-radius: 4px;
|
311
314
|
}
|
312
|
-
._Input-
|
315
|
+
._Input-radio_g5w3n_85:first-of-type ._Input-radioInner_g5w3n_102 {
|
313
316
|
border-bottom-left-radius: 3px;
|
314
317
|
border-top-left-radius: 3px;
|
315
318
|
}
|
316
|
-
._Input-
|
319
|
+
._Input-radio_g5w3n_85:last-of-type {
|
317
320
|
border-bottom-right-radius: 4px;
|
318
|
-
border-
|
321
|
+
border-inline-end: 0;
|
319
322
|
border-top-right-radius: 4px;
|
320
323
|
}
|
321
|
-
._Input-
|
324
|
+
._Input-radio_g5w3n_85:last-of-type ._Input-radioInner_g5w3n_102 {
|
322
325
|
border-bottom-right-radius: 3px;
|
323
326
|
border-top-right-radius: 3px;
|
324
327
|
}
|
325
|
-
._Input-
|
328
|
+
._Input-radioInner_g5w3n_102 {
|
326
329
|
background-color: var(--puck-color-white);
|
327
330
|
color: var(--puck-color-grey-04);
|
328
331
|
cursor: pointer;
|
@@ -331,32 +334,32 @@ select._Input-input_1h1p1_26 {
|
|
331
334
|
text-align: center;
|
332
335
|
transition: background-color 50ms ease-in;
|
333
336
|
}
|
334
|
-
._Input-
|
337
|
+
._Input-radio_g5w3n_85:has(:focus-visible) {
|
335
338
|
outline: 2px solid var(--puck-color-azure-05);
|
336
339
|
outline-offset: 2px;
|
337
340
|
position: relative;
|
338
341
|
}
|
339
342
|
@media (hover: hover) and (pointer: fine) {
|
340
|
-
._Input-
|
343
|
+
._Input-radioInner_g5w3n_102:hover {
|
341
344
|
background-color: var(--puck-color-azure-12);
|
342
345
|
transition: none;
|
343
346
|
}
|
344
347
|
}
|
345
|
-
._Input--
|
348
|
+
._Input--readOnly_g5w3n_74 ._Input-radioInner_g5w3n_102 {
|
346
349
|
background-color: var(--puck-color-white);
|
347
350
|
color: var(--puck-color-grey-04);
|
348
351
|
cursor: default;
|
349
352
|
}
|
350
|
-
._Input-
|
353
|
+
._Input-radio_g5w3n_85 ._Input-radioInput_g5w3n_147:checked ~ ._Input-radioInner_g5w3n_102 {
|
351
354
|
background-color: var(--puck-color-azure-11);
|
352
355
|
color: var(--puck-color-azure-04);
|
353
356
|
font-weight: 500;
|
354
357
|
}
|
355
|
-
._Input--
|
358
|
+
._Input--readOnly_g5w3n_74 ._Input-radioInput_g5w3n_147:checked ~ ._Input-radioInner_g5w3n_102 {
|
356
359
|
background-color: var(--puck-color-grey-11);
|
357
360
|
color: var(--puck-color-grey-04);
|
358
361
|
}
|
359
|
-
._Input-
|
362
|
+
._Input-radio_g5w3n_85 ._Input-radioInput_g5w3n_147 {
|
360
363
|
clip: rect(0 0 0 0);
|
361
364
|
clip-path: inset(100%);
|
362
365
|
height: 1px;
|
@@ -365,7 +368,7 @@ select._Input-input_1h1p1_26 {
|
|
365
368
|
white-space: nowrap;
|
366
369
|
width: 1px;
|
367
370
|
}
|
368
|
-
textarea._Input-
|
371
|
+
textarea._Input-input_g5w3n_26 {
|
369
372
|
margin-bottom: -4px;
|
370
373
|
}
|
371
374
|
|
@@ -611,10 +614,10 @@ textarea._Input-input_1h1p1_26 {
|
|
611
614
|
}
|
612
615
|
|
613
616
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ExternalInput/styles.module.css/#css-module-data */
|
614
|
-
._ExternalInput-
|
617
|
+
._ExternalInput-actions_1ibts_1 {
|
615
618
|
display: flex;
|
616
619
|
}
|
617
|
-
._ExternalInput-
|
620
|
+
._ExternalInput-button_1ibts_5 {
|
618
621
|
display: flex;
|
619
622
|
gap: 8px;
|
620
623
|
align-items: center;
|
@@ -632,16 +635,16 @@ textarea._Input-input_1h1p1_26 {
|
|
632
635
|
overflow: hidden;
|
633
636
|
flex-grow: 1;
|
634
637
|
}
|
635
|
-
._ExternalInput--
|
638
|
+
._ExternalInput--dataSelected_1ibts_24 ._ExternalInput-button_1ibts_5 {
|
636
639
|
color: var(--puck-color-grey-03);
|
637
640
|
display: block;
|
638
641
|
border-top-right-radius: 0px;
|
639
642
|
border-bottom-right-radius: 0px;
|
640
643
|
}
|
641
|
-
._ExternalInput--
|
644
|
+
._ExternalInput--readOnly_1ibts_31 ._ExternalInput-button_1ibts_5 {
|
642
645
|
background-color: var(--puck-color-grey-11);
|
643
646
|
}
|
644
|
-
._ExternalInput-
|
647
|
+
._ExternalInput-detachButton_1ibts_35 {
|
645
648
|
border: 1px solid var(--puck-color-grey-09);
|
646
649
|
border-top-right-radius: 4px;
|
647
650
|
border-bottom-right-radius: 4px;
|
@@ -654,30 +657,30 @@ textarea._Input-input_1h1p1_26 {
|
|
654
657
|
padding: 8px 12px;
|
655
658
|
position: relative;
|
656
659
|
transition: background-color 50ms ease-in, color 50ms ease-in;
|
657
|
-
margin-
|
660
|
+
margin-inline-start: -1px;
|
658
661
|
}
|
659
|
-
._ExternalInput-
|
660
|
-
._ExternalInput-
|
662
|
+
._ExternalInput-button_1ibts_5:focus-visible,
|
663
|
+
._ExternalInput-detachButton_1ibts_35:focus-visible {
|
661
664
|
outline: 2px solid var(--puck-color-azure-05);
|
662
665
|
outline-offset: 2px;
|
663
666
|
z-index: 1;
|
664
667
|
}
|
665
668
|
@media (hover: hover) and (pointer: fine) {
|
666
|
-
.
|
667
|
-
.
|
669
|
+
._ExternalInput_1ibts_1:not(._ExternalInput--readOnly_1ibts_31) ._ExternalInput-button_1ibts_5:hover,
|
670
|
+
._ExternalInput_1ibts_1:not(._ExternalInput--readOnly_1ibts_31) ._ExternalInput-detachButton_1ibts_35:hover {
|
668
671
|
background: var(--puck-color-azure-12);
|
669
672
|
transition: none;
|
670
673
|
}
|
671
|
-
.
|
674
|
+
._ExternalInput_1ibts_1:not(._ExternalInput--readOnly_1ibts_31) ._ExternalInput-detachButton_1ibts_35:hover {
|
672
675
|
color: var(--puck-color-azure-04);
|
673
676
|
}
|
674
677
|
}
|
675
|
-
.
|
676
|
-
.
|
678
|
+
._ExternalInput_1ibts_1:not(._ExternalInput--readOnly_1ibts_31) ._ExternalInput-button_1ibts_5:active,
|
679
|
+
._ExternalInput_1ibts_1:not(._ExternalInput--readOnly_1ibts_31) ._ExternalInput-detachButton_1ibts_35:active {
|
677
680
|
background: var(--puck-color-azure-11);
|
678
681
|
transition: none;
|
679
682
|
}
|
680
|
-
.
|
683
|
+
._ExternalInputModal_1ibts_79 {
|
681
684
|
color: var(--puck-color-black);
|
682
685
|
display: grid;
|
683
686
|
grid-template-rows: min-content minmax(128px, 100%) min-content;
|
@@ -686,35 +689,35 @@ textarea._Input-input_1h1p1_26 {
|
|
686
689
|
min-height: 50dvh;
|
687
690
|
max-height: 90dvh;
|
688
691
|
}
|
689
|
-
._ExternalInputModal-
|
692
|
+
._ExternalInputModal-grid_1ibts_89 {
|
690
693
|
display: flex;
|
691
694
|
flex-direction: column;
|
692
695
|
}
|
693
696
|
@media (min-width: 458px) {
|
694
|
-
._ExternalInputModal-
|
697
|
+
._ExternalInputModal-grid_1ibts_89 {
|
695
698
|
display: grid;
|
696
699
|
grid-template-columns: 100%;
|
697
700
|
}
|
698
|
-
._ExternalInputModal--
|
701
|
+
._ExternalInputModal--filtersToggled_1ibts_100 ._ExternalInputModal-grid_1ibts_89 {
|
699
702
|
grid-template-columns: 25% 75%;
|
700
703
|
}
|
701
704
|
}
|
702
|
-
._ExternalInputModal-
|
705
|
+
._ExternalInputModal-filters_1ibts_105 {
|
703
706
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
704
707
|
}
|
705
|
-
._ExternalInputModal--
|
708
|
+
._ExternalInputModal--filtersToggled_1ibts_100 ._ExternalInputModal-filters_1ibts_105 {
|
706
709
|
display: none;
|
707
710
|
}
|
708
711
|
@media (min-width: 458px) {
|
709
|
-
._ExternalInputModal-
|
710
|
-
border-
|
712
|
+
._ExternalInputModal-filters_1ibts_105 {
|
713
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
711
714
|
display: none;
|
712
715
|
}
|
713
|
-
._ExternalInputModal--
|
716
|
+
._ExternalInputModal--filtersToggled_1ibts_100 ._ExternalInputModal-filters_1ibts_105 {
|
714
717
|
display: block;
|
715
718
|
}
|
716
719
|
}
|
717
|
-
._ExternalInputModal-
|
720
|
+
._ExternalInputModal-masthead_1ibts_124 {
|
718
721
|
background-color: var(--puck-color-grey-12);
|
719
722
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
720
723
|
display: flex;
|
@@ -722,13 +725,13 @@ textarea._Input-input_1h1p1_26 {
|
|
722
725
|
gap: 24px;
|
723
726
|
padding: 24px;
|
724
727
|
}
|
725
|
-
._ExternalInputModal-
|
728
|
+
._ExternalInputModal-tableWrapper_1ibts_133 {
|
726
729
|
position: relative;
|
727
730
|
overflow-x: auto;
|
728
731
|
overflow-y: auto;
|
729
732
|
flex-grow: 1;
|
730
733
|
}
|
731
|
-
._ExternalInputModal-
|
734
|
+
._ExternalInputModal-table_1ibts_133 {
|
732
735
|
border-collapse: unset;
|
733
736
|
border-spacing: 0px;
|
734
737
|
color: var(--puck-color-grey-02);
|
@@ -736,51 +739,51 @@ textarea._Input-input_1h1p1_26 {
|
|
736
739
|
z-index: 0;
|
737
740
|
min-width: 100%;
|
738
741
|
}
|
739
|
-
._ExternalInputModal-
|
742
|
+
._ExternalInputModal-thead_1ibts_149 {
|
740
743
|
background-color: var(--puck-color-white);
|
741
744
|
position: sticky;
|
742
745
|
top: 0;
|
743
746
|
z-index: 1;
|
744
747
|
}
|
745
|
-
._ExternalInputModal-
|
748
|
+
._ExternalInputModal-th_1ibts_149 {
|
746
749
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
747
750
|
color: var(--puck-color-grey-04);
|
748
751
|
font-weight: 500;
|
749
752
|
font-size: 14px;
|
750
753
|
padding: 16px 24px;
|
751
754
|
}
|
752
|
-
._ExternalInputModal-
|
755
|
+
._ExternalInputModal-td_1ibts_164 {
|
753
756
|
border-bottom: 1px solid var(--puck-color-grey-10);
|
754
757
|
padding: 16px 24px;
|
755
758
|
}
|
756
|
-
._ExternalInputModal-
|
759
|
+
._ExternalInputModal-tr_1ibts_169 ._ExternalInputModal-td_1ibts_164:first-of-type {
|
757
760
|
font-weight: 500;
|
758
761
|
width: 1%;
|
759
762
|
white-space: nowrap;
|
760
763
|
}
|
761
764
|
@media (hover: hover) and (pointer: fine) {
|
762
|
-
._ExternalInputModal-
|
765
|
+
._ExternalInputModal-tbody_1ibts_176 ._ExternalInputModal-tr_1ibts_169:hover {
|
763
766
|
background: var(--puck-color-azure-12);
|
764
767
|
color: var(--puck-color-azure-04);
|
765
768
|
cursor: pointer;
|
766
769
|
position: relative;
|
767
|
-
margin-
|
770
|
+
margin-inline-start: -5px;
|
768
771
|
}
|
769
|
-
._ExternalInputModal-
|
770
|
-
border-
|
771
|
-
padding-
|
772
|
+
._ExternalInputModal-tbody_1ibts_176 ._ExternalInputModal-tr_1ibts_169:hover ._ExternalInputModal-td_1ibts_164:first-of-type {
|
773
|
+
border-inline-start: 4px solid var(--puck-color-azure-04);
|
774
|
+
padding-inline-start: 20px;
|
772
775
|
}
|
773
776
|
}
|
774
|
-
._ExternalInputModal-
|
777
|
+
._ExternalInputModal-tbody_1ibts_176 ._ExternalInputModal-tr_1ibts_169:last-of-type ._ExternalInputModal-td_1ibts_164 {
|
775
778
|
border-bottom: none;
|
776
779
|
}
|
777
|
-
._ExternalInputModal-
|
780
|
+
._ExternalInputModal-tableWrapper_1ibts_133 {
|
778
781
|
display: none;
|
779
782
|
}
|
780
|
-
._ExternalInputModal--
|
783
|
+
._ExternalInputModal--hasData_1ibts_202 ._ExternalInputModal-tableWrapper_1ibts_133 {
|
781
784
|
display: block;
|
782
785
|
}
|
783
|
-
._ExternalInputModal-
|
786
|
+
._ExternalInputModal-loadingBanner_1ibts_206 {
|
784
787
|
display: none;
|
785
788
|
background-color: color-mix(in srgb, var(--puck-color-white) 90%, transparent);
|
786
789
|
padding: 64px;
|
@@ -792,21 +795,21 @@ textarea._Input-input_1h1p1_26 {
|
|
792
795
|
right: 0;
|
793
796
|
bottom: 0;
|
794
797
|
}
|
795
|
-
._ExternalInputModal--
|
798
|
+
._ExternalInputModal--isLoading_1ibts_223 ._ExternalInputModal-loadingBanner_1ibts_206 {
|
796
799
|
display: flex;
|
797
800
|
}
|
798
|
-
._ExternalInputModal-
|
801
|
+
._ExternalInputModal-searchForm_1ibts_227 {
|
799
802
|
display: flex;
|
800
803
|
flex-wrap: wrap;
|
801
804
|
gap: 12px;
|
802
805
|
flex-grow: 1;
|
803
806
|
}
|
804
807
|
@media (min-width: 458px) {
|
805
|
-
._ExternalInputModal-
|
808
|
+
._ExternalInputModal-searchForm_1ibts_227 {
|
806
809
|
flex-wrap: nowrap;
|
807
810
|
}
|
808
811
|
}
|
809
|
-
._ExternalInputModal-
|
812
|
+
._ExternalInputModal-search_1ibts_227 {
|
810
813
|
display: flex;
|
811
814
|
background: var(--puck-color-white);
|
812
815
|
border-width: 1px;
|
@@ -816,40 +819,40 @@ textarea._Input-input_1h1p1_26 {
|
|
816
819
|
flex-grow: 1;
|
817
820
|
transition: border-color 50ms ease-in;
|
818
821
|
}
|
819
|
-
._ExternalInputModal-
|
822
|
+
._ExternalInputModal-search_1ibts_227:focus-within {
|
820
823
|
border-color: var(--puck-color-grey-05);
|
821
824
|
outline: 2px solid var(--puck-color-azure-05);
|
822
825
|
transition: none;
|
823
826
|
}
|
824
827
|
@media (hover: hover) and (pointer: fine) {
|
825
|
-
._ExternalInputModal-
|
828
|
+
._ExternalInputModal-search_1ibts_227:hover {
|
826
829
|
border-color: var(--puck-color-grey-05);
|
827
830
|
transition: none;
|
828
831
|
}
|
829
832
|
}
|
830
|
-
._ExternalInputModal-
|
833
|
+
._ExternalInputModal-searchIcon_1ibts_264 {
|
831
834
|
align-items: center;
|
832
835
|
background: var(--puck-color-grey-12);
|
833
836
|
border-bottom-left-radius: 4px;
|
834
837
|
border-top-left-radius: 4px;
|
835
|
-
border-
|
838
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
836
839
|
color: var(--puck-color-grey-07);
|
837
840
|
display: flex;
|
838
841
|
justify-content: center;
|
839
842
|
padding: 12px 15px;
|
840
843
|
transition: color 50ms ease-in;
|
841
844
|
}
|
842
|
-
._ExternalInputModal-
|
845
|
+
._ExternalInputModal-search_1ibts_227:focus-within ._ExternalInputModal-searchIcon_1ibts_264 {
|
843
846
|
color: var(--puck-color-grey-04);
|
844
847
|
transition: none;
|
845
848
|
}
|
846
849
|
@media (hover: hover) and (pointer: fine) {
|
847
|
-
._ExternalInputModal-
|
850
|
+
._ExternalInputModal-search_1ibts_227:hover ._ExternalInputModal-searchIcon_1ibts_264 {
|
848
851
|
color: var(--puck-color-grey-04);
|
849
852
|
transition: none;
|
850
853
|
}
|
851
854
|
}
|
852
|
-
._ExternalInputModal-
|
855
|
+
._ExternalInputModal-searchIconText_1ibts_289 {
|
853
856
|
clip: rect(0 0 0 0);
|
854
857
|
clip-path: inset(100%);
|
855
858
|
height: 1px;
|
@@ -858,7 +861,7 @@ textarea._Input-input_1h1p1_26 {
|
|
858
861
|
white-space: nowrap;
|
859
862
|
width: 1px;
|
860
863
|
}
|
861
|
-
._ExternalInputModal-
|
864
|
+
._ExternalInputModal-searchInput_1ibts_299 {
|
862
865
|
border: none;
|
863
866
|
border-radius: 4px;
|
864
867
|
background: var(--puck-color-white);
|
@@ -867,30 +870,30 @@ textarea._Input-input_1h1p1_26 {
|
|
867
870
|
padding: 12px 15px;
|
868
871
|
width: 100%;
|
869
872
|
}
|
870
|
-
._ExternalInputModal-
|
873
|
+
._ExternalInputModal-searchInput_1ibts_299:focus {
|
871
874
|
outline: 0;
|
872
875
|
}
|
873
|
-
._ExternalInputModal-
|
876
|
+
._ExternalInputModal-searchActions_1ibts_313 {
|
874
877
|
display: flex;
|
875
878
|
gap: 8px;
|
876
879
|
height: 44px;
|
877
880
|
width: 100%;
|
878
881
|
}
|
879
882
|
@media (min-width: 458px) {
|
880
|
-
._ExternalInputModal-
|
883
|
+
._ExternalInputModal-searchActions_1ibts_313 {
|
881
884
|
width: auto;
|
882
885
|
}
|
883
886
|
}
|
884
|
-
._ExternalInputModal-
|
887
|
+
._ExternalInputModal-searchActionIcon_1ibts_326 {
|
885
888
|
align-self: center;
|
886
889
|
}
|
887
|
-
._ExternalInputModal-
|
890
|
+
._ExternalInputModal-footerContainer_1ibts_330 {
|
888
891
|
background-color: var(--puck-color-grey-12);
|
889
892
|
border-top: 1px solid var(--puck-color-grey-09);
|
890
893
|
color: var(--puck-color-grey-04);
|
891
894
|
padding: 16px;
|
892
895
|
}
|
893
|
-
._ExternalInputModal-
|
896
|
+
._ExternalInputModal-footer_1ibts_330 {
|
894
897
|
font-weight: 500;
|
895
898
|
font-size: 14px;
|
896
899
|
text-align: right;
|
@@ -962,7 +965,7 @@ textarea._Input-input_1h1p1_26 {
|
|
962
965
|
}
|
963
966
|
|
964
967
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Button/Button.module.css/#css-module-data */
|
965
|
-
.
|
968
|
+
._Button_10byl_1 {
|
966
969
|
appearance: none;
|
967
970
|
background: none;
|
968
971
|
border: 1px solid transparent;
|
@@ -984,70 +987,70 @@ textarea._Input-input_1h1p1_26 {
|
|
984
987
|
white-space: nowrap;
|
985
988
|
margin: 0;
|
986
989
|
}
|
987
|
-
.
|
988
|
-
.
|
990
|
+
._Button_10byl_1:hover,
|
991
|
+
._Button_10byl_1:active {
|
989
992
|
transition: none;
|
990
993
|
}
|
991
|
-
._Button--
|
994
|
+
._Button--medium_10byl_29 {
|
992
995
|
min-height: 34px;
|
993
996
|
padding-bottom: 7px;
|
994
|
-
padding-
|
995
|
-
padding-
|
997
|
+
padding-inline-start: 19px;
|
998
|
+
padding-inline-end: 19px;
|
996
999
|
padding-top: 7px;
|
997
1000
|
}
|
998
|
-
._Button--
|
1001
|
+
._Button--large_10byl_37 {
|
999
1002
|
padding-bottom: 11px;
|
1000
|
-
padding-
|
1001
|
-
padding-
|
1003
|
+
padding-inline-start: 19px;
|
1004
|
+
padding-inline-end: 19px;
|
1002
1005
|
padding-top: 11px;
|
1003
1006
|
}
|
1004
|
-
._Button-
|
1007
|
+
._Button-icon_10byl_44 {
|
1005
1008
|
margin-top: 2px;
|
1006
1009
|
}
|
1007
|
-
._Button--
|
1010
|
+
._Button--primary_10byl_48 {
|
1008
1011
|
background: var(--puck-color-azure-04);
|
1009
1012
|
}
|
1010
|
-
.
|
1013
|
+
._Button_10byl_1:focus-visible {
|
1011
1014
|
outline: 2px solid var(--puck-color-azure-05);
|
1012
1015
|
outline-offset: 2px;
|
1013
1016
|
}
|
1014
1017
|
@media (hover: hover) and (pointer: fine) {
|
1015
|
-
._Button--
|
1018
|
+
._Button--primary_10byl_48:hover {
|
1016
1019
|
background-color: var(--puck-color-azure-03);
|
1017
1020
|
}
|
1018
1021
|
}
|
1019
|
-
._Button--
|
1022
|
+
._Button--primary_10byl_48:active {
|
1020
1023
|
background-color: var(--puck-color-azure-02);
|
1021
1024
|
}
|
1022
|
-
._Button--
|
1025
|
+
._Button--secondary_10byl_67 {
|
1023
1026
|
border: 1px solid currentColor;
|
1024
1027
|
color: currentColor;
|
1025
1028
|
}
|
1026
1029
|
@media (hover: hover) and (pointer: fine) {
|
1027
|
-
._Button--
|
1030
|
+
._Button--secondary_10byl_67:hover {
|
1028
1031
|
background-color: var(--puck-color-azure-12);
|
1029
1032
|
color: var(--puck-color-black);
|
1030
1033
|
}
|
1031
1034
|
}
|
1032
|
-
._Button--
|
1035
|
+
._Button--secondary_10byl_67:active {
|
1033
1036
|
background-color: var(--puck-color-azure-11);
|
1034
1037
|
color: var(--puck-color-black);
|
1035
1038
|
}
|
1036
|
-
._Button--
|
1039
|
+
._Button--flush_10byl_84 {
|
1037
1040
|
border-radius: 0;
|
1038
1041
|
}
|
1039
|
-
._Button--
|
1040
|
-
._Button--
|
1042
|
+
._Button--disabled_10byl_88,
|
1043
|
+
._Button--disabled_10byl_88:hover {
|
1041
1044
|
background-color: var(--puck-color-grey-07);
|
1042
1045
|
color: var(--puck-color-grey-03);
|
1043
1046
|
cursor: not-allowed;
|
1044
1047
|
}
|
1045
|
-
._Button--
|
1048
|
+
._Button--fullWidth_10byl_95 {
|
1046
1049
|
justify-content: center;
|
1047
1050
|
width: 100%;
|
1048
1051
|
}
|
1049
|
-
._Button-
|
1050
|
-
padding-
|
1052
|
+
._Button-spinner_10byl_100 {
|
1053
|
+
padding-inline-start: 8px;
|
1051
1054
|
}
|
1052
1055
|
|
1053
1056
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/AutoField/fields/ObjectField/styles.module.css/#css-module-data */
|
@@ -1284,39 +1287,39 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1284
1287
|
}
|
1285
1288
|
|
1286
1289
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/SidebarSection/styles.module.css/#css-module-data */
|
1287
|
-
.
|
1290
|
+
._SidebarSection_8boj8_1 {
|
1288
1291
|
display: flex;
|
1289
1292
|
position: relative;
|
1290
1293
|
flex-direction: column;
|
1291
1294
|
color: var(--puck-color-black);
|
1292
1295
|
}
|
1293
|
-
.
|
1296
|
+
._SidebarSection_8boj8_1:last-of-type {
|
1294
1297
|
flex-grow: 1;
|
1295
1298
|
}
|
1296
|
-
._SidebarSection-
|
1299
|
+
._SidebarSection-title_8boj8_12 {
|
1297
1300
|
background: var(--puck-color-white);
|
1298
1301
|
padding: 16px;
|
1299
1302
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1300
1303
|
border-top: 1px solid var(--puck-color-grey-09);
|
1301
1304
|
overflow-x: auto;
|
1302
1305
|
}
|
1303
|
-
._SidebarSection--
|
1306
|
+
._SidebarSection--noBorderTop_8boj8_20 > ._SidebarSection-title_8boj8_12 {
|
1304
1307
|
border-top: 0px;
|
1305
1308
|
}
|
1306
|
-
._SidebarSection-
|
1309
|
+
._SidebarSection-content_8boj8_24 {
|
1307
1310
|
padding: 16px;
|
1308
1311
|
}
|
1309
|
-
._SidebarSection--
|
1312
|
+
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24 {
|
1310
1313
|
padding: 0px;
|
1311
1314
|
}
|
1312
|
-
._SidebarSection--
|
1315
|
+
._SidebarSection--noPadding_8boj8_28 > ._SidebarSection-content_8boj8_24:last-child {
|
1313
1316
|
padding-bottom: 4px;
|
1314
1317
|
}
|
1315
|
-
.
|
1318
|
+
._SidebarSection_8boj8_1:last-of-type ._SidebarSection-content_8boj8_24 {
|
1316
1319
|
border-bottom: none;
|
1317
1320
|
flex-grow: 1;
|
1318
1321
|
}
|
1319
|
-
._SidebarSection-
|
1322
|
+
._SidebarSection-breadcrumbLabel_8boj8_41 {
|
1320
1323
|
background: none;
|
1321
1324
|
border: 0;
|
1322
1325
|
border-radius: 2px;
|
@@ -1327,34 +1330,34 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1327
1330
|
padding: 0;
|
1328
1331
|
transition: color 50ms ease-in;
|
1329
1332
|
}
|
1330
|
-
._SidebarSection-
|
1333
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:focus-visible {
|
1331
1334
|
outline: 2px solid var(--puck-color-azure-05);
|
1332
1335
|
outline-offset: 2px;
|
1333
1336
|
}
|
1334
1337
|
@media (hover: hover) and (pointer: fine) {
|
1335
|
-
._SidebarSection-
|
1338
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:hover {
|
1336
1339
|
color: var(--puck-color-azure-03);
|
1337
1340
|
transition: none;
|
1338
1341
|
}
|
1339
1342
|
}
|
1340
|
-
._SidebarSection-
|
1343
|
+
._SidebarSection-breadcrumbLabel_8boj8_41:active {
|
1341
1344
|
color: var(--puck-color-azure-02);
|
1342
1345
|
transition: none;
|
1343
1346
|
}
|
1344
|
-
._SidebarSection-
|
1347
|
+
._SidebarSection-breadcrumbs_8boj8_70 {
|
1345
1348
|
align-items: center;
|
1346
1349
|
display: flex;
|
1347
1350
|
gap: 4px;
|
1348
1351
|
}
|
1349
|
-
._SidebarSection-
|
1352
|
+
._SidebarSection-breadcrumb_8boj8_41 {
|
1350
1353
|
align-items: center;
|
1351
1354
|
display: flex;
|
1352
1355
|
gap: 4px;
|
1353
1356
|
}
|
1354
|
-
._SidebarSection-
|
1355
|
-
padding-
|
1357
|
+
._SidebarSection-heading_8boj8_82 {
|
1358
|
+
padding-inline-end: 16px;
|
1356
1359
|
}
|
1357
|
-
._SidebarSection-
|
1360
|
+
._SidebarSection-loadingOverlay_8boj8_86 {
|
1358
1361
|
background: var(--puck-color-white);
|
1359
1362
|
display: flex;
|
1360
1363
|
justify-content: center;
|
@@ -1414,15 +1417,15 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1414
1417
|
}
|
1415
1418
|
|
1416
1419
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/styles.module.css/#css-module-data */
|
1417
|
-
.
|
1420
|
+
._Puck_11o75_19 {
|
1418
1421
|
--puck-space-px: 16px;
|
1419
1422
|
font-family: var(--puck-font-family);
|
1420
1423
|
}
|
1421
|
-
._Puck-
|
1424
|
+
._Puck-portal_11o75_24 {
|
1422
1425
|
position: relative;
|
1423
1426
|
z-index: 2;
|
1424
1427
|
}
|
1425
|
-
._PuckLayout-
|
1428
|
+
._PuckLayout-inner_11o75_31 {
|
1426
1429
|
--puck-frame-width: auto;
|
1427
1430
|
--puck-side-bar-width: 0px;
|
1428
1431
|
display: grid;
|
@@ -1433,54 +1436,54 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1433
1436
|
position: relative;
|
1434
1437
|
z-index: 0;
|
1435
1438
|
}
|
1436
|
-
._PuckLayout--
|
1439
|
+
._PuckLayout--mounted_11o75_43 ._PuckLayout-inner_11o75_31 {
|
1437
1440
|
--puck-side-bar-width: 186px;
|
1438
1441
|
}
|
1439
|
-
._PuckLayout--
|
1442
|
+
._PuckLayout--leftSideBarVisible_11o75_47 ._PuckLayout-inner_11o75_31 {
|
1440
1443
|
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) 0;
|
1441
1444
|
}
|
1442
|
-
._PuckLayout--
|
1445
|
+
._PuckLayout--rightSideBarVisible_11o75_53 ._PuckLayout-inner_11o75_31 {
|
1443
1446
|
grid-template-columns: 0 var(--puck-frame-width) var(--puck-side-bar-width);
|
1444
1447
|
}
|
1445
|
-
._PuckLayout--
|
1448
|
+
._PuckLayout--leftSideBarVisible_11o75_47._PuckLayout--rightSideBarVisible_11o75_53 ._PuckLayout-inner_11o75_31 {
|
1446
1449
|
grid-template-columns: var(--puck-side-bar-width) var(--puck-frame-width) var(--puck-side-bar-width);
|
1447
1450
|
}
|
1448
1451
|
@media (min-width: 458px) {
|
1449
|
-
._PuckLayout-
|
1452
|
+
._PuckLayout-mounted_11o75_67 ._PuckLayout-inner_11o75_31 {
|
1450
1453
|
--puck-frame-width: minmax(266px, auto);
|
1451
1454
|
}
|
1452
1455
|
}
|
1453
1456
|
@media (min-width: 638px) {
|
1454
|
-
.
|
1457
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1455
1458
|
--puck-side-bar-width: minmax(186px, 250px);
|
1456
1459
|
}
|
1457
1460
|
}
|
1458
1461
|
@media (min-width: 766px) {
|
1459
|
-
.
|
1462
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1460
1463
|
--puck-frame-width: auto;
|
1461
1464
|
}
|
1462
1465
|
}
|
1463
1466
|
@media (min-width: 990px) {
|
1464
|
-
.
|
1467
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1465
1468
|
--puck-side-bar-width: 256px;
|
1466
1469
|
}
|
1467
1470
|
}
|
1468
1471
|
@media (min-width: 1198px) {
|
1469
|
-
.
|
1472
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1470
1473
|
--puck-side-bar-width: 274px;
|
1471
1474
|
}
|
1472
1475
|
}
|
1473
1476
|
@media (min-width: 1398px) {
|
1474
|
-
.
|
1477
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1475
1478
|
--puck-side-bar-width: 290px;
|
1476
1479
|
}
|
1477
1480
|
}
|
1478
1481
|
@media (min-width: 1598px) {
|
1479
|
-
.
|
1482
|
+
._PuckLayout_11o75_31 ._PuckLayout-inner_11o75_31 {
|
1480
1483
|
--puck-side-bar-width: 320px;
|
1481
1484
|
}
|
1482
1485
|
}
|
1483
|
-
._PuckLayout-
|
1486
|
+
._PuckLayout-header_11o75_108 {
|
1484
1487
|
background: var(--puck-color-white);
|
1485
1488
|
border-bottom: 1px solid var(--puck-color-grey-09);
|
1486
1489
|
color: var(--puck-color-black);
|
@@ -1488,7 +1491,7 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1488
1491
|
position: relative;
|
1489
1492
|
max-width: 100vw;
|
1490
1493
|
}
|
1491
|
-
._PuckLayout-
|
1494
|
+
._PuckLayout-headerInner_11o75_117 {
|
1492
1495
|
align-items: end;
|
1493
1496
|
display: grid;
|
1494
1497
|
gap: var(--puck-space-px);
|
@@ -1497,53 +1500,53 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1497
1500
|
grid-template-rows: auto;
|
1498
1501
|
padding: var(--puck-space-px);
|
1499
1502
|
}
|
1500
|
-
._PuckLayout-
|
1503
|
+
._PuckLayout-headerToggle_11o75_127 {
|
1501
1504
|
color: var(--puck-color-grey-05);
|
1502
1505
|
display: flex;
|
1503
|
-
margin-
|
1506
|
+
margin-inline-start: -4px;
|
1504
1507
|
padding-top: 2px;
|
1505
1508
|
}
|
1506
|
-
._PuckLayout--
|
1507
|
-
._PuckLayout--
|
1509
|
+
._PuckLayout--rightSideBarVisible_11o75_53 ._PuckLayout-rightSideBarToggle_11o75_134,
|
1510
|
+
._PuckLayout--leftSideBarVisible_11o75_47 ._PuckLayout-leftSideBarToggle_11o75_135 {
|
1508
1511
|
color: var(--puck-color-black);
|
1509
1512
|
}
|
1510
|
-
._PuckLayout-
|
1513
|
+
._PuckLayout-headerTitle_11o75_139 {
|
1511
1514
|
align-self: center;
|
1512
1515
|
}
|
1513
|
-
._PuckLayout-
|
1516
|
+
._PuckLayout-headerPath_11o75_143 {
|
1514
1517
|
font-family: var(--puck-font-family-monospaced);
|
1515
1518
|
font-size: var(--puck-font-size-xxs);
|
1516
1519
|
font-weight: normal;
|
1517
1520
|
word-break: break-all;
|
1518
1521
|
}
|
1519
|
-
._PuckLayout-
|
1522
|
+
._PuckLayout-headerTools_11o75_150 {
|
1520
1523
|
display: flex;
|
1521
1524
|
gap: 16px;
|
1522
1525
|
justify-content: flex-end;
|
1523
1526
|
}
|
1524
|
-
._PuckLayout-
|
1527
|
+
._PuckLayout-menuButton_11o75_156 {
|
1525
1528
|
color: var(--puck-color-grey-05);
|
1526
|
-
margin-
|
1529
|
+
margin-inline-start: -4px;
|
1527
1530
|
}
|
1528
|
-
._PuckLayout--
|
1531
|
+
._PuckLayout--menuOpen_11o75_161 ._PuckLayout-menuButton_11o75_156 {
|
1529
1532
|
color: var(--puck-color-black);
|
1530
1533
|
}
|
1531
1534
|
@media (min-width: 638px) {
|
1532
|
-
._PuckLayout-
|
1535
|
+
._PuckLayout-menuButton_11o75_156 {
|
1533
1536
|
display: none;
|
1534
1537
|
}
|
1535
1538
|
}
|
1536
|
-
._PuckLayout-
|
1539
|
+
._PuckLayout-leftSideBar_11o75_135 {
|
1537
1540
|
background: var(--puck-color-grey-12);
|
1538
|
-
border-
|
1541
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
1539
1542
|
display: flex;
|
1540
1543
|
flex-direction: column;
|
1541
1544
|
grid-area: left;
|
1542
1545
|
overflow-y: auto;
|
1543
1546
|
}
|
1544
|
-
._PuckLayout-
|
1547
|
+
._PuckLayout-rightSideBar_11o75_134 {
|
1545
1548
|
background: var(--puck-color-white);
|
1546
|
-
border-
|
1549
|
+
border-inline-start: 1px solid var(--puck-color-grey-09);
|
1547
1550
|
display: flex;
|
1548
1551
|
flex-direction: column;
|
1549
1552
|
grid-area: right;
|
@@ -1593,19 +1596,19 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1593
1596
|
}
|
1594
1597
|
|
1595
1598
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ComponentList/styles.module.css/#css-module-data */
|
1596
|
-
.
|
1599
|
+
._ComponentList_1rrlt_1 {
|
1597
1600
|
max-width: 100%;
|
1598
1601
|
}
|
1599
|
-
._ComponentList--
|
1602
|
+
._ComponentList--isExpanded_1rrlt_5 + ._ComponentList_1rrlt_1 {
|
1600
1603
|
margin-top: 12px;
|
1601
1604
|
}
|
1602
|
-
._ComponentList-
|
1605
|
+
._ComponentList-content_1rrlt_9 {
|
1603
1606
|
display: none;
|
1604
1607
|
}
|
1605
|
-
._ComponentList--
|
1608
|
+
._ComponentList--isExpanded_1rrlt_5 > ._ComponentList-content_1rrlt_9 {
|
1606
1609
|
display: block;
|
1607
1610
|
}
|
1608
|
-
._ComponentList-
|
1611
|
+
._ComponentList-title_1rrlt_17 {
|
1609
1612
|
background-color: transparent;
|
1610
1613
|
border: 0;
|
1611
1614
|
color: var(--puck-color-grey-05);
|
@@ -1622,23 +1625,23 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1622
1625
|
border-radius: 4px;
|
1623
1626
|
width: 100%;
|
1624
1627
|
}
|
1625
|
-
._ComponentList-
|
1628
|
+
._ComponentList-title_1rrlt_17:focus-visible {
|
1626
1629
|
outline: 2px solid var(--puck-color-azure-05);
|
1627
1630
|
outline-offset: 2px;
|
1628
1631
|
}
|
1629
1632
|
@media (hover: hover) and (pointer: fine) {
|
1630
|
-
._ComponentList-
|
1633
|
+
._ComponentList-title_1rrlt_17:hover {
|
1631
1634
|
background-color: var(--puck-color-azure-11);
|
1632
1635
|
color: var(--puck-color-azure-04);
|
1633
1636
|
transition: none;
|
1634
1637
|
}
|
1635
1638
|
}
|
1636
|
-
._ComponentList-
|
1639
|
+
._ComponentList-title_1rrlt_17:active {
|
1637
1640
|
background-color: var(--puck-color-azure-10);
|
1638
1641
|
transition: none;
|
1639
1642
|
}
|
1640
|
-
._ComponentList-
|
1641
|
-
margin-
|
1643
|
+
._ComponentList-titleIcon_1rrlt_53 {
|
1644
|
+
margin-inline-start: auto;
|
1642
1645
|
}
|
1643
1646
|
|
1644
1647
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/Puck/components/Preview/styles.module.css/#css-module-data */
|
@@ -1653,7 +1656,7 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1653
1656
|
}
|
1654
1657
|
|
1655
1658
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/LayerTree/styles.module.css/#css-module-data */
|
1656
|
-
.
|
1659
|
+
._LayerTree_7rx04_1 {
|
1657
1660
|
color: var(--puck-color-grey-03);
|
1658
1661
|
font-family: var(--puck-font-family);
|
1659
1662
|
font-size: var(--puck-font-size-xxs);
|
@@ -1662,30 +1665,30 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1662
1665
|
list-style: none;
|
1663
1666
|
padding: 0;
|
1664
1667
|
}
|
1665
|
-
._LayerTree-
|
1668
|
+
._LayerTree-zoneTitle_7rx04_11 {
|
1666
1669
|
color: var(--puck-color-grey-05);
|
1667
1670
|
font-size: var(--puck-font-size-xxxs);
|
1668
1671
|
text-transform: uppercase;
|
1669
1672
|
}
|
1670
|
-
._LayerTree-
|
1673
|
+
._LayerTree-helper_7rx04_17 {
|
1671
1674
|
text-align: center;
|
1672
1675
|
color: var(--puck-color-grey-07);
|
1673
1676
|
margin: 8px 4px;
|
1674
1677
|
}
|
1675
|
-
.
|
1678
|
+
._Layer_7rx04_1 {
|
1676
1679
|
position: relative;
|
1677
1680
|
border: 1px solid transparent;
|
1678
1681
|
border-radius: 4px;
|
1679
1682
|
}
|
1680
|
-
._Layer-
|
1683
|
+
._Layer-inner_7rx04_29 {
|
1681
1684
|
border: 1px solid transparent;
|
1682
1685
|
border-radius: 4px;
|
1683
1686
|
transition: color 50ms ease-in;
|
1684
1687
|
}
|
1685
|
-
._Layer--
|
1686
|
-
padding-
|
1688
|
+
._Layer--containsZone_7rx04_35 > ._Layer-inner_7rx04_29 {
|
1689
|
+
padding-inline-start: 0;
|
1687
1690
|
}
|
1688
|
-
._Layer-
|
1691
|
+
._Layer-clickable_7rx04_39 {
|
1689
1692
|
align-items: center;
|
1690
1693
|
background: none;
|
1691
1694
|
border: 0;
|
@@ -1694,87 +1697,87 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1694
1697
|
cursor: pointer;
|
1695
1698
|
display: flex;
|
1696
1699
|
font: inherit;
|
1697
|
-
padding-
|
1698
|
-
padding-
|
1700
|
+
padding-inline-start: 12px;
|
1701
|
+
padding-inline-end: 4px;
|
1699
1702
|
width: 100%;
|
1700
1703
|
}
|
1701
|
-
._Layer-
|
1704
|
+
._Layer-clickable_7rx04_39:focus-visible {
|
1702
1705
|
outline: 2px solid var(--puck-color-azure-05);
|
1703
1706
|
outline-offset: 2px;
|
1704
1707
|
position: relative;
|
1705
1708
|
z-index: 1;
|
1706
1709
|
}
|
1707
1710
|
@media (hover: hover) and (pointer: fine) {
|
1708
|
-
.
|
1711
|
+
._Layer_7rx04_1:not(._Layer--isSelected_7rx04_61) > ._Layer-inner_7rx04_29:hover {
|
1709
1712
|
border-color: var(--puck-color-azure-10);
|
1710
1713
|
background: var(--puck-color-azure-11);
|
1711
1714
|
color: var(--puck-color-azure-04);
|
1712
1715
|
transition: none;
|
1713
1716
|
}
|
1714
1717
|
}
|
1715
|
-
._Layer--
|
1718
|
+
._Layer--isSelected_7rx04_61 {
|
1716
1719
|
border-color: var(--puck-color-azure-08);
|
1717
1720
|
}
|
1718
|
-
._Layer--
|
1721
|
+
._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 {
|
1719
1722
|
background: var(--puck-color-azure-10);
|
1720
1723
|
}
|
1721
|
-
._Layer--
|
1722
|
-
._Layer--
|
1724
|
+
._Layer--isSelected_7rx04_61 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77,
|
1725
|
+
._Layer--childIsSelected_7rx04_78 > ._Layer-inner_7rx04_29 > ._Layer-clickable_7rx04_39 > ._Layer-chevron_7rx04_77 {
|
1723
1726
|
transform: scaleY(-1);
|
1724
1727
|
}
|
1725
|
-
._Layer-
|
1728
|
+
._Layer-zones_7rx04_82 {
|
1726
1729
|
display: none;
|
1727
|
-
margin-
|
1730
|
+
margin-inline-start: 12px;
|
1728
1731
|
}
|
1729
|
-
._Layer--
|
1730
|
-
._Layer--
|
1732
|
+
._Layer--isSelected_7rx04_61 > ._Layer-zones_7rx04_82,
|
1733
|
+
._Layer--childIsSelected_7rx04_78 > ._Layer-zones_7rx04_82 {
|
1731
1734
|
display: block;
|
1732
1735
|
}
|
1733
|
-
._Layer-
|
1734
|
-
margin-
|
1736
|
+
._Layer-zones_7rx04_82 > ._LayerTree_7rx04_1 {
|
1737
|
+
margin-inline-start: 12px;
|
1735
1738
|
}
|
1736
|
-
._Layer-
|
1737
|
-
._LayerTree-
|
1739
|
+
._Layer-title_7rx04_96,
|
1740
|
+
._LayerTree-zoneTitle_7rx04_11 {
|
1738
1741
|
display: flex;
|
1739
1742
|
gap: 8px;
|
1740
1743
|
align-items: center;
|
1741
1744
|
margin: 8px 4px;
|
1742
1745
|
overflow-x: hidden;
|
1743
1746
|
}
|
1744
|
-
._Layer-
|
1747
|
+
._Layer-name_7rx04_105 {
|
1745
1748
|
overflow-x: hidden;
|
1746
1749
|
text-overflow: ellipsis;
|
1747
1750
|
white-space: nowrap;
|
1748
1751
|
}
|
1749
|
-
._Layer-
|
1752
|
+
._Layer-icon_7rx04_111 {
|
1750
1753
|
color: var(--puck-color-rose-07);
|
1751
1754
|
margin-top: 4px;
|
1752
1755
|
}
|
1753
|
-
._Layer-
|
1756
|
+
._Layer-zoneIcon_7rx04_116 {
|
1754
1757
|
color: var(--puck-color-grey-08);
|
1755
1758
|
margin-top: 4px;
|
1756
1759
|
}
|
1757
1760
|
|
1758
1761
|
/* css-module:/home/runner/work/puck/puck/packages/core/components/ViewportControls/styles.module.css/#css-module-data */
|
1759
|
-
.
|
1762
|
+
._ViewportControls_gejzr_1 {
|
1760
1763
|
display: flex;
|
1761
1764
|
background: var(--puck-color-grey-11);
|
1762
1765
|
box-sizing: border-box;
|
1763
|
-
border-
|
1766
|
+
border-inline-start: 2px solid var(--puck-color-grey-11);
|
1764
1767
|
justify-content: center;
|
1765
1768
|
gap: 8px;
|
1766
1769
|
min-width: 358px;
|
1767
1770
|
padding-bottom: 16px;
|
1768
|
-
padding-
|
1769
|
-
padding-
|
1771
|
+
padding-inline-start: var(--puck-space-px);
|
1772
|
+
padding-inline-end: var(--puck-space-px);
|
1770
1773
|
z-index: 1;
|
1771
1774
|
}
|
1772
|
-
._ViewportControls-
|
1773
|
-
border-
|
1774
|
-
margin-
|
1775
|
-
margin-
|
1775
|
+
._ViewportControls-divider_gejzr_15 {
|
1776
|
+
border-inline-end: 1px solid var(--puck-color-grey-09);
|
1777
|
+
margin-inline-start: 8px;
|
1778
|
+
margin-inline-end: 8px;
|
1776
1779
|
}
|
1777
|
-
._ViewportControls-
|
1780
|
+
._ViewportControls-zoomSelect_gejzr_21 {
|
1778
1781
|
appearance: none;
|
1779
1782
|
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;
|
1780
1783
|
background-size: 10px;
|
@@ -1785,7 +1788,10 @@ body:has(._DropZone--isAnimating_kmkdc_70:empty) [data-puck-overlay] {
|
|
1785
1788
|
padding: 0;
|
1786
1789
|
width: 96px;
|
1787
1790
|
}
|
1788
|
-
.
|
1791
|
+
._ViewportControls-zoomSelect_gejzr_21:dir(rtl) {
|
1792
|
+
background-position: 12px calc(50% + 3px);
|
1793
|
+
}
|
1794
|
+
._ViewportButton--isActive_gejzr_38 ._ViewportButton-inner_gejzr_38 {
|
1789
1795
|
color: var(--puck-color-azure-04);
|
1790
1796
|
}
|
1791
1797
|
|