@eui/cli 23.0.0-alpha.1 → 23.0.0-alpha.3
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/src/app/app.component.spec.ts +5 -5
- package/lib/skeletons/_angular/base/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/base/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +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 +2 -17
- 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-ec/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +1 -3
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.html +39 -19
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +1 -3
- package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +2 -2
- 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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "23.0.0-alpha.
|
|
3
|
+
"version": "23.0.0-alpha.3",
|
|
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.3",
|
|
50
|
+
"@eui/core": "23.0.0-alpha.3",
|
|
51
|
+
"@eui/styles": "23.0.0-alpha.3",
|
|
52
|
+
"@eui/components": "23.0.0-alpha.3",
|
|
53
|
+
"@eui/ecl": "23.0.0-alpha.3"
|
|
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.3",
|
|
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.3",
|
|
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
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { RouterModule, Routes } from '@angular/router';
|
|
3
|
-
|
|
4
|
-
import { HomeComponent } from './home.component';
|
|
5
|
-
|
|
6
|
-
const routes: Routes = [
|
|
7
|
-
{ path: '', component: HomeComponent },
|
|
8
|
-
];
|
|
9
|
-
|
|
10
|
-
@NgModule({
|
|
11
|
-
imports: [
|
|
12
|
-
RouterModule.forChild(routes)
|
|
13
|
-
],
|
|
14
|
-
})
|
|
15
|
-
export class HomeRoutingModule {}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
|
|
3
|
-
import { SharedModule } from '../../shared/shared.module';
|
|
4
|
-
|
|
5
|
-
import { HomeRoutingModule } from './home-routing.module';
|
|
6
|
-
|
|
7
|
-
import { HomeComponent } from './home.component';
|
|
8
|
-
|
|
9
|
-
@NgModule({
|
|
10
|
-
imports: [
|
|
11
|
-
SharedModule,
|
|
12
|
-
HomeRoutingModule,
|
|
13
|
-
],
|
|
14
|
-
declarations: [
|
|
15
|
-
HomeComponent,
|
|
16
|
-
],
|
|
17
|
-
})
|
|
18
|
-
export class Module {}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { Module1RoutingModule } from './module1-routing.module';
|
|
3
|
-
import { Module1Component } from './module1.component';
|
|
4
|
-
import { Page1Component } from './components/page1/page1.component';
|
|
5
|
-
import { Page2Component } from './components/page2/page2.component';
|
|
6
|
-
|
|
7
|
-
import { SharedModule } from '@shared/shared.module';
|
|
8
|
-
|
|
9
|
-
@NgModule({
|
|
10
|
-
imports: [
|
|
11
|
-
SharedModule,
|
|
12
|
-
Module1RoutingModule,
|
|
13
|
-
],
|
|
14
|
-
declarations: [
|
|
15
|
-
Module1Component,
|
|
16
|
-
Page1Component,
|
|
17
|
-
Page2Component,
|
|
18
|
-
],
|
|
19
|
-
})
|
|
20
|
-
export class Module {
|
|
21
|
-
}
|
package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { RouterModule, Routes } from '@angular/router';
|
|
3
|
-
import { Module2Component } from './module2.component';
|
|
4
|
-
|
|
5
|
-
const routes: Routes = [
|
|
6
|
-
{ path: '', component: Module2Component },
|
|
7
|
-
];
|
|
8
|
-
|
|
9
|
-
@NgModule({
|
|
10
|
-
imports: [
|
|
11
|
-
RouterModule.forChild([
|
|
12
|
-
{ path: '', component: Module2Component }
|
|
13
|
-
])
|
|
14
|
-
],
|
|
15
|
-
})
|
|
16
|
-
export class Module2RoutingModule {}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<ion-header>
|
|
2
|
-
<ion-toolbar color="branding">
|
|
3
|
-
<euim-toolbar [hasSidebarTrigger]="true">
|
|
4
|
-
<euim-toolbar-title>Module 2 - home</euim-toolbar-title>
|
|
5
|
-
</euim-toolbar>
|
|
6
|
-
</ion-toolbar>
|
|
7
|
-
</ion-header>
|
|
8
|
-
|
|
9
|
-
<ion-content class="ion-padding">
|
|
10
|
-
Module 2 page content
|
|
11
|
-
</ion-content>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { Module2RoutingModule } from './module2-routing.module';
|
|
3
|
-
import { Module2Component } from './module2.component';
|
|
4
|
-
|
|
5
|
-
import { SharedModule } from '@shared/shared.module';
|
|
6
|
-
|
|
7
|
-
@NgModule({
|
|
8
|
-
imports: [
|
|
9
|
-
SharedModule,
|
|
10
|
-
Module2RoutingModule,
|
|
11
|
-
],
|
|
12
|
-
declarations: [
|
|
13
|
-
Module2Component,
|
|
14
|
-
],
|
|
15
|
-
})
|
|
16
|
-
export class Module {
|
|
17
|
-
}
|
|
Binary file
|
|
@@ -1,10 +0,0 @@
|
|
|
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>
|