@rlucan/ui 14.2.6 → 17.1.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 (41) hide show
  1. package/README.md +24 -24
  2. package/esm2022/lib/action-button/action-button.component.mjs +4 -4
  3. package/esm2022/lib/action-icon/action-icon.component.mjs +5 -5
  4. package/esm2022/lib/autocomplete/autocomplete.component.mjs +7 -7
  5. package/esm2022/lib/avatar/avatar.component.mjs +5 -5
  6. package/esm2022/lib/button/button.component.mjs +5 -5
  7. package/esm2022/lib/checkbox/checkbox.component.mjs +6 -6
  8. package/esm2022/lib/checkbox-group/checkbox-group.component.mjs +6 -6
  9. package/esm2022/lib/currency/currency.component.mjs +6 -6
  10. package/esm2022/lib/date/date.component.mjs +7 -7
  11. package/esm2022/lib/dialog/dialog.component.mjs +5 -5
  12. package/esm2022/lib/directives/force-visibility/force-visibility.directive.mjs +5 -5
  13. package/esm2022/lib/editor/editor.component.mjs +7 -7
  14. package/esm2022/lib/elements/burger/burger.component.mjs +5 -5
  15. package/esm2022/lib/elements/expander/expander.component.mjs +5 -5
  16. package/esm2022/lib/elements/validation-message/validation-message.component.mjs +6 -6
  17. package/esm2022/lib/file/file.component.mjs +6 -6
  18. package/esm2022/lib/file-uploader/ui-file-uploader.component.mjs +8 -8
  19. package/esm2022/lib/input/input.component.mjs +8 -8
  20. package/esm2022/lib/input-autocomplete/input-autocomplete.component.mjs +8 -8
  21. package/esm2022/lib/layouts/base/ui-base-layout.component.mjs +4 -4
  22. package/esm2022/lib/layouts/base/ui-base.component.mjs +5 -5
  23. package/esm2022/lib/layouts/simple/ui-simple-layout.component.mjs +4 -4
  24. package/esm2022/lib/layouts/simple/ui-simple.component.mjs +5 -5
  25. package/esm2022/lib/radio/radio.component.mjs +4 -4
  26. package/esm2022/lib/radio-group/radio-group.component.mjs +6 -6
  27. package/esm2022/lib/select/select.component.mjs +28 -17
  28. package/esm2022/lib/services/message-box.service.mjs +12 -12
  29. package/esm2022/lib/services/toast.service.mjs +5 -5
  30. package/esm2022/lib/services/ui-file.service.mjs +6 -6
  31. package/esm2022/lib/services/ui-translate.service.mjs +4 -4
  32. package/esm2022/lib/submit-button/submit-button.component.mjs +6 -6
  33. package/esm2022/lib/table/table.component.mjs +6 -6
  34. package/esm2022/lib/text-area/text-area.component.mjs +7 -7
  35. package/esm2022/lib/ui.module.mjs +5 -5
  36. package/fesm2022/rlucan-ui.mjs +187 -176
  37. package/fesm2022/rlucan-ui.mjs.map +1 -1
  38. package/lib/action-button/action-button.component.d.ts +2 -6
  39. package/lib/select/select.component.d.ts +4 -2
  40. package/package.json +14 -14
  41. package/src/js/editorjs.mjs +9634 -9634
@@ -1,5 +1,6 @@
1
1
  import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { ButtonComponent } from '../button/button.component';
3
+ import { ConnectedPosition } from '@angular/cdk/overlay';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class ActionButtonComponent extends ButtonComponent implements OnInit {
5
6
  withPrimary: boolean;
@@ -17,12 +18,7 @@ export declare class ActionButtonComponent extends ButtonComponent implements On
17
18
  private leftPositions;
18
19
  openOverlay: boolean;
19
20
  onKeydownHandler(evt: KeyboardEvent): void;
20
- get positions(): {
21
- originX: string;
22
- originY: string;
23
- overlayX: string;
24
- overlayY: string;
25
- }[];
21
+ get positions(): ConnectedPosition[];
26
22
  ngOnInit(): void;
27
23
  toggleOverlay(status: any): void;
28
24
  closeOverlay(): void;
@@ -1,10 +1,10 @@
1
- import { OnInit, TemplateRef } from '@angular/core';
1
+ import { OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core';
2
2
  import { NgControl } from '@angular/forms';
3
3
  import { UiSimpleComponent } from '../layouts/simple/ui-simple.component';
4
4
  import { MatSelect } from '@angular/material/select';
5
5
  import { IUiTranslateService } from '../services/ui-translate.service';
6
6
  import * as i0 from "@angular/core";
7
- export declare class SelectComponent extends UiSimpleComponent implements OnInit {
7
+ export declare class SelectComponent extends UiSimpleComponent implements OnInit, OnChanges {
8
8
  ngControl: NgControl;
9
9
  translateService: IUiTranslateService;
10
10
  multiple: boolean;
@@ -24,6 +24,8 @@ export declare class SelectComponent extends UiSimpleComponent implements OnInit
24
24
  overoption: boolean;
25
25
  constructor(ngControl: NgControl, translateService: IUiTranslateService);
26
26
  ngOnInit(): void;
27
+ ngOnChanges(changes: SimpleChanges): void;
28
+ mapValues(src: any): any;
27
29
  optionToValue: (o: any) => any;
28
30
  selectOption(o: any, select: MatSelect): void;
29
31
  selectAll(): void;
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@rlucan/ui",
3
- "version": "14.2.6",
3
+ "version": "17.1.1",
4
4
  "description": "My UI Components",
5
5
  "author": "rlucan@gmail.com",
6
6
  "peerDependencies": {
7
- "@angular/animations": "~16.2.11",
8
- "@angular/cdk": "^16.2.10",
9
- "@angular/common": "^16.2.11",
10
- "@angular/core": "^16.2.11",
11
- "@angular/forms": "^16.2.11",
12
- "@angular/material": "^16.2.10",
13
- "@angular/material-moment-adapter": "^16.2.10",
14
- "@angular/platform-browser": "^16.2.11",
15
- "@editorjs/editorjs": "^2.28.2",
16
- "@editorjs/list": "^1.8.0",
7
+ "@angular/animations": "^17.1.2",
8
+ "@angular/cdk": "^17.1.2",
9
+ "@angular/common": "^17.1.2",
10
+ "@angular/core": "^17.1.2",
11
+ "@angular/forms": "^17.1.2",
12
+ "@angular/material": "^17.1.2",
13
+ "@angular/material-moment-adapter": "^17.1.2",
14
+ "@angular/platform-browser": "^17.1.2",
15
+ "@editorjs/editorjs": "^2.29.0",
16
+ "@editorjs/list": "^1.9.0",
17
17
  "codex-notifier": "^1.1.2",
18
18
  "codex-tooltip": "^1.0.5",
19
19
  "moment": "^2.29.4",
20
- "ngx-image-cropper": "^7.1.1",
21
- "ngx-uploader": "^16.0.0",
20
+ "ngx-image-cropper": "^7.2.1",
21
+ "ngx-uploader": "^17.0.1",
22
22
  "rxjs": "~7.8.1",
23
- "zone.js": "~0.13.3"
23
+ "zone.js": "~0.14.3"
24
24
  },
25
25
  "dependencies": {
26
26
  "tslib": "^2.4.0"