up angular-basic with lib setup
4
.gitmodules
vendored
|
|
@ -1,4 +0,0 @@
|
||||||
[submodule "ng-demo"]
|
|
||||||
path = sae-airwatch
|
|
||||||
url = https://source.cipherbliss.com/tykayn/ng-demo
|
|
||||||
branch = dev
|
|
||||||
30
Dockerfile
|
|
@ -1,30 +0,0 @@
|
||||||
# lancer le build:
|
|
||||||
# docker build -f /home/poule/encrypted/stockage-syncable/www/development/html/ng-implementation/Dockerfile -t csc-app:latest /home/poule/encrypted/stockage-syncable/www/development/html/ng-implementation#
|
|
||||||
FROM node:24 AS build
|
|
||||||
WORKDIR /app
|
|
||||||
|
|
||||||
# Étape 1: préparer le cache d'installation
|
|
||||||
# On copie d'abord uniquement les manifests pour optimiser le cache Docker
|
|
||||||
COPY my-workspace/package.json my-workspace/package-lock.json* ./my-workspace/
|
|
||||||
COPY sae-csc/package.json sae-csc/package-lock.json* ./sae-csc/
|
|
||||||
|
|
||||||
# Installer les dépendances de la workspace qui contient la librairie
|
|
||||||
WORKDIR /app/my-workspace
|
|
||||||
RUN npm i
|
|
||||||
|
|
||||||
# Copier l'intégralité des sources de la workspace et builder la librairie "sae-lib"
|
|
||||||
COPY my-workspace/ ./
|
|
||||||
RUN npx ng build sae-lib
|
|
||||||
|
|
||||||
# Installer les dépendances de l'application (qui dépend de ../my-workspace/dist/sae-lib)
|
|
||||||
WORKDIR /app/sae-csc
|
|
||||||
RUN npm i
|
|
||||||
|
|
||||||
# Copier le reste des sources de l'application
|
|
||||||
COPY sae-csc/ ./
|
|
||||||
|
|
||||||
# lancer en mode dev et exposer le port 4200
|
|
||||||
EXPOSE 4200
|
|
||||||
|
|
||||||
# Lancer le serveur Angular en écoutant sur toutes les interfaces
|
|
||||||
CMD ["npm","start","--","--host","0.0.0.0"]
|
|
||||||
2
angular-basic/.gitignore
vendored
|
|
@ -40,3 +40,5 @@ testem.log
|
||||||
# System files
|
# System files
|
||||||
.DS_Store
|
.DS_Store
|
||||||
Thumbs.db
|
Thumbs.db
|
||||||
|
|
||||||
|
sae-lib
|
||||||
|
|
|
||||||
53
angular-basic/Dockerfile
Normal file
|
|
@ -0,0 +1,53 @@
|
||||||
|
# --- Build stage --- ## Forcing rebuild 1
|
||||||
|
|
||||||
|
FROM node:24 AS build
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Copier l'application Angular et la librairie locale
|
||||||
|
# On attend un contexte de build à la racine du repo pour inclure my-workspace
|
||||||
|
COPY angular-basic /app/angular-basic
|
||||||
|
COPY my-workspace /app/my-workspace
|
||||||
|
|
||||||
|
# Définir le répertoire de travail sur l'application
|
||||||
|
WORKDIR /app/angular-basic
|
||||||
|
|
||||||
|
RUN echo "============= run setup script "
|
||||||
|
|
||||||
|
RUN ./setup.sh
|
||||||
|
|
||||||
|
# Construire le projet Angular (production)
|
||||||
|
|
||||||
|
RUN npm run build
|
||||||
|
|
||||||
|
# --- Production stage ---
|
||||||
|
|
||||||
|
FROM nginx:1.27-alpine AS production
|
||||||
|
|
||||||
|
#RUN apk add --no-cache bash nano wget
|
||||||
|
|
||||||
|
# Nettoyer les fichiers nginx par défaut
|
||||||
|
|
||||||
|
RUN rm -rf /usr/share/nginx/html/*
|
||||||
|
|
||||||
|
# Copier la sortie du build (on testera le bon chemin ensuite)
|
||||||
|
|
||||||
|
#COPY --from=build /app/dist /usr/share/nginx/html
|
||||||
|
|
||||||
|
COPY --from=build /app/angular-basic/dist/angular-basic/browser/* /usr/share/nginx/html
|
||||||
|
|
||||||
|
RUN echo "============= liste des fichiers dans nginx html"
|
||||||
|
|
||||||
|
RUN ls -l "/usr/share/nginx/html"
|
||||||
|
|
||||||
|
RUN echo "============="
|
||||||
|
|
||||||
|
# 🔹 Exposer le port par défaut d'nginx (80)
|
||||||
|
EXPOSE 80
|
||||||
|
|
||||||
|
HEALTHCHECK --interval=30s --timeout=10s --retries=3 \
|
||||||
|
CMD wget -qO- http://localhost:80/ || exit 1
|
||||||
|
|
||||||
|
RUN echo "servir le front static CSC: done."
|
||||||
|
|
||||||
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
3
angular-basic/my-workspace/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# SAE Design system
|
||||||
|
|
||||||
|
Le design system Aero utilisé pour les chatbots de la maison.
|
||||||
78
angular-basic/my-workspace/angular.json
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
{
|
||||||
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
||||||
|
"version": 1,
|
||||||
|
"newProjectRoot": "projects",
|
||||||
|
"projects": {
|
||||||
|
"sae-lib": {
|
||||||
|
"projectType": "library",
|
||||||
|
"root": "projects/sae-lib",
|
||||||
|
"sourceRoot": "projects/sae-lib/src",
|
||||||
|
"prefix": "sae",
|
||||||
|
"architect": {
|
||||||
|
"build": {
|
||||||
|
"builder": "@angular/build:ng-packagr",
|
||||||
|
"configurations": {
|
||||||
|
"production": {
|
||||||
|
"tsConfig": "projects/sae-lib/tsconfig.lib.prod.json"
|
||||||
|
},
|
||||||
|
"development": {
|
||||||
|
"tsConfig": "projects/sae-lib/tsconfig.lib.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"defaultConfiguration": "production"
|
||||||
|
},
|
||||||
|
"test": {
|
||||||
|
"builder": "@angular/build:karma",
|
||||||
|
"options": {
|
||||||
|
"tsConfig": "projects/sae-lib/tsconfig.spec.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"lint": {
|
||||||
|
"builder": "@angular-eslint/builder:lint",
|
||||||
|
"options": {
|
||||||
|
"lintFilePatterns": [
|
||||||
|
"projects/sae-lib/**/*.ts",
|
||||||
|
"projects/sae-lib/**/*.html"
|
||||||
|
],
|
||||||
|
"eslintConfig": "projects/sae-lib/eslint.config.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"storybook": {
|
||||||
|
"builder": "@storybook/angular:start-storybook",
|
||||||
|
"options": {
|
||||||
|
"configDir": "projects/sae-lib/.storybook",
|
||||||
|
"browserTarget": "sae-lib:build",
|
||||||
|
"compodoc": true,
|
||||||
|
"compodocArgs": [
|
||||||
|
"-e",
|
||||||
|
"json",
|
||||||
|
"-d",
|
||||||
|
"projects/sae-lib"
|
||||||
|
],
|
||||||
|
"port": 6006
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"build-storybook": {
|
||||||
|
"builder": "@storybook/angular:build-storybook",
|
||||||
|
"options": {
|
||||||
|
"configDir": "projects/sae-lib/.storybook",
|
||||||
|
"browserTarget": "sae-lib:build",
|
||||||
|
"compodoc": true,
|
||||||
|
"compodocArgs": [
|
||||||
|
"-e",
|
||||||
|
"json",
|
||||||
|
"-d",
|
||||||
|
"projects/sae-lib"
|
||||||
|
],
|
||||||
|
"outputDir": "storybook-static"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"cli": {
|
||||||
|
"schematicCollections": [
|
||||||
|
"angular-eslint"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
2
angular-basic/my-workspace/dist/sae-lib/.npmignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Nested package.json's are only needed for development.
|
||||||
|
**/package.json
|
||||||
64
angular-basic/my-workspace/dist/sae-lib/README.md
vendored
Normal file
|
|
@ -0,0 +1,64 @@
|
||||||
|
# SaeLib
|
||||||
|
|
||||||
|
This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.1.0.
|
||||||
|
|
||||||
|
## Code scaffolding
|
||||||
|
|
||||||
|
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng generate component component-name
|
||||||
|
```
|
||||||
|
|
||||||
|
For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng generate --help
|
||||||
|
```
|
||||||
|
|
||||||
|
## Building
|
||||||
|
|
||||||
|
To build the library, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng build sae-lib
|
||||||
|
```
|
||||||
|
|
||||||
|
This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
|
||||||
|
|
||||||
|
### Publishing the Library
|
||||||
|
|
||||||
|
Once the project is built, you can publish your library by following these steps:
|
||||||
|
|
||||||
|
1. Navigate to the `dist` directory:
|
||||||
|
```bash
|
||||||
|
cd dist/sae-lib
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Run the `npm publish` command to publish your library to the npm registry:
|
||||||
|
```bash
|
||||||
|
npm publish
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running unit tests
|
||||||
|
|
||||||
|
To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng test
|
||||||
|
```
|
||||||
|
|
||||||
|
## Running end-to-end tests
|
||||||
|
|
||||||
|
For end-to-end (e2e) testing, run:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
ng e2e
|
||||||
|
```
|
||||||
|
|
||||||
|
Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
|
||||||
|
|
||||||
|
## Additional Resources
|
||||||
|
|
||||||
|
For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
||||||
|
|
||||||
30
angular-basic/my-workspace/dist/sae-lib/fesm2022/sae-lib.mjs
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
import * as i0 from '@angular/core';
|
||||||
|
import { Component } from '@angular/core';
|
||||||
|
|
||||||
|
class SaeLib {
|
||||||
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: SaeLib, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
||||||
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.3", type: SaeLib, isStandalone: true, selector: "lib-sae-lib", ngImport: i0, template: `
|
||||||
|
<p>
|
||||||
|
sae-lib works!
|
||||||
|
</p>
|
||||||
|
`, isInline: true, styles: [""] });
|
||||||
|
}
|
||||||
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.3", ngImport: i0, type: SaeLib, decorators: [{
|
||||||
|
type: Component,
|
||||||
|
args: [{ selector: 'lib-sae-lib', imports: [], template: `
|
||||||
|
<p>
|
||||||
|
sae-lib works!
|
||||||
|
</p>
|
||||||
|
` }]
|
||||||
|
}] });
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Public API Surface of sae-lib
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generated bundle index. Do not edit.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export { SaeLib };
|
||||||
|
//# sourceMappingURL=sae-lib.mjs.map
|
||||||
1
angular-basic/my-workspace/dist/sae-lib/fesm2022/sae-lib.mjs.map
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
{"version":3,"file":"sae-lib.mjs","sources":["../../../projects/sae-lib/src/lib/sae-lib.ts","../../../projects/sae-lib/src/public-api.ts","../../../projects/sae-lib/src/sae-lib.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'lib-sae-lib',\n imports: [],\n template: `\n <p>\n sae-lib works!\n </p>\n `,\n styles: ``\n})\nexport class SaeLib {\n\n}\n","/*\n * Public API Surface of sae-lib\n */\n\nexport * from './lib/sae-lib';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAYa,MAAM,CAAA;uGAAN,MAAM,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA;AAAN,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAM,EAAA,YAAA,EAAA,IAAA,EAAA,QAAA,EAAA,aAAA,EAAA,QAAA,EAAA,EAAA,EAAA,QAAA,EAPP;;;;AAIT,EAAA,CAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,CAAA,EAAA,CAAA,EAAA,CAAA;;2FAGU,MAAM,EAAA,UAAA,EAAA,CAAA;kBAVlB,SAAS;+BACE,aAAa,EAAA,OAAA,EACd,EAAE,EAAA,QAAA,EACD;;;;AAIT,EAAA,CAAA,EAAA;;;ACTH;;AAEG;;ACFH;;AAEG;;;;"}
|
||||||
8
angular-basic/my-workspace/dist/sae-lib/index.d.ts
vendored
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
import * as i0 from '@angular/core';
|
||||||
|
|
||||||
|
declare class SaeLib {
|
||||||
|
static ɵfac: i0.ɵɵFactoryDeclaration<SaeLib, never>;
|
||||||
|
static ɵcmp: i0.ɵɵComponentDeclaration<SaeLib, "lib-sae-lib", never, {}, {}, never, never, true, never>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export { SaeLib };
|
||||||
30
angular-basic/my-workspace/dist/sae-lib/package.json
vendored
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"name": "sae-lib",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"peerDependencies": {
|
||||||
|
"@angular/common": "^20.1.0",
|
||||||
|
"@angular/core": "^20.1.0",
|
||||||
|
"@angular/forms": "^20.1.0",
|
||||||
|
"@ngrx/store": "^20.0.0",
|
||||||
|
"@ngrx/store-devtools": "^20.0.0",
|
||||||
|
"bulma": "^1.0.4",
|
||||||
|
"remixicon": "^4.6.0",
|
||||||
|
"shepherd.js": "^14.5.1"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"tslib": "^2.3.0"
|
||||||
|
},
|
||||||
|
"sideEffects": false,
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"sass": "./src/styles/index.scss",
|
||||||
|
"types": "./index.d.ts",
|
||||||
|
"default": "./fesm2022/sae-lib.mjs"
|
||||||
|
},
|
||||||
|
"./package.json": {
|
||||||
|
"default": "./package.json"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"module": "fesm2022/sae-lib.mjs",
|
||||||
|
"typings": "index.d.ts"
|
||||||
|
}
|
||||||
46
angular-basic/my-workspace/eslint.config.js
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format
|
||||||
|
import storybook from "eslint-plugin-storybook";
|
||||||
|
|
||||||
|
// @ts-check
|
||||||
|
const eslint = require("@eslint/js");
|
||||||
|
const tseslint = require("typescript-eslint");
|
||||||
|
const angular = require("angular-eslint");
|
||||||
|
|
||||||
|
module.exports = tseslint.config(
|
||||||
|
{
|
||||||
|
files: ["**/*.ts"],
|
||||||
|
extends: [
|
||||||
|
eslint.configs.recommended,
|
||||||
|
...tseslint.configs.recommended,
|
||||||
|
...tseslint.configs.stylistic,
|
||||||
|
...angular.configs.tsRecommended,
|
||||||
|
],
|
||||||
|
processor: angular.processInlineTemplates,
|
||||||
|
rules: {
|
||||||
|
"@angular-eslint/directive-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
type: "attribute",
|
||||||
|
prefix: "lib",
|
||||||
|
style: "camelCase",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"@angular-eslint/component-selector": [
|
||||||
|
"error",
|
||||||
|
{
|
||||||
|
type: "element",
|
||||||
|
prefix: "lib",
|
||||||
|
style: "kebab-case",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
files: ["**/*.html"],
|
||||||
|
extends: [
|
||||||
|
...angular.configs.templateRecommended,
|
||||||
|
...angular.configs.templateAccessibility,
|
||||||
|
],
|
||||||
|
rules: {},
|
||||||
|
}
|
||||||
|
);
|
||||||
14671
angular-basic/my-workspace/package-lock.json
generated
Normal file
52
angular-basic/my-workspace/package.json
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"name": "my-workspace",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"scripts": {
|
||||||
|
"ng": "ng",
|
||||||
|
"start": "ng serve",
|
||||||
|
"build": "ng build",
|
||||||
|
"watch": "ng build --watch --configuration development",
|
||||||
|
"test": "ng test",
|
||||||
|
"lint": "ng lint"
|
||||||
|
},
|
||||||
|
"prettier": {
|
||||||
|
"overrides": [
|
||||||
|
{
|
||||||
|
"files": "*.html",
|
||||||
|
"options": {
|
||||||
|
"parser": "angular"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"private": true,
|
||||||
|
"dependencies": {
|
||||||
|
"aws-amplify": "^6.15.7"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@angular/build": "^20.1.5",
|
||||||
|
"@angular/cli": "^20.1.4",
|
||||||
|
"@angular/common": "^20.1.0",
|
||||||
|
"@angular/compiler": "^20.1.0",
|
||||||
|
"@angular/compiler-cli": "^20.1.0",
|
||||||
|
"@angular/core": "^20.1.0",
|
||||||
|
"@angular/forms": "^20.1.0",
|
||||||
|
"@angular/platform-browser": "^20.1.0",
|
||||||
|
"@angular/router": "^20.1.0",
|
||||||
|
"@types/jasmine": "~5.1.0",
|
||||||
|
"angular-eslint": "20.1.1",
|
||||||
|
"eslint": "^9.29.0",
|
||||||
|
"jasmine-core": "~5.8.0",
|
||||||
|
"karma": "~6.4.0",
|
||||||
|
"karma-chrome-launcher": "~3.2.0",
|
||||||
|
"karma-coverage": "~2.2.0",
|
||||||
|
"karma-jasmine": "~5.1.0",
|
||||||
|
"karma-jasmine-html-reporter": "~2.1.0",
|
||||||
|
"ng-packagr": "^20.1.0",
|
||||||
|
"rxjs": "~7.8.0",
|
||||||
|
"sae-lib": "file:../my-workspace/projects/sae-lib",
|
||||||
|
"tslib": "^2.3.0",
|
||||||
|
"typescript": "~5.8.2",
|
||||||
|
"typescript-eslint": "8.34.1"
|
||||||
|
}
|
||||||
|
}
|
||||||
39
angular-basic/my-workspace/tsconfig.json
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||||
|
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||||
|
{
|
||||||
|
"compileOnSave": false,
|
||||||
|
"compilerOptions": {
|
||||||
|
"strict": true,
|
||||||
|
"noImplicitOverride": true,
|
||||||
|
"noPropertyAccessFromIndexSignature": true,
|
||||||
|
"noImplicitReturns": true,
|
||||||
|
"paths": {
|
||||||
|
"sae-lib": [
|
||||||
|
"./dist/sae-lib"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"noFallthroughCasesInSwitch": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
|
"isolatedModules": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"importHelpers": true,
|
||||||
|
"target": "ES2022",
|
||||||
|
"module": "preserve"
|
||||||
|
},
|
||||||
|
"angularCompilerOptions": {
|
||||||
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
|
"strictInjectionParameters": true,
|
||||||
|
"strictInputAccessModifiers": true,
|
||||||
|
"typeCheckHostBindings": true,
|
||||||
|
"strictTemplates": true
|
||||||
|
},
|
||||||
|
"files": [],
|
||||||
|
"references": [
|
||||||
|
{
|
||||||
|
"path": "./projects/sae-lib/tsconfig.lib.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./projects/sae-lib/tsconfig.spec.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
384
angular-basic/package-lock.json
generated
|
|
@ -14,7 +14,10 @@
|
||||||
"@angular/forms": "^20.3.0",
|
"@angular/forms": "^20.3.0",
|
||||||
"@angular/platform-browser": "^20.3.0",
|
"@angular/platform-browser": "^20.3.0",
|
||||||
"@angular/router": "^20.3.0",
|
"@angular/router": "^20.3.0",
|
||||||
|
"bulma": "^1.0.4",
|
||||||
|
"remixicon": "^4.7.0",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
|
"shepherd.js": "^14.5.1",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"zone.js": "~0.15.0"
|
"zone.js": "~0.15.0"
|
||||||
},
|
},
|
||||||
|
|
@ -256,13 +259,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular-devkit/architect": {
|
"node_modules/@angular-devkit/architect": {
|
||||||
"version": "0.2003.5",
|
"version": "0.2003.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2003.5.tgz",
|
"resolved": "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.2003.6.tgz",
|
||||||
"integrity": "sha512-KtA//ucTIdnKp1+vTYnqBallEbiZHLx3Gs7XgYm+p4VJfVjbMZHWY2vrbJoyCUp05goiv2XnDy0bKQ9VYHePWg==",
|
"integrity": "sha512-VtXxfJzrBZ8MQN83shXNaTUaLSOIwa+4/3LD5drxSnHuYJrz+d3FIApWAxcA9QzucsTDZwXyFxaWZN/e5XVm6g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular-devkit/core": "20.3.5",
|
"@angular-devkit/core": "20.3.6",
|
||||||
"rxjs": "7.8.2"
|
"rxjs": "7.8.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -272,9 +275,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular-devkit/core": {
|
"node_modules/@angular-devkit/core": {
|
||||||
"version": "20.3.5",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-20.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/@angular-devkit/core/-/core-20.3.6.tgz",
|
||||||
"integrity": "sha512-NpAP5j3q/n+SC1s0yAWKDAbc7Y8xUxlmJ5iDRJBGu6qDKM7lMnYA1tn2UEy/JnXluJ2XZqqiymrtucw7yux2xQ==",
|
"integrity": "sha512-uLRk3865Iz/EO9Zm/mrFfdyoZinJBihXE6HVDYRYjAqsgW14LsD8pkpWy9+LYlOwcH96Ndnev+msxaTJaNXtPg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -300,13 +303,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular-devkit/schematics": {
|
"node_modules/@angular-devkit/schematics": {
|
||||||
"version": "20.3.5",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-20.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-20.3.6.tgz",
|
||||||
"integrity": "sha512-BDizJp7QIoCyMZmuGKoryNUH3QgFPnkEIv0gRdpLhZum4+ZN/DYWaf/jSSGnSVGK88oMrgq7420VEjYPlgJ5MA==",
|
"integrity": "sha512-QD7QS1oR0XcZ9ZI4D1c4JjKmSn2up/ocOU2FS1mMO7S5RtAZMsPv4J3r+6ywHA2ev2sRySOQ0D8OYBcEuYX9Jw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular-devkit/core": "20.3.5",
|
"@angular-devkit/core": "20.3.6",
|
||||||
"jsonc-parser": "3.3.1",
|
"jsonc-parser": "3.3.1",
|
||||||
"magic-string": "0.30.17",
|
"magic-string": "0.30.17",
|
||||||
"ora": "8.2.0",
|
"ora": "8.2.0",
|
||||||
|
|
@ -319,14 +322,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/build": {
|
"node_modules/@angular/build": {
|
||||||
"version": "20.3.5",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/build/-/build-20.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/build/-/build-20.3.6.tgz",
|
||||||
"integrity": "sha512-Nwwwm8U7lolkdHt75PiPkW93689SBFUN9qEQeu02sPfq2Tqyn20PZGifXkV8A/6mlWbQUjfUnGpRTVk/WhW9Eg==",
|
"integrity": "sha512-O5qyxCCe77tu1zy9XudKxqFqi5zih0ZI8J8Anra/ZZdtTKbLMprXMGFzMYzwCqvcIzzbmOumkSJKoXbFazHaaw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ampproject/remapping": "2.3.0",
|
"@ampproject/remapping": "2.3.0",
|
||||||
"@angular-devkit/architect": "0.2003.5",
|
"@angular-devkit/architect": "0.2003.6",
|
||||||
"@babel/core": "7.28.3",
|
"@babel/core": "7.28.3",
|
||||||
"@babel/helper-annotate-as-pure": "7.27.3",
|
"@babel/helper-annotate-as-pure": "7.27.3",
|
||||||
"@babel/helper-split-export-declaration": "7.24.7",
|
"@babel/helper-split-export-declaration": "7.24.7",
|
||||||
|
|
@ -368,7 +371,7 @@
|
||||||
"@angular/platform-browser": "^20.0.0",
|
"@angular/platform-browser": "^20.0.0",
|
||||||
"@angular/platform-server": "^20.0.0",
|
"@angular/platform-server": "^20.0.0",
|
||||||
"@angular/service-worker": "^20.0.0",
|
"@angular/service-worker": "^20.0.0",
|
||||||
"@angular/ssr": "^20.3.5",
|
"@angular/ssr": "^20.3.6",
|
||||||
"karma": "^6.4.0",
|
"karma": "^6.4.0",
|
||||||
"less": "^4.2.0",
|
"less": "^4.2.0",
|
||||||
"ng-packagr": "^20.0.0",
|
"ng-packagr": "^20.0.0",
|
||||||
|
|
@ -418,19 +421,19 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/cli": {
|
"node_modules/@angular/cli": {
|
||||||
"version": "20.3.5",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-20.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/cli/-/cli-20.3.6.tgz",
|
||||||
"integrity": "sha512-UA843Mh5uHIWnrzKUotGmhJmvefyEizFS7X8xJEUJsX5pa1EKUB/145rKHoLHxRRpHGxFcXtvciJCksFz1lSBA==",
|
"integrity": "sha512-1RozAub7Gcl5ES3vBYatIgoMDgujlvySwHARoYT+1VhbYvM0RTt4sn2aDhHxqG0GcyiXR5zISkzJvldaY2nQCQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular-devkit/architect": "0.2003.5",
|
"@angular-devkit/architect": "0.2003.6",
|
||||||
"@angular-devkit/core": "20.3.5",
|
"@angular-devkit/core": "20.3.6",
|
||||||
"@angular-devkit/schematics": "20.3.5",
|
"@angular-devkit/schematics": "20.3.6",
|
||||||
"@inquirer/prompts": "7.8.2",
|
"@inquirer/prompts": "7.8.2",
|
||||||
"@listr2/prompt-adapter-inquirer": "3.0.1",
|
"@listr2/prompt-adapter-inquirer": "3.0.1",
|
||||||
"@modelcontextprotocol/sdk": "1.17.3",
|
"@modelcontextprotocol/sdk": "1.17.3",
|
||||||
"@schematics/angular": "20.3.5",
|
"@schematics/angular": "20.3.6",
|
||||||
"@yarnpkg/lockfile": "1.1.0",
|
"@yarnpkg/lockfile": "1.1.0",
|
||||||
"algoliasearch": "5.35.0",
|
"algoliasearch": "5.35.0",
|
||||||
"ini": "5.0.0",
|
"ini": "5.0.0",
|
||||||
|
|
@ -453,9 +456,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/common": {
|
"node_modules/@angular/common": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/common/-/common-20.3.6.tgz",
|
||||||
"integrity": "sha512-hBQahyiHEAtc30a8hPOuIWcUL7j8189DC0sX4RiBd/wtvzH4Sd3XhguxyZAL6gHgNZEQ0nKy0uAfvWB/79GChQ==",
|
"integrity": "sha512-+gHMuFe0wz4f+vfGZ2q+fSQSYaY7KlN7QdDrFqLnA7H2sythzhXvRbXEtp4DkPjihh9gupXg2MeLh1ROy5AfSw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -464,14 +467,14 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/core": "20.3.4",
|
"@angular/core": "20.3.6",
|
||||||
"rxjs": "^6.5.3 || ^7.4.0"
|
"rxjs": "^6.5.3 || ^7.4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/compiler": {
|
"node_modules/@angular/compiler": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/compiler/-/compiler-20.3.6.tgz",
|
||||||
"integrity": "sha512-ISfEyn5ppWOP2hyZy0/IFEcQOaq5x1mXVZ2CRCxTpWyXYzavj27Ahr3+LQHPVV0uTNovlENyPAUnrzW+gLxXEw==",
|
"integrity": "sha512-OdjXBsAsnn7qiW6fSHClwn9XwjVxhtO9+RbDc6Mf+YPCnJq0s8T78H2fc8VdJFp/Rs+tMZcwwjd9VZPm8+2XWA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -481,9 +484,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/compiler-cli": {
|
"node_modules/@angular/compiler-cli": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/compiler-cli/-/compiler-cli-20.3.6.tgz",
|
||||||
"integrity": "sha512-FwEv+QM9tEMXDMd2V+j82VLOjJVUrI7ENz/LJa2p/YEGVJQkT3HVca5qJj+8I+7bfPEY/d46R/cmjjqMqUcYdg==",
|
"integrity": "sha512-VOFRBx9fBt2jW9I8qD23fwGeKxBI8JssJBAMqnFPl3k59VJWHQi6LlXZCLCBNdfwflTJdKeRvdgT51Q0k6tnFQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -504,7 +507,7 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/compiler": "20.3.4",
|
"@angular/compiler": "20.3.6",
|
||||||
"typescript": ">=5.8 <6.0"
|
"typescript": ">=5.8 <6.0"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
|
|
@ -514,9 +517,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/core": {
|
"node_modules/@angular/core": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/core/-/core-20.3.6.tgz",
|
||||||
"integrity": "sha512-qLYVXcpSBmsA/9fITB1cT2y37V1Yo3ybWEwvafnbAh8izabrMV0hh+J9Ajh9bPk092T7LS8Xt9eTu0OquBXkbw==",
|
"integrity": "sha512-sDURQWnjwE4Y750u/5qwkZEYMoI4CrKghnx4aKulxCnohR3//C78wvz6p8MtCuqYfzGkdQZDYFg8tgAz17qgPw==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -525,7 +528,7 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/compiler": "20.3.4",
|
"@angular/compiler": "20.3.6",
|
||||||
"rxjs": "^6.5.3 || ^7.4.0",
|
"rxjs": "^6.5.3 || ^7.4.0",
|
||||||
"zone.js": "~0.15.0"
|
"zone.js": "~0.15.0"
|
||||||
},
|
},
|
||||||
|
|
@ -539,9 +542,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/forms": {
|
"node_modules/@angular/forms": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/forms/-/forms-20.3.6.tgz",
|
||||||
"integrity": "sha512-gPbI2iIvVA2jhwjTg7e3j/JqCFIpRSPgzW/wi5q7LrGBm7XKHNzY5xlEVDNvdq+gC4HTius9GOIx9I0i8mjrEw==",
|
"integrity": "sha512-tBGo/LBtCtSrClMY4DTm/3UiSjqLLMEYXS/4E0nW1mFDv7ulKnaAQB+KbfBmmTHYxlKLs+SxjKv6GoydMPSurA==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -550,16 +553,16 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/common": "20.3.4",
|
"@angular/common": "20.3.6",
|
||||||
"@angular/core": "20.3.4",
|
"@angular/core": "20.3.6",
|
||||||
"@angular/platform-browser": "20.3.4",
|
"@angular/platform-browser": "20.3.6",
|
||||||
"rxjs": "^6.5.3 || ^7.4.0"
|
"rxjs": "^6.5.3 || ^7.4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/platform-browser": {
|
"node_modules/@angular/platform-browser": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/platform-browser/-/platform-browser-20.3.6.tgz",
|
||||||
"integrity": "sha512-8eoHC+vk7scb24qjlpsirkh1Q17uFyWdhl+u92XNjvimtZRY96oDZeFEDPoexPqtKUQcCOpEPbL8P/IbpBsqYQ==",
|
"integrity": "sha512-gFp1yd+HtRN8XdpMatRLO5w6FLIzsnF31lD2Duo4BUTCoMAMdfaNT6FtcvNdKu7ANo27Ke26fxEEE2bh6FU98A==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -568,9 +571,9 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/animations": "20.3.4",
|
"@angular/animations": "20.3.6",
|
||||||
"@angular/common": "20.3.4",
|
"@angular/common": "20.3.6",
|
||||||
"@angular/core": "20.3.4"
|
"@angular/core": "20.3.6"
|
||||||
},
|
},
|
||||||
"peerDependenciesMeta": {
|
"peerDependenciesMeta": {
|
||||||
"@angular/animations": {
|
"@angular/animations": {
|
||||||
|
|
@ -579,9 +582,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@angular/router": {
|
"node_modules/@angular/router": {
|
||||||
"version": "20.3.4",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@angular/router/-/router-20.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@angular/router/-/router-20.3.6.tgz",
|
||||||
"integrity": "sha512-qMVurWXVplYeHBKOWtQFtD+MfwOc0i/VJaFPGdiM5mDlfhtsg3OHcZBbSTmQW02l/4YimF5Ee3+pac279p+g1A==",
|
"integrity": "sha512-fSAYOR9nKpH5PoBYFNdII3nAFl2maUrYiISU33CnGwb7J7Q0s09k231c/P5tVN4URi+jdADVwiBI8cIYk8SVrg==",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.3.0"
|
"tslib": "^2.3.0"
|
||||||
|
|
@ -590,9 +593,9 @@
|
||||||
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@angular/common": "20.3.4",
|
"@angular/common": "20.3.6",
|
||||||
"@angular/core": "20.3.4",
|
"@angular/core": "20.3.6",
|
||||||
"@angular/platform-browser": "20.3.4",
|
"@angular/platform-browser": "20.3.6",
|
||||||
"rxjs": "^6.5.3 || ^7.4.0"
|
"rxjs": "^6.5.3 || ^7.4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -1341,10 +1344,35 @@
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@floating-ui/core": {
|
||||||
|
"version": "1.7.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz",
|
||||||
|
"integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@floating-ui/utils": "^0.2.10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@floating-ui/dom": {
|
||||||
|
"version": "1.7.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz",
|
||||||
|
"integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@floating-ui/core": "^1.7.3",
|
||||||
|
"@floating-ui/utils": "^0.2.10"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@floating-ui/utils": {
|
||||||
|
"version": "0.2.10",
|
||||||
|
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz",
|
||||||
|
"integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/@inquirer/ansi": {
|
"node_modules/@inquirer/ansi": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/ansi/-/ansi-1.0.1.tgz",
|
||||||
"integrity": "sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==",
|
"integrity": "sha512-yqq0aJW/5XPhi5xOAL1xRCpe1eh8UFVgYFpFsjEqmIR8rKLyP+HINvFXwUaxYICflJrVlxnp7lLN6As735kVpw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1352,16 +1380,16 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/checkbox": {
|
"node_modules/@inquirer/checkbox": {
|
||||||
"version": "4.2.4",
|
"version": "4.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/checkbox/-/checkbox-4.3.0.tgz",
|
||||||
"integrity": "sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==",
|
"integrity": "sha512-5+Q3PKH35YsnoPTh75LucALdAxom6xh5D1oeY561x4cqBuH24ZFVyFREPe14xgnrtmGu3EEt1dIi60wRVSnGCw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/ansi": "^1.0.0",
|
"@inquirer/ansi": "^1.0.1",
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/figures": "^1.0.13",
|
"@inquirer/figures": "^1.0.14",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"yoctocolors-cjs": "^2.1.2"
|
"yoctocolors-cjs": "^2.1.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1399,15 +1427,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/core": {
|
"node_modules/@inquirer/core": {
|
||||||
"version": "10.2.2",
|
"version": "10.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.2.2.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/core/-/core-10.3.0.tgz",
|
||||||
"integrity": "sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==",
|
"integrity": "sha512-Uv2aPPPSK5jeCplQmQ9xadnFx2Zhj9b5Dj7bU6ZeCdDNNY11nhYy4btcSdtDguHqCT2h5oNeQTcUNSGGLA7NTA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/ansi": "^1.0.0",
|
"@inquirer/ansi": "^1.0.1",
|
||||||
"@inquirer/figures": "^1.0.13",
|
"@inquirer/figures": "^1.0.14",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"cli-width": "^4.1.0",
|
"cli-width": "^4.1.0",
|
||||||
"mute-stream": "^2.0.0",
|
"mute-stream": "^2.0.0",
|
||||||
"signal-exit": "^4.1.0",
|
"signal-exit": "^4.1.0",
|
||||||
|
|
@ -1427,15 +1455,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/editor": {
|
"node_modules/@inquirer/editor": {
|
||||||
"version": "4.2.20",
|
"version": "4.2.21",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.20.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/editor/-/editor-4.2.21.tgz",
|
||||||
"integrity": "sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==",
|
"integrity": "sha512-MjtjOGjr0Kh4BciaFShYpZ1s9400idOdvQ5D7u7lE6VztPFoyLcVNE5dXBmEEIQq5zi4B9h2kU+q7AVBxJMAkQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/external-editor": "^1.0.2",
|
"@inquirer/external-editor": "^1.0.2",
|
||||||
"@inquirer/type": "^3.0.8"
|
"@inquirer/type": "^3.0.9"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
|
@ -1450,14 +1478,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/expand": {
|
"node_modules/@inquirer/expand": {
|
||||||
"version": "4.0.20",
|
"version": "4.0.21",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.20.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/expand/-/expand-4.0.21.tgz",
|
||||||
"integrity": "sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==",
|
"integrity": "sha512-+mScLhIcbPFmuvU3tAGBed78XvYHSvCl6dBiYMlzCLhpr0bzGzd8tfivMMeqND6XZiaZ1tgusbUHJEfc6YzOdA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"yoctocolors-cjs": "^2.1.2"
|
"yoctocolors-cjs": "^2.1.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1495,9 +1523,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/figures": {
|
"node_modules/@inquirer/figures": {
|
||||||
"version": "1.0.13",
|
"version": "1.0.14",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.13.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/figures/-/figures-1.0.14.tgz",
|
||||||
"integrity": "sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==",
|
"integrity": "sha512-DbFgdt+9/OZYFM+19dbpXOSeAstPy884FPy1KjDu4anWwymZeOYhMY1mdFri172htv6mvc/uvIAAi7b7tvjJBQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1505,14 +1533,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/input": {
|
"node_modules/@inquirer/input": {
|
||||||
"version": "4.2.4",
|
"version": "4.2.5",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.2.4.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/input/-/input-4.2.5.tgz",
|
||||||
"integrity": "sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==",
|
"integrity": "sha512-7GoWev7P6s7t0oJbenH0eQ0ThNdDJbEAEtVt9vsrYZ9FulIokvd823yLyhQlWHJPGce1wzP53ttfdCZmonMHyA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/type": "^3.0.8"
|
"@inquirer/type": "^3.0.9"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
|
@ -1527,14 +1555,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/number": {
|
"node_modules/@inquirer/number": {
|
||||||
"version": "3.0.20",
|
"version": "3.0.21",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.20.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/number/-/number-3.0.21.tgz",
|
||||||
"integrity": "sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==",
|
"integrity": "sha512-5QWs0KGaNMlhbdhOSCFfKsW+/dcAVC2g4wT/z2MCiZM47uLgatC5N20kpkDQf7dHx+XFct/MJvvNGy6aYJn4Pw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/type": "^3.0.8"
|
"@inquirer/type": "^3.0.9"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
|
@ -1549,15 +1577,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/password": {
|
"node_modules/@inquirer/password": {
|
||||||
"version": "4.0.20",
|
"version": "4.0.21",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.20.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/password/-/password-4.0.21.tgz",
|
||||||
"integrity": "sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==",
|
"integrity": "sha512-xxeW1V5SbNFNig2pLfetsDb0svWlKuhmr7MPJZMYuDnCTkpVBI+X/doudg4pznc1/U+yYmWFFOi4hNvGgUo7EA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/ansi": "^1.0.0",
|
"@inquirer/ansi": "^1.0.1",
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/type": "^3.0.8"
|
"@inquirer/type": "^3.0.9"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=18"
|
"node": ">=18"
|
||||||
|
|
@ -1602,14 +1630,14 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/rawlist": {
|
"node_modules/@inquirer/rawlist": {
|
||||||
"version": "4.1.8",
|
"version": "4.1.9",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.8.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/rawlist/-/rawlist-4.1.9.tgz",
|
||||||
"integrity": "sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==",
|
"integrity": "sha512-AWpxB7MuJrRiSfTKGJ7Y68imYt8P9N3Gaa7ySdkFj1iWjr6WfbGAhdZvw/UnhFXTHITJzxGUI9k8IX7akAEBCg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"yoctocolors-cjs": "^2.1.2"
|
"yoctocolors-cjs": "^2.1.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1625,15 +1653,15 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/search": {
|
"node_modules/@inquirer/search": {
|
||||||
"version": "3.1.3",
|
"version": "3.2.0",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/search/-/search-3.2.0.tgz",
|
||||||
"integrity": "sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==",
|
"integrity": "sha512-a5SzB/qrXafDX1Z4AZW3CsVoiNxcIYCzYP7r9RzrfMpaLpB+yWi5U8BWagZyLmwR0pKbbL5umnGRd0RzGVI8bQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/figures": "^1.0.13",
|
"@inquirer/figures": "^1.0.14",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"yoctocolors-cjs": "^2.1.2"
|
"yoctocolors-cjs": "^2.1.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1649,16 +1677,16 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/select": {
|
"node_modules/@inquirer/select": {
|
||||||
"version": "4.3.4",
|
"version": "4.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/select/-/select-4.4.0.tgz",
|
||||||
"integrity": "sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==",
|
"integrity": "sha512-kaC3FHsJZvVyIjYBs5Ih8y8Bj4P/QItQWrZW22WJax7zTN+ZPXVGuOM55vzbdCP9zKUiBd9iEJVdesujfF+cAA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@inquirer/ansi": "^1.0.0",
|
"@inquirer/ansi": "^1.0.1",
|
||||||
"@inquirer/core": "^10.2.2",
|
"@inquirer/core": "^10.3.0",
|
||||||
"@inquirer/figures": "^1.0.13",
|
"@inquirer/figures": "^1.0.14",
|
||||||
"@inquirer/type": "^3.0.8",
|
"@inquirer/type": "^3.0.9",
|
||||||
"yoctocolors-cjs": "^2.1.2"
|
"yoctocolors-cjs": "^2.1.2"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -1674,9 +1702,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@inquirer/type": {
|
"node_modules/@inquirer/type": {
|
||||||
"version": "3.0.8",
|
"version": "3.0.9",
|
||||||
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.8.tgz",
|
"resolved": "https://registry.npmjs.org/@inquirer/type/-/type-3.0.9.tgz",
|
||||||
"integrity": "sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==",
|
"integrity": "sha512-QPaNt/nmE2bLGQa9b7wwyRJoLZ7pN6rcyXvzU0YCmivmJyq1BVo94G98tStRWkoD1RgDX5C+dPlhhHzNdu/W/w==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -3354,15 +3382,22 @@
|
||||||
"win32"
|
"win32"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"node_modules/@scarf/scarf": {
|
||||||
|
"version": "1.4.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@scarf/scarf/-/scarf-1.4.0.tgz",
|
||||||
|
"integrity": "sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==",
|
||||||
|
"hasInstallScript": true,
|
||||||
|
"license": "Apache-2.0"
|
||||||
|
},
|
||||||
"node_modules/@schematics/angular": {
|
"node_modules/@schematics/angular": {
|
||||||
"version": "20.3.5",
|
"version": "20.3.6",
|
||||||
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-20.3.5.tgz",
|
"resolved": "https://registry.npmjs.org/@schematics/angular/-/angular-20.3.6.tgz",
|
||||||
"integrity": "sha512-mrVWO64psqah8E8HgpF30NMizVZyX6aH3k6hqf2tDgU3+giKX7xvTG9UQCaXA4MLBsQbpcWAmwPLipwLnPm8wA==",
|
"integrity": "sha512-YPIEyKPBOyJYlda5fA49kMThzZ4WidomEMDghshux8xidbjDaPWBZdyVPQj3IXyW0teGlUM/TH0TH2weumMZrg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@angular-devkit/core": "20.3.5",
|
"@angular-devkit/core": "20.3.6",
|
||||||
"@angular-devkit/schematics": "20.3.5",
|
"@angular-devkit/schematics": "20.3.6",
|
||||||
"jsonc-parser": "3.3.1"
|
"jsonc-parser": "3.3.1"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -3526,16 +3561,16 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/jasmine": {
|
"node_modules/@types/jasmine": {
|
||||||
"version": "5.1.9",
|
"version": "5.1.11",
|
||||||
"resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.9.tgz",
|
"resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-5.1.11.tgz",
|
||||||
"integrity": "sha512-8t4HtkW4wxiPVedMpeZ63n3vlWxEIquo/zc1Tm8ElU+SqVV7+D3Na2PWaJUp179AzTragMWVwkMv7mvty0NfyQ==",
|
"integrity": "sha512-eAij9lMAsosuA8cvRcqw7p2vO+LUraktQDmOUFx2jAnya8NUchr3DryHksfhZbRzU83vzNUSZhlk1cFdoePxwA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "24.7.0",
|
"version": "24.8.1",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-24.8.1.tgz",
|
||||||
"integrity": "sha512-IbKooQVqUBrlzWTi79E8Fw78l8k1RNtlDDNWsFZs7XonuQSJ8oNYfEeclhprUldXISRMLzBpILuKgPlIxm+/Yw==",
|
"integrity": "sha512-alv65KGRadQVfVcG69MuB4IzdYVpRwMG/mq8KWOaoOdyY617P5ivaDiMCGOFDWD2sAn5Q0mR3mRtUOgm99hL9Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -3744,9 +3779,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/baseline-browser-mapping": {
|
"node_modules/baseline-browser-mapping": {
|
||||||
"version": "2.8.14",
|
"version": "2.8.17",
|
||||||
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.14.tgz",
|
"resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.17.tgz",
|
||||||
"integrity": "sha512-GM9c0cWWR8Ga7//Ves/9KRgTS8nLausCkP3CGiFLrnwA2CDUluXgaQqvrULoR2Ujrd/mz/lkX87F5BHFsNr5sQ==",
|
"integrity": "sha512-j5zJcx6golJYTG6c05LUZ3Z8Gi+M62zRT/ycz4Xq4iCOdpcxwg7ngEYD4KA0eWZC7U17qh/Smq8bYbACJ0ipBA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
@ -3892,6 +3927,12 @@
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/bulma": {
|
||||||
|
"version": "1.0.4",
|
||||||
|
"resolved": "https://registry.npmjs.org/bulma/-/bulma-1.0.4.tgz",
|
||||||
|
"integrity": "sha512-Ffb6YGXDiZYX3cqvSbHWqQ8+LkX6tVoTcZuVB3lm93sbAVXlO0D6QlOTMnV6g18gILpAXqkG2z9hf9z4hCjz2g==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/bytes": {
|
"node_modules/bytes": {
|
||||||
"version": "3.1.2",
|
"version": "3.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
||||||
|
|
@ -4049,9 +4090,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001749",
|
"version": "1.0.30001751",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001749.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001751.tgz",
|
||||||
"integrity": "sha512-0rw2fJOmLfnzCRbkm8EyHL8SvI2Apu5UbnQuTsJ0ClgrH8hcwFooJ1s5R0EP8o8aVrFu8++ae29Kt9/gZAZp/Q==",
|
"integrity": "sha512-A0QJhug0Ly64Ii3eIqHu5X51ebln3k4yTUkY1j8drqpWHVreg/VLijN48cZ1bYPiqOQuqpkIKnzr/Ul8V+p6Cw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
@ -4467,6 +4508,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/deepmerge-ts": {
|
||||||
|
"version": "7.1.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/deepmerge-ts/-/deepmerge-ts-7.1.5.tgz",
|
||||||
|
"integrity": "sha512-HOJkrhaYsweh+W+e74Yn7YStZOilkoPb6fycpwNLKzSPtruFs48nYis0zy5yJz1+ktUhHxoRDJ27RQAWLIJVJw==",
|
||||||
|
"license": "BSD-3-Clause",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=16.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/depd": {
|
"node_modules/depd": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
||||||
|
|
@ -4608,16 +4658,16 @@
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
"node_modules/electron-to-chromium": {
|
"node_modules/electron-to-chromium": {
|
||||||
"version": "1.5.233",
|
"version": "1.5.237",
|
||||||
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.233.tgz",
|
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.237.tgz",
|
||||||
"integrity": "sha512-iUdTQSf7EFXsDdQsp8MwJz5SVk4APEFqXU/S47OtQ0YLqacSwPXdZ5vRlMX3neb07Cy2vgioNuRnWUXFwuslkg==",
|
"integrity": "sha512-icUt1NvfhGLar5lSWH3tHNzablaA5js3HVHacQimfP8ViEBOQv+L7DKEuHdbTZ0SKCO1ogTJTIL1Gwk9S6Qvcg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
"node_modules/emoji-regex": {
|
"node_modules/emoji-regex": {
|
||||||
"version": "10.5.0",
|
"version": "10.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.5.0.tgz",
|
"resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz",
|
||||||
"integrity": "sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==",
|
"integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|
@ -4944,9 +4994,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/exponential-backoff": {
|
"node_modules/exponential-backoff": {
|
||||||
"version": "3.1.2",
|
"version": "3.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz",
|
||||||
"integrity": "sha512-8QxYTVXUkuy7fIIoitQkPwGonB8F3Zj8eEO8Sqg9Zv/bkI7RJAzowee4gr81Hak/dUTpA2Z7VfQgoijjPNlUZA==",
|
"integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0"
|
"license": "Apache-2.0"
|
||||||
},
|
},
|
||||||
|
|
@ -5594,9 +5644,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/immutable": {
|
"node_modules/immutable": {
|
||||||
"version": "5.1.3",
|
"version": "5.1.4",
|
||||||
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.3.tgz",
|
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.4.tgz",
|
||||||
"integrity": "sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==",
|
"integrity": "sha512-p6u1bG3YSnINT5RQmx/yRZBpenIl30kVxkTLDyHLIMk0gict704Q9n+thfDI7lTRm9vXdDYutVzXhzcThxTnXA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|
@ -7108,9 +7158,9 @@
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"node_modules/node-gyp": {
|
"node_modules/node-gyp": {
|
||||||
"version": "11.4.2",
|
"version": "11.5.0",
|
||||||
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-11.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-11.5.0.tgz",
|
||||||
"integrity": "sha512-3gD+6zsrLQH7DyYOUIutaauuXrcyxeTPyQuZQCQoNPZMHMMS5m4y0xclNpvYzoK3VNzuyxT6eF4mkIL4WSZ1eQ==",
|
"integrity": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
@ -7212,9 +7262,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/node-releases": {
|
"node_modules/node-releases": {
|
||||||
"version": "2.0.23",
|
"version": "2.0.25",
|
||||||
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.23.tgz",
|
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.25.tgz",
|
||||||
"integrity": "sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==",
|
"integrity": "sha512-4auku8B/vw5psvTiiN9j1dAOsXvMoGqJuKJcR+dTdqiXEK20mMTk1UEo3HS16LeGQsVG6+qKTPM9u/qQ2LqATA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
|
@ -7949,6 +7999,12 @@
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "Apache-2.0"
|
"license": "Apache-2.0"
|
||||||
},
|
},
|
||||||
|
"node_modules/remixicon": {
|
||||||
|
"version": "4.7.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/remixicon/-/remixicon-4.7.0.tgz",
|
||||||
|
"integrity": "sha512-g2pHOofQWARWpxdbrQu5+K3C8ZbqguQFzE54HIMWFCpFa63pumaAltIgZmFMRQpKKBScRWQASQfWxS9asNCcHQ==",
|
||||||
|
"license": "Apache-2.0"
|
||||||
|
},
|
||||||
"node_modules/require-directory": {
|
"node_modules/require-directory": {
|
||||||
"version": "2.1.1",
|
"version": "2.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
|
||||||
|
|
@ -8265,6 +8321,20 @@
|
||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/shepherd.js": {
|
||||||
|
"version": "14.5.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/shepherd.js/-/shepherd.js-14.5.1.tgz",
|
||||||
|
"integrity": "sha512-VuvPvLG1QjNOLP7AIm2HGyfmxEIz8QdskvWOHwUcxLDibYWjLRBmCWd8LSL5FlwhBW7D/GU+3gNVC/ASxAWdxg==",
|
||||||
|
"license": "AGPL-3.0",
|
||||||
|
"dependencies": {
|
||||||
|
"@floating-ui/dom": "^1.7.0",
|
||||||
|
"@scarf/scarf": "^1.4.0",
|
||||||
|
"deepmerge-ts": "^7.1.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "18.* || >= 20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/side-channel": {
|
"node_modules/side-channel": {
|
||||||
"version": "1.1.0",
|
"version": "1.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,10 @@
|
||||||
"@angular/forms": "^20.3.0",
|
"@angular/forms": "^20.3.0",
|
||||||
"@angular/platform-browser": "^20.3.0",
|
"@angular/platform-browser": "^20.3.0",
|
||||||
"@angular/router": "^20.3.0",
|
"@angular/router": "^20.3.0",
|
||||||
|
"bulma": "^1.0.4",
|
||||||
|
"remixicon": "^4.7.0",
|
||||||
"rxjs": "~7.8.0",
|
"rxjs": "~7.8.0",
|
||||||
|
"shepherd.js": "^14.5.1",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"zone.js": "~0.15.0"
|
"zone.js": "~0.15.0"
|
||||||
},
|
},
|
||||||
|
|
@ -45,4 +48,4 @@
|
||||||
"karma-jasmine-html-reporter": "~2.1.0",
|
"karma-jasmine-html-reporter": "~2.1.0",
|
||||||
"typescript": "~5.9.2"
|
"typescript": "~5.9.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
53
angular-basic/setup.sh
Executable file
|
|
@ -0,0 +1,53 @@
|
||||||
|
#!/bin/bash
|
||||||
|
set -euo pipefail
|
||||||
|
echo "============= setup script"
|
||||||
|
|
||||||
|
node --version
|
||||||
|
npm version
|
||||||
|
|
||||||
|
# Déterminer les chemins
|
||||||
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
||||||
|
APP_DIR="$SCRIPT_DIR"
|
||||||
|
|
||||||
|
# Supporter deux structures:
|
||||||
|
# 1) `angular-basic/my-workspace/projects/sae-lib` (quand le contexte de build est le dossier angular-basic)
|
||||||
|
# 2) `../my-workspace/projects/sae-lib` (quand on copie my-workspace à côté d'angular-basic dans /app)
|
||||||
|
LIB_DIR_CANDIDATES=(
|
||||||
|
"$APP_DIR/my-workspace/projects/sae-lib"
|
||||||
|
"$APP_DIR/../my-workspace/projects/sae-lib"
|
||||||
|
)
|
||||||
|
|
||||||
|
LIB_DIR=""
|
||||||
|
for d in "${LIB_DIR_CANDIDATES[@]}"; do
|
||||||
|
if [ -d "$d" ]; then
|
||||||
|
LIB_DIR="$d"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ -z "$LIB_DIR" ]; then
|
||||||
|
echo "Erreur: impossible de localiser le dossier de la librairie sae-lib." >&2
|
||||||
|
echo "Cherché dans: ${LIB_DIR_CANDIDATES[*]}" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Préparation de sae-lib (pack) depuis: $LIB_DIR"
|
||||||
|
mkdir ./node_modules/sae-lib -p
|
||||||
|
cp -r $LIB_DIR ./node_modules/sae-lib
|
||||||
|
#cd "$LIB_DIR"
|
||||||
|
## Créer un paquet tarball local sans toucher au prefix global
|
||||||
|
#TARBALL_NAME=$(npm pack --silent)
|
||||||
|
#TARBALL_PATH="$LIB_DIR/$TARBALL_NAME"
|
||||||
|
#echo "Tarball créé: $TARBALL_PATH"
|
||||||
|
|
||||||
|
cd "$APP_DIR"
|
||||||
|
echo "Installation des dépendances de l'app..."
|
||||||
|
npm install --legacy-peer-deps
|
||||||
|
#echo "Installation de sae-lib depuis le tarball local..."
|
||||||
|
#npm install --legacy-peer-deps "$TARBALL_PATH"
|
||||||
|
|
||||||
|
# Installer les peerDependencies nécessaires à sae-lib (si absents)
|
||||||
|
#echo "Installation des peer deps de sae-lib (remixicon, bulma, shepherd.js) ..."
|
||||||
|
npm install --legacy-peer-deps remixicon bulma shepherd.js
|
||||||
|
|
||||||
|
echo "============= setup script done"
|
||||||
|
|
@ -1,42 +1,41 @@
|
||||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
<style>
|
||||||
<!-- * * * * * * * * * * * The content below * * * * * * * * * * * -->
|
|
||||||
<!-- * * * * * * * * * * is only a placeholder * * * * * * * * * * -->
|
|
||||||
<!-- * * * * * * * * * * and can be replaced. * * * * * * * * * * -->
|
|
||||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
|
||||||
<!-- * * * * * * * * * Delete the template below * * * * * * * * * -->
|
|
||||||
<!-- * * * * * * * to get started with your project! * * * * * * * -->
|
|
||||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
|
||||||
<style>
|
|
||||||
input {
|
input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.left-side {
|
.left-side {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.right-side {
|
.right-side {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<main class="main">
|
<main [ngClass]="{ 'theming-system': true}" class="main">
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<div class="left-side">
|
<div class="left-side">
|
||||||
<h1>Angular app</h1>
|
<h1>Angular app with Aero components and styles</h1>
|
||||||
|
|
||||||
|
<sae-color-display hexaCode="#96BEE4" name="primary 100"></sae-color-display>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<input [(ngModel)]="backend" type="text">
|
||||||
|
<sae-m-button [kind]="'primary'" [label]="'test call streamlit'">
|
||||||
|
</sae-m-button>
|
||||||
|
<br>
|
||||||
|
|
||||||
<input type="text" [(ngModel)]="backend">
|
|
||||||
<button>
|
|
||||||
test call streamlit
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
|
|
@ -50,4 +49,4 @@
|
||||||
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * -->
|
||||||
|
|
||||||
|
|
||||||
<router-outlet />
|
<router-outlet/>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
body{
|
||||||
|
background: #c4e3de;
|
||||||
|
color: #0a1927;
|
||||||
|
font-family: 'Barlow', sans-serif;
|
||||||
|
}
|
||||||
|
|
@ -1,10 +1,12 @@
|
||||||
import { Component, signal } from '@angular/core';
|
import {Component, signal} from '@angular/core';
|
||||||
import { RouterOutlet } from '@angular/router';
|
import {RouterOutlet} from '@angular/router';
|
||||||
import { FormsModule } from '@angular/forms';
|
import {ColorDisplay, MainButton} from 'sae-lib';
|
||||||
|
import {CommonModule, NgClass} from '@angular/common';
|
||||||
|
import {FormsModule} from '@angular/forms';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-root',
|
selector: 'app-root',
|
||||||
imports: [RouterOutlet, FormsModule],
|
imports: [NgClass, RouterOutlet, CommonModule, MainButton, ColorDisplay, FormsModule],
|
||||||
templateUrl: './app.html',
|
templateUrl: './app.html',
|
||||||
styleUrl: './app.scss'
|
styleUrl: './app.scss'
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1 +1,2 @@
|
||||||
/* You can add global styles to this file, and also import other style files */
|
/* You can add global styles to this file, and also import other style files */
|
||||||
|
@use 'sae-lib/styles/index.scss';
|
||||||
|
|
@ -13,7 +13,19 @@
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
"target": "ES2022",
|
"target": "ES2022",
|
||||||
"module": "preserve"
|
"module": "preserve",
|
||||||
|
"baseUrl": "./",
|
||||||
|
"paths": {
|
||||||
|
"@sae-lib/*": [
|
||||||
|
"./my-workspace/projects/sae-lib/src/*"
|
||||||
|
],
|
||||||
|
"sae-lib": [
|
||||||
|
"./my-workspace/projects/sae-lib/src/public-api"
|
||||||
|
],
|
||||||
|
"sae-lib/*": [
|
||||||
|
"./my-workspace/projects/sae-lib/src/*"
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"angularCompilerOptions": {
|
"angularCompilerOptions": {
|
||||||
"enableI18nLegacyMessageIdFormat": false,
|
"enableI18nLegacyMessageIdFormat": false,
|
||||||
|
|
|
||||||
|
|
@ -1,105 +0,0 @@
|
||||||
# ▶️ EasyAngular
|
|
||||||
|
|
||||||
Welcome to the EasyAngular boilerplate! This project is designed to help you quickly start a new **Angular 18** project with **Bootstrap 5** and various useful libraries. It comes with pre-coded elements to streamline your development process.
|
|
||||||
|
|
||||||
## Getting started
|
|
||||||
### Prerequisites
|
|
||||||
|
|
||||||
Make sure you have the following installed :
|
|
||||||
- [Node.js](https://nodejs.org/) (version 20)
|
|
||||||
- [Angular CLI](https://angular.dev/) (version 18) using `npm install -g @angular/cli`
|
|
||||||
|
|
||||||
### Installation
|
|
||||||
Clone the repository :
|
|
||||||
```sh
|
|
||||||
git clone https://github.com/NicolasRoehm/angular-boilerplate.git
|
|
||||||
cd angular-boilerplate
|
|
||||||
npm install
|
|
||||||
```
|
|
||||||
|
|
||||||
### ✒️ Usage
|
|
||||||
- Rename `EasyAngular` and `easy-angular` with your project name
|
|
||||||
- Place favicon generated with [RealFavIconGenerator](https://realfavicongenerator.net/) into `src/assets/img/favicon` folder
|
|
||||||
|
|
||||||
### Development server
|
|
||||||
|
|
||||||
Run the following command for a development server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.
|
|
||||||
```sh
|
|
||||||
ng-serve
|
|
||||||
```
|
|
||||||
|
|
||||||
## Boilerplate content
|
|
||||||
### 🗂️ Source code structure
|
|
||||||
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<img src="./src/assets/img/project/folder-structure.png" alt="Project Structure" width="200"/>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<ul>
|
|
||||||
<li><strong>Pages</strong>
|
|
||||||
<ul>
|
|
||||||
<li>Auth (login, forgot password, validate account) with 2 possible layouts</li>
|
|
||||||
<li>Home</li>
|
|
||||||
<li>404</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><strong>Shared components</strong>
|
|
||||||
<ul>
|
|
||||||
<li>Blocks : toast & progress bar</li>
|
|
||||||
<li>Forms : confirm</li>
|
|
||||||
<li>Layouts : page & header</li>
|
|
||||||
<li>Modals : wrapper</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
<li><strong>Enums</strong> : endpoints / environments / storage keys</li>
|
|
||||||
<li><strong>Helpers</strong> : storage / string</li>
|
|
||||||
<li><strong>Services</strong> : app (for requests) / store (for state management using signals)</li>
|
|
||||||
<li><strong>i18n</strong> : en.json (for internationalization)</li>
|
|
||||||
</ul>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
|
|
||||||
### 🌐 Included packages
|
|
||||||
- [Bootstrap 5](https://getbootstrap.com/) : SCSS style & [ng-bootstrap](https://ng-bootstrap.github.io/) components
|
|
||||||
- [Axios](https://github.com/axios/axios) : HTTP client
|
|
||||||
- [ArrayTyper](https://github.com/FranzStrudel/-caliatys-array-typer) : Utility for type-safe array operations
|
|
||||||
- [angular-svg-icon](https://github.com/czeckd/angular-svg-icon) : SVG icon support
|
|
||||||
- [ngx-translate](https://github.com/ngx-translate/core) : Internationalization library
|
|
||||||
|
|
||||||
## 🛠️ Tools
|
|
||||||
- Generate models from JSON - https://app.quicktype.io/
|
|
||||||
- Generate favicon from SVG - https://realfavicongenerator.net/
|
|
||||||
|
|
||||||
## Angular CLI commands
|
|
||||||
### Code scaffolding
|
|
||||||
Generate a new component :
|
|
||||||
```sh
|
|
||||||
ng generate component component-name
|
|
||||||
```
|
|
||||||
You can also use `ng generate` for directives, pipes, services, classes, guards, interfaces, enums, and modules.
|
|
||||||
|
|
||||||
### Build
|
|
||||||
Build the project :
|
|
||||||
```sh
|
|
||||||
ng build
|
|
||||||
```
|
|
||||||
The build artifacts will be stored in the `dist/` directory.
|
|
||||||
|
|
||||||
### Running tests
|
|
||||||
#### Unit tests
|
|
||||||
Run unit tests via Karma :
|
|
||||||
```sh
|
|
||||||
ng test
|
|
||||||
```
|
|
||||||
|
|
||||||
#### End-to-End tests
|
|
||||||
Run end-to-end tests via a platform of your choice. You need to add a package that implements end-to-end testing capabilities :
|
|
||||||
```sh
|
|
||||||
ng e2e
|
|
||||||
```
|
|
||||||
|
|
||||||
## Further help
|
|
||||||
To get more help on the Angular CLI, use `ng help` or visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
|
|
||||||
|
|
@ -1,113 +0,0 @@
|
||||||
{
|
|
||||||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
||||||
"version": 1,
|
|
||||||
"newProjectRoot": "projects",
|
|
||||||
"projects": {
|
|
||||||
"EasyAngular": {
|
|
||||||
"projectType": "application",
|
|
||||||
"schematics": {
|
|
||||||
"@schematics/angular:component": {
|
|
||||||
"style": "scss"
|
|
||||||
},
|
|
||||||
"@schematics/angular:application": {
|
|
||||||
"strict": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "",
|
|
||||||
"sourceRoot": "src",
|
|
||||||
"prefix": "app",
|
|
||||||
"architect": {
|
|
||||||
"build": {
|
|
||||||
"builder": "@angular-devkit/build-angular:browser",
|
|
||||||
"options": {
|
|
||||||
"outputPath": "dist/easy-angular",
|
|
||||||
"index": "src/index.html",
|
|
||||||
"main": "src/main.ts",
|
|
||||||
"polyfills": "src/polyfills.ts",
|
|
||||||
"tsConfig": "tsconfig.app.json",
|
|
||||||
"inlineStyleLanguage": "scss",
|
|
||||||
"assets": [
|
|
||||||
"src/assets/img/favicon/favicon.ico",
|
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/assets/scss/styles.scss"
|
|
||||||
],
|
|
||||||
"scripts": []
|
|
||||||
},
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"budgets": [
|
|
||||||
{
|
|
||||||
"type": "initial",
|
|
||||||
"maximumWarning": "500kb",
|
|
||||||
"maximumError": "1mb"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "anyComponentStyle",
|
|
||||||
"maximumWarning": "2kb",
|
|
||||||
"maximumError": "4kb"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"fileReplacements": [
|
|
||||||
{
|
|
||||||
"replace": "src/environments/environment.ts",
|
|
||||||
"with": "src/environments/environment.prod.ts"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"outputHashing": "all"
|
|
||||||
},
|
|
||||||
"development": {
|
|
||||||
"buildOptimizer": false,
|
|
||||||
"optimization": false,
|
|
||||||
"vendorChunk": true,
|
|
||||||
"extractLicenses": false,
|
|
||||||
"sourceMap": true,
|
|
||||||
"namedChunks": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultConfiguration": "production"
|
|
||||||
},
|
|
||||||
"serve": {
|
|
||||||
"builder": "@angular-devkit/build-angular:dev-server",
|
|
||||||
"configurations": {
|
|
||||||
"production": {
|
|
||||||
"buildTarget": "EasyAngular:build:production"
|
|
||||||
},
|
|
||||||
"development": {
|
|
||||||
"buildTarget": "EasyAngular:build:development"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"defaultConfiguration": "development"
|
|
||||||
},
|
|
||||||
"extract-i18n": {
|
|
||||||
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
||||||
"options": {
|
|
||||||
"buildTarget": "EasyAngular:build"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"test": {
|
|
||||||
"builder": "@angular-devkit/build-angular:karma",
|
|
||||||
"options": {
|
|
||||||
"main": "src/test.ts",
|
|
||||||
"polyfills": "src/polyfills.ts",
|
|
||||||
"tsConfig": "tsconfig.spec.json",
|
|
||||||
"karmaConfig": "karma.conf.js",
|
|
||||||
"inlineStyleLanguage": "scss",
|
|
||||||
"assets": [
|
|
||||||
"src/assets/img/favicon/favicon.ico",
|
|
||||||
"src/assets"
|
|
||||||
],
|
|
||||||
"styles": [
|
|
||||||
"src/assets/scss/styles.scss"
|
|
||||||
],
|
|
||||||
"scripts": []
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"cli": {
|
|
||||||
"analytics": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
"use strict";(self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[]).push([[142],{3142:(h,i,a)=>{a.r(i),a.d(i,{ForgotPasswordComponent:()=>v});var l=a(467),m=a(177),r=a(9417),_=a(4550),u=a(9664),t=a(4438),d=a(1315),c=a(6825);const p=e=>({"is-invalid":e});function f(e,g){1&e&&(t.j41(0,"div",13),t.EFF(1),t.nI1(2,"translate"),t.k0s()),2&e&&(t.R7$(),t.SpI(" ",t.bMT(2,1,"FIELD_REQUIRED")," "))}function E(e,g){1&e&&(t.j41(0,"div",13),t.EFF(1),t.nI1(2,"translate"),t.k0s()),2&e&&(t.R7$(),t.SpI(" ",t.bMT(2,1,"FIELD_EMAIL")," "))}let v=(()=>{class e{constructor(o,s,n){this.router=o,this.storeService=s,this.appService=n,this.initFormGroup()}initFormGroup(){this.formGroup=new r.gE({email:new r.MJ({value:"",disabled:!1},{validators:[r.k0.required,r.k0.email],nonNullable:!0})})}onClickSubmit(){var o=this;return(0,l.A)(function*(){yield o.forgotPassword()})()}forgotPassword(){var o=this;return(0,l.A)(function*(){o.storeService.isLoading.set(!0);const s=o.formGroup.controls.email.getRawValue(),n=yield o.appService.forgotPassword(s);o.storeService.isLoading.set(!1),n&&o.router.navigate(["/auth/validate-account"])})()}static#t=this.\u0275fac=function(s){return new(s||e)(t.rXU(_.Ix),t.rXU(d.n),t.rXU(c.d))};static#r=this.\u0275cmp=t.VBU({type:e,selectors:[["app-forgot-password"]],standalone:!0,features:[t.aNF],decls:22,vars:19,consts:[[1,"text-center","text-primary","mb-4"],[1,"h2","fw-normal","mb-0"],[1,"d-flex","justify-content-center"],[1,"wrapper"],[3,"ngSubmit","formGroup"],[1,"mb-3"],["for","email",1,"form-label","text-start","w-100"],["type","email","id","email","formControlName","email",1,"form-control",3,"ngClass"],["class","invalid-feedback",4,"ngIf"],[1,"text-center"],["type","submit",1,"btn","btn-primary","px-5",3,"disabled"],[1,"text-center","my-3"],["routerLink","/auth/login"],[1,"invalid-feedback"]],template:function(s,n){1&s&&(t.j41(0,"div",0)(1,"div",1),t.EFF(2),t.nI1(3,"translate"),t.k0s()(),t.j41(4,"div",2)(5,"div",3)(6,"form",4),t.bIt("ngSubmit",function(){return n.onClickSubmit()}),t.j41(7,"div",5)(8,"label",6),t.EFF(9),t.nI1(10,"translate"),t.k0s(),t.nrm(11,"input",7),t.DNE(12,f,3,3,"div",8)(13,E,3,3,"div",8),t.k0s(),t.j41(14,"div",9)(15,"button",10),t.EFF(16),t.nI1(17,"translate"),t.k0s()(),t.j41(18,"div",11)(19,"a",12),t.EFF(20),t.nI1(21,"translate"),t.k0s()()()()()),2&s&&(t.R7$(2),t.JRh(t.bMT(3,9,"FORGOT_YOUR_PWD")),t.R7$(4),t.Y8G("formGroup",n.formGroup),t.R7$(3),t.JRh(t.bMT(10,11,"EMAIL")),t.R7$(2),t.Y8G("ngClass",t.eq3(17,p,n.formGroup.controls.email.errors&&n.formGroup.controls.email.touched)),t.R7$(),t.Y8G("ngIf",n.formGroup.controls.email.hasError("required")),t.R7$(),t.Y8G("ngIf",n.formGroup.controls.email.hasError("email")),t.R7$(2),t.Y8G("disabled",!n.formGroup.valid),t.R7$(),t.SpI(" ",t.bMT(17,13,"RESET_PASSWORD")," "),t.R7$(4),t.JRh(t.bMT(21,15,"BACK_TO_LOGIN")))},dependencies:[r.YN,r.qT,r.me,r.BC,r.cb,r.X1,r.j4,r.JD,m.YU,m.bT,_.Wk,u.h,u.D9],styles:[".wrapper[_ngcontent-%COMP%]{max-width:350px;width:100%}"]})}return e})()}}]);
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
"use strict";(self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[]).push([[290],{6290:(I,i,a)=>{a.r(i),a.d(i,{LoginComponent:()=>b});var l=a(467),m=a(177),o=a(9417),_=a(4550),d=a(9664),E=a(2767),e=a(4438),f=a(1315),v=a(6825);const u=t=>({"is-invalid":t});function R(t,p){1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"translate"),e.k0s()),2&t&&(e.R7$(),e.SpI(" ",e.bMT(2,1,"FIELD_REQUIRED")," "))}function h(t,p){1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"translate"),e.k0s()),2&t&&(e.R7$(),e.SpI(" ",e.bMT(2,1,"FIELD_EMAIL")," "))}function g(t,p){1&t&&(e.j41(0,"div",18),e.EFF(1),e.nI1(2,"translate"),e.k0s()),2&t&&(e.R7$(),e.SpI(" ",e.bMT(2,1,"FIELD_REQUIRED")," "))}let b=(()=>{class t{constructor(n,s,r){this.router=n,this.storeService=s,this.appService=r,this.appName=E.c.appName,this.initFormGroup()}initFormGroup(){this.formGroup=new o.gE({email:new o.MJ({value:"",disabled:!1},{validators:[o.k0.required,o.k0.email],nonNullable:!0}),password:new o.MJ({value:"",disabled:!1},{validators:[o.k0.required],nonNullable:!0})})}onClickSubmit(){var n=this;return(0,l.A)(function*(){yield n.authenticate()})()}authenticate(){var n=this;return(0,l.A)(function*(){n.storeService.isLoading.set(!0);const s=n.formGroup.controls.email.getRawValue(),r=n.formGroup.controls.password.getRawValue(),c=yield n.appService.authenticate(s,r);n.storeService.isLoading.set(!1),c&&n.router.navigate(["/home"])})()}static#e=this.\u0275fac=function(s){return new(s||t)(e.rXU(_.Ix),e.rXU(f.n),e.rXU(v.d))};static#t=this.\u0275cmp=e.VBU({type:t,selectors:[["app-login"]],standalone:!0,features:[e.aNF],decls:34,vars:30,consts:[[1,"text-center","text-primary","mb-4"],[1,"h2","fw-normal","mb-0"],[1,"h1","fw-bold","text-uppercase"],[1,"fw-normal","text-black"],[1,"d-flex","justify-content-center"],[1,"wrapper"],[3,"ngSubmit","formGroup"],[1,"mb-3"],["for","email",1,"form-label","text-start","w-100"],["type","email","id","email","formControlName","email",1,"form-control",3,"ngClass"],["class","invalid-feedback",4,"ngIf"],["for","password",1,"form-label","text-start","w-100"],["type","password","id","password","formControlName","password",1,"form-control",3,"ngClass"],[1,"text-end","mb-3"],["routerLink","/auth/forgot-password",1,""],[1,"text-center"],["type","submit",1,"btn","btn-primary","mb-3","px-5",3,"disabled"],[1,"px-4","d-block"],[1,"invalid-feedback"]],template:function(s,r){1&s&&(e.j41(0,"div",0)(1,"div",1),e.EFF(2),e.nI1(3,"translate"),e.k0s(),e.j41(4,"div",2),e.EFF(5),e.k0s(),e.j41(6,"div",3),e.EFF(7),e.nI1(8,"translate"),e.k0s()(),e.j41(9,"div",4)(10,"div",5)(11,"form",6),e.bIt("ngSubmit",function(){return r.onClickSubmit()}),e.j41(12,"div",7)(13,"label",8),e.EFF(14),e.nI1(15,"translate"),e.k0s(),e.nrm(16,"input",9),e.DNE(17,R,3,3,"div",10)(18,h,3,3,"div",10),e.k0s(),e.j41(19,"div",7)(20,"label",11),e.EFF(21),e.nI1(22,"translate"),e.k0s(),e.nrm(23,"input",12),e.DNE(24,g,3,3,"div",10),e.k0s(),e.j41(25,"div",13)(26,"a",14),e.EFF(27),e.nI1(28,"translate"),e.k0s()(),e.j41(29,"div",15)(30,"button",16)(31,"span",17),e.EFF(32),e.nI1(33,"translate"),e.k0s()()()()()()),2&s&&(e.R7$(2),e.JRh(e.bMT(3,14,"WELCOME_TO")),e.R7$(3),e.JRh(r.appName),e.R7$(2),e.JRh(e.bMT(8,16,"PROJECT_DESC")),e.R7$(4),e.Y8G("formGroup",r.formGroup),e.R7$(3),e.JRh(e.bMT(15,18,"EMAIL")),e.R7$(2),e.Y8G("ngClass",e.eq3(26,u,r.formGroup.controls.email.errors&&r.formGroup.controls.email.touched)),e.R7$(),e.Y8G("ngIf",r.formGroup.controls.email.hasError("required")),e.R7$(),e.Y8G("ngIf",r.formGroup.controls.email.hasError("email")),e.R7$(3),e.JRh(e.bMT(22,20,"PASSWORD")),e.R7$(2),e.Y8G("ngClass",e.eq3(28,u,r.formGroup.controls.password.errors&&r.formGroup.controls.password.touched)),e.R7$(),e.Y8G("ngIf",r.formGroup.controls.password.hasError("required")),e.R7$(3),e.JRh(e.bMT(28,22,"FORGOT_YOUR_PWD")),e.R7$(3),e.Y8G("disabled",!r.formGroup.valid),e.R7$(2),e.JRh(e.bMT(33,24,"SIGN_IN")))},dependencies:[o.YN,o.qT,o.me,o.BC,o.cb,o.X1,o.j4,o.JD,m.YU,m.bT,_.Wk,d.h,d.D9],styles:[".wrapper[_ngcontent-%COMP%]{max-width:350px;width:100%}"]})}return t})()}}]);
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
"use strict";(self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[]).push([[360],{1360:(A,l,n)=>{n.r(l),n.d(l,{ValidateAccountComponent:()=>h});var i=n(467),c=n(177),r=n(9417),u=n(9664),m=n(2767),t=n(4438),d=n(4550),p=n(1315),v=n(6825);const f=s=>({"is-invalid":s});function E(s,g){1&s&&(t.j41(0,"div",11),t.EFF(1),t.nI1(2,"translate"),t.k0s()),2&s&&(t.R7$(),t.SpI(" ",t.bMT(2,1,"FIELD_REQUIRED")," "))}let h=(()=>{class s{constructor(e,o,a,_){this.router=e,this.storeService=o,this.activatedRoute=a,this.appService=_,this.tokenFromUrl="",this.initFormGroup()}ngOnInit(){var e=this;return(0,i.A)(function*(){e.activatedRoute.queryParams.subscribe(o=>{e.tokenFromUrl=o.token,m.c.production||console.log("ValidateAccountComponent : ngOnInit -> Token : ",e.tokenFromUrl)})})()}initFormGroup(){this.formGroup=new r.gE({password:new r.MJ({value:"",disabled:!1},{validators:[r.k0.required],nonNullable:!0})})}onClickSubmit(){var e=this;return(0,i.A)(function*(){e.tokenFromUrl&&(yield e.validateNewAccount())})()}validateNewAccount(){var e=this;return(0,i.A)(function*(){e.storeService.isLoading.set(!0);const o=e.formGroup.controls.password.getRawValue(),a=yield e.appService.validateAccount(e.tokenFromUrl,o);e.storeService.isLoading.set(!1),a&&e.router.navigate(["/home"])})()}static#t=this.\u0275fac=function(o){return new(o||s)(t.rXU(d.Ix),t.rXU(p.n),t.rXU(d.nX),t.rXU(v.d))};static#e=this.\u0275cmp=t.VBU({type:s,selectors:[["app-validate-account"]],standalone:!0,features:[t.aNF],decls:17,vars:15,consts:[[1,"text-center","text-primary","mb-4"],[1,"h2","fw-normal","mb-0"],[1,"d-flex","justify-content-center"],[1,"wrapper"],[3,"ngSubmit","formGroup"],[1,"mb-3"],["for","password",1,"form-label","text-start","w-100"],["type","password","id","password","formControlName","password",1,"form-control",3,"ngClass"],["class","invalid-feedback",4,"ngIf"],[1,"text-center"],["type","submit",1,"btn","btn-primary","px-5",3,"disabled"],[1,"invalid-feedback"]],template:function(o,a){1&o&&(t.j41(0,"div",0)(1,"div",1),t.EFF(2),t.nI1(3,"translate"),t.k0s()(),t.j41(4,"div",2)(5,"div",3)(6,"form",4),t.bIt("ngSubmit",function(){return a.onClickSubmit()}),t.j41(7,"div",5)(8,"label",6),t.EFF(9),t.nI1(10,"translate"),t.k0s(),t.nrm(11,"input",7),t.DNE(12,E,3,3,"div",8),t.k0s(),t.j41(13,"div",9)(14,"button",10),t.EFF(15),t.nI1(16,"translate"),t.k0s()()()()()),2&o&&(t.R7$(2),t.JRh(t.bMT(3,7,"VALIDATE_ACCOUNT")),t.R7$(4),t.Y8G("formGroup",a.formGroup),t.R7$(3),t.JRh(t.bMT(10,9,"PASSWORD")),t.R7$(2),t.Y8G("ngClass",t.eq3(13,f,a.formGroup.controls.password.errors&&a.formGroup.controls.password.touched)),t.R7$(),t.Y8G("ngIf",a.formGroup.controls.password.hasError("required")),t.R7$(2),t.Y8G("disabled",!a.formGroup.valid),t.R7$(),t.SpI(" ",t.bMT(16,11,"VALIDATE")," "))},dependencies:[r.YN,r.qT,r.me,r.BC,r.cb,r.X1,r.j4,r.JD,c.YU,c.bT,u.h,u.D9],styles:[".wrapper[_ngcontent-%COMP%]{max-width:350px;width:100%}"]})}return s})()}}]);
|
|
||||||
382
angular18/dist/easy-angular/3rdpartylicenses.txt
vendored
|
|
@ -1,382 +0,0 @@
|
||||||
@angular/animations
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/common
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/core
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/forms
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/localize
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/platform-browser
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@angular/router
|
|
||||||
MIT
|
|
||||||
|
|
||||||
@babel/runtime
|
|
||||||
MIT
|
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2014-present Sebastian McKenzie and other contributors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of this software and associated documentation files (the
|
|
||||||
"Software"), to deal in the Software without restriction, including
|
|
||||||
without limitation the rights to use, copy, modify, merge, publish,
|
|
||||||
distribute, sublicense, and/or sell copies of the Software, and to
|
|
||||||
permit persons to whom the Software is furnished to do so, subject to
|
|
||||||
the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be
|
|
||||||
included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
||||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
||||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
||||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
||||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
@ng-bootstrap/ng-bootstrap
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2015-2018 Angular ng-bootstrap team
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
@ngx-translate/core
|
|
||||||
SEE LICENSE IN LICENSE
|
|
||||||
|
|
||||||
@ngx-translate/http-loader
|
|
||||||
SEE LICENSE IN LICENSE
|
|
||||||
|
|
||||||
@popperjs/core
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2019 Federico Zivolo
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
||||||
this software and associated documentation files (the "Software"), to deal in
|
|
||||||
the Software without restriction, including without limitation the rights to
|
|
||||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
||||||
subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
||||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
||||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
angular-svg-icon
|
|
||||||
MIT
|
|
||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2024 David Czeck.
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
axios
|
|
||||||
MIT
|
|
||||||
# Copyright (c) 2014-present Matt Zabriskie & Collaborators
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
|
|
||||||
|
|
||||||
rxjs
|
|
||||||
Apache-2.0
|
|
||||||
Apache License
|
|
||||||
Version 2.0, January 2004
|
|
||||||
http://www.apache.org/licenses/
|
|
||||||
|
|
||||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
||||||
|
|
||||||
1. Definitions.
|
|
||||||
|
|
||||||
"License" shall mean the terms and conditions for use, reproduction,
|
|
||||||
and distribution as defined by Sections 1 through 9 of this document.
|
|
||||||
|
|
||||||
"Licensor" shall mean the copyright owner or entity authorized by
|
|
||||||
the copyright owner that is granting the License.
|
|
||||||
|
|
||||||
"Legal Entity" shall mean the union of the acting entity and all
|
|
||||||
other entities that control, are controlled by, or are under common
|
|
||||||
control with that entity. For the purposes of this definition,
|
|
||||||
"control" means (i) the power, direct or indirect, to cause the
|
|
||||||
direction or management of such entity, whether by contract or
|
|
||||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
||||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
||||||
|
|
||||||
"You" (or "Your") shall mean an individual or Legal Entity
|
|
||||||
exercising permissions granted by this License.
|
|
||||||
|
|
||||||
"Source" form shall mean the preferred form for making modifications,
|
|
||||||
including but not limited to software source code, documentation
|
|
||||||
source, and configuration files.
|
|
||||||
|
|
||||||
"Object" form shall mean any form resulting from mechanical
|
|
||||||
transformation or translation of a Source form, including but
|
|
||||||
not limited to compiled object code, generated documentation,
|
|
||||||
and conversions to other media types.
|
|
||||||
|
|
||||||
"Work" shall mean the work of authorship, whether in Source or
|
|
||||||
Object form, made available under the License, as indicated by a
|
|
||||||
copyright notice that is included in or attached to the work
|
|
||||||
(an example is provided in the Appendix below).
|
|
||||||
|
|
||||||
"Derivative Works" shall mean any work, whether in Source or Object
|
|
||||||
form, that is based on (or derived from) the Work and for which the
|
|
||||||
editorial revisions, annotations, elaborations, or other modifications
|
|
||||||
represent, as a whole, an original work of authorship. For the purposes
|
|
||||||
of this License, Derivative Works shall not include works that remain
|
|
||||||
separable from, or merely link (or bind by name) to the interfaces of,
|
|
||||||
the Work and Derivative Works thereof.
|
|
||||||
|
|
||||||
"Contribution" shall mean any work of authorship, including
|
|
||||||
the original version of the Work and any modifications or additions
|
|
||||||
to that Work or Derivative Works thereof, that is intentionally
|
|
||||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
||||||
or by an individual or Legal Entity authorized to submit on behalf of
|
|
||||||
the copyright owner. For the purposes of this definition, "submitted"
|
|
||||||
means any form of electronic, verbal, or written communication sent
|
|
||||||
to the Licensor or its representatives, including but not limited to
|
|
||||||
communication on electronic mailing lists, source code control systems,
|
|
||||||
and issue tracking systems that are managed by, or on behalf of, the
|
|
||||||
Licensor for the purpose of discussing and improving the Work, but
|
|
||||||
excluding communication that is conspicuously marked or otherwise
|
|
||||||
designated in writing by the copyright owner as "Not a Contribution."
|
|
||||||
|
|
||||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
||||||
on behalf of whom a Contribution has been received by Licensor and
|
|
||||||
subsequently incorporated within the Work.
|
|
||||||
|
|
||||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
copyright license to reproduce, prepare Derivative Works of,
|
|
||||||
publicly display, publicly perform, sublicense, and distribute the
|
|
||||||
Work and such Derivative Works in Source or Object form.
|
|
||||||
|
|
||||||
3. Grant of Patent License. Subject to the terms and conditions of
|
|
||||||
this License, each Contributor hereby grants to You a perpetual,
|
|
||||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
||||||
(except as stated in this section) patent license to make, have made,
|
|
||||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
||||||
where such license applies only to those patent claims licensable
|
|
||||||
by such Contributor that are necessarily infringed by their
|
|
||||||
Contribution(s) alone or by combination of their Contribution(s)
|
|
||||||
with the Work to which such Contribution(s) was submitted. If You
|
|
||||||
institute patent litigation against any entity (including a
|
|
||||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
||||||
or a Contribution incorporated within the Work constitutes direct
|
|
||||||
or contributory patent infringement, then any patent licenses
|
|
||||||
granted to You under this License for that Work shall terminate
|
|
||||||
as of the date such litigation is filed.
|
|
||||||
|
|
||||||
4. Redistribution. You may reproduce and distribute copies of the
|
|
||||||
Work or Derivative Works thereof in any medium, with or without
|
|
||||||
modifications, and in Source or Object form, provided that You
|
|
||||||
meet the following conditions:
|
|
||||||
|
|
||||||
(a) You must give any other recipients of the Work or
|
|
||||||
Derivative Works a copy of this License; and
|
|
||||||
|
|
||||||
(b) You must cause any modified files to carry prominent notices
|
|
||||||
stating that You changed the files; and
|
|
||||||
|
|
||||||
(c) You must retain, in the Source form of any Derivative Works
|
|
||||||
that You distribute, all copyright, patent, trademark, and
|
|
||||||
attribution notices from the Source form of the Work,
|
|
||||||
excluding those notices that do not pertain to any part of
|
|
||||||
the Derivative Works; and
|
|
||||||
|
|
||||||
(d) If the Work includes a "NOTICE" text file as part of its
|
|
||||||
distribution, then any Derivative Works that You distribute must
|
|
||||||
include a readable copy of the attribution notices contained
|
|
||||||
within such NOTICE file, excluding those notices that do not
|
|
||||||
pertain to any part of the Derivative Works, in at least one
|
|
||||||
of the following places: within a NOTICE text file distributed
|
|
||||||
as part of the Derivative Works; within the Source form or
|
|
||||||
documentation, if provided along with the Derivative Works; or,
|
|
||||||
within a display generated by the Derivative Works, if and
|
|
||||||
wherever such third-party notices normally appear. The contents
|
|
||||||
of the NOTICE file are for informational purposes only and
|
|
||||||
do not modify the License. You may add Your own attribution
|
|
||||||
notices within Derivative Works that You distribute, alongside
|
|
||||||
or as an addendum to the NOTICE text from the Work, provided
|
|
||||||
that such additional attribution notices cannot be construed
|
|
||||||
as modifying the License.
|
|
||||||
|
|
||||||
You may add Your own copyright statement to Your modifications and
|
|
||||||
may provide additional or different license terms and conditions
|
|
||||||
for use, reproduction, or distribution of Your modifications, or
|
|
||||||
for any such Derivative Works as a whole, provided Your use,
|
|
||||||
reproduction, and distribution of the Work otherwise complies with
|
|
||||||
the conditions stated in this License.
|
|
||||||
|
|
||||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
||||||
any Contribution intentionally submitted for inclusion in the Work
|
|
||||||
by You to the Licensor shall be under the terms and conditions of
|
|
||||||
this License, without any additional terms or conditions.
|
|
||||||
Notwithstanding the above, nothing herein shall supersede or modify
|
|
||||||
the terms of any separate license agreement you may have executed
|
|
||||||
with Licensor regarding such Contributions.
|
|
||||||
|
|
||||||
6. Trademarks. This License does not grant permission to use the trade
|
|
||||||
names, trademarks, service marks, or product names of the Licensor,
|
|
||||||
except as required for reasonable and customary use in describing the
|
|
||||||
origin of the Work and reproducing the content of the NOTICE file.
|
|
||||||
|
|
||||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
||||||
agreed to in writing, Licensor provides the Work (and each
|
|
||||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
||||||
implied, including, without limitation, any warranties or conditions
|
|
||||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
||||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
||||||
appropriateness of using or redistributing the Work and assume any
|
|
||||||
risks associated with Your exercise of permissions under this License.
|
|
||||||
|
|
||||||
8. Limitation of Liability. In no event and under no legal theory,
|
|
||||||
whether in tort (including negligence), contract, or otherwise,
|
|
||||||
unless required by applicable law (such as deliberate and grossly
|
|
||||||
negligent acts) or agreed to in writing, shall any Contributor be
|
|
||||||
liable to You for damages, including any direct, indirect, special,
|
|
||||||
incidental, or consequential damages of any character arising as a
|
|
||||||
result of this License or out of the use or inability to use the
|
|
||||||
Work (including but not limited to damages for loss of goodwill,
|
|
||||||
work stoppage, computer failure or malfunction, or any and all
|
|
||||||
other commercial damages or losses), even if such Contributor
|
|
||||||
has been advised of the possibility of such damages.
|
|
||||||
|
|
||||||
9. Accepting Warranty or Additional Liability. While redistributing
|
|
||||||
the Work or Derivative Works thereof, You may choose to offer,
|
|
||||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
||||||
or other liability obligations and/or rights consistent with this
|
|
||||||
License. However, in accepting such obligations, You may act only
|
|
||||||
on Your own behalf and on Your sole responsibility, not on behalf
|
|
||||||
of any other Contributor, and only if You agree to indemnify,
|
|
||||||
defend, and hold each Contributor harmless for any liability
|
|
||||||
incurred by, or claims asserted against, such Contributor by reason
|
|
||||||
of your accepting any such warranty or additional liability.
|
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
|
||||||
|
|
||||||
APPENDIX: How to apply the Apache License to your work.
|
|
||||||
|
|
||||||
To apply the Apache License to your work, attach the following
|
|
||||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
||||||
replaced with your own identifying information. (Don't include
|
|
||||||
the brackets!) The text should be enclosed in the appropriate
|
|
||||||
comment syntax for the file format. We also recommend that a
|
|
||||||
file or class name and description of purpose be included on the
|
|
||||||
same "printed page" as the copyright notice for easier
|
|
||||||
identification within third-party archives.
|
|
||||||
|
|
||||||
Copyright (c) 2015-2018 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors
|
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
you may not use this file except in compliance with the License.
|
|
||||||
You may obtain a copy of the License at
|
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
See the License for the specific language governing permissions and
|
|
||||||
limitations under the License.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
tslib
|
|
||||||
0BSD
|
|
||||||
Copyright (c) Microsoft Corporation.
|
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
|
||||||
purpose with or without fee is hereby granted.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
||||||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
||||||
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
||||||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
||||||
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
||||||
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
||||||
PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
|
|
||||||
zone.js
|
|
||||||
MIT
|
|
||||||
The MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2010-2023 Google LLC. https://angular.io/license
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
"use strict";(self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[]).push([[794],{9794:(d,t,n)=>{n.r(t),n.d(t,{routes:()=>h});const h=[{path:"",children:[{path:"",redirectTo:"login",pathMatch:"full"},{path:"login",loadComponent:()=>n.e(290).then(n.bind(n,6290)).then(o=>o.LoginComponent)},{path:"forgot-password",loadComponent:()=>n.e(142).then(n.bind(n,3142)).then(o=>o.ForgotPasswordComponent)},{path:"validate-account",loadComponent:()=>n.e(360).then(n.bind(n,1360)).then(o=>o.ValidateAccountComponent)}]}]}}]);
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
"use strict";(self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[]).push([[887],{8887:(l,a,t)=>{t.r(a),t.d(a,{NotFoundComponent:()=>u});var r=t(4550),s=t(9664),n=t(4438);let u=(()=>{class o{constructor(){}static#n=this.\u0275fac=function(e){return new(e||o)};static#t=this.\u0275cmp=n.VBU({type:o,selectors:[["app-not-found"]],standalone:!0,features:[n.aNF],decls:8,vars:6,consts:[[1,"not-found-container"],[1,"not-found","text-center"],[1,"mb-3"],["routerLink","/home",1,"btn","btn-lg","btn-primary"]],template:function(e,i){1&e&&(n.j41(0,"div",0)(1,"div",1)(2,"h1",2),n.EFF(3),n.nI1(4,"translate"),n.k0s(),n.j41(5,"a",3),n.EFF(6),n.nI1(7,"translate"),n.k0s()()()),2&e&&(n.R7$(3),n.JRh(n.bMT(4,2,"NOT_FOUND")),n.R7$(3),n.SpI(" ",n.bMT(7,4,"GO_TO_HOMEPAGE")," "))},dependencies:[r.Wk,s.h,s.D9],styles:[".not-found-container[_ngcontent-%COMP%]{display:flex;align-items:center;min-height:100vh;position:relative}.not-found-container[_ngcontent-%COMP%] .not-found[_ngcontent-%COMP%]{width:100%}"]})}return o})()}}]);
|
|
||||||
24
angular18/dist/easy-angular/assets/i18n/en.json
vendored
|
|
@ -1,24 +0,0 @@
|
||||||
{
|
|
||||||
"NOT_FOUND" : "404 - Page not found",
|
|
||||||
"GO_TO_HOMEPAGE" : "Go to homepage",
|
|
||||||
"WELCOME_TO" : "Welcome to",
|
|
||||||
"PROJECT_DESC" : "A Centurio boilerplate solution",
|
|
||||||
"SIGN_IN" : "Sign in",
|
|
||||||
"LOGOUT" : "Logout",
|
|
||||||
"HOME" : "Home",
|
|
||||||
"VERSION" : "Version",
|
|
||||||
"USER" : "User",
|
|
||||||
"EMAIL" : "E-mail",
|
|
||||||
"FORGOT_YOUR_PWD" : "Forgot your password?",
|
|
||||||
"BACK_TO_LOGIN" : "Back to login",
|
|
||||||
"VALIDATE_ACCOUNT" : "Validate the account",
|
|
||||||
"VALIDATE" : "Validate",
|
|
||||||
"PASSWORD" : "Password",
|
|
||||||
"LOADING" : "Loading",
|
|
||||||
"CLOSE" : "Close",
|
|
||||||
"DELETE" : "Delete",
|
|
||||||
"ALERT_DELETE_ENTRY" : "Are you sure you want to delete this entry?",
|
|
||||||
"RESET_PASSWORD" : "Reset password",
|
|
||||||
"FIELD_REQUIRED" : "This field is required",
|
|
||||||
"FIELD_EMAIL" : "This field must be an email"
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
|
|
@ -1,9 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<browserconfig>
|
|
||||||
<msapplication>
|
|
||||||
<tile>
|
|
||||||
<square150x150logo src="mstile-150x150.png"/>
|
|
||||||
<TileColor>#2d89ef</TileColor>
|
|
||||||
</tile>
|
|
||||||
</msapplication>
|
|
||||||
</browserconfig>
|
|
||||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 15 KiB |
|
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
"name": "EasyAngular",
|
|
||||||
"short_name": "EasyAngular",
|
|
||||||
"theme_color": "#2b46c7",
|
|
||||||
"background_color": "#2b46c7",
|
|
||||||
"display": "standalone",
|
|
||||||
"scope": "/",
|
|
||||||
"start_url": "",
|
|
||||||
"icons": [
|
|
||||||
{
|
|
||||||
"src": "android-chrome-192x192.png",
|
|
||||||
"sizes": "192x192",
|
|
||||||
"type": "image/png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "android-chrome-512x512.png",
|
|
||||||
"sizes": "512x512",
|
|
||||||
"type": "image/png"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
Before Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 2.3 KiB |
|
|
@ -1,44 +0,0 @@
|
||||||
<?xml version="1.0" standalone="no"?>
|
|
||||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
||||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
||||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
||||||
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
|
|
||||||
preserveAspectRatio="xMidYMid meet">
|
|
||||||
<metadata>
|
|
||||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
|
|
||||||
</metadata>
|
|
||||||
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
|
|
||||||
fill="#000000" stroke="none">
|
|
||||||
<path d="M3298 6995 c-2 -1 -48 -6 -102 -9 -55 -4 -102 -8 -105 -10 -3 -2 -35
|
|
||||||
-7 -70 -10 -35 -4 -85 -11 -110 -16 -25 -5 -57 -12 -71 -14 -83 -14 -199 -42
|
|
||||||
-304 -73 -125 -36 -364 -119 -381 -133 -5 -4 -21 -11 -35 -15 -42 -13 -228
|
|
||||||
-105 -340 -169 -188 -106 -468 -302 -453 -317 7 -7 538 -291 873 -467 58 -30
|
|
||||||
128 -67 155 -82 28 -15 88 -48 135 -72 185 -99 249 -132 340 -181 52 -27 118
|
|
||||||
-62 145 -77 28 -15 100 -53 160 -85 61 -32 133 -70 160 -85 28 -15 89 -48 138
|
|
||||||
-74 222 -118 417 -221 502 -266 39 -21 216 -115 395 -210 179 -95 358 -190
|
|
||||||
398 -211 39 -22 107 -58 150 -80 42 -23 109 -58 147 -79 39 -20 108 -58 155
|
|
||||||
-82 47 -25 119 -63 160 -85 41 -22 120 -64 175 -93 55 -30 145 -77 200 -107
|
|
||||||
55 -29 190 -101 301 -159 l201 -106 1 -1156 c0 -637 1 -1161 1 -1165 2 -22
|
|
||||||
225 294 308 438 57 98 153 292 203 410 71 166 165 468 195 624 56 291 69 431
|
|
||||||
69 711 0 186 -6 326 -19 420 -3 19 -7 53 -10 75 -50 407 -218 897 -435 1265
|
|
||||||
-53 90 -191 301 -214 327 -18 21 -31 37 -55 71 -87 124 -326 373 -501 523
|
|
||||||
-121 104 -424 319 -449 319 -5 0 -11 4 -13 8 -8 20 -306 171 -473 239 -196 81
|
|
||||||
-434 153 -630 192 -126 25 -213 38 -375 57 -56 6 -516 15 -522 9z"/>
|
|
||||||
<path d="M1260 6188 c-96 -77 -312 -289 -391 -383 -19 -22 -42 -49 -53 -60
|
|
||||||
-37 -40 -164 -212 -233 -315 -180 -270 -311 -541 -411 -850 -38 -118 -79 -264
|
|
||||||
-88 -320 -3 -14 -11 -56 -19 -95 -15 -78 -23 -127 -39 -247 -27 -197 -28 -722
|
|
||||||
-1 -828 2 -8 6 -40 10 -71 3 -31 8 -67 10 -80 3 -13 7 -39 10 -58 2 -18 7 -41
|
|
||||||
9 -50 3 -9 8 -31 11 -49 13 -75 77 -306 119 -430 223 -647 652 -1236 1196
|
|
||||||
-1641 435 -324 918 -542 1415 -640 97 -19 127 -24 210 -36 22 -3 54 -8 70 -10
|
|
||||||
120 -19 544 -26 705 -11 146 13 164 15 195 20 17 3 48 8 70 12 22 3 74 12 115
|
|
||||||
20 41 9 89 18 105 21 53 9 327 91 425 127 169 61 484 208 518 240 11 11 17
|
|
||||||
279 13 556 -1 32 -6 37 -59 65 -31 16 -91 48 -132 71 -41 22 -131 70 -200 106
|
|
||||||
-69 36 -161 85 -205 109 -44 23 -129 69 -190 101 -60 32 -129 69 -152 80 l-43
|
|
||||||
22 -1 60 c0 34 0 269 -1 523 0 328 -4 465 -12 471 -6 5 -73 41 -149 81 -76 39
|
|
||||||
-157 82 -180 95 -51 29 -210 113 -462 246 -55 29 -122 65 -150 80 -27 15 -99
|
|
||||||
53 -160 85 -60 32 -163 86 -227 121 -64 35 -119 64 -121 64 -3 0 -40 19 -83
|
|
||||||
43 -73 40 -130 71 -379 202 -49 26 -117 62 -150 80 -33 18 -105 56 -160 85
|
|
||||||
-129 68 -219 116 -325 173 -191 102 -298 159 -347 184 l-53 26 -2 1013 -3
|
|
||||||
1012 -25 -20z"/>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 2.7 KiB |
|
Before Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 679 KiB |
|
Before Width: | Height: | Size: 25 KiB |
|
|
@ -1,48 +0,0 @@
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Browser style : Reset --------------------------------------------------------- Overwrite
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Project ---------------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Link
|
|
||||||
|
|
||||||
// NOTE Scrollbar
|
|
||||||
|
|
||||||
// NOTE Sortable table --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Icons -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Bootstrap --------------------------------------------------------------------- Overwrite
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Pagination ------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Button ----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Modal -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Toast -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
.toast-header {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
.toast-body {
|
|
||||||
background-color: rgba(255, 255, 255, 0.85);
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE Nav -------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Table -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Select ----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Form ------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// Checkbox
|
|
||||||
|
|
||||||
// Radio
|
|
||||||
|
|
||||||
// NOTE Sortable table --------------------------------------------------------------------------
|
|
||||||
|
|
@ -1,80 +0,0 @@
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Variables -------------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
@import 'variables.scss';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Bootstrap -------------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Complete bootstrap
|
|
||||||
@import '../../../node_modules/bootstrap/scss/bootstrap.scss';
|
|
||||||
|
|
||||||
// NOTE Bootstrap configuration
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/functions';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/variables';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/mixins';
|
|
||||||
|
|
||||||
// // NOTE Merge maps
|
|
||||||
// $theme-colors: map-merge($theme-colors, $custom-colors);
|
|
||||||
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/utilities';
|
|
||||||
|
|
||||||
// // NOTE Bootstrap layout & components
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/root';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/reboot';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/type';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/images';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/containers';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/grid';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/tables';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/forms';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/buttons';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/transitions';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/dropdown';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/button-group';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/nav';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/navbar';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/card';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/accordion';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/breadcrumb';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/pagination';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/badge';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/alert';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/progress';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/list-group';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/close';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/toasts';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/modal';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/tooltip';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/popover';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/carousel';
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/spinners';
|
|
||||||
// // @import '../../../node_modules/bootstrap/scss/offcanvas';
|
|
||||||
|
|
||||||
// // NOTE Boostrap helpers
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/helpers';
|
|
||||||
|
|
||||||
// // NOTE Boostrap utilities
|
|
||||||
// @import '../../../node_modules/bootstrap/scss/utilities/api';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE External components ---------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// $roboto-font-path: "../../../node_modules/roboto-fontface/fonts" !default;
|
|
||||||
// @import "../../../node_modules/roboto-fontface/css/roboto/sass/roboto-fontface";
|
|
||||||
// @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700&display=swap');
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Project style ---------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
@import 'project.scss';
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Overwrite styles ------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// @import 'modules/_bootstrap.scss';
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// SECTION Variables ----------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Project ---------------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Colors ----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
// NOTE Bootstrap -------------------------------------------------------------------------------
|
|
||||||
// ----------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Utilities -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
$utilities: (
|
|
||||||
"cursor": (
|
|
||||||
property: cursor,
|
|
||||||
class: cursor,
|
|
||||||
responsive: false,
|
|
||||||
values: pointer,
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// NOTE Color system ----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// $primary: #375F9B;
|
|
||||||
$secondary: #8492A6;
|
|
||||||
$text-muted: #ACA7AA;
|
|
||||||
$info: #375F9B; // #3C78DA;
|
|
||||||
$danger: #D0021B;
|
|
||||||
$success: #12a366;
|
|
||||||
$min-contrast-ratio: 2.5;
|
|
||||||
|
|
||||||
// NOTE Body ------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Grid ------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Borders ---------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Typography -----------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Links -----------------------------------------------------------------------------------
|
|
||||||
// NOTE Badges ----------------------------------------------------------------------------------
|
|
||||||
// NOTE Buttons ---------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
$btn-close-color: white;
|
|
||||||
|
|
||||||
// NOTE Navbar ----------------------------------------------------------------------------------
|
|
||||||
// NOTE Navs ------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Modal -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Dropdowns -------------------------------------------------------------------------------
|
|
||||||
// NOTE Cards -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE List group ------------------------------------------------------------------------------
|
|
||||||
// NOTE Pagination ------------------------------------------------------------------------------
|
|
||||||
// NOTE Popovers --------------------------------------------------------------------------------
|
|
||||||
// NOTE Typography ------------------------------------------------------------------------------
|
|
||||||
// NOTE Forms -----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// NOTE Tables ----------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// !SECTION Variables
|
|
||||||
25
angular18/dist/easy-angular/index.html
vendored
|
|
@ -1,25 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<html lang="en" data-critters-container>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title>EasyAngular</title>
|
|
||||||
<base href="/">
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="./assets/img/favicon/favicon.ico">
|
|
||||||
|
|
||||||
<!-- NOTE RealFavIconGenerator -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/favicon/apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon/favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon/favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="assets/img/favicon/manifest.json">
|
|
||||||
<link rel="mask-icon" href="assets/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<style>@charset "UTF-8";:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#8492A6;--bs-success:#12a366;--bs-info:#375F9B;--bs-warning:#ffc107;--bs-danger:#D0021B;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13, 110, 253;--bs-secondary-rgb:132, 146, 166;--bs-success-rgb:18, 163, 102;--bs-info-rgb:55, 95, 155;--bs-warning-rgb:255, 193, 7;--bs-danger-rgb:208, 2, 27;--bs-light-rgb:248, 249, 250;--bs-dark-rgb:33, 37, 41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#353a42;--bs-success-text-emphasis:#074129;--bs-info-text-emphasis:#16263e;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#53010b;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e6e9ed;--bs-success-bg-subtle:#d0ede0;--bs-info-bg-subtle:#d7dfeb;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f6ccd1;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#ced3db;--bs-success-border-subtle:#a0dac2;--bs-info-border-subtle:#afbfd7;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#ec9aa4;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255, 255, 255;--bs-black-rgb:0, 0, 0;--bs-font-sans-serif:system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--bs-font-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33, 37, 41;--bs-body-bg:#fff;--bs-body-bg-rgb:255, 255, 255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0, 0, 0;--bs-secondary-color:rgba(33, 37, 41, .75);--bs-secondary-color-rgb:33, 37, 41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233, 236, 239;--bs-tertiary-color:rgba(33, 37, 41, .5);--bs-tertiary-color-rgb:33, 37, 41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248, 249, 250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13, 110, 253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10, 88, 202;--bs-code-color:#d63384;--bs-highlight-color:#212529;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, .175);--bs-border-radius:.375rem;--bs-border-radius-sm:.25rem;--bs-border-radius-lg:.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 .5rem 1rem rgba(0, 0, 0, .15);--bs-box-shadow-sm:0 .125rem .25rem rgba(0, 0, 0, .075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, .175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, .075);--bs-focus-ring-width:.25rem;--bs-focus-ring-opacity:.25;--bs-focus-ring-color:rgba(13, 110, 253, .25);--bs-form-valid-color:#12a366;--bs-form-valid-border-color:#12a366;--bs-form-invalid-color:#D0021B;--bs-form-invalid-border-color:#D0021B}*,*:before,*:after{box-sizing:border-box}@media (prefers-reduced-motion: no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}</style><link rel="stylesheet" href="styles.2f04c023778f6564.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.2f04c023778f6564.css"></noscript></head>
|
|
||||||
<body>
|
|
||||||
<app-root></app-root>
|
|
||||||
<script src="runtime.f1cabd74d7db8bcc.js" type="module"></script><script src="polyfills.bffe7b9ad1daa123.js" type="module"></script><script src="main.15a24a4830eefcc2.js" type="module"></script></body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
(()=>{"use strict";var e,v={},m={};function r(e){var o=m[e];if(void 0!==o)return o.exports;var t=m[e]={exports:{}};return v[e](t,t.exports,r),t.exports}r.m=v,e=[],r.O=(o,t,i,u)=>{if(!t){var a=1/0;for(n=0;n<e.length;n++){for(var[t,i,u]=e[n],c=!0,f=0;f<t.length;f++)(!1&u||a>=u)&&Object.keys(r.O).every(b=>r.O[b](t[f]))?t.splice(f--,1):(c=!1,u<a&&(a=u));if(c){e.splice(n--,1);var d=i();void 0!==d&&(o=d)}}return o}u=u||0;for(var n=e.length;n>0&&e[n-1][2]>u;n--)e[n]=e[n-1];e[n]=[t,i,u]},r.d=(e,o)=>{for(var t in o)r.o(o,t)&&!r.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce((o,t)=>(r.f[t](e,o),o),[])),r.u=e=>e+"."+{142:"45234a7373c3ac49",290:"c6d31198e7723f1a",360:"79ccdba96c0b194f",554:"fe6f98c9adf2f1d9",794:"90c743b5e538e5a8",887:"22d3d6e5f1b4ba0b"}[e]+".js",r.miniCssF=e=>{},r.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),(()=>{var e={},o="EasyAngular:";r.l=(t,i,u,n)=>{if(e[t])e[t].push(i);else{var a,c;if(void 0!==u)for(var f=document.getElementsByTagName("script"),d=0;d<f.length;d++){var l=f[d];if(l.getAttribute("src")==t||l.getAttribute("data-webpack")==o+u){a=l;break}}a||(c=!0,(a=document.createElement("script")).type="module",a.charset="utf-8",a.timeout=120,r.nc&&a.setAttribute("nonce",r.nc),a.setAttribute("data-webpack",o+u),a.src=r.tu(t)),e[t]=[i];var s=(g,b)=>{a.onerror=a.onload=null,clearTimeout(p);var y=e[t];if(delete e[t],a.parentNode&&a.parentNode.removeChild(a),y&&y.forEach(h=>h(b)),g)return g(b)},p=setTimeout(s.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=s.bind(null,a.onerror),a.onload=s.bind(null,a.onload),c&&document.head.appendChild(a)}}})(),r.r=e=>{typeof Symbol<"u"&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e;r.tt=()=>(void 0===e&&(e={createScriptURL:o=>o},typeof trustedTypes<"u"&&trustedTypes.createPolicy&&(e=trustedTypes.createPolicy("angular#bundler",e))),e)})(),r.tu=e=>r.tt().createScriptURL(e),r.p="",(()=>{var e={121:0};r.f.j=(i,u)=>{var n=r.o(e,i)?e[i]:void 0;if(0!==n)if(n)u.push(n[2]);else if(121!=i){var a=new Promise((l,s)=>n=e[i]=[l,s]);u.push(n[2]=a);var c=r.p+r.u(i),f=new Error;r.l(c,l=>{if(r.o(e,i)&&(0!==(n=e[i])&&(e[i]=void 0),n)){var s=l&&("load"===l.type?"missing":l.type),p=l&&l.target&&l.target.src;f.message="Loading chunk "+i+" failed.\n("+s+": "+p+")",f.name="ChunkLoadError",f.type=s,f.request=p,n[1](f)}},"chunk-"+i,i)}else e[i]=0},r.O.j=i=>0===e[i];var o=(i,u)=>{var f,d,[n,a,c]=u,l=0;if(n.some(p=>0!==e[p])){for(f in a)r.o(a,f)&&(r.m[f]=a[f]);if(c)var s=c(r)}for(i&&i(u);l<n.length;l++)r.o(e,d=n[l])&&e[d]&&e[d][0](),e[d]=0;return r.O(s)},t=self.webpackChunkEasyAngular=self.webpackChunkEasyAngular||[];t.forEach(o.bind(null,0)),t.push=o.bind(null,t.push.bind(t))})()})();
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
// Karma configuration file, see link for more information
|
|
||||||
// https://karma-runner.github.io/1.0/config/configuration-file.html
|
|
||||||
|
|
||||||
module.exports = function (config) {
|
|
||||||
config.set({
|
|
||||||
basePath: '',
|
|
||||||
frameworks: ['jasmine', '@angular-devkit/build-angular'],
|
|
||||||
plugins: [
|
|
||||||
require('karma-jasmine'),
|
|
||||||
require('karma-chrome-launcher'),
|
|
||||||
require('karma-jasmine-html-reporter'),
|
|
||||||
require('karma-coverage'),
|
|
||||||
require('@angular-devkit/build-angular/plugins/karma')
|
|
||||||
],
|
|
||||||
client: {
|
|
||||||
jasmine: {
|
|
||||||
// you can add configuration options for Jasmine here
|
|
||||||
// the possible options are listed at https://jasmine.github.io/api/edge/Configuration.html
|
|
||||||
// for example, you can disable the random execution with `random: false`
|
|
||||||
// or set a specific seed with `seed: 4321`
|
|
||||||
},
|
|
||||||
clearContext: false // leave Jasmine Spec Runner output visible in browser
|
|
||||||
},
|
|
||||||
jasmineHtmlReporter: {
|
|
||||||
suppressAll: true // removes the duplicated traces
|
|
||||||
},
|
|
||||||
coverageReporter: {
|
|
||||||
dir: require('path').join(__dirname, './coverage/easy-angular'),
|
|
||||||
subdir: '.',
|
|
||||||
reporters: [
|
|
||||||
{ type: 'html' },
|
|
||||||
{ type: 'text-summary' }
|
|
||||||
]
|
|
||||||
},
|
|
||||||
reporters: ['progress', 'kjhtml'],
|
|
||||||
port: 9876,
|
|
||||||
colors: true,
|
|
||||||
logLevel: config.LOG_INFO,
|
|
||||||
autoWatch: true,
|
|
||||||
browsers: ['Chrome'],
|
|
||||||
singleRun: false,
|
|
||||||
restartOnFileChange: true
|
|
||||||
});
|
|
||||||
};
|
|
||||||
12361
angular18/package-lock.json
generated
|
|
@ -1,49 +0,0 @@
|
||||||
{
|
|
||||||
"name": "easy-angular",
|
|
||||||
"version": "0.0.0",
|
|
||||||
"scripts": {
|
|
||||||
"ng": "ng",
|
|
||||||
"start": "ng serve",
|
|
||||||
"build": "ng build",
|
|
||||||
"watch": "ng build --watch --configuration development",
|
|
||||||
"test": "ng test",
|
|
||||||
"add-page": "ng g m pages/page-name --routing && ng g component pages/page-name --skip-tests"
|
|
||||||
},
|
|
||||||
"private": true,
|
|
||||||
"dependencies": {
|
|
||||||
"@angular/animations": "^18.0.1",
|
|
||||||
"@angular/common": "^18.0.1",
|
|
||||||
"@angular/compiler": "^18.0.1",
|
|
||||||
"@angular/core": "^18.0.1",
|
|
||||||
"@angular/forms": "^18.0.1",
|
|
||||||
"@angular/localize": "^18.0.1",
|
|
||||||
"@angular/platform-browser": "^18.0.1",
|
|
||||||
"@angular/platform-browser-dynamic": "^18.0.1",
|
|
||||||
"@angular/router": "^18.0.1",
|
|
||||||
"@caliatys/array-typer": "^1.0.0",
|
|
||||||
"@ng-bootstrap/ng-bootstrap": "^17.0.0",
|
|
||||||
"@ngx-translate/core": "^15.0.0",
|
|
||||||
"@ngx-translate/http-loader": "^8.0.0",
|
|
||||||
"@popperjs/core": "^2.11.8",
|
|
||||||
"angular-svg-icon": "^18.0.0",
|
|
||||||
"axios": "^1.6.7",
|
|
||||||
"bootstrap": "^5.3.3",
|
|
||||||
"rxjs": "~7.8.1",
|
|
||||||
"tslib": "^2.3.0",
|
|
||||||
"zone.js": "~0.14.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@angular-devkit/build-angular": "^18.0.2",
|
|
||||||
"@angular/cli": "^18.0.2",
|
|
||||||
"@angular/compiler-cli": "^18.0.1",
|
|
||||||
"@types/jasmine": "~3.10.0",
|
|
||||||
"@types/node": "^12.11.1",
|
|
||||||
"jasmine-core": "~4.0.0",
|
|
||||||
"karma": "~6.3.0",
|
|
||||||
"karma-chrome-launcher": "~3.1.0",
|
|
||||||
"karma-coverage": "~2.1.0",
|
|
||||||
"karma-jasmine": "~4.0.0",
|
|
||||||
"karma-jasmine-html-reporter": "~1.7.0",
|
|
||||||
"typescript": "~5.4.5"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
<div class="scrollable-container">
|
|
||||||
<div class="layout">
|
|
||||||
|
|
||||||
<router-outlet></router-outlet>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<app-toast aria-live="polite" aria-atomic="true" *ngIf="!storeService.isServer()"></app-toast>
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
.scrollable-container {
|
|
||||||
height: 100vh;
|
|
||||||
display: block;
|
|
||||||
.layout {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,56 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
import { RouterOutlet } from '@angular/router';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
// Components
|
|
||||||
import { ToastComponent } from '@blocks/toast/toast.component';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-root',
|
|
||||||
templateUrl : './app.component.html',
|
|
||||||
styleUrls : ['./app.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [RouterOutlet, ToastComponent, NgIf]
|
|
||||||
})
|
|
||||||
export class AppComponent implements OnInit
|
|
||||||
{
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
public storeService : StoreService,
|
|
||||||
)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public ngOnInit() : void
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Computed props -----------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Subscriptions ------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
}
|
|
||||||
|
|
@ -1,84 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { DatePipe } from '@angular/common';
|
|
||||||
import { withFetch } from '@angular/common/http';
|
|
||||||
import { withInterceptorsFromDi } from '@angular/common/http';
|
|
||||||
import { provideHttpClient } from '@angular/common/http';
|
|
||||||
import { HttpClient } from '@angular/common/http';
|
|
||||||
import { ApplicationConfig } from '@angular/core';
|
|
||||||
import { importProvidersFrom } from '@angular/core';
|
|
||||||
import { BrowserModule } from '@angular/platform-browser';
|
|
||||||
import { provideClientHydration } from '@angular/platform-browser';
|
|
||||||
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
||||||
import { provideRouter } from '@angular/router';
|
|
||||||
import { withInMemoryScrolling } from '@angular/router';
|
|
||||||
import { withRouterConfig } from '@angular/router';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
import { TranslateLoader } from '@ngx-translate/core';
|
|
||||||
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
||||||
import { AngularSvgIconModule } from 'angular-svg-icon';
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
import { environment } from '@env/environment';
|
|
||||||
import { routes } from './app.routes';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { AppService } from '@services/app.service';
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
export function createTranslateLoader(http : HttpClient)
|
|
||||||
{
|
|
||||||
return new TranslateHttpLoader(http, './assets/i18n/', '.json');
|
|
||||||
}
|
|
||||||
|
|
||||||
export const appConfig : ApplicationConfig = {
|
|
||||||
providers : [
|
|
||||||
|
|
||||||
// Routing
|
|
||||||
provideRouter(
|
|
||||||
routes,
|
|
||||||
withRouterConfig({
|
|
||||||
onSameUrlNavigation : 'reload',
|
|
||||||
}),
|
|
||||||
withInMemoryScrolling({
|
|
||||||
scrollPositionRestoration : 'enabled'
|
|
||||||
}),
|
|
||||||
),
|
|
||||||
|
|
||||||
importProvidersFrom(
|
|
||||||
// Angular modules
|
|
||||||
BrowserModule,
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
TranslateModule.forRoot({
|
|
||||||
defaultLanguage : environment.defaultLanguage,
|
|
||||||
loader : {
|
|
||||||
provide : TranslateLoader,
|
|
||||||
useFactory : (createTranslateLoader),
|
|
||||||
deps : [HttpClient]
|
|
||||||
}
|
|
||||||
}),
|
|
||||||
AngularSvgIconModule.forRoot(),
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
),
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
|
|
||||||
// Services
|
|
||||||
StoreService,
|
|
||||||
AppService,
|
|
||||||
|
|
||||||
// Pipes
|
|
||||||
DatePipe,
|
|
||||||
|
|
||||||
// Guards
|
|
||||||
|
|
||||||
// Resolvers
|
|
||||||
|
|
||||||
provideHttpClient(withFetch(), withInterceptorsFromDi()),
|
|
||||||
provideAnimations(),
|
|
||||||
provideClientHydration(),
|
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
@ -1,18 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { Routes } from '@angular/router';
|
|
||||||
|
|
||||||
export const routes : Routes = [
|
|
||||||
{
|
|
||||||
path : 'auth',
|
|
||||||
loadChildren : () => import('./pages/auth/auth.routes').then(m => m.routes),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path : 'home',
|
|
||||||
loadComponent : () => import('./pages/home/home.component').then(m => m.HomeComponent),
|
|
||||||
},
|
|
||||||
{ path : '', redirectTo : '/home', pathMatch : 'full' },
|
|
||||||
{
|
|
||||||
path : '**',
|
|
||||||
loadComponent : () => import('./pages/not-found/not-found.component').then(m => m.NotFoundComponent),
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
<!-- NOTE Header with Project logo -->
|
|
||||||
<header class="position-fixed w-100 text-center py-2 bg-light">
|
|
||||||
<img src="./assets/img/project/logo.svg" [alt]="appName + ' Logo'" id="auth-svg" class="img-fluid"/>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<!-- NOTE Loading -->
|
|
||||||
<app-progress-bar *ngIf="storeService.isLoading$ | async" class="position-fixed w-100"></app-progress-bar>
|
|
||||||
|
|
||||||
<div class="auth-component-container">
|
|
||||||
<div class="auth-component">
|
|
||||||
|
|
||||||
<!-- NOTE Form -->
|
|
||||||
<router-outlet></router-outlet>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- NOTE Footer with Application version -->
|
|
||||||
<footer class="position-fixed w-100 text-white text-end px-2 d-flex align-items-center justify-content-end bg-primary">
|
|
||||||
<div class="small">{{ 'VERSION' | translate }} {{ appVersion }}</div>
|
|
||||||
</footer>
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
// NOTE Header / Loading / Footer
|
|
||||||
|
|
||||||
header, app-progress-bar, footer {
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
top: 0;
|
|
||||||
height: 56px;
|
|
||||||
}
|
|
||||||
|
|
||||||
app-progress-bar {
|
|
||||||
top: 56px;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
bottom: 0;
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE Layout
|
|
||||||
|
|
||||||
.auth-component-container {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
padding-top: 60px;
|
|
||||||
padding-bottom: 40px;
|
|
||||||
.auth-component {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 350px;
|
|
||||||
padding: 15px;
|
|
||||||
margin: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// NOTE Images
|
|
||||||
|
|
||||||
#auth-svg {
|
|
||||||
height: 40px;
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
<app-progress-bar class="position-fixed w-100" *ngIf="storeService.isLoading$ | async"></app-progress-bar>
|
|
||||||
<div class="row g-0">
|
|
||||||
<div class="col img-wrapper d-none d-md-flex">
|
|
||||||
<img [src]="'assets/img/project/login.png'" alt="Login image">
|
|
||||||
</div>
|
|
||||||
<div class="col d-flex flex-column justify-content-center p-3">
|
|
||||||
<!-- NOTE Content -->
|
|
||||||
<router-outlet></router-outlet>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
// NOTE Layout
|
|
||||||
.row {
|
|
||||||
min-height: 100vh;
|
|
||||||
.col.img-wrapper {
|
|
||||||
min-height: 100vh;
|
|
||||||
overflow: hidden;
|
|
||||||
img {
|
|
||||||
object-fit: cover;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,66 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { AsyncPipe } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
import { RouterOutlet } from '@angular/router';
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
import { environment } from '@env/environment';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
// Components
|
|
||||||
import { ProgressBarComponent } from '@blocks/progress-bar/progress-bar.component';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-auth',
|
|
||||||
templateUrl : './auth.component.html',
|
|
||||||
styleUrls : ['./auth.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [NgIf, ProgressBarComponent, RouterOutlet, AsyncPipe]
|
|
||||||
})
|
|
||||||
export class AuthComponent implements OnInit
|
|
||||||
{
|
|
||||||
// NOTE Component properties
|
|
||||||
public appName : string = environment.appName;
|
|
||||||
public appVersion : string = environment.version;
|
|
||||||
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
public storeService : StoreService,
|
|
||||||
)
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public ngOnInit() : void
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Computed props -----------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Subscriptions ------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { Routes } from '@angular/router';
|
|
||||||
|
|
||||||
export const routes : Routes = [
|
|
||||||
{
|
|
||||||
path : '',
|
|
||||||
children : [
|
|
||||||
{
|
|
||||||
path : '',
|
|
||||||
redirectTo : 'login',
|
|
||||||
pathMatch : 'full',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path : 'login',
|
|
||||||
loadComponent : () => import('./login/login.component').then(m => m.LoginComponent),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path : 'forgot-password',
|
|
||||||
loadComponent : () => import('./forgot-password/forgot-password.component').then(m => m.ForgotPasswordComponent),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path : 'validate-account',
|
|
||||||
loadComponent : () => import('./validate-account/validate-account.component').then(m => m.ValidateAccountComponent),
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
<div class="text-center text-primary mb-4">
|
|
||||||
<div class="h2 fw-normal mb-0">{{ 'FORGOT_YOUR_PWD' | translate }}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center">
|
|
||||||
<div class="wrapper">
|
|
||||||
|
|
||||||
<!-- NOTE Login form -->
|
|
||||||
<form [formGroup]="formGroup" (ngSubmit)="onClickSubmit()">
|
|
||||||
|
|
||||||
<!-- NOTE Email -->
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="email" class="form-label text-start w-100">{{ 'EMAIL' | translate }}</label>
|
|
||||||
<input type="email" class="form-control" id="email"
|
|
||||||
formControlName="email"
|
|
||||||
[ngClass]="{ 'is-invalid' : formGroup.controls.email.errors && formGroup.controls.email.touched }">
|
|
||||||
<!-- NOTE Errors -->
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.email.hasError('required')">
|
|
||||||
{{ 'FIELD_REQUIRED' | translate }}
|
|
||||||
</div>
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.email.hasError('email')">
|
|
||||||
{{ 'FIELD_EMAIL' | translate }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="submit" class="btn btn-primary px-5" [disabled]="!formGroup.valid">
|
|
||||||
{{ 'RESET_PASSWORD' | translate }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-center my-3">
|
|
||||||
<a routerLink="/auth/login">{{ 'BACK_TO_LOGIN' | translate }}</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
.wrapper {
|
|
||||||
max-width: 350px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
@ -1,89 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgClass } from '@angular/common';
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { FormGroup } from '@angular/forms';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { ReactiveFormsModule } from '@angular/forms';
|
|
||||||
import { FormControl } from '@angular/forms';
|
|
||||||
import { Validators } from '@angular/forms';
|
|
||||||
import { Router } from '@angular/router';
|
|
||||||
import { RouterLink } from '@angular/router';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { AppService } from '@services/app.service';
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-forgot-password',
|
|
||||||
templateUrl : './forgot-password.component.html',
|
|
||||||
styleUrls : ['./forgot-password.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [FormsModule, ReactiveFormsModule, NgClass, NgIf, RouterLink, TranslateModule]
|
|
||||||
})
|
|
||||||
export class ForgotPasswordComponent
|
|
||||||
{
|
|
||||||
public formGroup !: FormGroup<{
|
|
||||||
email : FormControl<string>
|
|
||||||
}>;
|
|
||||||
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
public router : Router,
|
|
||||||
private storeService : StoreService,
|
|
||||||
private appService : AppService,
|
|
||||||
)
|
|
||||||
{
|
|
||||||
this.initFormGroup();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private initFormGroup() : void
|
|
||||||
{
|
|
||||||
this.formGroup = new FormGroup({
|
|
||||||
email : new FormControl<string>({
|
|
||||||
value : '',
|
|
||||||
disabled : false
|
|
||||||
}, { validators : [Validators.required, Validators.email], nonNullable : true }),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public async onClickSubmit() : Promise<void>
|
|
||||||
{
|
|
||||||
await this.forgotPassword();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private async forgotPassword() : Promise<void>
|
|
||||||
{
|
|
||||||
this.storeService.isLoading.set(true);
|
|
||||||
|
|
||||||
const email = this.formGroup.controls.email.getRawValue();
|
|
||||||
const success = await this.appService.forgotPassword(email);
|
|
||||||
|
|
||||||
this.storeService.isLoading.set(false);
|
|
||||||
|
|
||||||
if (!success)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// NOTE Redirect to validate account
|
|
||||||
this.router.navigate(['/auth/validate-account']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
}
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
||||||
<div class="text-center text-primary mb-4">
|
|
||||||
<div class="h2 fw-normal mb-0">{{ 'WELCOME_TO' | translate }}</div>
|
|
||||||
<div class="h1 fw-bold text-uppercase">{{ appName }}</div>
|
|
||||||
<div class="fw-normal text-black">{{ 'PROJECT_DESC' | translate }}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center">
|
|
||||||
<div class="wrapper">
|
|
||||||
|
|
||||||
<!-- NOTE Login form -->
|
|
||||||
<form [formGroup]="formGroup" (ngSubmit)="onClickSubmit()">
|
|
||||||
|
|
||||||
<!-- NOTE Email -->
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="email" class="form-label text-start w-100">{{ 'EMAIL' | translate }}</label>
|
|
||||||
<input type="email" class="form-control" id="email"
|
|
||||||
formControlName="email"
|
|
||||||
[ngClass]="{ 'is-invalid' : formGroup.controls.email.errors && formGroup.controls.email.touched }">
|
|
||||||
<!-- NOTE Errors -->
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.email.hasError('required')">
|
|
||||||
{{ 'FIELD_REQUIRED' | translate }}
|
|
||||||
</div>
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.email.hasError('email')">
|
|
||||||
{{ 'FIELD_EMAIL' | translate }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- NOTE Password -->
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="password" class="form-label text-start w-100">{{ 'PASSWORD' | translate }}</label>
|
|
||||||
<input type="password" class="form-control" id="password"
|
|
||||||
formControlName="password"
|
|
||||||
[ngClass]="{ 'is-invalid' : formGroup.controls.password.errors && formGroup.controls.password.touched }">
|
|
||||||
<!-- NOTE Errors -->
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.password.hasError('required')">
|
|
||||||
{{ 'FIELD_REQUIRED' | translate }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-end mb-3">
|
|
||||||
<a routerLink="/auth/forgot-password" class="">{{ 'FORGOT_YOUR_PWD' | translate }}</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="submit" class="btn btn-primary mb-3 px-5" [disabled]="!formGroup.valid">
|
|
||||||
<span class="px-4 d-block">{{ 'SIGN_IN' | translate }}</span>
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
.wrapper {
|
|
||||||
max-width: 350px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
@ -1,100 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgClass } from '@angular/common';
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { FormGroup } from '@angular/forms';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { ReactiveFormsModule } from '@angular/forms';
|
|
||||||
import { FormControl } from '@angular/forms';
|
|
||||||
import { Validators } from '@angular/forms';
|
|
||||||
import { Router } from '@angular/router';
|
|
||||||
import { RouterLink } from '@angular/router';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
import { environment } from '@env/environment';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { AppService } from '@services/app.service';
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-login',
|
|
||||||
templateUrl : './login.component.html',
|
|
||||||
styleUrls : ['./login.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [FormsModule, ReactiveFormsModule, NgClass, NgIf, RouterLink, TranslateModule]
|
|
||||||
})
|
|
||||||
export class LoginComponent
|
|
||||||
{
|
|
||||||
public appName : string = environment.appName;
|
|
||||||
public formGroup !: FormGroup<{
|
|
||||||
email : FormControl<string>,
|
|
||||||
password : FormControl<string>,
|
|
||||||
}>;
|
|
||||||
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
private router : Router,
|
|
||||||
private storeService : StoreService,
|
|
||||||
private appService : AppService,
|
|
||||||
)
|
|
||||||
{
|
|
||||||
this.initFormGroup();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private initFormGroup() : void
|
|
||||||
{
|
|
||||||
this.formGroup = new FormGroup({
|
|
||||||
email : new FormControl<string>({
|
|
||||||
value : '',
|
|
||||||
disabled : false
|
|
||||||
}, { validators : [Validators.required, Validators.email], nonNullable : true }),
|
|
||||||
password : new FormControl<string>({
|
|
||||||
value : '',
|
|
||||||
disabled : false
|
|
||||||
}, { validators : [Validators.required], nonNullable : true })
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public async onClickSubmit() : Promise<void>
|
|
||||||
{
|
|
||||||
await this.authenticate();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private async authenticate() : Promise<void>
|
|
||||||
{
|
|
||||||
this.storeService.isLoading.set(true);
|
|
||||||
|
|
||||||
const email = this.formGroup.controls.email.getRawValue();
|
|
||||||
const password = this.formGroup.controls.password.getRawValue();
|
|
||||||
const success = await this.appService.authenticate(email, password);
|
|
||||||
|
|
||||||
this.storeService.isLoading.set(false);
|
|
||||||
|
|
||||||
if (!success)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// NOTE Redirect to home
|
|
||||||
this.router.navigate(['/home']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
<div class="text-center text-primary mb-4">
|
|
||||||
<div class="h2 fw-normal mb-0">{{ 'VALIDATE_ACCOUNT' | translate }}</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="d-flex justify-content-center">
|
|
||||||
<div class="wrapper">
|
|
||||||
|
|
||||||
<!-- NOTE Login form -->
|
|
||||||
<form [formGroup]="formGroup" (ngSubmit)="onClickSubmit()">
|
|
||||||
|
|
||||||
<!-- NOTE Password -->
|
|
||||||
<div class="mb-3">
|
|
||||||
<label for="password" class="form-label text-start w-100">{{ 'PASSWORD' | translate }}</label>
|
|
||||||
<input type="password" class="form-control" id="password"
|
|
||||||
formControlName="password"
|
|
||||||
[ngClass]="{ 'is-invalid' : formGroup.controls.password.errors && formGroup.controls.password.touched }">
|
|
||||||
<!-- NOTE Errors -->
|
|
||||||
<div class="invalid-feedback" *ngIf="formGroup.controls.password.hasError('required')">
|
|
||||||
{{ 'FIELD_REQUIRED' | translate }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="submit" class="btn btn-primary px-5" [disabled]="!formGroup.valid">
|
|
||||||
{{ 'VALIDATE' | translate }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
.wrapper {
|
|
||||||
max-width: 350px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
@ -1,111 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgClass } from '@angular/common';
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { FormGroup } from '@angular/forms';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
import { ReactiveFormsModule } from '@angular/forms';
|
|
||||||
import { FormControl } from '@angular/forms';
|
|
||||||
import { Validators } from '@angular/forms';
|
|
||||||
import { ActivatedRoute } from '@angular/router';
|
|
||||||
import { Router } from '@angular/router';
|
|
||||||
import { Params } from '@angular/router';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
import { environment } from '@env/environment';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { AppService } from '@services/app.service';
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-validate-account',
|
|
||||||
templateUrl : './validate-account.component.html',
|
|
||||||
styleUrls : ['./validate-account.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [FormsModule, ReactiveFormsModule, NgClass, NgIf, TranslateModule]
|
|
||||||
})
|
|
||||||
export class ValidateAccountComponent implements OnInit
|
|
||||||
{
|
|
||||||
public formGroup !: FormGroup<{
|
|
||||||
password : FormControl<string>
|
|
||||||
}>;
|
|
||||||
private tokenFromUrl : string = '';
|
|
||||||
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
private router : Router,
|
|
||||||
private storeService : StoreService,
|
|
||||||
private activatedRoute : ActivatedRoute,
|
|
||||||
private appService : AppService,
|
|
||||||
)
|
|
||||||
{
|
|
||||||
this.initFormGroup();
|
|
||||||
}
|
|
||||||
|
|
||||||
public async ngOnInit() : Promise<void>
|
|
||||||
{
|
|
||||||
// NOTE Get token from URL
|
|
||||||
this.activatedRoute.queryParams.subscribe((params : Params) =>
|
|
||||||
{
|
|
||||||
this.tokenFromUrl = params['token'];
|
|
||||||
if (!environment.production)
|
|
||||||
console.log('ValidateAccountComponent : ngOnInit -> Token : ', this.tokenFromUrl);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private initFormGroup() : void
|
|
||||||
{
|
|
||||||
this.formGroup = new FormGroup({
|
|
||||||
password : new FormControl<string>({
|
|
||||||
value : '',
|
|
||||||
disabled : false
|
|
||||||
}, { validators : [Validators.required], nonNullable : true }),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public async onClickSubmit() : Promise<void>
|
|
||||||
{
|
|
||||||
if (!this.tokenFromUrl)
|
|
||||||
return;
|
|
||||||
|
|
||||||
await this.validateNewAccount();
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
private async validateNewAccount() : Promise<void>
|
|
||||||
{
|
|
||||||
this.storeService.isLoading.set(true);
|
|
||||||
|
|
||||||
const password = this.formGroup.controls.password.getRawValue();
|
|
||||||
const success = await this.appService.validateAccount(this.tokenFromUrl, password);
|
|
||||||
|
|
||||||
this.storeService.isLoading.set(false);
|
|
||||||
|
|
||||||
if (!success)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// NOTE Redirect to home
|
|
||||||
this.router.navigate(['/home']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,13 +0,0 @@
|
||||||
<app-page-layout>
|
|
||||||
<div class="container my-3">
|
|
||||||
|
|
||||||
<app-progress-bar *ngIf="storeService.isLoading()"></app-progress-bar>
|
|
||||||
|
|
||||||
<ng-container *ngIf="!storeService.isLoading()">
|
|
||||||
<div class="text-center">
|
|
||||||
Let's start the project!
|
|
||||||
</div>
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</app-page-layout>
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
|
|
||||||
// Services
|
|
||||||
import { StoreService } from '@services/store.service';
|
|
||||||
|
|
||||||
// Components
|
|
||||||
import { ProgressBarComponent } from '@blocks/progress-bar/progress-bar.component';
|
|
||||||
import { PageLayoutComponent } from '@layouts/page-layout/page-layout.component';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-home',
|
|
||||||
templateUrl : './home.component.html',
|
|
||||||
styleUrls : ['./home.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [PageLayoutComponent, NgIf, ProgressBarComponent]
|
|
||||||
})
|
|
||||||
export class HomeComponent implements OnInit
|
|
||||||
{
|
|
||||||
constructor
|
|
||||||
(
|
|
||||||
public storeService : StoreService
|
|
||||||
)
|
|
||||||
{ }
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public ngOnInit() : void
|
|
||||||
{
|
|
||||||
setTimeout(_ =>
|
|
||||||
{
|
|
||||||
this.storeService.isLoading.set(false);
|
|
||||||
}, 2000);
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Computed props -----------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Subscriptions ------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
<div class="not-found-container">
|
|
||||||
<div class="not-found text-center">
|
|
||||||
<h1 class="mb-3">{{ 'NOT_FOUND' | translate }}</h1>
|
|
||||||
<a class="btn btn-lg btn-primary" routerLink="/home">
|
|
||||||
{{ 'GO_TO_HOMEPAGE' | translate }}
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
.not-found-container {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
position: relative;
|
|
||||||
.not-found {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { RouterLink } from '@angular/router';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-not-found',
|
|
||||||
templateUrl : './not-found.component.html',
|
|
||||||
styleUrls : ['./not-found.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [RouterLink, TranslateModule]
|
|
||||||
})
|
|
||||||
export class NotFoundComponent
|
|
||||||
{
|
|
||||||
constructor() { }
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Init ---------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Actions ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Computed props -----------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Helpers ------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Requests -----------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Subscriptions ------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
<!-- How to write CSS keyframes to indeterminate material design progress bar -->
|
|
||||||
<!-- https://stackoverflow.com/a/34773398/7462178 -->
|
|
||||||
|
|
||||||
<div class="slider">
|
|
||||||
<div class="line"></div>
|
|
||||||
<div class="subline inc"></div>
|
|
||||||
<div class="subline dec"></div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="text-center my-3" *ngIf="withLabel">{{ 'LOADING' | translate }}...</div>
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
||||||
.slider {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
height: 5px;
|
|
||||||
overflow-x: hidden;
|
|
||||||
.line {
|
|
||||||
position: absolute;
|
|
||||||
opacity: 0.4;
|
|
||||||
background: #4a8df8;
|
|
||||||
width: 150%;
|
|
||||||
height: 5px;
|
|
||||||
}
|
|
||||||
.subline {
|
|
||||||
position: absolute;
|
|
||||||
background: #4a8df8;
|
|
||||||
height: 5px;
|
|
||||||
&.inc {
|
|
||||||
animation: increase 2s infinite;
|
|
||||||
}
|
|
||||||
&.dec {
|
|
||||||
animation: decrease 2s 0.5s infinite;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes increase {
|
|
||||||
from { left: -5%; width: 5%; }
|
|
||||||
to { left: 130%; width: 100%;}
|
|
||||||
}
|
|
||||||
@keyframes decrease {
|
|
||||||
from { left: -80%; width: 80%; }
|
|
||||||
to { left: 110%; width: 10%;}
|
|
||||||
}
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { Input } from '@angular/core';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-progress-bar',
|
|
||||||
templateUrl : './progress-bar.component.html',
|
|
||||||
styleUrls : ['./progress-bar.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [NgIf, TranslateModule]
|
|
||||||
})
|
|
||||||
export class ProgressBarComponent implements OnInit
|
|
||||||
{
|
|
||||||
@Input() withLabel : boolean = false;
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
|
|
||||||
public ngOnInit() : void
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
<ng-container *ngFor="let toast of toastManager.toasts">
|
|
||||||
|
|
||||||
<!-- NOTE With header -->
|
|
||||||
<ng-container *ngIf="toast.headerKey && toast.withHeader else withoutHeader">
|
|
||||||
|
|
||||||
<ngb-toast class="bg-{{ toast.type }}"
|
|
||||||
[autohide]="toast.autoHide"
|
|
||||||
[delay]="toast.delay"
|
|
||||||
(hide)="toastManager.remove(toast.id)">
|
|
||||||
<ng-template ngbToastHeader>
|
|
||||||
<!-- TODO Icon : Success / Info / Error -->
|
|
||||||
<div class="text-white me-auto">{{ toast.headerKey | translate }}</div>
|
|
||||||
</ng-template>
|
|
||||||
<div class="text-dark">{{ toast.body }}</div>
|
|
||||||
</ngb-toast>
|
|
||||||
|
|
||||||
</ng-container>
|
|
||||||
|
|
||||||
<!-- NOTE Without header -->
|
|
||||||
<ng-template #withoutHeader>
|
|
||||||
|
|
||||||
<ngb-toast class="bg-{{ toast.type }}"
|
|
||||||
[autohide]="toast.autoHide"
|
|
||||||
[delay]="toast.delay"
|
|
||||||
(hide)="toastManager.remove(toast.id)">
|
|
||||||
<div class="text-dark">{{ toast.body }}</div>
|
|
||||||
</ngb-toast>
|
|
||||||
|
|
||||||
</ng-template>
|
|
||||||
|
|
||||||
</ng-container>
|
|
||||||
|
|
@ -1,7 +0,0 @@
|
||||||
:host {
|
|
||||||
position: fixed;
|
|
||||||
bottom: 0;
|
|
||||||
right: 0;
|
|
||||||
margin: 0.5em;
|
|
||||||
z-index: 1200;
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { NgFor } from '@angular/common';
|
|
||||||
import { NgIf } from '@angular/common';
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { NgbToast } from '@ng-bootstrap/ng-bootstrap';
|
|
||||||
import { NgbToastHeader } from '@ng-bootstrap/ng-bootstrap';
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
// Internal modules
|
|
||||||
import { ToastManager } from './toast.manager';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-toast',
|
|
||||||
templateUrl : './toast.component.html',
|
|
||||||
styleUrls : ['./toast.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [NgFor, NgIf, NgbToast, NgbToastHeader, TranslateModule]
|
|
||||||
})
|
|
||||||
export class ToastComponent
|
|
||||||
{
|
|
||||||
|
|
||||||
constructor(public toastManager : ToastManager) {}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { Injectable } from '@angular/core';
|
|
||||||
|
|
||||||
export type ToastType = 'success' | 'info' | 'warning' | 'danger';
|
|
||||||
|
|
||||||
export class Toast
|
|
||||||
{
|
|
||||||
public id !: number
|
|
||||||
readonly headerKey ?: string;
|
|
||||||
public withHeader : boolean;
|
|
||||||
public body : string;
|
|
||||||
public type : ToastType;
|
|
||||||
public autoHide : boolean;
|
|
||||||
public delay : number;
|
|
||||||
|
|
||||||
constructor(body : string, type ?: ToastType, autoHide : boolean = false)
|
|
||||||
{
|
|
||||||
this.withHeader = true;
|
|
||||||
this.body = body;
|
|
||||||
this.type = type ?? 'danger';
|
|
||||||
this.autoHide = autoHide;
|
|
||||||
this.delay = 10000; // 10 sec
|
|
||||||
|
|
||||||
this.headerKey = this.type.toUpperCase();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Injectable({ providedIn : 'root' })
|
|
||||||
export class ToastManager
|
|
||||||
{
|
|
||||||
public toasts : Toast[] = [];
|
|
||||||
private counter : number = 0;
|
|
||||||
|
|
||||||
constructor() {}
|
|
||||||
|
|
||||||
public show(toast : Toast) : void
|
|
||||||
{
|
|
||||||
toast.id = this.counter++;
|
|
||||||
this.toasts.push(toast);
|
|
||||||
}
|
|
||||||
|
|
||||||
public quickShow(body : string, type ?: ToastType, autoHide : boolean = false) : void
|
|
||||||
{
|
|
||||||
const toast = new Toast(body, type, autoHide);
|
|
||||||
this.show(toast);
|
|
||||||
}
|
|
||||||
|
|
||||||
public remove(id : number) : void
|
|
||||||
{
|
|
||||||
this.toasts = this.toasts.filter(t => t.id !== id);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
<!-- NOTE Confirm form -->
|
|
||||||
<form (ngSubmit)="onClickSubmit()">
|
|
||||||
|
|
||||||
<div class="text-center py-3">
|
|
||||||
<p>{{ 'ALERT_DELETE_ENTRY' | translate }}</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- NOTE Submit -->
|
|
||||||
<div class="text-center">
|
|
||||||
<button type="button" class="btn btn-light" (click)="onClickClose()">
|
|
||||||
{{ 'CLOSE' | translate }}
|
|
||||||
</button>
|
|
||||||
<button type="submit" class="btn btn-danger ms-3">
|
|
||||||
{{ 'DELETE' | translate }}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
// Angular modules
|
|
||||||
import { Component } from '@angular/core';
|
|
||||||
import { OnInit } from '@angular/core';
|
|
||||||
import { Input } from '@angular/core';
|
|
||||||
import { Output } from '@angular/core';
|
|
||||||
import { EventEmitter } from '@angular/core';
|
|
||||||
import { FormsModule } from '@angular/forms';
|
|
||||||
|
|
||||||
// External modules
|
|
||||||
import { TranslateModule } from '@ngx-translate/core';
|
|
||||||
|
|
||||||
@Component({
|
|
||||||
selector : 'app-form-confirm',
|
|
||||||
templateUrl : './form-confirm.component.html',
|
|
||||||
styleUrls : ['./form-confirm.component.scss'],
|
|
||||||
standalone : true,
|
|
||||||
imports : [FormsModule, TranslateModule]
|
|
||||||
})
|
|
||||||
export class FormConfirmComponent implements OnInit
|
|
||||||
{
|
|
||||||
@Input() data : any;
|
|
||||||
@Output() submitData : EventEmitter<boolean> = new EventEmitter();
|
|
||||||
@Output() submitClose : EventEmitter<null> = new EventEmitter();
|
|
||||||
|
|
||||||
constructor() { }
|
|
||||||
|
|
||||||
public ngOnInit() : void
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
// NOTE Action -------------------------------------------------------------------
|
|
||||||
// -------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
public async onClickSubmit() : Promise<void>
|
|
||||||
{
|
|
||||||
this.submitData.emit(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public onClickClose() : void
|
|
||||||
{
|
|
||||||
this.submitClose.emit();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
<!-- NOTE Navbar -->
|
|
||||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<a class="navbar-brand" [routerLink]="['/dashboard']">
|
|
||||||
<img src="./assets/img/project/logo.svg" [alt]="appName + ' Logo'" class="img-fluid me-2"/>
|
|
||||||
{{ appName }}
|
|
||||||
</a>
|
|
||||||
<button class="navbar-toggler" type="button" (click)="isMenuCollapsed = !isMenuCollapsed" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<div class="collapse navbar-collapse" [ngbCollapse]="isMenuCollapsed" id="navbarSupportedContent">
|
|
||||||
<ul class="navbar-nav mb-2 mb-lg-0 w-100">
|
|
||||||
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" [routerLink]="['/home']" [routerLinkActive]="['active']">{{ 'HOME' | translate }}</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li class="nav-item dropdown" ngbDropdown>
|
|
||||||
<a class="nav-link dropdown-toggle" ngbDropdownToggle id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
|
|
||||||
{{ 'USER' | translate }}
|
|
||||||
</a>
|
|
||||||
<ul class="dropdown-menu dropdown-menu-end" ngbDropdownMenu aria-labelledby="navbarDropdown">
|
|
||||||
<!-- <li><a class="dropdown-item" [routerLink]="['/user']" [routerLinkActive]="['active']">{{ 'MY_ACCOUNT' | translate }}</a></li> -->
|
|
||||||
<li><a class="dropdown-item cursor-pointer" (click)="onClickLogout()">{{ 'LOGOUT' | translate }}</a></li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<!-- NOTE Content -->
|
|
||||||
<ng-content></ng-content>
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
.navbar-brand {
|
|
||||||
img {
|
|
||||||
width: 38px;
|
|
||||||
display: inline-block;
|
|
||||||
vertical-align: middle;
|
|
||||||
}
|
|
||||||
.title-wrapper {
|
|
||||||
vertical-align: middle;
|
|
||||||
display: inline-block;
|
|
||||||
border-left: 1px solid #adadad;
|
|
||||||
padding-left: 15px;
|
|
||||||
margin-left: 15px;
|
|
||||||
span {
|
|
||||||
display: block;
|
|
||||||
&.subtitle {
|
|
||||||
font-size: 71%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||