@aivenio/aquarium 4.9.0 → 5.0.0

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.
Files changed (52) hide show
  1. package/dist/_variables.scss +302 -302
  2. package/dist/atoms.cjs +1948 -1765
  3. package/dist/atoms.mjs +1767 -1588
  4. package/dist/charts.cjs +0 -209
  5. package/dist/charts.mjs +0 -209
  6. package/dist/src/atoms/Alert/Alert.js +63 -26
  7. package/dist/src/atoms/Banner/Banner.js +47 -18
  8. package/dist/src/atoms/Button/Button.d.ts +2 -2
  9. package/dist/src/atoms/Button/Button.js +3 -12
  10. package/dist/src/atoms/Card/Card.js +130 -30
  11. package/dist/src/atoms/Checkbox/Checkbox.js +27 -16
  12. package/dist/src/atoms/Chip/Chip.js +12 -6
  13. package/dist/src/atoms/ChoiceChip/ChoiceChip.d.ts +57 -0
  14. package/dist/src/atoms/ChoiceChip/ChoiceChip.js +51 -0
  15. package/dist/src/atoms/DataList/DataList.js +117 -32
  16. package/dist/src/atoms/DatePicker/RangeCalendar.js +10 -3
  17. package/dist/src/atoms/DropdownMenu/DropdownMenu.d.ts +0 -131
  18. package/dist/src/atoms/DropdownMenu/DropdownMenu.js +4 -4
  19. package/dist/src/atoms/Link/Link.js +4 -5
  20. package/dist/src/atoms/Navigation/Navigation.js +59 -22
  21. package/dist/src/atoms/PageHeader/PageHeader.js +18 -7
  22. package/dist/src/atoms/ProgressBar/ProgressBar.js +22 -11
  23. package/dist/src/atoms/RadioButton/RadioButton.js +12 -6
  24. package/dist/src/atoms/Section/Section.js +29 -11
  25. package/dist/src/atoms/Select/Select.js +92 -36
  26. package/dist/src/atoms/Stepper/Stepper.js +92 -30
  27. package/dist/src/atoms/Switch/Switch.js +24 -10
  28. package/dist/src/atoms/Table/Table.d.ts +294 -2
  29. package/dist/src/atoms/Table/Table.js +120 -35
  30. package/dist/src/atoms/Toast/Toast.d.ts +146 -0
  31. package/dist/src/atoms/Toast/Toast.js +34 -16
  32. package/dist/src/atoms/index.d.ts +1 -0
  33. package/dist/src/atoms/index.js +2 -1
  34. package/dist/src/molecules/Badge/Badge.js +3 -2
  35. package/dist/src/molecules/ChoiceChipGroup/ChoiceChipGroup.d.ts +65 -0
  36. package/dist/src/molecules/ChoiceChipGroup/ChoiceChipGroup.js +57 -0
  37. package/dist/src/molecules/Combobox/Combobox.js +2 -2
  38. package/dist/src/molecules/Drawer/Drawer.js +12 -4
  39. package/dist/src/molecules/Modal/Modal.js +12 -4
  40. package/dist/src/molecules/TagLabel/TagLabel.js +3 -2
  41. package/dist/src/molecules/index.d.ts +2 -1
  42. package/dist/src/molecules/index.js +3 -2
  43. package/dist/src/tokens/tokens.json +0 -209
  44. package/dist/styles.css +373 -368
  45. package/dist/system.cjs +2087 -1870
  46. package/dist/system.mjs +1909 -1693
  47. package/dist/tokens.json +0 -209
  48. package/dist/tsconfig.module.tsbuildinfo +1 -1
  49. package/dist/types/designTokens.d.ts +1 -1
  50. package/package.json +4 -4
  51. package/dist/src/molecules/ChoiceChip/ChoiceChip.d.ts +0 -24
  52. package/dist/src/molecules/ChoiceChip/ChoiceChip.js +0 -34
package/dist/tokens.json CHANGED
@@ -534,215 +534,6 @@
534
534
  "fontStyle": "normal",
535
535
  "lineHeight": 1.42,
536
536
  "textTransform": "none"
