@po-ui/ng-templates 18.8.0 → 18.10.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/components/po-page-change-password/po-page-change-password-base.component.mjs +17 -2
- package/esm2022/lib/components/po-page-change-password/po-page-change-password.component.mjs +8 -8
- package/esm2022/lib/components/po-page-dynamic-table/po-page-dynamic-table.component.mjs +4 -1
- package/esm2022/lib/components/po-page-login/po-page-login-base.component.mjs +5 -5
- package/fesm2022/po-ui-ng-templates.mjs +30 -12
- package/fesm2022/po-ui-ng-templates.mjs.map +1 -1
- package/lib/components/po-page-change-password/po-page-change-password-base.component.d.ts +13 -1
- package/lib/components/po-page-login/po-page-login-base.component.d.ts +2 -2
- package/package.json +4 -4
- package/po-ui-ng-templates-18.10.0.tgz +0 -0
- package/schematics/ng-add/index.js +1 -1
- package/po-ui-ng-templates-18.8.0.tgz +0 -0
|
@@ -227,7 +227,19 @@ export declare abstract class PoPageChangePasswordBaseComponent {
|
|
|
227
227
|
*/
|
|
228
228
|
set urlHome(value: string);
|
|
229
229
|
get urlHome(): string;
|
|
230
|
+
/**
|
|
231
|
+
* @optional
|
|
232
|
+
*
|
|
233
|
+
* @description
|
|
234
|
+
*
|
|
235
|
+
* Define a propriedade nativa `autocomplete` do campo como `off`.
|
|
236
|
+
*
|
|
237
|
+
* > No input de senha(`po-password`) será definido como `new-password`.
|
|
238
|
+
*
|
|
239
|
+
* @default `true`
|
|
240
|
+
*/
|
|
241
|
+
noAutocompletePassword: boolean;
|
|
230
242
|
abstract navigateTo(url: string): void;
|
|
231
243
|
static ɵfac: i0.ɵɵFactoryDeclaration<PoPageChangePasswordBaseComponent, never>;
|
|
232
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageChangePasswordBaseComponent, never, never, { "logo": { "alias": "p-logo"; "required": false; }; "secondaryLogo": { "alias": "p-secondary-logo"; "required": false; }; "token": { "alias": "p-token"; "required": false; }; "urlBack": { "alias": "p-url-back"; "required": false; }; "urlNewPassword": { "alias": "p-url-new-password"; "required": false; }; "hideCurrentPassword": { "alias": "p-hide-current-password"; "required": false; }; "recovery": { "alias": "p-recovery"; "required": false; }; "requirements": { "alias": "p-requirements"; "required": false; }; "urlHome": { "alias": "p-url-home"; "required": false; }; }, { "submit": "p-submit"; }, never, never, false, never>;
|
|
244
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PoPageChangePasswordBaseComponent, never, never, { "logo": { "alias": "p-logo"; "required": false; }; "secondaryLogo": { "alias": "p-secondary-logo"; "required": false; }; "token": { "alias": "p-token"; "required": false; }; "urlBack": { "alias": "p-url-back"; "required": false; }; "urlNewPassword": { "alias": "p-url-new-password"; "required": false; }; "hideCurrentPassword": { "alias": "p-hide-current-password"; "required": false; }; "recovery": { "alias": "p-recovery"; "required": false; }; "requirements": { "alias": "p-requirements"; "required": false; }; "urlHome": { "alias": "p-url-home"; "required": false; }; "noAutocompletePassword": { "alias": "p-no-autocomplete-password"; "required": false; }; }, { "submit": "p-submit"; }, never, never, false, never>;
|
|
233
245
|
}
|
|
@@ -172,7 +172,7 @@ export declare abstract class PoPageLoginBaseComponent implements OnDestroy {
|
|
|
172
172
|
*
|
|
173
173
|
* Define a propriedade nativa `autocomplete` do campo como `off`.
|
|
174
174
|
*
|
|
175
|
-
* @default `
|
|
175
|
+
* @default `true`
|
|
176
176
|
*/
|
|
177
177
|
noAutocompleteLogin: boolean;
|
|
178
178
|
/**
|
|
@@ -184,7 +184,7 @@ export declare abstract class PoPageLoginBaseComponent implements OnDestroy {
|
|
|
184
184
|
*
|
|
185
185
|
* > No componente `po-password` será definido como `new-password`.
|
|
186
186
|
*
|
|
187
|
-
* @default `
|
|
187
|
+
* @default `true`
|
|
188
188
|
*/
|
|
189
189
|
noAutocompletePassword: boolean;
|
|
190
190
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@po-ui/ng-templates",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.10.0",
|
|
4
4
|
"description": "PO UI - Templates",
|
|
5
5
|
"author": "PO UI",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
},
|
|
12
12
|
"schematics": "./schematics/collection.json",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@po-ui/ng-components": "18.
|
|
15
|
-
"@po-ui/ng-schematics": "18.
|
|
14
|
+
"@po-ui/ng-components": "18.10.0",
|
|
15
|
+
"@po-ui/ng-schematics": "18.10.0",
|
|
16
16
|
"tslib": "^2.6.2"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@angular/platform-browser": "^18",
|
|
25
25
|
"@angular/platform-browser-dynamic": "^18",
|
|
26
26
|
"@angular/router": "^18",
|
|
27
|
-
"@po-ui/ng-components": "18.
|
|
27
|
+
"@po-ui/ng-components": "18.10.0",
|
|
28
28
|
"rxjs": "~7.8.1",
|
|
29
29
|
"zone.js": "~0.14.4"
|
|
30
30
|
},
|
|
Binary file
|
|
@@ -23,7 +23,7 @@ function default_1(options) {
|
|
|
23
23
|
exports.default = default_1;
|
|
24
24
|
function addPoPackageAndInstall() {
|
|
25
25
|
return (tree, context) => {
|
|
26
|
-
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-templates', '18.
|
|
26
|
+
(0, package_config_1.addPackageToPackageJson)(tree, '@po-ui/ng-templates', '18.10.0');
|
|
27
27
|
// install packages
|
|
28
28
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
29
29
|
};
|
|
Binary file
|