@adminforth/i18n 1.5.0 → 1.6.0
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/build.log
CHANGED
|
@@ -17,5 +17,5 @@ custom/package-lock.json
|
|
|
17
17
|
custom/package.json
|
|
18
18
|
custom/tsconfig.json
|
|
19
19
|
|
|
20
|
-
sent
|
|
21
|
-
total size is 32,
|
|
20
|
+
sent 33,187 bytes received 248 bytes 66,870.00 bytes/sec
|
|
21
|
+
total size is 32,254 speedup is 0.96
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="min-w-40">
|
|
3
|
-
<div class="cursor-pointer flex items-center justify-between gap-1 block px-4 py-2 text-sm
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<div class="cursor-pointer flex items-center justify-between gap-1 block px-4 py-2 text-sm
|
|
4
|
+
bg-lightUserMenuItemBackground hover:bg-lightUserMenuItemBackgroundHover text-lightUserMenuItemText
|
|
5
|
+
hover:text-lightUserMenuItemText dark:bg-darkUserMenuItemBackground dark:hover:bg-darkUserMenuItemBackgroundHover
|
|
6
|
+
dark:text-darkUserMenuItemText dark:hover:darkUserMenuItemTextHover w-full select-none"
|
|
6
7
|
:class="{ 'bg-black bg-opacity-10 ': showDropdown }"
|
|
7
8
|
@click="showDropdown = !showDropdown"
|
|
8
9
|
>
|
|
@@ -22,11 +23,9 @@
|
|
|
22
23
|
<div v-if="showDropdown" >
|
|
23
24
|
|
|
24
25
|
<div class="cursor-pointer flex items-center gap-1 block px-4 py-1 text-sm
|
|
25
|
-
|
|
26
|
-
bg-
|
|
27
|
-
hover:
|
|
28
|
-
hover:text-lightPrimary dark:hover:text-darkPrimary
|
|
29
|
-
hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrast
|
|
26
|
+
bg-lightUserMenuItemBackground hover:bg-lightUserMenuItemBackgroundHover text-lightUserMenuItemText
|
|
27
|
+
hover:text-lightUserMenuItemText dark:bg-darkUserMenuItemBackground dark:hover:bg-darkUserMenuItemBackgroundHover
|
|
28
|
+
dark:text-darkUserMenuItemText dark:hover:darkUserMenuItemTextHover
|
|
30
29
|
w-full text-select-none pl-5 select-none"
|
|
31
30
|
v-for="option in options.filter((opt) => opt.value !== selectedOption.value)"
|
|
32
31
|
@click="doChangeLang(option.value)"
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="min-w-40">
|
|
3
|
-
<div class="cursor-pointer flex items-center justify-between gap-1 block px-4 py-2 text-sm
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
<div class="cursor-pointer flex items-center justify-between gap-1 block px-4 py-2 text-sm
|
|
4
|
+
bg-lightUserMenuItemBackground hover:bg-lightUserMenuItemBackgroundHover text-lightUserMenuItemText
|
|
5
|
+
hover:text-lightUserMenuItemText dark:bg-darkUserMenuItemBackground dark:hover:bg-darkUserMenuItemBackgroundHover
|
|
6
|
+
dark:text-darkUserMenuItemText dark:hover:darkUserMenuItemTextHover w-full select-none"
|
|
6
7
|
:class="{ 'bg-black bg-opacity-10 ': showDropdown }"
|
|
7
8
|
@click="showDropdown = !showDropdown"
|
|
8
9
|
>
|
|
@@ -22,11 +23,9 @@
|
|
|
22
23
|
<div v-if="showDropdown" >
|
|
23
24
|
|
|
24
25
|
<div class="cursor-pointer flex items-center gap-1 block px-4 py-1 text-sm
|
|
25
|
-
|
|
26
|
-
bg-
|
|
27
|
-
hover:
|
|
28
|
-
hover:text-lightPrimary dark:hover:text-darkPrimary
|
|
29
|
-
hover:bg-lightPrimaryContrast dark:hover:bg-darkPrimaryContrast
|
|
26
|
+
bg-lightUserMenuItemBackground hover:bg-lightUserMenuItemBackgroundHover text-lightUserMenuItemText
|
|
27
|
+
hover:text-lightUserMenuItemText dark:bg-darkUserMenuItemBackground dark:hover:bg-darkUserMenuItemBackgroundHover
|
|
28
|
+
dark:text-darkUserMenuItemText dark:hover:darkUserMenuItemTextHover
|
|
30
29
|
w-full text-select-none pl-5 select-none"
|
|
31
30
|
v-for="option in options.filter((opt) => opt.value !== selectedOption.value)"
|
|
32
31
|
@click="doChangeLang(option.value)"
|