@eui/cli 14.0.3 → 14.0.4-snapshot-1661163930913

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.
@@ -1 +1 @@
1
- 14.0.3
1
+ 14.0.4-snapshot-1661163930913
@@ -21,6 +21,16 @@
21
21
  }
22
22
  },
23
23
  "architect": {
24
+ "lint": {
25
+ "builder": "@angular-eslint/builder:lint",
26
+ "options": {
27
+ "lintFilePatterns": [
28
+ "src/**/*.ts",
29
+ "src/**/*.html"
30
+ ],
31
+ "eslintConfig": "src/.eslintrc.json"
32
+ }
33
+ },
24
34
  "build": {
25
35
  "builder": "@angular-devkit/build-angular:browser",
26
36
  "options": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.3",
3
+ "version": "14.0.4-snapshot-1661163930913",
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.3"
23
+ "@eui/deps-base": "14.0.4-snapshot-1661163930913"
24
24
  }
25
25
  }
@@ -0,0 +1,118 @@
1
+ {
2
+ "root": true,
3
+ "ignorePatterns": [
4
+ "**/node_modules/**",
5
+ "**/dist/**",
6
+ "**/coverage/**",
7
+ "**/e2e/**",
8
+ "**/test/**"
9
+ ],
10
+ "overrides": [
11
+ {
12
+ "files": [
13
+ "*.ts"
14
+ ],
15
+ "parserOptions": {
16
+ "project": [
17
+ "tsconfig.json",
18
+ "e2e/tsconfig.json"
19
+ ],
20
+ "createDefaultProgram": true
21
+ },
22
+ "extends": [
23
+ "plugin:@angular-eslint/ng-cli-compat",
24
+ "plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
25
+ "plugin:@angular-eslint/template/process-inline-templates"
26
+ ],
27
+ "rules": {
28
+ "@angular-eslint/component-selector": [
29
+ "error",
30
+ {
31
+ "type": "element",
32
+ "prefix": ["app", "app"],
33
+ "style": "kebab-case"
34
+ }
35
+ ],
36
+ "@angular-eslint/directive-selector": [
37
+ "error",
38
+ {
39
+ "type": "attribute",
40
+ "prefix": ["app", "eui"],
41
+ "style": "camelCase"
42
+ }
43
+ ],
44
+ "@typescript-eslint/ban-ts-comment": "off",
45
+ "@typescript-eslint/ban-types": "error",
46
+ "@typescript-eslint/consistent-type-definitions": "off",
47
+ "@typescript-eslint/dot-notation": "off",
48
+ "@typescript-eslint/explicit-member-accessibility": [
49
+ "off",
50
+ {
51
+ "accessibility": "explicit"
52
+ }
53
+ ],
54
+ "@typescript-eslint/no-require-imports": "error",
55
+ "@typescript-eslint/no-unused-vars": "off",
56
+ "@typescript-eslint/no-var-requires": "error",
57
+ "@typescript-eslint/require-await": "error",
58
+ "brace-style": [
59
+ "error",
60
+ "1tbs"
61
+ ],
62
+ "id-blacklist": "off",
63
+ "id-match": "off",
64
+ "no-duplicate-case": "error",
65
+ "no-duplicate-imports": "off",
66
+ "no-invalid-this": "error",
67
+ "no-multiple-empty-lines": [
68
+ "error",
69
+ {
70
+ "max": 1
71
+ }
72
+ ],
73
+ "no-new-func": "error",
74
+ "no-redeclare": "off",
75
+ "@typescript-eslint/no-redeclare": [
76
+ "error"
77
+ ],
78
+ "no-template-curly-in-string": "error",
79
+ "no-underscore-dangle": "off",
80
+ "@typescript-eslint/naming-convention": [
81
+ "error",
82
+ {
83
+ "selector": "enum",
84
+ "format": [
85
+ "PascalCase",
86
+ "UPPER_CASE"
87
+ ]
88
+ }
89
+ ],
90
+ "@typescript-eslint/member-ordering": [
91
+ "error",
92
+ {
93
+ "default": [
94
+ "public-static-field",
95
+ "public-instance-field",
96
+ "private-static-field",
97
+ "private-instance-field",
98
+ "public-constructor",
99
+ "private-constructor",
100
+ "public-instance-method",
101
+ "protected-instance-method",
102
+ "private-instance-method"
103
+ ]
104
+ }
105
+ ]
106
+ }
107
+ },
108
+ {
109
+ "files": [
110
+ "*.html"
111
+ ],
112
+ "extends": [
113
+ "plugin:@angular-eslint/template/recommended"
114
+ ],
115
+ "rules": {}
116
+ }
117
+ ]
118
+ }
@@ -46,9 +46,7 @@ export class AppStarterService {
46
46
  return zip(
47
47
  this.fetchUserDetails(),
48
48
  ).pipe(
49
- switchMap(([userDetails]) => {
50
- return this.userService.init(userDetails);
51
- }));
49
+ switchMap(([userDetails]) => this.userService.init(userDetails)));
52
50
  }
