forstok-ui-lib 6.6.3 → 6.6.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/package.json
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 129 129" xmlns:xlink="http://www.w3.org/1999/xlink" enable-background="new 0 0 129 129" style="fill: rgb(86,86,86)">
|
|
3
|
+
<path d="m119.2,114.3h-109.4c-2.3,0-4.1,1.9-4.1,4.1s1.9,4.1 4.1,4.1h109.5c2.3,0 4.1-1.9 4.1-4.1s-1.9-4.1-4.2-4.1z"/>
|
|
4
|
+
<path d="m5.7,78l-.1,19.5c0,1.1 0.4,2.2 1.2,3 0.8,0.8 1.8,1.2 2.9,1.2l19.4-.1c1.1,0 2.1-0.4 2.9-1.2l67-67c1.6-1.6 1.6-4.2 0-5.9l-19.2-19.4c-1.6-1.6-4.2-1.6-5.9-1.77636e-15l-13.4,13.5-53.6,53.5c-0.7,0.8-1.2,1.8-1.2,2.9zm71.2-61.1l13.5,13.5-7.6,7.6-13.5-13.5 7.6-7.6zm-62.9,62.9l49.4-49.4 13.5,13.5-49.4,49.3-13.6,.1 .1-13.5z"/>
|
|
5
|
+
</svg>
|
|
@@ -712,7 +712,7 @@ const getTableItemWrapperModFunc = ({ $mode, $isBorder, $isPopup }:{ $mode: stri
|
|
|
712
712
|
}
|
|
713
713
|
${TableItemColumn} {
|
|
714
714
|
width: ${$isPopup ? '834px' : '940px' };
|
|
715
|
-
grid-template-columns: ${$isPopup ? 'auto var(--variant-small) var(
|
|
715
|
+
grid-template-columns: ${$isPopup ? 'auto var(--variant-small) var(--qty) var(--price) var(--status-small) 95px' : 'auto var(--variant) var(--qty-big) var(--price) var(--status-small) minmax(90px, 100px)'};
|
|
716
716
|
&:last-child {
|
|
717
717
|
${$isPopup ? 'border-bottom: 0 !important' : ''}
|
|
718
718
|
}
|
|
@@ -32,6 +32,7 @@ import IconCheckChat from '../../assets/images/icons/check.svg';
|
|
|
32
32
|
import IconCheckChatBlue from '../../assets/images/icons/check-blue.svg';
|
|
33
33
|
import IconPhone from '../../assets/images/icons/phone.svg';
|
|
34
34
|
import IconLocation from '../../assets/images/icons/location.svg';
|
|
35
|
+
import IconEdit from '../../assets/images/icons/edit.svg'
|
|
35
36
|
|
|
36
37
|
const NotificationStyled = css`
|
|
37
38
|
width: 44px;
|
|
@@ -79,7 +80,7 @@ const getIconContainerStyled = ({ $mode, $name, $width, onClick }:{ $mode?: stri
|
|
|
79
80
|
case 'edit':
|
|
80
81
|
style += `
|
|
81
82
|
&:before {
|
|
82
|
-
content: url(
|
|
83
|
+
content: url(${IconEdit});
|
|
83
84
|
}
|
|
84
85
|
`
|
|
85
86
|
break;
|