@eui/cli 21.0.0-alpha.4 → 21.0.0-alpha.40
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 +1 -1
- package/bin/eui-cli.js +67 -0
- package/bin/scripts/build-app.js +12 -0
- package/bin/scripts/lint-app.js +22 -0
- package/bin/scripts/new.js +39 -0
- package/bin/scripts/serve-app.js +12 -0
- package/lib/app-utils/build.js +176 -0
- package/lib/app-utils/projects.js +41 -0
- package/lib/app-utils/serve.js +78 -0
- package/lib/build.js +130 -0
- package/lib/cli.js +140 -0
- package/lib/config.js +59 -0
- package/lib/generators.js +72 -0
- package/lib/install.js +45 -0
- package/lib/maven-build/build.xml +115 -0
- package/lib/maven-build/lib/ant-contrib-20061014.jar +0 -0
- package/lib/maven-build/pom.xml +64 -0
- package/lib/post-build.js +31 -0
- package/lib/skeletons/_angular/base/.browserslistrc +16 -0
- package/lib/skeletons/_angular/base/.editorconfig +16 -0
- package/lib/skeletons/_angular/base/README.md +26 -0
- package/lib/skeletons/_angular/base/angular.json +129 -0
- package/lib/skeletons/_angular/base/gitignore_TO_REPLACE +51 -0
- package/lib/skeletons/_angular/base/mock/app/models/user.js +6 -0
- package/lib/skeletons/_angular/base/mock/app/routes/index.js +5 -0
- package/lib/skeletons/_angular/base/mock/app/routes/user_routes.js +44 -0
- package/lib/skeletons/_angular/base/mock/db/db.json +10 -0
- package/lib/skeletons/_angular/base/mock/server.js +23 -0
- package/lib/skeletons/_angular/base/package.json +39 -0
- package/lib/skeletons/_angular/base/proxy-mock.conf.json +6 -0
- package/lib/skeletons/_angular/base/proxy.conf.json +6 -0
- package/lib/skeletons/_angular/base/src/.eslintrc.json +121 -0
- package/lib/skeletons/_angular/base/src/app/app-starter.service.spec.ts +68 -0
- package/lib/skeletons/_angular/base/src/app/app-starter.service.ts +68 -0
- package/lib/skeletons/_angular/base/src/app/app.component.html +35 -0
- package/lib/skeletons/_angular/base/src/app/app.component.spec.ts +60 -0
- package/lib/skeletons/_angular/base/src/app/app.component.ts +35 -0
- package/lib/skeletons/_angular/base/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/base/src/app/app.routes.ts +9 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.html +41 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +17 -0
- package/lib/skeletons/_angular/base/src/app/features/home/home.routes.ts +6 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page1/page1.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/components/page2/page2.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module1/module1.routes.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.html +7 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.component.ts +10 -0
- package/lib/skeletons/_angular/base/src/app/features/module2/module2.routes.ts +6 -0
- package/lib/skeletons/_angular/base/src/app/shared/testing/router.mock.ts +18 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-dev.json +8 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config-prod.json +8 -0
- package/lib/skeletons/_angular/base/src/assets/config/env-json-config.json +7 -0
- package/lib/skeletons/_angular/base/src/assets/i18n/en.json +7 -0
- package/lib/skeletons/_angular/base/src/assets/i18n/fr.json +7 -0
- package/lib/skeletons/_angular/base/src/config/global.ts +33 -0
- package/lib/skeletons/_angular/base/src/config/index.ts +8 -0
- package/lib/skeletons/_angular/base/src/config/modules.ts +7 -0
- package/lib/skeletons/_angular/base/src/dummy.spec.ts +6 -0
- package/lib/skeletons/_angular/base/src/environments/environment.prod.ts +11 -0
- package/lib/skeletons/_angular/base/src/environments/environment.ts +15 -0
- package/lib/skeletons/_angular/base/src/favicon.ico +0 -0
- package/lib/skeletons/_angular/base/src/index.html +20 -0
- package/lib/skeletons/_angular/base/src/karma.conf.js +47 -0
- package/lib/skeletons/_angular/base/src/main.ts +20 -0
- package/lib/skeletons/_angular/base/src/styles.scss +1 -0
- package/lib/skeletons/_angular/base/src/tsconfig.app.json +18 -0
- package/lib/skeletons/_angular/base/src/tsconfig.spec.json +10 -0
- package/lib/skeletons/_angular/base/tsconfig.json +27 -0
- package/lib/skeletons/_angular/base-mobile/angular.json +156 -0
- package/lib/skeletons/_angular/base-mobile/ionic.config.json +5 -0
- package/lib/skeletons/_angular/base-mobile/ngsw-config.json +33 -0
- package/lib/skeletons/_angular/base-mobile/package.json +27 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app-routing.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app-starter.service.ts +73 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.html +47 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.component.ts +81 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.config.ts +81 -0
- package/lib/skeletons/_angular/base-mobile/src/app/app.module.ts +44 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/components/.gitkeep +0 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +89 -0
- package/lib/skeletons/_angular/base-mobile/src/app/core/reducers/index.ts +32 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about-routing.module.ts +45 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.html +70 -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 +30 -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/licence-details/licence-details.component.html +48 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.ts +7 -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 +31 -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-routing.module.ts +15 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.component.ts +9 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/home/home.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page1/page1.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/components/page2/page2.component.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1-routing.module.ts +18 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.html +15 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.component.ts +17 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module1/module1.module.ts +21 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2-routing.module.ts +16 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.html +11 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/base-mobile/src/app/features/module2/module2.module.ts +17 -0
- package/lib/skeletons/_angular/base-mobile/src/app/shared/shared.module.ts +16 -0
- package/lib/skeletons/_angular/base-mobile/src/app/shared/testing/router.mock.ts +18 -0
- 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 +25 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/es.json +24 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/fr.json +25 -0
- package/lib/skeletons/_angular/base-mobile/src/assets/i18n/tr.json +25 -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.svg +10 -0
- package/lib/skeletons/_angular/base-mobile/src/config/global.ts +39 -0
- package/lib/skeletons/_angular/base-mobile/src/config/index.ts +8 -0
- package/lib/skeletons/_angular/base-mobile/src/config/modules.ts +7 -0
- package/lib/skeletons/_angular/base-mobile/src/index.html +76 -0
- package/lib/skeletons/_angular/base-mobile/src/main.ts +23 -0
- package/lib/skeletons/_angular/base-mobile/src/manifest.webmanifest +66 -0
- package/lib/skeletons/_angular/base-mobile/src/tsconfig.app.json +20 -0
- package/lib/skeletons/_angular/base-mobile/tsconfig.json +27 -0
- package/lib/skeletons/_angular/options/ecl-ec/angular.json +181 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.html +237 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.ts +65 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.html +71 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +20 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page1/page1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/components/page2/page2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module1/module1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-ec/src/config/global.ts +23 -0
- package/lib/skeletons/_angular/options/ecl-eu/angular.json +181 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.html +203 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +65 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +84 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.html +71 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +20 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page1/page1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/components/page2/page2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module1/module1.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.html +1 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/module2/module2.component.ts +7 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +15 -0
- package/lib/skeletons/_angular/options/ecl-eu/src/config/global.ts +23 -0
- package/lib/skeletons/_angular/options/pnpm/package.json +72 -0
- package/lib/skeletons/web-maven/package.json +17 -0
- package/lib/skeletons/web-maven/pom.xml +55 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/servlet/SpringWebApplicationInitializer.java +22 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/SpringRestConfiguration.java +24 -0
- package/lib/skeletons/web-maven/src/main/java/eu/europa/ec/digit/eui/angular2clistarter/spring/rest/UserDetailsResource.java +23 -0
- package/lib/skeletons/web-maven/src/main/resources/ecas-config-application-name.xml +7 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/dispatcher-servlet.xml +11 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/web.xml +38 -0
- package/lib/skeletons/web-maven/src/main/webapp/WEB-INF/weblogic.xml +16 -0
- package/lib/skeletons/web-maven/src/main/webapp/index.jsp +30 -0
- package/lib/skeletons/web-spring-boot/myapp-web/pom.xml +83 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/pom.xml +83 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/MyappApplication.java +46 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Address.java +65 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/domain/Building.java +44 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/repositories/BuildingRepository.java +11 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/BuildingResource.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/SwaggerConfig.java +16 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HateoasPageableHandlerMethodArgumentResolver.java +45 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/HypermediaSupport.java +25 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/resources/support/PageJsonSerializer.java +17 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CachingPreventionFilter.java +29 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/CsrfPreventionFilter.java +35 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/FakeAuthenticationFilter.java +372 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/security/SecurityConfig.java +47 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingSearchCriteria.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingService.java +10 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/java/myapp/services/BuildingServiceImpl.java +26 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/application.properties +0 -0
- package/lib/skeletons/web-spring-boot/myapp-web-rest/src/main/resources/data.sql +11 -0
- package/lib/skeletons/web-spring-boot/pom.xml +30 -0
- package/lib/utils.js +217 -0
- package/package.json +10 -13
- package/sonar-project.properties +14 -0
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
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 {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar [hasSidebarTrigger]="true" [hasLanguageSelector]="true">
|
|
4
|
+
<euim-toolbar-title>eUI mobile showcase</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
|
|
9
|
+
<ion-content class="ion-padding">
|
|
10
|
+
Welcome to eUI mobile app
|
|
11
|
+
</ion-content>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Component, Inject } from '@angular/core';
|
|
2
|
+
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
templateUrl: './home.component.html',
|
|
6
|
+
})
|
|
7
|
+
export class HomeComponent {
|
|
8
|
+
constructor(@Inject(CONFIG_TOKEN) private config: EuiAppConfig) {}
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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 {}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { RouterModule, Routes } from '@angular/router';
|
|
3
|
+
import { Page1Component } from './components/page1/page1.component';
|
|
4
|
+
import { Page2Component } from './components/page2/page2.component';
|
|
5
|
+
import { Module1Component } from './module1.component';
|
|
6
|
+
|
|
7
|
+
const routes: Routes = [
|
|
8
|
+
{ path: '', component: Module1Component },
|
|
9
|
+
{ path: 'page1', component: Page1Component },
|
|
10
|
+
{ path: 'page2', component: Page2Component },
|
|
11
|
+
];
|
|
12
|
+
|
|
13
|
+
@NgModule({
|
|
14
|
+
imports: [
|
|
15
|
+
RouterModule.forChild(routes)
|
|
16
|
+
],
|
|
17
|
+
})
|
|
18
|
+
export class Module1RoutingModule {}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<ion-header>
|
|
2
|
+
<ion-toolbar color="branding">
|
|
3
|
+
<euim-toolbar [hasSidebarTrigger]="true">
|
|
4
|
+
<euim-toolbar-title>Module 1 - home</euim-toolbar-title>
|
|
5
|
+
</euim-toolbar>
|
|
6
|
+
</ion-toolbar>
|
|
7
|
+
</ion-header>
|
|
8
|
+
|
|
9
|
+
<ion-content class="ion-padding">
|
|
10
|
+
Module 1 List page content
|
|
11
|
+
<br><br>
|
|
12
|
+
<ion-button (click)="onNavigate('/screen/module1/page1')">Goto page 1</ion-button>
|
|
13
|
+
<br><br>
|
|
14
|
+
<ion-button (click)="onNavigate('/screen/module1/page2')">Goto page 2</ion-button>
|
|
15
|
+
</ion-content>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import { NavController } from '@ionic/angular';
|
|
3
|
+
|
|
4
|
+
@Component({
|
|
5
|
+
templateUrl: './module1.component.html',
|
|
6
|
+
})
|
|
7
|
+
export class Module1Component {
|
|
8
|
+
|
|
9
|
+
constructor(
|
|
10
|
+
private navCtrl: NavController,
|
|
11
|
+
) {
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
onNavigate(url: string) {
|
|
15
|
+
this.navCtrl.navigateForward(url);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
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 {}
|
|
@@ -0,0 +1,11 @@
|
|
|
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>
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { IonicModule } from '@ionic/angular';
|
|
3
|
+
|
|
4
|
+
import { EuimAllModule } from '@eui/mobile-core';
|
|
5
|
+
|
|
6
|
+
@NgModule({
|
|
7
|
+
imports: [
|
|
8
|
+
EuimAllModule,
|
|
9
|
+
IonicModule,
|
|
10
|
+
],
|
|
11
|
+
exports: [
|
|
12
|
+
EuimAllModule,
|
|
13
|
+
IonicModule,
|
|
14
|
+
],
|
|
15
|
+
})
|
|
16
|
+
export class SharedModule { }
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { NavigationEnd } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs/Observable';
|
|
3
|
+
|
|
4
|
+
export class RouterMock {
|
|
5
|
+
routerState = { root: '' };
|
|
6
|
+
public navigationEnd = new NavigationEnd(0, 'http://url1', 'http://url2');
|
|
7
|
+
public events = new Observable(observer => {
|
|
8
|
+
observer.next(this.navigationEnd);
|
|
9
|
+
observer.complete();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
constructor() {}
|
|
13
|
+
|
|
14
|
+
createUrlTree() {}
|
|
15
|
+
|
|
16
|
+
serializeUrl() {}
|
|
17
|
+
|
|
18
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"euim.stepper.previous": "Previous",
|
|
3
|
+
"euim.stepper.next": "Next",
|
|
4
|
+
"euim.stepper.of": "of",
|
|
5
|
+
"euim.empty-list-placeholder.text": "No items available",
|
|
6
|
+
"euim.empty-list-placeholder.message": "This list is empty",
|
|
7
|
+
"euim.empty-list-placeholder.description": "Please check later",
|
|
8
|
+
"euim.language-list.SELECT-LANGUAGE": "Select your language",
|
|
9
|
+
"euim.language-list.SELECT-LANGUAGE-EXT": "Change language. Current language is {{ currentLang }}",
|
|
10
|
+
"euim.language-list.EU-LANGUAGES": "Official EU languages",
|
|
11
|
+
"euim.language-list.NON-EU-LANGUAGES": "Other languages",
|
|
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"
|
|
25
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"euim.stepper.previous": "Précédent",
|
|
3
|
+
"euim.stepper.next": "Suivant",
|
|
4
|
+
"euim.stepper.of": "de",
|
|
5
|
+
"euim.empty-list-placeholder.text": "Aucun élément disponible",
|
|
6
|
+
"euim.empty-list-placeholder.message": "Cette liste est vide",
|
|
7
|
+
"euim.empty-list-placeholder.description": "Veuillez vérifier plus tard",
|
|
8
|
+
"euim.language-list.SELECT-LANGUAGE": "Selecciona tu idioma",
|
|
9
|
+
"euim.language-list.SELECT-LANGUAGE-EXT": "Cambiar idioma, el idioma actual es {{ currentLang }}",
|
|
10
|
+
"euim.language-list.EU-LANGUAGES": "Idiomas oficiales de la UE",
|
|
11
|
+
"euim.language-list.NON-EU-LANGUAGES": "Otros idiomas",
|
|
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"
|
|
24
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"euim.stepper.previous": "Précédent",
|
|
3
|
+
"euim.stepper.next": "Suivant",
|
|
4
|
+
"euim.stepper.of": "de",
|
|
5
|
+
"euim.empty-list-placeholder.text": "Aucun élément disponible",
|
|
6
|
+
"euim.empty-list-placeholder.message": "Cette liste est vide",
|
|
7
|
+
"euim.empty-list-placeholder.description": "Veuillez vérifier plus tard",
|
|
8
|
+
"euim.language-list.SELECT-LANGUAGE": "Sélectionnez votre langue",
|
|
9
|
+
"euim.language-list.SELECT-LANGUAGE-EXT": "Changer de langue, la langue actuelle est {{ currentLang }}",
|
|
10
|
+
"euim.language-list.EU-LANGUAGES": "Langues officielles de l'UE",
|
|
11
|
+
"euim.language-list.NON-EU-LANGUAGES": "Autres langues",
|
|
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é"
|
|
25
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"euim.stepper.previous": "Önceki",
|
|
3
|
+
"euim.stepper.next": "Sonraki",
|
|
4
|
+
"euim.stepper.of": "of",
|
|
5
|
+
"euim.empty-list-placeholder.text": "Kullanılabilir öğe yok",
|
|
6
|
+
"euim.empty-list-placeholder.message": "Bu liste boş",
|
|
7
|
+
"euim.empty-list-placeholder.description": "Lütfen daha sonra kontrol edin",
|
|
8
|
+
"euim.language-list.SELECT-LANGUAGE": "Dilinizi seçin",
|
|
9
|
+
"euim.language-list.SELECT-LANGUAGE-EXT": "Dili değiştir. Mevcut dil: {{ currentLang }}",
|
|
10
|
+
"euim.language-list.EU-LANGUAGES": "AB resmi dilleri",
|
|
11
|
+
"euim.language-list.NON-EU-LANGUAGES": "Diğer diller",
|
|
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ı"
|
|
25
|
+
}
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1125-2436.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1170-2532.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1179-2556.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2208.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1242-2688.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1284-2778.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1290-2796.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1488-2266.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1536-2048.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1620-2160.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1640-2360.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2224.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-1668-2388.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-2048-2732.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-640-1136.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-750-1334.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-landscape-828-1792.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1125-2436.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1170-2532.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1179-2556.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2208.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1242-2688.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1284-2778.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1290-2796.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1488-2266.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1536-2048.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1620-2160.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1640-2360.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2224.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-1668-2388.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-2048-2732.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-640-1136.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-750-1334.png
ADDED
|
Binary file
|
package/lib/skeletons/_angular/base-mobile/src/assets/icons/apple-splash-portrait-828-1792.png
ADDED
|
Binary file
|
|
@@ -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>
|