hds-web 1.17.7 → 1.17.8
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 +1 -1
- package/dist/index.es.css +1 -1
- package/dist/index.es.js +5 -5
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/HDS/assets/icons/endpoints.svg +3 -2
- package/src/HDS/helpers/Grid/index.js +2 -1
- package/src/HDS/helpers/Grid/storyLayout.js +15 -0
- package/src/styles/tailwind.css +8 -0
package/package.json
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
-
<svg
|
2
|
-
<path
|
1
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M9.75 2.25H9.69706C8.0169 2.25 7.17682 2.25 6.53509 2.57698C5.9706 2.8646 5.51166 3.32354 5.22404 3.88803C4.89706 4.52976 4.89706 5.36984 4.89706 7.05V7.64986C4.89706 8.61944 4.89706 9.10423 4.76018 9.54169C4.63903 9.92888 4.44061 10.2875 4.17692 10.5958C3.87898 10.9441 3.46824 11.2017 2.64676 11.7167L2.25 11.9654L2.64675 12.2142C3.46824 12.7292 3.87898 12.9867 4.17691 13.3351C4.44061 13.6434 4.63903 14.002 4.76018 14.3892C4.89706 14.8266 4.89706 15.3114 4.89706 16.281V16.95C4.89706 18.6302 4.89706 19.4702 5.22404 20.112C5.51166 20.6765 5.9706 21.1354 6.53509 21.423C7.17682 21.75 8.0169 21.75 9.69706 21.75H9.75" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
|
+
<path d="M15 2.25V2.25C16.2737 2.25 16.9105 2.25 17.419 2.44025C18.2319 2.74442 18.8732 3.38575 19.1774 4.19866C19.3676 4.70711 19.3676 5.34396 19.3676 6.61765V7.79975C19.3676 8.717 19.3676 9.17563 19.4918 9.59367C19.6017 9.96382 19.7821 10.3093 20.023 10.6111C20.295 10.9519 20.6714 11.214 21.424 11.7383L21.75 11.9654L21.424 12.1925C20.6714 12.7168 20.295 12.979 20.023 13.3198C19.7821 13.6216 19.6017 13.967 19.4918 14.3372C19.3676 14.7552 19.3676 15.2138 19.3676 16.1311V17.3824C19.3676 18.656 19.3676 19.2929 19.1774 19.8013C18.8732 20.6142 18.2319 21.2556 17.419 21.5597C16.9105 21.75 16.2737 21.75 15 21.75V21.75" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
4
|
</svg>
|
@@ -1 +1,2 @@
|
|
1
|
-
export {default as GridComponent} from './grid';
|
1
|
+
export {default as GridComponent} from './grid';
|
2
|
+
export {default as StoryLayout} from './storyLayout'
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
|
3
|
+
function StoryLayout(props) {
|
4
|
+
return (
|
5
|
+
<div className='pt-10 flex flex-wrap items-center justify-center'>
|
6
|
+
{React.Children.map(props.children, (child) => (
|
7
|
+
<div className='p-10'>
|
8
|
+
{child}
|
9
|
+
</div>
|
10
|
+
))}
|
11
|
+
</div>
|
12
|
+
);
|
13
|
+
}
|
14
|
+
|
15
|
+
export default StoryLayout;
|
package/src/styles/tailwind.css
CHANGED
@@ -2224,6 +2224,14 @@ select{
|
|
2224
2224
|
list-style-type: none;
|
2225
2225
|
}
|
2226
2226
|
|
2227
|
+
.grid-flow-col{
|
2228
|
+
grid-auto-flow: column;
|
2229
|
+
}
|
2230
|
+
|
2231
|
+
.grid-flow-col-dense{
|
2232
|
+
grid-auto-flow: column dense;
|
2233
|
+
}
|
2234
|
+
|
2227
2235
|
.grid-cols-1{
|
2228
2236
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
2229
2237
|
}
|