@drivy/cobalt 0.25.1 → 0.26.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 (63) hide show
  1. package/cjs/tokens/theme.js +86 -79
  2. package/cjs/tokens/theme.js.map +1 -1
  3. package/components/Callout/index.js +3 -1
  4. package/components/Callout/index.js.map +1 -1
  5. package/components/Flash/index.js +1 -1
  6. package/components/Flash/index.js.map +1 -1
  7. package/components/Rating/RatingIcons.js +2 -2
  8. package/components/Rating/RatingIcons.js.map +1 -1
  9. package/package.json +13 -13
  10. package/styles/components/BasicCell/index.scss +8 -6
  11. package/styles/components/BulletList/index.scss +2 -2
  12. package/styles/components/Buttons/GhostButton/index.scss +4 -4
  13. package/styles/components/Buttons/index.scss +5 -3
  14. package/styles/components/Calendar/CalendarRangePicker/index.scss +39 -17
  15. package/styles/components/Calendar/CalendarView/index.scss +10 -9
  16. package/styles/components/Callout/index.scss +37 -29
  17. package/styles/components/Card/index.scss +9 -10
  18. package/styles/components/Cell/index.scss +5 -4
  19. package/styles/components/Chip/index.scss +12 -15
  20. package/styles/components/EmptyState/index.scss +5 -5
  21. package/styles/components/Flash/index.scss +21 -7
  22. package/styles/components/Form/Autocomplete/index.scss +3 -3
  23. package/styles/components/Form/CheckablePill.scss +3 -3
  24. package/styles/components/Form/Checkmark.scss +3 -3
  25. package/styles/components/Form/ComposedField.scss +2 -2
  26. package/styles/components/Form/Fieldset.scss +6 -6
  27. package/styles/components/Form/Hint.scss +3 -3
  28. package/styles/components/Form/RadioWithDetails.scss +1 -1
  29. package/styles/components/Form/Select.scss +1 -1
  30. package/styles/components/Form/Slider.scss +7 -7
  31. package/styles/components/Form/Stepper.scss +2 -2
  32. package/styles/components/Form/TextArea.scss +2 -2
  33. package/styles/components/Form/TextInput.scss +1 -1
  34. package/styles/components/Form/ToggleSwitch.scss +4 -4
  35. package/styles/components/Form/field.scss +5 -5
  36. package/styles/components/Form/form.scss +2 -2
  37. package/styles/components/Helper/index.scss +1 -1
  38. package/styles/components/Icon/iconColors.scss +46 -42
  39. package/styles/components/Icon/index.scss +9 -2
  40. package/styles/components/Modal/index.scss +1 -1
  41. package/styles/components/Note/index.scss +2 -2
  42. package/styles/components/Pill/index.scss +3 -5
  43. package/styles/components/Popover/index.scss +1 -1
  44. package/styles/components/PriceTable/index.scss +1 -1
  45. package/styles/components/ProgressBar/index.scss +6 -5
  46. package/styles/components/Rating/index.scss +3 -3
  47. package/styles/components/TabBar/index.scss +9 -12
  48. package/styles/components/Tabs/index.scss +9 -11
  49. package/styles/components/Tag/index.scss +3 -2
  50. package/styles/core/_colors-map.scss +83 -76
  51. package/styles/core/card.scss +1 -0
  52. package/styles/core/color.scss +4 -0
  53. package/styles/core/global-variables.scss +1 -1
  54. package/styles/core/text.scss +29 -8
  55. package/styles/core/theme.scss +64 -57
  56. package/styles/core/typography.scss +14 -12
  57. package/styles/global/typography.scss +1 -1
  58. package/styles/index.scss +1 -1
  59. package/tokens/theme.js +86 -79
  60. package/tokens/theme.js.map +1 -1
  61. package/types/components/Icon/index.d.ts +1 -1
  62. package/types/tokens/index.d.ts +73 -66
  63. package/utilities.css +132 -108
package/utilities.css CHANGED
@@ -3726,6 +3726,30 @@
3726
3726
  border-style: none
3727
3727
  }
3728
3728
 
3729
+ .c-border-base {
3730
+ border-color: #dbd8dc
3731
+ }
3732
+
3733
+ .c-border-baseInteractive {
3734
+ border-color: #dbd8dc
3735
+ }
3736
+
3737
+ .c-border-baseInteractive:hover {
3738
+ border-color: #757575
3739
+ }
3740
+
3741
+ .c-border-baseInteractive:focus {
3742
+ border-color: #757575
3743
+ }
3744
+
3745
+ .c-border-baseInteractive:active {
3746
+ border-color: #333
3747
+ }
3748
+
3749
+ .c-border-subdued {
3750
+ border-color: #edebed
3751
+ }
3752
+
3729
3753
  .c-border-accent {
3730
3754
  border-color: #61366b
3731
3755
  }
@@ -3750,44 +3774,40 @@
3750
3774
  border-color: #b01aa7
3751
3775
  }
3752
3776
 
