aril 0.1.2 → 0.1.4

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 (39) hide show
  1. package/esm2022/theme/layout/app/menu/app.menu.component.mjs +9 -7
  2. package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +1 -1
  3. package/esm2022/ui/dxEditor/aril-ui-dxEditor.mjs +5 -0
  4. package/esm2022/ui/dxEditor/index.mjs +2 -0
  5. package/esm2022/ui/dxEditor/src/dx-editor.component.mjs +26 -0
  6. package/esm2022/ui/operation-types-dialog/src/operation-types-dialog.component.mjs +14 -2
  7. package/esm2022/ui/rolePicker/aril-ui-rolePicker.mjs +5 -0
  8. package/esm2022/ui/rolePicker/index.mjs +2 -0
  9. package/esm2022/ui/rolePicker/src/interface.mjs +2 -0
  10. package/esm2022/ui/rolePicker/src/role-picker.component.mjs +54 -0
  11. package/esm2022/ui/userPicker/aril-ui-userPicker.mjs +5 -0
  12. package/esm2022/ui/userPicker/index.mjs +2 -0
  13. package/esm2022/ui/userPicker/src/interface.mjs +3 -0
  14. package/esm2022/ui/userPicker/src/user-picker.component.mjs +72 -0
  15. package/fesm2022/aril-theme-layout.mjs +9 -7
  16. package/fesm2022/aril-theme-layout.mjs.map +1 -1
  17. package/fesm2022/aril-ui-dxEditor.mjs +33 -0
  18. package/fesm2022/aril-ui-dxEditor.mjs.map +1 -0
  19. package/fesm2022/aril-ui-operation-types-dialog.mjs +13 -1
  20. package/fesm2022/aril-ui-operation-types-dialog.mjs.map +1 -1
  21. package/fesm2022/aril-ui-rolePicker.mjs +61 -0
  22. package/fesm2022/aril-ui-rolePicker.mjs.map +1 -0
  23. package/fesm2022/aril-ui-userPicker.mjs +79 -0
  24. package/fesm2022/aril-ui-userPicker.mjs.map +1 -0
  25. package/package.json +115 -97
  26. package/theme/layout/app/menu/app.menu.component.html +2 -2
  27. package/theme/layout/app/menu/app.menu.component.ts +3 -2
  28. package/theme/styles/layout/_sidebar_slim_plus.scss +4 -4
  29. package/theme/styles/layout/_sidebar_vertical.scss +2 -2
  30. package/theme/styles/theme/base/components/data/_datatable.scss +4 -4
  31. package/ui/dxEditor/index.d.ts +1 -0
  32. package/ui/dxEditor/src/dx-editor.component.d.ts +11 -0
  33. package/ui/operation-types-dialog/src/operation-types-dialog.component.d.ts +4 -0
  34. package/ui/rolePicker/index.d.ts +1 -0
  35. package/ui/rolePicker/src/interface.d.ts +40 -0
  36. package/ui/rolePicker/src/role-picker.component.d.ts +29 -0
  37. package/ui/userPicker/index.d.ts +1 -0
  38. package/ui/userPicker/src/interface.d.ts +69 -0
  39. package/ui/userPicker/src/user-picker.component.d.ts +27 -0
@@ -0,0 +1,27 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { AfterViewInit } from '@angular/core';
3
+ import { AutoComplete } from 'primeng/autocomplete';
4
+ import { BaseInputComponent } from 'aril/ui/lib';
5
+ import { SuggestionsDTO, SuggestionsGroupDTO, UserResponseDTO } from './interface';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "aril/ui/lib";
8
+ export declare class UserPickerComponent extends BaseInputComponent implements AfterViewInit {
9
+ private http;
10
+ autoCompleteRef: AutoComplete;
11
+ placeholder: import("@angular/core").InputSignal<string, string>;
12
+ forceSelection: import("@angular/core").InputSignal<boolean, boolean>;
13
+ multiple: import("@angular/core").InputSignal<boolean, boolean>;
14
+ optionValue: import("@angular/core").InputSignal<keyof SuggestionsDTO | null, keyof SuggestionsDTO | null>;
15
+ filteredSelectionItems: SuggestionsGroupDTO[];
16
+ baseUrl: import("@angular/core").InputSignal<string | null, string | null>;
17
+ userEndPointUrl: import("@angular/core").InputSignal<string, string>;
18
+ constructor(http: HttpClient);
19
+ ngAfterViewInit(): void;
20
+ getOptionValue(option: any): any;
21
+ search(event: any): Promise<void>;
22
+ groupByUserName(array: UserResponseDTO[]): {
23
+ [key: string]: UserResponseDTO[];
24
+ };
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserPickerComponent, never>;
26
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserPickerComponent, "aril-user-picker[ngModel], aril-user-picker[formControl], aril-user-picker[formControlName]", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "forceSelection": { "alias": "forceSelection"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "optionValue": { "alias": "optionValue"; "required": false; "isSignal": true; }; "baseUrl": { "alias": "baseUrl"; "required": false; "isSignal": true; }; "userEndPointUrl": { "alias": "userEndPointUrl"; "required": false; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof i1.ValueAccessorDirective; inputs: {}; outputs: {}; }]>;
27
+ }