@nation-a/ui 0.16.19 → 0.16.20
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +27 -48
- package/dist/index.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/styled-system/styles.css +12 -6
- package/dist/types/components/Button/button.recipe.d.ts +6 -0
- package/dist/types/components/IconButton/icon-button.recipe.d.ts +8 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -636,6 +636,12 @@ const ud = At({
|
|
|
636
636
|
color: "content.neutral.disabled",
|
|
637
637
|
cursor: "not-allowed",
|
|
638
638
|
pointerEvents: "none"
|
|
639
|
+
},
|
|
640
|
+
_hover: {
|
|
641
|
+
background: "black.100A",
|
|
642
|
+
_dark: {
|
|
643
|
+
background: "white.100A"
|
|
644
|
+
}
|
|
639
645
|
}
|
|
640
646
|
}
|
|
641
647
|
},
|
|
@@ -892,7 +898,10 @@ const ud = At({
|
|
|
892
898
|
color: "content.neutral.default",
|
|
893
899
|
borderColor: "border.neutral.default",
|
|
894
900
|
_hover: {
|
|
895
|
-
background: "
|
|
901
|
+
background: "black.100A",
|
|
902
|
+
_dark: {
|
|
903
|
+
background: "white.100A"
|
|
904
|
+
},
|
|
896
905
|
color: "content.neutral.bold"
|
|
897
906
|
}
|
|
898
907
|
}
|
|
@@ -949,99 +958,63 @@ const ud = At({
|
|
|
949
958
|
variant: "light",
|
|
950
959
|
color: "neuroid_primary",
|
|
951
960
|
css: {
|
|
952
|
-
|
|
953
|
-
color: "content.neuroidPrimary.default",
|
|
954
|
-
_hover: {
|
|
955
|
-
textDecoration: "underline"
|
|
956
|
-
}
|
|
961
|
+
color: "content.neuroidPrimary.default"
|
|
957
962
|
}
|
|
958
963
|
},
|
|
959
964
|
{
|
|
960
965
|
variant: "light",
|
|
961
966
|
color: "zoltarina_primary",
|
|
962
967
|
css: {
|
|
963
|
-
|
|
964
|
-
color: "content.zoltarinaPrimary.default",
|
|
965
|
-
_hover: {
|
|
966
|
-
textDecoration: "underline"
|
|
967
|
-
}
|
|
968
|
+
color: "content.zoltarinaPrimary.default"
|
|
968
969
|
}
|
|
969
970
|
},
|
|
970
971
|
{
|
|
971
972
|
variant: "light",
|
|
972
973
|
color: "heyd_primary",
|
|
973
974
|
css: {
|
|
974
|
-
|
|
975
|
-
color: "content.heydPrimary.default",
|
|
976
|
-
_hover: {
|
|
977
|
-
textDecoration: "underline"
|
|
978
|
-
}
|
|
975
|
+
color: "content.heydPrimary.default"
|
|
979
976
|
}
|
|
980
977
|
},
|
|
981
978
|
{
|
|
982
979
|
variant: "light",
|
|
983
980
|
color: "heybee_primary",
|
|
984
981
|
css: {
|
|
985
|
-
|
|
986
|
-
color: "content.heybeePrimary.default",
|
|
987
|
-
_hover: {
|
|
988
|
-
textDecoration: "underline"
|
|
989
|
-
}
|
|
982
|
+
color: "content.heybeePrimary.default"
|
|
990
983
|
}
|
|
991
984
|
},
|
|
992
985
|
{
|
|
993
986
|
variant: "light",
|
|
994
987
|
color: "neutral",
|
|
995
988
|
css: {
|
|
996
|
-
|
|
997
|
-
color: "content.neutral.bold",
|
|
998
|
-
_hover: {
|
|
999
|
-
textDecoration: "underline"
|
|
1000
|
-
}
|
|
989
|
+
color: "content.neutral.bold"
|
|
1001
990
|
}
|
|
1002
991
|
},
|
|
1003
992
|
{
|
|
1004
993
|
variant: "light",
|
|
1005
994
|
color: "danger",
|
|
1006
995
|
css: {
|
|
1007
|
-
|
|
1008
|
-
color: "content.danger.default",
|
|
1009
|
-
_hover: {
|
|
1010
|
-
textDecoration: "underline"
|
|
1011
|
-
}
|
|
996
|
+
color: "content.danger.default"
|
|
1012
997
|
}
|
|
1013
998
|
},
|
|
1014
999
|
{
|
|
1015
1000
|
variant: "light",
|
|
1016
1001
|
color: "warning",
|
|
1017
1002
|
css: {
|
|
1018
|
-
|
|
1019
|
-
color: "content.warning.default",
|
|
1020
|
-
_hover: {
|
|
1021
|
-
textDecoration: "underline"
|
|
1022
|
-
}
|
|
1003
|
+
color: "content.warning.default"
|
|
1023
1004
|
}
|
|
1024
1005
|
},
|
|
1025
1006
|
{
|
|
1026
1007
|
variant: "light",
|
|
1027
1008
|
color: "success",
|
|
1028
1009
|
css: {
|
|
1029
|
-
|
|
1030
|
-
color: "content.success.default",
|
|
1031
|
-
_hover: {
|
|
1032
|
-
textDecoration: "underline"
|
|
1033
|
-
}
|
|
1010
|
+
color: "content.success.default"
|
|
1034
1011
|
}
|
|
1035
1012
|
},
|
|
1036
1013
|
{
|
|
1037
1014
|
variant: "light",
|
|
1038
1015
|
color: "informative",
|
|
1039
1016
|
css: {
|
|
1040
|
-
|
|
1041
|
-
color: "content.informative.default",
|
|
1042
|
-
_hover: {
|
|
1043
|
-
textDecoration: "underline"
|
|
1044
|
-
}
|
|
1017
|
+
color: "content.informative.default"
|
|
1045
1018
|
}
|
|
1046
1019
|
}
|
|
1047
1020
|
]
|
|
@@ -1681,7 +1654,10 @@ const hd = (t, e, n = {}) => {
|
|
|
1681
1654
|
pointerEvents: "none"
|
|
1682
1655
|
},
|
|
1683
1656
|
_hover: {
|
|
1684
|
-
background: "
|
|
1657
|
+
background: "black.100A",
|
|
1658
|
+
_dark: {
|
|
1659
|
+
background: "white.100A"
|
|
1660
|
+
}
|
|
1685
1661
|
}
|
|
1686
1662
|
},
|
|
1687
1663
|
light: {
|
|
@@ -1694,7 +1670,10 @@ const hd = (t, e, n = {}) => {
|
|
|
1694
1670
|
pointerEvents: "none"
|
|
1695
1671
|
},
|
|
1696
1672
|
_hover: {
|
|
1697
|
-
background: "
|
|
1673
|
+
background: "black.100A",
|
|
1674
|
+
_dark: {
|
|
1675
|
+
background: "white.100A"
|
|
1676
|
+
}
|
|
1698
1677
|
}
|
|
1699
1678
|
}
|
|
1700
1679
|
},
|