wave-ui 3.21.1 → 3.22.0
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/wave-ui.cjs.js +1 -1
- package/dist/wave-ui.css +1 -1
- package/dist/wave-ui.es.js +261 -266
- package/dist/wave-ui.umd.js +1 -1
- package/package.json +13 -13
- package/src/wave-ui/components/w-table.vue +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wave-ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.22.0",
|
|
4
4
|
"description": "A UI framework for Vue.js 3 (and 2) with only the bright side. :sunny:",
|
|
5
5
|
"author": "Antoni Andre <antoniandre.web@gmail.com>",
|
|
6
6
|
"homepage": "https://antoniandre.github.io/wave-ui",
|
|
@@ -43,30 +43,30 @@
|
|
|
43
43
|
"ui"
|
|
44
44
|
],
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@babel/core": "^7.
|
|
46
|
+
"@babel/core": "^7.27.4",
|
|
47
47
|
"@biomejs/biome": "^1.9.4",
|
|
48
|
-
"@faker-js/faker": "^9.
|
|
48
|
+
"@faker-js/faker": "^9.8.0",
|
|
49
49
|
"@mdi/font": "^7.4.47",
|
|
50
50
|
"@tsconfig/recommended": "^1.0.8",
|
|
51
|
-
"@vitejs/plugin-vue": "^5.2.
|
|
51
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
52
52
|
"autoprefixer": "^10.4.21",
|
|
53
|
-
"axios": "^1.
|
|
53
|
+
"axios": "^1.10.0",
|
|
54
54
|
"font-awesome": "^4.7.0",
|
|
55
|
-
"globals": "^16.
|
|
56
|
-
"gsap": "^3.
|
|
55
|
+
"globals": "^16.2.0",
|
|
56
|
+
"gsap": "^3.13.0",
|
|
57
57
|
"ionicons": "^4.6.3",
|
|
58
58
|
"material-design-icons": "^3.0.1",
|
|
59
|
-
"postcss": "^8.5.
|
|
59
|
+
"postcss": "^8.5.5",
|
|
60
60
|
"pug": "^3.0.3",
|
|
61
61
|
"rollup-plugin-delete": "^3.0.1",
|
|
62
|
-
"sass": "^1.
|
|
62
|
+
"sass": "^1.89.2",
|
|
63
63
|
"simple-syntax-highlighter": "^3.1.1",
|
|
64
|
-
"splitpanes": "^4.0.
|
|
64
|
+
"splitpanes": "^4.0.4",
|
|
65
65
|
"typescript": "^5.8.3",
|
|
66
|
-
"vite": "^6.
|
|
66
|
+
"vite": "^6.3.5",
|
|
67
67
|
"vite-svg-loader": "^5.1.0",
|
|
68
|
-
"vue": "^3.5.
|
|
69
|
-
"vue-router": "^4.5.
|
|
68
|
+
"vue": "^3.5.16",
|
|
69
|
+
"vue-router": "^4.5.1",
|
|
70
70
|
"vueperslides": "^3.6.0",
|
|
71
71
|
"vuex": "^4.1.0"
|
|
72
72
|
},
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
tr.w-table__row(
|
|
74
74
|
v-else
|
|
75
75
|
@click="doSelectRow(item, i)"
|
|
76
|
-
:class="{ 'w-table__row--selected': selectedRowsByUid[item._uid] !== undefined, 'w-table__row--expanded': expandedRowsByUid[item._uid] !== undefined }")
|
|
76
|
+
:class="{ 'w-table__row--selected': selectedRowsByUid[item._uid] !== undefined, 'w-table__row--expanded': expandedRowsByUid[item._uid] !== undefined, [item.class]: item.class }")
|
|
77
77
|
template(v-for="(header, j) in headers")
|
|
78
78
|
td.w-table__cell(
|
|
79
79
|
v-if="$slots[`item-cell.${header.key}`] || $slots[`item-cell.${j + 1}`] || $slots['item-cell']"
|
|
@@ -806,7 +806,7 @@ $tr-border-top: 1px;
|
|
|
806
806
|
// Sorting arrow.
|
|
807
807
|
&__header--sortable {cursor: pointer;}
|
|
808
808
|
&__header-sort {
|
|
809
|
-
color: color-mix(in srgb, var(--w-base-color)
|
|
809
|
+
color: color-mix(in srgb, var(--w-base-color) 50%, transparent);
|
|
810
810
|
vertical-align: text-bottom;
|
|
811
811
|
@include default-transition;
|
|
812
812
|
|