hds-web 1.16.2 → 1.16.3
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.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/components/Cards/Menu/flyoutA.js +16 -16
package/package.json
CHANGED
@@ -26,7 +26,7 @@ export default function FlyoutA(props) {
|
|
26
26
|
{label}
|
27
27
|
</Typography>) : (
|
28
28
|
<div className="mb-9">
|
29
|
-
|
29
|
+
</div>
|
30
30
|
)}
|
31
31
|
<div className={` tb:tb:grid tb:tb:grid-cols-1 tb:gap-x-4 tb:min-w-[182px] `}>
|
32
32
|
{childArray && childArray.map((item) => (
|
@@ -110,28 +110,28 @@ export default function FlyoutA(props) {
|
|
110
110
|
|
111
111
|
(
|
112
112
|
<>
|
113
|
-
|
114
|
-
<div className="hidden tb-l:flex h-full">
|
115
|
-
<div className="border-r border-neutral-150 shadow rounded-l-2xl">
|
116
113
|
|
117
|
-
|
118
|
-
|
119
|
-
<div className="shadow rounded-r-2xl">
|
114
|
+
<div className="hds-hidden tb-l:flex h-full">
|
115
|
+
<div className="border-r border-neutral-150 shadow rounded-l-2xl">
|
120
116
|
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
117
|
+
{cardLayout(props.label, props.childArray.slice(0, Math.ceil(props.childArray.length / 2)))}
|
118
|
+
</div>
|
119
|
+
<div className="shadow rounded-r-2xl">
|
120
|
+
|
121
|
+
{cardLayout(null, props.childArray.slice(Math.ceil(props.childArray.length / 2)))}
|
122
|
+
</div>
|
123
|
+
</div>
|
124
|
+
<div className="hds-hidden-tbl shadow h-full rounded-2xl">
|
125
|
+
{cardLayout(props.label, props.childArray)}
|
126
|
+
</div>
|
127
127
|
</>
|
128
|
-
)
|
128
|
+
)
|
129
129
|
|
130
130
|
: (
|
131
131
|
<div className=" shadow h-full rounded-2xl">
|
132
|
-
|
132
|
+
{cardLayout(props.label, props.childArray)}
|
133
133
|
</div>
|
134
|
-
|
134
|
+
|
135
135
|
)}
|
136
136
|
</>
|
137
137
|
|