hds-web 1.39.3 → 1.39.4
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.css +2 -2
- package/dist/index.es.css +2 -2
- package/dist/index.es.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/HDS/components/Cards/Menu/ConnectorsDropdown.js +1 -8
- package/src/HDS/components/Cards/Menu/ResourcesDropdown.js +1 -8
- package/src/HDS/components/Cards/Menu/flyoutA.js +1 -8
- package/src/HDS/components/Headers/v3Header.js +13 -13
- package/src/HDS/components/common-components/Icon/IconMap.js +2461 -2451
- package/src/styles/tailwind.css +4 -0
package/package.json
CHANGED
@@ -32,14 +32,7 @@ export default function FlyoutA(props) {
|
|
32
32
|
<div className="flex rounded-lg items-center group-hover:bg-white">
|
33
33
|
{item.icon && (
|
34
34
|
<Icon
|
35
|
-
height={
|
36
|
-
"h-5 w-5 stroke-2 " +
|
37
|
-
(item.icon === "discord" ||
|
38
|
-
item.icon === "octoface" ||
|
39
|
-
item.icon === "meetup"
|
40
|
-
? ""
|
41
|
-
: "group-hover/icon:stroke-blue-500 ")
|
42
|
-
}
|
35
|
+
height={"h-5 w-5 stroke-2 "}
|
43
36
|
variant={item.icon}
|
44
37
|
strokeClass={item.strokeClass}
|
45
38
|
/>
|
@@ -32,14 +32,7 @@ export default function ResourcesDropdown(props) {
|
|
32
32
|
<div className="flex rounded-lg items-center group-hover:bg-white">
|
33
33
|
{item.icon && (
|
34
34
|
<Icon
|
35
|
-
height={
|
36
|
-
"h-5 w-5 stroke-2 " +
|
37
|
-
(item.icon === "discord" ||
|
38
|
-
item.icon === "octoface" ||
|
39
|
-
item.icon === "meetup"
|
40
|
-
? ""
|
41
|
-
: "group-hover/icon:stroke-blue-500 ")
|
42
|
-
}
|
35
|
+
height={"h-5 w-5 stroke-2 "}
|
43
36
|
variant={item.icon}
|
44
37
|
strokeClass={item.strokeClass}
|
45
38
|
/>
|
@@ -34,14 +34,7 @@ export default function FlyoutA(props) {
|
|
34
34
|
<div className="flex rounded-lg items-center group-hover:bg-white">
|
35
35
|
{item.icon && (
|
36
36
|
<Icon
|
37
|
-
height={
|
38
|
-
"h-5 w-5 stroke-2 " +
|
39
|
-
(item.icon === "discord" ||
|
40
|
-
item.icon === "octoface" ||
|
41
|
-
item.icon === "meetup"
|
42
|
-
? ""
|
43
|
-
: "group-hover/icon:stroke-blue-500 ")
|
44
|
-
}
|
37
|
+
height={"h-5 w-5 stroke-2 "}
|
45
38
|
variant={item.icon}
|
46
39
|
strokeClass={item.strokeClass}
|
47
40
|
/>
|
@@ -792,21 +792,21 @@ V3Header.defaultProps = {
|
|
792
792
|
href: "/docs/3.0/index/",
|
793
793
|
icon: "file02",
|
794
794
|
name: "Documentation",
|
795
|
-
strokeClass: "stroke-
|
795
|
+
strokeClass: "stroke-blue-500",
|
796
796
|
},
|
797
797
|
{
|
798
798
|
description: "",
|
799
799
|
href: "/connectors",
|
800
800
|
icon: "route",
|
801
801
|
name: "Connector Hub",
|
802
|
-
strokeClass: "stroke-
|
802
|
+
strokeClass: "stroke-blue-500",
|
803
803
|
},
|
804
804
|
{
|
805
805
|
description: "",
|
806
806
|
href: "/learn/",
|
807
807
|
icon: "graduationhat02",
|
808
808
|
name: "Tutorials",
|
809
|
-
strokeClass: "stroke-
|
809
|
+
strokeClass: "stroke-blue-500",
|
810
810
|
},
|
811
811
|
],
|
812
812
|
label: "BUILD",
|
@@ -818,28 +818,28 @@ V3Header.defaultProps = {
|
|
818
818
|
href: "/community",
|
819
819
|
icon: "users01",
|
820
820
|
name: "Community",
|
821
|
-
strokeClass: "stroke-
|
821
|
+
strokeClass: "stroke-blue-500",
|
822
822
|
},
|
823
823
|
{
|
824
824
|
description: "",
|
825
825
|
href: "https://discord.com/invite/hasura",
|
826
826
|
icon: "discord",
|
827
827
|
name: "Discord",
|
828
|
-
strokeClass: "",
|
828
|
+
strokeClass: "stroke-blue-500",
|
829
829
|
},
|
830
830
|
{
|
831
831
|
description: "",
|
832
832
|
href: "https://github.com/hasura/graphql-engine/discussions",
|
833
833
|
icon: "octoface",
|
834
834
|
name: "Discussions",
|
835
|
-
strokeClass: "",
|
835
|
+
strokeClass: "stroke-blue-500",
|
836
836
|
},
|
837
837
|
{
|
838
838
|
description: "",
|
839
839
|
href: "https://www.meetup.com/pro/hasura/",
|
840
840
|
icon: "meetup",
|
841
841
|
name: "Meetups",
|
842
|
-
strokeClass: "",
|
842
|
+
strokeClass: "stroke-blue-500",
|
843
843
|
},
|
844
844
|
],
|
845
845
|
label: "Connect",
|
@@ -861,42 +861,42 @@ V3Header.defaultProps = {
|
|
861
861
|
href: "/blog",
|
862
862
|
icon: "bookopen01",
|
863
863
|
name: "Blogs",
|
864
|
-
strokeClass: "stroke-
|
864
|
+
strokeClass: "stroke-blue-500",
|
865
865
|
},
|
866
866
|
{
|
867
867
|
description: "",
|
868
868
|
href: "/events?category=Webinar#wall-section",
|
869
869
|
icon: "videorecorder",
|
870
870
|
name: "Webinars",
|
871
|
-
strokeClass: "stroke-
|
871
|
+
strokeClass: "stroke-blue-500",
|
872
872
|
},
|
873
873
|
{
|
874
874
|
description: "",
|
875
875
|
href: "/graphql/",
|
876
876
|
icon: "home04",
|
877
877
|
name: "GraphQL Hub",
|
878
|
-
strokeClass: "stroke-
|
878
|
+
strokeClass: "stroke-blue-500",
|
879
879
|
},
|
880
880
|
{
|
881
881
|
description: "",
|
882
882
|
href: "/events",
|
883
883
|
icon: "calendarplus02",
|
884
884
|
name: "Events",
|
885
|
-
strokeClass: "stroke-
|
885
|
+
strokeClass: "stroke-blue-500",
|
886
886
|
},
|
887
887
|
{
|
888
888
|
description: "",
|
889
889
|
href: "/",
|
890
890
|
icon: "file05",
|
891
891
|
name: "Whitepapers",
|
892
|
-
strokeClass: "stroke-
|
892
|
+
strokeClass: "stroke-blue-500",
|
893
893
|
},
|
894
894
|
{
|
895
895
|
description: "",
|
896
896
|
href: "https://supergraph.io/",
|
897
897
|
icon: "beziercurve02",
|
898
898
|
name: "Supergraph Manifesto",
|
899
|
-
strokeClass: "stroke-
|
899
|
+
strokeClass: "stroke-blue-500",
|
900
900
|
},
|
901
901
|
],
|
902
902
|
label: "RESOURCES",
|