comand-component-library 4.2.7 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "4.2.7",
3
+ "version": "4.2.9",
4
4
  "license": "GPL-3.0-only",
5
5
  "author": "CoManD-UI",
6
6
  "private": false,
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "clickout-event": "^1.1.2",
32
- "comand-frontend-framework": "^4.2.10",
32
+ "comand-frontend-framework": "^4.2.11",
33
33
  "comand-ui-iconfonts": "^1.0.19",
34
34
  "core-js": "^3.20.1",
35
35
  "prismjs": "^1.27.0",
@@ -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
- :languages="languagesData"
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 languagesData from '@/assets/data/switch-language.json'
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
- languagesData,
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,20 +1,32 @@
1
- [
2
- {
3
- "iso2": "de",
4
- "name": "Deutsch",
5
- "tooltip": "Sprache zu deutsch wechseln",
6
- "link": {
7
- "type": "href",
8
- "path": "/"
9
- }
10
- },
11
- {
12
- "iso2": "en",
13
- "name": "English",
14
- "tooltip": "Switch language to English",
15
- "link": {
16
- "type": "href",
17
- "path": "/"
18
- }
19
- }
20
- ]
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 ----------------------------------------------------------------------------------------------------------------------------------------------------- */
@@ -8,7 +8,7 @@
8
8
  :class="['flag', language.iso2, {'active': activeLanguage(language.iso2)}]"
9
9
  :title="language.tooltip"
10
10
  @click.prevent="changeLanguage(language.iso2, $event)">
11
- <img :src="imageSources[index]" :alt="language.name" />
11
+ <img :src="pathFlag(language.iso2)" :alt="language.name" />
12
12
  </a>
13
13
 
14
14
  <!-- end link-type 'href' -->
@@ -19,7 +19,7 @@
19
19
  :class="['flag', language.iso2]"
20
20
  :title="language.tooltip"
21
21
  @click.prevent="changeLanguage(language.iso2, $event)">
22
- <img :src="imageSources[index]" :alt="language.name" />
22
+ <img :src="pathFlag(language.iso2)" :alt="language.name" />
23
23
  </router-link>
24
24
  <!-- end link-type 'router' -->
25
25
  </li>
@@ -48,6 +48,13 @@ export default {
48
48
  languages: {
49
49
  type: Array,
50
50
  required: true
51
+ },
52
+ /**
53
+ * path to flag-files (will be combined with flag isoCode to load svg)
54
+ */
55
+ pathFlags: {
56
+ type: String,
57
+ default: "/media/images/flags"
51
58
  }
52
59
  },
53
60
  mounted() {
@@ -65,6 +72,9 @@ export default {
65
72
  activeLanguage(iso2) {
66
73
  return this.currentLanguage === iso2
67
74
  },
75
+ pathFlag(isoCode) {
76
+ return this.pathFlags + "/flag-" + isoCode + ".svg"
77
+ },
68
78
  changeLanguage(iso2, event) {
69
79
  // set selected language as current language (in data-property)
70
80
  this.currentLanguage = iso2
@@ -75,31 +85,6 @@ export default {
75
85
  // emit original event
76
86
  this.$emit("click", { originalEvent: event, iso2} )
77
87
  }
78
- },
79
- watch: {
80
- languages: {
81
- handler() {
82
- this.imageSources = []
83
- this.languages.forEach(
84
- async (item) => {
85
- // get iso-code
86
- const isoCode = item.iso2
87
-
88
- // get path of current flag
89
- // const path = "../assets/images/flags/flag-" + isoCode + ".svg"
90
-
91
- // assign value of imported file (returns object with default-key)
92
- // const { default: dynamicImage } = await import(/* @vite-ignore */ path)
93
-
94
- // push image to data-property-array
95
- // this.imageSources.push(dynamicImage)
96
- this.imageSources.push(flags[isoCode].default)
97
- }
98
- )
99
- },
100
- immediate: true,
101
- deep: true
102
- }
103
88
  }
104
89
  }
105
90
  </script>