@henriquepetrelli/hp-design-system 1.1.23 → 1.1.25

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/style.css CHANGED
@@ -517,6 +517,57 @@ body {
517
517
  }
518
518
  .alert__container__icon[data-v-10dcca72]:hover {
519
519
  background-color: rgba(166, 160, 159, 0.2);
520
+ }.card[data-v-2b489100] {
521
+ display: flex;
522
+ flex-direction: column;
523
+ gap: 0.75rem;
524
+ padding: 1rem;
525
+ border-radius: 0.75rem;
526
+ background-color: var(--color-surface);
527
+ color: var(--color-text);
528
+ outline: none;
529
+ /* Variants */
530
+ /* Interactive state */
531
+ }
532
+ .card__header[data-v-2b489100], .card__footer[data-v-2b489100] {
533
+ display: flex;
534
+ align-items: center;
535
+ gap: 0.5rem;
536
+ }
537
+ .card__body[data-v-2b489100] {
538
+ display: flex;
539
+ flex-direction: column;
540
+ gap: 0.5rem;
541
+ }
542
+ .card__title[data-v-2b489100] {
543
+ font-size: 1.125rem;
544
+ font-weight: 600;
545
+ line-height: 1.3;
546
+ }
547
+ .card__description[data-v-2b489100] {
548
+ font-size: 0.875rem;
549
+ color: var(--color-text-muted);
550
+ }
551
+ .card--default[data-v-2b489100] {
552
+ border: 1px solid transparent;
553
+ }
554
+ .card--outlined[data-v-2b489100] {
555
+ border: 1px solid var(--color-border);
556
+ }
557
+ .card--elevated[data-v-2b489100] {
558
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
559
+ }
560
+ .card--interactive[data-v-2b489100] {
561
+ cursor: pointer;
562
+ transition: box-shadow 0.2s ease, transform 0.2s ease;
563
+ }
564
+ .card--interactive[data-v-2b489100]:hover {
565
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
566
+ transform: translateY(-2px);
567
+ }
568
+ .card--interactive[data-v-2b489100]:focus-visible {
569
+ outline: 3px solid var(--color-focus);
570
+ outline-offset: 2px;
520
571
  }@keyframes spinner-spin {
521
572
  0% {
522
573
  transform: rotate(0deg);
@@ -1306,8 +1357,8 @@ body {
1306
1357
  }
1307
1358
  .theme-switcher__icon[data-v-7efca676] {
1308
1359
  rotate: -30deg;
1309
- width: 1.4rem;
1310
- height: 1.4rem;
1360
+ width: 1.2rem;
1361
+ height: 1.2rem;
1311
1362
  pointer-events: none;
1312
1363
  }
1313
1364
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henriquepetrelli/hp-design-system",
3
- "version": "1.1.23",
3
+ "version": "1.1.25",
4
4
  "type": "module",
5
5
  "main": "./dist/hp-design-system.umd.js",
6
6
  "module": "./dist/hp-design-system.es.js",