@eui/cli 14.0.3 → 14.0.4-snapshot-1658923582025
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/.version.properties +1 -1
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base-mobile/package.json +4 -4
- package/lib/skeletons/_angular/options/ecl/package.json +4 -4
- package/lib/skeletons/_angular/options/ecl/src/app/app.component.html +221 -30
- package/lib/skeletons/_angular/options/ecl/src/app/features/home/home.component.html +0 -5
- package/lib/skeletons/_angular/options/openid-jwt/package.json +2 -2
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
14.0.
|
|
1
|
+
14.0.4-snapshot-1658923582025
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-snapshot-1658923582025",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "14.0.
|
|
23
|
+
"@eui/deps-base": "14.0.4-snapshot-1658923582025"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-snapshot-1658923582025",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "14.0.
|
|
24
|
-
"@eui/mobile-core": "14.0.0-beta.
|
|
25
|
-
"@eui/mobile-styles": "14.0.0-beta.
|
|
23
|
+
"@eui/deps-base": "14.0.4-snapshot-1658923582025",
|
|
24
|
+
"@eui/mobile-core": "14.0.0-beta.6",
|
|
25
|
+
"@eui/mobile-styles": "14.0.0-beta.6"
|
|
26
26
|
},
|
|
27
27
|
"browserslist": [
|
|
28
28
|
"last 2 chrome versions",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-ecl-angular-app",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-snapshot-1658923582025",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "14.0.
|
|
24
|
-
"@eui/ecl-core": "14.0
|
|
25
|
-
"@eui/ecl-styles": "14.0
|
|
23
|
+
"@eui/deps-base": "14.0.4-snapshot-1658923582025",
|
|
24
|
+
"@eui/ecl-core": "14.1.0-snapshot-1658917861269",
|
|
25
|
+
"@eui/ecl-styles": "14.1.0-snapshot-1658917861269"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -1,32 +1,35 @@
|
|
|
1
|
-
<ecl-app
|
|
2
|
-
<ecl-site-header
|
|
1
|
+
<ecl-app (languageDismiss)="onLanguageDismiss($event)">
|
|
2
|
+
<ecl-site-header siteName="Site name">
|
|
3
|
+
|
|
3
4
|
<div eclSiteHeaderEnvironment>Environment</div>
|
|
4
5
|
|
|
5
|
-
<ecl-site-header-
|
|
6
|
-
<ecl-site-header-
|
|
7
|
-
[isLoggedIn]="isLoggedIn"
|
|
6
|
+
<ecl-site-header-action>
|
|
7
|
+
<ecl-site-header-login
|
|
8
|
+
[isLoggedIn]="isLoggedIn"
|
|
8
9
|
(login)="onLogin($event)">
|
|
9
|
-
<p
|
|
10
|
+
<p eclSiteHeaderLoginDescription>
|
|
10
11
|
{{ 'ecl.site-header.LOGGED-IN-AS' | translate }} {{ userInfos?.fullName }}
|
|
11
12
|
</p>
|
|
12
|
-
<hr
|
|
13
|
+
<hr eclSiteHeaderLoginSeparator />
|
|
13
14
|
<a eclLink variant="standalone" href="#" (click)="onLogout($event)">
|
|
14
15
|
{{ 'ecl.site-header.LOGOUT' | translate }}
|
|
15
16
|
</a>
|
|
16
|
-
</ecl-site-header-
|
|
17
|
+
</ecl-site-header-login>
|
|
18
|
+
|
|
19
|
+
<ecl-site-header-language></ecl-site-header-language>
|
|
17
20
|
|
|
18
|
-
<ecl-site-header-
|
|
19
|
-
|
|
20
|
-
</ecl-site-header-harmonised-action>
|
|
21
|
+
<ecl-site-header-search (search)="onSearch($event)"></ecl-site-header-search>
|
|
22
|
+
</ecl-site-header-action>
|
|
21
23
|
|
|
22
|
-
<ecl-menu
|
|
23
|
-
<ecl-menu-item label="Home"
|
|
24
|
+
<ecl-menu (menuItemSelect)="onMenuItemSelected($event)">
|
|
25
|
+
<ecl-menu-item label="Home"></ecl-menu-item>
|
|
24
26
|
<ecl-menu-item label="Item 1">
|
|
25
27
|
<ecl-menu-mega>
|
|
26
28
|
<ecl-menu-mega-item label="Item 1.1"></ecl-menu-mega-item>
|
|
27
29
|
<ecl-menu-mega-item label="Item 1.2"></ecl-menu-mega-item>
|
|
28
|
-
<ecl-menu-mega-item label="Item 1.3"></ecl-menu-mega-item>
|
|
30
|
+
<ecl-menu-mega-item label="Item 1.3" [isCurrent]="true"></ecl-menu-mega-item>
|
|
29
31
|
</ecl-menu-mega>
|
|
32
|
+
|
|
30
33
|
</ecl-menu-item>
|
|
31
34
|
|
|
32
35
|
<ecl-menu-item label="Item 2">
|
|
@@ -45,27 +48,215 @@
|
|
|
45
48
|
</ecl-menu-mega>
|
|
46
49
|
</ecl-menu-item>
|
|
47
50
|
</ecl-menu>
|
|
48
|
-
</ecl-site-header
|
|
51
|
+
</ecl-site-header>
|
|
49
52
|
|
|
50
|
-
<ecl-page-header
|
|
51
|
-
<ecl-breadcrumb
|
|
52
|
-
<ecl-breadcrumb-
|
|
53
|
-
<ecl-breadcrumb-
|
|
54
|
-
<ecl-breadcrumb-
|
|
55
|
-
</ecl-breadcrumb
|
|
53
|
+
<ecl-page-header>
|
|
54
|
+
<ecl-breadcrumb>
|
|
55
|
+
<ecl-breadcrumb-segment>Home</ecl-breadcrumb-segment>
|
|
56
|
+
<ecl-breadcrumb-segment>European Commission</ecl-breadcrumb-segment>
|
|
57
|
+
<ecl-breadcrumb-segment [isCurrentPage]="true">ECL</ecl-breadcrumb-segment>
|
|
58
|
+
</ecl-breadcrumb>
|
|
56
59
|
|
|
57
|
-
<div
|
|
58
|
-
|
|
60
|
+
<div eclPageHeaderMeta>
|
|
61
|
+
<span eclPageHeaderMetaItem>
|
|
62
|
+
Auto generated template
|
|
63
|
+
</span>
|
|
59
64
|
</div>
|
|
60
|
-
<h1
|
|
61
|
-
<
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
+
<h1 eclPageHeaderTitle>Europa Component Library</h1>
|
|
66
|
+
<div eclPageHeaderDescriptionContainer>
|
|
67
|
+
<p eclPageHeaderDescription>
|
|
68
|
+
The Europa Component Library (ECL) is a comprehensive style guide containing the design elements and visual standards that make up all Europa websites and applications.
|
|
69
|
+
</p>
|
|
70
|
+
</div>
|
|
71
|
+
</ecl-page-header>
|
|
65
72
|
|
|
66
73
|
<div class="ecl-u-pv-xl">
|
|
67
74
|
<router-outlet></router-outlet>
|
|
68
75
|
</div>
|
|
69
76
|
|
|
70
|
-
<ecl-
|
|
71
|
-
|
|
77
|
+
<ecl-site-footer>
|
|
78
|
+
<div eclSiteFooterRow>
|
|
79
|
+
<div eclSiteFooterColumn>
|
|
80
|
+
<div eclSiteFooterSection>
|
|
81
|
+
<h2 eclSiteFooterTitle>
|
|
82
|
+
<a eclLink
|
|
83
|
+
variant="standalone"
|
|
84
|
+
eclSiteFooterTitleLink
|
|
85
|
+
routerLink="/">Site name
|
|
86
|
+
</a>
|
|
87
|
+
</h2>
|
|
88
|
+
<div eclSiteFooterDescription>This site is managed by the Directorate-General for "DG
|
|
89
|
+
identification"
|
|
90
|
+
</div>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
<div eclSiteFooterColumn>
|
|
94
|
+
<div eclSiteFooterSection>
|
|
95
|
+
<h2 eclSiteFooterTitle
|
|
96
|
+
[isSeparator]="true">
|
|
97
|
+
Contact us
|
|
98
|
+
</h2>
|
|
99
|
+
<ul eclSiteFooterList>
|
|
100
|
+
<li eclSiteFooterListItem>
|
|
101
|
+
<a eclLink
|
|
102
|
+
eclSiteFooterLink
|
|
103
|
+
[attr.aria-label]="'ecl.footer.CONTACT-INFO-DG' | translate"
|
|
104
|
+
variant="standalone"
|
|
105
|
+
routerLink="/">
|
|
106
|
+
{{ 'ecl.footer.CONTACT-INFO-DG' | translate }}
|
|
107
|
+
</a>
|
|
108
|
+
</li>
|
|
109
|
+
</ul>
|
|
110
|
+
</div>
|
|
111
|
+
<div eclSiteFooterSection>
|
|
112
|
+
<h2 eclSiteFooterTitle
|
|
113
|
+
[isSeparator]="true">
|
|
114
|
+
Follow us on
|
|
115
|
+
</h2>
|
|
116
|
+
<ul eclSiteFooterList
|
|
117
|
+
[isInline]="true">
|
|
118
|
+
<li eclSiteFooterListItem>
|
|
119
|
+
<a eclLink
|
|
120
|
+
eclSiteFooterLink
|
|
121
|
+
aria-label="Facebook"
|
|
122
|
+
variant="standalone"
|
|
123
|
+
routerLink="/">
|
|
124
|
+
<ecl-icon iconSet="social-media"
|
|
125
|
+
icon="facebook-negative"
|
|
126
|
+
size="xs">
|
|
127
|
+
</ecl-icon>
|
|
128
|
+
<span eclLinkLabel>Facebook</span>
|
|
129
|
+
</a>
|
|
130
|
+
</li>
|
|
131
|
+
<li eclSiteFooterListItem>
|
|
132
|
+
<a eclLink
|
|
133
|
+
eclSiteFooterLink
|
|
134
|
+
aria-label="Twitter"
|
|
135
|
+
variant="standalone"
|
|
136
|
+
routerLink="/">
|
|
137
|
+
<ecl-icon iconSet="social-media"
|
|
138
|
+
icon="twitter-negative"
|
|
139
|
+
size="xs">
|
|
140
|
+
</ecl-icon>
|
|
141
|
+
<span eclLinkLabel>Twitter</span>
|
|
142
|
+
</a>
|
|
143
|
+
</li>
|
|
144
|
+
<li eclSiteFooterListItem>
|
|
145
|
+
<a eclLink
|
|
146
|
+
eclSiteFooterLink
|
|
147
|
+
aria-label="Linkedin"
|
|
148
|
+
variant="standalone"
|
|
149
|
+
routerLink="/">
|
|
150
|
+
<ecl-icon iconSet="social-media"
|
|
151
|
+
icon="linkedin-negative"
|
|
152
|
+
size="xs">
|
|
153
|
+
</ecl-icon>
|
|
154
|
+
<span eclLinkLabel>Linkedin</span>
|
|
155
|
+
</a>
|
|
156
|
+
</li>
|
|
157
|
+
</ul>
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
<div eclSiteFooterColumn>
|
|
161
|
+
<div eclSiteFooterSection>
|
|
162
|
+
<h2 eclSiteFooterTitle
|
|
163
|
+
[isSeparator]="true">
|
|
164
|
+
{{ 'ecl.footer.ABOUT-US' | translate }}
|
|
165
|
+
</h2>
|
|
166
|
+
<ul eclSiteFooterList>
|
|
167
|
+
<li eclSiteFooterListItem>
|
|
168
|
+
<a eclLink
|
|
169
|
+
eclSiteFooterLink
|
|
170
|
+
[attr.aria-label]="'ecl.footer.INFO-ABOUT-DG' | translate"
|
|
171
|
+
variant="standalone"
|
|
172
|
+
routerLink="/">
|
|
173
|
+
{{ 'ecl.footer.INFO-ABOUT-DG' | translate }}
|
|
174
|
+
</a>
|
|
175
|
+
</li>
|
|
176
|
+
</ul>
|
|
177
|
+
</div>
|
|
178
|
+
<div eclSiteFooterSection>
|
|
179
|
+
<h2 eclSiteFooterTitle
|
|
180
|
+
[isSeparator]="true">
|
|
181
|
+
{{ 'ecl.footer.RELATED-SITES' | translate }}
|
|
182
|
+
</h2>
|
|
183
|
+
<ul eclSiteFooterList>
|
|
184
|
+
<li eclSiteFooterListItem>
|
|
185
|
+
<a eclLink
|
|
186
|
+
eclSiteFooterLink
|
|
187
|
+
aria-label="Related link 1"
|
|
188
|
+
variant="standalone"
|
|
189
|
+
routerLink="/">
|
|
190
|
+
Related link 1
|
|
191
|
+
</a>
|
|
192
|
+
</li>
|
|
193
|
+
<li eclSiteFooterListItem>
|
|
194
|
+
<a eclLink
|
|
195
|
+
eclSiteFooterLink
|
|
196
|
+
aria-label="Related link 2"
|
|
197
|
+
variant="standalone"
|
|
198
|
+
routerLink="/">
|
|
199
|
+
Related link 2
|
|
200
|
+
</a>
|
|
201
|
+
</li>
|
|
202
|
+
<li eclSiteFooterListItem>
|
|
203
|
+
<a eclLink
|
|
204
|
+
eclSiteFooterLink
|
|
205
|
+
aria-label="Related link 3"
|
|
206
|
+
variant="standalone"
|
|
207
|
+
routerLink="/">
|
|
208
|
+
Related link 3
|
|
209
|
+
</a>
|
|
210
|
+
</li>
|
|
211
|
+
<li eclSiteFooterListItem>
|
|
212
|
+
<a eclLink
|
|
213
|
+
eclSiteFooterLink
|
|
214
|
+
aria-label="Related link 4"
|
|
215
|
+
variant="standalone"
|
|
216
|
+
routerLink="/">
|
|
217
|
+
Related link 4
|
|
218
|
+
</a>
|
|
219
|
+
</li>
|
|
220
|
+
<li eclSiteFooterListItem>
|
|
221
|
+
<a eclLink
|
|
222
|
+
eclSiteFooterLink
|
|
223
|
+
aria-label="Related link 5"
|
|
224
|
+
variant="standalone"
|
|
225
|
+
routerLink="/">
|
|
226
|
+
Related link 5
|
|
227
|
+
</a>
|
|
228
|
+
</li>
|
|
229
|
+
</ul>
|
|
230
|
+
</div>
|
|
231
|
+
</div>
|
|
232
|
+
</div>
|
|
233
|
+
<div eclSiteFooterRow>
|
|
234
|
+
<div eclSiteFooterColumn>
|
|
235
|
+
<div eclSiteFooterSection
|
|
236
|
+
[isCondensed]="true">
|
|
237
|
+
<div eclSiteFooterContent>{{ 'ecl.footer.MORE-INFO' | translate }}:</div>
|
|
238
|
+
<ul eclSiteFooterList>
|
|
239
|
+
<li eclSiteFooterListItem>
|
|
240
|
+
<a eclLink
|
|
241
|
+
eclSiteFooterLink
|
|
242
|
+
aria-label="Class name 1"
|
|
243
|
+
variant="standalone"
|
|
244
|
+
routerLink="/">
|
|
245
|
+
Class name 1
|
|
246
|
+
</a>
|
|
247
|
+
</li>
|
|
248
|
+
<li eclSiteFooterListItem>
|
|
249
|
+
<a eclLink
|
|
250
|
+
eclSiteFooterLink
|
|
251
|
+
aria-label="Class name 2"
|
|
252
|
+
variant="standalone"
|
|
253
|
+
routerLink="/">
|
|
254
|
+
Class name 2
|
|
255
|
+
</a>
|
|
256
|
+
</li>
|
|
257
|
+
</ul>
|
|
258
|
+
</div>
|
|
259
|
+
</div>
|
|
260
|
+
</div>
|
|
261
|
+
</ecl-site-footer>
|
|
262
|
+
</ecl-app>
|
|
@@ -48,11 +48,6 @@
|
|
|
48
48
|
<h2 class="ecl-u-type-heading-2 ecl-u-mt-xl ecl-u-mb-none">Contact</h2>
|
|
49
49
|
|
|
50
50
|
<dl eclDescriptionList [isHorizontal]="true" class="ecl-u-mt-m">
|
|
51
|
-
<dt eclDescriptionListTerm>eUI Slack</dt>
|
|
52
|
-
<dd eclDescriptionListDefinition>
|
|
53
|
-
<a href="https://ec-eui.slack.com">https://ec-eui.slack.com</a>
|
|
54
|
-
</dd>
|
|
55
|
-
|
|
56
51
|
<dt eclDescriptionListTerm>Microsoft Teams</dt>
|
|
57
52
|
<dd eclDescriptionListDefinition>
|
|
58
53
|
<a href="https://teams.microsoft.com/l/team/19%3a2f5bb6b7d1e24c4aabaa62229d3e1955%40thread.tacv2/conversations?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1">
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-snapshot-1658923582025",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"private": true,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@eui/deps-base": "14.0.
|
|
21
|
+
"@eui/deps-base": "14.0.4-snapshot-1658923582025"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.4-snapshot-1658923582025",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"description": "eUI JEE Symfony app scripts",
|
|
6
6
|
"scripts": {
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"private": true,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@eui/deps-base": "14.0.
|
|
22
|
+
"@eui/deps-base": "14.0.4-snapshot-1658923582025"
|
|
23
23
|
}
|
|
24
24
|
}
|