@crediblemark/build 0.24.7 → 0.24.8
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/{ArrayField-SEWJV5GB.css → ArrayField-NAZ65SMV.css} +127 -89
- package/dist/{ArrayField-2HGRARI2.mjs → ArrayField-PHJW2CFO.mjs} +2 -2
- package/dist/{ObjectField-KBWPA5AV.css → ObjectField-IZ4Z2Z2B.css} +127 -89
- package/dist/{ObjectField-2JSLQM7O.mjs → ObjectField-XOHBV56M.mjs} +2 -2
- package/dist/{chunk-QV6ANL5D.mjs → chunk-AHT2WTZ7.mjs} +4 -4
- package/dist/{chunk-N2NNRJDJ.mjs → chunk-FBNOHTBJ.mjs} +2 -2
- package/dist/{chunk-7EY2S46B.mjs → chunk-QC5SGUG2.mjs} +13 -17
- package/dist/{chunk-TROD5OXC.mjs → chunk-XOJTVSZH.mjs} +5 -5
- package/dist/index.css +151 -113
- package/dist/index.js +18 -22
- package/dist/index.mjs +4 -4
- package/dist/no-external.css +151 -113
- package/dist/no-external.js +18 -22
- package/dist/no-external.mjs +4 -4
- package/package.json +1 -1
package/dist/no-external.css
CHANGED
|
@@ -240,50 +240,63 @@
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
/* css-module:/home/crediblemark/Project/Credibuild/components/AutoField/styles.module.css/#css-module-data */
|
|
243
|
-
.
|
|
244
|
-
|
|
243
|
+
._InputWrapper_amigi_1:not(._InputWrapper--object_amigi_1):not(._InputWrapper--array_amigi_1) {
|
|
244
|
+
border: 1px solid var(--credbuild-color-grey-10);
|
|
245
|
+
border-radius: 5px;
|
|
246
|
+
padding: 6px 8px;
|
|
247
|
+
background-color: var(--credbuild-color-white);
|
|
248
|
+
transition: all 0.2s ease;
|
|
249
|
+
}
|
|
250
|
+
._InputWrapper_amigi_1 + ._InputWrapper_amigi_1 {
|
|
251
|
+
margin-top: 4px;
|
|
245
252
|
}
|
|
246
|
-
.
|
|
253
|
+
._InputWrapper_amigi_1:not(._InputWrapper--object_amigi_1):not(._InputWrapper--array_amigi_1):hover {
|
|
254
|
+
border-color: var(--credbuild-color-grey-08);
|
|
255
|
+
background-color: var(--credbuild-color-grey-11);
|
|
256
|
+
}
|
|
257
|
+
._Input-label_amigi_18 {
|
|
247
258
|
align-items: center;
|
|
248
|
-
color: var(--credbuild-color-grey-
|
|
259
|
+
color: var(--credbuild-color-grey-05);
|
|
249
260
|
display: flex;
|
|
250
|
-
padding-bottom:
|
|
251
|
-
font-size:
|
|
252
|
-
font-weight:
|
|
261
|
+
padding-bottom: 2px;
|
|
262
|
+
font-size: 10px;
|
|
263
|
+
font-weight: 500;
|
|
264
|
+
text-transform: uppercase;
|
|
265
|
+
letter-spacing: 0.02em;
|
|
253
266
|
}
|
|
254
|
-
._Input-label--
|
|
267
|
+
._Input-label--noChildren_amigi_29 {
|
|
255
268
|
padding-bottom: 0;
|
|
256
269
|
}
|
|
257
|
-
._Input-
|
|
270
|
+
._Input-labelIcon_amigi_33 {
|
|
258
271
|
color: var(--credbuild-color-grey-07);
|
|
259
272
|
display: flex;
|
|
260
273
|
margin-inline-end: 4px;
|
|
261
274
|
padding-inline-start: 4px;
|
|
262
275
|
}
|
|
263
|
-
._Input-
|
|
276
|
+
._Input-disabledIcon_amigi_40 {
|
|
264
277
|
color: var(--credbuild-color-grey-05);
|
|
265
278
|
margin-inline-start: auto;
|
|
266
279
|
}
|
|
267
|
-
._Input-
|
|
268
|
-
background:
|
|
269
|
-
border
|
|
270
|
-
border-
|
|
271
|
-
border-color: var(--credbuild-color-grey-09);
|
|
272
|
-
border-radius: 4px;
|
|
280
|
+
._Input-input_amigi_45 {
|
|
281
|
+
background: transparent;
|
|
282
|
+
border: none;
|
|
283
|
+
border-radius: 0;
|
|
273
284
|
box-sizing: border-box;
|
|
274
285
|
font-family: inherit;
|
|
275
|
-
font-size:
|
|
276
|
-
padding:
|
|
277
|
-
transition:
|
|
286
|
+
font-size: 12px;
|
|
287
|
+
padding: 0;
|
|
288
|
+
transition: all 0.1s ease;
|
|
278
289
|
width: 100%;
|
|
279
290
|
max-width: 100%;
|
|
291
|
+
color: var(--credbuild-color-grey-02);
|
|
292
|
+
outline: none;
|
|
280
293
|
}
|
|
281
294
|
@media (min-width: 458px) {
|
|
282
|
-
._Input-
|
|
295
|
+
._Input-input_amigi_45 {
|
|
283
296
|
font-size: 14px;
|
|
284
297
|
}
|
|
285
298
|
}
|
|
286
|
-
select._Input-
|
|
299
|
+
select._Input-input_amigi_45 {
|
|
287
300
|
appearance: none;
|
|
288
301
|
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;
|
|
289
302
|
background-size: 12px;
|
|
@@ -292,29 +305,29 @@ select._Input-input_1bq9u_30 {
|
|
|
292
305
|
background-color: var(--credbuild-color-white);
|
|
293
306
|
cursor: pointer;
|
|
294
307
|
}
|
|
295
|
-
select._Input-
|
|
308
|
+
select._Input-input_amigi_45:dir(rtl) {
|
|
296
309
|
background-position: 12px calc(50% + 3px);
|
|
297
310
|
}
|
|
298
311
|
@media (hover: hover) and (pointer: fine) {
|
|
299
|
-
.
|
|
300
|
-
.
|
|
312
|
+
._Input_amigi_1:has(> input):hover ._Input-input_amigi_45:not([readonly]),
|
|
313
|
+
._Input_amigi_1:has(> textarea):hover ._Input-input_amigi_45:not([readonly]) {
|
|
301
314
|
border-color: var(--credbuild-color-grey-05);
|
|
302
315
|
transition: none;
|
|
303
316
|
}
|
|
304
|
-
.
|
|
317
|
+
._Input_amigi_1:has(> select):hover ._Input-input_amigi_45:not([disabled]) {
|
|
305
318
|
background-color: var(--credbuild-color-azure-12);
|
|
306
319
|
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>");
|
|
307
320
|
border-color: var(--credbuild-color-grey-05);
|
|
308
321
|
transition: none;
|
|
309
322
|
}
|
|
310
323
|
}
|
|
311
|
-
._Input-
|
|
324
|
+
._Input-input_amigi_45:focus {
|
|
312
325
|
border-color: var(--credbuild-color-grey-05);
|
|
313
326
|
outline: 2px solid var(--credbuild-color-azure-05);
|
|
314
327
|
transition: none;
|
|
315
328
|
}
|
|
316
|
-
._Input--
|
|
317
|
-
._Input--
|
|
329
|
+
._Input--readOnly_amigi_101 > ._Input-input_amigi_45,
|
|
330
|
+
._Input--readOnly_amigi_101 > select._Input-input_amigi_45 {
|
|
318
331
|
background-color: var(--credbuild-color-grey-11);
|
|
319
332
|
border-color: var(--credbuild-color-grey-09);
|
|
320
333
|
color: var(--credbuild-color-grey-04);
|
|
@@ -323,34 +336,34 @@ select._Input-input_1bq9u_30:dir(rtl) {
|
|
|
323
336
|
outline: 0;
|
|
324
337
|
transition: none;
|
|
325
338
|
}
|
|
326
|
-
._Input-
|
|
339
|
+
._Input-radioGroupItems_amigi_112 {
|
|
327
340
|
display: flex;
|
|
328
341
|
border: 1px solid var(--credbuild-color-grey-09);
|
|
329
342
|
border-radius: 4px;
|
|
330
343
|
flex-wrap: wrap;
|
|
331
344
|
}
|
|
332
|
-
._Input-
|
|
345
|
+
._Input-radio_amigi_112 {
|
|
333
346
|
border-inline-end: 1px solid var(--credbuild-color-grey-09);
|
|
334
347
|
flex-grow: 1;
|
|
335
348
|
}
|
|
336
|
-
._Input-
|
|
349
|
+
._Input-radio_amigi_112:first-of-type {
|
|
337
350
|
border-bottom-left-radius: 4px;
|
|
338
351
|
border-top-left-radius: 4px;
|
|
339
352
|
}
|
|
340
|
-
._Input-
|
|
353
|
+
._Input-radio_amigi_112:first-of-type ._Input-radioInner_amigi_129 {
|
|
341
354
|
border-bottom-left-radius: 3px;
|
|
342
355
|
border-top-left-radius: 3px;
|
|
343
356
|
}
|
|
344
|
-
._Input-
|
|
357
|
+
._Input-radio_amigi_112:last-of-type {
|
|
345
358
|
border-bottom-right-radius: 4px;
|
|
346
359
|
border-inline-end: 0;
|
|
347
360
|
border-top-right-radius: 4px;
|
|
348
361
|
}
|
|
349
|
-
._Input-
|
|
362
|
+
._Input-radio_amigi_112:last-of-type ._Input-radioInner_amigi_129 {
|
|
350
363
|
border-bottom-right-radius: 3px;
|
|
351
364
|
border-top-right-radius: 3px;
|
|
352
365
|
}
|
|
353
|
-
._Input-
|
|
366
|
+
._Input-radioInner_amigi_129 {
|
|
354
367
|
background-color: var(--credbuild-color-white);
|
|
355
368
|
color: var(--credbuild-color-grey-04);
|
|
356
369
|
cursor: pointer;
|
|
@@ -359,32 +372,32 @@ select._Input-input_1bq9u_30:dir(rtl) {
|
|
|
359
372
|
text-align: center;
|
|
360
373
|
transition: background-color 50ms ease-in;
|
|
361
374
|
}
|
|
362
|
-
._Input-
|
|
375
|
+
._Input-radio_amigi_112:has(:focus-visible) {
|
|
363
376
|
outline: 2px solid var(--credbuild-color-azure-05);
|
|
364
377
|
outline-offset: 2px;
|
|
365
378
|
position: relative;
|
|
366
379
|
}
|
|
367
380
|
@media (hover: hover) and (pointer: fine) {
|
|
368
|
-
._Input-
|
|
381
|
+
._Input-radioInner_amigi_129:hover {
|
|
369
382
|
background-color: var(--credbuild-color-azure-12);
|
|
370
383
|
transition: none;
|
|
371
384
|
}
|
|
372
385
|
}
|
|
373
|
-
._Input--
|
|
386
|
+
._Input--readOnly_amigi_101 ._Input-radioInner_amigi_129 {
|
|
374
387
|
background-color: var(--credbuild-color-white);
|
|
375
388
|
color: var(--credbuild-color-grey-04);
|
|
376
389
|
cursor: default;
|
|
377
390
|
}
|
|
378
|
-
._Input-
|
|
391
|
+
._Input-radio_amigi_112 ._Input-radioInput_amigi_174:checked ~ ._Input-radioInner_amigi_129 {
|
|
379
392
|
background-color: var(--credbuild-color-azure-11);
|
|
380
393
|
color: var(--credbuild-color-azure-04);
|
|
381
394
|
font-weight: 500;
|
|
382
395
|
}
|
|
383
|
-
._Input--
|
|
396
|
+
._Input--readOnly_amigi_101 ._Input-radioInput_amigi_174:checked ~ ._Input-radioInner_amigi_129 {
|
|
384
397
|
background-color: var(--credbuild-color-grey-11);
|
|
385
398
|
color: var(--credbuild-color-grey-04);
|
|
386
399
|
}
|
|
387
|
-
._Input-
|
|
400
|
+
._Input-radio_amigi_112 ._Input-radioInput_amigi_174 {
|
|
388
401
|
clip: rect(0 0 0 0);
|
|
389
402
|
clip-path: inset(100%);
|
|
390
403
|
height: 1px;
|
|
@@ -393,7 +406,7 @@ select._Input-input_1bq9u_30:dir(rtl) {
|
|
|
393
406
|
white-space: nowrap;
|
|
394
407
|
width: 1px;
|
|
395
408
|
}
|
|
396
|
-
textarea._Input-
|
|
409
|
+
textarea._Input-input_amigi_45 {
|
|
397
410
|
margin-bottom: -4px;
|
|
398
411
|
}
|
|
399
412
|
|
|
@@ -1158,18 +1171,18 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1158
1171
|
}
|
|
1159
1172
|
|
|
1160
1173
|
/* css-module:/home/crediblemark/Project/Credibuild/components/AutoField/fields/ArrayField/styles.module.css/#css-module-data */
|
|
1161
|
-
.
|
|
1174
|
+
._ArrayField_19wby_5 {
|
|
1162
1175
|
display: flex;
|
|
1163
1176
|
flex-direction: column;
|
|
1164
1177
|
background: var(--credbuild-color-azure-11);
|
|
1165
1178
|
border: 1px solid var(--credbuild-color-grey-09);
|
|
1166
1179
|
border-radius: 4px;
|
|
1167
1180
|
}
|
|
1168
|
-
._ArrayField--
|
|
1181
|
+
._ArrayField--isDraggingFrom_19wby_13 {
|
|
1169
1182
|
background-color: var(--credbuild-color-azure-11);
|
|
1170
1183
|
overflow: hidden;
|
|
1171
1184
|
}
|
|
1172
|
-
._ArrayField-
|
|
1185
|
+
._ArrayField-addButton_19wby_18 {
|
|
1173
1186
|
background-color: var(--credbuild-color-white);
|
|
1174
1187
|
border: none;
|
|
1175
1188
|
border-radius: 3px;
|
|
@@ -1183,63 +1196,63 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1183
1196
|
text-align: left;
|
|
1184
1197
|
transition: background-color 50ms ease-in;
|
|
1185
1198
|
}
|
|
1186
|
-
._ArrayField--
|
|
1199
|
+
._ArrayField--hasItems_19wby_33 > ._ArrayField-addButton_19wby_18 {
|
|
1187
1200
|
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1188
1201
|
border-top-left-radius: 0;
|
|
1189
1202
|
border-top-right-radius: 0;
|
|
1190
1203
|
}
|
|
1191
|
-
._ArrayField-
|
|
1204
|
+
._ArrayField-addButton_19wby_18:focus-visible {
|
|
1192
1205
|
outline: 2px solid var(--credbuild-color-azure-05);
|
|
1193
1206
|
outline-offset: 2px;
|
|
1194
1207
|
position: relative;
|
|
1195
1208
|
}
|
|
1196
1209
|
@media (hover: hover) and (pointer: fine) {
|
|
1197
|
-
.
|
|
1210
|
+
._ArrayField_19wby_5:not(._ArrayField--isDraggingFrom_19wby_13) > ._ArrayField-addButton_19wby_18:hover {
|
|
1198
1211
|
background: var(--credbuild-color-azure-12);
|
|
1199
1212
|
color: var(--credbuild-color-azure-04);
|
|
1200
1213
|
transition: none;
|
|
1201
1214
|
}
|
|
1202
1215
|
}
|
|
1203
|
-
.
|
|
1216
|
+
._ArrayField_19wby_5:not(._ArrayField--isDraggingFrom_19wby_13) > ._ArrayField-addButton_19wby_18:active {
|
|
1204
1217
|
background: var(--credbuild-color-azure-11);
|
|
1205
1218
|
color: var(--credbuild-color-azure-04);
|
|
1206
1219
|
transition: none;
|
|
1207
1220
|
}
|
|
1208
|
-
._ArrayField-
|
|
1221
|
+
._ArrayField-inner_19wby_59 {
|
|
1209
1222
|
margin-top: -1px;
|
|
1210
1223
|
}
|
|
1211
|
-
.
|
|
1224
|
+
._ArrayFieldItem_19wby_67 {
|
|
1212
1225
|
border-top-left-radius: 3px;
|
|
1213
1226
|
border-top-right-radius: 3px;
|
|
1214
1227
|
display: block;
|
|
1215
1228
|
position: relative;
|
|
1216
1229
|
}
|
|
1217
|
-
.
|
|
1230
|
+
._ArrayFieldItem_19wby_67 {
|
|
1218
1231
|
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1219
1232
|
}
|
|
1220
|
-
._ArrayFieldItem--
|
|
1233
|
+
._ArrayFieldItem--isDragging_19wby_78 {
|
|
1221
1234
|
border-top: transparent;
|
|
1222
1235
|
}
|
|
1223
|
-
._ArrayFieldItem--
|
|
1236
|
+
._ArrayFieldItem--isExpanded_19wby_82::before {
|
|
1224
1237
|
display: none;
|
|
1225
1238
|
}
|
|
1226
|
-
._ArrayFieldItem--
|
|
1239
|
+
._ArrayFieldItem--isExpanded_19wby_82 {
|
|
1227
1240
|
border-bottom: 0;
|
|
1228
1241
|
outline-offset: 0px !important;
|
|
1229
1242
|
outline: 1px solid var(--credbuild-color-azure-07) !important;
|
|
1230
1243
|
z-index: 2;
|
|
1231
1244
|
}
|
|
1232
|
-
._ArrayFieldItem--
|
|
1245
|
+
._ArrayFieldItem--isDragging_19wby_78 {
|
|
1233
1246
|
outline: 2px var(--credbuild-color-azure-09) solid !important;
|
|
1234
1247
|
}
|
|
1235
|
-
._ArrayFieldItem--
|
|
1248
|
+
._ArrayFieldItem--isDragging_19wby_78 ._ArrayFieldItem-summary_19wby_97:active {
|
|
1236
1249
|
background-color: var(--credbuild-color-white);
|
|
1237
1250
|
}
|
|
1238
|
-
.
|
|
1251
|
+
._ArrayFieldItem_19wby_67 + ._ArrayFieldItem_19wby_67 {
|
|
1239
1252
|
border-top-left-radius: 0;
|
|
1240
1253
|
border-top-right-radius: 0;
|
|
1241
1254
|
}
|
|
1242
|
-
._ArrayFieldItem-
|
|
1255
|
+
._ArrayFieldItem-summary_19wby_97 {
|
|
1243
1256
|
background: var(--credbuild-color-white);
|
|
1244
1257
|
color: var(--credbuild-color-grey-04);
|
|
1245
1258
|
cursor: pointer;
|
|
@@ -1249,73 +1262,73 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1249
1262
|
justify-content: space-between;
|
|
1250
1263
|
font-size: var(--credbuild-font-size-xxs);
|
|
1251
1264
|
list-style: none;
|
|
1252
|
-
padding:
|
|
1265
|
+
padding: 6px 10px;
|
|
1253
1266
|
position: relative;
|
|
1254
1267
|
overflow: hidden;
|
|
1255
1268
|
transition: background-color 50ms ease-in;
|
|
1256
1269
|
}
|
|
1257
|
-
._ArrayFieldItem--
|
|
1270
|
+
._ArrayFieldItem--noFields_19wby_122 > ._ArrayFieldItem-summary_19wby_97 {
|
|
1258
1271
|
cursor: grab;
|
|
1259
1272
|
}
|
|
1260
|
-
.
|
|
1273
|
+
._ArrayFieldItem_19wby_67:first-of-type > ._ArrayFieldItem-summary_19wby_97 {
|
|
1261
1274
|
border-top-left-radius: 3px;
|
|
1262
1275
|
border-top-right-radius: 3px;
|
|
1263
1276
|
}
|
|
1264
|
-
._ArrayField--
|
|
1277
|
+
._ArrayField--addDisabled_19wby_131 > ._ArrayField-inner_19wby_59 > ._ArrayFieldItem_19wby_67:last-of-type:not(._ArrayFieldItem--isExpanded_19wby_82) > ._ArrayFieldItem-summary_19wby_97 {
|
|
1265
1278
|
border-bottom-left-radius: 3px;
|
|
1266
1279
|
border-bottom-right-radius: 3px;
|
|
1267
1280
|
}
|
|
1268
|
-
._ArrayField--
|
|
1281
|
+
._ArrayField--addDisabled_19wby_131 > ._ArrayField-inner_19wby_59 > ._ArrayFieldItem--isExpanded_19wby_82:last-of-type {
|
|
1269
1282
|
border-bottom-left-radius: 3px;
|
|
1270
1283
|
border-bottom-right-radius: 3px;
|
|
1271
1284
|
}
|
|
1272
|
-
._ArrayFieldItem-
|
|
1285
|
+
._ArrayFieldItem-summary_19wby_97:focus-visible {
|
|
1273
1286
|
outline: 2px solid var(--credbuild-color-azure-05);
|
|
1274
1287
|
outline-offset: 2px;
|
|
1275
1288
|
}
|
|
1276
1289
|
@media (hover: hover) and (pointer: fine) {
|
|
1277
|
-
._ArrayFieldItem-
|
|
1290
|
+
._ArrayFieldItem-summary_19wby_97:hover {
|
|
1278
1291
|
background-color: var(--credbuild-color-azure-12);
|
|
1279
1292
|
transition: none;
|
|
1280
1293
|
}
|
|
1281
1294
|
}
|
|
1282
|
-
._ArrayFieldItem-
|
|
1295
|
+
._ArrayFieldItem-summary_19wby_97:active {
|
|
1283
1296
|
background-color: var(--credbuild-color-azure-11);
|
|
1284
1297
|
transition: none;
|
|
1285
1298
|
}
|
|
1286
|
-
._ArrayFieldItem--
|
|
1299
|
+
._ArrayFieldItem--isExpanded_19wby_82 > ._ArrayFieldItem-summary_19wby_97 {
|
|
1287
1300
|
background: var(--credbuild-color-azure-11);
|
|
1288
1301
|
color: var(--credbuild-color-azure-04);
|
|
1289
1302
|
font-weight: 600;
|
|
1290
1303
|
transition: none;
|
|
1291
1304
|
}
|
|
1292
|
-
._ArrayFieldItem-
|
|
1305
|
+
._ArrayFieldItem-body_19wby_170 {
|
|
1293
1306
|
background: var(--credbuild-color-white);
|
|
1294
1307
|
display: none;
|
|
1295
1308
|
}
|
|
1296
|
-
._ArrayFieldItem--
|
|
1309
|
+
._ArrayFieldItem--isExpanded_19wby_82 > ._ArrayFieldItem-body_19wby_170 {
|
|
1297
1310
|
display: block;
|
|
1298
1311
|
}
|
|
1299
|
-
._ArrayFieldItem-
|
|
1312
|
+
._ArrayFieldItem-fieldset_19wby_179 {
|
|
1300
1313
|
border: none;
|
|
1301
1314
|
border-top: 1px solid var(--credbuild-color-grey-09);
|
|
1302
1315
|
margin: 0;
|
|
1303
1316
|
min-width: 0;
|
|
1304
|
-
padding:
|
|
1317
|
+
padding: 8px 10px;
|
|
1305
1318
|
}
|
|
1306
|
-
._ArrayFieldItem-
|
|
1319
|
+
._ArrayFieldItem-rhs_19wby_187 {
|
|
1307
1320
|
display: flex;
|
|
1308
1321
|
gap: 4px;
|
|
1309
1322
|
align-items: center;
|
|
1310
1323
|
}
|
|
1311
|
-
._ArrayFieldItem-
|
|
1324
|
+
._ArrayFieldItem-actions_19wby_193 {
|
|
1312
1325
|
color: var(--credbuild-color-grey-04);
|
|
1313
1326
|
display: flex;
|
|
1314
1327
|
gap: 4px;
|
|
1315
1328
|
opacity: 0;
|
|
1316
1329
|
}
|
|
1317
|
-
._ArrayFieldItem-
|
|
1318
|
-
._ArrayFieldItem-
|
|
1330
|
+
._ArrayFieldItem-summary_19wby_97:focus-within > ._ArrayFieldItem-rhs_19wby_187 > ._ArrayFieldItem-actions_19wby_193,
|
|
1331
|
+
._ArrayFieldItem-summary_19wby_97:hover > ._ArrayFieldItem-rhs_19wby_187 > ._ArrayFieldItem-actions_19wby_193 {
|
|
1319
1332
|
opacity: 1;
|
|
1320
1333
|
}
|
|
1321
1334
|
|
|
@@ -1350,44 +1363,69 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1350
1363
|
}
|
|
1351
1364
|
|
|
1352
1365
|
/* css-module:/home/crediblemark/Project/Credibuild/components/AutoField/fields/ObjectField/styles.module.css/#css-module-data */
|
|
1353
|
-
.
|
|
1366
|
+
._ObjectField_1n2lh_1 {
|
|
1354
1367
|
display: flex;
|
|
1355
1368
|
flex-direction: column;
|
|
1356
1369
|
background-color: transparent;
|
|
1357
|
-
|
|
1358
|
-
border-radius: 6px;
|
|
1359
|
-
margin-bottom: 8px;
|
|
1370
|
+
margin-bottom: 4px;
|
|
1360
1371
|
overflow: hidden;
|
|
1361
1372
|
transition: all 0.2s ease;
|
|
1362
1373
|
}
|
|
1363
|
-
._ObjectField--
|
|
1364
|
-
|
|
1365
|
-
background-color: var(--credbuild-color-grey-11);
|
|
1374
|
+
._ObjectField--isOpen_1n2lh_10 {
|
|
1375
|
+
background-color: transparent;
|
|
1366
1376
|
}
|
|
1367
|
-
._ObjectField-
|
|
1368
|
-
|
|
1369
|
-
background-color: var(--credbuild-color-white);
|
|
1377
|
+
._ObjectField-content_1n2lh_14 {
|
|
1378
|
+
background-color: transparent;
|
|
1370
1379
|
}
|
|
1371
|
-
._ObjectField-
|
|
1380
|
+
._ObjectField-fieldset_1n2lh_18 {
|
|
1372
1381
|
border: none;
|
|
1373
1382
|
margin: 0;
|
|
1374
1383
|
min-width: 0;
|
|
1375
|
-
padding:
|
|
1384
|
+
padding: 0 0 8px 12px;
|
|
1376
1385
|
display: flex;
|
|
1377
1386
|
flex-direction: column;
|
|
1378
|
-
gap:
|
|
1387
|
+
gap: 4px;
|
|
1388
|
+
border-left: 1px solid var(--credbuild-color-grey-10);
|
|
1389
|
+
margin-left: 8px;
|
|
1390
|
+
}
|
|
1391
|
+
._ObjectField-header_1n2lh_30 {
|
|
1392
|
+
background-color: transparent;
|
|
1393
|
+
border: 0;
|
|
1394
|
+
color: var(--credbuild-color-grey-05);
|
|
1395
|
+
cursor: pointer;
|
|
1396
|
+
display: flex;
|
|
1397
|
+
font: inherit;
|
|
1398
|
+
font-size: var(--credbuild-font-size-xxxs);
|
|
1399
|
+
list-style: none;
|
|
1400
|
+
margin-bottom: 4px;
|
|
1401
|
+
padding: 4px 8px;
|
|
1402
|
+
text-transform: uppercase;
|
|
1403
|
+
transition: background-color 50ms ease-in, color 50ms ease-in;
|
|
1404
|
+
gap: 4px;
|
|
1405
|
+
border-radius: 4px;
|
|
1406
|
+
width: 100%;
|
|
1407
|
+
align-items: center;
|
|
1408
|
+
}
|
|
1409
|
+
._ObjectField-header_1n2lh_30:hover {
|
|
1410
|
+
background-color: var(--credbuild-color-azure-11);
|
|
1411
|
+
color: var(--credbuild-color-azure-04);
|
|
1412
|
+
}
|
|
1413
|
+
._ObjectField-headerIcon_1n2lh_54 {
|
|
1414
|
+
margin-inline-start: auto;
|
|
1415
|
+
display: flex;
|
|
1416
|
+
align-items: center;
|
|
1379
1417
|
}
|
|
1380
1418
|
|
|
1381
1419
|
/* css-module:/home/crediblemark/Project/Credibuild/components/Drawer/styles.module.css/#css-module-data */
|
|
1382
|
-
.
|
|
1420
|
+
._Drawer_1bd7y_1 {
|
|
1383
1421
|
display: flex;
|
|
1384
1422
|
flex-direction: column;
|
|
1385
1423
|
background-color: var(--cb-bg-base);
|
|
1386
1424
|
}
|
|
1387
|
-
._Drawer-
|
|
1425
|
+
._Drawer-draggable_1bd7y_7 {
|
|
1388
1426
|
position: relative;
|
|
1389
1427
|
}
|
|
1390
|
-
._Drawer-
|
|
1428
|
+
._Drawer-draggableBg_1bd7y_11 {
|
|
1391
1429
|
position: absolute;
|
|
1392
1430
|
top: 0;
|
|
1393
1431
|
right: 0;
|
|
@@ -1396,10 +1434,10 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1396
1434
|
pointer-events: none;
|
|
1397
1435
|
z-index: -1;
|
|
1398
1436
|
}
|
|
1399
|
-
._DrawerItem-
|
|
1437
|
+
._DrawerItem-draggable_1bd7y_21 {
|
|
1400
1438
|
background: transparent;
|
|
1401
1439
|
cursor: grab;
|
|
1402
|
-
padding:
|
|
1440
|
+
padding: 4px 10px;
|
|
1403
1441
|
display: flex;
|
|
1404
1442
|
border: none;
|
|
1405
1443
|
font-size: 11px;
|
|
@@ -1408,29 +1446,29 @@ textarea._Input-input_1bq9u_30 {
|
|
|
1408
1446
|
transition: all 0.2s ease;
|
|
1409
1447
|
color: var(--cb-silver-muted);
|
|
1410
1448
|
}
|
|
1411
|
-
._DrawerItem--
|
|
1449
|
+
._DrawerItem--disabled_1bd7y_34 ._DrawerItem-draggable_1bd7y_21 {
|
|
1412
1450
|
opacity: 0.5;
|
|
1413
1451
|
cursor: not-allowed;
|
|
1414
1452
|
}
|
|
1415
|
-
.
|
|
1453
|
+
._DrawerItem_1bd7y_21:focus-visible {
|
|
1416
1454
|
outline: 0;
|
|
1417
1455
|
}
|
|
1418
|
-
.
|
|
1456
|
+
._Drawer_1bd7y_1:not(._Drawer--isDraggingFrom_1bd7y_43) ._DrawerItem-default_1bd7y_44 {
|
|
1419
1457
|
background-color: transparent;
|
|
1420
1458
|
border: none;
|
|
1421
1459
|
color: var(--cb-silver-muted);
|
|
1422
|
-
padding:
|
|
1460
|
+
padding: 4px 10px;
|
|
1423
1461
|
position: relative;
|
|
1424
1462
|
transition: all 0.2s ease;
|
|
1425
1463
|
}
|
|
1426
1464
|
@media (hover: hover) and (pointer: fine) {
|
|
1427
|
-
._DrawerItem-
|
|
1428
|
-
._DrawerItem-
|
|
1465
|
+
._DrawerItem-draggable_1bd7y_21:hover,
|
|
1466
|
+
._DrawerItem-default_1bd7y_44:hover {
|
|
1429
1467
|
background-color: var(--cb-gold-faint);
|
|
1430
1468
|
color: var(--cb-gold);
|
|
1431
1469
|
}
|
|
1432
1470
|
}
|
|
1433
|
-
._DrawerItem-
|
|
1471
|
+
._DrawerItem-name_1bd7y_61 {
|
|
1434
1472
|
overflow-x: hidden;
|
|
1435
1473
|
text-overflow: ellipsis;
|
|
1436
1474
|
white-space: nowrap;
|
|
@@ -1670,19 +1708,19 @@ body:has(._DropZone--isAnimating_1vmgt_68:empty) [data-credbuild-overlay] {
|
|
|
1670
1708
|
}
|
|
1671
1709
|
|
|
1672
1710
|
/* css-module:/home/crediblemark/Project/Credibuild/components/ComponentList/styles.module.css/#css-module-data */
|
|
1673
|
-
.
|
|
1711
|
+
._ComponentList_10tqo_1 {
|
|
1674
1712
|
max-width: 100%;
|
|
1675
1713
|
}
|
|
1676
|
-
._ComponentList--
|
|
1677
|
-
margin-top:
|
|
1714
|
+
._ComponentList--isExpanded_10tqo_5 + ._ComponentList_10tqo_1 {
|
|
1715
|
+
margin-top: 5px;
|
|
1678
1716
|
}
|
|
1679
|
-
._ComponentList-
|
|
1717
|
+
._ComponentList-content_10tqo_9 {
|
|
1680
1718
|
display: none;
|
|
1681
1719
|
}
|
|
1682
|
-
._ComponentList--
|
|
1720
|
+
._ComponentList--isExpanded_10tqo_5 > ._ComponentList-content_10tqo_9 {
|
|
1683
1721
|
display: block;
|
|
1684
1722
|
}
|
|
1685
|
-
._ComponentList-
|
|
1723
|
+
._ComponentList-title_10tqo_17 {
|
|
1686
1724
|
background-color: transparent;
|
|
1687
1725
|
border: 0;
|
|
1688
1726
|
color: var(--credbuild-color-grey-05);
|
|
@@ -1691,30 +1729,30 @@ body:has(._DropZone--isAnimating_1vmgt_68:empty) [data-credbuild-overlay] {
|
|
|
1691
1729
|
font: inherit;
|
|
1692
1730
|
font-size: var(--credbuild-font-size-xxxs);
|
|
1693
1731
|
list-style: none;
|
|
1694
|
-
margin-bottom:
|
|
1695
|
-
padding: 8px;
|
|
1732
|
+
margin-bottom: 4px;
|
|
1733
|
+
padding: 4px 8px;
|
|
1696
1734
|
text-transform: uppercase;
|
|
1697
1735
|
transition: background-color 50ms ease-in, color 50ms ease-in;
|
|
1698
1736
|
gap: 4px;
|
|
1699
1737
|
border-radius: 4px;
|
|
1700
1738
|
width: 100%;
|
|
1701
1739
|
}
|
|
1702
|
-
._ComponentList-
|
|
1740
|
+
._ComponentList-title_10tqo_17:focus-visible {
|
|
1703
1741
|
outline: 2px solid var(--credbuild-color-azure-05);
|
|
1704
1742
|
outline-offset: 2px;
|
|
1705
1743
|
}
|
|
1706
1744
|
@media (hover: hover) and (pointer: fine) {
|
|
1707
|
-
._ComponentList-
|
|
1745
|
+
._ComponentList-title_10tqo_17:hover {
|
|
1708
1746
|
background-color: var(--credbuild-color-azure-11);
|
|
1709
1747
|
color: var(--credbuild-color-azure-04);
|
|
1710
1748
|
transition: none;
|
|
1711
1749
|
}
|
|
1712
1750
|
}
|
|
1713
|
-
._ComponentList-
|
|
1751
|
+
._ComponentList-title_10tqo_17:active {
|
|
1714
1752
|
background-color: var(--credbuild-color-azure-10);
|
|
1715
1753
|
transition: none;
|
|
1716
1754
|
}
|
|
1717
|
-
._ComponentList-
|
|
1755
|
+
._ComponentList-titleIcon_10tqo_53 {
|
|
1718
1756
|
margin-inline-start: auto;
|
|
1719
1757
|
}
|
|
1720
1758
|
|