@po-ui/ng-components 21.0.0 → 21.1.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/fesm2022/po-ui-ng-components.mjs +78 -94
- package/fesm2022/po-ui-ng-components.mjs.map +1 -1
- package/lib/components/po-field/po-combo/po-combo-base.component.d.ts +1 -0
- package/lib/components/po-field/po-number/po-number.component.d.ts +2 -3
- package/lib/components/po-field/po-select/po-select.component.d.ts +2 -3
- package/lib/components/po-helper/po-helper.component.d.ts +2 -0
- package/lib/components/po-popover/po-popover-base.component.d.ts +3 -0
- package/package.json +4 -4
- package/po-ui-ng-components-21.1.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-update/v14/index.js +1 -1
- package/schematics/ng-update/v15/index.js +1 -1
- package/schematics/ng-update/v16/index.js +1 -1
- package/schematics/ng-update/v17/index.js +1 -1
- package/schematics/ng-update/v18/index.js +2 -2
- package/schematics/ng-update/v19/index.js +2 -2
- package/schematics/ng-update/v2/index.js +1 -1
- package/schematics/ng-update/v20/index.js +2 -2
- package/schematics/ng-update/v21/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/schematics/ng-update/v6/index.js +1 -1
- package/types/po-ui-ng-components.d.ts +9 -5
- package/po-ui-ng-components-21.0.0.tgz +0 -0
|
@@ -648,6 +648,7 @@ export declare abstract class PoComboBaseComponent implements ControlValueAccess
|
|
|
648
648
|
private compareOptions;
|
|
649
649
|
private getValueUpdate;
|
|
650
650
|
private getValueWrite;
|
|
651
|
+
private normalizeModelIfNeeded;
|
|
651
652
|
private hasDuplicatedOption;
|
|
652
653
|
private listingComboOptions;
|
|
653
654
|
private sortOptions;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { PoNumberBaseComponent } from './po-number-base.component';
|
|
4
4
|
/**
|
|
@@ -27,7 +27,7 @@ import { PoNumberBaseComponent } from './po-number-base.component';
|
|
|
27
27
|
* <file name="sample-po-number-calculate/sample-po-number-calculate.component.ts"> </file>
|
|
28
28
|
* </example>
|
|
29
29
|
*/
|
|
30
|
-
export declare class PoNumberComponent extends PoNumberBaseComponent implements
|
|
30
|
+
export declare class PoNumberComponent extends PoNumberBaseComponent implements OnChanges {
|
|
31
31
|
/**
|
|
32
32
|
* @optional
|
|
33
33
|
*
|
|
@@ -64,7 +64,6 @@ export declare class PoNumberComponent extends PoNumberBaseComponent implements
|
|
|
64
64
|
id: string;
|
|
65
65
|
constructor();
|
|
66
66
|
onWheel(event: Event): void;
|
|
67
|
-
ngAfterViewInit(): void;
|
|
68
67
|
ngOnChanges(changes: SimpleChanges): void;
|
|
69
68
|
extraValidation(abstractControl: AbstractControl): {
|
|
70
69
|
[key: string]: any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges
|
|
1
|
+
import { ElementRef, EventEmitter, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { AbstractControl } from '@angular/forms';
|
|
3
3
|
import { PoFieldValidateModel } from '../po-field-validate.model';
|
|
4
4
|
import { PoSelectOptionGroup } from './po-select-option-group.interface';
|
|
@@ -72,7 +72,7 @@ import { PoHelperComponent, PoHelperOptions } from '../../po-helper';
|
|
|
72
72
|
* | `--background-color-disabled` | Cor de background no estado disabled | `var(--color-neutral-light-20)` |
|
|
73
73
|
*
|
|
74
74
|
*/
|
|
75
|
-
export declare class PoSelectComponent extends PoFieldValidateModel<any> implements
|
|
75
|
+
export declare class PoSelectComponent extends PoFieldValidateModel<any> implements OnChanges {
|
|
76
76
|
private el;
|
|
77
77
|
renderer: Renderer2;
|
|
78
78
|
selectElement: ElementRef;
|
|
@@ -234,7 +234,6 @@ export declare class PoSelectComponent extends PoFieldValidateModel<any> impleme
|
|
|
234
234
|
labelTextWrap: import("@angular/core").InputSignal<boolean>;
|
|
235
235
|
constructor();
|
|
236
236
|
ngOnChanges(changes: SimpleChanges): void;
|
|
237
|
-
ngAfterViewInit(): void;
|
|
238
237
|
/**
|
|
239
238
|
* Função que atribui foco ao componente.
|
|
240
239
|
*
|
|
@@ -79,6 +79,8 @@ export declare class PoPopoverBaseComponent {
|
|
|
79
79
|
title?: string;
|
|
80
80
|
/** Evento disparado ao fechar o popover. */
|
|
81
81
|
closePopover: EventEmitter<any>;
|
|
82
|
+
/** Evento disparado ao abrir o popover. */
|
|
83
|
+
openPopover: EventEmitter<any>;
|
|
82
84
|
isHidden: boolean;
|
|
83
85
|
protected clickoutListener: () => void;
|
|
84
86
|
protected mouseEnterListener: () => void;
|
|
@@ -134,6 +136,7 @@ export declare class PoPopoverBaseComponent {
|
|
|
134
136
|
* Valores válidos:
|
|
135
137
|
* - `click`: Abre ao clicar no componente alvo.
|
|
136
138
|
* - `hover`: Abre ao passar o mouse sobre o componente alvo.
|
|
139
|
+
* - `function`: Abre através de funções públicas do componente.
|
|
137
140
|
*
|
|
138
141
|
* @default click
|
|
139
142
|
* @optional
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-components",
|
|
3
|
-
"version": "21.
|
|
3
|
+
"version": "21.1.0",
|
|
4
4
|
"description": "PO UI - Components",
|
|
5
5
|
"author": "PO UI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@angular/cdk": "~21.0.3",
|
|
25
|
-
"@po-ui/style": "21.
|
|
26
|
-
"@po-ui/ng-schematics": "21.
|
|
25
|
+
"@po-ui/style": "21.1.0",
|
|
26
|
+
"@po-ui/ng-schematics": "21.1.0",
|
|
27
27
|
"echarts": "^5.6.0",
|
|
28
28
|
"tslib": "^2.6.2"
|
|
29
29
|
},
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@angular/platform-browser-dynamic": "^21",
|
|
39
39
|
"@angular/router": "^21",
|
|
40
40
|
"@angular-devkit/schematics": "^21",
|
|
41
|
-
"@po-ui/style": "21.
|
|
41
|
+
"@po-ui/style": "21.1.0",
|
|
42
42
|
"rxjs": "~7.8.1",
|
|
43
43
|
"zone.js": "~0.15.0"
|
|
44
44
|
},
|
|
Binary file
|
|
@@ -18,7 +18,7 @@ function default_1(options) {
|
|
|
18
18
|
}
|
|
19
19
|
function addPoPackageAndInstall() {
|
|
20
20
|
return (tree, context) => {
|
|
21
|
-
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '21.
|
|
21
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-components', '21.1.0');
|
|
22
22
|
// install packages
|
|
23
23
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
24
24
|
};
|
|
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
6
6
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
7
7
|
const changes_1 = require("./changes");
|
|
8
8
|
function default_1() {
|
|
9
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
@@ -11,7 +11,7 @@ const changes_1 = require("./changes");
|
|
|
11
11
|
const httpClientModuleName = 'HttpClientModule';
|
|
12
12
|
const httpClientModuleSourcePath = '@angular/common/http';
|
|
13
13
|
function default_1() {
|
|
14
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
14
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
15
15
|
}
|
|
16
16
|
function postUpdate() {
|
|
17
17
|
return (_, context) => {
|
|
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
6
6
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
7
7
|
const changes_1 = require("./changes");
|
|
8
8
|
function default_1() {
|
|
9
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
6
6
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
7
7
|
const changes_1 = require("./changes");
|
|
8
8
|
function default_1() {
|
|
9
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
@@ -40,11 +40,11 @@ function main(options) {
|
|
|
40
40
|
configureNewIcon.toLowerCase() === 'y' ||
|
|
41
41
|
configureNewIcon.toLowerCase() === 'sim' ||
|
|
42
42
|
configureNewIcon.toLowerCase() === '') {
|
|
43
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('21.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion),
|
|
48
48
|
addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
|
|
49
49
|
addProviderToAppModule(options, newProviderDictionary),
|
|
50
50
|
updateAppConfigFileRule(),
|
|
@@ -40,11 +40,11 @@ function main(options) {
|
|
|
40
40
|
configureNewIcon.toLowerCase() === 'y' ||
|
|
41
41
|
configureNewIcon.toLowerCase() === 'sim' ||
|
|
42
42
|
configureNewIcon.toLowerCase() === '') {
|
|
43
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('21.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion),
|
|
48
48
|
addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
|
|
49
49
|
addProviderToAppModule(options, newProviderDictionary),
|
|
50
50
|
updateAppConfigFileRule(),
|
|
@@ -10,7 +10,7 @@ const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
|
10
10
|
const changes_1 = require("./changes");
|
|
11
11
|
function updateToV2() {
|
|
12
12
|
return (0, schematics_1.chain)([
|
|
13
|
-
updatePackageJson('21.
|
|
13
|
+
updatePackageJson('21.1.0', changes_1.dependeciesChanges),
|
|
14
14
|
(0, replace_1.replaceInFile)('tslint.json', changes_1.tsLintReplaces),
|
|
15
15
|
(0, replace_1.replaceInFile)('angular.json', changes_1.angularJsonReplaces),
|
|
16
16
|
createUpgradeRule(),
|
|
@@ -40,11 +40,11 @@ function main(options) {
|
|
|
40
40
|
configureNewIcon.toLowerCase() === 'y' ||
|
|
41
41
|
configureNewIcon.toLowerCase() === 'sim' ||
|
|
42
42
|
configureNewIcon.toLowerCase() === '') {
|
|
43
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
43
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
44
44
|
}
|
|
45
45
|
else {
|
|
46
46
|
return (0, schematics_1.chain)([
|
|
47
|
-
(0, package_config_1.updatePackageJson)('21.
|
|
47
|
+
(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion),
|
|
48
48
|
addImportOnly(options, [IconsDictionaryName, poIconDictionary], poModuleSourcePath),
|
|
49
49
|
addProviderToAppModule(options, newProviderDictionary),
|
|
50
50
|
updateAppConfigFileRule(),
|
|
@@ -9,7 +9,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
9
9
|
const changes_1 = require("./changes");
|
|
10
10
|
function main() {
|
|
11
11
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
12
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
12
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
13
13
|
});
|
|
14
14
|
}
|
|
15
15
|
function default_1() {
|
|
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
7
7
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
8
8
|
const changes_1 = require("./changes");
|
|
9
9
|
function updateToV3() {
|
|
10
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
11
11
|
}
|
|
12
12
|
function postUpdate() {
|
|
13
13
|
return (_, context) => {
|
|
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
7
7
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
8
8
|
const changes_1 = require("./changes");
|
|
9
9
|
function default_1() {
|
|
10
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
11
11
|
}
|
|
12
12
|
function postUpdate() {
|
|
13
13
|
return (_, context) => {
|
|
@@ -7,7 +7,7 @@ const project_1 = require("@po-ui/ng-schematics/project");
|
|
|
7
7
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
8
8
|
const changes_1 = require("./changes");
|
|
9
9
|
function default_1() {
|
|
10
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
10
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), createUpgradeRule(), postUpdate()]);
|
|
11
11
|
}
|
|
12
12
|
function postUpdate() {
|
|
13
13
|
return (_, context) => {
|
|
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
6
6
|
const package_config_1 = require("@po-ui/ng-schematics/package-config");
|
|
7
7
|
const changes_1 = require("./changes");
|
|
8
8
|
function default_1() {
|
|
9
|
-
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.
|
|
9
|
+
return (0, schematics_1.chain)([(0, package_config_1.updatePackageJson)('21.1.0', changes_1.updateDepedenciesVersion), postUpdate()]);
|
|
10
10
|
}
|
|
11
11
|
function postUpdate() {
|
|
12
12
|
return (_, context) => {
|
|
@@ -2518,6 +2518,8 @@ declare class PoPopoverBaseComponent {
|
|
|
2518
2518
|
title?: string;
|
|
2519
2519
|
/** Evento disparado ao fechar o popover. */
|
|
2520
2520
|
closePopover: EventEmitter<any>;
|
|
2521
|
+
/** Evento disparado ao abrir o popover. */
|
|
2522
|
+
openPopover: EventEmitter<any>;
|
|
2521
2523
|
isHidden: boolean;
|
|
2522
2524
|
protected clickoutListener: () => void;
|
|
2523
2525
|
protected mouseEnterListener: () => void;
|
|
@@ -2573,6 +2575,7 @@ declare class PoPopoverBaseComponent {
|
|
|
2573
2575
|
* Valores válidos:
|
|
2574
2576
|
* - `click`: Abre ao clicar no componente alvo.
|
|
2575
2577
|
* - `hover`: Abre ao passar o mouse sobre o componente alvo.
|
|
2578
|
+
* - `function`: Abre através de funções públicas do componente.
|
|
2576
2579
|
*
|
|
2577
2580
|
* @default click
|
|
2578
2581
|
* @optional
|
|
@@ -2592,7 +2595,7 @@ declare class PoPopoverBaseComponent {
|
|
|
2592
2595
|
*/
|
|
2593
2596
|
customClasses: i0.InputSignal<string>;
|
|
2594
2597
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPopoverBaseComponent, never>;
|
|
2595
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PoPopoverBaseComponent, "po-popover-base", never, { "appendBox": { "alias": "p-append-in-body"; "required": false; }; "target": { "alias": "p-target"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "hideArrow": { "alias": "p-hide-arrow"; "required": false; }; "position": { "alias": "p-position"; "required": false; }; "trigger": { "alias": "p-trigger"; "required": false; }; "customClasses": { "alias": "p-custom-classes"; "required": false; "isSignal": true; }; }, { "closePopover": "p-close"; }, never, never, false, never>;
|
|
2598
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PoPopoverBaseComponent, "po-popover-base", never, { "appendBox": { "alias": "p-append-in-body"; "required": false; }; "target": { "alias": "p-target"; "required": false; }; "title": { "alias": "p-title"; "required": false; }; "hideArrow": { "alias": "p-hide-arrow"; "required": false; }; "position": { "alias": "p-position"; "required": false; }; "trigger": { "alias": "p-trigger"; "required": false; }; "customClasses": { "alias": "p-custom-classes"; "required": false; "isSignal": true; }; }, { "closePopover": "p-close"; "openPopover": "p-open"; }, never, never, false, never>;
|
|
2596
2599
|
static ngAcceptInputType_appendBox: any;
|
|
2597
2600
|
}
|
|
2598
2601
|
|
|
@@ -3323,6 +3326,8 @@ declare class PoHelperComponent extends PoHelperBaseComponent implements AfterVi
|
|
|
3323
3326
|
private handleEmitEvent;
|
|
3324
3327
|
closePopoverOnFocusOut(event: FocusEvent): void;
|
|
3325
3328
|
protected ariaLabel(): string;
|
|
3329
|
+
protected handleOpen(): void;
|
|
3330
|
+
protected handleClose(): void;
|
|
3326
3331
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoHelperComponent, never>;
|
|
3327
3332
|
static ɵcmp: i0.ɵɵComponentDeclaration<PoHelperComponent, "po-helper", never, {}, {}, never, never, false, never>;
|
|
3328
3333
|
}
|
|
@@ -12962,6 +12967,7 @@ declare abstract class PoComboBaseComponent implements ControlValueAccessor, OnI
|
|
|
12962
12967
|
private compareOptions;
|
|
12963
12968
|
private getValueUpdate;
|
|
12964
12969
|
private getValueWrite;
|
|
12970
|
+
private normalizeModelIfNeeded;
|
|
12965
12971
|
private hasDuplicatedOption;
|
|
12966
12972
|
private listingComboOptions;
|
|
12967
12973
|
private sortOptions;
|
|
@@ -17512,7 +17518,7 @@ declare abstract class PoNumberBaseComponent extends PoInputGeneric {
|
|
|
17512
17518
|
* <file name="sample-po-number-calculate/sample-po-number-calculate.component.ts"> </file>
|
|
17513
17519
|
* </example>
|
|
17514
17520
|
*/
|
|
17515
|
-
declare class PoNumberComponent extends PoNumberBaseComponent implements
|
|
17521
|
+
declare class PoNumberComponent extends PoNumberBaseComponent implements OnChanges {
|
|
17516
17522
|
/**
|
|
17517
17523
|
* @optional
|
|
17518
17524
|
*
|
|
@@ -17549,7 +17555,6 @@ declare class PoNumberComponent extends PoNumberBaseComponent implements AfterVi
|
|
|
17549
17555
|
id: string;
|
|
17550
17556
|
constructor();
|
|
17551
17557
|
onWheel(event: Event): void;
|
|
17552
|
-
ngAfterViewInit(): void;
|
|
17553
17558
|
ngOnChanges(changes: SimpleChanges): void;
|
|
17554
17559
|
extraValidation(abstractControl: AbstractControl): {
|
|
17555
17560
|
[key: string]: any;
|
|
@@ -20259,7 +20264,7 @@ declare abstract class PoFieldValidateModel<T> extends PoFieldModel<T> implement
|
|
|
20259
20264
|
* | `--background-color-disabled` | Cor de background no estado disabled | `var(--color-neutral-light-20)` |
|
|
20260
20265
|
*
|
|
20261
20266
|
*/
|
|
20262
|
-
declare class PoSelectComponent extends PoFieldValidateModel<any> implements
|
|
20267
|
+
declare class PoSelectComponent extends PoFieldValidateModel<any> implements OnChanges {
|
|
20263
20268
|
private el;
|
|
20264
20269
|
renderer: Renderer2;
|
|
20265
20270
|
selectElement: ElementRef;
|
|
@@ -20421,7 +20426,6 @@ declare class PoSelectComponent extends PoFieldValidateModel<any> implements Aft
|
|
|
20421
20426
|
labelTextWrap: i0.InputSignal<boolean>;
|
|
20422
20427
|
constructor();
|
|
20423
20428
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20424
|
-
ngAfterViewInit(): void;
|
|
20425
20429
|
/**
|
|
20426
20430
|
* Função que atribui foco ao componente.
|
|
20427
20431
|
*
|
|
Binary file
|