@stonecrop/atable 0.8.4 → 0.8.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/dist/assets/index.css +1 -1
- package/dist/atable.js +1 -1
- package/dist/atable.js.map +1 -1
- package/dist/atable.umd.cjs +2 -2
- package/dist/atable.umd.cjs.map +1 -1
- package/package.json +3 -3
- package/src/components/ARow.vue +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stonecrop/atable",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
"@vueuse/core": "^14.2.1",
|
|
43
43
|
"pinia": "^3.0.4",
|
|
44
44
|
"vue": "^3.5.28",
|
|
45
|
-
"@stonecrop/themes": "0.8.
|
|
46
|
-
"@stonecrop/utilities": "0.8.
|
|
45
|
+
"@stonecrop/themes": "0.8.6",
|
|
46
|
+
"@stonecrop/utilities": "0.8.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@eslint/js": "^9.39.2",
|
package/src/components/ARow.vue
CHANGED
|
@@ -7,8 +7,7 @@
|
|
|
7
7
|
:store="store"
|
|
8
8
|
:config="rowActionsConfig"
|
|
9
9
|
:position="actionsPosition"
|
|
10
|
-
@action="onRowAction"
|
|
11
|
-
/>
|
|
10
|
+
@action="onRowAction" />
|
|
12
11
|
|
|
13
12
|
<!-- render numbered/tree view index; skip render for uncounted lists -->
|
|
14
13
|
<slot v-if="store.config.view !== 'uncounted'" name="index">
|
|
@@ -124,10 +123,18 @@ if (addNavigation) {
|
|
|
124
123
|
background-color: white;
|
|
125
124
|
}
|
|
126
125
|
|
|
126
|
+
.atable-row:last-child > td {
|
|
127
|
+
border-bottom: 1px solid var(--sc-row-border-color);
|
|
128
|
+
}
|
|
129
|
+
|
|
127
130
|
.atable-row > td:first-child {
|
|
128
131
|
border-left: 4px solid var(--sc-row-border-color);
|
|
129
132
|
}
|
|
130
133
|
|
|
134
|
+
.atable-row > td:last-child {
|
|
135
|
+
border-right: 1px solid var(--sc-row-border-color);
|
|
136
|
+
}
|
|
137
|
+
|
|
131
138
|
.list-index {
|
|
132
139
|
color: var(--sc-header-text-color);
|
|
133
140
|
font-weight: bold;
|