@adminforth/i18n 1.0.18 → 1.0.19

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.
@@ -24,7 +24,8 @@
24
24
  text-black dark:text-darkSidebarTextHover
25
25
  bg-black bg-opacity-10
26
26
  hover:brightness-110
27
- hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrasts
27
+ hover:text-lightPrimary dark:hover:text-darkPrimary
28
+ hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrast
28
29
  w-full text-select-none pl-5 select-none"
29
30
  v-for="option in options.filter((opt) => opt.value !== selectedOption.value)"
30
31
  @click="doChangeLang(option.value)"
@@ -1,6 +1,7 @@
1
1
  <template>
2
2
  <p class="text-gray-500 dark:text-gray-400 font-sm text-left mt-3 flex items-center justify-center">
3
3
  <Select
4
+ class="w-full"
4
5
  v-model="selectedLanguage"
5
6
  :options="options"
6
7
  :placeholder="$t('Select language')"
@@ -24,7 +24,8 @@
24
24
  text-black dark:text-darkSidebarTextHover
25
25
  bg-black bg-opacity-10
26
26
  hover:brightness-110
27
- hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrasts
27
+ hover:text-lightPrimary dark:hover:text-darkPrimary
28
+ hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrast
28
29
  w-full text-select-none pl-5 select-none"
29
30
  v-for="option in options.filter((opt) => opt.value !== selectedOption.value)"
30
31
  @click="doChangeLang(option.value)"
@@ -1,6 +1,7 @@
1
1
  <template>
2
2
  <p class="text-gray-500 dark:text-gray-400 font-sm text-left mt-3 flex items-center justify-center">
3
3
  <Select
4
+ class="w-full"
4
5
  v-model="selectedLanguage"
5
6
  :options="options"
6
7
  :placeholder="$t('Select language')"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adminforth/i18n",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",