spiderly 19.3.1 → 19.4.0-preview.1

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 (52) hide show
  1. package/README.md +17 -17
  2. package/fesm2022/spiderly.mjs +765 -1066
  3. package/fesm2022/spiderly.mjs.map +1 -1
  4. package/lib/components/auth/login/login.component.d.ts +3 -3
  5. package/lib/components/auth/partials/auth.component.d.ts +3 -4
  6. package/lib/components/auth/partials/login-verification.component.d.ts +2 -2
  7. package/lib/components/footer/footer.component.d.ts +2 -2
  8. package/lib/components/layout/layout.component.d.ts +3 -3
  9. package/lib/components/layout/profile-avatar/profile-avatar.component.d.ts +6 -6
  10. package/lib/components/layout/sidebar/menuitem.component.d.ts +5 -5
  11. package/lib/components/layout/sidebar/sidebar-menu.component.d.ts +5 -5
  12. package/lib/components/layout/sidemenu-topbar/sidemenu-topbar.component.d.ts +4 -4
  13. package/lib/components/layout/topbar/topbar.component.d.ts +3 -3
  14. package/lib/components/not-found/not-found.component.d.ts +2 -2
  15. package/lib/entities/security-entities.d.ts +6 -184
  16. package/lib/guards/auth.guard.d.ts +3 -3
  17. package/lib/guards/not-auth.guard.d.ts +2 -2
  18. package/lib/handlers/spiderly-error-handler.d.ts +2 -2
  19. package/lib/services/api.service.security.d.ts +5 -18
  20. package/lib/services/app-initializer.d.ts +2 -2
  21. package/lib/services/{app-layout-base.service.d.ts → app-layout.service.base.d.ts} +8 -8
  22. package/lib/services/{auth-base.service.d.ts → auth.service.base.d.ts} +6 -6
  23. package/lib/services/{config-base.service.d.ts → config.service.base.d.ts} +3 -4
  24. package/lib/services/spiderly-transloco-loader.d.ts +2 -2
  25. package/package.json +1 -1
  26. package/public-api.d.ts +3 -4
  27. package/styles/components/info-card/info-card.component.scss +60 -60
  28. package/styles/components/layout/profile-avatar/profile-avatar.component.scss +8 -8
  29. package/styles/components/layout/topbar/topbar.component.scss +38 -38
  30. package/styles/components/spiderly-data-table/spiderly-data-table.component.scss +48 -48
  31. package/styles/components/spiderly-data-view/spiderly-data-view.component.scss +55 -55
  32. package/styles/components/spiderly-panels/panel-body/panel-body.component.scss +8 -8
  33. package/styles/components/spiderly-panels/panel-footer/panel-footer.component.scss +16 -16
  34. package/styles/components/spiderly-panels/spiderly-panel/spiderly-panel.component.scss +87 -87
  35. package/styles/controls/base-controls.scss +16 -16
  36. package/styles/controls/spiderly-checkbox/spiderly-checkbox.component.scss +22 -22
  37. package/styles/styles/layout/_content.scss +14 -14
  38. package/styles/styles/layout/_footer.scss +11 -11
  39. package/styles/styles/layout/_main.scss +34 -34
  40. package/styles/styles/layout/_menu.scss +137 -137
  41. package/styles/styles/layout/_mixins.scss +13 -13
  42. package/styles/styles/layout/_preloading.scss +47 -47
  43. package/styles/styles/layout/_responsive.scss +102 -102
  44. package/styles/styles/layout/_spiderly-controls.scss +14 -14
  45. package/styles/styles/layout/_topbar.scss +235 -235
  46. package/styles/styles/layout/_typography.scss +63 -63
  47. package/styles/styles/layout/_utils.scss +19 -19
  48. package/styles/styles/layout/_variables.scss +908 -908
  49. package/styles/styles/layout/layout.scss +11 -11
  50. package/styles/styles/shared.scss +483 -483
  51. package/styles/styles/styles.scss +2 -2
  52. package/lib/components/base-details/role-base-details.component.d.ts +0 -43