537
- },
538
- "caption-small": {
539
- "fontFamily": [
540
- "Inter"
541
- ],
542
- "fontSize": "10px",
543
- "fontWeight": 400,
544
- "fontStyle": "normal",
545
- "lineHeight": 1.2,
546
- "letterSpacing": 0,
547
- "textTransform": "none"
548
- },
549
- "caption-default": {
550
- "fontFamily": [
551
- "Inter"
552
- ],
553
- "fontSize": "12px",
554
- "fontWeight": 400,
555
- "fontStyle": "normal",
556
- "lineHeight": 1.26,
557
- "letterSpacing": 0,
558
- "textTransform": "none"
559
- },
560
- "overline-small": {
561
- "fontFamily": [
562
- "Inter"
563
- ],
564
- "fontSize": "10px",
565
- "fontWeight": 400,
566
- "fontStyle": "normal",
567
- "lineHeight": 1,
568
- "letterSpacing": 0,
569
- "textTransform": "uppercase"
570
- },
571
- "overline-default": {
572
- "fontFamily": [
573
- "Inter"
574
- ],
575
- "fontSize": "12px",
576
- "fontWeight": 400,
577
- "fontStyle": "normal",
578
- "lineHeight": 1,
579
- "letterSpacing": 0,
580
- "textTransform": "uppercase"
581
- },
582
- "button-small": {
583
- "fontFamily": [
584
- "Inter"
585
- ],
586
- "fontSize": "12px",
587
- "fontWeight": 500,
588
- "fontStyle": "normal",
589
- "lineHeight": 1,
590
- "letterSpacing": 0,
591
- "textTransform": "none"
592
- },
593
- "button-medium": {
594
- "fontFamily": [
595
- "Inter"
596
- ],
597
- "fontSize": "14px",
598
- "fontWeight": 400,
599
- "fontStyle": "normal",
600
- "lineHeight": 1,
601
- "letterSpacing": 0,
602
- "textTransform": "none"
603
- },
604
- "button-large": {
605
- "fontFamily": [
606
- "Inter"
607
- ],
608
- "fontSize": "16px",
609
- "fontWeight": 500,
610
- "fontStyle": "normal",
611
- "lineHeight": 1.5,
612
- "letterSpacing": 0,
613
- "textTransform": "none"
614
- },
615
- "body-small": {
616
- "fontFamily": [
617
- "Inter"
618
- ],
619
- "fontSize": "14px",
620
- "fontWeight": 400,
621
- "fontStyle": "normal",
622
- "lineHeight": 1.43,
623
- "letterSpacing": 0,
624
- "textTransform": "none"
625
- },
626
- "body-small-medium": {
627
- "fontFamily": [
628
- "Inter"
629
- ],
630
- "fontSize": "14px",
631
- "fontWeight": 500,
632
- "fontStyle": "normal",
633
- "lineHeight": 1.43,
634
- "letterSpacing": 0,
635
- "textTransform": "none"
636
- },
637
- "body-default": {
638
- "fontFamily": [
639
- "Inter"
640
- ],
641
- "fontSize": "16px",
642
- "fontWeight": 400,
643
- "fontStyle": "normal",
644
- "lineHeight": 1.5,
645
- "letterSpacing": 0,
646
- "textTransform": "none"
647
- },
648
- "body-default-medium": {
649
- "fontFamily": [
650
- "Inter"
651
- ],
652
- "fontSize": "16px",
653
- "fontWeight": 500,
654
- "fontStyle": "normal",
655
- "lineHeight": 1.5,
656
- "letterSpacing": 0,
657
- "textTransform": "none"
658
- },
659
- "body-large": {
660
- "fontFamily": [
661
- "Inter"
662
- ],
663
- "fontSize": "20px",
664
- "fontWeight": 400,
665
- "fontStyle": "normal",
666
- "lineHeight": 1.58,
667
- "letterSpacing": 0,
668
- "textTransform": "none"
669
- },
670
- "body-large-medium": {
671
- "fontFamily": [
672
- "Inter"
673
- ],
674
- "fontSize": "20px",
675
- "fontWeight": 400,
676
- "fontStyle": "normal",
677
- "lineHeight": 1.2,
678
- "letterSpacing": 0,
679
- "textTransform": "none"
680
- },
681
- "heading-large": {
682
- "fontFamily": [
683
- "Inter"
684
- ],
685
- "fontSize": "20px",
686
- "fontWeight": 700,
687
- "fontStyle": "normal",
688
- "lineHeight": 1.5,
689
- "letterSpacing": 0.15,
690
- "textTransform": "none"
691
- },
692
- "heading-xl": {
693
- "fontFamily": [
694
- "Inter"
695
- ],
696
- "fontSize": "24px",
697
- "fontWeight": 700,
698
- "fontStyle": "normal",
699
- "lineHeight": 1.5,
700
- "letterSpacing": 0,
701
- "textTransform": "none"
702
- },
703
- "heading-2xl": {
704
- "fontFamily": [
705
- "Inter"
706
- ],
707
- "fontSize": "34px",
708
- "fontWeight": 700,
709
- "fontStyle": "normal",
710
- "lineHeight": 1.28,
711
- "letterSpacing": 0,
712
- "textTransform": "none"
713
- },
714
- "heading-3xl": {
715
- "fontFamily": [
716
- "Inter"
717
- ],
718
- "fontSize": "48px",
719
- "fontWeight": 700,
720
- "fontStyle": "normal",
721
- "lineHeight": 1.24,
722
- "letterSpacing": -0.48,
723
- "textTransform": "none"
724
- },
725
- "heading-4xl": {
726
- "fontFamily": [
727
- "Inter"
728
- ],
729
- "fontSize": "60px",
730
- "fontWeight": 700,
731
- "fontStyle": "normal",
732
- "lineHeight": 1.2,
733
- "letterSpacing": -1.5,
734
- "textTransform": "none"
735
- },
736
- "heading-5xl": {
737
- "fontFamily": [
738
- "Inter"
739
- ],
740
- "fontSize": "76px",
741
- "fontWeight": 700,
742
- "fontStyle": "normal",
743
- "lineHeight": 1.2,
744
- "letterSpacing": -1.98,
745
- "textTransform": "none"
746
537
  }
747
538
  }
748
539
  }