@box/blueprint-web 8.1.0 → 8.1.1
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/lib-esm/index.css +108 -108
- package/lib-esm/primitives/base-button/base-button.module.js +1 -1
- package/lib-esm/primitives/notification/notification.module.js +1 -1
- package/lib-esm/radio-group/radio-group.module.js +1 -1
- package/lib-esm/switch/switch.module.js +1 -1
- package/lib-esm/text-toggle-button/text-toggle-button.module.js +1 -1
- package/lib-esm/toolbar/toolbar.module.js +1 -1
- package/package.json +2 -2
package/lib-esm/index.css
CHANGED
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
}
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
-
.bp_base_button_module_button--
|
|
317
|
+
.bp_base_button_module_button--fe56c{
|
|
318
318
|
border-radius:var(--radius-2);
|
|
319
319
|
cursor:pointer;
|
|
320
320
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
@@ -330,95 +330,95 @@
|
|
|
330
330
|
user-select:none;
|
|
331
331
|
white-space:nowrap;
|
|
332
332
|
}
|
|
333
|
-
.bp_base_button_module_button--
|
|
333
|
+
.bp_base_button_module_button--fe56c,.bp_base_button_module_button--fe56c .bp_base_button_module_icon--fe56c{
|
|
334
334
|
align-items:center;
|
|
335
335
|
display:flex;
|
|
336
336
|
}
|
|
337
|
-
.bp_base_button_module_button--
|
|
338
|
-
box-shadow:0 0 0
|
|
337
|
+
.bp_base_button_module_button--fe56c:not(:disabled)[data-focus-visible]{
|
|
338
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
339
339
|
}
|
|
340
|
-
.bp_base_button_module_button--
|
|
340
|
+
.bp_base_button_module_button--fe56c:disabled{
|
|
341
341
|
opacity:.3;
|
|
342
342
|
}
|
|
343
|
-
.bp_base_button_module_button--
|
|
343
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_primary--fe56c{
|
|
344
344
|
background:var(--surface-surface-brand);
|
|
345
345
|
border:var(--border-1) solid var(--surface-surface-brand);
|
|
346
346
|
color:var(--text-text-brand-on-color);
|
|
347
347
|
}
|
|
348
|
-
.bp_base_button_module_button--
|
|
348
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_primary--fe56c:disabled{
|
|
349
349
|
background:var(--surface-surface-brand-disabled);
|
|
350
350
|
}
|
|
351
|
-
.bp_base_button_module_button--
|
|
351
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_primary--fe56c:not(:disabled):hover,.bp_base_button_module_button--fe56c.bp_base_button_module_primary--fe56c:not(:disabled)[data-focus-visible]{
|
|
352
352
|
background:var(--surface-surface-brand-hover);
|
|
353
353
|
border:var(--border-1) solid var(--surface-surface-brand-hover);
|
|
354
354
|
}
|
|
355
|
-
.bp_base_button_module_button--
|
|
355
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_primary--fe56c:not(:disabled):active{
|
|
356
356
|
background:var(--surface-surface-brand-pressed);
|
|
357
357
|
border:var(--border-1) solid var(--surface-surface-brand-pressed);
|
|
358
358
|
}
|
|
359
|
-
.bp_base_button_module_button--
|
|
359
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_secondary--fe56c{
|
|
360
360
|
background:var(--surface-cta-surface-secondary);
|
|
361
361
|
border:var(--border-1) solid var(--border-cta-border-secondary);
|
|
362
362
|
color:var(--text-text-on-light);
|
|
363
363
|
}
|
|
364
|
-
.bp_base_button_module_button--
|
|
364
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_secondary--fe56c:not(:disabled):hover,.bp_base_button_module_button--fe56c.bp_base_button_module_secondary--fe56c:not(:disabled)[data-focus-visible]{
|
|
365
365
|
background:var(--surface-cta-surface-secondary-hover);
|
|
366
366
|
border:var(--border-1) solid var(--border-cta-border-secondary-hover);
|
|
367
367
|
}
|
|
368
|
-
.bp_base_button_module_button--
|
|
368
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_secondary--fe56c:not(:disabled):active{
|
|
369
369
|
background:var(--surface-cta-surface-secondary-pressed);
|
|
370
370
|
border:var(--border-1) solid var(--border-cta-border-secondary-pressed);
|
|
371
371
|
}
|
|
372
|
-
.bp_base_button_module_button--
|
|
372
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_tertiary--fe56c{
|
|
373
373
|
background:var(--surface-cta-surface-tertiary);
|
|
374
374
|
border:var(--border-1) solid #0000;
|
|
375
375
|
color:var(--text-cta-link);
|
|
376
376
|
}
|
|
377
|
-
.bp_base_button_module_button--
|
|
377
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_tertiary--fe56c:not(:disabled):hover,.bp_base_button_module_button--fe56c.bp_base_button_module_tertiary--fe56c:not(:disabled)[data-focus-visible]{
|
|
378
378
|
background:var(--surface-cta-surface-tertiary-hover);
|
|
379
379
|
}
|
|
380
|
-
.bp_base_button_module_button--
|
|
380
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_tertiary--fe56c:not(:disabled):active{
|
|
381
381
|
background:var(--surface-cta-surface-tertiary-pressed);
|
|
382
382
|
}
|
|
383
|
-
.bp_base_button_module_button--
|
|
383
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_outline--fe56c{
|
|
384
384
|
background:#0000;
|
|
385
385
|
border:var(--border-1) solid var(--border-cta-border-outline);
|
|
386
386
|
color:var(--text-text-on-light);
|
|
387
387
|
}
|
|
388
|
-
.bp_base_button_module_button--
|
|
388
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_outline--fe56c:not(:disabled):hover,.bp_base_button_module_button--fe56c.bp_base_button_module_outline--fe56c:not(:disabled)[data-focus-visible]{
|
|
389
389
|
background:var(--surface-cta-surface-outline-hover);
|
|
390
390
|
border:var(--border-1) solid var(--border-cta-border-outline-hover);
|
|
391
391
|
}
|
|
392
|
-
.bp_base_button_module_button--
|
|
392
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_outline--fe56c:not(:disabled):active{
|
|
393
393
|
background:var(--surface-cta-surface-outline-pressed);
|
|
394
394
|
border:var(--border-1) solid var(--border-cta-border-outline-pressed);
|
|
395
395
|
}
|
|
396
|
-
.bp_base_button_module_button--
|
|
396
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_small--fe56c{
|
|
397
397
|
gap:var(--space-1);
|
|
398
398
|
min-height:var(--size-8);
|
|
399
399
|
padding:0 var(--size-4);
|
|
400
400
|
}
|
|
401
|
-
.bp_base_button_module_button--
|
|
401
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_small--fe56c.bp_base_button_module_isIconButton--fe56c{
|
|
402
402
|
height:var(--size-8);
|
|
403
403
|
min-height:unset;
|
|
404
404
|
padding:0 calc((var(--size-8) - var(--size-4))/2);
|
|
405
405
|
width:var(--size-8);
|
|
406
406
|
}
|
|
407
|
-
.bp_base_button_module_button--
|
|
407
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_large--fe56c{
|
|
408
408
|
gap:var(--space-2);
|
|
409
409
|
min-height:var(--size-10);
|
|
410
410
|
padding:0 var(--size-4);
|
|
411
411
|
}
|
|
412
|
-
.bp_base_button_module_button--
|
|
412
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_large--fe56c.bp_base_button_module_isIconButton--fe56c{
|
|
413
413
|
height:var(--size-10);
|
|
414
414
|
padding:0 calc((var(--size-10) - var(--size-5))/2);
|
|
415
415
|
width:var(--size-10);
|
|
416
416
|
}
|
|
417
|
-
.bp_base_button_module_button--
|
|
417
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_hide--fe56c{
|
|
418
418
|
pointer-events:none;
|
|
419
419
|
position:relative;
|
|
420
420
|
}
|
|
421
|
-
.bp_base_button_module_button--
|
|
421
|
+
.bp_base_button_module_button--fe56c.bp_base_button_module_hide--fe56c span{
|
|
422
422
|
color:#0000;
|
|
423
423
|
opacity:0;
|
|
424
424
|
}
|
|
@@ -4313,7 +4313,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4313
4313
|
background-color:var(--surface-menu-surface-focus);
|
|
4314
4314
|
}
|
|
4315
4315
|
|
|
4316
|
-
.bp_notification_module_viewport--
|
|
4316
|
+
.bp_notification_module_viewport--dba95{
|
|
4317
4317
|
all:unset;
|
|
4318
4318
|
align-items:center;
|
|
4319
4319
|
display:flex;
|
|
@@ -4326,7 +4326,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4326
4326
|
z-index:2147483647;
|
|
4327
4327
|
}
|
|
4328
4328
|
|
|
4329
|
-
.bp_notification_module_root--
|
|
4329
|
+
.bp_notification_module_root--dba95{
|
|
4330
4330
|
border:var(--border-2) solid;
|
|
4331
4331
|
border-radius:var(--radius-3);
|
|
4332
4332
|
display:flex;
|
|
@@ -4334,26 +4334,26 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4334
4334
|
width:max-content;
|
|
4335
4335
|
}
|
|
4336
4336
|
@media (width > 374px){
|
|
4337
|
-
.bp_notification_module_root--
|
|
4337
|
+
.bp_notification_module_root--dba95{
|
|
4338
4338
|
max-width:343px;
|
|
4339
4339
|
}
|
|
4340
4340
|
}
|
|
4341
4341
|
@media (width > 767px){
|
|
4342
|
-
.bp_notification_module_root--
|
|
4342
|
+
.bp_notification_module_root--dba95{
|
|
4343
4343
|
max-width:728px;
|
|
4344
4344
|
}
|
|
4345
4345
|
}
|
|
4346
4346
|
@media (width > 1023px){
|
|
4347
|
-
.bp_notification_module_root--
|
|
4347
|
+
.bp_notification_module_root--dba95{
|
|
4348
4348
|
max-width:848px;
|
|
4349
4349
|
}
|
|
4350
4350
|
}
|
|
4351
4351
|
@media (width > 1219px){
|
|
4352
|
-
.bp_notification_module_root--
|
|
4352
|
+
.bp_notification_module_root--dba95{
|
|
4353
4353
|
max-width:896px;
|
|
4354
4354
|
}
|
|
4355
4355
|
}
|
|
4356
|
-
.bp_notification_module_root--
|
|
4356
|
+
.bp_notification_module_root--dba95 .bp_notification_module_container--dba95{
|
|
4357
4357
|
align-items:flex-start;
|
|
4358
4358
|
box-shadow:var(--dropshadow-3);
|
|
4359
4359
|
display:flex;
|
|
@@ -4362,11 +4362,11 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4362
4362
|
width:100%;
|
|
4363
4363
|
}
|
|
4364
4364
|
@media (width > 767px){
|
|
4365
|
-
.bp_notification_module_root--
|
|
4365
|
+
.bp_notification_module_root--dba95 .bp_notification_module_container--dba95{
|
|
4366
4366
|
align-items:center;
|
|
4367
4367
|
}
|
|
4368
4368
|
}
|
|
4369
|
-
.bp_notification_module_root--
|
|
4369
|
+
.bp_notification_module_root--dba95 .bp_notification_module_mobileContainer--dba95{
|
|
4370
4370
|
align-items:left;
|
|
4371
4371
|
display:flex;
|
|
4372
4372
|
flex-direction:column;
|
|
@@ -4374,46 +4374,46 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4374
4374
|
width:100%;
|
|
4375
4375
|
}
|
|
4376
4376
|
@media (width > 767px){
|
|
4377
|
-
.bp_notification_module_root--
|
|
4377
|
+
.bp_notification_module_root--dba95 .bp_notification_module_mobileContainer--dba95{
|
|
4378
4378
|
align-items:center;
|
|
4379
4379
|
flex-direction:row;
|
|
4380
4380
|
}
|
|
4381
4381
|
}
|
|
4382
|
-
.bp_notification_module_root--
|
|
4382
|
+
.bp_notification_module_root--dba95 .bp_notification_module_withButtons--dba95{
|
|
4383
4383
|
gap:var(--space-3);
|
|
4384
4384
|
}
|
|
4385
|
-
.bp_notification_module_root--
|
|
4385
|
+
.bp_notification_module_root--dba95.bp_notification_module_info--dba95{
|
|
4386
4386
|
background:var(--surface-message-surface-info);
|
|
4387
4387
|
border-color:var(--border-message-border-info);
|
|
4388
4388
|
}
|
|
4389
|
-
.bp_notification_module_root--
|
|
4389
|
+
.bp_notification_module_root--dba95.bp_notification_module_success--dba95{
|
|
4390
4390
|
background:var(--surface-message-surface-success);
|
|
4391
4391
|
border-color:var(--border-message-border-success);
|
|
4392
4392
|
}
|
|
4393
|
-
.bp_notification_module_root--
|
|
4393
|
+
.bp_notification_module_root--dba95.bp_notification_module_warning--dba95{
|
|
4394
4394
|
background:var(--surface-message-surface-warning);
|
|
4395
4395
|
border-color:var(--border-message-border-warning);
|
|
4396
4396
|
}
|
|
4397
|
-
.bp_notification_module_root--
|
|
4397
|
+
.bp_notification_module_root--dba95.bp_notification_module_error--dba95{
|
|
4398
4398
|
background:var(--surface-message-surface-error);
|
|
4399
4399
|
border-color:var(--border-message-border-error);
|
|
4400
4400
|
}
|
|
4401
|
-
.bp_notification_module_root--
|
|
4402
|
-
box-shadow:0 0 0
|
|
4401
|
+
.bp_notification_module_root--dba95:focus-visible{
|
|
4402
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
4403
4403
|
outline:none;
|
|
4404
4404
|
}
|
|
4405
|
-
.bp_notification_module_root--
|
|
4405
|
+
.bp_notification_module_root--dba95 .bp_notification_module_typeIconContainer--dba95{
|
|
4406
4406
|
align-items:center;
|
|
4407
4407
|
display:flex;
|
|
4408
4408
|
height:var(--size-8);
|
|
4409
4409
|
justify-content:center;
|
|
4410
4410
|
width:var(--size-8);
|
|
4411
4411
|
}
|
|
4412
|
-
.bp_notification_module_root--
|
|
4412
|
+
.bp_notification_module_root--dba95 .bp_notification_module_typeIconContainer--dba95 .bp_notification_module_typeIcon--dba95{
|
|
4413
4413
|
flex-shrink:0;
|
|
4414
4414
|
margin-left:var(--space-4);
|
|
4415
4415
|
}
|
|
4416
|
-
.bp_notification_module_root--
|
|
4416
|
+
.bp_notification_module_root--dba95 .bp_notification_module_text--dba95{
|
|
4417
4417
|
align-items:center;
|
|
4418
4418
|
color:var(--text-text-on-light);
|
|
4419
4419
|
display:flex;
|
|
@@ -4427,34 +4427,34 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4427
4427
|
text-decoration:none;
|
|
4428
4428
|
text-transform:none;
|
|
4429
4429
|
}
|
|
4430
|
-
.bp_notification_module_root--
|
|
4430
|
+
.bp_notification_module_root--dba95 .bp_notification_module_text--dba95 > div{
|
|
4431
4431
|
overflow:hidden;
|
|
4432
4432
|
overflow-wrap:break-word;
|
|
4433
4433
|
}
|
|
4434
|
-
.bp_notification_module_root--
|
|
4434
|
+
.bp_notification_module_root--dba95 .bp_notification_module_contentButtonSection--dba95{
|
|
4435
4435
|
display:flex;
|
|
4436
4436
|
gap:var(--space-3);
|
|
4437
4437
|
margin-left:0;
|
|
4438
4438
|
}
|
|
4439
4439
|
@media (width > 767px){
|
|
4440
|
-
.bp_notification_module_root--
|
|
4440
|
+
.bp_notification_module_root--dba95 .bp_notification_module_contentButtonSection--dba95{
|
|
4441
4441
|
margin-left:auto;
|
|
4442
4442
|
}
|
|
4443
4443
|
}
|
|
4444
|
-
.bp_notification_module_root--
|
|
4444
|
+
.bp_notification_module_root--dba95 .bp_notification_module_contentButtonSection--dba95 .bp_notification_module_contentButtons--dba95{
|
|
4445
4445
|
display:flex;
|
|
4446
4446
|
gap:var(--space-3);
|
|
4447
4447
|
}
|
|
4448
|
-
.bp_notification_module_root--
|
|
4448
|
+
.bp_notification_module_root--dba95 .bp_notification_module_closeButtonSection--dba95{
|
|
4449
4449
|
display:flex;
|
|
4450
4450
|
gap:var(--space-3);
|
|
4451
4451
|
margin-left:auto;
|
|
4452
4452
|
margin-right:var(--space-4);
|
|
4453
4453
|
}
|
|
4454
|
-
.bp_notification_module_root--
|
|
4454
|
+
.bp_notification_module_root--dba95 .bp_notification_module_closeButtonSection--dba95 .bp_notification_module_closeButton--dba95{
|
|
4455
4455
|
align-self:center;
|
|
4456
4456
|
}
|
|
4457
|
-
.bp_notification_module_root--
|
|
4457
|
+
.bp_notification_module_root--dba95 .bp_notification_module_closeButtonSection--dba95 .bp_notification_module_closeButton--dba95 svg *{
|
|
4458
4458
|
fill:currentColor;
|
|
4459
4459
|
}
|
|
4460
4460
|
|
|
@@ -4780,7 +4780,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4780
4780
|
opacity:.5;
|
|
4781
4781
|
}
|
|
4782
4782
|
|
|
4783
|
-
.bp_radio_group_module_root--
|
|
4783
|
+
.bp_radio_group_module_root--365a1{
|
|
4784
4784
|
display:flex;
|
|
4785
4785
|
flex-direction:column;
|
|
4786
4786
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
@@ -4793,31 +4793,31 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4793
4793
|
text-transform:none;
|
|
4794
4794
|
}
|
|
4795
4795
|
|
|
4796
|
-
.bp_radio_group_module_horizontal--
|
|
4796
|
+
.bp_radio_group_module_horizontal--365a1{
|
|
4797
4797
|
flex-direction:row;
|
|
4798
4798
|
gap:1.625rem;
|
|
4799
4799
|
}
|
|
4800
4800
|
|
|
4801
|
-
.bp_radio_group_module_radioOption--
|
|
4801
|
+
.bp_radio_group_module_radioOption--365a1{
|
|
4802
4802
|
display:flex;
|
|
4803
4803
|
flex-direction:column;
|
|
4804
4804
|
}
|
|
4805
|
-
.bp_radio_group_module_radioOption--
|
|
4805
|
+
.bp_radio_group_module_radioOption--365a1 .bp_radio_group_module_label--365a1{
|
|
4806
4806
|
align-items:flex-start;
|
|
4807
4807
|
cursor:pointer;
|
|
4808
4808
|
display:inline-flex;
|
|
4809
4809
|
gap:var(--size-3);
|
|
4810
4810
|
line-height:var(--body-default-line-height);
|
|
4811
4811
|
}
|
|
4812
|
-
.bp_radio_group_module_radioOption--
|
|
4812
|
+
.bp_radio_group_module_radioOption--365a1 .bp_radio_group_module_description--365a1{
|
|
4813
4813
|
padding-left:calc(var(--size-4) + var(--size-3));
|
|
4814
4814
|
}
|
|
4815
|
-
.bp_radio_group_module_radioOption--
|
|
4815
|
+
.bp_radio_group_module_radioOption--365a1.bp_radio_group_module_disabled--365a1 .bp_radio_group_module_label--365a1{
|
|
4816
4816
|
color:var(--text-text-on-light-secondary);
|
|
4817
4817
|
cursor:default;
|
|
4818
4818
|
}
|
|
4819
4819
|
|
|
4820
|
-
.bp_radio_group_module_radioButton--
|
|
4820
|
+
.bp_radio_group_module_radioButton--365a1{
|
|
4821
4821
|
all:unset;
|
|
4822
4822
|
align-items:center;
|
|
4823
4823
|
background-color:var(--surface-radio-surface);
|
|
@@ -4831,33 +4831,33 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4831
4831
|
margin:calc((var(--body-default-line-height) - var(--size-4))/2) 0 0 0;
|
|
4832
4832
|
width:var(--size-4);
|
|
4833
4833
|
}
|
|
4834
|
-
.bp_radio_group_module_radioButton--
|
|
4834
|
+
.bp_radio_group_module_radioButton--365a1 .bp_radio_group_module_indicator--365a1{
|
|
4835
4835
|
background-color:var(--surface-radio-surface-selected);
|
|
4836
4836
|
border-radius:50%;
|
|
4837
4837
|
height:var(--size-2);
|
|
4838
4838
|
transition:transform .1s;
|
|
4839
4839
|
width:var(--size-2);
|
|
4840
4840
|
}
|
|
4841
|
-
.bp_radio_group_module_radioButton--
|
|
4842
|
-
box-shadow:0 0 0
|
|
4841
|
+
.bp_radio_group_module_radioButton--365a1:focus-visible{
|
|
4842
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
4843
4843
|
}
|
|
4844
|
-
.bp_radio_group_module_radioButton--
|
|
4844
|
+
.bp_radio_group_module_radioButton--365a1[data-disabled]{
|
|
4845
4845
|
opacity:60%;
|
|
4846
4846
|
}
|
|
4847
|
-
.bp_radio_group_module_radioButton--
|
|
4847
|
+
.bp_radio_group_module_radioButton--365a1[data-state=unchecked]{
|
|
4848
4848
|
background-color:var(--surface-radio-surface);
|
|
4849
4849
|
border:var(--border-2) solid var(--border-radio-border);
|
|
4850
4850
|
}
|
|
4851
|
-
.bp_radio_group_module_radioButton--
|
|
4851
|
+
.bp_radio_group_module_radioButton--365a1[data-state=unchecked] .bp_radio_group_module_indicator--365a1{
|
|
4852
4852
|
transform:scale(0);
|
|
4853
4853
|
}
|
|
4854
|
-
.bp_radio_group_module_radioButton--
|
|
4854
|
+
.bp_radio_group_module_radioButton--365a1:not([data-disabled]):focus-visible,.bp_radio_group_module_radioButton--365a1:not([data-disabled]):hover{
|
|
4855
4855
|
border:var(--border-2) solid var(--border-radio-border-hover);
|
|
4856
4856
|
}
|
|
4857
|
-
.bp_radio_group_module_radioButton--
|
|
4857
|
+
.bp_radio_group_module_radioButton--365a1:not([data-disabled]):focus-visible[data-state=checked],.bp_radio_group_module_radioButton--365a1:not([data-disabled]):hover[data-state=checked]{
|
|
4858
4858
|
border:var(--border-2) solid var(--border-radio-border-selected-hover);
|
|
4859
4859
|
}
|
|
4860
|
-
.bp_radio_group_module_radioButton--
|
|
4860
|
+
.bp_radio_group_module_radioButton--365a1:not([data-disabled]):focus-visible[data-state=checked] .bp_radio_group_module_indicator--365a1,.bp_radio_group_module_radioButton--365a1:not([data-disabled]):hover[data-state=checked] .bp_radio_group_module_indicator--365a1{
|
|
4861
4861
|
background-color:var(--surface-radio-surface-selected-hover);
|
|
4862
4862
|
}
|
|
4863
4863
|
|
|
@@ -5431,7 +5431,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5431
5431
|
min-width:160px;
|
|
5432
5432
|
}
|
|
5433
5433
|
|
|
5434
|
-
.bp_switch_module_option--
|
|
5434
|
+
.bp_switch_module_option--c716c{
|
|
5435
5435
|
display:flex;
|
|
5436
5436
|
flex-direction:column;
|
|
5437
5437
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
@@ -5442,26 +5442,26 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5442
5442
|
text-decoration:none;
|
|
5443
5443
|
text-transform:none;
|
|
5444
5444
|
}
|
|
5445
|
-
.bp_switch_module_option--
|
|
5445
|
+
.bp_switch_module_option--c716c .bp_switch_module_label--c716c{
|
|
5446
5446
|
cursor:pointer;
|
|
5447
5447
|
display:inline-flex;
|
|
5448
5448
|
flex-direction:row;
|
|
5449
5449
|
width:-moz-fit-content;
|
|
5450
5450
|
width:fit-content;
|
|
5451
5451
|
}
|
|
5452
|
-
.bp_switch_module_option--
|
|
5452
|
+
.bp_switch_module_option--c716c .bp_switch_module_label--c716c.bp_switch_module_rightAlign--c716c{
|
|
5453
5453
|
flex-direction:row-reverse;
|
|
5454
5454
|
justify-content:space-between;
|
|
5455
5455
|
width:unset;
|
|
5456
5456
|
}
|
|
5457
|
-
.bp_switch_module_option--
|
|
5457
|
+
.bp_switch_module_option--c716c .bp_switch_module_description--c716c{
|
|
5458
5458
|
margin-left:3.25rem;
|
|
5459
5459
|
}
|
|
5460
|
-
.bp_switch_module_option--
|
|
5460
|
+
.bp_switch_module_option--c716c .bp_switch_module_description--c716c.bp_switch_module_rightAlign--c716c{
|
|
5461
5461
|
margin-left:unset;
|
|
5462
5462
|
margin-right:3.25rem;
|
|
5463
5463
|
}
|
|
5464
|
-
.bp_switch_module_option--
|
|
5464
|
+
.bp_switch_module_option--c716c .bp_switch_module_switch--c716c{
|
|
5465
5465
|
all:unset;
|
|
5466
5466
|
align-items:center;
|
|
5467
5467
|
background-color:#d3d3d3;
|
|
@@ -5475,17 +5475,17 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5475
5475
|
width:2.5rem;
|
|
5476
5476
|
will-change:transition;
|
|
5477
5477
|
}
|
|
5478
|
-
.bp_switch_module_option--
|
|
5478
|
+
.bp_switch_module_option--c716c .bp_switch_module_switch--c716c.bp_switch_module_rightAlign--c716c{
|
|
5479
5479
|
margin-left:2.5rem;
|
|
5480
5480
|
margin-right:unset;
|
|
5481
5481
|
}
|
|
5482
|
-
.bp_switch_module_option--
|
|
5483
|
-
box-shadow:0 0 0
|
|
5482
|
+
.bp_switch_module_option--c716c .bp_switch_module_switch--c716c:focus-visible{
|
|
5483
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
5484
5484
|
}
|
|
5485
|
-
.bp_switch_module_option--
|
|
5485
|
+
.bp_switch_module_option--c716c .bp_switch_module_switch--c716c[data-state=checked]{
|
|
5486
5486
|
background-color:#0061d5;
|
|
5487
5487
|
}
|
|
5488
|
-
.bp_switch_module_option--
|
|
5488
|
+
.bp_switch_module_option--c716c .bp_switch_module_thumb--c716c{
|
|
5489
5489
|
background-color:#fff;
|
|
5490
5490
|
border:.0625rem solid #bcbcbc;
|
|
5491
5491
|
border-radius:2.5rem;
|
|
@@ -5497,13 +5497,13 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5497
5497
|
width:1.25rem;
|
|
5498
5498
|
will-change:transform;
|
|
5499
5499
|
}
|
|
5500
|
-
.bp_switch_module_option--
|
|
5500
|
+
.bp_switch_module_option--c716c .bp_switch_module_thumb--c716c[data-state=checked]{
|
|
5501
5501
|
transform:translateX(1.25rem);
|
|
5502
5502
|
}
|
|
5503
|
-
.bp_switch_module_option--
|
|
5503
|
+
.bp_switch_module_option--c716c.bp_switch_module_disabled--c716c .bp_switch_module_label--c716c{
|
|
5504
5504
|
cursor:default;
|
|
5505
5505
|
}
|
|
5506
|
-
.bp_switch_module_option--
|
|
5506
|
+
.bp_switch_module_option--c716c.bp_switch_module_disabled--c716c .bp_switch_module_switch--c716c{
|
|
5507
5507
|
opacity:60%;
|
|
5508
5508
|
}
|
|
5509
5509
|
|
|
@@ -5574,7 +5574,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5574
5574
|
padding-inline-end:1.875rem;
|
|
5575
5575
|
}
|
|
5576
5576
|
|
|
5577
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5577
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05{
|
|
5578
5578
|
background:var(--surface-toggle-surface);
|
|
5579
5579
|
border:var(--border-1) solid var(--border-toggletext-border-off);
|
|
5580
5580
|
border-radius:var(--radius-2);
|
|
@@ -5594,33 +5594,33 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
5594
5594
|
user-select:none;
|
|
5595
5595
|
white-space:nowrap;
|
|
5596
5596
|
}
|
|
5597
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5597
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05:disabled,.bp_text_toggle_button_module_textToggleButton--dcf05[aria-disabled]{
|
|
5598
5598
|
opacity:.3;
|
|
5599
5599
|
pointer-events:none;
|
|
5600
5600
|
}
|
|
5601
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5601
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05:hover{
|
|
5602
5602
|
background:var(--surface-toggle-surface-off-hover);
|
|
5603
5603
|
border-color:var(--border-toggletext-border-off-hover);
|
|
5604
5604
|
}
|
|
5605
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5606
|
-
box-shadow:0 0 0
|
|
5605
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05:focus,.bp_text_toggle_button_module_textToggleButton--dcf05[data-focus-visible]{
|
|
5606
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
5607
5607
|
}
|
|
5608
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5608
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05:active,.bp_text_toggle_button_module_textToggleButton--dcf05[data-active]{
|
|
5609
5609
|
background:var(--surface-toggle-surface-off-pressed);
|
|
5610
5610
|
border-color:var(--border-toggletext-border-off-pressed);
|
|
5611
5611
|
}
|
|
5612
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5612
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true]{
|
|
5613
5613
|
background:var(--surface-toggletext-surface-on);
|
|
5614
5614
|
border:var(--border-1) solid var(--border-toggletext-border-on);
|
|
5615
5615
|
}
|
|
5616
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5616
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true]:hover{
|
|
5617
5617
|
background:var(--surface-toggletext-surface-on-hover);
|
|
5618
5618
|
border-color:var(--border-toggletext-border-on-hover);
|
|
5619
5619
|
}
|
|
5620
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5621
|
-
box-shadow:0 0 0
|
|
5620
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true]:focus,.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true][data-focus-visible]{
|
|
5621
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
5622
5622
|
}
|
|
5623
|
-
.bp_text_toggle_button_module_textToggleButton--
|
|
5623
|
+
.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true]:active,.bp_text_toggle_button_module_textToggleButton--dcf05[aria-pressed=true][data-active]{
|
|
5624
5624
|
background:var(--surface-toggletext-surface-on-pressed);
|
|
5625
5625
|
border-color:var(--border-toggletext-border-on-pressed);
|
|
5626
5626
|
}
|
|
@@ -6376,7 +6376,7 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
6376
6376
|
--z-index-card-tooltip:2147483647;
|
|
6377
6377
|
}
|
|
6378
6378
|
|
|
6379
|
-
.bp_toolbar_module_toolbarRoot--
|
|
6379
|
+
.bp_toolbar_module_toolbarRoot--8c4b3{
|
|
6380
6380
|
align-items:center;
|
|
6381
6381
|
background:var(--surface-surface);
|
|
6382
6382
|
border:var(--border-1) solid var(--border-card-border);
|
|
@@ -6387,19 +6387,19 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
6387
6387
|
padding:calc(var(--space-1) - var(--border-1));
|
|
6388
6388
|
}
|
|
6389
6389
|
|
|
6390
|
-
.bp_toolbar_module_separator--
|
|
6390
|
+
.bp_toolbar_module_separator--8c4b3{
|
|
6391
6391
|
background-color:var(--border-divider-border);
|
|
6392
6392
|
border-radius:var(--radius-2);
|
|
6393
6393
|
height:var(--size-6);
|
|
6394
6394
|
width:1px;
|
|
6395
6395
|
}
|
|
6396
6396
|
|
|
6397
|
-
.bp_toolbar_module_toggleGroup--
|
|
6397
|
+
.bp_toolbar_module_toggleGroup--8c4b3{
|
|
6398
6398
|
display:flex;
|
|
6399
6399
|
gap:var(--space-1);
|
|
6400
6400
|
}
|
|
6401
6401
|
|
|
6402
|
-
.bp_toolbar_module_toolbarItem--
|
|
6402
|
+
.bp_toolbar_module_toolbarItem--8c4b3{
|
|
6403
6403
|
--toolbar-item-hover-opacity:0.3;
|
|
6404
6404
|
align-items:center;
|
|
6405
6405
|
background:var(--toolbar-button-color, var(--surface-toggle-surface));
|
|
@@ -6417,45 +6417,45 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
6417
6417
|
-webkit-user-select:none;
|
|
6418
6418
|
user-select:none;
|
|
6419
6419
|
}
|
|
6420
|
-
.bp_toolbar_module_toolbarItem--
|
|
6420
|
+
.bp_toolbar_module_toolbarItem--8c4b3[data-disabled]{
|
|
6421
6421
|
background:var(--surface-toggle-surface);
|
|
6422
6422
|
opacity:var(--toolbar-item-hover-opacity);
|
|
6423
6423
|
pointer-events:none;
|
|
6424
6424
|
}
|
|
6425
|
-
.bp_toolbar_module_toolbarItem--
|
|
6426
|
-
box-shadow:0 0 0
|
|
6425
|
+
.bp_toolbar_module_toolbarItem--8c4b3:not([data-disabled]):focus-visible{
|
|
6426
|
+
box-shadow:0 0 0 var(--border-1, 1px) var(--background-background), 0 0 0 var(--border-3) #2486fc;
|
|
6427
6427
|
}
|
|
6428
|
-
.bp_toolbar_module_toolbarItem--
|
|
6428
|
+
.bp_toolbar_module_toolbarItem--8c4b3:not([data-disabled]):hover{
|
|
6429
6429
|
background:var(--toolbar-button-color, var(--surface-toggle-surface-hover));
|
|
6430
6430
|
border:var(--border-1) solid var(--toolbar-button-color, var(--surface-toggle-surface-hover));
|
|
6431
6431
|
}
|
|
6432
6432
|
|
|
6433
|
-
.bp_toolbar_module_toolbarToggle--
|
|
6433
|
+
.bp_toolbar_module_toolbarToggle--8c4b3[data-state=on]{
|
|
6434
6434
|
background:var(--surface-toggle-surface-pressed);
|
|
6435
6435
|
}
|
|
6436
|
-
.bp_toolbar_module_toolbarToggle--
|
|
6436
|
+
.bp_toolbar_module_toolbarToggle--8c4b3[data-state=on] svg *{
|
|
6437
6437
|
fill:var(--icon-icon-on-dark);
|
|
6438
6438
|
}
|
|
6439
|
-
.bp_toolbar_module_toolbarToggle--
|
|
6439
|
+
.bp_toolbar_module_toolbarToggle--8c4b3[data-state=on]:not([data-disabled]):hover{
|
|
6440
6440
|
background:var(--surface-toggle-surface-on-hover);
|
|
6441
6441
|
border:var(--border-1) solid var(--surface-toggle-surface-on-hover);
|
|
6442
6442
|
}
|
|
6443
6443
|
|
|
6444
|
-
.bp_toolbar_module_dropdownIndicator--
|
|
6444
|
+
.bp_toolbar_module_dropdownIndicator--8c4b3.bp_toolbar_module_invertCaret--8c4b3{
|
|
6445
6445
|
transform:rotate(.5turn);
|
|
6446
6446
|
}
|
|
6447
6447
|
|
|
6448
|
-
.bp_toolbar_module_triggerButtonSelectedWithColor--
|
|
6448
|
+
.bp_toolbar_module_triggerButtonSelectedWithColor--8c4b3{
|
|
6449
6449
|
--trigger-button-hover-opacity:0.7;
|
|
6450
6450
|
}
|
|
6451
|
-
.bp_toolbar_module_triggerButtonSelectedWithColor--
|
|
6451
|
+
.bp_toolbar_module_triggerButtonSelectedWithColor--8c4b3[data-state=on] .bp_toolbar_module_dropdownIndicator--8c4b3 path{
|
|
6452
6452
|
fill:var(--icon-icon-on-light);
|
|
6453
6453
|
}
|
|
6454
|
-
.bp_toolbar_module_triggerButtonSelectedWithColor--
|
|
6454
|
+
.bp_toolbar_module_triggerButtonSelectedWithColor--8c4b3[data-state=on]:hover{
|
|
6455
6455
|
opacity:var(--trigger-button-hover-opacity);
|
|
6456
6456
|
}
|
|
6457
6457
|
|
|
6458
|
-
.bp_toolbar_module_toolbarIcon--
|
|
6458
|
+
.bp_toolbar_module_toolbarIcon--8c4b3{
|
|
6459
6459
|
align-items:center;
|
|
6460
6460
|
display:flex;
|
|
6461
6461
|
height:var(--size-5);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../../index.css';
|
|
2
|
-
var styles = {"button":"bp_base_button_module_button--
|
|
2
|
+
var styles = {"button":"bp_base_button_module_button--fe56c","icon":"bp_base_button_module_icon--fe56c","primary":"bp_base_button_module_primary--fe56c","secondary":"bp_base_button_module_secondary--fe56c","tertiary":"bp_base_button_module_tertiary--fe56c","outline":"bp_base_button_module_outline--fe56c","small":"bp_base_button_module_small--fe56c","isIconButton":"bp_base_button_module_isIconButton--fe56c","large":"bp_base_button_module_large--fe56c","hide":"bp_base_button_module_hide--fe56c"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../../index.css';
|
|
2
|
-
var styles = {"viewport":"bp_notification_module_viewport--
|
|
2
|
+
var styles = {"viewport":"bp_notification_module_viewport--dba95","root":"bp_notification_module_root--dba95","container":"bp_notification_module_container--dba95","mobileContainer":"bp_notification_module_mobileContainer--dba95","withButtons":"bp_notification_module_withButtons--dba95","info":"bp_notification_module_info--dba95","success":"bp_notification_module_success--dba95","warning":"bp_notification_module_warning--dba95","error":"bp_notification_module_error--dba95","typeIconContainer":"bp_notification_module_typeIconContainer--dba95","typeIcon":"bp_notification_module_typeIcon--dba95","text":"bp_notification_module_text--dba95","contentButtonSection":"bp_notification_module_contentButtonSection--dba95","contentButtons":"bp_notification_module_contentButtons--dba95","closeButtonSection":"bp_notification_module_closeButtonSection--dba95","closeButton":"bp_notification_module_closeButton--dba95"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"root":"bp_radio_group_module_root--
|
|
2
|
+
var styles = {"root":"bp_radio_group_module_root--365a1","horizontal":"bp_radio_group_module_horizontal--365a1","radioOption":"bp_radio_group_module_radioOption--365a1","label":"bp_radio_group_module_label--365a1","description":"bp_radio_group_module_description--365a1","disabled":"bp_radio_group_module_disabled--365a1","radioButton":"bp_radio_group_module_radioButton--365a1","indicator":"bp_radio_group_module_indicator--365a1"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"option":"bp_switch_module_option--
|
|
2
|
+
var styles = {"option":"bp_switch_module_option--c716c","label":"bp_switch_module_label--c716c","rightAlign":"bp_switch_module_rightAlign--c716c","description":"bp_switch_module_description--c716c","switch":"bp_switch_module_switch--c716c","thumb":"bp_switch_module_thumb--c716c","disabled":"bp_switch_module_disabled--c716c"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import '../index.css';
|
|
2
|
-
var styles = {"toolbarRoot":"bp_toolbar_module_toolbarRoot--
|
|
2
|
+
var styles = {"toolbarRoot":"bp_toolbar_module_toolbarRoot--8c4b3","separator":"bp_toolbar_module_separator--8c4b3","toggleGroup":"bp_toolbar_module_toggleGroup--8c4b3","toolbarItem":"bp_toolbar_module_toolbarItem--8c4b3","toolbarToggle":"bp_toolbar_module_toolbarToggle--8c4b3","dropdownIndicator":"bp_toolbar_module_dropdownIndicator--8c4b3","invertCaret":"bp_toolbar_module_invertCaret--8c4b3","triggerButtonSelectedWithColor":"bp_toolbar_module_triggerButtonSelectedWithColor--8c4b3","toolbarIcon":"bp_toolbar_module_toolbarIcon--8c4b3"};
|
|
3
3
|
|
|
4
4
|
export { styles as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@box/blueprint-web",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"publishConfig": {
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"react-stately": "^3.31.1",
|
|
64
64
|
"tsx": "^4.16.5"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "b2737e017afef7990166091b1ca1e8aa245ca20a",
|
|
67
67
|
"module": "lib-esm/index.js",
|
|
68
68
|
"main": "lib-esm/index.js",
|
|
69
69
|
"exports": {
|