hds-web 1.36.9 → 1.37.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hds-web",
3
- "version": "1.36.9",
3
+ "version": "1.37.1",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
@@ -52,7 +52,7 @@ export default function FlyoutA(props) {
52
52
  {item.name}
53
53
  </Typography>
54
54
  </div>
55
- <div className="flex group-hover/icon:translate-x-1 transform transition-all duration-200 ease-in-out ">
55
+ <div className="flex group-hover/icon:translate-x-1 transform transition-all duration-200 ease-in-out tb-l:-ml-1">
56
56
  <Icon
57
57
  height={
58
58
  "h-4 w-4 stroke-2 invisible group-hover/icon:visible transition-all ease-in-out "
@@ -61,43 +61,12 @@ export default function FlyoutA(props) {
61
61
  strokeClass={"stroke-blue-500"}
62
62
  />
63
63
  </div>
64
-
65
- {/* {item.description &&
66
- item.description.length > 0 && (
67
- <Typography
68
- textStyle='body3c-medium'
69
- className='text-neutral-700'>
70
- {item.description}
71
- </Typography>
72
- )} */}
73
64
  </div>
74
65
  </a>
75
66
  </div>
76
67
  ))}
77
68
  </div>
78
69
  </div>
79
- <div className="grid grid-cols-2 divide-x bg-gray-50">
80
- {/* {buttonArray && buttonArray.map((item) => (
81
- <a
82
- key={item.name}
83
- href={item.href}
84
- className="flex justify-center gap-x-2.5 p-3 font-semibold text-gray-900 hover:bg-gray-100"
85
- >
86
-
87
- {item.icon && (
88
- <Icon
89
- height={'h-6'}
90
- variant={item.icon}
91
- strokeColor={'#6C737F'} />
92
- )}
93
- <Typography
94
- textStyle='h-6'
95
- className='text-neutral-500'>
96
- {item.name}
97
- </Typography>
98
- </a>
99
- ))} */}
100
- </div>
101
70
  </div>
102
71
  </div>
103
72
  );
@@ -116,7 +85,7 @@ export default function FlyoutA(props) {
116
85
  )
117
86
  )}
118
87
  </div>
