@po-ui/ng-components 5.21.0 → 5.22.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/bundles/po-ui-ng-components.umd.js +19 -9
- package/bundles/po-ui-ng-components.umd.js.map +1 -1
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.js +1 -1
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields-base.component.js +2 -2
- package/esm2015/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-fields/po-dynamic-form-fields.component.js +2 -2
- package/esm2015/lib/components/po-field/po-datepicker/po-datepicker.component.js +4 -3
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.js +1 -1
- package/esm2015/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.js +12 -5
- package/esm2015/lib/components/po-field/po-multiselect/po-multiselect-base.component.js +6 -4
- package/fesm2015/po-ui-ng-components.js +19 -9
- package/fesm2015/po-ui-ng-components.js.map +1 -1
- package/lib/components/po-dynamic/po-dynamic-form/po-dynamic-form-field.interface.d.ts +0 -2
- package/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.d.ts +2 -1
- package/package.json +4 -4
- package/po-ui-ng-components-5.22.0.tgz +0 -0
- package/po-ui-ng-components.metadata.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v3/index.js +1 -1
- package/schematics/ng-update/v4/index.js +1 -1
- package/schematics/ng-update/v5/index.js +1 -1
- package/po-ui-ng-components-5.21.0.tgz +0 -0
|
@@ -35,8 +35,6 @@ export interface PoDynamicFormField extends PoDynamicField {
|
|
|
35
35
|
options?: Array<string> | Array<PoSelectOption> | Array<PoMultiselectOption>;
|
|
36
36
|
/**
|
|
37
37
|
* Permite que o usuário faça múltipla seleção dentro da lista de opções.
|
|
38
|
-
*
|
|
39
|
-
* > Caso utilizar a propriedade `optionsService` esta propriedade será ignorada.
|
|
40
38
|
*/
|
|
41
39
|
optionsMulti?: boolean;
|
|
42
40
|
/**
|
|
@@ -35,6 +35,7 @@ export declare class PoDatepickerRangeComponent extends PoDatepickerRangeBaseCom
|
|
|
35
35
|
private changeDetector;
|
|
36
36
|
private controlPosition;
|
|
37
37
|
private renderer;
|
|
38
|
+
private cd;
|
|
38
39
|
dateRangeField: ElementRef;
|
|
39
40
|
endDateInput: ElementRef;
|
|
40
41
|
startDateInput: ElementRef;
|
|
@@ -54,7 +55,7 @@ export declare class PoDatepickerRangeComponent extends PoDatepickerRangeBaseCom
|
|
|
54
55
|
get isDirtyDateRangeInput(): boolean;
|
|
55
56
|
get startDateInputName(): string;
|
|
56
57
|
get startDateInputValue(): string;
|
|
57
|
-
constructor(changeDetector: ChangeDetectorRef, controlPosition: PoControlPositionService, renderer: Renderer2, poDateService: PoDateService, poDatepickerRangeElement: ElementRef, poLanguageService: PoLanguageService);
|
|
58
|
+
constructor(changeDetector: ChangeDetectorRef, controlPosition: PoControlPositionService, renderer: Renderer2, cd: ChangeDetectorRef, poDateService: PoDateService, poDatepickerRangeElement: ElementRef, poLanguageService: PoLanguageService);
|
|
58
59
|
static getKeyCode(event: KeyboardEvent): number;
|
|
59
60
|
static getTargetElement(event: any): any;
|
|
60
61
|
static isValidKey(keyCode: number): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-components",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.22.0",
|
|
4
4
|
"tag": "next",
|
|
5
5
|
"description": "PO UI - Components",
|
|
6
6
|
"author": "PO UI",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
]
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@po-ui/style": "5.
|
|
25
|
-
"@po-ui/ng-schematics": "5.
|
|
24
|
+
"@po-ui/style": "5.22.0",
|
|
25
|
+
"@po-ui/ng-schematics": "5.22.0",
|
|
26
26
|
"tslib": "^2.1.0"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@angular/platform-browser": "^12.0.1",
|
|
35
35
|
"@angular/platform-browser-dynamic": "^12.0.1",
|
|
36
36
|
"@angular/router": "^12.0.1",
|
|
37
|
-
"@po-ui/style": "5.
|
|
37
|
+
"@po-ui/style": "5.22.0",
|
|
38
38
|
"rxjs": "~6.6.0",
|
|
39
39
|
"zone.js": "~0.11.4"
|
|
40
40
|
},
|
|
Binary file
|