hds-web 1.23.3 → 1.23.5
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/flyoutA.js +1 -1
- package/src/HDS/components/Cards/StoryCard/storyxl.js +1 -1
- package/src/HDS/components/Headers/v3Header.js +2 -2
- package/src/styles/tailwind.css +24 -0
package/package.json
CHANGED
@@ -21,7 +21,7 @@ export default function FlyoutA(props) {
|
|
21
21
|
<div className="mb-9">
|
22
22
|
</div>
|
23
23
|
)}
|
24
|
-
<div className={` tb:tb:grid tb:tb:grid-cols-1 tb:gap-x-4 tb:min-w-[
|
24
|
+
<div className={` tb:tb:grid tb:tb:grid-cols-1 tb:gap-x-4 tb:min-w-[186px] `}>
|
25
25
|
{childArray && childArray.map((item) => (
|
26
26
|
<div
|
27
27
|
key={item.name}
|
@@ -6,7 +6,7 @@ import { Icon } from "../../common-components";
|
|
6
6
|
export default function StoryCardXL(props) {
|
7
7
|
return (
|
8
8
|
<>
|
9
|
-
<div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[518px]">
|
9
|
+
<div className="flex flex-col-reverse px-6 py-10 tb-l:px-0 tb-l:py-0 tb-l:flex-row tb-l:gap-10 db:gap-32 tb-l:max-w-7xl min-h-[742px] tb-l:min-h-[518px]">
|
10
10
|
|
11
11
|
<div className="flex flex-col tb-l:pl-20 tb-l:pt-14 tb-l:pb-14">
|
12
12
|
{
|
@@ -565,14 +565,14 @@ V3Header.defaultProps = {
|
|
565
565
|
description: '',
|
566
566
|
href: '/graphql/database',
|
567
567
|
icon: 'database01',
|
568
|
-
name: 'All
|
568
|
+
name: 'All Databases',
|
569
569
|
strokeClass: 'stroke-neutral-500'
|
570
570
|
},
|
571
571
|
{
|
572
572
|
description: '',
|
573
573
|
href: '/graphql/database?category=planned',
|
574
574
|
icon: 'checksquare',
|
575
|
-
name: 'Planned
|
575
|
+
name: 'Planned Databases',
|
576
576
|
strokeClass: 'stroke-neutral-500'
|
577
577
|
},
|
578
578
|
],
|
package/src/styles/tailwind.css
CHANGED
@@ -1812,6 +1812,10 @@ select{
|
|
1812
1812
|
min-height: 200px;
|
1813
1813
|
}
|
1814
1814
|
|
1815
|
+
.min-h-\[742px\]{
|
1816
|
+
min-height: 742px;
|
1817
|
+
}
|
1818
|
+
|
1815
1819
|
.\!w-full{
|
1816
1820
|
width: 100% !important;
|
1817
1821
|
}
|
@@ -10888,6 +10892,18 @@ select{
|
|
10888
10892
|
min-width: 500px;
|
10889
10893
|
}
|
10890
10894
|
|
10895
|
+
.tb\:min-w-\[185px\]{
|
10896
|
+
min-width: 185px;
|
10897
|
+
}
|
10898
|
+
|
10899
|
+
.tb\:min-w-\[200px\]{
|
10900
|
+
min-width: 200px;
|
10901
|
+
}
|
10902
|
+
|
10903
|
+
.tb\:min-w-\[186px\]{
|
10904
|
+
min-width: 186px;
|
10905
|
+
}
|
10906
|
+
|
10891
10907
|
.tb\:max-w-\[17rem\]{
|
10892
10908
|
max-width: 17rem;
|
10893
10909
|
}
|
@@ -11759,6 +11775,10 @@ select{
|
|
11759
11775
|
min-height: 224px;
|
11760
11776
|
}
|
11761
11777
|
|
11778
|
+
.tb-l\:min-h-\[518px\]{
|
11779
|
+
min-height: 518px;
|
11780
|
+
}
|
11781
|
+
|
11762
11782
|
.tb-l\:w-1\/2{
|
11763
11783
|
width: 50%;
|
11764
11784
|
}
|
@@ -11801,6 +11821,10 @@ select{
|
|
11801
11821
|
min-width: 700px;
|
11802
11822
|
}
|
11803
11823
|
|
11824
|
+
.tb-l\:min-w-\[518px\]{
|
11825
|
+
min-width: 518px;
|
11826
|
+
}
|
11827
|
+
|
11804
11828
|
.tb-l\:max-w-\[1240px\]{
|
11805
11829
|
max-width: 1240px;
|
11806
11830
|
}
|