angular-base-lib 19.0.3 → 20.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +280 -280
  2. package/fesm2022/angular-base-lib.mjs +99 -23
  3. package/fesm2022/angular-base-lib.mjs.map +1 -1
  4. package/index.d.ts +274 -1
  5. package/package.json +5 -6
  6. package/lib/auth/base-auth.service.d.ts +0 -24
  7. package/lib/auth/guards/index.d.ts +0 -2
  8. package/lib/auth/guards/logged-in.guard.d.ts +0 -2
  9. package/lib/auth/guards/logged-out.guard.d.ts +0 -2
  10. package/lib/auth/index.d.ts +0 -3
  11. package/lib/auth/models/base-auth-state.d.ts +0 -5
  12. package/lib/auth/models/index.d.ts +0 -5
  13. package/lib/auth/models/logged-in-auth-state.d.ts +0 -7
  14. package/lib/auth/models/login-state.type.d.ts +0 -1
  15. package/lib/auth/models/not-logged-in-auth-state.d.ts +0 -6
  16. package/lib/auth/models/pending-auth-state.d.ts +0 -6
  17. package/lib/base/base-control-value-accessor.d.ts +0 -18
  18. package/lib/base/index.d.ts +0 -2
  19. package/lib/base/signal-base-control-value-accessor.d.ts +0 -20
  20. package/lib/dao/converted-http-base-dao.d.ts +0 -16
  21. package/lib/dao/converted-promise-http-base-dao.d.ts +0 -15
  22. package/lib/dao/converter.d.ts +0 -4
  23. package/lib/dao/dao-id.d.ts +0 -1
  24. package/lib/dao/http-base-dao-options.d.ts +0 -6
  25. package/lib/dao/http-base-dao.d.ts +0 -12
  26. package/lib/dao/index.d.ts +0 -8
  27. package/lib/dao/interfaces/identifiable.d.ts +0 -4
  28. package/lib/dao/interfaces/index.d.ts +0 -1
  29. package/lib/dao/internal/internal-http-base-dao.d.ts +0 -16
  30. package/lib/dao/promise-http-base-dao.d.ts +0 -11
  31. package/lib/forms/form-util.d.ts +0 -6
  32. package/lib/forms/index.d.ts +0 -1
  33. package/lib/index.d.ts +0 -8
  34. package/lib/model-component/action/index.d.ts +0 -2
  35. package/lib/model-component/action/model-action.d.ts +0 -5
  36. package/lib/model-component/action/model-action.type.d.ts +0 -1
  37. package/lib/model-component/base-model-detail.component.d.ts +0 -17
  38. package/lib/model-component/base-model-edit.component.d.ts +0 -5
  39. package/lib/model-component/base-model-list.component.d.ts +0 -14
  40. package/lib/model-component/base-model.component.d.ts +0 -10
  41. package/lib/model-component/base.component.d.ts +0 -6
  42. package/lib/model-component/index.d.ts +0 -5
  43. package/lib/navigation/back-button.directive.d.ts +0 -7
  44. package/lib/navigation/index.d.ts +0 -2
  45. package/lib/navigation/navigation.service.d.ts +0 -11
  46. package/lib/types/index.d.ts +0 -1
  47. package/lib/types/value-change-callback.type.d.ts +0 -1
  48. package/lib/util/index.d.ts +0 -3
  49. package/lib/util/is-nil.d.ts +0 -1
  50. package/lib/util/prepare-optional-string.d.ts +0 -1
  51. package/lib/util/remove-nil-values-recursively.d.ts +0 -1
@@ -1,5 +0,0 @@
1
- export { BaseModelDetailComponent } from './base-model-detail.component';
2
- export { BaseModelEditComponent } from './base-model-edit.component';
3
- export { BaseModelComponent } from './base-model.component';
4
- export { BaseModelListComponent } from './base-model-list.component';
5
- export { BaseComponent } from './base.component';
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class BackButtonDirective {
3
- private readonly navigation;
4
- onClick(): void;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<BackButtonDirective, never>;
6
- static ɵdir: i0.ɵɵDirectiveDeclaration<BackButtonDirective, "[ngLibBackButton]", never, {}, {}, never, never, true, never>;
7
- }
@@ -1,2 +0,0 @@
1
- export { NavigationService } from './navigation.service';
2
- export { BackButtonDirective } from './back-button.directive';
@@ -1,11 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class NavigationService {
3
- private history;
4
- private readonly router;
5
- private readonly location;
6
- constructor();
7
- reset(): void;
8
- back(fallbackRoute?: string): void;
9
- static ɵfac: i0.ɵɵFactoryDeclaration<NavigationService, never>;
10
- static ɵprov: i0.ɵɵInjectableDeclaration<NavigationService>;
11
- }
@@ -1 +0,0 @@
1
- export { ValueChangeCallback } from './value-change-callback.type';
@@ -1 +0,0 @@
1
- export type ValueChangeCallback<T> = (value: T) => void;
@@ -1,3 +0,0 @@
1
- export { prepareOptionalString } from './prepare-optional-string';
2
- export { isNil } from './is-nil';
3
- export { removeNullValuesRecursively } from './remove-nil-values-recursively';
@@ -1 +0,0 @@
1
- export declare const isNil: (obj: unknown) => boolean;
@@ -1 +0,0 @@
1
- export declare const prepareOptionalString: (value: string | null | undefined) => string | undefined;
@@ -1 +0,0 @@
1
- export declare const removeNullValuesRecursively: (object: any) => any;