@eturnity/eturnity_reusable_components 6.43.8 → 6.43.9
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": "@eturnity/eturnity_reusable_components",
|
3
|
-
"version": "6.43.
|
3
|
+
"version": "6.43.9",
|
4
4
|
"private": false,
|
5
5
|
"scripts": {
|
6
6
|
"dev": "vue-cli-service serve",
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"vue-styled-components": "1.6.0",
|
19
19
|
"vue2-datepicker": "3.11.1",
|
20
20
|
"vuedraggable": "2.24.3",
|
21
|
-
"core-js": "3.31.1"
|
21
|
+
"core-js": "^3.31.1"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
24
|
"@storybook/addon-actions": "6.2.8",
|
@@ -88,7 +88,10 @@ export default {
|
|
88
88
|
required: false
|
89
89
|
},
|
90
90
|
backgroundColor: {
|
91
|
-
required: false
|
91
|
+
required: false,
|
92
|
+
},
|
93
|
+
hasBorder: {
|
94
|
+
required: false,
|
92
95
|
},
|
93
96
|
hoveredBackgroundColor: {
|
94
97
|
required: false,
|
@@ -110,9 +113,13 @@ export default {
|
|
110
113
|
required: false,
|
111
114
|
default: '6px'
|
112
115
|
},
|
113
|
-
isHovered:
|
114
|
-
required:
|
115
|
-
default:
|
116
|
+
isHovered:{
|
117
|
+
required:false,
|
118
|
+
default:false
|
119
|
+
},
|
120
|
+
isStriked:{
|
121
|
+
required:false,
|
122
|
+
default:false
|
116
123
|
}
|
117
124
|
},
|
118
125
|
data() {
|
@@ -205,17 +205,11 @@ const selectButton = styled('div', selectButtonAttrs)`
|
|
205
205
|
padding: ${(props) => (props.isSearchBarVisible ? '0' : '0px 0px 0 15px')};
|
206
206
|
text-align: left;
|
207
207
|
border-radius: 4px;
|
208
|
-
min-height: ${(props) =>
|
209
|
-
props.selectHeight
|
210
|
-
? props.selectHeight
|
211
|
-
: props.selectMinHeight
|
212
|
-
? props.selectMinHeight
|
213
|
-
: props.height
|
214
|
-
? props.height
|
215
|
-
: '36px'};
|
208
|
+
min-height: ${(props) => props.selectMinHeight};
|
216
209
|
display: flex;
|
217
210
|
align-items: center;
|
218
211
|
max-height: ${(props) => props.selectHeight};
|
212
|
+
${(props) => (props.height ? `height: ${props.height}` : '')};
|
219
213
|
${({ showBorder, theme, hasError }) =>
|
220
214
|
showBorder &&
|
221
215
|
`
|