forstok-ui-lib 6.16.2 → 6.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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/images/icons/{edit-whites.svg → edit-white.svg} +1 -1
- package/src/assets/images/icons/edit.svg +1 -1
- package/src/assets/stylesheets/bases.styles.ts +2 -2
- package/src/components/masterTable/styles.tsx +2 -2
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<?xml version=
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100%" height="100%" viewBox="0 0 129 129" enable-background="new 0 0 129 129" fill="#ffffff">
|
|
3
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
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"/>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<?xml version=
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
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
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
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"/>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css } from 'styled-components'
|
|
2
2
|
|
|
3
|
-
import
|
|
3
|
+
import IconEditWhite from '../../assets/images/icons/edit-white.svg'
|
|
4
4
|
import IconLoadingRed from '../../assets/images/icons/loading-red.svg'
|
|
5
5
|
|
|
6
6
|
export const clearList = css`
|
|
@@ -126,7 +126,7 @@ export const commonCSSLists = css`
|
|
|
126
126
|
background-color: var(--ov-clr-bg);
|
|
127
127
|
}
|
|
128
128
|
&::after {
|
|
129
|
-
content: url(${
|
|
129
|
+
content: url(${IconEditWhite});
|
|
130
130
|
height: 14px;
|
|
131
131
|
width: 14px;
|
|
132
132
|
display: inline-block;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import styled, { css } from 'styled-components';
|
|
2
2
|
import { formLabel, elipsis, thirdElipsis } from '../../assets/stylesheets/bases.styles';
|
|
3
3
|
|
|
4
|
-
import
|
|
4
|
+
import IconEditWhite from '../../assets/images/icons/edit-white.svg'
|
|
5
5
|
import IconLoadingRed from '../../assets/images/icons/loading-red.svg'
|
|
6
6
|
|
|
7
7
|
const divHeaderCell = css`
|
|
@@ -104,7 +104,7 @@ const commonCSSLists = css`
|
|
|
104
104
|
background-color: var(--ov-clr-bg);
|
|
105
105
|
}
|
|
106
106
|
&::after {
|
|
107
|
-
content: url(${
|
|
107
|
+
content: url(${IconEditWhite});
|
|
108
108
|
height: 14px
|
|
109
109
|
width: 14px;
|
|
110
110
|
display: inline-block;
|