53
51
 
54
52
  /**
@@ -35,7 +35,7 @@ export class AppComponent implements OnInit, OnDestroy {
35
35
  constructor(
36
36
  private store: Store<any>,
37
37
  ) {
38
- this.userState = <any>this.store.select(getUserState);
38
+ this.userState = this.store.select(getUserState);
39
39
  this.subs.push(this.userState.subscribe((user: UserState) => {
40
40
  this.userInfos = { ...user };
41
41
  console.log(user);
@@ -21,11 +21,9 @@ import { AppStarterService } from './app-starter.service';
21
21
  AppStarterService,
22
22
  {
23
23
  provide: APP_INITIALIZER,
24
- useFactory: (appStarterService) => {
25
- return () => new Promise<void>((resolve) => {
24
+ useFactory: (appStarterService) => () => new Promise<void>((resolve) => {
26
25
  appStarterService.start().subscribe(() => resolve());
27
- });
28
- },
26
+ }),
29
27
  deps: [AppStarterService],
30
28
  multi: true
31
29
  },
@@ -45,7 +45,7 @@ import { SharedModule } from '../shared/shared.module';
45
45
  },
46
46
  {
47
47
  provide: EUI_CONFIG_TOKEN,
48
- useValue: { appConfig: appConfig, environment: environment }
48
+ useValue: { appConfig, environment }
49
49
  },
50
50
  {
51
51
  // Sets the withCredentials on Ajax Request to send the JSESSIONID cookie to another domain.
@@ -14,7 +14,7 @@ export const REDUCER_TOKEN = new InjectionToken<any>('Registered Reducers');
14
14
  * There are some **reserved** slice of the state
15
15
  * that you **can not** use in your application ==> app |user | notification
16
16
  */
17
- /* tslint:disable-next-line */
17
+ // eslint-disable-next-line
18
18
  export interface AppState extends CoreState {
19
19
  // [key: string]: fromTaskManager.State | any;
20
20
  }
@@ -26,8 +26,6 @@ const rootReducer = Object.assign({}, coreReducers, {
26
26
  // [fromTaskManager.namespace]: fromTaskManager.reducers,
27
27
  });
28
28
 
29
- export function getReducers() {
30
- return rootReducer;
31
- }
29
+ export const getReducers = () => rootReducer;
32
30
 
33
31
  export const metaReducers: MetaReducer<AppState>[] = !environment.production ? [localStorageSync, storeFreeze] : [localStorageSync];
@@ -76,9 +76,9 @@ import 'zone.js/dist/zone'; // Included with Angular CLI.
76
76
  */
77
77
 
78
78
  /**
79
- * Date, currency, decimal and percent pipes.
80
- * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
81
- */
79
+ * Date, currency, decimal and percent pipes.
80
+ * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
81
+ */
82
82
  // import 'intl'; // Run `npm install --save intl`.
