comand-component-library 4.2.8 → 4.2.9
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
package/src/ComponentLibrary.vue
CHANGED
@@ -517,6 +517,7 @@
|
|
517
517
|
labelText="Selectbox with country flags:"
|
518
518
|
:status="validationStatus"
|
519
519
|
:disabled="disabledStatus"
|
520
|
+
pathFlags="https://comand-ui.com/samples/images/flags"
|
520
521
|
:selectData="fakeSelectCountriesData"
|
521
522
|
v-model="selectedCountryWithFlag"
|
522
523
|
defaultOptionName="Select country:"
|
@@ -1916,7 +1917,8 @@
|
|
1916
1917
|
<CmdWidthLimitationWrapper>
|
1917
1918
|
<h2 class="headline-demopage" id="section-switch-language">Switch Language</h2>
|
1918
1919
|
<CmdSwitchLanguage
|
1919
|
-
:
|
1920
|
+
:pathFlags="switchLanguage.pathFlags"
|
1921
|
+
:languages="switchLanguage.languages"
|
1920
1922
|
@click="updateLanguage"
|
1921
1923
|
/>
|
1922
1924
|
<p>Selected language: {{ selectedLanguage }} </p>
|
@@ -2236,7 +2238,7 @@ import inputGroupRadiobuttonsData from '@/assets/data/input-group-radiobuttons.j
|
|
2236
2238
|
import inputGroupReplacedRadiobuttonsData from '@/assets/data/input-group-replaced-radiobuttons.json'
|
2237
2239
|
import inputGroupToggleSwitchRadiobuttonsData from '@/assets/data/input-group-toggle-switch-radiobuttons.json'
|
2238
2240
|
import listOfLinksData from '@/assets/data/list-of-links.json'
|
2239
|
-
import
|
2241
|
+
import switchLanguage from '@/assets/data/switch-language.json'
|
2240
2242
|
import mailToolData from '@/assets/data/mail-tool.json'
|
2241
2243
|
import multistepsData from '@/assets/data/multistep-form-progress-bar.json'
|
2242
2244
|
import navigationData from '@/assets/data/main-navigation.json'
|
@@ -2430,7 +2432,7 @@ export default {
|
|
2430
2432
|
imageGalleryData,
|
2431
2433
|
inputGroupReplacedRadiobuttonsData,
|
2432
2434
|
inputGroupToggleSwitchRadiobuttonsData,
|
2433
|
-
|
2435
|
+
switchLanguage,
|
2434
2436
|
listOfLinksData,
|
2435
2437
|
multistepsData,
|
2436
2438
|
mailToolData,
|
@@ -2710,7 +2712,6 @@ export default {
|
|
2710
2712
|
"pathDarkmodeLogo": "/media/images/logos/logo-darkmode.svg",
|
2711
2713
|
"altText": "Company Logo"
|
2712
2714
|
}
|
2713
|
-
|
2714
2715
|
}
|
2715
2716
|
|
2716
2717
|
// change logo
|
@@ -1,29 +1,32 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
1
|
+
{
|
2
|
+
"pathFlags": "https://comand-ui.com/samples/images/flags",
|
3
|
+
"languages": [
|
4
|
+
{
|
5
|
+
"iso2": "de",
|
6
|
+
"name": "Deutsch",
|
7
|
+
"tooltip": "Sprache zu deutsch wechseln",
|
8
|
+
"link": {
|
9
|
+
"type": "href",
|
10
|
+
"path": "/"
|
11
|
+
}
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"iso2": "en",
|
15
|
+
"name": "English",
|
16
|
+
"tooltip": "Switch language to English",
|
17
|
+
"link": {
|
18
|
+
"type": "href",
|
19
|
+
"path": "/"
|
20
|
+
}
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"iso2": "es",
|
24
|
+
"name": "Español",
|
25
|
+
"tooltip": "cambiar el idioma a español",
|
26
|
+
"link": {
|
27
|
+
"type": "href",
|
28
|
+
"path": "/"
|
29
|
+
}
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
@@ -91,6 +91,12 @@ body.avoid-scrolling {
|
|
91
91
|
width: 3rem;
|
92
92
|
background-size: 100% 100%;
|
93
93
|
display: block;
|
94
|
+
aspect-ratio: 3/2;
|
95
|
+
}
|
96
|
+
|
97
|
+
a img.flag {
|
98
|
+
border: 0;
|
99
|
+
outline: var(--default-border);
|
94
100
|
}
|
95
101
|
|
96
102
|
/* end flags ----------------------------------------------------------------------------------------------------------------------------------------------------- */
|