comand-component-library 4.0.18 → 4.0.19

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <form class="cmd-form" :data-use-validation="useValidation" @submit="onSubmit" :class="{error: errorOccurred}" :novalidate="novalidate">
2
+ <form class="cmd-form" :action="formAction" :data-use-validation="useValidation" @submit="onSubmit" :class="{error: errorOccurred}" :novalidate="novalidate">
3
3
  <template v-if="useFieldset">
4
4
  <fieldset class="flex-container">
5
5
  <legend :class="{hidden : !showLegend}">{{ textLegend }}</legend>
@@ -73,6 +73,13 @@ export default {
73
73
  }
74
74
  },
75
75
  props: {
76
+ /**
77
+ * set url for form-action
78
+ */
79
+ formAction: {
80
+ type: String,
81
+ required: false
82
+ },
76
83
  /**
77
84
  * activate if form-elements should be given by slot
78
85
  */
@@ -153,10 +160,11 @@ export default {
153
160
  submitFormData(event) {
154
161
  // fill formdata with names and value
155
162
  let formdata = {}
156
- this.formElements.forEach((element) => {
157
- formdata[element.name] = this.formValues[element.name]
158
- })
159
-
163
+ if(this.formElements) {
164
+ this.formElements.forEach((element) => {
165
+ formdata[element.name] = this.formValues[element.name]
166
+ })
167
+ }
160
168
  this.$emit("submit", {originalEvent: event, formdata: formdata})
161
169
  },
162
170
  onSubmit(event) {
@@ -473,6 +473,10 @@ export default {
473
473
  background: var(--pure-white-reduced-opacity);
474
474
  }
475
475
  }
476
+
477
+ .fade-enter-from, .fade-leave-to {
478
+ position: absolute;
479
+ }
476
480
  }
477
481
 
478
482
  .edit-mode .cmd-slideshow .image-wrapper.edit-items {
package/src/index.js CHANGED
@@ -2,6 +2,7 @@
2
2
  export { default as CmdAddressData } from '@/components/CmdAddressData.vue'
3
3
  export { default as CmdBackToTopButton } from '@/components/CmdBackToTopButton.vue'
4
4
  export { default as CmdBankAccountData } from '@/components/CmdBankAccountData.vue'
5
+ export { default as CmdBasicForm } from '@/components/CmdBasicForm.vue'
5
6
  export { default as CmdBox } from '@/components/CmdBox.vue'
6
7
  export { default as CmdBoxWrapper } from '@/components/CmdBoxWrapper.vue'
7
8
  export { default as CmdBreadcrumbs } from '@/components/CmdBreadcrumbs.vue'
@@ -51,7 +52,6 @@ export { default as CmdWidthLimitationWrapper } from '@/components/CmdWidthLimit
51
52
  export { default as EditComponentWrapper } from '@/components/EditComponentWrapper.vue'
52
53
 
53
54
  // export page-components
54
- export { default as BasicForm } from '@/components/CmdBasicForm.vue'
55
55
  export { default as ContactInformation } from '@/pages/ContactInformation.vue'
56
56
  export { default as MultipleBoxWrapper } from '@/pages/MultipleBoxWrapper.vue'
57
57
  export { default as MultipleListsOfLinks } from '@/pages/MultipleListsOfLinks.vue'
@@ -24,8 +24,8 @@ export default {
24
24
  "basic_form.labeltext.country": "Country:",
25
25
  "basic_form.labeltext.additional_address_info": "Additional address information:",
26
26
  "basic_form.placeholder.additional_address_info": "Additional address information",
27
- "basic_form.labeltext.additional_text": "Additional text:",
28
- "basic_form.placeholder.additional_text": "Additional text",
27
+ "basic_form.labeltext.user_message": "Your message:",
28
+ "basic_form.placeholder.user_message": "Your message",
29
29
  "basic_form.labeltext.data_privacy": "I accept handling and saving of my personal data a mentioned in the <a href='/content/data-privacy-en.html' class='fancybox'>private policy</a>."
30
30
  }
31
31
  }
@@ -0,0 +1,45 @@
1
+ // noinspection CommaExpressionJS
2
+ class ContactFormValidator {
3
+ static PATTERN_SURNAME = /^[a-züöäßáéíóàèìòêîô '-]+$/i
4
+ static PATTERN_EMAIL = /^[a-z\d._%+-]+@[a-z\d._%+-]+\.[a-z]{2,}$/i
5
+ static PATTERN_MESSAGE = /^.{2,500}$/
6
+
7
+ label
8
+
9
+ constructor(label) {
10
+ this.label = label
11
+ }
12
+
13
+ validate(formData) {
14
+ [formData.lastName.error, formData.lastName.errorMessage] = this.validateRequired(
15
+ formData.lastName.value, ContactFormValidator.PATTERN_SURNAME, this.label('form_error_invalid_surname'))
16
+ [formData.email.error, formData.email.errorMessage] = this.validateRequired(
17
+ formData.email.value, ContactFormValidator.PATTERN_EMAIL, this.label('form_error_invalid_email'))
18
+ [formData.additionalText.error, formData.additionalText.errorMessage] = this.validateRequired(
19
+ formData.additionalText.value, ContactFormValidator.PATTERN_MESSAGE, this.label('form_error_invalid_message'))
20
+ formData.acceptPrivacy.error = false
21
+ formData.error = formData.lastName.error
22
+ || formData.email.error
23
+ || formData.additionalText.error
24
+ return formData
25
+ }
26
+
27
+ validatePrivacy(formData) {
28
+ formData.acceptPrivacy.error = !formData.acceptPrivacy.value
29
+ formData.acceptPrivacy.errorMessage = formData.acceptPrivacy.error ? this.label('form_error_missing_privacy_consent') : ''
30
+ formData.error = formData.error || formData.acceptPrivacy.error
31
+ return formData
32
+ }
33
+
34
+ validateRequired(value, pattern, errorMessage) {
35
+ if (!value || value.trim().length === 0) {
36
+ return [true, this.label('form_error_empty')]
37
+ }
38
+ if (pattern && !pattern.test(value)) {
39
+ return [true, errorMessage || this.label('form_error_invalid')]
40
+ }
41
+ return [false, '']
42
+ }
43
+ }
44
+
45
+ export { ContactFormValidator }
@@ -1,26 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.395px" height="566.929px" viewBox="0 0 850.395 566.929" enable-background="new 0 0 850.395 566.929"
6
- xml:space="preserve">
7
- <symbol id="Stern" viewBox="-80.297 -76.367 160.595 152.734">
8
- <polygon fill="#FFDE08" points="0,76.367 20.678,20.397 80.298,18.027 33.457,-18.934 49.627,-76.367 0,-43.241 -49.626,-76.367
9
- -33.457,-18.934 -80.297,18.027 -20.677,20.397 "/>
10
- </symbol>
11
- <g id="cn">
12
- <g>
13
- <rect fill="#DF2B14" width="850.395" height="566.929"/>
14
-
15
- <use xlink:href="#Stern" width="160.595" height="152.734" x="-80.297" y="-76.367" transform="matrix(1 0 0 -1 141.4941 133.5356)" overflow="visible"/>
16
-
17
- <use xlink:href="#Stern" width="160.595" height="152.734" x="-80.297" y="-76.367" transform="matrix(0.318 0.1158 0.1158 -0.318 282.7402 57.1685)" overflow="visible"/>
18
-
19
- <use xlink:href="#Stern" width="160.595" height="152.734" x="-80.297" y="-76.367" transform="matrix(0.318 -0.1158 -0.1158 -0.318 341.1777 115.0728)" overflow="visible"/>
20
-
21
- <use xlink:href="#Stern" width="160.595" height="152.734" x="-80.297" y="-76.367" transform="matrix(0.318 0.1158 0.1158 -0.318 284.2407 256.6177)" overflow="visible"/>
22
-
23
- <use xlink:href="#Stern" width="160.595" height="152.734" x="-80.297" y="-76.367" transform="matrix(0.3384 0 0 -0.3384 340.73 194.541)" overflow="visible"/>
24
- </g>
25
- </g>
26
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="566.929px" viewBox="0 0 850.394 566.929" enable-background="new 0 0 850.394 566.929"
6
- xml:space="preserve">
7
- <g id="it">
8
- <g>
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de">
15
- <g>
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.953"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.976"/>
20
- </g>
21
- </g>
22
- <g id="fr" display="none">
23
- <g display="inline">
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru" display="none">
30
- <g display="inline">
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.977"/>
34
- </g>
35
- </g>
36
- <g id="cn" display="none">
37
- <g display="inline">
38
- <rect x="0.901" fill="#DF2B14" width="849.493" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z"/>
54
- </g>
55
- </g>
56
- </g>
57
- <g id="uk" display="none">
58
- <g display="inline">
59
- <rect y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
60
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.948 382.569,339.948 382.569,566.863 467.592,566.863
61
- 467.592,339.948 850.16,339.948 850.16,226.625 467.592,226.625 467.592,0 "/>
62
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
63
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.368 "/>
64
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.368 "/>
65
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
66
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
67
- <polygon fill="#25346C" points="645.768,188.95 850.16,188.95 850.16,52.699 "/>
68
- <polygon fill="#25346C" points="645.768,377.913 850.16,514.171 850.16,377.913 "/>
69
- <polygon fill="#25346C" points="0,377.913 0,514.171 204.392,377.913 "/>
70
- <polygon fill="#CF172C" points="802.938,0 520.004,188.95 567.223,188.95 850.605,0 "/>
71
- <polygon fill="#CF172C" points="330.156,377.909 282.937,377.909 0,566.852 47.219,566.852 330.602,377.909 "/>
72
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
73
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.239 613.92,377.832 "/>
74
- </g>
75
- </g>
76
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="566.929px" viewBox="0 0 850.394 566.929" enable-background="new 0 0 850.394 566.929"
6
- xml:space="preserve">
7
- <g id="it">
8
- <g>
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de">
15
- <g>
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.953"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.976"/>
20
- </g>
21
- </g>
22
- <g id="fr">
23
- <g>
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru">
30
- <g>
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.977"/>
34
- </g>
35
- </g>
36
- <g id="cn">
37
- <g>
38
- <rect x="0.901" fill="#DF2B14" width="849.493" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z"/>
54
- </g>
55
- </g>
56
- </g>
57
- <g id="uk">
58
- <g>
59
- <rect y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
60
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.948 382.569,339.948 382.569,566.863 467.592,566.863
61
- 467.592,339.948 850.16,339.948 850.16,226.625 467.592,226.625 467.592,0 "/>
62
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
63
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.368 "/>
64
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.368 "/>
65
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
66
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
67
- <polygon fill="#25346C" points="645.768,188.95 850.16,188.95 850.16,52.699 "/>
68
- <polygon fill="#25346C" points="645.768,377.913 850.16,514.171 850.16,377.913 "/>
69
- <polygon fill="#25346C" points="0,377.913 0,514.171 204.392,377.913 "/>
70
- <polygon fill="#CF172C" points="802.938,0 520.004,188.95 567.223,188.95 850.605,0 "/>
71
- <polygon fill="#CF172C" points="330.156,377.909 282.937,377.909 0,566.852 47.219,566.852 330.602,377.909 "/>
72
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
73
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.239 613.92,377.832 "/>
74
- </g>
75
- </g>
76
- </svg>
@@ -1,83 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.395px" height="566.929px" viewBox="0 0 850.395 566.929" enable-background="new 0 0 850.395 566.929"
6
- xml:space="preserve">
7
- <g id="it" display="none">
8
- <g display="inline">
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de" display="none">
15
- <g display="inline">
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.952"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.977"/>
20
- </g>
21
- </g>
22
- <g id="fr" display="none">
23
- <g display="inline">
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru" display="none">
30
- <g display="inline">
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.978"/>
34
- </g>
35
- </g>
36
- <g id="cn" display="none">
37
- <g display="inline">
38
- <rect x="0.901" fill="#DF2B14" width="849.494" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.706l-42.412,33.236l14.796-51.844l18.47,50.649l-44.682-30.108L367.298,188.706z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.594l-2.499,53.861l-29.603-45.046l50.397,19.024l-51.942,14.265L294.056,228.594z
54
- "/>
55
- </g>
56
- </g>
57
- </g>
58
- <g id="uk" display="none">
59
- <g display="inline">
60
- <rect x="0" y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
61
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.949 382.569,339.949 382.569,566.863 467.592,566.863
62
- 467.592,339.949 850.16,339.949 850.16,226.625 467.592,226.625 467.592,0 "/>
63
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
64
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.369 "/>
65
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.369 "/>
66
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
67
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
68
- <polygon fill="#25346C" points="645.767,188.95 850.16,188.95 850.16,52.699 "/>
69
- <polygon fill="#25346C" points="645.767,377.914 850.16,514.172 850.16,377.914 "/>
70
- <polygon fill="#25346C" points="0,377.914 0,514.172 204.392,377.914 "/>
71
- <polygon fill="#CF172C" points="802.937,0 520.004,188.95 567.223,188.95 850.605,0 "/>
72
- <polygon fill="#CF172C" points="330.156,377.91 282.937,377.91 0,566.851 47.219,566.851 330.602,377.91 "/>
73
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
74
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.24 613.92,377.832 "/>
75
- </g>
76
- </g>
77
- <g id="es">
78
- <g>
79
- <rect x="1" y="0" fill="#C61620" width="848.394" height="566.929"/>
80
- <rect x="1" y="141.732" fill="#FDC30B" width="848.394" height="283.465"/>
81
- </g>
82
- </g>
83
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="566.929px" viewBox="0 0 850.394 566.929" enable-background="new 0 0 850.394 566.929"
6
- xml:space="preserve">
7
- <g id="it">
8
- <g>
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de">
15
- <g>
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.953"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.976"/>
20
- </g>
21
- </g>
22
- <g id="fr">
23
- <g>
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru" display="none">
30
- <g display="inline">
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.977"/>
34
- </g>
35
- </g>
36
- <g id="cn" display="none">
37
- <g display="inline">
38
- <rect x="0.901" fill="#DF2B14" width="849.493" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z"/>
54
- </g>
55
- </g>
56
- </g>
57
- <g id="uk" display="none">
58
- <g display="inline">
59
- <rect y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
60
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.948 382.569,339.948 382.569,566.863 467.592,566.863
61
- 467.592,339.948 850.16,339.948 850.16,226.625 467.592,226.625 467.592,0 "/>
62
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
63
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.368 "/>
64
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.368 "/>
65
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
66
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
67
- <polygon fill="#25346C" points="645.768,188.95 850.16,188.95 850.16,52.699 "/>
68
- <polygon fill="#25346C" points="645.768,377.913 850.16,514.171 850.16,377.913 "/>
69
- <polygon fill="#25346C" points="0,377.913 0,514.171 204.392,377.913 "/>
70
- <polygon fill="#CF172C" points="802.938,0 520.004,188.95 567.223,188.95 850.605,0 "/>
71
- <polygon fill="#CF172C" points="330.156,377.909 282.937,377.909 0,566.852 47.219,566.852 330.602,377.909 "/>
72
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
73
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.239 613.92,377.832 "/>
74
- </g>
75
- </g>
76
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="566.929px" viewBox="0 0 850.394 566.929" enable-background="new 0 0 850.394 566.929"
6
- xml:space="preserve">
7
- <g id="it">
8
- <g>
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de" display="none">
15
- <g display="inline">
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.953"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.976"/>
20
- </g>
21
- </g>
22
- <g id="fr" display="none">
23
- <g display="inline">
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru" display="none">
30
- <g display="inline">
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.977"/>
34
- </g>
35
- </g>
36
- <g id="cn" display="none">
37
- <g display="inline">
38
- <rect x="0.901" fill="#DF2B14" width="849.493" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z"/>
54
- </g>
55
- </g>
56
- </g>
57
- <g id="uk" display="none">
58
- <g display="inline">
59
- <rect y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
60
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.948 382.569,339.948 382.569,566.863 467.592,566.863
61
- 467.592,339.948 850.16,339.948 850.16,226.625 467.592,226.625 467.592,0 "/>
62
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
63
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.368 "/>
64
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.368 "/>
65
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
66
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
67
- <polygon fill="#25346C" points="645.768,188.95 850.16,188.95 850.16,52.699 "/>
68
- <polygon fill="#25346C" points="645.768,377.913 850.16,514.171 850.16,377.913 "/>
69
- <polygon fill="#25346C" points="0,377.913 0,514.171 204.392,377.913 "/>
70
- <polygon fill="#CF172C" points="802.938,0 520.004,188.95 567.223,188.95 850.605,0 "/>
71
- <polygon fill="#CF172C" points="330.156,377.909 282.937,377.909 0,566.852 47.219,566.852 330.602,377.909 "/>
72
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
73
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.239 613.92,377.832 "/>
74
- </g>
75
- </g>
76
- </svg>
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
4
- <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
5
- width="850.394px" height="566.929px" viewBox="0 0 850.394 566.929" enable-background="new 0 0 850.394 566.929"
6
- xml:space="preserve">
7
- <g id="it">
8
- <g>
9
- <rect fill="#078E46" width="283.465" height="566.929"/>
10
- <rect x="283.465" fill="#FBFDFF" width="283.465" height="566.929"/>
11
- <rect x="566.93" fill="#D3242C" width="283.465" height="566.929"/>
12
- </g>
13
- </g>
14
- <g id="de">
15
- <g>
16
- <desc>Flag of Germany</desc>
17
- <rect id="black_stripe" x="0.901" fill="#010202" width="849.492" height="566.929"/>
18
- <rect id="red_stripe" x="0.901" y="188.977" fill="#DD0B15" width="849.492" height="377.953"/>
19
- <rect id="gold_stripe" x="0.901" y="377.953" fill="#FFCE05" width="849.492" height="188.976"/>
20
- </g>
21
- </g>
22
- <g id="fr">
23
- <g>
24
- <rect x="0.901" fill="#CF1327" width="849.492" height="566.929"/>
25
- <rect x="0.901" fill="#FFFFFF" width="566.328" height="566.929"/>
26
- <rect x="0.901" fill="#1D2C4E" width="283.164" height="566.929"/>
27
- </g>
28
- </g>
29
- <g id="ru">
30
- <g>
31
- <rect fill="#FFFFFF" width="850.395" height="283.465"/>
32
- <rect y="283.465" fill="#D52D1E" width="850.395" height="283.464"/>
33
- <rect y="188.977" fill="#1E4295" width="850.395" height="188.977"/>
34
- </g>
35
- </g>
36
- <g id="cn" display="none">
37
- <g display="inline">
38
- <rect x="0.901" fill="#DF2B14" width="849.493" height="566.929"/>
39
- <g transform="translate(5,5) scale(3)">
40
- <path id="s" fill="#FFDE08" d="M142.483,56.693l49.932,153.838L61.692,115.454h161.583L92.551,210.531L142.483,56.693z"/>
41
- </g>
42
- <g transform="translate(10,2) rotate(23.036243)">
43
- <path id="s_1_" fill="#FFDE08" d="M295.146,30.607l-4.728,53.71l-27.711-46.234l49.566,21.099l-52.488,12.096L295.146,30.607z"/>
44
- </g>
45
- <g transform="translate(12,4) rotate(45.869898)">
46
- <path id="s_2_" fill="#FFDE08" d="M361.022,93.648l-25.178,47.665l-7.617-53.376l37.503,38.701l-53.064-9.243L361.022,93.648z"/>
47
- </g>
48
- <g transform="translate(12,7) rotate(69.945396)">
49
- <path id="s_3_" fill="#FFDE08" d="M367.298,188.705l-42.412,33.236l14.797-51.844l18.47,50.649l-44.682-30.108L367.298,188.705z"
50
- />
51
- </g>
52
- <g transform="translate(10,9) rotate(20.659808)">
53
- <path id="s_4_" fill="#FFDE08" d="M294.056,228.595l-2.5,53.86l-29.603-45.045l50.397,19.024l-51.942,14.264L294.056,228.595z"/>
54
- </g>
55
- </g>
56
- </g>
57
- <g id="uk" display="none">
58
- <g display="inline">
59
- <rect y="0.002" fill="#FFFFFF" width="850.16" height="566.865"/>
60
- <polygon fill="#CF172C" points="382.569,0 382.569,226.625 0,226.625 0,339.948 382.569,339.948 382.569,566.863 467.592,566.863
61
- 467.592,339.948 850.16,339.948 850.16,226.625 467.592,226.625 467.592,0 "/>
62
- <polygon fill="#25346C" points="495.946,0 495.946,183.497 771.202,0 "/>
63
- <polygon fill="#25346C" points="495.946,566.863 771.202,566.863 495.946,383.368 "/>
64
- <polygon fill="#25346C" points="78.96,566.863 354.214,566.863 354.214,383.368 "/>
65
- <polygon fill="#25346C" points="78.96,0 354.214,183.497 354.214,0 "/>
66
- <polygon fill="#25346C" points="0.003,188.95 204.392,188.95 0.003,52.699 "/>
67
- <polygon fill="#25346C" points="645.768,188.95 850.16,188.95 850.16,52.699 "/>
68
- <polygon fill="#25346C" points="645.768,377.913 850.16,514.171 850.16,377.913 "/>
69
- <polygon fill="#25346C" points="0,377.913 0,514.171 204.392,377.913 "/>
70
- <polygon fill="#CF172C" points="802.938,0 520.004,188.95 567.223,188.95 850.605,0 "/>
71
- <polygon fill="#CF172C" points="330.156,377.909 282.937,377.909 0,566.852 47.219,566.852 330.602,377.909 "/>
72
- <polygon fill="#CF172C" points="0,0 0,31.692 236.091,189.098 283.311,189.098 "/>
73
- <polygon fill="#CF172C" points="566.696,377.832 850.008,566.929 850.01,535.239 613.92,377.832 "/>
74
- </g>
75
- </g>
76
- </svg>