@everchron/ec-shards 1.0.1 → 1.1.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/dist/ec-shards.common.js +2409 -3456
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +2409 -3456
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/dist/img/load-file-annotations.a86b6944.svg +1 -0
- package/dist/img/load-file-designation-report.43313733.svg +1 -0
- package/dist/img/load-file-designation.c1a22daa.svg +1 -0
- package/dist/img/load-file-zip.a8320034.svg +1 -0
- package/dist/img/overlay-files.7cb16b90.svg +1 -0
- package/dist/img/overlay-metadata.b1df7d12.svg +1 -0
- package/package.json +1 -1
- package/src/assets/icons/add-plus.svg +4 -1
- package/src/assets/images/.DS_Store +0 -0
- package/src/assets/images/selectable-tiles-illustrations/load-file-annotations.svg +1 -0
- package/src/assets/images/selectable-tiles-illustrations/load-file-designation-report.svg +1 -0
- package/src/assets/images/selectable-tiles-illustrations/load-file-designation.svg +1 -0
- package/src/assets/images/selectable-tiles-illustrations/load-file-zip.svg +1 -0
- package/src/assets/images/selectable-tiles-illustrations/overlay-files.svg +1 -0
- package/src/assets/images/selectable-tiles-illustrations/overlay-metadata.svg +1 -0
- package/src/components/button/button.vue +86 -11
- package/src/components/button-group/button-group.vue +14 -0
- package/src/components/folder-selector/folder-selector.vue +1 -1
- package/src/components/index.js +4 -0
- package/src/components/quicklink/quicklink.vue +6 -1
- package/src/components/select-tile/select-tile.vue +181 -0
- package/src/components/switch/switch.vue +16 -12
- package/src/components/tab-button/tab-button.vue +1 -1
- package/src/stories/Changelog.stories.mdx +26 -1
- package/src/stories/alert/alert.stories.js +1 -1
- package/src/stories/button/button.stories.js +52 -2
- package/src/stories/quicklink/quicklink.stories.js +1 -1
- package/src/stories/select-tile/select-tile.stories.js +23 -0
- package/dist/img/AU.9205653f.svg +0 -1
- package/dist/img/BG.9506e13e.svg +0 -1
- package/dist/img/CA.4da04f2c.svg +0 -9
- package/dist/img/CN.e2b8cf40.svg +0 -1
- package/dist/img/DE.2fcda83b.svg +0 -10
- package/dist/img/DK.a9e77ebe.svg +0 -1
- package/dist/img/EE.423bded8.svg +0 -1
- package/dist/img/EG.0c65de90.svg +0 -1
- package/dist/img/ES.cda88cd3.svg +0 -1
- package/dist/img/FR.a8bc55ba.svg +0 -10
- package/dist/img/GB-UKM.9428a8a2.svg +0 -1
- package/dist/img/GR.555f9322.svg +0 -1
- package/dist/img/IL.91b56ce7.svg +0 -1
- package/dist/img/IR.40b1f5af.svg +0 -1
- package/dist/img/IT.cfe26ab1.svg +0 -10
- package/dist/img/JP.83dedc60.svg +0 -1
- package/dist/img/KR.a58d1d1e.svg +0 -12
- package/dist/img/LT.f088061e.svg +0 -1
- package/dist/img/LV.607c6e8b.svg +0 -10
- package/dist/img/NL.c8609ee4.svg +0 -1
- package/dist/img/NO.5d5520cb.svg +0 -1
- package/dist/img/PL.c15515c3.svg +0 -1
- package/dist/img/PT.752e100c.svg +0 -1
- package/dist/img/RO.c92cdf40.svg +0 -10
- package/dist/img/RU.f68a7fa0.svg +0 -1
- package/dist/img/SE.ddf8b0d4.svg +0 -1
- package/dist/img/TR.871875cf.svg +0 -1
- package/dist/img/UNKNOWN.650d7b26.svg +0 -1
- package/dist/img/US.aa68dcfd.svg +0 -11
- package/dist/img/facebook.158a9f0c.svg +0 -1
- package/dist/img/github.9f1f8912.svg +0 -1
- package/dist/img/instagram.346b934c.svg +0 -1
- package/dist/img/linkedin.85d3b508.svg +0 -1
- package/dist/img/medium.a193ac64.svg +0 -1
- package/dist/img/pinterest.33945b18.svg +0 -1
- package/dist/img/quora.356e730b.svg +0 -1
- package/dist/img/reddit.9fe44776.svg +0 -1
- package/dist/img/tiktok.37d6f196.svg +0 -1
- package/dist/img/tumblr.531811f6.svg +0 -1
- package/dist/img/twitter.8d154e7c.svg +0 -1
- package/dist/img/vimeo.659a1277.svg +0 -1
- package/dist/img/vkontakte.e63189ed.svg +0 -1
- package/dist/img/weibo.95cfd9b9.svg +0 -1
- package/dist/img/xing.56cccbe3.svg +0 -1
- package/dist/img/youtube.85cf81c7.svg +0 -1
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div @click="$emit('click', $event)" class="ecs-select-tile"
|
|
3
|
+
:class="[selected ? 'ecs-select-tile-selected' : '', disabled ? 'ecs-select-tile-disabled' : '']">
|
|
4
|
+
|
|
5
|
+
<div class="select-check" />
|
|
6
|
+
<div v-if="illustration" class="illustration" :class="illustration" />
|
|
7
|
+
<div v-if="label" class="label">{{ label }}</div>
|
|
8
|
+
<div v-if="helpText" class="help">{{ helpText }}</div>
|
|
9
|
+
</div>
|
|
10
|
+
</template>
|
|
11
|
+
|
|
12
|
+
<script>
|
|
13
|
+
export default {
|
|
14
|
+
props: {
|
|
15
|
+
/** The main label for the tile. */
|
|
16
|
+
label: {
|
|
17
|
+
type: String,
|
|
18
|
+
required: true
|
|
19
|
+
},
|
|
20
|
+
/** Additional line of text underneath the label, which can be used to add further explanations and infos. */
|
|
21
|
+
helpText: {
|
|
22
|
+
type: String
|
|
23
|
+
},
|
|
24
|
+
/** The type of illustration that should be shown within the tile. */
|
|
25
|
+
illustration: {
|
|
26
|
+
type: String,
|
|
27
|
+
validator: v => [
|
|
28
|
+
'load-file-annotations',
|
|
29
|
+
'load-file-designation-report',
|
|
30
|
+
'load-file-designation',
|
|
31
|
+
'load-file-zip',
|
|
32
|
+
'overlay-files',
|
|
33
|
+
'overlay-metadata',
|
|
34
|
+
null
|
|
35
|
+
].includes(v),
|
|
36
|
+
},
|
|
37
|
+
/** Determines the selection state of the tile. */
|
|
38
|
+
selected: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default: false
|
|
41
|
+
},
|
|
42
|
+
/** Disables the tile. */
|
|
43
|
+
disabled: {
|
|
44
|
+
type: Boolean,
|
|
45
|
+
default: false
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
</script>
|
|
50
|
+
|
|
51
|
+
<style lang="scss" scoped>
|
|
52
|
+
@import "../../tokens/build/scss/tokens.scss";
|
|
53
|
+
@import "../mixins/svg-uri";
|
|
54
|
+
|
|
55
|
+
.ecs-select-tile{
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-direction: column;
|
|
58
|
+
justify-content: center;
|
|
59
|
+
align-items: center;
|
|
60
|
+
padding: 32px 24px;
|
|
61
|
+
min-width: 240px;
|
|
62
|
+
background: #FFFFFF;
|
|
63
|
+
box-shadow: 0px 0px 0px 1px rgba(71, 75, 96, 0.05), 0px 1px 4px rgba(71, 75, 96, 0.1);
|
|
64
|
+
border-radius: 8px;
|
|
65
|
+
border: 1px solid #FFF;
|
|
66
|
+
cursor: pointer;
|
|
67
|
+
text-align: center;
|
|
68
|
+
transition: .2s;
|
|
69
|
+
position: relative;
|
|
70
|
+
|
|
71
|
+
&:hover{
|
|
72
|
+
box-shadow: 0px 0px 0px 1px rgba(71, 75, 96, 0.05), 0px 2px 4px rgba(71, 75, 96, 0.15);
|
|
73
|
+
transform: translateY(-4px);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.label{
|
|
77
|
+
font-weight: 500;
|
|
78
|
+
font-size: 14px;
|
|
79
|
+
line-height: 20px;
|
|
80
|
+
color: #202127;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.help{
|
|
84
|
+
font-size: 12px;
|
|
85
|
+
line-height: 16px;
|
|
86
|
+
color: #75798F;
|
|
87
|
+
margin-top: 8px;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.select-check{
|
|
91
|
+
background: #0B71EB;
|
|
92
|
+
border-radius: 100%;
|
|
93
|
+
position: absolute;
|
|
94
|
+
opacity: 0;
|
|
95
|
+
transition: .2s;
|
|
96
|
+
top: 8px;
|
|
97
|
+
left: 8px;
|
|
98
|
+
width: 18px;
|
|
99
|
+
height: 18px;
|
|
100
|
+
display: flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
justify-content: center;
|
|
103
|
+
|
|
104
|
+
&:before{
|
|
105
|
+
opacity: 0;
|
|
106
|
+
transform: rotate(-15deg) scale(.7);
|
|
107
|
+
transition: .4s;
|
|
108
|
+
width: 8px;
|
|
109
|
+
height: 8px;
|
|
110
|
+
content: "";
|
|
111
|
+
background-image: svg-uri('<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 4.259L3.347 6.998L7 1" stroke="white" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/></svg>');
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&-selected{
|
|
116
|
+
background: #F4F9FF;
|
|
117
|
+
border: 1px solid #A7CFFF;
|
|
118
|
+
box-shadow: none;
|
|
119
|
+
|
|
120
|
+
.select-check{
|
|
121
|
+
opacity: 1;
|
|
122
|
+
|
|
123
|
+
&:before{
|
|
124
|
+
opacity: 1;
|
|
125
|
+
transform: rotate(0) scale(1);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&:hover{
|
|
130
|
+
box-shadow: none;
|
|
131
|
+
transform: translateY(0);
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
&-disabled{
|
|
136
|
+
background: #F9FAFC;
|
|
137
|
+
border: 1px solid #ECEDF2;
|
|
138
|
+
box-shadow: none;
|
|
139
|
+
pointer-events: none;
|
|
140
|
+
|
|
141
|
+
.label{
|
|
142
|
+
color: #65687A;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.help{
|
|
146
|
+
color: #929AA9;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.illustration{
|
|
152
|
+
width: 140px;
|
|
153
|
+
height: 140px;
|
|
154
|
+
background-position: center center;
|
|
155
|
+
margin-bottom: 16px;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.load-file-annotations{
|
|
159
|
+
background: url('../../assets/images/selectable-tiles-illustrations/load-file-annotations.svg');
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.load-file-designation-report{
|
|
163
|
+
background: url('../../assets/images/selectable-tiles-illustrations/load-file-designation-report.svg');
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.load-file-designation{
|
|
167
|
+
background: url('../../assets/images/selectable-tiles-illustrations/load-file-designation.svg');
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.load-file-zip{
|
|
171
|
+
background: url('../../assets/images/selectable-tiles-illustrations/load-file-zip.svg');
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.overlay-files{
|
|
175
|
+
background: url('../../assets/images/selectable-tiles-illustrations/overlay-files.svg');
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.overlay-metadata{
|
|
179
|
+
background: url('../../assets/images/selectable-tiles-illustrations/overlay-metadata.svg');
|
|
180
|
+
}
|
|
181
|
+
</style>
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="ecs-switch-wrapper"
|
|
2
|
+
<div class="ecs-switch-wrapper">
|
|
3
3
|
<label class="ecs-switch"
|
|
4
4
|
:class="[
|
|
5
5
|
sizeClass,
|
|
6
|
-
hasDefaultSlot ? `ecs-switch-has-label` : ''
|
|
6
|
+
hasDefaultSlot ? `ecs-switch-has-label` : '',
|
|
7
|
+
disabled ? `disabled` : ''
|
|
7
8
|
]">
|
|
8
9
|
<input
|
|
9
10
|
type="checkbox"
|
|
@@ -140,10 +141,10 @@
|
|
|
140
141
|
&-wrapper{
|
|
141
142
|
display: flex;
|
|
142
143
|
align-items: center;
|
|
144
|
+
}
|
|
143
145
|
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
}
|
|
146
|
+
&.disabled{
|
|
147
|
+
opacity: .5;
|
|
147
148
|
}
|
|
148
149
|
|
|
149
150
|
input[type=checkbox] {
|
|
@@ -151,11 +152,13 @@
|
|
|
151
152
|
}
|
|
152
153
|
|
|
153
154
|
&-has-label{
|
|
154
|
-
margin:
|
|
155
|
+
margin: $spacing-5 $spacing-15 $spacing-5 0;
|
|
155
156
|
|
|
156
157
|
+ label{
|
|
157
|
-
margin:
|
|
158
|
-
line-height:
|
|
158
|
+
margin: $spacing-5 0;
|
|
159
|
+
line-height: $spacing-30;
|
|
160
|
+
font-size: $type-scale-3-font-size;
|
|
161
|
+
line-height: $type-scale-3-line-height;
|
|
159
162
|
display: flex;
|
|
160
163
|
align-items: center;
|
|
161
164
|
}
|
|
@@ -182,10 +185,11 @@
|
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
&.ecs-switch-has-label{
|
|
185
|
-
margin:
|
|
188
|
+
margin: $spacing-5 $spacing-10 $spacing-5 0;
|
|
186
189
|
|
|
187
190
|
+ label{
|
|
188
|
-
|
|
191
|
+
font-size: $type-scale-2-font-size;
|
|
192
|
+
line-height: $type-scale-2-line-height;
|
|
189
193
|
}
|
|
190
194
|
}
|
|
191
195
|
}
|
|
@@ -210,8 +214,8 @@
|
|
|
210
214
|
transform: translate3d(21px,0,0);
|
|
211
215
|
}
|
|
212
216
|
|
|
213
|
-
&.ecs-switch-has-label
|
|
214
|
-
|
|
217
|
+
&.ecs-switch-has-label{
|
|
218
|
+
margin: $spacing-5 + 1 $spacing-15 $spacing-5 + 1 0;
|
|
215
219
|
}
|
|
216
220
|
}
|
|
217
221
|
}
|
|
@@ -6,7 +6,32 @@ import { Meta } from '@storybook/addon-docs/blocks';
|
|
|
6
6
|
Changelog
|
|
7
7
|
</h1>
|
|
8
8
|
|
|
9
|
-
## Version 1.0.
|
|
9
|
+
## Version 1.0.3 (21 August 2022)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- Added new `addon` prop for EcsButton, which renders a small dropdown addition.
|
|
14
|
+
- Added new EcsButtonGroup component to create groups of regular Buttons, as well as dropdown addons.
|
|
15
|
+
|
|
16
|
+
### Fixes
|
|
17
|
+
|
|
18
|
+
- Fixed positioning of stickers on column EcsTabButton variant
|
|
19
|
+
|
|
20
|
+
## Version 1.0.2 (16 August 2022)
|
|
21
|
+
|
|
22
|
+
### Fixes
|
|
23
|
+
|
|
24
|
+
- EcsSwitch sizes to match input heights
|
|
25
|
+
- Replaced old add icon with new add icon
|
|
26
|
+
- EcsButton type `create` icons are now white instead of dark green
|
|
27
|
+
|
|
28
|
+
## Version 1.0.1 (19 August 2022)
|
|
29
|
+
|
|
30
|
+
### Fixes
|
|
31
|
+
|
|
32
|
+
- Changed standard EcsTabButton font scale to 3.
|
|
33
|
+
|
|
34
|
+
## Version 1.0.0 (16 August 2022)
|
|
10
35
|
|
|
11
36
|
### Features
|
|
12
37
|
|
|
@@ -28,7 +28,7 @@ export const headline = () => ({
|
|
|
28
28
|
|
|
29
29
|
export const actions = () => ({
|
|
30
30
|
components: { EcsAlert },
|
|
31
|
-
template: `<ecs-alert type="warning" dismissable action="Review" @action="">
|
|
31
|
+
template: `<ecs-alert type="warning" dismissable action-label="Review" @action="">
|
|
32
32
|
<p>This is a warning alert with a primary action — check it out!</p>
|
|
33
33
|
<ul>
|
|
34
34
|
<li>This is the first bullet point</li>
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import EcsButton from '@components/button/button';
|
|
2
|
+
import EcsButtonGroup from '@components/button-group/button-group';
|
|
2
3
|
import { action } from '@storybook/addon-actions';
|
|
3
4
|
|
|
4
5
|
export default {
|
|
@@ -33,13 +34,31 @@ export const sizes = () => ({
|
|
|
33
34
|
export const withIcon = () => ({
|
|
34
35
|
components: { EcsButton },
|
|
35
36
|
methods: { action: action('clicked') },
|
|
36
|
-
template: `<
|
|
37
|
+
template: `<main>
|
|
38
|
+
<ecs-button @click="action" icon="add-plus" type="primary">Create</ecs-button>
|
|
39
|
+
<ecs-button @click="action" icon="add-plus" type="secondary">Create</ecs-button>
|
|
40
|
+
<ecs-button @click="action" icon="add-plus" type="danger">Create</ecs-button>
|
|
41
|
+
<ecs-button @click="action" icon="add-plus" type="danger-vibrant">Create</ecs-button>
|
|
42
|
+
<ecs-button @click="action" icon="add-plus" type="warning">Create</ecs-button>
|
|
43
|
+
<ecs-button @click="action" icon="add-plus" type="create">Create</ecs-button>
|
|
44
|
+
<ecs-button @click="action" icon="add-plus" type="vibrant">Create</ecs-button>
|
|
45
|
+
</main>`,
|
|
37
46
|
});
|
|
38
47
|
|
|
39
48
|
export const iconOnly = () => ({
|
|
40
49
|
components: { EcsButton },
|
|
41
50
|
methods: { action: action('clicked') },
|
|
42
|
-
template:
|
|
51
|
+
template: `
|
|
52
|
+
<main>
|
|
53
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="primary"></ecs-button>
|
|
54
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="secondary"></ecs-button>
|
|
55
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="danger"></ecs-button>
|
|
56
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="danger-vibrant"></ecs-button>
|
|
57
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="warning"></ecs-button>
|
|
58
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="create"></ecs-button>
|
|
59
|
+
<ecs-button @click="action" icon-only icon="add-plus" type="vibrant"></ecs-button>
|
|
60
|
+
</main>
|
|
61
|
+
`,
|
|
43
62
|
});
|
|
44
63
|
|
|
45
64
|
export const active = () => ({
|
|
@@ -58,3 +77,34 @@ export const fullWidth = () => ({
|
|
|
58
77
|
methods: { action: action('clicked') },
|
|
59
78
|
template: `<ecs-button @click="action" full-width type="vibrant">Block button</ecs-button>`,
|
|
60
79
|
});
|
|
80
|
+
|
|
81
|
+
export const grouped = () => ({
|
|
82
|
+
components: { EcsButton, EcsButtonGroup },
|
|
83
|
+
methods: { action: action('clicked') },
|
|
84
|
+
template: `<ecs-button-group>
|
|
85
|
+
<ecs-button @click="action" type="create">First</ecs-button>
|
|
86
|
+
<ecs-button @click="action" type="create">Middle</ecs-button>
|
|
87
|
+
<ecs-button @click="action" type="create">Last</ecs-button>
|
|
88
|
+
</ecs-button-group>`,
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
export const addons = () => ({
|
|
92
|
+
components: { EcsButton, EcsButtonGroup },
|
|
93
|
+
methods: { action: action('clicked') },
|
|
94
|
+
template: `
|
|
95
|
+
<main>
|
|
96
|
+
<ecs-button-group>
|
|
97
|
+
<ecs-button @click="action" type="create" size="sml">Small</ecs-button>
|
|
98
|
+
<ecs-button @click="action" type="create" size="sml" addon />
|
|
99
|
+
</ecs-button-group>
|
|
100
|
+
<ecs-button-group>
|
|
101
|
+
<ecs-button @click="action" type="create">Medium</ecs-button>
|
|
102
|
+
<ecs-button @click="action" type="create" addon />
|
|
103
|
+
</ecs-button-group>
|
|
104
|
+
<ecs-button-group>
|
|
105
|
+
<ecs-button @click="action" type="create" size="lg">Large</ecs-button>
|
|
106
|
+
<ecs-button @click="action" type="create" size="lg" addon />
|
|
107
|
+
</ecs-button-group>
|
|
108
|
+
</main>
|
|
109
|
+
`,
|
|
110
|
+
});
|
|
@@ -27,5 +27,5 @@ export const quicklinkFavorability = () => ({
|
|
|
27
27
|
|
|
28
28
|
export const quicklinkThreeWaySwitch = () => ({
|
|
29
29
|
components: { EcsQuicklink },
|
|
30
|
-
template: `<ecs-quicklink type="switch" label="Filter" :count="12" />`,
|
|
30
|
+
template: `<ecs-quicklink type="switch" label="Filter" :value="true" :valueToggle="true" :count="12" />`,
|
|
31
31
|
});
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import EcsSelectTile from '@components/select-tile/select-tile';
|
|
2
|
+
|
|
3
|
+
export default {
|
|
4
|
+
title: 'Input/Select Tile',
|
|
5
|
+
component: EcsSelectTile
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
export const selectTile = () => ({
|
|
9
|
+
components: { EcsSelectTile },
|
|
10
|
+
data() {
|
|
11
|
+
return {
|
|
12
|
+
selectedTile: null
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
template: `
|
|
16
|
+
<main>
|
|
17
|
+
<ecs-select-tile @click="selectedTile = 1" :selected="selectedTile == 1" label="Designation Load File Import" help-text="CSV or XLS Load File" illustration="load-file-designation" />
|
|
18
|
+
<ecs-select-tile @click="selectedTile = 2" :selected="selectedTile == 2" label="Designation Report Import" help-text="XLS Report" illustration="load-file-designation-report" />
|
|
19
|
+
<ecs-select-tile @click="selectedTile = 3" disabled :selected="selectedTile == 3" label="Designation Report Import" help-text="XLS Report" illustration="load-file-designation-report" />
|
|
20
|
+
</main>
|
|
21
|
+
`,
|
|
22
|
+
});
|
|
23
|
+
|
package/dist/img/AU.9205653f.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="9" maskUnits="userSpaceOnUse" width="11" x="0" y="0"><path d="m0 0h11v9h-11z" fill="#fff"/></mask><mask id="c" fill="#000" height="11" maskUnits="userSpaceOnUse" width="13" x="-1" y="-1"><path d="m-1-1h13v11h-13z" fill="#fff"/><path clip-rule="evenodd" d="m6 0h-1v4h-5v1h5v4h1v-4h5v-1h-5z" fill="#000" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0h20v15h-20z" fill="#2e42a5" fill-rule="evenodd"/><path d="m0 0h11v9h-11z" fill="#2e42a5"/><g mask="url(#b)"><path d="m-1.253 8.125 2.476 1.085 10.083-8.03 1.306-1.614-2.647-.363-4.113 3.46-3.31 2.332-3.795 3.129z" fill="#f7fcff"/><path d="m-.914 8.886 1.261.63 11.796-10.099h-1.77l-11.288 9.469z" fill="#f50100"/><path d="m12.503 8.125-2.197 1.395-10.362-8.34-1.306-1.614 2.647-.363 4.113 3.46 3.31 2.332 3.795 3.129z" fill="#f7fcff"/><path d="m12.418 8.67-1.261.63-5.023-4.323-1.489-.483-6.133-4.921h1.771l6.13 4.804 1.628.58 4.377 3.714z" fill="#f50100"/><path clip-rule="evenodd" d="m6 0h-1v4h-5v1h5v4h1v-4h5v-1h-5z" fill="#f50100" fill-rule="evenodd"/><path d="m5 0v-.938h-.938v.938zm1 0h.938v-.938h-.938zm-1 4v.938h.938v-.938zm-5 0v-.938h-.938v.938zm0 1h-.938v.938h.938zm5 0h.938v-.938h-.938zm0 4h-.938v.938h.938zm1 0v.938h.938v-.938zm0-4v-.938h-.938v.938zm5 0v.938h.938v-.938zm0-1h.938v-.938h-.938zm-5 0h-.938v.938h.938zm-1-3.063h1v-1.875h-1v1.876zm.938 3.063v-4h-1.875v4zm-5.938.938h5v-1.875h-5v1.874zm.938.062v-1h-1.876v1zm4.062-.938h-5v1.875h5v-1.874zm.938 4.938v-4h-1.875v4zm.062-.938h-1v1.876h1zm-.938-3.062v4h1.875v-4h-1.874zm5.938-.938h-5v1.875h5v-1.874zm-.938-.062v1h1.876v-1zm-4.062.938h5v-1.875h-5v1.874zm-.938-4.938v4h1.875v-4h-1.874z" fill="#f7fcff" mask="url(#c)"/></g></g><path d="m5.92 12.278-.82.758.081-1.113-1.104-.17.922-.63-.557-.968 1.068.327.41-1.039.41 1.039 1.068-.327-.557.968.922.63-1.104.17.081 1.113zm7.32-3.981-.547.505.054-.743-.735-.112.614-.42-.371-.646.712.218.273-.692.273.692.712-.218-.37.645.613.421-.735.112.054.743zm1.28-5.334-.547.506.054-.743-.735-.112.614-.42-.371-.646.712.218.273-.693.273.693.712-.218-.37.645.613.42-.735.113.054.743zm3.2 2.667-.547.505.054-.742-.735-.113.614-.42-.371-.646.712.218.273-.692.273.692.712-.218-.37.646.613.42-.735.113.054.742zm-2.56 7.667-.547.505.054-.742-.735-.113.614-.42-.371-.646.712.218.273-.692.273.692.712-.218-.37.646.613.42-.735.113.054.742zm2.24-4.157-.555.291.106-.618-.45-.438.621-.09.278-.563.278.562.62.09-.449.439.107.618-.556-.292z" fill="#f7fcff"/></svg>
|
package/dist/img/BG.9506e13e.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0v15h20v-15z" fill="#5eaa22"/><g mask="url(#b)"><path d="m0 0v5h20v-5z" fill="#f7fcff"/><path d="m0 10v5h20v-5z" fill="#e22c18"/></g></g></svg>
|
package/dist/img/CA.4da04f2c.svg
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="a" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="15">
|
|
3
|
-
<path fill="#fff" d="M0 0h20v15H0z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#a)" fill-rule="evenodd" clip-rule="evenodd">
|
|
6
|
-
<path d="M5 0h10v15H5V0z" fill="#F7FCFF"/>
|
|
7
|
-
<path d="M8.956 5.252L9.983 3.75 10 12.5h-.428l.263-2.165s-2.883.529-2.644.262c.238-.267.375-.757.375-.757L5 8.092s.405-.005.734-.205c.33-.2-.33-1.385-.33-1.385l1.296.192.49-.544.978 1.045h.44l-.44-2.393.788.45zM10 12.5V3.75l1.044 1.502.788-.45-.44 2.393h.44l.977-1.045.49.544 1.296-.192s-.658 1.185-.33 1.385c.33.2.735.205.735.205L12.434 9.84s.137.49.376.757c.238.267-2.645-.262-2.645-.262l.263 2.165H10zM15 0h5v15h-5V0zM0 0h5v15H0V0z" fill="#E31D1C"/>
|
|
8
|
-
</g>
|
|
9
|
-
</svg>
|
package/dist/img/CN.e2b8cf40.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0h20v15h-20z" fill="#e31d1c"/><g fill="#feca00"><path d="m4.446 6.097-2.433 1.907.93-2.884-1.624-1.5 2.198-.08.93-2.322.929 2.321h2.193l-1.619 1.581.738 2.884zm4.939-2.24-1.02.617.232-1.203-.85-.9 1.151-.049.487-1.123.487 1.123h1.15l-.849.949.256 1.203z"/><path d="m10.635 6.357-1.02.617.232-1.203-.85-.9 1.151-.049.487-1.123.487 1.123h1.15l-.849.949.256 1.203z"/><path d="m9.385 8.857-1.02.617.232-1.203-.85-.9 1.151-.049.487-1.123.487 1.123h1.15l-.849.949.256 1.203z"/><path d="m6.885 10.107-1.02.617.232-1.203-.85-.9 1.151-.049.487-1.123.487 1.123h1.15l-.849.949.256 1.203z"/></g></g></svg>
|
package/dist/img/DE.2fcda83b.svg
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="a" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="15">
|
|
3
|
-
<path fill="#fff" d="M0 0h20v15H0z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#a)" fill-rule="evenodd" clip-rule="evenodd">
|
|
6
|
-
<path d="M0 10h20v5H0v-5z" fill="#FFD018"/>
|
|
7
|
-
<path d="M0 5h20v5H0V5z" fill="#E31D1C"/>
|
|
8
|
-
<path d="M0 0h20v5H0V0z" fill="#272727"/>
|
|
9
|
-
</g>
|
|
10
|
-
</svg>
|
package/dist/img/DK.a9e77ebe.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#c51918" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m6 0h3v6h11v3h-11v6h-3v-6h-6v-3h6z" fill="#f7fcff" fill-rule="evenodd"/></g></g></svg>
|
package/dist/img/EE.423bded8.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0v15h20v-15z" fill="#f7fcff"/><g mask="url(#b)"><path d="m0 0v5h20v-5z" fill="#40a8ff"/><path d="m0 5v5h20v-5z" fill="#272727"/></g></g></svg>
|
package/dist/img/EG.0c65de90.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#f7fcff" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m0 0v5h20v-5z" fill="#bf2714" fill-rule="evenodd"/><path clip-rule="evenodd" d="m0 10v5h20v-5z" fill="#272727" fill-rule="evenodd"/><g fill="#c09302"><path d="m7.663 6.388.624.028-.157 3.419-.624-.029zm.652.212.624.035-.157 2.772-.624-.035z"/><path d="m8.968 6.807.623.052-.157 1.91-.623-.052zm3.369-.419-.624.028.157 3.419.624-.029zm-.652.212-.624.035.157 2.772.624-.035z"/><path d="m11.032 6.807-.623.052.157 1.91.623-.052zm-1.049 2.773-.609-.14.258-1.126.61.14-.259 1.125z"/><path d="m10.45 9.58.609-.14-.258-1.126-.61.14.259 1.125z"/><path d="m10.295 9.569h-.625v-1.105h.625zm-1.148-2.749.625.016-.037 1.488-.625-.015.037-1.488zm1.087 0 .624.016-.036 1.488-.625-.015.037-1.488z"/><path d="m8.336 9.952.163-.604c.663.179 1.172.267 1.52.267.346 0 .855-.088 1.519-.267l.162.604c-.711.191-1.27.288-1.682.288s-.97-.097-1.682-.288zm-.66-3.562c-.041-.414.2-.693.61-.658.135.012.286.052.487.12l.116.04c.277.1.353.125.368.128-.061-.014.12-.34.16-.396.006.035-.015.03-.065.02l-.564-.113.402-.411a.732.732 0 0 1 .54-.216c.022 0 .043 0 .11-.005l.107-.005c.39-.013.67.098.67.499 0 .143.017.374.047.549.01.059.03.114-.027.138.002-.02.138-.075.35-.164l.026-.01c.618-.258.69-.282.889-.16.132.08.258.225.4.44l-.523.343a1.09 1.09 0 0 0 -.198-.248c.078.055-.187.143-.327.201l-.025.011c-.48.2-.544.225-.681.225-.374 0-.508-.383-.545-.932-.115.38-.46.86-.743.86-.124 0-.065.019-.58-.164l-.107-.038a1.682 1.682 0 0 0 -.34-.089.284.284 0 0 1 .025-.024l-.582.058z"/></g></g></g></svg>
|
package/dist/img/ES.cda88cd3.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><mask id="c" height="2" maskUnits="userSpaceOnUse" width="3" x="2" y="10"><path clip-rule="evenodd" d="m2.85 10.62h1.26v.56s-.157-.07-.315-.07c-.157 0-.315.07-.315.07s-.157-.07-.315-.07a.898.898 0 0 0 -.315.07z" fill="#fff" fill-rule="evenodd"/></mask><mask id="d" height="2" maskUnits="userSpaceOnUse" width="2" x="9" y="10"><path clip-rule="evenodd" d="m9.71 10.62h1.26v.56s-.158-.07-.315-.07-.315.07-.315.07-.158-.07-.315-.07a.89.89 0 0 0 -.315.07z" fill="#fff" fill-rule="evenodd"/></mask><mask id="e" height="7" maskUnits="userSpaceOnUse" width="6" x="4" y="5"><path clip-rule="evenodd" d="m4.67 5.79h4.55v4.088s-.338 1.372-2.275 1.372-2.275-1.408-2.275-1.408z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#ffb400" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m0 0v3.75h20v-3.75zm0 11.25v3.75h20v-3.75z" fill="#c51918" fill-rule="evenodd"/><path d="m3.13 6.42h.7v3.64h-.7z" fill="#f1f9ff"/><path clip-rule="evenodd" d="m4.11 5.79h-1.26v.35h.21v.28h.84v-.28h.21zm-.21 4.48h.21v.35h-1.26v-.35h.21v-.28h.84z" fill="#c88a02" fill-rule="evenodd"/><path clip-rule="evenodd" d="m3.48 5.86c.152 0 .168-.057.258-.143.07-.067.232-.15.232-.242 0-.213-.22-.385-.49-.385s-.49.172-.49.385c0 .104.112.173.197.242.089.073.154.143.293.143z" fill="#ad1619" fill-rule="evenodd"/><path clip-rule="evenodd" d="m2.85 10.62h1.26v.56s-.157-.07-.315-.07c-.157 0-.315.07-.315.07s-.157-.07-.315-.07a.898.898 0 0 0 -.315.07z" fill="#005bbf" fill-rule="evenodd"/><g fill="#fff" mask="url(#c)"><path d="m2.839 11.07-.028-.067a.834.834 0 0 1 .342-.076.37.37 0 0 1 .177.04.306.306 0 0 0 .15.033.306.306 0 0 0 .15-.034.37.37 0 0 1 .178-.039c.114 0 .228.025.341.076l-.027.067a.767.767 0 0 0 -.314-.07.306.306 0 0 0 -.15.034.37.37 0 0 1 -.178.039.37.37 0 0 1 -.177-.04.306.306 0 0 0 -.15-.033.767.767 0 0 0 -.314.07zm0-.21-.028-.067a.834.834 0 0 1 .342-.076.37.37 0 0 1 .177.04.306.306 0 0 0 .15.033.306.306 0 0 0 .15-.034.37.37 0 0 1 .178-.039c.114 0 .228.025.341.076l-.027.067a.767.767 0 0 0 -.314-.07.306.306 0 0 0 -.15.034.37.37 0 0 1 -.178.039.37.37 0 0 1 -.177-.04.306.306 0 0 0 -.15-.033.767.767 0 0 0 -.314.07z"/></g><path d="m9.99 6.42h.7v3.64h-.7z" fill="#f1f9ff"/><path clip-rule="evenodd" d="m10.97 5.79h-1.26v.35h.21v.28h.84v-.28h.21zm-.21 4.48h.21v.35h-1.26v-.35h.21v-.28h.84z" fill="#c88a02" fill-rule="evenodd"/><path clip-rule="evenodd" d="m10.34 5.86c.152 0 .168-.057.258-.143.07-.067.232-.15.232-.242 0-.213-.22-.385-.49-.385s-.49.172-.49.385c0 .104.112.173.197.242.089.073.154.143.293.143z" fill="#ad1619" fill-rule="evenodd"/><path clip-rule="evenodd" d="m9.71 10.62h1.26v.56s-.158-.07-.315-.07-.315.07-.315.07-.158-.07-.315-.07a.89.89 0 0 0 -.315.07z" fill="#005bbf" fill-rule="evenodd"/><g fill="#fff" mask="url(#d)"><path d="m9.699 11.07-.028-.067a.834.834 0 0 1 .342-.076.37.37 0 0 1 .177.04.307.307 0 0 0 .15.033.306.306 0 0 0 .15-.034.371.371 0 0 1 .178-.039c.114 0 .228.025.341.076l-.027.067a.767.767 0 0 0 -.314-.07.307.307 0 0 0 -.15.034.37.37 0 0 1 -.178.039.371.371 0 0 1 -.177-.04.306.306 0 0 0 -.15-.033.767.767 0 0 0 -.314.07zm0-.21-.028-.067a.834.834 0 0 1 .342-.076.37.37 0 0 1 .177.04.307.307 0 0 0 .15.033.306.306 0 0 0 .15-.034.371.371 0 0 1 .178-.039c.114 0 .228.025.341.076l-.027.067a.767.767 0 0 0 -.314-.07.307.307 0 0 0 -.15.034.37.37 0 0 1 -.178.039.371.371 0 0 1 -.177-.04.306.306 0 0 0 -.15-.033.767.767 0 0 0 -.314.07z"/></g><path clip-rule="evenodd" d="m3.117 9.8c.127-.153.197-.292.197-.44a.395.395 0 0 0 -.076-.24l.008-.003s.139-.06.187-.084c.09-.043.17-.089.247-.145a1.93 1.93 0 0 1 .216-.13l.095-.05.026-.013.12-.066a.757.757 0 0 0 .228-.18.335.335 0 0 0 -.077-.499c-.087-.06-.204-.093-.376-.12l-.035-.005-.21-.033a13.234 13.234 0 0 1 -.222-.036c.43-.072 1.045-.046 1.316.094l.256-.498c-.55-.284-1.806-.255-2.274.068-.344.237-.298.595.06.749.15.064.344.107.705.165-.06.035-.11.067-.157.101a.997.997 0 0 1 -.16.093l-.157.07-.02.009c-.291.132-.433.316-.39.647l.023.179.04.012zm-.36-.463v.003zm7.684.023c0 .148.07.287.197.44l.43-.355.04-.012.024-.18c.042-.33-.1-.514-.39-.646l-.02-.009h-.001a8.57 8.57 0 0 1 -.156-.07 1.001 1.001 0 0 1 -.16-.093 1.78 1.78 0 0 0 -.157-.101c.36-.058.555-.1.705-.165.357-.154.404-.512.06-.75-.469-.322-1.724-.351-2.275-.067l.257.498c.27-.14.885-.166 1.315-.094l-.22.036-.211.033-.036.005c-.172.027-.289.06-.376.12a.335.335 0 0 0 -.077.499.757.757 0 0 0 .23.18c.033.02.07.04.119.066l.025.013.095.05a2.1 2.1 0 0 1 .217.13c.077.056.156.102.246.145l.187.084.009.003a.395.395 0 0 0 -.077.24z" fill="#ad1619" fill-rule="evenodd"/><path d="m3.702 7.75.207.043v.307c-.22.175-.779.471-.779.471v-.821zm6.495 0-.207.043v.307c.22.175.779.471.779.471v-.821z" fill="#f1f9ff"/><g clip-rule="evenodd" fill-rule="evenodd"><path d="m9.235 4.504v-.104c-.36-.258-.737-.387-1.131-.387a2.258 2.258 0 0 0 -1.147-.195v-.002c-.582-.057-1.168.197-1.168.197-.591 0-1.131.387-1.131.387v.103l.706.709s.198.682 1.59.522v.002s.921-.026.986-.047c.026-.009.053-.016.08-.024.18-.053.386-.113.509-.453l.706-.71zm-2.281-.654c-.02.236-.135 1.66 0 1.88z" fill="#ad1619"/><path d="m5.196 5.093v-.002l-.496-.467.048-.051.466.439.012-.055a.594.594 0 0 0 .164.019v-.096l.104.056c.05.027.123.035.219.019.07-.011.118-.093.133-.267l.032-.352.105.337c.048.152.12.22.224.22.1 0 .141-.037.146-.13l.012-.265.12.236c.043.085.103.124.187.124.121 0 .202-.1.202-.26h.142c0 .16.08.26.202.26.084 0 .144-.039.187-.124l.12-.236.012.264c.005.094.045.13.146.13.104 0 .176-.067.224-.22l.105-.336.031.352c.016.174.063.256.134.267.096.016.168.008.22-.02l.103-.055v.095a.594.594 0 0 0 .164-.02l.022.102.516-.485.048.051-.642.604c-.094.173-.14.286-.14.334 0 .072-.189.115-.555.159a9.025 9.025 0 0 1 -.903.06v.001h-.07a9.024 9.024 0 0 1 -.903-.061c-.367-.044-.554-.087-.554-.16a.147.147 0 0 0 -.005-.033.55.55 0 0 1 -.08-.194 3.518 3.518 0 0 0 -.056-.106l-.142-.133h-.004zm3.441.012c-.115.02-.197.018-.241-.018a.55.55 0 0 1 -.242.007c-.098-.016-.166-.081-.208-.19a.32.32 0 0 1 -.203.125c.448.063.762.153.762.153s-.008.066-.027.144l.071-.136.007-.009zm-1.105-.103a.225.225 0 0 1 -.093-.083.312.312 0 0 1 -.113.064c.07.005.14.012.206.02zm-.453-.033a.32.32 0 0 1 -.134-.117.32.32 0 0 1 -.133.117l.097-.002h.056zm-1.69.207-.065-.061c.078.008.136 0 .17-.028a.55.55 0 0 0 .242.007c.098-.016.166-.081.207-.19a.321.321 0 0 0 .197.124 6.546 6.546 0 0 0 -.751.148zm1.172-.194a6.277 6.277 0 0 0 -.199.018.224.224 0 0 0 .089-.081c.032.028.07.05.11.063zm1.722.581c.05.023.088 0 .12-.044a.226.226 0 0 0 -.005.033.677.677 0 0 1 -.123.04 4.23 4.23 0 0 1 -.37.06c-.297.035-.65.058-.93.06a8.867 8.867 0 0 1 -.93-.06 3.834 3.834 0 0 1 -.37-.06.787.787 0 0 1 -.092-.026.108.108 0 0 0 .008-.003c.153-.071 1.164-.139 1.346-.15.182.011 1.193.079 1.346.15zm.193-.013-.001.002v-.002z" fill="#c88a02"/><path d="m6.945 3.342a.21.21 0 1 0 0-.42.21.21 0 0 0 0 .42z" fill="#005bbf"/><path d="m6.809 4.373a.278.278 0 0 0 .02.064.265.265 0 0 0 -.094-.017c-.097 0-.175.047-.175.105s.078.105.175.105.175-.047.175-.105c0 .058.078.105.175.105s.175-.047.175-.105-.078-.105-.175-.105a.278.278 0 0 0 -.069.009.265.265 0 0 0 -.001-.096c-.019-.095-.08-.163-.137-.152s-.088.097-.07.192zm.101.152v-.003zm-1.131-.018a.278.278 0 0 1 -.02-.064c-.019-.095.012-.18.07-.192.056-.01.117.057.136.152a.265.265 0 0 1 .001.096.278.278 0 0 1 .069-.009c.097 0 .175.047.175.105s-.078.105-.175.105-.175-.047-.175-.105v-.003.003c0 .058-.078.105-.175.105s-.175-.047-.175-.105.078-.105.175-.105a.25.25 0 0 1 .094.017zm2.192.064c-.008.057-.092.093-.188.08-.095-.014-.166-.072-.158-.13.008-.056.092-.092.188-.079a.265.265 0 0 1 .09.03.279.279 0 0 1 -.011-.066c-.005-.097.038-.177.096-.18.058-.004.109.072.114.169a.265.265 0 0 1 -.012.095.277.277 0 0 1 .07.001c.095.013.166.07.158.128s-.092.093-.188.08-.167-.07-.159-.128zm0 0v-.004zm.667.277c.085.046.176.041.204-.01l.001-.003a.068.068 0 0 0 .03.019c.055.017.123-.045.151-.137.029-.092.006-.181-.049-.198s-.123.044-.152.137a.279.279 0 0 0 -.012.065.265.265 0 0 0 -.075-.058c-.085-.046-.176-.04-.204.01-.027.052.02.13.106.175zm-3.435.022c-.085.045-.177.04-.204-.01l-.001-.004a.068.068 0 0 1 -.03.02c-.055.016-.123-.045-.152-.137-.028-.093-.006-.182.05-.199.055-.016.123.045.151.137a.271.271 0 0 1 .012.066.265.265 0 0 1 .075-.059c.086-.045.177-.04.204.01.027.052-.02.13-.105.176zm1.664-2.322h.146v.092h.095v.146h-.095v.292h.095v.145h-.338v-.145h.097v-.292h-.097v-.146h.097z" fill="#c88a02"/></g><path d="m6.84 3.34h.28v.91h-.28z" fill="#c88a02"/><path d="m5.713 3.492-.001.07c-.621-.01-.977.08-1.067.26-.094.187-.077.414.054.684l-.063.03c-.14-.287-.158-.536-.054-.745.107-.214.484-.31 1.13-.299z" fill="#fff"/><path d="m5.833 4.113-.036.06c-.135-.08-.203-.218-.203-.408 0-.273.14-.433.452-.542.198-.07.469-.041.813.083l-.023.066c-.331-.12-.587-.147-.767-.083-.285.1-.405.236-.405.476 0 .167.056.28.169.348z" fill="#fff"/><path d="m4.788 4.398-.132.047c-.138-.39-.098-.655.136-.77.206-.1.507-.142.904-.125l-.006.14c-.376-.016-.655.022-.837.111-.154.075-.182.266-.065.597z" fill="#c88a02"/><path d="m6.33 3.4c-.32 0-.45.077-.526.307-.048.147-.001.272.15.39l-.087.11c-.194-.152-.263-.337-.196-.543.096-.293.284-.405.66-.405.246 0 .438.065.572.197l.021.02v.675h-.14v-.615c-.104-.09-.254-.137-.453-.137z" fill="#c88a02"/><path d="m8.156 3.562v.07c.622-.01.978.08 1.068.26.093.187.076.414-.055.684l.063.03c.14-.287.159-.536.055-.745-.108-.214-.484-.31-1.131-.299z" fill="#fff"/><path d="m7.936 4.128.036.06c.135-.08.203-.219.203-.408 0-.273-.14-.433-.451-.543-.199-.07-.47-.04-.814.084l.024.066c.33-.12.586-.147.767-.084.285.1.404.237.404.477 0 .166-.056.28-.169.348z" fill="#fff"/><path d="m9.125 4.468.132.047c.137-.39.098-.655-.137-.77-.206-.1-.507-.142-.903-.125l.005.14c.376-.016.655.022.837.111.154.075.182.266.066.597z" fill="#c88a02"/><path d="m7.573 3.41c.32 0 .452.078.527.308.048.147.001.272-.15.389l.087.11c.195-.15.263-.336.196-.542-.096-.294-.283-.405-.66-.405-.246 0-.438.065-.572.197l-.021.02v.675h.14v-.615c.104-.09.255-.137.453-.137z" fill="#c88a02"/><path clip-rule="evenodd" d="m4.67 5.79h4.55v4.088s-.338 1.372-2.275 1.372-2.275-1.408-2.275-1.408z" fill="#e1e5e8" fill-rule="evenodd" opacity=".3"/><g mask="url(#e)"><path d="m4.67 8.31h2.31v2.73h-2.31z" fill="#ffc034"/><path d="m4.95 8.45h.28v2.59h-.28zm.98 0h.28v2.59h-.28zm-.49 0h.28v2.59h-.28zm.98 0h.28v2.59h-.28zm-1.75-2.73h2.31v2.66h-2.31z" fill="#ad1619"/><path d="m6.91 8.24h2.31v2.66h-2.31z" fill="#ad1619"/><path d="m6.91 5.79h2.45v2.59h-2.45z" fill="#f1f9ff"/><path clip-rule="evenodd" d="m5.65 6h.21v.58h.14v-.29h.21v.29h.21v.364h-.21v.653h.21v.363h-1.26v-.363h.21v-.653h-.21v-.364h.14v-.29h.21v.29h.14z" fill="#c88a02" fill-rule="evenodd"/><path d="m8.112 6.122.143-.154.301.282-.143.153z" fill="#c88a02"/><g clip-rule="evenodd" fill-rule="evenodd"><path d="m8.975 10.088v-1.533h-1.75v1.52l.003.012c.088.377.39.568.872.568.481 0 .783-.186.872-.555zm-.875.357c-.387 0-.598-.13-.665-.395v-1.285h1.33v1.297c-.067.256-.278.383-.665.383z" fill="#ffc034"/><path d="m8.172 8.683h-.146v.695l-.574-.625-.104.094.52.566h-.47v.21h.481l-.53.578.103.095.574-.626v.812h.146v-.739l.508.553.103-.095-.531-.578h.593v-.21h-.582l.52-.566-.103-.094-.508.552z" fill="#ffc034"/><path d="m8.427 10.902s-1.483.116-1.483-.84c0 0-.014.84-1.562.84v.755h3.045z" fill="#f1f9ff"/><path d="m6.945 8.87c.29 0 .525-.25.525-.56s-.235-.56-.525-.56-.525.25-.525.56.235.56.525.56z" fill="#005bbf" stroke="#ad1619" stroke-width=".729"/></g></g></g></g></svg>
|
package/dist/img/FR.a8bc55ba.svg
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="a" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="15">
|
|
3
|
-
<path fill="#fff" d="M0 0h20v15H0z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#a)" fill-rule="evenodd" clip-rule="evenodd">
|
|
6
|
-
<path d="M14 0h6v15h-6V0z" fill="#F50100"/>
|
|
7
|
-
<path d="M0 0h7v15H0V0z" fill="#2E42A5"/>
|
|
8
|
-
<path d="M6 0h8v15H6V0z" fill="#F7FCFF"/>
|
|
9
|
-
</g>
|
|
10
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><mask id="c" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="d" fill="#fff"><path clip-rule="evenodd" d="m12.361-1.25h-4.721v6.25h-8.872v5h8.872v6.25h4.722v-6.25h8.906v-5h-8.906v-6.25z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#2e42a5" fill-rule="evenodd"/><g mask="url(#b)"><g mask="url(#c)"><path d="m-2.227 13.928 4.401 1.862 17.926-13.766 2.32-2.766-4.706-.622-7.312 5.932-5.882 3.997-6.746 5.363z" fill="#fff"/><path d="m-1.624 15.232 2.242 1.08 20.97-17.31h-3.149l-20.062 16.23z" fill="#f50100"/><path d="m22.227 13.928-4.401 1.862-17.926-13.766-2.32-2.766 4.706-.622 7.311 5.932 5.886 3.997 6.745 5.363z" fill="#fff"/><path d="m22.077 14.864-2.242 1.08-8.93-7.412-2.647-.828-10.903-8.437h3.149l10.896 8.237 2.895.993z" fill="#f50100"/><path clip-rule="evenodd" d="m12.361-1.25h-4.721v6.25h-8.872v5h8.872v6.25h4.722v-6.25h8.906v-5h-8.906v-6.25z" fill="#f50100" fill-rule="evenodd"/><path d="m7.639-1.25v-1.25h-1.25v1.25zm4.722 0h1.25v-1.25h-1.25zm-4.721 6.25v1.25h1.25v-1.25zm-8.872 0v-1.25h-1.25v1.25zm0 5h-1.25v1.25h1.25zm8.872 0h1.25v-1.25h-1.25zm0 6.25h-1.25v1.25h1.25zm4.722 0v1.25h1.25v-1.25zm0-6.25v-1.25h-1.25v1.25zm8.906 0v1.25h1.25v-1.25zm0-5h1.25v-1.25h-1.25zm-8.906 0h-1.25v1.25h1.25zm-4.722-5h4.722v-2.5h-4.722zm1.25 5v-6.25h-2.5v6.25zm-10.123 1.25h8.873v-2.5h-8.872v2.5zm1.25 3.75v-5h-2.5v5h2.5zm7.623-1.25h-8.872v2.5h8.872zm1.25 7.5v-6.25h-2.5v6.25zm3.47-1.25h-4.72v2.5h4.722v-2.5zm-1.25-5v6.25h2.5v-6.25zm10.156-1.25h-8.906v2.5h8.906zm-1.249-3.75v5h2.5v-5zm-7.656 1.25h8.906v-2.5h-8.906zm-1.25-7.5v6.25h2.5v-6.25z" fill="#fff" mask="url(#d)"/></g></g></g></svg>
|
package/dist/img/GR.555f9322.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0h20v15h-20z" fill="#f7fcff" fill-rule="evenodd"/><g fill="#4564f9"><path d="m.017 3.438h20v1.875h-20z"/><path clip-rule="evenodd" d="m0 0h20v1.875h-20z" fill-rule="evenodd"/><path d="m-.037 6.875h20v1.875h-20zm.107 3.375h20v1.875h-20zm-.007 3.188h20v1.875h-20z"/><path clip-rule="evenodd" d="m0 0h10v8.75h-10z" fill-rule="evenodd"/></g><path clip-rule="evenodd" d="m4.044 0h1.978v3.438h3.978v2.366h-3.978v3.571h-1.978v-3.571h-4.044v-2.367h4.044z" fill="#f7fcff" fill-rule="evenodd"/></g></svg>
|
package/dist/img/IL.91b56ce7.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0v15h20v-15z" fill="#f7fcff"/><g fill="#3d58db" mask="url(#b)"><path d="m0 2.5v2.228h20v-2.228zm0 7.717v2.283h20v-2.283z"/><path d="m7.113 9.337h5.86l-2.9-5.013zm4.669-.688h-3.465l1.75-2.963z"/><path d="m6.932 5.578h5.993l-2.84 5.029zm4.816.688h-3.573l1.88 2.998z"/></g></g></svg>
|
package/dist/img/IR.40b1f5af.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#f7fcff" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m0 0v5h20v-5z" fill="#5eaa22" fill-rule="evenodd"/><path clip-rule="evenodd" d="m0 10v5h20v-5z" fill="#e31d1c" fill-rule="evenodd"/><path d="m.233 10.854h-1.421m-.015.563v-.326h.463v.315h.467v-.315h-.242m.726.313h-.235v-.306h.496v-.251.557h.224v-.557m.253.033v.526h-.233m1.956-.552h-1.422m-.014.563v-.326h.463v.315h.467v-.315h-.242m.77.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.552h-1.42m-.015.563v-.326h.462v.315h.468v-.315h-.243m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.957-.552h-1.422m-.014.563v-.326h.462v.315h.468v-.315h-.243m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.253.033v.526h-.234m1.957-.552h-1.423m-.013.563v-.326h.462v.315h.468v-.315h-.243m.771.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.552h-1.421m-.014.563v-.326h.462v.315h.467v-.315h-.242m.77.313h-.235v-.306h.496v-.251.557h.224v-.557m.253.033v.526h-.233m1.956-.552h-1.422m-.014.563v-.326h.462v.315h.468v-.315h-.243m.771.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.552h-1.42m-.016.563v-.326h.463v.315h.467v-.315h-.242m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.957-.552h-1.422m-.015.563v-.326h.463v.315h.468v-.315h-.243m.858.313h-.236v-.306h.496v-.251.557h.224v-.557m-20.28-7.617h-1.421m-.015.562v-.326h.463v.315h.467v-.315h-.242m.726.313h-.235v-.306h.496v-.251.557h.224v-.557m.253.033v.526h-.233m1.956-.551h-1.422m-.014.562v-.326h.463v.315h.467v-.315h-.242m.77.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.551h-1.42m-.015.562v-.326h.462v.315h.468v-.315h-.243m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.957-.551h-1.422m-.014.562v-.326h.462v.315h.468v-.315h-.243m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.253.033v.526h-.234m1.957-.551h-1.423m-.013.562v-.326h.462v.315h.468v-.315h-.243m.771.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.551h-1.421m-.014.562v-.326h.462v.315h.467v-.315h-.242m.77.313h-.235v-.306h.496v-.251.557h.224v-.557m.253.033v.526h-.233m1.956-.551h-1.422m-.014.562v-.326h.462v.315h.468v-.315h-.243m.771.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.956-.551h-1.42m-.016.562v-.326h.463v.315h.467v-.315h-.242m.727.313h-.236v-.306h.496v-.251.557h.225v-.557m.252.033v.526h-.233m1.957-.551h-1.422m-.015.562v-.326h.463v.315h.468v-.315h-.243m.858.313h-.236v-.306h.496v-.251.557h.224v-.557" stroke="#f7fcff" stroke-width=".625"/><path clip-rule="evenodd" d="m9.129 5.156s.267.14.54.14c.274 0 .549-.14.549-.14v.188s-.3.14-.566.14-.523-.14-.523-.14zm-1.969 2.214c0-1.111 1.526-1.838 1.526-1.838s-.882.473-.882 1.792c0 1.318.458 1.89.458 1.89s-1.102-.734-1.102-1.846zm5.149-.061c0-1.111-1.525-1.777-1.525-1.777s.882.473.882 1.792c0 1.318-.458 1.89-.458 1.89s1.1-.794 1.1-1.905zm-4.107.303c-.058-1.11.865-2.104.865-2.104s-.336.457-.267 1.774c.024.452.202 1.124.426 1.521v-3.225h.938v3.252c.225-.37.398-1.002.422-1.46.069-1.318-.251-1.863-.251-1.863s.923.994.865 2.104c-.035.66-.543 1.36-.949 1.817.197.044.461.098.825.17.007.04-.074.038-.235.034a5.149 5.149 0 0 0 -.813.035c-.165.17-.28.27-.28.27l-.048-.057a1.55 1.55 0 0 0 -.046.059s-.116-.101-.281-.27a5.148 5.148 0 0 0 -.814-.036c-.16.004-.241.006-.234-.035.364-.071.628-.125.825-.169-.406-.457-.914-1.156-.949-1.817z" fill="#e31d1c" fill-rule="evenodd"/></g></g></svg>
|
package/dist/img/IT.cfe26ab1.svg
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="a" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="15">
|
|
3
|
-
<path fill="#fff" d="M0 0h20v15H0z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#a)" fill-rule="evenodd" clip-rule="evenodd">
|
|
6
|
-
<path d="M14 0h6v15h-6V0z" fill="#C51918"/>
|
|
7
|
-
<path d="M0 0h6v15H0V0z" fill="#5EAA22"/>
|
|
8
|
-
<path d="M6 0h8v15H6V0z" fill="#fff"/>
|
|
9
|
-
</g>
|
|
10
|
-
</svg>
|
package/dist/img/JP.83dedc60.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#f7fcff" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m10 12.188a4.688 4.688 0 1 0 0-9.376 4.688 4.688 0 0 0 0 9.376z" fill="#e31d1c" fill-rule="evenodd"/></g></g></svg>
|
package/dist/img/KR.a58d1d1e.svg
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<g mask="url(#KR_-_Korea_(South)__a)">
|
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 0v15h20V0H0z" fill="#F7FCFF"/>
|
|
4
|
-
<g mask="url(#KR_-_Korea_(South)__b)">
|
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10 11.387c2.002 0 3.624-1.723 3.624-3.849 0-2.126-1.622-3.849-3.624-3.849s-3.624 1.723-3.624 3.85c0 2.125 1.622 3.848 3.624 3.848z" fill="#3D58DB"/>
|
|
6
|
-
<g mask="url(#KR_-_Korea_(South)__c)">
|
|
7
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.751 7.833s-.203-1.815-1.71-1.914c-1.507-.098-1.913 1.331-2 1.71-.087.379-.307 1.39-1.893 1.39s-1.73-2.57-1.73-2.57V3.42h7.333v4.414z" fill="#E31D1C"/>
|
|
8
|
-
</g>
|
|
9
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.562 1.283l.572.517-2.65 3.095-.572-.517 2.65-3.095zm.943.837l.572.517-2.555 3.05-.572-.517 2.555-3.05zm1.51 1.364l-.571-.517L3.882 6.04l.572.517 2.562-3.073zm8.837-2.418l-.572.515.993 1.164.572-.515-.993-1.164zm1.764 2.141l-.572.516.992 1.164.572-.515-.992-1.165zm-4.223.051l.571-.515.993 1.164-.572.515-.992-1.164zm2.335 1.626l-.572.516.992 1.164.572-.515-.992-1.165zm-1.356-2.49l.572-.515 2.762 3.363-.572.516-2.762-3.364zm1.912 6.508l-.576-.517-1.001 1.168.577.518 1-1.17zm-1.682 2.057l-.577-.517-1 1.168.577.518 1-1.17zm2.927-.938l.577.517-1 1.169-.578-.518 1.001-1.168zm-1.023 2.621l-.577-.517-1 1.169.576.517 1.001-1.169zm-1.527-1.406l.577.518-1.044 1.248-.577-.518 1.044-1.248zm2.29-1.562l-.576-.517-1.045 1.248.577.517 1.044-1.248zM4.004 9.306l.572-.516 2.553 2.926-.572.515-2.553-2.925zm.596 2.559l.572-.516 1.078 1.185-.572.515L4.6 11.865zm-1.907-1.433l-.572.516 2.567 2.964.572-.516-2.567-2.964zm.407-.337l.572-.516.935 1.096-.572.516-.935-1.096z" fill="#272727"/>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
package/dist/img/LT.f088061e.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0v15h20v-15z" fill="#55ba07"/><g mask="url(#b)"><path d="m0 0v5h20v-5z" fill="#feca00"/><path d="m0 10v5h20v-5z" fill="#c51918"/></g></g></svg>
|
package/dist/img/LV.607c6e8b.svg
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<svg width="20" height="15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<mask id="a" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="15">
|
|
3
|
-
<path fill="#fff" d="M0 0h20v15H0z"/>
|
|
4
|
-
</mask>
|
|
5
|
-
<g mask="url(#a)" fill-rule="evenodd" clip-rule="evenodd">
|
|
6
|
-
<path d="M0 9h20v6H0V9z" fill="#C51918"/>
|
|
7
|
-
<path d="M0 5h20v3.75H0V5z" fill="#F7FCFF"/>
|
|
8
|
-
<path d="M0 0h20v6H0V0z" fill="#C51918"/>
|
|
9
|
-
</g>
|
|
10
|
-
</svg>
|
package/dist/img/NL.c8609ee4.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g clip-rule="evenodd" fill-rule="evenodd" mask="url(#a)"><path d="m0 0v15h20v-15z" fill="#f7fcff"/><g mask="url(#b)"><path d="m0 0v5h20v-5z" fill="#e31d1c"/><path d="m0 10v5h20v-5z" fill="#3d58db"/></g></g></svg>
|
package/dist/img/NO.5d5520cb.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#e31d1c" fill-rule="evenodd"/><g mask="url(#b)"><path d="m6.25-.625h-.625v6.25h-6.25v3.75h6.25v6.25h3.75v-6.25h11.25v-3.75h-11.25v-6.25z" fill="#2e42a5" stroke="#f7fcff" stroke-width="1.25"/></g></g></svg>
|
package/dist/img/PL.c15515c3.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" height="15" width="20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><mask id="a" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path d="m0 0h20v15h-20z" fill="#fff"/></mask><mask id="b" height="15" maskUnits="userSpaceOnUse" width="20" x="0" y="0"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#fff" fill-rule="evenodd"/></mask><g mask="url(#a)"><path clip-rule="evenodd" d="m0 0v15h20v-15z" fill="#f7fcff" fill-rule="evenodd"/><g mask="url(#b)"><path clip-rule="evenodd" d="m0 7.5v7.5h20v-7.5z" fill="#c51918" fill-rule="evenodd"/></g></g></svg>
|