@ikatec/nebula-tokens 1.1.0-beta.2 → 1.3.0-beta.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/dist/index.d.mts CHANGED
@@ -526,6 +526,46 @@ interface Stepper {
526
526
  active: string;
527
527
  };
528
528
  }
529
+ interface BannerAlert {
530
+ title: string;
531
+ description: string;
532
+ outline: {
533
+ info: {
534
+ background: string;
535
+ icon: string;
536
+ };
537
+ success: {
538
+ background: string;
539
+ icon: string;
540
+ };
541
+ warning: {
542
+ background: string;
543
+ icon: string;
544
+ };
545
+ error: {
546
+ background: string;
547
+ icon: string;
548
+ };
549
+ };
550
+ filled: {
551
+ info: {
552
+ background: string;
553
+ icon: string;
554
+ };
555
+ success: {
556
+ background: string;
557
+ icon: string;
558
+ };
559
+ warning: {
560
+ background: string;
561
+ icon: string;
562
+ };
563
+ error: {
564
+ background: string;
565
+ icon: string;
566
+ };
567
+ };
568
+ }
529
569
  declare const colors: {
530
570
  primary: {
531
571
  50: string;
@@ -625,6 +665,7 @@ declare const colors: {
625
665
  cropper: Cropper;
626
666
  slider: Slider;
627
667
  stepper: Stepper;
668
+ bannerAlert: BannerAlert;
628
669
  };
629
670
 
630
671
  declare const space: {
@@ -655,6 +696,7 @@ interface Radii {
655
696
  button: string;
656
697
  input: string;
657
698
  textarea: string;
699
+ bannerAlert: string;
658
700
  }
659
701
  declare const radii: Radii;
660
702
  type Radiis = keyof typeof radii;
package/dist/index.mjs CHANGED
@@ -352,7 +352,7 @@ var radio = {
352
352
  var drawer = {
353
353
  overlay: "var(--drawer-background-overlay)",
354
354
  header: {
355
- background: "var(--drawer-background-overlay)",
355
+ background: "var(--drawer-header-background)",
356
356
  border: "var(--drawer-header-border)",
357
357
  title: "var(--drawer-header-title)",
358
358
  description: "var(--drawer-header-description)"
@@ -528,6 +528,46 @@ var stepper = {
528
528
  active: "var(--stepper-title-active)"
529
529
  }
530
530
  };
531
+ var bannerAlert = {
532
+ title: "var(--bannerAlert-title)",
533
+ description: "var(--bannerAlert-description)",
534
+ outline: {
535
+ info: {
536
+ background: "var(--bannerAlert-outline-info-background)",
537
+ icon: "var(--bannerAlert-outline-info-icon)"
538
+ },
539
+ success: {
540
+ background: "var(--bannerAlert-outline-success-background)",
541
+ icon: "var(--bannerAlert-outline-success-icon)"
542
+ },
543
+ warning: {
544
+ background: "var(--bannerAlert-outline-warning-background)",
545
+ icon: "var(--bannerAlert-outline-warning-icon)"
546
+ },
547
+ error: {
548
+ background: "var(--bannerAlert-outline-error-background)",
549
+ icon: "var(--bannerAlert-outline-error-icon)"
550
+ }
551
+ },
552
+ filled: {
553
+ info: {
554
+ background: "var(--bannerAlert-filled-info-background)",
555
+ icon: "var(--bannerAlert-filled-info-icon)"
556
+ },
557
+ success: {
558
+ background: "var(--bannerAlert-filled-success-background)",
559
+ icon: "var(--bannerAlert-filled-success-icon)"
560
+ },
561
+ warning: {
562
+ background: "var(--bannerAlert-filled-warning-background)",
563
+ icon: "var(--bannerAlert-filled-warning-icon)"
564
+ },
565
+ error: {
566
+ background: "var(--bannerAlert-filled-error-background)",
567
+ icon: "var(--bannerAlert-filled-error-icon)"
568
+ }
569
+ }
570
+ };
531
571
  var colors = {
532
572
  primary: {
533
573
  50: "var(--primary-50)",
@@ -626,7 +666,8 @@ var colors = {
626
666
  profileImage,
627
667
  cropper,
628
668
  slider,
629
- stepper
669
+ stepper,
670
+ bannerAlert
630
671
  };
631
672
 
632
673
  // src/space.ts
@@ -677,7 +718,8 @@ var space = {
677
718
  var radii = {
678
719
  button: "var(--button-radius)",
679
720
  input: "var(--input-radius)",
680
- textarea: "var(--textarea-radius)"
721
+ textarea: "var(--textarea-radius)",
722
+ bannerAlert: "var(--bannerAlert-radius)"
681
723
  };
682
724
 
683
725
  // src/fonts.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-tokens",
3
- "version": "1.1.0-beta.2",
3
+ "version": "1.3.0-beta.1",
4
4
  "description": "Design tokens",
5
5
  "publishConfig": {
6
6
  "access": "public"