@wizco/fenixds-ngx 17.3.4 → 17.4.0
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/msg-box-feedback/msg-box-feedback.component.mjs +32 -25
- package/esm2022/lib/smart-select/smart-select.component.mjs +32 -16
- package/esm2022/lib/tabs/tabs.component.mjs +14 -7
- package/fesm2022/wizco-fenixds-ngx.mjs +75 -45
- package/fesm2022/wizco-fenixds-ngx.mjs.map +1 -1
- package/lib/msg-box-feedback/msg-box-feedback.component.d.ts +2 -1
- package/lib/msg-box-feedback/msg-box-feedback.component.d.ts.map +1 -1
- package/lib/smart-select/smart-select.component.d.ts +7 -5
- package/lib/smart-select/smart-select.component.d.ts.map +1 -1
- package/lib/tabs/tabs.component.d.ts +3 -2
- package/lib/tabs/tabs.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -7,10 +7,11 @@ export declare class MsgBoxFeedbackComponent {
|
|
|
7
7
|
title: MsgBoxFeedbackTypes['title'];
|
|
8
8
|
message: MsgBoxFeedbackTypes['message'];
|
|
9
9
|
type: MsgBoxFeedbackTypes['type'];
|
|
10
|
+
hideClose: boolean;
|
|
10
11
|
onClose: EventEmitter<any>;
|
|
11
12
|
constructor();
|
|
12
13
|
close(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<MsgBoxFeedbackComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MsgBoxFeedbackComponent, "wco-msg-box-feedback", never, { "shadow": { "alias": "shadow"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "onClose": "onClose"; }, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MsgBoxFeedbackComponent, "wco-msg-box-feedback", never, { "shadow": { "alias": "shadow"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "type": { "alias": "type"; "required": false; }; "hideClose": { "alias": "hideClose"; "required": false; }; }, { "onClose": "onClose"; }, never, never, true, never>;
|
|
15
16
|
}
|
|
16
17
|
//# sourceMappingURL=msg-box-feedback.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"msg-box-feedback.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/msg-box-feedback/msg-box-feedback.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAoC,MAAM,eAAe,CAAC;AAE1F,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;;AAE9D,qBAmBa,uBAAuB;
|
|
1
|
+
{"version":3,"file":"msg-box-feedback.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/msg-box-feedback/msg-box-feedback.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAoC,MAAM,eAAe,CAAC;AAE1F,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;;AAE9D,qBAmBa,uBAAuB;IAOzB,MAAM,UAAS;IAQf,IAAI,EAAE,mBAAmB,CAAC,MAAM,CAAC,CAAS;IAK1C,KAAK,EAAG,mBAAmB,CAAC,OAAO,CAAC,CAAC;IAKrC,OAAO,EAAG,mBAAmB,CAAC,SAAS,CAAC,CAAC;IAKzC,IAAI,EAAE,mBAAmB,CAAC,MAAM,CAAC,CAAW;IAM5C,SAAS,UAAS;IAMjB,OAAO,oBAA2B;;IAI5C,KAAK,IAAI,IAAI;yCA9CF,uBAAuB;2CAAvB,uBAAuB;CAiDnC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, QueryList } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor, FormControl, Validator } from '@angular/forms';
|
|
2
|
+
import { ControlValueAccessor, FormControl, ValidationErrors, Validator } from '@angular/forms';
|
|
3
3
|
import { SmartSelectOptionComponent } from './smart-select-options.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class SmartSelectComponent implements ControlValueAccessor, Validator {
|
|
@@ -14,12 +14,15 @@ export declare class SmartSelectComponent implements ControlValueAccessor, Valid
|
|
|
14
14
|
IconMaterial: string;
|
|
15
15
|
placeholder: string;
|
|
16
16
|
label: string;
|
|
17
|
+
showError: boolean;
|
|
17
18
|
showSearch: boolean;
|
|
19
|
+
placeholderSearch: string;
|
|
18
20
|
textEmpty: string;
|
|
19
21
|
multiSelect: boolean;
|
|
20
22
|
showMaxSelectedLabel: number;
|
|
21
23
|
typePrefix: 'checkbox' | 'radio' | null;
|
|
22
24
|
required: boolean;
|
|
25
|
+
formControlName: any | undefined;
|
|
23
26
|
isMobile: boolean;
|
|
24
27
|
formValue: any;
|
|
25
28
|
isFocused: boolean;
|
|
@@ -33,9 +36,8 @@ export declare class SmartSelectComponent implements ControlValueAccessor, Valid
|
|
|
33
36
|
writeValue(obj: any): void;
|
|
34
37
|
registerOnChange(fn: any): void;
|
|
35
38
|
registerOnTouched(fn: any): void;
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
} | null;
|
|
39
|
+
get hasError(): boolean;
|
|
40
|
+
validate(_control: FormControl): ValidationErrors | null;
|
|
39
41
|
setDisabledState?(isDisabled: boolean): void;
|
|
40
42
|
onFocusIn(focus?: boolean): void;
|
|
41
43
|
positionBox(): void;
|
|
@@ -63,6 +65,6 @@ export declare class SmartSelectComponent implements ControlValueAccessor, Valid
|
|
|
63
65
|
private renderBoxOptions;
|
|
64
66
|
private normalizeText;
|
|
65
67
|
static ɵfac: i0.ɵɵFactoryDeclaration<SmartSelectComponent, never>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartSelectComponent, "wco-smart-select", never, { "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "IconMaterial": { "alias": "IconMaterial"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "textEmpty": { "alias": "textEmpty"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "showMaxSelectedLabel": { "alias": "showMaxSelectedLabel"; "required": false; }; "typePrefix": { "alias": "typePrefix"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "onChange": "onChange"; }, ["options"], never, true, never>;
|
|
68
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SmartSelectComponent, "wco-smart-select", never, { "inputId": { "alias": "inputId"; "required": false; }; "inputName": { "alias": "inputName"; "required": false; }; "IconMaterial": { "alias": "IconMaterial"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "placeholderSearch": { "alias": "placeholderSearch"; "required": false; }; "textEmpty": { "alias": "textEmpty"; "required": false; }; "multiSelect": { "alias": "multiSelect"; "required": false; }; "showMaxSelectedLabel": { "alias": "showMaxSelectedLabel"; "required": false; }; "typePrefix": { "alias": "typePrefix"; "required": false; }; "required": { "alias": "required"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; }, { "onChange": "onChange"; }, ["options"], never, true, never>;
|
|
67
69
|
}
|
|
68
70
|
//# sourceMappingURL=smart-select.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smart-select.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/smart-select/smart-select.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,
|
|
1
|
+
{"version":3,"file":"smart-select.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/smart-select/smart-select.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,UAAU,EACV,YAAY,EAIZ,SAAS,EAGV,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,oBAAoB,EAEpB,WAAW,EAOX,gBAAgB,EAChB,SAAS,EACV,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,0BAA0B,EAAE,MAAM,kCAAkC,CAAC;;AAE9E,qBAoBa,oBAAqB,YAAW,oBAAoB,EAAE,SAAS;IAiE9D,OAAO,CAAC,EAAE;IAhEuB,OAAO,EAChD,SAAS,CAAC,0BAA0B,CAAC,GACrC,SAAS,CAAC;IAEJ,QAAQ;cAA4B,MAAM;eAAS,GAAG;OAAM;IAItE,OAAO,SAAuD;IAGrD,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,YAAY,SAAqB;IAI1C,WAAW,SAAyB;IAG3B,KAAK,SAAO;IAGZ,SAAS,UAAS;IAI3B,UAAU,UAAS;IAGnB,iBAAiB,EAAE,MAAM,CAAY;IAIrC,SAAS,SAAoC;IAI7C,WAAW,UAAS;IAIpB,oBAAoB,SAAK;IAIzB,UAAU,EAAE,UAAU,GAAG,OAAO,GAAG,IAAI,CAAQ;IAI/C,QAAQ,EAAE,OAAO,CAAS;IAEjB,eAAe,EAAE,GAAG,GAAG,SAAS,CAAC;IAE1C,QAAQ,UAA4B;IAEpC,SAAS,EAAE,GAAG,CAAC;IACf,SAAS,UAAS;IAClB,kBAAkB,UAAS;IAC3B,mBAAmB,mBAAqB;IACxC,eAAe,EAAE,GAAG,EAAE,CAAM;IAE5B,QAAQ,UAAS;gBAEG,EAAE,EAAE,UAAU;IAElC,SAAS,aAEP;IAIF,QAAQ;IAER,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,IAAI;IAS1B,gBAAgB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAQ/B,iBAAiB,CAAC,EAAE,EAAE,GAAG,GAAG,IAAI;IAIhC,IAAI,QAAQ,IAAI,OAAO,CAMtB;IAED,QAAQ,CAAC,QAAQ,EAAE,WAAW,GAAG,gBAAgB,GAAG,IAAI;IAKxD,gBAAgB,CAAC,CAAC,UAAU,EAAE,OAAO,GAAG,IAAI;IAS5C,SAAS,CAAC,KAAK,UAAQ;IAUvB,WAAW;IAyBX,QAAQ,CAAC,MAAM,CAAC,EAAE,GAAG;IAyCrB,IAAI,aAAa,WAOhB;IAGD,IAAI,kBAAkB,IAAI;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,EAAE,CAyB3D;IAED,OAAO,CAAC,YAAY;IAiBpB,OAAO,CAAC,iBAAiB;IAazB,OAAO,CAAC,uBAAuB;IAuB/B,IAAI,uBAAuB,IAAI,MAAM,CAcpC;IAED,UAAU,CAAC,MAAM,EAAE,GAAG;IAOtB,UAAU,CAAC,KAAK,EAAE,GAAG;IAKrB,QAAQ,CAAC,KAAK,EAAE,GAAG;IAYnB,QAAQ;IAKR,UAAU;IAOV,SAAS;IAMT,aAAa,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,GAAG,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,eAAe,EAAE,GAAG,CAAA;KAAE;IAoBzE,OAAO,CAAC,gBAAgB;IA0BxB,OAAO,CAAC,aAAa;yCApYV,oBAAoB;2CAApB,oBAAoB;CAyYhC"}
|
|
@@ -38,6 +38,7 @@ export declare class TabsComponent implements OnChanges, AfterViewInit {
|
|
|
38
38
|
* @param {boolean} noBorder
|
|
39
39
|
*/
|
|
40
40
|
noBorder: boolean;
|
|
41
|
+
autoScroll: boolean;
|
|
41
42
|
/**
|
|
42
43
|
* Evento de click no botão ou link do componente
|
|
43
44
|
* @param {EventEmitter<void>} handleClick
|
|
@@ -64,12 +65,12 @@ export declare class TabsComponent implements OnChanges, AfterViewInit {
|
|
|
64
65
|
/**
|
|
65
66
|
* @ignore
|
|
66
67
|
*/
|
|
67
|
-
eventSubmit(): void;
|
|
68
|
+
eventSubmit(link?: any): void;
|
|
68
69
|
/**
|
|
69
70
|
* @ignore
|
|
70
71
|
*/
|
|
71
72
|
handleActive(timer?: number, buttonClick?: boolean): void;
|
|
72
73
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
73
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "wco-navtabs", never, { "type": { "alias": "type"; "required": false; }; "full": { "alias": "full"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "enabledResponsive": { "alias": "enabled-responsive"; "required": false; }; "setListOptions": { "alias": "listOptions"; "required": false; }; "noBorder": { "alias": "no-border"; "required": false; }; }, { "handleClick": "handleClick"; }, never, ["*"], true, never>;
|
|
74
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TabsComponent, "wco-navtabs", never, { "type": { "alias": "type"; "required": false; }; "full": { "alias": "full"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "enabledResponsive": { "alias": "enabled-responsive"; "required": false; }; "setListOptions": { "alias": "listOptions"; "required": false; }; "noBorder": { "alias": "no-border"; "required": false; }; "autoScroll": { "alias": "autoScroll"; "required": false; }; }, { "handleClick": "handleClick"; }, never, ["*"], true, never>;
|
|
74
75
|
}
|
|
75
76
|
//# sourceMappingURL=tabs.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tabs.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/tabs/tabs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAU,aAAa,EAAkD,MAAM,eAAe,CAAC;AAE5K,OAAO,EAAE,MAAM,EAA+B,MAAM,iBAAiB,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;;AAE9C,qBAWa,aAAe,YAAW,SAAS,EAAE,aAAa;
|
|
1
|
+
{"version":3,"file":"tabs.component.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-components/src/lib/tabs/tabs.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,YAAY,EAAS,SAAS,EAAU,aAAa,EAAkD,MAAM,eAAe,CAAC;AAE5K,OAAO,EAAE,MAAM,EAA+B,MAAM,iBAAiB,CAAC;AACtE,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;;AAE9C,qBAWa,aAAe,YAAW,SAAS,EAAE,aAAa;IAkF3D,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,EAAE;IAlFZ;;MAEE;IAEK,OAAO,EAAG,UAAU,CAAC;IAE5B;;;MAGE;IAEK,IAAI,EAAE,QAAQ,GAAG,KAAK,CAAY;IAEzC;;;MAGE;IAEK,IAAI,EAAE,OAAO,CAAS;IAE7B;;;MAGE;IAEK,QAAQ,SAAK;IAEpB;;OAEG;IAEI,iBAAiB,EAAE,OAAO,CAAQ;IAEzC;;;MAGE;IACF,IACW,cAAc,CAAC,KAAK,EAAE,cAAc,EAAE,EAUhD;IAGD;;;MAGE;IAEK,QAAQ,EAAE,OAAO,CAAS;IAEZ,UAAU,EAAE,OAAO,CAAQ;IAGhD;;;;MAIE;IAEK,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAAsB;IAE5D;;MAEE;IACK,KAAK,EAAE,cAAc,EAAE,CAAM;IAGpC;;MAEE;IACK,QAAQ,UAAS;gBAGL,MAAM,EAAE,MAAM,EACvB,EAAE,EAAE,UAAU;IASxB;;MAEE;IACD,WAAW,CAAC,OAAO,EAAE,aAAa;IAOnC;;MAEE;IACK,eAAe,IAAI,IAAI;IAI9B;;MAEE;IACK,WAAW,CAAC,IAAI,GAAE,GAAQ,GAAG,IAAI;IAIxC;;MAEE;IACK,YAAY,CAAC,KAAK,SAAM,EAAE,WAAW,UAAO,GAAG,IAAI;yCAvH/C,aAAa;2CAAb,aAAa;CA4JzB"}
|