mediacube-ui 0.1.173 → 0.1.174

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.174](https://github.com/MediaCubeCo/mcui/compare/v0.1.173...v0.1.174) (2023-11-22)
6
+
5
7
  ### [0.1.173](https://github.com/MediaCubeCo/mcui/compare/v0.1.172...v0.1.173) (2023-11-20)
6
8
 
7
9
  ### [0.1.172](https://github.com/MediaCubeCo/mcui/compare/v0.1.171...v0.1.172) (2023-11-17)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mediacube-ui",
3
- "version": "0.1.173",
3
+ "version": "0.1.174",
4
4
  "description": "Design system for Mediacube services",
5
5
  "author": "Mediacube",
6
6
  "private": false,
@@ -602,6 +602,10 @@ export default {
602
602
  value = value?.toLowerCase()
603
603
  e.target.value = value
604
604
  break
605
+ case 'password':
606
+ value = value?.replace(' ', '')
607
+ e.target.value = value
608
+ break
605
609
  }
606
610
 
607
611
  this.handleInput(value)
@@ -48,7 +48,7 @@
48
48
  <mc-title color="outline-gray">{{ placeholders.loading }}</mc-title>
49
49
  </div>
50
50
  </div>
51
- <mc-overlay v-if="overlayLoading" size="700" />
51
+ <mc-overlay v-if="overlayLoading" />
52
52
  </div>
53
53
  </template>
54
54