lib-portal-angular 0.0.73 → 0.0.75
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/esm2022/lib/components/accordion/accordion.component.mjs +2 -2
- package/esm2022/lib/components/badge/badge.component.mjs +43 -66
- package/esm2022/lib/components/button/button.component.mjs +82 -105
- package/esm2022/lib/components/calendar-argenta/calendar-argenta.component.mjs +2 -2
- package/esm2022/lib/components/confirmation/confirmation.component.mjs +2 -2
- package/esm2022/lib/components/custom-pagination/custom-pagination.component.mjs +2 -2
- package/esm2022/lib/components/custom-switch/custom-switch.component.mjs +2 -2
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +2 -2
- package/esm2022/lib/components/imput/input.component.mjs +2 -2
- package/esm2022/lib/components/modal/modal.component.mjs +2 -2
- package/esm2022/lib/components/multi-select/multi-select.component.mjs +2 -2
- package/esm2022/lib/components/radio/radio.component.mjs +14 -48
- package/esm2022/lib/components/search-customer/search-customer.component.mjs +5 -4
- package/esm2022/lib/components/search-input/search-input.component.mjs +2 -2
- package/esm2022/lib/components/select/select.component.mjs +2 -2
- package/esm2022/lib/components/tab/tab.component.mjs +2 -2
- package/esm2022/lib/components/tables/data-table.component.mjs +2 -2
- package/esm2022/lib/components/tree-node/tree-node.component.mjs +3 -3
- package/esm2022/lib/function/SetThemeColors.mjs +39 -0
- package/esm2022/public-api.mjs +66 -64
- package/fesm2022/lib-portal-angular.mjs +209 -250
- package/fesm2022/lib-portal-angular.mjs.map +1 -1
- package/lib/components/badge/badge.component.d.ts +7 -7
- package/lib/components/button/button.component.d.ts +8 -6
- package/lib/components/radio/radio.component.d.ts +2 -2
- package/lib/function/SetThemeColors.d.ts +14 -0
- package/package.json +1 -1
- package/public-api.d.ts +64 -63
@@ -1,5 +1,5 @@
|
|
1
|
-
import { EventEmitter } from
|
2
|
-
import { ButtonClasses } from
|
1
|
+
import { EventEmitter } from "@angular/core";
|
2
|
+
import { ButtonClasses } from "../../enum/ButtonClassesEnum";
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class BadgeComponent {
|
5
5
|
label: string;
|
@@ -14,11 +14,11 @@ export declare class BadgeComponent {
|
|
14
14
|
isClicked: boolean;
|
15
15
|
isActive: boolean;
|
16
16
|
getDynamicStyles(): {
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
"margin-top": string;
|
18
|
+
"margin-bottom": string;
|
19
|
+
"margin-left": string;
|
20
|
+
"margin-right": string;
|
21
|
+
"background-color": string;
|
22
22
|
color: string;
|
23
23
|
border: string;
|
24
24
|
transition: string;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from
|
2
|
-
import { ButtonClasses } from
|
3
|
-
import { AuthService } from
|
1
|
+
import { EventEmitter, OnInit, OnChanges, SimpleChanges, ChangeDetectorRef } from "@angular/core";
|
2
|
+
import { ButtonClasses } from "../../enum/ButtonClassesEnum";
|
3
|
+
import { AuthService } from "../../service/auth-service.service";
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class ButtonComponent implements OnInit, OnChanges {
|
6
6
|
private authService;
|
7
|
+
private cdr;
|
7
8
|
type: string;
|
8
9
|
label: string;
|
9
10
|
btnClass: ButtonClasses;
|
@@ -22,14 +23,15 @@ export declare class ButtonComponent implements OnInit, OnChanges {
|
|
22
23
|
onButtonClick: EventEmitter<Event>;
|
23
24
|
private isHovered;
|
24
25
|
private isActive;
|
25
|
-
|
26
|
+
clicked: boolean;
|
27
|
+
constructor(authService: AuthService, cdr: ChangeDetectorRef);
|
26
28
|
ngOnInit(): void;
|
27
29
|
ngOnChanges(changes: SimpleChanges): void;
|
28
30
|
private validateInputs;
|
29
31
|
onClick(event: Event): void;
|
30
32
|
get dynamicStyles(): {
|
31
|
-
|
32
|
-
|
33
|
+
"font-size": string;
|
34
|
+
"background-color": string;
|
33
35
|
color: string;
|
34
36
|
border: string;
|
35
37
|
transition: string;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { EventEmitter } from
|
2
|
-
import { ControlValueAccessor } from
|
1
|
+
import { EventEmitter } from "@angular/core";
|
2
|
+
import { ControlValueAccessor } from "@angular/forms";
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class RadioComponent implements ControlValueAccessor {
|
5
5
|
name: string;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export declare function setThemeColors(config: {
|
2
|
+
primary?: string;
|
3
|
+
secondary?: string;
|
4
|
+
success?: string;
|
5
|
+
danger?: string;
|
6
|
+
warning?: string;
|
7
|
+
info?: string;
|
8
|
+
light?: string;
|
9
|
+
dark?: string;
|
10
|
+
linkBorder?: string;
|
11
|
+
background?: string;
|
12
|
+
text?: string;
|
13
|
+
font?: string;
|
14
|
+
}): void;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -1,63 +1,64 @@
|
|
1
|
-
export * from
|
2
|
-
export * from
|
3
|
-
export * from
|
4
|
-
export * from
|
5
|
-
export * from
|
6
|
-
export * from
|
7
|
-
export * from
|
8
|
-
export * from
|
9
|
-
export * from
|
10
|
-
export * from
|
11
|
-
export * from
|
12
|
-
export * from
|
13
|
-
export * from
|
14
|
-
export * from
|
15
|
-
export * from
|
16
|
-
export * from
|
17
|
-
export * from
|
18
|
-
export * from
|
19
|
-
export * from
|
20
|
-
export * from
|
21
|
-
export * from
|
22
|
-
export * from
|
23
|
-
export * from
|
24
|
-
export * from
|
25
|
-
export * from
|
26
|
-
export * from
|
27
|
-
export * from
|
28
|
-
export * from
|
29
|
-
export * from
|
30
|
-
export * from
|
31
|
-
export * from
|
32
|
-
export * from
|
33
|
-
export * from
|
34
|
-
export * from
|
35
|
-
export * from
|
36
|
-
export * from
|
37
|
-
export * from
|
38
|
-
export * from
|
39
|
-
export * from
|
40
|
-
export * from
|
41
|
-
export * from
|
42
|
-
export * from
|
43
|
-
export * from
|
44
|
-
export * from
|
45
|
-
export * from
|
46
|
-
export * from
|
47
|
-
export * from
|
48
|
-
export * from
|
49
|
-
export * from
|
50
|
-
export * from
|
51
|
-
export * from
|
52
|
-
export * from
|
53
|
-
export * from
|
54
|
-
export * from
|
55
|
-
export * from
|
56
|
-
export * from
|
57
|
-
export * from
|
58
|
-
export * from
|
59
|
-
export * from
|
60
|
-
export * from
|
61
|
-
export * from
|
62
|
-
export * from
|
63
|
-
export * from
|
1
|
+
export * from "./lib/components/accordion/accordion.component";
|
2
|
+
export * from "./lib/components/alert/alert.component";
|
3
|
+
export * from "./lib/components/app-background/app-background.component";
|
4
|
+
export * from "./lib/components/badge/badge.component";
|
5
|
+
export * from "./lib/components/basic-registration/basic-registration.component";
|
6
|
+
export * from "./lib/components/button/button.component";
|
7
|
+
export * from "./lib/components/calendar-argenta/calendar-argenta.component";
|
8
|
+
export * from "./lib/components/card/card.component";
|
9
|
+
export * from "./lib/components/checkbox/checkbox.component";
|
10
|
+
export * from "./lib/components/code-highlight/code-highlight.component";
|
11
|
+
export * from "./lib/components/confirmation/confirmation.component";
|
12
|
+
export * from "./lib/components/custom-pagination/custom-pagination.component";
|
13
|
+
export * from "./lib/components/custom-switch/custom-switch.component";
|
14
|
+
export * from "./lib/components/file-upload/file-upload.component";
|
15
|
+
export * from "./lib/components/imput/input.component";
|
16
|
+
export * from "./lib/components/multi-select-category/multi-select-category.component";
|
17
|
+
export * from "./lib/components/multi-select/multi-select.component";
|
18
|
+
export * from "./lib/components/radio/radio.component";
|
19
|
+
export * from "./lib/components/search-customer/search-customer.component";
|
20
|
+
export * from "./lib/components/search-input/search-input.component";
|
21
|
+
export * from "./lib/components/select/select.component";
|
22
|
+
export * from "./lib/components/tab/tab.component";
|
23
|
+
export * from "./lib/components/tables/data-table.component";
|
24
|
+
export * from "./lib/components/textarea/textarea.component";
|
25
|
+
export * from "./lib/components/tree-node/tree-node.component";
|
26
|
+
export * from "./lib/components/alert/alert.component";
|
27
|
+
export * from "./lib/components/app-background/app-background.component";
|
28
|
+
export * from "./lib/components/badge/badge.component";
|
29
|
+
export * from "./lib/components/basic-registration/basic-registration.component";
|
30
|
+
export * from "./lib/components/button/button.component";
|
31
|
+
export * from "./lib/components/card/card.component";
|
32
|
+
export * from "./lib/components/checkbox/checkbox.component";
|
33
|
+
export * from "./lib/components/code-highlight/code-highlight.component";
|
34
|
+
export * from "./lib/components/confirmation/confirmation.component";
|
35
|
+
export * from "./lib/components/custom-pagination/custom-pagination.component";
|
36
|
+
export * from "./lib/components/custom-switch/custom-switch.component";
|
37
|
+
export * from "./lib/components/file-upload/file-upload.component";
|
38
|
+
export * from "./lib/components/imput/input.component";
|
39
|
+
export * from "./lib/components/json-viewer/json-viewer.component";
|
40
|
+
export * from "./lib/components/modal/modal.component";
|
41
|
+
export * from "./lib/components/multi-select-category/multi-select-category.component";
|
42
|
+
export * from "./lib/components/multi-select/multi-select.component";
|
43
|
+
export * from "./lib/components/radio/radio.component";
|
44
|
+
export * from "./lib/components/search-customer/search-customer.component";
|
45
|
+
export * from "./lib/components/search-input/search-input.component";
|
46
|
+
export * from "./lib/components/select/select.component";
|
47
|
+
export * from "./lib/components/tab/tab.component";
|
48
|
+
export * from "./lib/components/tables/data-table.component";
|
49
|
+
export * from "./lib/components/textarea/textarea.component";
|
50
|
+
export * from "./lib/components/tree-node/tree-node.component";
|
51
|
+
export * from "./lib/directive/autofocus-directive/autofocus.directive";
|
52
|
+
export * from "./lib/directive/cep-mask.directive";
|
53
|
+
export * from "./lib/directive/cnpj-mask.directive";
|
54
|
+
export * from "./lib/directive/cpf-mask.directive";
|
55
|
+
export * from "./lib/enum/ButtonClassesEnum";
|
56
|
+
export * from "./lib/components/components.module";
|
57
|
+
export * from "./lib/icons/lucide-icons.module";
|
58
|
+
export * from "./lib/lib-portal-angular.module";
|
59
|
+
export * from "./lib/components/alert/notification.service";
|
60
|
+
export * from "./lib/components/confirmation/confirmation.service";
|
61
|
+
export * from "./lib/components/tables/data-paginate.service";
|
62
|
+
export * from "./lib/service/refresh-service.service";
|
63
|
+
export * from "./lib/service/route-parameter.service";
|
64
|
+
export * from "./lib/function/SetThemeColors";
|