@henriquepetrelli/hp-design-system 1.1.12 → 1.1.14
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/hp-design-system.es.js +142 -31
- package/dist/hp-design-system.es.js.map +1 -1
- package/dist/hp-design-system.umd.js +142 -30
- package/dist/hp-design-system.umd.js.map +1 -1
- package/dist/style.css +48 -9
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -410,7 +410,7 @@ body {
|
|
|
410
410
|
.button-tertiary__label[data-v-0401b00e] {
|
|
411
411
|
display: block;
|
|
412
412
|
color: inherit;
|
|
413
|
-
}.button-icon[data-v-
|
|
413
|
+
}.button-icon[data-v-8cf8a123] {
|
|
414
414
|
display: flex;
|
|
415
415
|
align-items: center;
|
|
416
416
|
justify-content: center;
|
|
@@ -423,35 +423,74 @@ body {
|
|
|
423
423
|
border: 0;
|
|
424
424
|
cursor: pointer;
|
|
425
425
|
}
|
|
426
|
-
.button-icon--lg[data-v-
|
|
426
|
+
.button-icon--lg[data-v-8cf8a123] {
|
|
427
427
|
width: 64px;
|
|
428
428
|
height: 64px;
|
|
429
429
|
}
|
|
430
|
-
.button-icon--sm[data-v-
|
|
430
|
+
.button-icon--sm[data-v-8cf8a123] {
|
|
431
431
|
width: 32px;
|
|
432
432
|
height: 32px;
|
|
433
433
|
font-size: 15px;
|
|
434
434
|
}
|
|
435
|
-
.button-icon--is-loading[data-v-
|
|
435
|
+
.button-icon--is-loading[data-v-8cf8a123] {
|
|
436
436
|
cursor: default;
|
|
437
437
|
}
|
|
438
|
-
.button-icon[data-v-
|
|
438
|
+
.button-icon[data-v-8cf8a123]:not(:disabled):not(.button-icon--is-loading):focus-visible {
|
|
439
439
|
outline: 2px solid var(--color-secondary);
|
|
440
440
|
outline-offset: 2px;
|
|
441
441
|
}
|
|
442
|
-
.button-icon[data-v-
|
|
442
|
+
.button-icon[data-v-8cf8a123]:not(:disabled):not(.button-icon--is-loading):hover {
|
|
443
443
|
transform: scale(1.0175);
|
|
444
444
|
opacity: 0.9;
|
|
445
445
|
}
|
|
446
|
-
.button-icon[style*="--background-color: transparent"][data-v-
|
|
446
|
+
.button-icon[style*="--background-color: transparent"][data-v-8cf8a123]:not(:disabled):not(.button-icon--is-loading):hover {
|
|
447
447
|
background-color: rgba(var(--icon-color), 0.1);
|
|
448
448
|
}
|
|
449
|
-
.button-icon[data-v-
|
|
449
|
+
.button-icon[data-v-8cf8a123]:not(:disabled):not(.button-icon--is-loading):active {
|
|
450
450
|
transform: scale(0.985);
|
|
451
451
|
}
|
|
452
|
-
.button-icon--disabled[data-v-
|
|
452
|
+
.button-icon--disabled[data-v-8cf8a123], .button-icon[data-v-8cf8a123]:not(.button-icon--is-loading):disabled {
|
|
453
453
|
opacity: 0.5;
|
|
454
454
|
cursor: default;
|
|
455
|
+
}.button-letter[data-v-13b75270] {
|
|
456
|
+
display: flex;
|
|
457
|
+
align-items: center;
|
|
458
|
+
justify-content: center;
|
|
459
|
+
width: 48px;
|
|
460
|
+
height: 48px;
|
|
461
|
+
border-radius: 50px;
|
|
462
|
+
font-size: 1rem;
|
|
463
|
+
font-weight: 600;
|
|
464
|
+
border: 0;
|
|
465
|
+
cursor: pointer;
|
|
466
|
+
background-color: var(--background-color);
|
|
467
|
+
transition: background-color 0.2s ease, transform 0.15s ease, opacity 0.15s ease;
|
|
468
|
+
}
|
|
469
|
+
.button-letter--lg[data-v-13b75270] {
|
|
470
|
+
width: 64px;
|
|
471
|
+
height: 64px;
|
|
472
|
+
font-size: 1.4rem;
|
|
473
|
+
}
|
|
474
|
+
.button-letter--sm[data-v-13b75270] {
|
|
475
|
+
width: 32px;
|
|
476
|
+
height: 32px;
|
|
477
|
+
font-size: 0.8rem;
|
|
478
|
+
}
|
|
479
|
+
.button-letter--is-loading[data-v-13b75270] {
|
|
480
|
+
cursor: default;
|
|
481
|
+
}
|
|
482
|
+
.button-letter[data-v-13b75270]:not(:disabled):not(.button-letter--is-loading):hover {
|
|
483
|
+
transform: scale(1.0175);
|
|
484
|
+
}
|
|
485
|
+
.button-letter[data-v-13b75270]:not(:disabled):not(.button-letter--is-loading):active {
|
|
486
|
+
transform: scale(0.985);
|
|
487
|
+
}
|
|
488
|
+
.button-letter[data-v-13b75270]:not(:disabled):not(.button-letter--is-loading):focus-visible {
|
|
489
|
+
outline: 2px solid var(--color-secondary);
|
|
490
|
+
outline-offset: 2px;
|
|
491
|
+
}
|
|
492
|
+
.button-letter--disabled[data-v-13b75270], .button-letter[data-v-13b75270]:disabled {
|
|
493
|
+
cursor: default;
|
|
455
494
|
}.alert[data-v-10dcca72] {
|
|
456
495
|
padding: 10px;
|
|
457
496
|
width: 100%;
|