forstok-ui-lib 6.6.4 → 6.6.6

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forstok-ui-lib",
3
- "version": "6.6.4",
3
+ "version": "6.6.6",
4
4
  "description": "Forstok UI Components Library",
5
5
  "path": "dist",
6
6
  "main": "dist/index.js",
@@ -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>
@@ -388,10 +388,10 @@ const getTabsColumnModFunc = ({ $mode, $content }:{ $mode?: string, $content?: s
388
388
  grid-auto-flow: column;
389
389
  justify-content: left;
390
390
  grid-gap: ${ $content === 'store' ? '6px' : '8px'};
391
- grid-template-columns: ${ $content === 'store' ? '28px 1fr' : ($content === 'checkbox') ? '16px 34px 1fr' : '34px 1fr'};
391
+ grid-template-columns: ${ $content === 'store' ? 'auto 1fr' : ($content === 'checkbox') ? '16px 34px 1fr' : '34px 1fr'};
392
392
  align-items: start;
393
393
  > div:first-child {
394
- height: ${ $content === 'store' ? '28px' : '34px'};
394
+ height: ${ $content === 'store' ? 'auto' : '34px'};
395
395
  }
396
396
  > aside {
397
397
  align-items: center;
@@ -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('https://forstok-staging-storage.s3.ap-southeast-1.amazonaws.com/public/frontend/icons/edit.svg');
83
+ content: url(${IconEdit});
83
84
  }
84
85
  `
85
86
  break;