83
83
  /**
84
84
  * Need to import at least one locale-data with intl.
@@ -18,7 +18,7 @@ declare const __karma__: any;
18
18
  declare const require: any;
19
19
 
20
20
  // Prevent Karma from running prematurely.
21
- __karma__.loaded = function () {};
21
+ __karma__.loaded = () => {};
22
22
 
23
23
  // First, initialize the Angular testing environment.
24
24
  getTestBed().initTestEnvironment(
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.3",
3
+ "version": "14.0.4-snapshot-1661163930913",
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.3",
24
- "@eui/mobile-core": "14.0.0-beta.5",
25
- "@eui/mobile-styles": "14.0.0-beta.5"
23
+ "@eui/deps-base": "14.0.4-snapshot-1661163930913",
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",
3
+ "version": "14.0.4-snapshot-1661163930913",
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.3",
24
- "@eui/ecl-core": "14.0.1",
25
- "@eui/ecl-styles": "14.0.1"
23
+ "@eui/deps-base": "14.0.4-snapshot-1661163930913",
24
+ "@eui/ecl-core": "14.1.0-snapshot-1659106575700",
25
+ "@eui/ecl-styles": "14.1.0-snapshot-1659106575700"
26
26
  }
27
27
  }
@@ -1,32 +1,35 @@
1
- <ecl-app-harmonised>
2
- <ecl-site-header-harmonised group="2">
1
+ <ecl-app>
2
+ <ecl-site-header siteName="Site name">
3
+
3
4
  <div eclSiteHeaderEnvironment>Environment</div>
4
5
 
5
- <ecl-site-header-harmonised-action>
6
- <ecl-site-header-harmonised-login
7
- [isLoggedIn]="isLoggedIn"
6
+ <ecl-site-header-action>
7
+ <ecl-site-header-login
8
+ [isLoggedIn]="isLoggedIn"
8
9
  (login)="onLogin($event)">
9
- <p eclSiteHeaderHarmonisedLoginDescription>
10
+ <p eclSiteHeaderLoginDescription>
10
11
  {{ 'ecl.site-header.LOGGED-IN-AS' | translate }} {{ userInfos?.fullName }}
11
12
  </p>
12
- <hr eclSiteHeaderHarmonisedLoginSeparator />
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-harmonised-login>
17
+ </ecl-site-header-login>
18
+
19
+ <ecl-site-header-language></ecl-site-header-language>
17
20
 
18
- <ecl-site-header-harmonised-language></ecl-site-header-harmonised-language>
19
- <ecl-site-header-harmonised-search (search)="onSearch($event)"></ecl-site-header-harmonised-search>
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 group="2" (menuItemSelect)="onMenuItemSelected($event)">
23
- <ecl-menu-item label="Home" [isCurrent]="true"></ecl-menu-item>
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-harmonised>
51
+ </ecl-site-header>
49
52
 
50
- <ecl-page-header-harmonised group="2">
51
- <ecl-breadcrumb-harmonised>
52
- <ecl-breadcrumb-harmonised-segment>Home</ecl-breadcrumb-harmonised-segment>
53
- <ecl-breadcrumb-harmonised-segment>European Commission</ecl-breadcrumb-harmonised-segment>
54
- <ecl-breadcrumb-harmonised-segment [isCurrentPage]="true">ECL</ecl-breadcrumb-harmonised-segment>
55
- </ecl-breadcrumb-harmonised>
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 eclPageHeaderHarmonisedMeta>
58
- Auto generated template
60
+ <div eclPageHeaderMeta>
61
+ <span eclPageHeaderMetaItem>
62
+ Auto generated template
63
+ </span>
59
64
  </div>
60
- <h1 eclPageHeaderHarmonisedTitle>Europa Component Library </h1>
61
- <p eclPageHeaderHarmonisedDescription>
62
- 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.
63
- </p>
64
- </ecl-page-header-harmonised>
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-footer-harmonised group="2"></ecl-footer-harmonised>
71
- </ecl-app-harmonised>
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 &quot;DG
89
+ identification&quot;
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>
@@ -17,7 +17,7 @@
17
17
 
18
18
  <h2 class="ecl-u-type-heading-2 ecl-u-mt-xl ecl-u-mb-none">eUI/ECL integration</h2>
19
19
  <p class="ecl-u-type-paragraph ecl-u-mt-m ecl-u-mb-none">
20
- eUI provides <a href="http://www.angular.io">Angular</a> implementation of <a href="https://ec.europa.eu/component-library/">ECL components,</a> enabling projects based on angular, get all benefints of having ECL compliant web application.
20
+ eUI provides <a eclLink href="http://www.angular.io">Angular</a> implementation of <a eclLink href="https://ec.europa.eu/component-library/">ECL components,</a> enabling projects based on angular, get all benefints of having ECL compliant web application.
21
21
  </p>
22
22
 
23
23
  <p class="ecl-u-type-paragraph ecl-u-mt-m ecl-u-mb-none">
@@ -32,42 +32,37 @@
32
32
  </p>
33
33
 
34
34
  <ul eclUnorderedList>
35
- <li eclUnorderedListItem><a href="https://ec.europa.eu/component-library">ECL reference documentation</a></li>
36
- <li eclUnorderedListItem><a href="https://eui.ecdevops.eu/">eUI library</a></li>
35
+ <li eclUnorderedListItem><a eclLink href="https://ec.europa.eu/component-library">ECL reference documentation</a></li>
36
+ <li eclUnorderedListItem><a eclLink href="https://eui.ecdevops.eu/">eUI library</a></li>
37
37
  </ul>
38
38
 
39
39
  <h2 class="ecl-u-type-heading-2 ecl-u-mt-xl ecl-u-mb-none">Support</h2>
40
40
  <p class="ecl-u-type-paragraph ecl-u-mt-m ecl-u-mb-none">
41
- For support in building a European Commission website using the ECL, please contact <a href="mailto:Europamanagement@ec.europa.eu">COMM Europa Management</a> (CEM)
41
+ For support in building a European Commission website using the ECL, please contact <a eclLink href="mailto:Europamanagement@ec.europa.eu">COMM Europa Management</a> (CEM)
42
42
  </p>
43
43
 
44
44
  <p>For support in building a European Commission website using the eui/ECL integration, please contact
45
- <a href="DIGIT-EUI-SUPPORT@ec.europa.eu">DIGIT eUI Support</a> team.
45
+ <a eclLink href="DIGIT-EUI-SUPPORT@ec.europa.eu">DIGIT eUI Support</a> team.
46
46
  </p>
47
47
 
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
- <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">
53
+ <a eclLink href="https://teams.microsoft.com/l/team/19%3a2f5bb6b7d1e24c4aabaa62229d3e1955%40thread.tacv2/conversations?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1">
59
54
  https://teams.microsoft.com
60
55
  </a>
61
56
  </dd>
62
57
 
63
58
  <dt eclDescriptionListTerm>DIGIT eUI Support</dt>
64
59
  <dd eclDescriptionListDefinition>
65
- <a href="mailto:DIGIT-EUI-SUPPORT@ec.europa.eu">DIGIT-EUI-SUPPORT@ec.europa.eu</a>
60
+ <a eclLink href="mailto:DIGIT-EUI-SUPPORT@ec.europa.eu">DIGIT-EUI-SUPPORT@ec.europa.eu</a>
66
61
  </dd>
67
62
 
68
63
  <dt eclDescriptionListTerm>COMM Europa Management</dt>
69
64
  <dd eclDescriptionListDefinition>
70
- <a href="mailto:Europamanagement@ec.europa.eu">Europamanagement@ec.europa.eu</a>
65
+ <a eclLink href="mailto:Europamanagement@ec.europa.eu">Europamanagement@ec.europa.eu</a>
71
66
  </dd>
72
67
  </dl>
73
68
  </main>
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.3",
3
+ "version": "14.0.4-snapshot-1661163930913",
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.3"
21
+ "@eui/deps-base": "14.0.4-snapshot-1661163930913"
22
22
  }
23
23
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "14.0.3",
3
+ "version": "14.0.4-snapshot-1661163930913",
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.3"
22
+ "@eui/deps-base": "14.0.4-snapshot-1661163930913"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@eui/cli",
3
- "version": "14.0.3",
4
- "tag": "latest",
3
+ "version": "14.0.4-snapshot-1661163930913",
4
+ "tag": "snapshot",
5
5
  "license": "EUPL-1.1",
6
6
  "description": "eUI CLI app generator",
7
7
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
14
14
  },
15
15
  "dependencies": {
16
- "@eui/tools": "5.3.37"
16
+ "@eui/tools": "5.3.40"
17
17
  },
18
18
  "preferGlobal": true,
19
19
  "homepage": "https://eui.ecdevops.eu",
@@ -1,17 +0,0 @@
1
- {
2
- "extends": "../tslint.json",
3
- "rules": {
4
- "directive-selector": [
5
- true,
6
- "attribute",
7
- "app",
8
- "camelCase"
9
- ],
10
- "component-selector": [
11
- true,
12
- "element",
13
- "app",
14
- "kebab-case"
15
- ]
16
- }
17
- }
@@ -1,128 +0,0 @@
1
- {
2
- "extends": [
3
- "tslint-eslint-rules"
4
- ],
5
- "rulesDirectory": [
6
- "node_modules/codelyzer"
7
- ],
8
- "rules": {
9
- "array-bracket-spacing": [true, "never"],
10
- "callable-types": true,
11
- "class-name": true,
12
- "comment-format": [
13
- true,
14
- "check-space"
15
- ],
16
- "curly": true,
17
- "eofline": true,
18
- "forin": true,
19
- "import-destructuring-spacing": true,
20
- "import-spacing": true,
21
- "indent": [
22
- true,
23
- "spaces",
24
- 4
25
- ],
26
- "interface-over-type-literal": false,
27
- "label-position": true,
28
- "max-line-length": [
29
- true,
30
- 140
31
- ],
32
- "member-access": false,
33
- "member-ordering": [
34
- true,
35
- {
36
- "order": [
37
- "static-field",
38
- "instance-field",
39
- "constructor",
40
- "public-instance-method",
41
- "protected-instance-method",
42
- "private-instance-method"
43
- ]
44
- }
45
- ],
46
- "no-arg": true,
47
- "no-bitwise": true,
48
- "no-consecutive-blank-lines": [true, 1],
49
- "no-console": [
50
- true,
51
- "debug",
52
- "info",
53
- "time",
54
- "timeEnd",
55
- "trace"
56
- ],
57
- "no-construct": true,
58
- "no-debugger": true,
59
- "no-duplicate-variable": true,
60
- "no-empty": false,
61
- "no-empty-interface": true,
62
- "no-eval": true,
63
- "no-multi-spaces": [
64
- true
65
- ],
66
- "no-shadowed-variable": true,
67
- "no-string-literal": false,
68
- "no-string-throw": true,
69
- "no-switch-case-fall-through": true,
70
- "no-trailing-whitespace": true,
71
- "no-unused-expression": true,
72
- "no-var-keyword": true,
73
- "object-curly-spacing": [true,"always"],
74
- "object-literal-sort-keys": false,
75
- "one-line": [
76
- true,
77
- "check-open-brace",
78
- "check-catch",
79
- "check-else",
80
- "check-whitespace"
81
- ],
82
- "quotemark": [
83
- true,
84
- "single"
85
- ],
86
- "radix": true,
87
- "semicolon": [
88
- true,
89
- "always"
90
- ],
91
- "triple-equals": [
92
- true,
93
- "allow-null-check"
94
- ],
95
- "typedef-whitespace": [
96
- true,
97
- {
98
- "call-signature": "nospace",
99
- "index-signature": "nospace",
100
- "parameter": "nospace",
101
- "property-declaration": "nospace",
102
- "variable-declaration": "nospace"
103
- }
104
- ],
105
- "unified-signatures": true,
106
- "variable-name": false,
107
- "whitespace": [
108
- true,
109
- "check-branch",
110
- "check-decl",
111
- "check-operator",
112
- "check-separator",
113
- "check-type"
114
- ],
115
-
116
- "directive-selector": [true, "attribute", "app", "camelCase"],
117
- "no-input-rename": true,
118
- "no-output-rename": true,
119
- "use-pipe-transform-interface": true,
120
- "component-class-suffix": true,
121
- "directive-class-suffix": true,
122
- "no-access-missing-member": false,
123
- "component-selector": [true, "element", "app", "kebab-case"],
124
- "no-forward-ref": false,
125
- "pipe-prefix": [true, "camelCase", "app"]
126
- }
127
- }
128
-