119
- <div className="group/split rounded-r-2xl">
88
+ <div className="group/split rounded-r-2xl tb-l:-ml-6">
120
89
  {cardLayout(
121
90
  null,
122
91
  props.childArray.slice(Math.ceil(props.childArray.length / 2))
@@ -2,7 +2,7 @@ import React from "react";
2
2
 
3
3
  export default function FlyoutD() {
4
4
  return (
5
- <div className="">
5
+ <div className="flex justify-center">
6
6
  <a href={`https://hasura.io/ddn`}>
7
7
  <img
8
8
  src="https://res.cloudinary.com/dh8fp23nd/image/upload/v1716906625/Frame_12754_2_iaixzx.png"
@@ -52,7 +52,6 @@ export default function V3Header(props) {
52
52
 
53
53
  const handleDropdownLeave = (index) => {
54
54
  // return null;
55
-
56
55
  setDropdownVisibility((prevVisibility) => {
57
56
  const updatedVisibility = [...prevVisibility];
58
57
  updatedVisibility[index] = false;
@@ -591,49 +590,49 @@ V3Header.defaultProps = {
591
590
  childArray: [
592
591
  {
593
592
  description: "",
594
- href: "/connectors/postgres",
593
+ href: "/graphql/database/postgresql",
595
594
  icon: "database01",
596
595
  name: "PostgreSQL",
597
596
  strokeClass: "stroke-neutral-500",
598
597
  },
599
598
  {
600
599
  description: "",
601
- href: "/connectors/mongodb",
600
+ href: "/graphql/database/mongodb",
602
601
  icon: "database01",
603
602
  name: "MongoDB",
604
603
  strokeClass: "stroke-neutral-500",
605
604
  },
606
605
  {
607
606
  description: "",
608
- href: "/connectors#connectors-list",
607
+ href: "/graphql/database/mysql",
609
608
  icon: "database01",
610
609
  name: "MySQL",
611
610
  strokeClass: "stroke-neutral-500",
612
611
  },
613
612
  {
614
613
  description: "",
615
- href: "/connectors#connectors-list",
614
+ href: "/graphql/database/snowflake",
616
615
  icon: "database01",
617
616
  name: "Snowflake",
618
617
  strokeClass: "stroke-neutral-500",
619
618
  },
620
619
  {
621
620
  description: "",
622
- href: "/connectors#connectors-list",
621
+ href: "/graphql/database/oracle",
623
622
  icon: "database01",
624
623
  name: "Oracle",
625
624
  strokeClass: "stroke-neutral-500",
626
625
  },
627
626
  {
628
627
  description: "",
629
- href: "/connectors/sqlserver",
628
+ href: "/graphql/database/sql-server",
630
629
  icon: "database01",
631
630
  name: "SQL Server",
632
631
  strokeClass: "stroke-neutral-500",
633
632
  },
634
633
  {
635
634
  description: "",
636
- href: "/connectors#connectors-list",
635
+ href: "/graphql/database",
637
636
  icon: "database01",
638
637
  name: "See all",
639
638
  strokeClass: "stroke-neutral-500",
@@ -1439,6 +1439,10 @@ select{
1439
1439
  margin-right: 1.25rem;
1440
1440
  }
1441
1441
 
1442
+ .mr-6{
1443
+ margin-right: 1.5rem;
1444
+ }
1445
+
1442
1446
  .mr-8{
1443
1447
  margin-right: 2rem;
1444
1448
  }
@@ -1523,10 +1527,6 @@ select{
1523
1527
  margin-top: 70px;
1524
1528
  }
1525
1529
 
1526
- .mr-6{
1527
- margin-right: 1.5rem;
1528
- }
1529
-
1530
1530
  .line-clamp-3{
1531
1531
  overflow: hidden;
1532
1532
  display: -webkit-box;
@@ -2084,6 +2084,10 @@ select{
2084
2084
  min-width: 48px;
2085
2085
  }
2086
2086
 
2087
+ .min-w-\[56px\]{
2088
+ min-width: 56px;
2089
+ }
2090
+
2087
2091
  .min-w-\[64px\]{
2088
2092
  min-width: 64px;
2089
2093
  }
@@ -2102,10 +2106,6 @@ select{
2102
2106
  min-width: 100%;
2103
2107
  }
2104
2108
 
2105
- .min-w-\[56px\]{
2106
- min-width: 56px;
2107
- }
2108
-
2109
2109
  .max-w-2xl{
2110
2110
  max-width: 42rem;
2111
2111
  }
@@ -11151,18 +11151,6 @@ select{
11151
11151
  min-width: 130px;
11152
11152
  }
11153
11153
 
11154
- .tb\:min-w-\[120px\]{
11155
- min-width: 120px;
11156
- }
11157
-
11158
- .tb\:min-w-\[116px\]{
11159
- min-width: 116px;
11160
- }
11161
-
11162
- .tb\:min-w-\[135px\]{
11163
- min-width: 135px;
11164
- }
11165
-
11166
11154
  .tb\:max-w-\[17rem\]{
11167
11155
  max-width: 17rem;
11168
11156
  }
@@ -12035,8 +12023,12 @@ select{
12035
12023
  margin-top: 0px;
12036
12024
  }
12037
12025
 
12038
- .tb-l\:-ml-2{
12039
- margin-left: -0.5rem;
12026
+ .tb-l\:-ml-6{
12027
+ margin-left: -1.5rem;
12028
+ }
12029
+
12030
+ .tb-l\:-ml-1{
12031
+ margin-left: -0.25rem;
12040
12032
  }
12041
12033
 
12042
12034
  .tb-l\:block{
@@ -12316,10 +12308,6 @@ select{
12316
12308
  }
12317
12309
 
12318
12310
  @media (min-width: 1024px){
12319
- .lg\:mr-6{
12320
- margin-right: 1.5rem;
12321
- }
12322
-
12323
12311
  .lg\:flex{
12324
12312
  display: flex;
12325
12313
  }
@@ -12332,10 +12320,6 @@ select{
12332
12320
  height: auto;
12333
12321
  }
12334
12322
 
12335
- .lg\:min-w-\[56px\]{
12336
- min-width: 56px;
12337
- }
12338
-
12339
12323
  .lg\:grid-cols-2{
12340
12324
  grid-template-columns: repeat(2, minmax(0, 1fr));
12341
12325
  }