@eturnity/eturnity_reusable_components 1.0.80 → 1.0.84
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,11 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<dropdown-row
|
|
3
|
-
:
|
|
4
|
-
@click="toggleOpen"
|
|
5
|
-
ref="dropdownItem"
|
|
6
|
-
class="table-dropdown"
|
|
7
|
-
>
|
|
8
|
-
<component-container :colSpan="colSpan">
|
|
2
|
+
<dropdown-row :colspan="colSpan" @click="toggleOpen" ref="dropdownItem">
|
|
3
|
+
<component-container :colSpan="colSpan" class="table-dropdown">
|
|
9
4
|
<component-item v-for="(item, index) in tableItems" :key="index">
|
|
10
5
|
<template-button
|
|
11
6
|
@click.stop="onTemplateClick(item.row)"
|
|
@@ -241,6 +241,10 @@ const TableContainer = styled.table`
|
|
|
241
241
|
visibility: visible;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
+
.drag-wrapper {
|
|
245
|
+
background-color: ${(props) => props.theme.colors.grey5};
|
|
246
|
+
}
|
|
247
|
+
|
|
244
248
|
.arrow-dropdown {
|
|
245
249
|
visibility: visible;
|
|
246
250
|
}
|
|
@@ -248,8 +252,18 @@ const TableContainer = styled.table`
|
|
|
248
252
|
|
|
249
253
|
.drag-container {
|
|
250
254
|
display: table-cell;
|
|
251
|
-
width:
|
|
252
|
-
|
|
255
|
+
width: 20px;
|
|
256
|
+
min-width: 20px;
|
|
257
|
+
height: 40px;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.drag-wrapper {
|
|
261
|
+
width: 16px;
|
|
262
|
+
height: 36px;
|
|
263
|
+
display: grid;
|
|
264
|
+
align-items: center;
|
|
265
|
+
justify-items: center;
|
|
266
|
+
border-radius: 4px;
|
|
253
267
|
}
|
|
254
268
|
|
|
255
269
|
.drag-icon {
|
|
@@ -297,7 +311,11 @@ const TableContainer = styled.table`
|
|
|
297
311
|
input {
|
|
298
312
|
font-size: 13px;
|
|
299
313
|
padding: 5px 10px;
|
|
300
|
-
background: #fff
|
|
314
|
+
background: #fff;
|
|
315
|
+
|
|
316
|
+
&:focus {
|
|
317
|
+
background: ${(props) => props.theme.colors.grey5};
|
|
318
|
+
}
|
|
301
319
|
}
|
|
302
320
|
|
|
303
321
|
.open-container {
|