[FEAT] some simplification and update

This commit is contained in:
Edouard DUPIN 2024-08-15 11:46:28 +02:00
parent 81fa9ad31c
commit f35656a29b
8 changed files with 6432 additions and 6960 deletions

View File

@ -13,33 +13,33 @@
"install_dependency": "pnpm install --force" "install_dependency": "pnpm install --force"
}, },
"peerDependencies": { "peerDependencies": {
"@angular/common": "^18.0.0", "@angular/common": "^18.1.4",
"@angular/compiler": "^18.0.0", "@angular/compiler": "^18.1.4",
"@angular/core": "^18.0.0", "@angular/core": "^18.1.4",
"@angular/forms": "^18.0.0", "@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.0.0", "@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.0.0", "@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.0.0", "@angular/router": "^18.1.4",
"rxjs": "~7.8.1", "rxjs": "~7.8.1",
"zone.js": "~0.14.5" "zone.js": "~0.14.10"
}, },
"dependencies": { "dependencies": {
"tslib": "^2.6.2" "tslib": "^2.6.3"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^18.0.1", "@angular-devkit/build-angular": "^18.1.4",
"@angular/cli": "^18.0.1", "@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.0.0", "@angular/compiler-cli": "^18.1.4",
"@types/jasmine": "~5.1.4", "@types/jasmine": "~5.1.4",
"jasmine-core": "~5.1.2", "jasmine-core": "~5.2.0",
"karma": "~6.4.3", "karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0", "karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1", "karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0", "karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^18.0.0", "ng-packagr": "^18.2.0",
"typescript": "~5.4.5", "typescript": "~5.5.4",
"npm-check-updates": "^16.14.20" "npm-check-updates": "^17.0.6"
}, },
"maintainers": [ "maintainers": [
{ {

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,13 @@
export { AsyncActionState, AsyncActionStatusComponent } from './async-action-status/async-status-component'; export * from './async-action-status/async-status-component';
export { BurgerPropertyComponent } from './burger-property/burger-property'; export * from './burger-property/burger-property';
export { CheckboxComponent } from './checkbox/checkbox'; export * from './checkbox/checkbox';
export { EntryNumberComponent } from './entry-number/entry-number'; export * from './entry-number/entry-number';
export { EntryValidatorComponent } from './entry-validator/entry-validator'; export * from './entry-validator/entry-validator';
export { EntryComponent } from './entry/entry'; export * from './entry/entry';
export { ErrorMessageStateComponent } from './error-message-state/error-message-state'; export * from './error-message-state/error-message-state';
export { ErrorComponent } from './error/error'; export * from './error/error';
export { PasswordEntryComponent } from './password-entry/password-entry'; export * from './password-entry/password-entry';
export { PopInComponent } from './popin/popin'; export * from './popin/popin';
export { RenderFormComponent } from './render-settings/render-form'; export { RenderFormComponent } from './render-settings/render-form';
export { export {
RenderSettingsComponent, RenderSettingsComponent,
@ -19,6 +19,6 @@ export {
CheckerParameterType, CheckerParameterType,
ReturnFunction, ReturnFunction,
} from './render-settings/render-settings'; } from './render-settings/render-settings';
export { SpinnerComponent } from './spinner/spinner'; export * from './spinner/spinner';
export { EventOnMenu, TopMenuComponent } from './top-menu/top-menu'; export * from './top-menu/top-menu';
export { UploadFileComponent } from './upload-file/upload-file'; export * from './upload-file/upload-file';

View File

@ -1,4 +1,2 @@
import { Environment } from './environment'; export * from './environment';
import { isMenuItem, isMenuPosition, MenuItem, MenuPosition } from './menu-item'; export * from './menu-item';
export { MenuPosition, isMenuPosition, MenuItem, isMenuItem, Environment };

View File

@ -1,4 +1,2 @@
import { PopInDeleteConfirm } from './delete-confirm/delete-confirm'; export * from './delete-confirm/delete-confirm';
import { PopInUploadProgress, UploadProgress } from './upload-progress/upload-progress'; export * from './upload-progress/upload-progress';
export { PopInDeleteConfirm, PopInUploadProgress, UploadProgress };

View File

@ -1,8 +1,6 @@
//import { ErrorViewerScene } from "./error-viewer/error-viewer"; //export * from "./error-viewer/error-viewer";
import { ErrorViewerScene } from './error-viewer/error-viewer'; export * from './error-viewer/error-viewer';
import { ForbiddenScene } from './forbidden/forbidden'; export * from './forbidden/forbidden';
import { SsoScene } from './sso/sso'; export * from './sso/sso';
import { HomeOutScene } from './home-out/home-out'; export * from './home-out/home-out';
import { NotFound404Scene } from './404/404'; export * from './404/404';
export { ErrorViewerScene, SsoScene, ForbiddenScene, HomeOutScene, NotFound404Scene };

View File

@ -1,29 +1,7 @@
import { CookiesService } from './cookies'; export * from './cookies';
import { StorageService } from './local-storage'; export * from './local-storage';
import { NotificationService } from './notification'; export * from './notification';
import { PopInService } from './popin'; export * from './popin';
import { export * from './session';
OnlyAdminGuard, export * from './sso';
OnlyUnregisteredGuardHome, export * from './user';
OnlyUsersGuard,
OnlyUsersGuardHome,
SessionService,
UserRoles222,
} from './session';
import { SSOService } from './sso';
import { UserService } from './user';
export {
UserRoles222,
CookiesService,
StorageService,
PopInService,
SessionService,
UserService,
SSOService,
OnlyUsersGuard,
OnlyUsersGuardHome,
OnlyUnregisteredGuardHome,
OnlyAdminGuard,
NotificationService,
};

View File

@ -1,55 +1,7 @@
import { getApplicationLocation } from './applPath'; export * from './applPath';
import { arrayUnique } from './arrayTools'; export * from './arrayTools';
import { DataStore } from './data-store'; export * from './data-store';
import { DataTools, TypeCheck } from './data-tools'; export * from './data-tools';
import { sha512 } from './sha512'; export * from './sha512';
import { export * from './validator';
isArray, export * from './validatorPasswordEmail';
isArrayOf,
isArrayOfs,
isBoolean,
isInArray,
isNull,
isNullOrUndefined,
isNumber,
isNumberFinite,
isNumeric,
isObject,
isOptionalArrayOf,
isOptionalOf,
isString,
isStringNullOrUndefined,
isUndefined,
} from './validator';
import { checkEmailValidity, checkLoginValidity, checkPasswordValidity, createLoginState, createPasswordState, getLoginType } from './validatorPasswordEmail';
export {
DataStore,
DataTools,
TypeCheck,
checkEmailValidity,
checkLoginValidity,
checkPasswordValidity,
createLoginState,
createPasswordState,
getApplicationLocation,
getLoginType,
isArray,
isArrayOf,
isArrayOfs,
isBoolean,
isInArray,
isNull,
isNullOrUndefined,
isNumber,
isNumberFinite,
isNumeric,
isObject,
isOptionalArrayOf,
isOptionalOf,
isString,
isStringNullOrUndefined,
isUndefined,
sha512,
arrayUnique,
};