@praxisui/dynamic-fields 9.0.4-rc.10 → 9.0.4-rc.12
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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-03T03:05:05.334Z",
|
|
4
4
|
"packageName": "@praxisui/dynamic-fields",
|
|
5
|
-
"packageVersion": "9.0.4-rc.
|
|
5
|
+
"packageVersion": "9.0.4-rc.12",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 76,
|
|
@@ -143,6 +143,7 @@ const PRAXIS_DYNAMIC_FIELDS_EN_US = {
|
|
|
143
143
|
'praxis.dynamicFields.actions.clear.tooltip': 'Clear',
|
|
144
144
|
'praxis.dynamicFields.actions.clear.ariaLabel': 'Clear field',
|
|
145
145
|
'praxis.dynamicFields.actions.clear.ariaLabelWithLabel': 'Clear {{label}}',
|
|
146
|
+
'praxis.dynamicFields.datePicker.openCalendarAriaLabel': 'Open calendar',
|
|
146
147
|
'praxis.dynamicFields.help.ariaLabel': 'Help',
|
|
147
148
|
'praxis.dynamicFields.help.ariaLabelWithLabel': 'Help: {{label}}',
|
|
148
149
|
'praxis.dynamicFields.fileUpload.emptySummary': 'No file selected',
|
|
@@ -546,6 +547,7 @@ const PRAXIS_DYNAMIC_FIELDS_PT_BR = {
|
|
|
546
547
|
'praxis.dynamicFields.actions.clear.tooltip': 'Limpar',
|
|
547
548
|
'praxis.dynamicFields.actions.clear.ariaLabel': 'Limpar campo',
|
|
548
549
|
'praxis.dynamicFields.actions.clear.ariaLabelWithLabel': 'Limpar {{label}}',
|
|
550
|
+
'praxis.dynamicFields.datePicker.openCalendarAriaLabel': 'Abrir calendário',
|
|
549
551
|
'praxis.dynamicFields.help.ariaLabel': 'Ajuda',
|
|
550
552
|
'praxis.dynamicFields.help.ariaLabelWithLabel': 'Ajuda: {{label}}',
|
|
551
553
|
'praxis.dynamicFields.fileUpload.emptySummary': 'Nenhum arquivo selecionado',
|
|
@@ -2519,6 +2521,12 @@ class SimpleBaseInputComponent {
|
|
|
2519
2521
|
}
|
|
2520
2522
|
return this.resolveDynamicFieldsMessage(tooltip, 'actions.clear.tooltip', 'Limpar');
|
|
2521
2523
|
}
|
|
2524
|
+
openCalendarAriaLabel() {
|
|
2525
|
+
const fallback = this.i18n.getLocale().toLowerCase().startsWith('en')
|
|
2526
|
+
? 'Open calendar'
|
|
2527
|
+
: 'Abrir calendário';
|
|
2528
|
+
return this.tDynamicFields('datePicker.openCalendarAriaLabel', fallback);
|
|
2529
|
+
}
|
|
2522
2530
|
clearActionAriaLabel() {
|
|
2523
2531
|
const clearButton = this.metadata()?.clearButton;
|
|
2524
2532
|
const contextualLabel = this.resolveClearActionContextLabel();
|
|
@@ -7565,7 +7573,11 @@ class MaterialDateRangeComponent extends SimpleBaseInputComponent {
|
|
|
7565
7573
|
/>
|
|
7566
7574
|
</mat-date-range-input>
|
|
7567
7575
|
|
|
7568
|
-
<mat-datepicker-toggle
|
|
7576
|
+
<mat-datepicker-toggle
|
|
7577
|
+
matSuffix
|
|
7578
|
+
[for]="picker"
|
|
7579
|
+
[aria-label]="openCalendarAriaLabel()"
|
|
7580
|
+
></mat-datepicker-toggle>
|
|
7569
7581
|
|
|
7570
7582
|
@if (metadata()?.suffixIcon) {
|
|
7571
7583
|
<mat-icon
|
|
@@ -7711,7 +7723,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
7711
7723
|
/>
|
|
7712
7724
|
</mat-date-range-input>
|
|
7713
7725
|
|
|
7714
|
-
<mat-datepicker-toggle
|
|
7726
|
+
<mat-datepicker-toggle
|
|
7727
|
+
matSuffix
|
|
7728
|
+
[for]="picker"
|
|
7729
|
+
[aria-label]="openCalendarAriaLabel()"
|
|
7730
|
+
></mat-datepicker-toggle>
|
|
7715
7731
|
|
|
7716
7732
|
@if (metadata()?.suffixIcon) {
|
|
7717
7733
|
<mat-icon
|
|
@@ -8085,7 +8101,11 @@ class MaterialDatepickerComponent extends SimpleBaseInputComponent {
|
|
|
8085
8101
|
[matTooltipPosition]="tooltipPosition()"
|
|
8086
8102
|
/>
|
|
8087
8103
|
|
|
8088
|
-
<mat-datepicker-toggle
|
|
8104
|
+
<mat-datepicker-toggle
|
|
8105
|
+
matSuffix
|
|
8106
|
+
[for]="picker"
|
|
8107
|
+
[aria-label]="openCalendarAriaLabel()"
|
|
8108
|
+
></mat-datepicker-toggle>
|
|
8089
8109
|
|
|
8090
8110
|
@if (metadata()?.suffixIcon) {
|
|
8091
8111
|
<mat-icon
|
|
@@ -8189,7 +8209,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.14", ngImpo
|
|
|
8189
8209
|
[matTooltipPosition]="tooltipPosition()"
|
|
8190
8210
|
/>
|
|
8191
8211
|
|
|
8192
|
-
<mat-datepicker-toggle
|
|
8212
|
+
<mat-datepicker-toggle
|
|
8213
|
+
matSuffix
|
|
8214
|
+
[for]="picker"
|
|
8215
|
+
[aria-label]="openCalendarAriaLabel()"
|
|
8216
|
+
></mat-datepicker-toggle>
|
|
8193
8217
|
|
|
8194
8218
|
@if (metadata()?.suffixIcon) {
|
|
8195
8219
|
<mat-icon
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "9.0.4-rc.
|
|
3
|
+
"version": "9.0.4-rc.12",
|
|
4
4
|
"description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
13
|
"rxjs": "^7.8.0",
|
|
14
|
-
"@praxisui/core": "^9.0.4-rc.
|
|
15
|
-
"@praxisui/cron-builder": "^9.0.4-rc.
|
|
14
|
+
"@praxisui/core": "^9.0.4-rc.12",
|
|
15
|
+
"@praxisui/cron-builder": "^9.0.4-rc.12"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|
|
@@ -843,6 +843,7 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
843
843
|
params?: Record<string, any>;
|
|
844
844
|
} | null | undefined, keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
845
845
|
protected clearActionTooltip(): string | null;
|
|
846
|
+
protected openCalendarAriaLabel(): string;
|
|
846
847
|
protected clearActionAriaLabel(): string;
|
|
847
848
|
private resolveClearActionContextLabel;
|
|
848
849
|
private interpolateValidationMessage;
|