@eui/cli 23.0.0-alpha.1 → 23.0.0-alpha.2
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/README.md +36 -3
- package/bin/eui-cli.js +9 -0
- package/bin/scripts/new.js +8 -0
- package/lib/build.js +3 -11
- package/lib/cli.js +84 -7
- package/lib/generators.js +18 -0
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base-mobile/angular.json +4 -4
- package/lib/skeletons/_angular/base-mobile/package.json +29 -15
- package/lib/skeletons/_angular/base-mobile/src/app/app-routing.module.ts +5 -5
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +41 -19
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +24 -24
- package/lib/skeletons/_angular/base-mobile/src/app/app.config.ts +0 -80
- package/lib/skeletons/_angular/base-mobile/src/app/app.module.ts +2 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +0 -15
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.html +8 -3
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.ts +5 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/{about-routing.module.ts → about.routes.ts} +2 -13
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts +5 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.ts +12 -8
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.ts +6 -4
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.ts +6 -3
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.ts +5 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +44 -5
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.ts +69 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.routes.ts +6 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +24 -5
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.ts +5 -4
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +24 -5
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.ts +5 -3
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.ts +4 -4
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/{module1-routing.module.ts → module1.routes.ts} +2 -10
- package/lib/skeletons/_angular/base-mobile/src/app/features/welcome/welcome.component.html +32 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/welcome/welcome.component.ts +9 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/welcome/welcome.routes.ts +6 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/docs/sample-pdf-mobile.pdf +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-1024.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-114.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-120.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-128.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-144.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-152.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-16.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-180.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-192.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-32.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-36.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-384.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-48.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-512.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-57.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-60.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-72.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-76.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/app-icon-96.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1125-2436.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1170-2532.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1179-2556.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2208.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2688.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1284-2778.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1290-2796.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1488-2266.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1536-2048.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1620-2160.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1640-2360.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2224.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2388.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-2048-2732.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-640-1136.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-750-1334.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-828-1792.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1125-2436.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1170-2532.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1179-2556.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2208.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2688.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1284-2778.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1290-2796.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1488-2266.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1536-2048.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1620-2160.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1640-2360.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2224.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2388.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-2048-2732.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-640-1136.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-750-1334.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-828-1792.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/images/app-icon.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/images/image.png +0 -0
- package/lib/skeletons/_angular/base-mobile/src/index.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/main.ts +5 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.html +57 -34
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.html +39 -19
- package/lib/skeletons/_angular/options/pnpm/package.json +28 -28
- package/package.json +3 -6
- package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +0 -32
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.module.ts +0 -30
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.html +0 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.ts +0 -103
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home-routing.module.ts +0 -15
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.module.ts +0 -18
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.module.ts +0 -21
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts +0 -16
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +0 -11
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.ts +0 -7
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.module.ts +0 -17
- package/lib/skeletons/_angular/base-mobile/src/assets/docs/pdf-test.pdf +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/images/app-icon.svg +0 -10
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1125-2436.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1170-2532.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1179-2556.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2208.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2688.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1284-2778.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1290-2796.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1488-2266.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1536-2048.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1620-2160.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1640-2360.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2224.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2388.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-2048-2732.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-640-1136.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-750-1334.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-828-1792.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1125-2436.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1170-2532.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1179-2556.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2208.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2688.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1284-2778.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1290-2796.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1488-2266.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1536-2048.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1620-2160.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1640-2360.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2224.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2388.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-2048-2732.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-640-1136.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-750-1334.png
CHANGED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-828-1792.png
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
<link rel="apple-touch-startup-image" media="screen and (device-width: 744px) and (device-height: 1133px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="assets/icons/apple-splash-portrait-1488-2266.png">
|
|
62
62
|
|
|
63
63
|
<link rel="manifest" href="manifest.webmanifest">
|
|
64
|
-
<meta name="
|
|
64
|
+
<meta name="mobile-web-app-capable" content="yes"/>
|
|
65
65
|
<meta name="apple-mobile-web-app-status-bar-style" content="default"/>
|
|
66
66
|
</head>
|
|
67
67
|
|
|
@@ -5,6 +5,11 @@ import { preInitApp } from "@eui/core";
|
|
|
5
5
|
import { AppModule } from "./app/app.module";
|
|
6
6
|
import { environment } from "./environments/environment";
|
|
7
7
|
|
|
8
|
+
import { addIcons } from 'ionicons';
|
|
9
|
+
import * as allIcons from 'ionicons/icons';
|
|
10
|
+
|
|
11
|
+
addIcons(allIcons);
|
|
12
|
+
|
|
8
13
|
if (environment.production) {
|
|
9
14
|
enableProdMode();
|
|
10
15
|
}
|
|
@@ -48,30 +48,50 @@
|
|
|
48
48
|
</ecl-menu>
|
|
49
49
|
</ecl-site-header>
|
|
50
50
|
|
|
51
|
-
<
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
51
|
+
<div eclPageHeader descriptionPosition="bottom">
|
|
52
|
+
<picture eclPageHeaderBackgroundPicture>
|
|
53
|
+
<img eclPageHeaderBackgroundImage src="https://inno-ecl.s3.amazonaws.com/media/examples/example-image.jpg"
|
|
54
|
+
alt="Europe flag" />
|
|
55
|
+
</picture>
|
|
56
|
+
<div eclPageHeaderContainer>
|
|
57
|
+
<div eclContainer>
|
|
58
|
+
<ecl-breadcrumb>
|
|
59
|
+
<ol eclBreadcrumbContainer>
|
|
60
|
+
<li eclBreadcrumbSegment href="http://ec.europa.eu">Home</li>
|
|
61
|
+
<li eclBreadcrumbSegment routerLink="about">About the European Commission</li>
|
|
62
|
+
<li eclBreadcrumbSegment routerLink="structure">Organisational structure</li>
|
|
63
|
+
<li eclBreadcrumbSegment routerLink="org">How the Commission is organized</li>
|
|
64
|
+
<li eclBreadcrumbSegment isCurrentPage>News</li>
|
|
65
|
+
</ol>
|
|
66
|
+
</ecl-breadcrumb>
|
|
67
|
+
<h1 eclPageHeaderTitle>Consectetur adipiscing elit</h1>
|
|
68
|
+
<ul eclPageHeaderMeta>
|
|
69
|
+
<li eclPageHeaderMetaItem>News article</li>
|
|
70
|
+
<li eclPageHeaderMetaItem>10 March 2025</li>
|
|
71
|
+
<li eclPageHeaderMetaItem>
|
|
72
|
+
<ecl-icon icon="location" size="2xs" eclContentBlockSecondaryMetaIcon></ecl-icon>Brussels
|
|
73
|
+
</li>
|
|
74
|
+
<li eclPageHeaderMetaItem>
|
|
75
|
+
<ecl-icon icon="clock" size="2xs" eclContentBlockSecondaryMetaIcon></ecl-icon>1 minute read
|
|
76
|
+
</li>
|
|
77
|
+
<li eclPageHeaderMetaItem>
|
|
78
|
+
Research center
|
|
79
|
+
</li>
|
|
80
|
+
</ul>
|
|
73
81
|
</div>
|
|
74
|
-
</
|
|
82
|
+
</div>
|
|
83
|
+
<div eclPageHeaderDescriptionContainer position="bottom">
|
|
84
|
+
<picture eclPageHeaderDescriptionPicture>
|
|
85
|
+
<img eclPageHeaderDescriptionImage src="https://inno-ecl.s3.amazonaws.com/media/examples/example-image.jpg"
|
|
86
|
+
alt="Europe flag">
|
|
87
|
+
</picture>
|
|
88
|
+
<p eclPageHeaderDescription>
|
|
89
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nec ullamcorper mi. Morbi interdum
|
|
90
|
+
fermentum tempus. Nam nec rhoncus risus,<a eclLink routerLink="/">
|
|
91
|
+
eget dictum elit</a>. Vestibulum gravida tincidunt venenatis.
|
|
92
|
+
</p>
|
|
93
|
+
</div>
|
|
94
|
+
</div>
|
|
75
95
|
|
|
76
96
|
<div class="ecl-u-pv-xl">
|
|
77
97
|
<router-outlet></router-outlet>
|
|
@@ -92,17 +112,20 @@
|
|
|
92
112
|
<span eclSiteFooterDescriptionName>[name of the manager of the site]</span>
|
|
93
113
|
</div>
|
|
94
114
|
<ecl-social-media-follow eclSiteFooterSocialMedia>
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
115
|
+
<ecl-social-media-follow-item icon="mastodon" href="https://ec.social-network.europa.eu/@EUCommission"
|
|
116
|
+
isInverted></ecl-social-media-follow-item>
|
|
117
|
+
<ecl-social-media-follow-item icon="linkedin" href="https://www.linkedin.com/company/european-commission"
|
|
118
|
+
isInverted></ecl-social-media-follow-item>
|
|
119
|
+
<ecl-social-media-follow-item icon="bluesky" href="https://bsky.app/profile/ec.europa.eu"
|
|
120
|
+
isInverted></ecl-social-media-follow-item>
|
|
121
|
+
<ecl-social-media-follow-item icon="facebook" href="https://www.facebook.com/EuropeanCommission"
|
|
122
|
+
isInverted></ecl-social-media-follow-item>
|
|
123
|
+
<ecl-social-media-follow-item icon="youtube" href="https://www.youtube.com/user/eutube"
|
|
124
|
+
isInverted></ecl-social-media-follow-item>
|
|
125
|
+
<ecl-social-media-follow-item icon="chain"
|
|
126
|
+
href="https://european-union.europa.eu/contact-eu/social-media-channels_en"
|
|
127
|
+
isInverted></ecl-social-media-follow-item>
|
|
128
|
+
</ecl-social-media-follow>
|
|
106
129
|
</div>
|
|
107
130
|
<div eclSiteFooterSection variant="links">
|
|
108
131
|
<div eclSiteFooterRow>
|
|
@@ -48,30 +48,50 @@
|
|
|
48
48
|
</ecl-menu>
|
|
49
49
|
</ecl-site-header>
|
|
50
50
|
|
|
51
|
-
<
|
|
52
|
-
<
|
|
53
|
-
<
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
51
|
+
<div eclPageHeader descriptionPosition="bottom">
|
|
52
|
+
<picture eclPageHeaderBackgroundPicture>
|
|
53
|
+
<img eclPageHeaderBackgroundImage src="https://inno-ecl.s3.amazonaws.com/media/examples/example-image.jpg"
|
|
54
|
+
alt="Europe flag" />
|
|
55
|
+
</picture>
|
|
56
|
+
<div eclPageHeaderContainer>
|
|
57
|
+
<div eclContainer>
|
|
58
|
+
<ecl-breadcrumb>
|
|
59
|
+
<ol eclBreadcrumbContainer>
|
|
60
|
+
<li eclBreadcrumbSegment href="http://ec.europa.eu">Home</li>
|
|
61
|
+
<li eclBreadcrumbSegment routerLink="about">About the European Commission</li>
|
|
62
|
+
<li eclBreadcrumbSegment routerLink="structure">Organisational structure</li>
|
|
63
|
+
<li eclBreadcrumbSegment routerLink="org">How the Commission is organized</li>
|
|
64
|
+
<li eclBreadcrumbSegment isCurrentPage>News</li>
|
|
65
|
+
</ol>
|
|
66
|
+
</ecl-breadcrumb>
|
|
67
|
+
<h1 eclPageHeaderTitle>Consectetur adipiscing elit</h1>
|
|
68
|
+
<ul eclPageHeaderMeta>
|
|
69
|
+
<li eclPageHeaderMetaItem>News article</li>
|
|
70
|
+
<li eclPageHeaderMetaItem>10 March 2025</li>
|
|
71
|
+
<li eclPageHeaderMetaItem>
|
|
72
|
+
<ecl-icon icon="location" size="2xs" eclContentBlockSecondaryMetaIcon></ecl-icon>Brussels
|
|
73
|
+
</li>
|
|
74
|
+
<li eclPageHeaderMetaItem>
|
|
75
|
+
<ecl-icon icon="clock" size="2xs" eclContentBlockSecondaryMetaIcon></ecl-icon>1 minute read
|
|
76
|
+
</li>
|
|
77
|
+
<li eclPageHeaderMetaItem>
|
|
78
|
+
Research center
|
|
79
|
+
</li>
|
|
80
|
+
</ul>
|
|
65
81
|
</div>
|
|
66
|
-
<h1 eclPageHeaderTitle>Europa Component Library</h1>
|
|
67
82
|
</div>
|
|
68
|
-
<div eclPageHeaderDescriptionContainer>
|
|
83
|
+
<div eclPageHeaderDescriptionContainer position="bottom">
|
|
84
|
+
<picture eclPageHeaderDescriptionPicture>
|
|
85
|
+
<img eclPageHeaderDescriptionImage
|
|
86
|
+
src="https://inno-ecl.s3.amazonaws.com/media/examples/example-image.jpg" alt="Europe flag">
|
|
87
|
+
</picture>
|
|
69
88
|
<p eclPageHeaderDescription>
|
|
70
|
-
|
|
71
|
-
|
|
89
|
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque nec ullamcorper mi. Morbi interdum
|
|
90
|
+
fermentum tempus. Nam nec rhoncus risus,<a eclLink routerLink="/">
|
|
91
|
+
eget dictum elit</a>. Vestibulum gravida tincidunt venenatis.
|
|
72
92
|
</p>
|
|
73
93
|
</div>
|
|
74
|
-
</
|
|
94
|
+
</div>
|
|
75
95
|
|
|
76
96
|
<div class="ecl-u-pv-xl">
|
|
77
97
|
<router-outlet></router-outlet>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "23.0.0-alpha.
|
|
3
|
+
"version": "23.0.0-alpha.2",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -16,21 +16,21 @@
|
|
|
16
16
|
},
|
|
17
17
|
"private": true,
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@angular/animations": "21.
|
|
20
|
-
"@angular/common": "21.
|
|
21
|
-
"@angular/compiler": "21.
|
|
22
|
-
"@angular/core": "21.
|
|
23
|
-
"@angular/forms": "21.
|
|
24
|
-
"@angular/platform-browser": "21.
|
|
25
|
-
"@angular/platform-browser-dynamic": "21.
|
|
26
|
-
"@angular/router": "21.
|
|
27
|
-
"@angular/elements": "21.
|
|
28
|
-
"@angular/language-service": "21.
|
|
29
|
-
"@angular/service-worker": "21.
|
|
30
|
-
"@angular/cdk": "21.
|
|
31
|
-
"@angular/material": "21.
|
|
32
|
-
"@angular/material-moment-adapter": "21.
|
|
33
|
-
"@angular-devkit/build-angular": "21.
|
|
19
|
+
"@angular/animations": "21.2.5",
|
|
20
|
+
"@angular/common": "21.2.5",
|
|
21
|
+
"@angular/compiler": "21.2.5",
|
|
22
|
+
"@angular/core": "21.2.5",
|
|
23
|
+
"@angular/forms": "21.2.5",
|
|
24
|
+
"@angular/platform-browser": "21.2.5",
|
|
25
|
+
"@angular/platform-browser-dynamic": "21.2.5",
|
|
26
|
+
"@angular/router": "21.2.5",
|
|
27
|
+
"@angular/elements": "21.2.5",
|
|
28
|
+
"@angular/language-service": "21.2.5",
|
|
29
|
+
"@angular/service-worker": "21.2.5",
|
|
30
|
+
"@angular/cdk": "21.2.3",
|
|
31
|
+
"@angular/material": "21.2.3",
|
|
32
|
+
"@angular/material-moment-adapter": "21.2.3",
|
|
33
|
+
"@angular-devkit/build-angular": "21.2.3",
|
|
34
34
|
"rxjs": "7.8.2",
|
|
35
35
|
"tslib": "2.8.1",
|
|
36
36
|
"zone.js": "0.15.1",
|
|
@@ -44,21 +44,21 @@
|
|
|
44
44
|
"cleave.js": "1.6.0",
|
|
45
45
|
"hammerjs": "2.0.8",
|
|
46
46
|
"pikaday": "1.8.2",
|
|
47
|
-
"lodash-es": "4.17.
|
|
47
|
+
"lodash-es": "4.17.23",
|
|
48
48
|
"localforage": "1.10.0",
|
|
49
|
-
"@eui/base": "23.0.0-alpha.
|
|
50
|
-
"@eui/core": "23.0.0-alpha.
|
|
51
|
-
"@eui/styles": "23.0.0-alpha.
|
|
52
|
-
"@eui/components": "23.0.0-alpha.
|
|
53
|
-
"@eui/ecl": "23.0.0-alpha.
|
|
49
|
+
"@eui/base": "23.0.0-alpha.2",
|
|
50
|
+
"@eui/core": "23.0.0-alpha.2",
|
|
51
|
+
"@eui/styles": "23.0.0-alpha.2",
|
|
52
|
+
"@eui/components": "23.0.0-alpha.2",
|
|
53
|
+
"@eui/ecl": "23.0.0-alpha.2"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@angular/
|
|
57
|
-
"@angular/
|
|
58
|
-
"@angular/cli": "21.
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"typescript": "
|
|
56
|
+
"@angular/compiler-cli": "21.2.5",
|
|
57
|
+
"@angular/build": "21.2.3",
|
|
58
|
+
"@angular/cli": "21.2.3",
|
|
59
|
+
"ng-packagr": "23.0.0-alpha.1",
|
|
60
|
+
"@eui/cli": "23.0.0-alpha.2",
|
|
61
|
+
"typescript": "~6.0.2",
|
|
62
62
|
"npm-run-all": "4.1.5",
|
|
63
63
|
"json-server": "1.0.0-beta.3",
|
|
64
64
|
"nodemon": "3.1.10",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "23.0.0-alpha.
|
|
3
|
+
"version": "23.0.0-alpha.2",
|
|
4
4
|
"tag": "next",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI CLI app generator & tools",
|
|
@@ -19,16 +19,13 @@
|
|
|
19
19
|
"fs-extra": "9.0.0",
|
|
20
20
|
"glob": "7.2.3",
|
|
21
21
|
"rimraf": "6.1.3",
|
|
22
|
-
"cross-spawn": "7.0.6"
|
|
23
|
-
"svg-sprite": "2.0.4",
|
|
24
|
-
"imagemin": "7.0.1",
|
|
25
|
-
"imagemin-svgo": "9.0.0"
|
|
22
|
+
"cross-spawn": "7.0.6"
|
|
26
23
|
},
|
|
27
24
|
"preferGlobal": true,
|
|
28
25
|
"homepage": "https://eui.ecdevops.eu",
|
|
29
26
|
"author": "ec.europa.eui@gmail.com",
|
|
30
27
|
"engines": {
|
|
31
|
-
"node": "^20.19.0 || ^22.12.0 || >=24.
|
|
28
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.15.0",
|
|
32
29
|
"yarn": ">=1.22.4 <2"
|
|
33
30
|
}
|
|
34
31
|
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { MetaReducer } from '@ngrx/store';
|
|
3
|
-
import { storeFreeze } from 'ngrx-store-freeze';
|
|
4
|
-
import { reducers as coreReducers, localStorageSync } from '@eui/core';
|
|
5
|
-
import { CoreState, getAppState } from '@eui/core';
|
|
6
|
-
|
|
7
|
-
import { environment } from '../../../environments/environment';
|
|
8
|
-
|
|
9
|
-
export const REDUCER_TOKEN = new InjectionToken<any>('Registered Reducers');
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Define here your app state
|
|
13
|
-
*
|
|
14
|
-
* [IMPORTANT]
|
|
15
|
-
* There are some **reserved** slice of the state
|
|
16
|
-
* that you **can not** use in your application ==> app |user | notification
|
|
17
|
-
*/
|
|
18
|
-
// eslint-disable-next-line
|
|
19
|
-
export interface AppState extends CoreState {
|
|
20
|
-
// [key: string]: fromTaskManager.State | any;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
/**
|
|
24
|
-
* Define here the reducers of your app
|
|
25
|
-
*/
|
|
26
|
-
const rootReducer = Object.assign({}, coreReducers, {
|
|
27
|
-
// [fromTaskManager.namespace]: fromTaskManager.reducers,
|
|
28
|
-
});
|
|
29
|
-
|
|
30
|
-
export const getReducers = () => rootReducer;
|
|
31
|
-
|
|
32
|
-
export const metaReducers: MetaReducer<AppState>[] = !environment.production ? [localStorageSync, storeFreeze] : [localStorageSync];
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { AboutRoutingModule } from './about-routing.module';
|
|
3
|
-
import { AboutComponent } from './about.component';
|
|
4
|
-
import { ChangeLogComponent } from './change-log/changelog.component';
|
|
5
|
-
import { LicenceDetailsComponent } from './licence-details/licence-details.component';
|
|
6
|
-
import { PrivacystatementComponent } from './privacy-statement/privacy-statement.component';
|
|
7
|
-
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
8
|
-
import { HelpSupportComponent } from './help-support/help-support.component';
|
|
9
|
-
import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component';
|
|
10
|
-
import { SharedModule } from '@shared/shared.module';
|
|
11
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
12
|
-
|
|
13
|
-
@NgModule({
|
|
14
|
-
imports: [
|
|
15
|
-
SharedModule,
|
|
16
|
-
AboutRoutingModule,
|
|
17
|
-
TranslateModule,
|
|
18
|
-
],
|
|
19
|
-
declarations: [
|
|
20
|
-
AboutComponent,
|
|
21
|
-
ChangeLogComponent,
|
|
22
|
-
PrivacystatementComponent,
|
|
23
|
-
LegalNoticeComponent,
|
|
24
|
-
HelpSupportComponent,
|
|
25
|
-
LicenceDetailsComponent,
|
|
26
|
-
OpensourceLicencesComponent
|
|
27
|
-
],
|
|
28
|
-
})
|
|
29
|
-
export class Module {
|
|
30
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<ion-header>
|
|
2
|
-
<ion-toolbar color="branding">
|
|
3
|
-
<euim-toolbar>
|
|
4
|
-
<euim-toolbar-title>{{'euim.about.privacy.statement' | translate }}</euim-toolbar-title>
|
|
5
|
-
</euim-toolbar>
|
|
6
|
-
</ion-toolbar>
|
|
7
|
-
</ion-header>
|
|
8
|
-
<ion-content>
|
|
9
|
-
<euim-about-content-loading webUrl="https://www.europeana.eu/en/rights/privacy-policy">
|
|
10
|
-
</euim-about-content-loading>
|
|
11
|
-
</ion-content>
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
@Component({
|
|
4
|
-
templateUrl: './privacy-statement.component.html'
|
|
5
|
-
})
|
|
6
|
-
export class PrivacystatementComponent {
|
|
7
|
-
changeLogs = [
|
|
8
|
-
{
|
|
9
|
-
version: 'v1.2.0',
|
|
10
|
-
sections: [
|
|
11
|
-
{
|
|
12
|
-
name: 'New features',
|
|
13
|
-
items: [
|
|
14
|
-
'Lorem ipsum sit amelor dot alersi',
|
|
15
|
-
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
16
|
-
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
17
|
-
],
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
name: 'Improvements',
|
|
21
|
-
items: [
|
|
22
|
-
'Nuevo funcciono uno',
|
|
23
|
-
'Apprenati koleos amedo del corossa',
|
|
24
|
-
'Aperanci todo formas y formulas',
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
name: 'Bugfixes',
|
|
29
|
-
items: [
|
|
30
|
-
'Fixato lorem ipsum et amelori',
|
|
31
|
-
'Correctus magnus magnificus',
|
|
32
|
-
'Reparus extra petiti textus',
|
|
33
|
-
],
|
|
34
|
-
},
|
|
35
|
-
],
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
version: 'v1.1.2',
|
|
39
|
-
sections: [
|
|
40
|
-
{
|
|
41
|
-
name: 'New features',
|
|
42
|
-
items: [
|
|
43
|
-
'Lorem ipsum sit amelor dot alersi',
|
|
44
|
-
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
45
|
-
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
46
|
-
],
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
name: 'Improvements',
|
|
50
|
-
items: [
|
|
51
|
-
'Nuevo funcciono uno',
|
|
52
|
-
],
|
|
53
|
-
},
|
|
54
|
-
{
|
|
55
|
-
name: 'Bugfixes',
|
|
56
|
-
items: [],
|
|
57
|
-
},
|
|
58
|
-
],
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
version: 'v1.1.0',
|
|
62
|
-
sections: [
|
|
63
|
-
{
|
|
64
|
-
name: 'New features',
|
|
65
|
-
items: [
|
|
66
|
-
'Home page',
|
|
67
|
-
'Main menu',
|
|
68
|
-
],
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
name: 'Improvements',
|
|
72
|
-
items: [
|
|
73
|
-
'Nuevo funcciono uno',
|
|
74
|
-
],
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
name: 'Bugfixes',
|
|
78
|
-
items: [],
|
|
79
|
-
},
|
|
80
|
-
],
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
version: 'v1.0.1',
|
|
84
|
-
sections: [
|
|
85
|
-
{
|
|
86
|
-
name: 'New features',
|
|
87
|
-
items: [
|
|
88
|
-
'Initial version',
|
|
89
|
-
],
|
|
90
|
-
},
|
|
91
|
-
{
|
|
92
|
-
name: 'Improvements',
|
|
93
|
-
items: [],
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
name: 'bugfixes',
|
|
97
|
-
items: [],
|
|
98
|
-
},
|
|
99
|
-
],
|
|
100
|
-
},
|
|
101
|
-
];
|
|
102
|
-
|
|
103
|
-
}
|