forstok-ui-lib 6.5.3 → 6.5.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.js +66 -66
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +62 -62
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/time.svg +26 -0
- package/src/assets/stylesheets/shares.styles.ts +6 -1
- package/src/components/icon/styles.ts +8 -0
package/package.json
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="100%" height="100%" viewBox="0 0 512.000000 512.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.16, written by Peter Selinger 2001-2019
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M2235 5105 c-1161 -152 -2077 -1070 -2220 -2225 -20 -163 -20 -477 0
|
|
13
|
+
-640 98 -793 571 -1502 1270 -1905 264 -152 544 -252 859 -307 174 -30 543
|
|
14
|
+
-37 727 -13 1102 138 1984 955 2204 2040 47 230 59 584 30 825 -144 1159
|
|
15
|
+
-1062 2077 -2228 2225 -145 18 -500 18 -642 0z m601 -350 c349 -46 667 -165
|
|
16
|
+
954 -358 254 -171 485 -412 654 -681 308 -491 405 -1121 261 -1691 -100 -397
|
|
17
|
+
-291 -733 -584 -1026 -184 -183 -354 -307 -577 -418 -581 -290 -1255 -310
|
|
18
|
+
-1852 -55 -263 113 -481 262 -693 473 -183 184 -307 354 -418 577 -290 581
|
|
19
|
+
-310 1255 -55 1852 113 263 262 481 473 693 354 353 783 566 1276 633 139 19
|
|
20
|
+
418 19 561 1z"/>
|
|
21
|
+
<path d="M2485 4085 c-41 -22 -64 -44 -84 -80 -14 -27 -16 -101 -16 -760 l0
|
|
22
|
+
-730 23 -40 c17 -29 147 -138 474 -399 370 -296 457 -361 494 -369 108 -25
|
|
23
|
+
213 61 214 174 0 78 -22 100 -447 439 l-402 321 -3 667 c-3 744 1 701 -74 758
|
|
24
|
+
-45 35 -133 44 -179 19z"/>
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
@@ -425,7 +425,12 @@ const getTabsColumnModFunc = ({ $mode, $content }:{ $mode?: string, $content?: s
|
|
|
425
425
|
grid-auto-flow: column;
|
|
426
426
|
}
|
|
427
427
|
`
|
|
428
|
-
}
|
|
428
|
+
} else if ($mode === 'store-order') {
|
|
429
|
+
style +=`
|
|
430
|
+
align-items: start;
|
|
431
|
+
gap: 8px;
|
|
432
|
+
`
|
|
433
|
+
}
|
|
429
434
|
if ($content === 'right') {
|
|
430
435
|
style +=`
|
|
431
436
|
grid-gap: 10px;
|
|
@@ -4,6 +4,7 @@ import IconPerson from '../../assets/images/icons/person.svg';
|
|
|
4
4
|
import IconPersonRed from '../../assets/images/icons/person-red.svg';
|
|
5
5
|
import IconCart from '../../assets/images/icons/cart.svg';
|
|
6
6
|
import IconBack from '../../assets/images/icons/back.svg';
|
|
7
|
+
import IconTime from '../../assets/images/icons/time.svg';
|
|
7
8
|
import IconDashboardLeftNav from '../../assets/images/navs/left/dashboard.svg';
|
|
8
9
|
import IconDashboardActiveLeftNav from '../../assets/images/navs/left/dashboard-active.svg';
|
|
9
10
|
import IconAiLeftNav from '../../assets/images/navs/left/ai.svg';
|
|
@@ -302,6 +303,13 @@ const getIconContainerStyled = ({ $mode, $name, $width, onClick }:{ $mode?: stri
|
|
|
302
303
|
}
|
|
303
304
|
`
|
|
304
305
|
break;
|
|
306
|
+
case 'time':
|
|
307
|
+
style += `
|
|
308
|
+
&:before {
|
|
309
|
+
content: url(${IconTime});
|
|
310
|
+
}
|
|
311
|
+
`
|
|
312
|
+
break;
|
|
305
313
|
case 'dashboard-left-nav':
|
|
306
314
|
style += `
|
|
307
315
|
&:before {
|