bfg-common 1.5.213 → 1.5.214
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.
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
:description="description"
|
|
6
6
|
:radio-options="radioOptions"
|
|
7
7
|
:language-mode="languageMode"
|
|
8
|
-
:locales="
|
|
8
|
+
:locales="locales"
|
|
9
9
|
@update-language="onSelectLang"
|
|
10
10
|
@update-is-browser="onUpdateIsBrowser"
|
|
11
11
|
/>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
:description="description"
|
|
16
16
|
:radio-options="radioOptions"
|
|
17
17
|
:language-mode="languageMode"
|
|
18
|
-
:locales="
|
|
18
|
+
:locales="locales"
|
|
19
19
|
@update-language="onSelectLang"
|
|
20
20
|
@update-is-browser="onUpdateIsBrowser"
|
|
21
21
|
/>
|
|
@@ -109,5 +109,5 @@ watch(
|
|
|
109
109
|
)
|
|
110
110
|
|
|
111
111
|
// TODO remove
|
|
112
|
-
const localsLocal = ref<any>(locales.filter((_, i) => i > 0))
|
|
112
|
+
// const localsLocal = ref<any>(locales.filter((_, i) => i > 0))
|
|
113
113
|
</script>
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { UI_I_Dropdown } from '~/node_modules/bfg-uikit/components/ui/dropdown/models/interfaces'
|
|
2
2
|
|
|
3
3
|
export const locales: UI_I_Dropdown[] = [
|
|
4
|
-
{
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
},
|
|
4
|
+
// {
|
|
5
|
+
// text: 'AR',
|
|
6
|
+
// value: 'ar_SA',
|
|
7
|
+
// iconName: 'ar-flag',
|
|
8
|
+
// disabled: true
|
|
9
|
+
// },
|
|
10
10
|
{
|
|
11
11
|
text: 'RU',
|
|
12
12
|
value: 'ru_RU',
|