@@ -1,3 +1,3 @@
1
- @use "./layout/layout.scss";
2
-
1
+ @use "./layout/layout.scss";
2
+
3
3
  @use "./shared.scss"
@@ -1,43 +0,0 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { ActivatedRoute } from '@angular/router';
3
- import { MenuItem } from 'primeng/api';
4
- import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
5
- import { BaseEntity } from '../../entities/base-entity';
6
- import { IsAuthorizedForSaveEvent } from '../../entities/is-authorized-for-save-event';
7
- import { LastMenuIconIndexClicked } from '../../entities/last-menu-icon-index-clicked';
8
- import { Namebook } from '../../entities/namebook';
9
- import { RoleMainUIForm } from '../../entities/security-entities';
10
- import { SpiderlyButton } from '../../entities/spiderly-button';
11
- import { ApiSecurityService } from '../../services/api.service.security';
12
- import { AuthBaseService } from '../../services/auth-base.service';
13
- import { BaseFormService } from '../../services/base-form.service';
14
- import { SpiderlyFormArray, SpiderlyFormGroup } from '../spiderly-form-control/spiderly-form-control';
15
- import * as i0 from "@angular/core";
16
- export declare class RoleBaseDetailsComponent {
17
- private apiService;
18
- private route;
19
- private baseFormService;
20
- private authService;
21
- onSave: EventEmitter<void>;
22
- onAfterFormGroupInit: EventEmitter<void>;
23
- getCrudMenuForOrderedData: (formArray: SpiderlyFormArray, modelConstructor: BaseEntity, lastMenuIconIndexClicked: LastMenuIconIndexClicked, adjustFormArrayManually: boolean) => MenuItem[];
24
- parentFormGroup: SpiderlyFormGroup<RoleMainUIForm>;
25
- additionalButtons: SpiderlyButton[];
26
- panelTitle: string;
27
- showBigPanelTitle: boolean;
28
- panelIcon: string;
29
- handleAdditionalSaveAuthorization: () => Promise<boolean>;
30
- isAuthorizedForSave: boolean;
31
- onIsAuthorizedForSaveChange: EventEmitter<IsAuthorizedForSaveEvent>;
32
- modelId: number;
33
- loading: boolean;
34
- usersForRoleOptions: Namebook[];
35
- permissionsForRoleOptions: Namebook[];
36
- constructor(apiService: ApiSecurityService, route: ActivatedRoute, baseFormService: BaseFormService, authService: AuthBaseService);
37
- ngOnInit(): void;
38
- handleAuthorizationForSave: () => Promise<void>;
39
- searchUsersForRole(event: AutoCompleteCompleteEvent): void;
40
- save(): void;
41
- static ɵfac: i0.ɵɵFactoryDeclaration<RoleBaseDetailsComponent, never>;
42
- static ɵcmp: i0.ɵɵComponentDeclaration<RoleBaseDetailsComponent, "role-base-details", never, { "getCrudMenuForOrderedData": { "alias": "getCrudMenuForOrderedData"; "required": false; }; "parentFormGroup": { "alias": "parentFormGroup"; "required": false; }; "additionalButtons": { "alias": "additionalButtons"; "required": false; }; "panelTitle": { "alias": "panelTitle"; "required": false; }; "showBigPanelTitle": { "alias": "showBigPanelTitle"; "required": false; }; "panelIcon": { "alias": "panelIcon"; "required": false; }; "handleAdditionalSaveAuthorization": { "alias": "handleAdditionalSaveAuthorization"; "required": false; }; }, { "onSave": "onSave"; "onAfterFormGroupInit": "onAfterFormGroupInit"; "onIsAuthorizedForSaveChange": "onIsAuthorizedForSaveChange"; }, never, never, true, never>;
43
- }