@robuust-digital/vue-components 2.3.0 → 2.3.2-beta.454

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/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 2.3.2 (16-12-2025)
2
+
3
+ ### Fixed
4
+
5
+ * Fixed swapped `--rvc-base-focus-outline-width` and `--rvc-base-focus-outline-offset` CSS variables in focus utilities
6
+ * Fixed `FormSelect` disabled styling incorrectly applied when an option is disabled instead of the select element itself
7
+
8
+ ## 2.3.1 (10-11-2025)
9
+
10
+ ### Updated
11
+
12
+ * Updated dependencies
13
+
1
14
  ## 2.3.0 (31-10-2025)
2
15
 
3
16
  ### Changed
@@ -55,7 +55,7 @@
55
55
  }
56
56
  }
57
57
 
58
- &:has(:disabled) {
58
+ &:has(select:disabled) {
59
59
  opacity: var(--rvc-select-disabled-opacity);
60
60
  }
61
61
 
@@ -1,14 +1,14 @@
1
1
  @layer utilities {
2
2
  [class^="rvc-"] *:focus,
3
3
  [class^="rvc-"]:focus {
4
- outline: var(--rvc-base-focus-outline-color) var(--rvc-base-focus-outline-style) var(--rvc-base-focus-outline-offset);
5
- outline-offset: var(--rvc-base-focus-outline-width);
4
+ outline: var(--rvc-base-focus-outline-color) var(--rvc-base-focus-outline-style) var(--rvc-base-focus-outline-width);
5
+ outline-offset: var(--rvc-base-focus-outline-offset);
6
6
  }
7
7
  }
8
8
 
9
9
  @utility rvc-focus {
10
- outline: var(--rvc-base-focus-outline-color) var(--rvc-base-focus-outline-style) var(--rvc-base-focus-outline-offset);
11
- outline-offset: var(--rvc-base-focus-outline-width);
10
+ outline: var(--rvc-base-focus-outline-color) var(--rvc-base-focus-outline-style) var(--rvc-base-focus-outline-width);
11
+ outline-offset: var(--rvc-base-focus-outline-offset);
12
12
  }
13
13
 
14
14
  @utility rvc-sr-only {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robuust-digital/vue-components",
3
- "version": "2.3.0",
3
+ "version": "2.3.2-beta.454",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -87,18 +87,18 @@
87
87
  "@floating-ui/vue": "^1.1.9",
88
88
  "@headlessui/vue": "^1.7.23",
89
89
  "@heroicons/vue": "^2.2.0",
90
- "@tiptap/starter-kit": "^3.10.1",
91
- "@tiptap/vue-3": "^3.10.1",
90
+ "@tiptap/starter-kit": "^3.10.4",
91
+ "@tiptap/vue-3": "^3.10.4",
92
92
  "@vueuse/core": "^14.0.0",
93
- "vue": "^3.5.22"
93
+ "vue": "^3.5.24"
94
94
  },
95
95
  "devDependencies": {
96
96
  "@rushstack/eslint-patch": "^1.14.1",
97
- "@tailwindcss/postcss": "^4.1.16",
98
- "@tailwindcss/vite": "^4.1.16",
99
- "@types/node": "^24.9.2",
100
- "@typescript-eslint/eslint-plugin": "^8.46.2",
101
- "@typescript-eslint/parser": "^8.46.2",
97
+ "@tailwindcss/postcss": "^4.1.17",
98
+ "@tailwindcss/vite": "^4.1.17",
99
+ "@types/node": "^25.0.2",
100
+ "@typescript-eslint/eslint-plugin": "^8.46.3",
101
+ "@typescript-eslint/parser": "^8.46.3",
102
102
  "@vitejs/plugin-vue": "^6.0.1",
103
103
  "@vitest/coverage-v8": "^3.2.4",
104
104
  "@vue/eslint-config-airbnb-with-typescript": "^8.0.0",
@@ -112,9 +112,9 @@
112
112
  "stylelint": "^16.25.0",
113
113
  "stylelint-config-property-sort-order-smacss": "^10.0.0",
114
114
  "stylelint-config-standard": "^39.0.1",
115
- "tailwindcss": "^4.1.16",
115
+ "tailwindcss": "^4.1.17",
116
116
  "typescript": "^5.9.3",
117
- "vite": "^7.1.12",
117
+ "vite": "^7.2.2",
118
118
  "vite-plugin-dts": "^4.5.4",
119
119
  "vite-plugin-static-copy": "^3.1.4",
120
120
  "vite-plugin-vue-devtools": "^8.0.3",