@eui/cli 18.2.4 → 18.2.5-snapshot-1734336466898
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/base-mobile/src/app/app-routing.module.ts +1 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +6 -4
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +4 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +4 -4
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about-routing.module.ts +40 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.html +69 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.ts +19 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.module.ts +28 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts +102 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.html +20 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.ts +75 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.html +12 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.ts +20 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/privacy-statement/privacy-statement.component.ts +103 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +1 -1
- package/lib/skeletons/_angular/base-mobile/src/assets/docs/pdf-test.pdf +0 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/en.json +13 -1
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/es.json +12 -1
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/fr.json +13 -1
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/tr.json +13 -1
- package/lib/skeletons/_angular/base-mobile/src/assets/images/app-icon.svg +10 -0
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +3 -3
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
18.2.
|
|
1
|
+
18.2.5-snapshot-1734336466898
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.5-snapshot-1734336466898",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"private": true,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@eui/deps-base": "18.2.
|
|
24
|
+
"@eui/deps-base": "18.2.5-snapshot-1734336466898"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@angular-eslint/builder": "18.3.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.5-snapshot-1734336466898",
|
|
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": "18.2.
|
|
24
|
-
"@eui/mobile-core": "18.0.0-next.
|
|
25
|
-
"@eui/mobile-styles": "18.0.0-next.
|
|
23
|
+
"@eui/deps-base": "18.2.5-snapshot-1734336466898",
|
|
24
|
+
"@eui/mobile-core": "18.0.0-next.23",
|
|
25
|
+
"@eui/mobile-styles": "18.0.0-next.23"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -7,6 +7,7 @@ const routes: Routes = [
|
|
|
7
7
|
{ path: 'screen/home', loadChildren: () => import('./features/home/home.module').then(m => m.Module) },
|
|
8
8
|
{ path: 'screen/module1', loadChildren: () => import('./features/module1/module1.module').then(m => m.Module) },
|
|
9
9
|
{ path: 'screen/module2', loadChildren: () => import('./features/module2/module2.module').then(m => m.Module) },
|
|
10
|
+
{ path: 'screen/about', loadChildren: () => import('./features/about/about.module').then(m => m.Module) },
|
|
10
11
|
];
|
|
11
12
|
|
|
12
13
|
@NgModule({
|
|
@@ -2,9 +2,11 @@
|
|
|
2
2
|
<euim-sidebar id="mainSidebar">
|
|
3
3
|
<euim-user-profile>
|
|
4
4
|
<euim-user-profile-avatar>
|
|
5
|
-
<euim-avatar
|
|
6
|
-
<
|
|
7
|
-
|
|
5
|
+
<euim-avatar color="branding" size="m" fill="solid">
|
|
6
|
+
<euim-avatar-icon>
|
|
7
|
+
<ion-icon name="person-circle"></ion-icon>
|
|
8
|
+
</euim-avatar-icon>
|
|
9
|
+
</euim-avatar>
|
|
8
10
|
</euim-user-profile-avatar>
|
|
9
11
|
<euim-user-profile-infos>
|
|
10
12
|
<euim-user-profile-infos-item>
|
|
@@ -15,7 +17,7 @@
|
|
|
15
17
|
</euim-user-profile-infos-item>
|
|
16
18
|
</euim-user-profile-infos>
|
|
17
19
|
<euim-user-profile-action>
|
|
18
|
-
<euim-language-selector color="
|
|
20
|
+
<euim-language-selector color="branding"></euim-language-selector>
|
|
19
21
|
</euim-user-profile-action>
|
|
20
22
|
</euim-user-profile>
|
|
21
23
|
<euim-sidebar-content>
|
|
@@ -39,6 +39,10 @@ export class AppComponent implements OnDestroy {
|
|
|
39
39
|
},
|
|
40
40
|
{ label: 'Module Page', url: 'screen/module2',
|
|
41
41
|
icon: 'document-outline', iconColor: 'dark', },
|
|
42
|
+
{
|
|
43
|
+
label: 'About this app', url: 'screen/about',
|
|
44
|
+
icon: 'phone-portrait-outline', iconColor: 'dark',
|
|
45
|
+
},
|
|
42
46
|
|
|
43
47
|
];
|
|
44
48
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { TranslateModule } from '@ngx-translate/core';
|
|
3
3
|
import { StoreModule } from '@ngrx/store';
|
|
4
|
-
|
|
4
|
+
import { EffectsModule } from '@ngrx/effects';
|
|
5
5
|
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
|
|
6
6
|
|
|
7
7
|
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
EuLoginSessionTimeoutHandlingInterceptor,
|
|
16
16
|
CoreModule as EuiCoreModule,
|
|
17
17
|
translateConfig,
|
|
18
|
-
|
|
18
|
+
CoreModuleEffects,
|
|
19
19
|
EUI_CONFIG_TOKEN,
|
|
20
20
|
} from '@eui/core';
|
|
21
21
|
|
|
@@ -31,10 +31,10 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
31
31
|
HttpClientModule,
|
|
32
32
|
SharedModule,
|
|
33
33
|
EuiCoreModule.forRoot(),
|
|
34
|
-
|
|
34
|
+
EffectsModule.forRoot([...CoreModuleEffects]),
|
|
35
35
|
TranslateModule.forRoot(translateConfig),
|
|
36
36
|
StoreModule.forRoot(),
|
|
37
|
-
|
|
37
|
+
StoreModule.forRoot(REDUCER_TOKEN, { metaReducers }),
|
|
38
38
|
!environment.production ? StoreDevtoolsModule.instrument({ maxAge: 50 }) : [],
|
|
39
39
|
IonicModule.forRoot({mode: 'md'}),
|
|
40
40
|
],
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { RouterModule, Routes } from '@angular/router';
|
|
3
|
+
import { AboutComponent } from './about.component';
|
|
4
|
+
import { ChangeLogComponent } from './change-log/changelog.component';
|
|
5
|
+
import { PrivacystatementComponent } from './privacy-statement/privacy-statement.component';
|
|
6
|
+
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
7
|
+
import { HelpSupportComponent } from './help-support/help-support.component';
|
|
8
|
+
import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component';
|
|
9
|
+
|
|
10
|
+
const routes: Routes = [
|
|
11
|
+
{
|
|
12
|
+
path: '',
|
|
13
|
+
component: AboutComponent,
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
path: 'change-log',
|
|
17
|
+
component: ChangeLogComponent
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
path: 'privacy-statement',
|
|
21
|
+
component: PrivacystatementComponent
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
path: 'legal-notice',
|
|
25
|
+
component: LegalNoticeComponent
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
path: 'help-support',
|
|
29
|
+
component: HelpSupportComponent
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
path: 'opensource-licences',
|
|
33
|
+
component: OpensourceLicencesComponent,
|
|
34
|
+
}
|
|
35
|
+
];
|
|
36
|
+
|
|
37
|
+
@NgModule({
|
|
38
|
+
imports: [RouterModule.forChild(routes)],
|
|
39
|
+
})
|
|
40
|
+
export class AboutRoutingModule {}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.text' | translate }}</euim-toolbar-title>
|
|
5
|
+
<euim-toolbar-action-items>
|
|
6
|
+
<ion-label class="eui-u-mr-m" (click)="toggleQRCode()" slot="end">
|
|
7
|
+
<strong>
|
|
8
|
+
@if (showCode) {
|
|
9
|
+
{{ 'euim.about.hide.qrcode' | translate }}
|
|
10
|
+
}
|
|
11
|
+
@if (!showCode) {
|
|
12
|
+
{{ 'euim.about.show.qrcode' | translate }}
|
|
13
|
+
}
|
|
14
|
+
</strong>
|
|
15
|
+
</ion-label>
|
|
16
|
+
</euim-toolbar-action-items>
|
|
17
|
+
</euim-toolbar>
|
|
18
|
+
</ion-toolbar>
|
|
19
|
+
|
|
20
|
+
<euim-header-details color="branding">
|
|
21
|
+
<div euimHeaderDetailsIcon>
|
|
22
|
+
<euim-toolbar-qrcode [showCode]="showCode" logoUrl="./assets/images/app-icon.svg"
|
|
23
|
+
qrCodeUrl="https://github.com/Cordobo/angularx-qrcode"></euim-toolbar-qrcode>
|
|
24
|
+
</div>
|
|
25
|
+
<div euimHeaderDetailsTitle><strong>eUI / mobile</strong></div>
|
|
26
|
+
<div euimHeaderDetailsMeta>{{'euim.about.version' | translate }}</div>
|
|
27
|
+
<div euimHeaderDetailsMeta>{{ 'euim.about.builton' | translate }} 12.03.2024, 16:30</div>
|
|
28
|
+
</euim-header-details>
|
|
29
|
+
</ion-header>
|
|
30
|
+
<ion-content>
|
|
31
|
+
<euim-about>
|
|
32
|
+
|
|
33
|
+
<ion-list>
|
|
34
|
+
<ion-list-header>
|
|
35
|
+
<ion-label>{{ 'euim.aboutapp.text' | translate }}</ion-label>
|
|
36
|
+
</ion-list-header>
|
|
37
|
+
<ion-item button (click)="onNavigate('/screen/about/change-log')">
|
|
38
|
+
<ion-icon name="build-outline" slot="start"></ion-icon>
|
|
39
|
+
<ion-label>
|
|
40
|
+
<div euimLabel>{{'euim.about.changelog' | translate }}</div>
|
|
41
|
+
</ion-label>
|
|
42
|
+
</ion-item>
|
|
43
|
+
<ion-item button (click)="onNavigate('/screen/about/privacy-statement')">
|
|
44
|
+
<ion-icon name="finger-print-sharp" slot="start"></ion-icon>
|
|
45
|
+
<ion-label>
|
|
46
|
+
<div euimLabel>{{'euim.about.privacy.statement' | translate }}</div>
|
|
47
|
+
</ion-label>
|
|
48
|
+
</ion-item>
|
|
49
|
+
<ion-item button (click)="onNavigate('/screen/about/opensource-licences')">
|
|
50
|
+
<ion-icon name="ribbon-outline" slot="start"></ion-icon>
|
|
51
|
+
<ion-label>
|
|
52
|
+
<div euimLabel>{{'euim.about.opensource.licences' | translate }}</div>
|
|
53
|
+
</ion-label>
|
|
54
|
+
</ion-item>
|
|
55
|
+
<ion-item button (click)="onNavigate('/screen/about/legal-notice')">
|
|
56
|
+
<ion-icon name="library-outline" slot="start"></ion-icon>
|
|
57
|
+
<ion-label>
|
|
58
|
+
<div euimLabel>{{'euim.about.legal.notice' | translate }}</div>
|
|
59
|
+
</ion-label>
|
|
60
|
+
</ion-item>
|
|
61
|
+
<ion-item button (click)="onNavigate('/screen/about/help-support')">
|
|
62
|
+
<ion-icon name="mail-outline" slot="start"></ion-icon>
|
|
63
|
+
<ion-label>
|
|
64
|
+
<div euimLabel>{{'euim.about.help.support' | translate }}</div>
|
|
65
|
+
</ion-label>
|
|
66
|
+
</ion-item>
|
|
67
|
+
</ion-list>
|
|
68
|
+
</euim-about>
|
|
69
|
+
</ion-content>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
templateUrl: './about.component.html'
|
|
6
|
+
})
|
|
7
|
+
export class AboutComponent {
|
|
8
|
+
showCode = false;
|
|
9
|
+
|
|
10
|
+
constructor(
|
|
11
|
+
private navCtrl: NavController,
|
|
12
|
+
) {}
|
|
13
|
+
toggleQRCode(): void {
|
|
14
|
+
this.showCode = !this.showCode;
|
|
15
|
+
}
|
|
16
|
+
onNavigate(url: string) {
|
|
17
|
+
this.navCtrl.navigateForward(url);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
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 { PrivacystatementComponent } from './privacy-statement/privacy-statement.component';
|
|
6
|
+
import { LegalNoticeComponent } from './legal-notice/legal-notice.component';
|
|
7
|
+
import { HelpSupportComponent } from './help-support/help-support.component';
|
|
8
|
+
import { OpensourceLicencesComponent } from './opensource-licences/opensource-licences.component';
|
|
9
|
+
import { SharedModule } from '@shared/shared.module';
|
|
10
|
+
import { TranslateModule } from '@ngx-translate/core';
|
|
11
|
+
|
|
12
|
+
@NgModule({
|
|
13
|
+
imports: [
|
|
14
|
+
SharedModule,
|
|
15
|
+
AboutRoutingModule,
|
|
16
|
+
TranslateModule,
|
|
17
|
+
],
|
|
18
|
+
declarations: [
|
|
19
|
+
AboutComponent,
|
|
20
|
+
ChangeLogComponent,
|
|
21
|
+
PrivacystatementComponent,
|
|
22
|
+
LegalNoticeComponent,
|
|
23
|
+
HelpSupportComponent,
|
|
24
|
+
OpensourceLicencesComponent
|
|
25
|
+
],
|
|
26
|
+
})
|
|
27
|
+
export class Module {
|
|
28
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.changelog' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-changelog [changeLogs]="changeLogs">
|
|
10
|
+
</euim-changelog>
|
|
11
|
+
</ion-content>
|
package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
@Component({
|
|
3
|
+
templateUrl: './changelog.component.html'
|
|
4
|
+
})
|
|
5
|
+
export class ChangeLogComponent {
|
|
6
|
+
changeLogs = [
|
|
7
|
+
{
|
|
8
|
+
version: 'v1.2.0',
|
|
9
|
+
sections: [
|
|
10
|
+
{
|
|
11
|
+
name: 'New features',
|
|
12
|
+
items: [
|
|
13
|
+
'Lorem ipsum sit amelor dot alersi',
|
|
14
|
+
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
15
|
+
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
16
|
+
],
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
name: 'Improvements',
|
|
20
|
+
items: [
|
|
21
|
+
'Nuevo funcciono uno',
|
|
22
|
+
'Apprenati koleos amedo del corossa',
|
|
23
|
+
'Aperanci todo formas y formulas',
|
|
24
|
+
],
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: 'Bugfixes',
|
|
28
|
+
items: [
|
|
29
|
+
'Fixato lorem ipsum et amelori',
|
|
30
|
+
'Correctus magnus magnificus',
|
|
31
|
+
'Reparus extra petiti textus',
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
],
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
version: 'v1.1.2',
|
|
38
|
+
sections: [
|
|
39
|
+
{
|
|
40
|
+
name: 'New features',
|
|
41
|
+
items: [
|
|
42
|
+
'Lorem ipsum sit amelor dot alersi',
|
|
43
|
+
'Addenadum, des ameliori dora cantine imaginum des cornes',
|
|
44
|
+
'Prioridari modulo EXANTI pero alumnides monitoro alere umo quorum pano',
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
name: 'Improvements',
|
|
49
|
+
items: [
|
|
50
|
+
'Nuevo funcciono uno',
|
|
51
|
+
],
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
name: 'Bugfixes',
|
|
55
|
+
items: [],
|
|
56
|
+
},
|
|
57
|
+
],
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
version: 'v1.1.0',
|
|
61
|
+
sections: [
|
|
62
|
+
{
|
|
63
|
+
name: 'New features',
|
|
64
|
+
items: [
|
|
65
|
+
'Home page',
|
|
66
|
+
'Main menu',
|
|
67
|
+
],
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
name: 'Improvements',
|
|
71
|
+
items: [
|
|
72
|
+
'Nuevo funcciono uno',
|
|
73
|
+
],
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
name: 'Bugfixes',
|
|
77
|
+
items: [],
|
|
78
|
+
},
|
|
79
|
+
],
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
version: 'v1.0.1',
|
|
83
|
+
sections: [
|
|
84
|
+
{
|
|
85
|
+
name: 'New features',
|
|
86
|
+
items: [
|
|
87
|
+
'Initial version',
|
|
88
|
+
],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
name: 'Improvements',
|
|
92
|
+
items: [],
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
name: 'bugfixes',
|
|
96
|
+
items: [],
|
|
97
|
+
},
|
|
98
|
+
],
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
|
|
102
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.help.support' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
|
|
7
|
+
<euim-alert-message color="branding">
|
|
8
|
+
<ion-icon name="person-circle" slotStart></ion-icon>
|
|
9
|
+
{{ alertInfos.title }}
|
|
10
|
+
|
|
11
|
+
<ion-button [href]="alertInfos.btnLink" slotEnd size="small" fill="outline">
|
|
12
|
+
<strong>{{ alertInfos.btnTitle }}</strong>
|
|
13
|
+
</ion-button>
|
|
14
|
+
</euim-alert-message>
|
|
15
|
+
</ion-toolbar>
|
|
16
|
+
</ion-header>
|
|
17
|
+
<ion-content>
|
|
18
|
+
<euim-help-support [helpAndSupportItems]="helpAndSupportItems">
|
|
19
|
+
</euim-help-support>
|
|
20
|
+
</ion-content>
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
@Component({
|
|
4
|
+
templateUrl: './help-support.component.html'
|
|
5
|
+
})
|
|
6
|
+
export class HelpSupportComponent {
|
|
7
|
+
alertInfos = {
|
|
8
|
+
icon: 'person-circle',
|
|
9
|
+
title: 'Looking for staff member?',
|
|
10
|
+
btnLink: '.',
|
|
11
|
+
btnTitle: 'FIND PERSON'
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
helpAndSupportItems = [
|
|
15
|
+
{
|
|
16
|
+
sectionTitle: 'CONTACT US',
|
|
17
|
+
items: [
|
|
18
|
+
{
|
|
19
|
+
title: '+352 123 45 67890',
|
|
20
|
+
phone: '+352 123 45 67890',
|
|
21
|
+
subtitle: 'Customer service',
|
|
22
|
+
startIcon: 'call',
|
|
23
|
+
hasBottomLine: true
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
title: '+32 123 45 67890',
|
|
27
|
+
phone: '+32 123 45 67890',
|
|
28
|
+
subtitle: 'Helpdesk support',
|
|
29
|
+
startIcon: 'call',
|
|
30
|
+
hasBottomLine: true
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
title: 'digit-eui-support@ec.europa.eu',
|
|
34
|
+
mail: 'digit-eui-support@ec.europa.eu',
|
|
35
|
+
subtitle: 'Helpdesk support',
|
|
36
|
+
startIcon: 'at',
|
|
37
|
+
hasBottomLine: true
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
title: 'EC Microsoft Teams',
|
|
41
|
+
link: 'https://teams.microsoft.com/l/channel/19%3a6db7a6cef52340eb91d67b8d75db2523%40thread.tacv2/%25E2%259D%2593%25E2%259D%2593%2520%2520HELPDESK%2520and%2520SUPPORT?groupId=fb6def72-c57b-4e8f-a82e-49be65d6e1f5&tenantId=b24c8b06-522c-46fe-9080-70926f8dddb1',
|
|
42
|
+
subtitle: 'Microsoft Teams helpdesk channel',
|
|
43
|
+
startIcon: 'people'
|
|
44
|
+
},
|
|
45
|
+
],
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
sectionTitle: 'SUPPORT MATERIALS',
|
|
49
|
+
items: [
|
|
50
|
+
{
|
|
51
|
+
title: 'eUI / mobile manual',
|
|
52
|
+
subtitle: 'Getting started with library',
|
|
53
|
+
link: 'https://euidev.ecdevops.eu/eui-showcase-mobile-18.x/home',
|
|
54
|
+
startIcon: 'book',
|
|
55
|
+
endIcon: 'link'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
title: 'EU Login',
|
|
59
|
+
subtitle: 'User manual',
|
|
60
|
+
link: 'https://webgate.ec.europa.eu/cas/help.html',
|
|
61
|
+
startIcon: 'book',
|
|
62
|
+
endIcon: 'link'
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
title: 'FAQ',
|
|
66
|
+
subtitle: 'Frequently asked questions',
|
|
67
|
+
link: 'https://ec.europa.eu/sustainable-finance-taxonomy/faq',
|
|
68
|
+
startIcon: 'book',
|
|
69
|
+
endIcon: 'link'
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
}
|
|
73
|
+
];
|
|
74
|
+
|
|
75
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.legal.notice' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-about-content-loading>
|
|
10
|
+
<euim-pdf-viewer url="assets/docs/pdf-test.pdf"></euim-pdf-viewer>
|
|
11
|
+
</euim-about-content-loading>
|
|
12
|
+
</ion-content>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar>
|
|
4
|
+
<euim-toolbar-title>{{ 'euim.about.opensource.licences' | translate }}</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
<ion-content>
|
|
9
|
+
<euim-opensource-licences [items]="items" (clickItem)="onClickedItems($event)">
|
|
10
|
+
</euim-opensource-licences>
|
|
11
|
+
</ion-content>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
@Component({
|
|
4
|
+
templateUrl: './opensource-licences.component.html'
|
|
5
|
+
})
|
|
6
|
+
export class OpensourceLicencesComponent {
|
|
7
|
+
items = [
|
|
8
|
+
{ name: 'ionic-framework' },
|
|
9
|
+
{ name: 'angular-framework' },
|
|
10
|
+
{ name: 'swiper.js' },
|
|
11
|
+
{ name: 'ng2-pdf-viewer' },
|
|
12
|
+
{ name: 'file-saver' },
|
|
13
|
+
|
|
14
|
+
];
|
|
15
|
+
|
|
16
|
+
onClickedItems(clickedItem: string[]): void {
|
|
17
|
+
console.log('Selected Item - ', clickedItem);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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>
|
|
@@ -0,0 +1,103 @@
|
|
|
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
|
+
}
|
|
Binary file
|
|
@@ -9,5 +9,17 @@
|
|
|
9
9
|
"euim.language-list.SELECT-LANGUAGE-EXT": "Change language. Current language is {{ currentLang }}",
|
|
10
10
|
"euim.language-list.EU-LANGUAGES": "Official EU languages",
|
|
11
11
|
"euim.language-list.NON-EU-LANGUAGES": "Other languages",
|
|
12
|
-
"euim.language-list.ENGLISH": "English"
|
|
12
|
+
"euim.language-list.ENGLISH": "English",
|
|
13
|
+
"euim.about.text" : "About",
|
|
14
|
+
"euim.aboutapp.text" : "ABOUT THIS APP",
|
|
15
|
+
"euim.about.hide.qrcode" : "HIDE QR CODE",
|
|
16
|
+
"euim.about.show.qrcode" : "SHOW QR CODE",
|
|
17
|
+
"euim.about.builton" : "Built on",
|
|
18
|
+
"euim.about.version" : "version",
|
|
19
|
+
"euim.about.changelog" : "Change Log",
|
|
20
|
+
"euim.about.opensource.licences" : "Open source Licences",
|
|
21
|
+
"euim.about.legal.notice" : "Legal Notice",
|
|
22
|
+
"euim.about.licence.details" : "Licence Details",
|
|
23
|
+
"euim.about.help.support" : "Help & Support",
|
|
24
|
+
"euim.about.privacy.statement" : "Privacy Statement"
|
|
13
25
|
}
|
|
@@ -9,5 +9,16 @@
|
|
|
9
9
|
"euim.language-list.SELECT-LANGUAGE-EXT": "Cambiar idioma, el idioma actual es {{ currentLang }}",
|
|
10
10
|
"euim.language-list.EU-LANGUAGES": "Idiomas oficiales de la UE",
|
|
11
11
|
"euim.language-list.NON-EU-LANGUAGES": "Otros idiomas",
|
|
12
|
-
"euim.language-list.ENGLISH": "Inglés"
|
|
12
|
+
"euim.language-list.ENGLISH": "Inglés",
|
|
13
|
+
"euim.aboutapp.text" : "ACERCA DE ESTA APLICACIÓN",
|
|
14
|
+
"euim.about.hide.qrcode": "OCULTAR CÓDIGO QR",
|
|
15
|
+
"euim.about.show.qrcode": "MOSTRAR CÓDIGO QR",
|
|
16
|
+
"euim.about.builton": "Construido en",
|
|
17
|
+
"euim.about.version": "versión",
|
|
18
|
+
"euim.about.changelog": "Registro de cambios",
|
|
19
|
+
"euim.about.opensource.licences": "Licencias de código abierto",
|
|
20
|
+
"euim.about.licence.details" : "Detalles de la Licencia",
|
|
21
|
+
"euim.about.legal.notice": "Aviso Legal",
|
|
22
|
+
"euim.about.help.support": "Ayuda y soporte",
|
|
23
|
+
"euim.about.privacy.statement" : "Declaración de Privacidad"
|
|
13
24
|
}
|
|
@@ -9,5 +9,17 @@
|
|
|
9
9
|
"euim.language-list.SELECT-LANGUAGE-EXT": "Changer de langue, la langue actuelle est {{ currentLang }}",
|
|
10
10
|
"euim.language-list.EU-LANGUAGES": "Langues officielles de l'UE",
|
|
11
11
|
"euim.language-list.NON-EU-LANGUAGES": "Autres langues",
|
|
12
|
-
"euim.language-list.ENGLISH": "Anglais"
|
|
12
|
+
"euim.language-list.ENGLISH": "Anglais",
|
|
13
|
+
"euim.about.text": "À propos de",
|
|
14
|
+
"euim.aboutapp.text" : "À PROPOS DE CETTE APPLICATION",
|
|
15
|
+
"euim.about.hide.qrcode": "MASQUER LE CODE QR",
|
|
16
|
+
"euim.about.show.qrcode": "AFFICHER LE CODE QR",
|
|
17
|
+
"euim.about.builton": "Construit sur",
|
|
18
|
+
"euim.about.version": "version",
|
|
19
|
+
"euim.about.changelog": "Journal des modifications",
|
|
20
|
+
"euim.about.opensource.licences": "Licences open source",
|
|
21
|
+
"euim.about.legal.notice" : "Mentions Légales",
|
|
22
|
+
"euim.about.licence.details" : "Détails de la Licence",
|
|
23
|
+
"euim.about.help.support": "Aide et support",
|
|
24
|
+
"euim.about.privacy.statement": "Déclaration de Confidentialité"
|
|
13
25
|
}
|
|
@@ -9,5 +9,17 @@
|
|
|
9
9
|
"euim.language-list.SELECT-LANGUAGE-EXT": "Dili değiştir. Mevcut dil: {{ currentLang }}",
|
|
10
10
|
"euim.language-list.EU-LANGUAGES": "AB resmi dilleri",
|
|
11
11
|
"euim.language-list.NON-EU-LANGUAGES": "Diğer diller",
|
|
12
|
-
"euim.language-list.ENGLISH": "İngilizce"
|
|
12
|
+
"euim.language-list.ENGLISH": "İngilizce",
|
|
13
|
+
"euim.about.text": "Hakkında",
|
|
14
|
+
"euim.aboutapp.text" : "BU UYGULAMA HAKKINDA",
|
|
15
|
+
"euim.about.hide.qrcode": "QR KODU GİZLE",
|
|
16
|
+
"euim.about.show.qrcode": "QR KODU GÖSTER",
|
|
17
|
+
"euim.about.builton": "Üzerine kurulmuş",
|
|
18
|
+
"euim.about.version": "sürüm",
|
|
19
|
+
"euim.about.changelog": "Değişiklik Kaydı",
|
|
20
|
+
"euim.about.opensource.licences": "Açık Kaynak Lisansları",
|
|
21
|
+
"euim.about.licence.details" : "Lisans Detayları",
|
|
22
|
+
"euim.about.legal.notice": "Yasal Bildirim",
|
|
23
|
+
"euim.about.help.support": "Yardım ve Destek",
|
|
24
|
+
"euim.about.privacy.statement" : "Gizlilik Beyanı"
|
|
13
25
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="512" height="512" fill="url(#paint0_linear_3357_34543)"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M169.907 313.852V123.368H126.315V339.769L256 412.211L385.684 339.769V123.368H342.093V313.852L256 361.944L169.907 313.852ZM277.795 123.368V282.835H234.204V123.368H277.795Z" fill="white"/>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient id="paint0_linear_3357_34543" x1="256" y1="0" x2="256" y2="512" gradientUnits="userSpaceOnUse">
|
|
6
|
+
<stop stop-color="#50A0FF"/>
|
|
7
|
+
<stop offset="1" stop-color="#004494"/>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
</defs>
|
|
10
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "18.2.
|
|
3
|
+
"version": "18.2.5-snapshot-1734336466898",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"description": "eUI JEE Symfony app scripts",
|
|
6
6
|
"scripts": {
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"private": true,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@eui/deps-base": "18.2.
|
|
21
|
+
"@eui/deps-base": "18.2.5-snapshot-1734336466898"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "18.2.
|
|
4
|
-
"tag": "
|
|
3
|
+
"version": "18.2.5-snapshot-1734336466898",
|
|
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": "6.21.
|
|
16
|
+
"@eui/tools": "6.21.14"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"@eui/tools": "^6.0.0",
|