Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
f35656a29b |
34
package.json
34
package.json
@ -13,33 +13,33 @@
|
||||
"install_dependency": "pnpm install --force"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@angular/common": "^18.0.0",
|
||||
"@angular/compiler": "^18.0.0",
|
||||
"@angular/core": "^18.0.0",
|
||||
"@angular/forms": "^18.0.0",
|
||||
"@angular/platform-browser": "^18.0.0",
|
||||
"@angular/platform-browser-dynamic": "^18.0.0",
|
||||
"@angular/router": "^18.0.0",
|
||||
"@angular/common": "^18.1.4",
|
||||
"@angular/compiler": "^18.1.4",
|
||||
"@angular/core": "^18.1.4",
|
||||
"@angular/forms": "^18.1.4",
|
||||
"@angular/platform-browser": "^18.1.4",
|
||||
"@angular/platform-browser-dynamic": "^18.1.4",
|
||||
"@angular/router": "^18.1.4",
|
||||
"rxjs": "~7.8.1",
|
||||
"zone.js": "~0.14.5"
|
||||
"zone.js": "~0.14.10"
|
||||
},
|
||||
"dependencies": {
|
||||
"tslib": "^2.6.2"
|
||||
"tslib": "^2.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "^18.0.1",
|
||||
"@angular/cli": "^18.0.1",
|
||||
"@angular/compiler-cli": "^18.0.0",
|
||||
"@angular-devkit/build-angular": "^18.1.4",
|
||||
"@angular/cli": "^18.1.4",
|
||||
"@angular/compiler-cli": "^18.1.4",
|
||||
"@types/jasmine": "~5.1.4",
|
||||
"jasmine-core": "~5.1.2",
|
||||
"karma": "~6.4.3",
|
||||
"jasmine-core": "~5.2.0",
|
||||
"karma": "~6.4.4",
|
||||
"karma-chrome-launcher": "~3.2.0",
|
||||
"karma-coverage": "~2.2.1",
|
||||
"karma-jasmine": "~5.1.0",
|
||||
"karma-jasmine-html-reporter": "~2.1.0",
|
||||
"ng-packagr": "^18.0.0",
|
||||
"typescript": "~5.4.5",
|
||||
"npm-check-updates": "^16.14.20"
|
||||
"ng-packagr": "^18.2.0",
|
||||
"typescript": "~5.5.4",
|
||||
"npm-check-updates": "^17.0.6"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
|
13208
pnpm-lock.yaml
13208
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
@ -1,13 +1,13 @@
|
||||
export { AsyncActionState, AsyncActionStatusComponent } from './async-action-status/async-status-component';
|
||||
export { BurgerPropertyComponent } from './burger-property/burger-property';
|
||||
export { CheckboxComponent } from './checkbox/checkbox';
|
||||
export { EntryNumberComponent } from './entry-number/entry-number';
|
||||
export { EntryValidatorComponent } from './entry-validator/entry-validator';
|
||||
export { EntryComponent } from './entry/entry';
|
||||
export { ErrorMessageStateComponent } from './error-message-state/error-message-state';
|
||||
export { ErrorComponent } from './error/error';
|
||||
export { PasswordEntryComponent } from './password-entry/password-entry';
|
||||
export { PopInComponent } from './popin/popin';
|
||||
export * from './async-action-status/async-status-component';
|
||||
export * from './burger-property/burger-property';
|
||||
export * from './checkbox/checkbox';
|
||||
export * from './entry-number/entry-number';
|
||||
export * from './entry-validator/entry-validator';
|
||||
export * from './entry/entry';
|
||||
export * from './error-message-state/error-message-state';
|
||||
export * from './error/error';
|
||||
export * from './password-entry/password-entry';
|
||||
export * from './popin/popin';
|
||||
export { RenderFormComponent } from './render-settings/render-form';
|
||||
export {
|
||||
RenderSettingsComponent,
|
||||
@ -19,6 +19,6 @@ export {
|
||||
CheckerParameterType,
|
||||
ReturnFunction,
|
||||
} from './render-settings/render-settings';
|
||||
export { SpinnerComponent } from './spinner/spinner';
|
||||
export { EventOnMenu, TopMenuComponent } from './top-menu/top-menu';
|
||||
export { UploadFileComponent } from './upload-file/upload-file';
|
||||
export * from './spinner/spinner';
|
||||
export * from './top-menu/top-menu';
|
||||
export * from './upload-file/upload-file';
|
||||
|
@ -1,4 +1,2 @@
|
||||
import { Environment } from './environment';
|
||||
import { isMenuItem, isMenuPosition, MenuItem, MenuPosition } from './menu-item';
|
||||
|
||||
export { MenuPosition, isMenuPosition, MenuItem, isMenuItem, Environment };
|
||||
export * from './environment';
|
||||
export * from './menu-item';
|
||||
|
@ -1,4 +1,2 @@
|
||||
import { PopInDeleteConfirm } from './delete-confirm/delete-confirm';
|
||||
import { PopInUploadProgress, UploadProgress } from './upload-progress/upload-progress';
|
||||
|
||||
export { PopInDeleteConfirm, PopInUploadProgress, UploadProgress };
|
||||
export * from './delete-confirm/delete-confirm';
|
||||
export * from './upload-progress/upload-progress';
|
||||
|
@ -1,8 +1,6 @@
|
||||
//import { ErrorViewerScene } from "./error-viewer/error-viewer";
|
||||
import { ErrorViewerScene } from './error-viewer/error-viewer';
|
||||
import { ForbiddenScene } from './forbidden/forbidden';
|
||||
import { SsoScene } from './sso/sso';
|
||||
import { HomeOutScene } from './home-out/home-out';
|
||||
import { NotFound404Scene } from './404/404';
|
||||
|
||||
export { ErrorViewerScene, SsoScene, ForbiddenScene, HomeOutScene, NotFound404Scene };
|
||||
//export * from "./error-viewer/error-viewer";
|
||||
export * from './error-viewer/error-viewer';
|
||||
export * from './forbidden/forbidden';
|
||||
export * from './sso/sso';
|
||||
export * from './home-out/home-out';
|
||||
export * from './404/404';
|
||||
|
@ -1,29 +1,7 @@
|
||||
import { CookiesService } from './cookies';
|
||||
import { StorageService } from './local-storage';
|
||||
import { NotificationService } from './notification';
|
||||
import { PopInService } from './popin';
|
||||
import {
|
||||
OnlyAdminGuard,
|
||||
OnlyUnregisteredGuardHome,
|
||||
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,
|
||||
};
|
||||
export * from './cookies';
|
||||
export * from './local-storage';
|
||||
export * from './notification';
|
||||
export * from './popin';
|
||||
export * from './session';
|
||||
export * from './sso';
|
||||
export * from './user';
|
||||
|
@ -1,55 +1,7 @@
|
||||
import { getApplicationLocation } from './applPath';
|
||||
import { arrayUnique } from './arrayTools';
|
||||
import { DataStore } from './data-store';
|
||||
import { DataTools, TypeCheck } from './data-tools';
|
||||
import { sha512 } from './sha512';
|
||||
import {
|
||||
isArray,
|
||||
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,
|
||||
};
|
||||
export * from './applPath';
|
||||
export * from './arrayTools';
|
||||
export * from './data-store';
|
||||
export * from './data-tools';
|
||||
export * from './sha512';
|
||||
export * from './validator';
|
||||
export * from './validatorPasswordEmail';
|
||||
|
Loading…
Reference in New Issue
Block a user