mediacube-ui 0.1.357 → 0.1.358

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.358](https://github.com/MediaCubeCo/mcui/compare/v0.1.357...v0.1.358) (2025-01-31)
6
+
5
7
  ### [0.1.357](https://github.com/MediaCubeCo/mcui/compare/v0.1.356...v0.1.357) (2025-01-17)
6
8
 
7
9
  ### [0.1.356](https://github.com/MediaCubeCo/mcui/compare/v0.1.355...v0.1.356) (2025-01-17)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.357",
3
+ "version": "0.1.358",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -438,7 +438,14 @@ export default {
438
438
  }
439
439
  },
440
440
  isEmptyOptions() {
441
- return this.isEmptyOptionsList || this.loading || this.computedOptions?.length === this._value?.length
441
+ let options = this.computedOptions
442
+ if (this.groupKeys) {
443
+ options = []
444
+ for (let option of this.computedOptions) {
445
+ options.push(...option[this.groupKeys.values])
446
+ }
447
+ }
448
+ return this.isEmptyOptionsList || this.loading || options?.length === this._value?.length
442
449
  },
443
450
  computedTitle() {
444
451
  return `${this.title}${this.required ? ' *' : ''}`