@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.
- package/README.md +24 -24
- package/esm2022/lib/action-button/action-button.component.mjs +4 -4
- package/esm2022/lib/action-icon/action-icon.component.mjs +5 -5
- package/esm2022/lib/autocomplete/autocomplete.component.mjs +7 -7
- package/esm2022/lib/avatar/avatar.component.mjs +5 -5
- package/esm2022/lib/button/button.component.mjs +5 -5
- package/esm2022/lib/checkbox/checkbox.component.mjs +6 -6
- package/esm2022/lib/checkbox-group/checkbox-group.component.mjs +6 -6
- package/esm2022/lib/currency/currency.component.mjs +6 -6
- package/esm2022/lib/date/date.component.mjs +7 -7
- package/esm2022/lib/dialog/dialog.component.mjs +5 -5
- package/esm2022/lib/directives/force-visibility/force-visibility.directive.mjs +5 -5
- package/esm2022/lib/editor/editor.component.mjs +7 -7
- package/esm2022/lib/elements/burger/burger.component.mjs +5 -5
- package/esm2022/lib/elements/expander/expander.component.mjs +5 -5
- package/esm2022/lib/elements/validation-message/validation-message.component.mjs +6 -6
- package/esm2022/lib/file/file.component.mjs +6 -6
- package/esm2022/lib/file-uploader/ui-file-uploader.component.mjs +8 -8
- package/esm2022/lib/input/input.component.mjs +8 -8
- package/esm2022/lib/input-autocomplete/input-autocomplete.component.mjs +8 -8
- package/esm2022/lib/layouts/base/ui-base-layout.component.mjs +4 -4
- package/esm2022/lib/layouts/base/ui-base.component.mjs +5 -5
- package/esm2022/lib/layouts/simple/ui-simple-layout.component.mjs +4 -4
- package/esm2022/lib/layouts/simple/ui-simple.component.mjs +5 -5
- package/esm2022/lib/radio/radio.component.mjs +4 -4
- package/esm2022/lib/radio-group/radio-group.component.mjs +6 -6
- package/esm2022/lib/select/select.component.mjs +28 -17
- package/esm2022/lib/services/message-box.service.mjs +12 -12
- package/esm2022/lib/services/toast.service.mjs +5 -5
- package/esm2022/lib/services/ui-file.service.mjs +6 -6
- package/esm2022/lib/services/ui-translate.service.mjs +4 -4
- package/esm2022/lib/submit-button/submit-button.component.mjs +6 -6
- package/esm2022/lib/table/table.component.mjs +6 -6
- package/esm2022/lib/text-area/text-area.component.mjs +7 -7
- package/esm2022/lib/ui.module.mjs +5 -5
- package/fesm2022/rlucan-ui.mjs +187 -176
- package/fesm2022/rlucan-ui.mjs.map +1 -1
- package/lib/action-button/action-button.component.d.ts +2 -6
- package/lib/select/select.component.d.ts +4 -2
- package/package.json +14 -14
- 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": "
|
|
3
|
+
"version": "17.1.1",
|
|
4
4
|
"description": "My UI Components",
|
|
5
5
|
"author": "rlucan@gmail.com",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@angular/animations": "
|
|
8
|
-
"@angular/cdk": "^
|
|
9
|
-
"@angular/common": "^
|
|
10
|
-
"@angular/core": "^
|
|
11
|
-
"@angular/forms": "^
|
|
12
|
-
"@angular/material": "^
|
|
13
|
-
"@angular/material-moment-adapter": "^
|
|
14
|
-
"@angular/platform-browser": "^
|
|
15
|
-
"@editorjs/editorjs": "^2.
|
|
16
|
-
"@editorjs/list": "^1.
|
|
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.
|
|
21
|
-
"ngx-uploader": "^
|
|
20
|
+
"ngx-image-cropper": "^7.2.1",
|
|
21
|
+
"ngx-uploader": "^17.0.1",
|
|
22
22
|
"rxjs": "~7.8.1",
|
|
23
|
-
"zone.js": "~0.
|
|
23
|
+
"zone.js": "~0.14.3"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"tslib": "^2.4.0"
|