wave-ui 3.21.0 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wave-ui",
3
- "version": "3.21.0",
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",
@@ -42,43 +42,31 @@
42
42
  "vue framework",
43
43
  "ui"
44
44
  ],
45
- "scripts": {
46
- "dev": "vite",
47
- "build": "vite build --base /wave-ui/",
48
- "build-types": "tsc -p ./tsconfig.json",
49
- "build-bundle": "BUNDLE=true vite build && npm run build-types",
50
- "preview": "vite preview --base /wave-ui/",
51
- "lint": "biome check .",
52
- "lint:fix": "biome check --apply .",
53
- "format": "biome format .",
54
- "format:fix": "biome format --write .",
55
- "publish-doc": "npm run build && npm run build-bundle && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag"
56
- },
57
45
  "devDependencies": {
58
- "@babel/core": "^7.26.10",
46
+ "@babel/core": "^7.27.4",
59
47
  "@biomejs/biome": "^1.9.4",
60
- "@faker-js/faker": "^9.7.0",
48
+ "@faker-js/faker": "^9.8.0",
61
49
  "@mdi/font": "^7.4.47",
62
50
  "@tsconfig/recommended": "^1.0.8",
63
- "@vitejs/plugin-vue": "^5.2.3",
51
+ "@vitejs/plugin-vue": "^5.2.4",
64
52
  "autoprefixer": "^10.4.21",
65
- "axios": "^1.8.4",
53
+ "axios": "^1.10.0",
66
54
  "font-awesome": "^4.7.0",
67
- "globals": "^16.0.0",
68
- "gsap": "^3.12.7",
55
+ "globals": "^16.2.0",
56
+ "gsap": "^3.13.0",
69
57
  "ionicons": "^4.6.3",
70
58
  "material-design-icons": "^3.0.1",
71
- "postcss": "^8.5.3",
59
+ "postcss": "^8.5.5",
72
60
  "pug": "^3.0.3",
73
61
  "rollup-plugin-delete": "^3.0.1",
74
- "sass": "^1.86.3",
62
+ "sass": "^1.89.2",
75
63
  "simple-syntax-highlighter": "^3.1.1",
76
- "splitpanes": "^4.0.3",
64
+ "splitpanes": "^4.0.4",
77
65
  "typescript": "^5.8.3",
78
- "vite": "^6.2.6",
66
+ "vite": "^6.3.5",
79
67
  "vite-svg-loader": "^5.1.0",
80
- "vue": "^3.5.13",
81
- "vue-router": "^4.5.0",
68
+ "vue": "^3.5.16",
69
+ "vue-router": "^4.5.1",
82
70
  "vueperslides": "^3.6.0",
83
71
  "vuex": "^4.1.0"
84
72
  },
@@ -88,5 +76,17 @@
88
76
  "engines": {
89
77
  "node": ">=16.0.0",
90
78
  "pnpm": ">=8.0.0"
79
+ },
80
+ "scripts": {
81
+ "dev": "vite",
82
+ "build": "vite build --base /wave-ui/",
83
+ "build-types": "tsc -p ./tsconfig.json",
84
+ "build-bundle": "BUNDLE=true vite build && npm run build-types",
85
+ "preview": "vite preview --base /wave-ui/",
86
+ "lint": "biome check .",
87
+ "lint:fix": "biome check --apply .",
88
+ "format": "biome format .",
89
+ "format:fix": "biome format --write .",
90
+ "publish-doc": "npm run build && npm run build-bundle && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag"
91
91
  }
92
- }
92
+ }
@@ -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) 8%, transparent);
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
 
@@ -6,6 +6,7 @@
6
6
  :root {
7
7
  --w-base-increment: #{$base-increment};
8
8
  --w-css-scope: #{$css-scope};
9
+ --w-contrast-bg-o025-color: #{color-mix(in srgb, var(--w-contrast-bg-color) 2.5%, transparent)};
9
10
  --w-contrast-bg-o05-color: #{color-mix(in srgb, var(--w-contrast-bg-color) 5%, transparent)};
10
11
  --w-contrast-bg-o1-color: #{color-mix(in srgb, var(--w-contrast-bg-color) 10%, transparent)};
11
12
  --w-contrast-bg-o2-color: #{color-mix(in srgb, var(--w-contrast-bg-color) 20%, transparent)};
@@ -127,6 +127,8 @@
127
127
  .contrast-color {color: color-mix(in srgb, var(--w-contrast-color) 75%, transparent);}
128
128
  .contrast-color--bg {background-color: var(--w-contrast-bg-color);}
129
129
 
130
+ .contrast-o025 {color: var(--w-contrast-bg-o025-color);}
131
+ .contrast-o025--bg {background-color: var(--w-contrast-bg-o025-color);}
130
132
  .contrast-o05 {color: var(--w-contrast-bg-o05-color);}
131
133
  .contrast-o05--bg {background-color: var(--w-contrast-bg-o05-color);}
132
134
  @for $i from 1 through 9 {