3753
- .c-border-base {
3754
- border-color: #dbd8dc
3755
- }
3756
-
3757
- .c-border-baseInteractive {
3758
- border-color: #dbd8dc
3777
+ .c-border-error {
3778
+ border-color: #ff7378
3759
3779
  }
3760
3780
 
3761
- .c-border-baseInteractive:hover {
3762
- border-color: #757575
3781
+ .c-border-errorAlt {
3782
+ border-color: #ff7378
3763
3783
  }
3764
3784
 
3765
- .c-border-baseInteractive:focus {
3766
- border-color: #757575
3785
+ .c-border-success {
3786
+ border-color: #00da94
3767
3787
  }
3768
3788
 
3769
- .c-border-baseInteractive:active {
3770
- border-color: #333
3789
+ .c-border-successAlt {
3790
+ border-color: #00da94
3771
3791
  }
3772
3792
 
3773
- .c-border-error {
3774
- border-color: #ff7378
3793
+ .c-bg-primary {
3794
+ background-color: #f8f7f8
3775
3795
  }
3776
3796
 
3777
- .c-border-errorAlt {
3778
- border-color: #ff7378
3797
+ .c-bg-secondary {
3798
+ background-color: #fff
3779
3799
  }
3780
3800
 
3781
- .c-border-subdued {
3782
- border-color: #edebed
3801
+ .c-bg-secondaryInteractive {
3802
+ background-color: #fff
3783
3803
  }
3784
3804
 
3785
- .c-border-success {
3786
- border-color: #00da94
3805
+ .c-bg-secondaryInteractive:hover {
3806
+ background-color: #f8f7f8
3787
3807
  }
3788
3808
 
3789
- .c-border-successAlt {
3790
- border-color: #00da94
3809
+ .c-bg-secondaryInteractive:focus {
3810
+ background-color: #f8f7f8
3791
3811
  }
3792
3812
 
3793
3813
  .c-bg-accent {
@@ -3822,6 +3842,38 @@
3822
3842
  background-color: #61366b
3823
3843
  }
3824
3844
 
3845
+ .c-bg-info {
3846
+ background-color: #f8f7f8
3847
+ }
3848
+
3849
+ .c-bg-error {
3850
+ background-color: #ff7378
3851
+ }
3852
+
3853
+ .c-bg-errorInteractive {
3854
+ background-color: #ff7378
3855
+ }
3856
+
3857
+ .c-bg-errorInteractive:hover {
3858
+ background-color: #ff7378
3859
+ }
3860
+
3861
+ .c-bg-errorInteractive:focus {
3862
+ background-color: #ff7378
3863
+ }
3864
+
3865
+ .c-bg-errorAlt {
3866
+ background-color: #333
3867
+ }
3868
+
3869
+ .c-bg-success {
3870
+ background-color: #00da94
3871
+ }
3872
+
3873
+ .c-bg-successAlt {
3874
+ background-color: #333
3875
+ }
3876
+
3825
3877
  .c-bg-connect {
3826
3878
  background-color: #5ecbdd
3827
3879
  }
@@ -3842,88 +3894,92 @@
3842
3894
  background-color: #ffd988
3843
3895
  }
3844
3896
 
3845
- .c-bg-error {
3846
- background-color: #ff7378
3897
+ .c-bg-owner {
3898
+ background-color: #390446
3847
3899
  }
3848
3900
 
3849
- .c-bg-errorInteractive {
3850
- background-color: #ff7378
3901
+ .c-bg-disabled {
3902
+ background-color: #edebed
3851
3903
  }
3852
3904
 
3853
- .c-bg-errorInteractive:hover {
3854
- background-color: #ff7378
3905
+ .c-bg-neutral {
3906
+ background-color: #edebed
3855
3907
  }
3856
3908
 
3857
- .c-bg-errorInteractive:focus {
3858
- background-color: #ff7378
3909
+ .c-bg-neutralAlt {
3910
+ background-color: #f8f7f8
3859
3911
  }
3860
3912
 
3861
- .c-bg-errorAlt {
3913
+ .c-bg-fill-base {
3862
3914
  background-color: #333
3863
3915
  }
3864
3916
 
3865
- .c-bg-info {
3866
- background-color: #f8f7f8
3917
+ .c-bg-fill-secondary {
3918
+ background-color: #5ecbdd
3867
3919
  }
3868
3920
 
3869
- .c-bg-neutral {
3921
+ .c-bg-fill-subdued {
3870
3922
  background-color: #edebed
3871
3923
  }
3872
3924
 
3873
- .c-bg-neutralAlt {
3874
- background-color: #f8f7f8
3925
+ .c-bg-fill-accent {
3926
+ background-color: #b01aa7
3875
3927
  }
3876
3928
 
3877
- .c-bg-owner {
3878
- background-color: #390446
3929
+ .c-bg-fill-accentAlt {
3930
+ background-color: #b01aa7
3879
3931
  }
3880
3932
 
3881
- .c-bg-primary {
3882
- background-color: #f8f7f8
3933
+ .c-bg-fill-success {
3934
+ background-color: #ff7378
3883
3935
  }
3884
3936
 
3885
- .c-bg-secondary {
3886
- background-color: #fff
3937
+ .c-bg-fill-error {
3938
+ background-color: #00da94
3887
3939
  }
3888
3940
 
3889
- .c-bg-secondaryInteractive {
3890
- background-color: #fff
3941
+ .c-bg-fill-negative {
3942
+ background-color: #ff7378
3891
3943
  }
3892
3944
 
3893
- .c-bg-secondaryInteractive:hover {
3945
+ .c-bg-fill-neutral {
3894
3946
  background-color: #f8f7f8
3895
3947
  }
3896
3948
 
3897
- .c-bg-secondaryInteractive:focus {
3898
- background-color: #f8f7f8
3949
+ .c-bg-fill-disabled {
3950
+ background-color: #a49da7
3899
3951
  }
3900
3952
 
3901
- .c-bg-success {
3902
- background-color: #00da94
3953
+ .c-text-base {
3954
+ color: #333
3903
3955
  }
3904
3956
 
3905
- .c-bg-successAlt {
3906
- background-color: #333
3957
+ .c-text-baseInteractive {
3958
+ color: #333
3907
3959
  }
3908
3960
 
3909
- .c-bg-fill-accent {
3910
- background-color: #b01aa7
3961
+ .c-text-baseInteractive:hover {
3962
+ color: #333
3911
3963
  }
3912
3964
 
3913
- .c-bg-fill-accentAlt {
3914
- background-color: #b01aa7
3965
+ .c-text-baseInteractive:focus {
3966
+ color: #333
3915
3967
  }
3916
3968
 
3917
- .c-bg-fill-disabled {
3918
- background-color: #a49da7
3969
+ .c-text-subdued {
3970
+ color: #757575
3919
3971
  }
3920
3972
 
3921
- .c-bg-fill-secondary {
3922
- background-color: #5ecbdd
3973
+ .c-text-subduedInteractive {
3974
+ color: #757575
3923
3975
  }
3924
3976
 
3925
- .c-bg-fill-subdued {
3926
- background-color: #edebed
3977
+ .c-text-subduedInteractive:hover {
3978
+ color: #333
3979
+ }
3980
+
3981
+ .c-text-subduedInteractive:focus {
3982
+ color: #333
3927
3983
  }
3928
3984
 
3929
3985
  .c-text-accent {
@@ -3958,20 +4014,24 @@
3958
4014
  color: #61366b
3959
4015
  }
3960
4016
 
3961
- .c-text-base {
3962
- color: #333
4017
+ .c-text-info {
4018
+ color: #757575
3963
4019
  }
3964
4020
 
3965
- .c-text-baseInteractive {
3966
- color: #333
4021
+ .c-text-error {
4022
+ color: #ff7378
3967
4023
  }
3968
4024
 
3969
- .c-text-baseInteractive:hover {
3970
- color: #333
4025
+ .c-text-errorAlt {
4026
+ color: #fff
3971
4027
  }
3972
4028
 
3973
- .c-text-baseInteractive:focus {
3974
- color: #333
4029
+ .c-text-success {
4030
+ color: #00da94
4031
+ }
4032
+
4033
+ .c-text-successAlt {
4034
+ color: #fff
3975
4035
  }
3976
4036
 
3977
4037
  .c-text-connect {
@@ -3982,16 +4042,12 @@
3982
4042
  color: #333
3983
4043
  }
3984
4044
 
3985
- .c-text-error {
3986
- color: #ff7378
3987
- }
3988
-
3989
- .c-text-errorAlt {
4045
+ .c-text-owner {
3990
4046
  color: #fff
3991
4047
  }
3992
4048
 
3993
- .c-text-info {
3994
- color: #757575
4049
+ .c-text-warning {
4050
+ color: #ffa484
3995
4051
  }
3996
4052
 
3997
4053
  .c-text-infoAlt {
@@ -4002,38 +4058,6 @@
4002
4058
  color: #fff
4003
4059
  }
4004
4060
 
4005
- .c-text-owner {
4006
- color: #fff
4007
- }
4008
-
4009
- .c-text-subdued {
4010
- color: #757575
4011
- }
4012
-
4013
- .c-text-subduedInteractive {
4014
- color: #757575
4015
- }
4016
-
4017
- .c-text-subduedInteractive:hover {
4018
- color: #333
4019
- }
4020
-
4021
- .c-text-subduedInteractive:focus {
4022
- color: #333
4023
- }
4024
-
4025
- .c-text-success {
4026
- color: #00da94
4027
- }
4028
-
4029
- .c-text-successAlt {
4030
- color: #fff
4031
- }
4032
-
4033
- .c-text-warning {
4034
- color: #ffa484
4035
- }
4036
-
4037
4061
  @media (min-width: 480px) {
4038
4062
  .xs\:c-sr-only {
4039
4063
  position: absolute;