@mundogamernetwork/shared-ui 1.1.81 → 1.1.82

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": "@mundogamernetwork/shared-ui",
3
- "version": "1.1.81",
3
+ "version": "1.1.82",
4
4
  "description": "Mundo Gamer Network - Shared UI Layer (Nuxt 3)",
5
5
  "type": "module",
6
6
  "main": "./nuxt.config.ts",
@@ -215,7 +215,7 @@ function goBack() {
215
215
  <label class="label">{{ $t("keys.campaigns.region") }}</label>
216
216
  <select v-model.number="selectedRegionId" class="select">
217
217
  <option :value="null" disabled>{{ $t("keys.campaigns.select_option") }}</option>
218
- <option v-for="r in regions" :key="r.id" :value="r.id">{{ r.name }}</option>
218
+ <option v-for="r in regions" :key="r.id" :value="r.id">{{ r.name || r.localized_name }}</option>
219
219
  </select>
220
220
  </div>
221
221
 
@@ -407,9 +407,9 @@ function goBack() {
407
407
 
408
408
  .select, .input, .textarea {
409
409
  width: 100%;
410
- background: var(--body-bg-card, var(--bg-app-badge));
411
- border: 1px solid var(--button-secondary-default-bg);
412
- color: var(--card-article-title);
410
+ background-color: transparent;
411
+ border: 1px solid rgba(128, 128, 128, 0.46);
412
+ color: var(--secondary-info-fg);
413
413
  font-size: 13px;
414
414
  padding: 10px 12px;
415
415
  outline: none;