Releases: ruslan-kurchenko/lwc-polyglot
Releases · ruslan-kurchenko/lwc-polyglot
v0.2
- Significantly improved performance by resolving all labels in bulk on Apex + Visualforce Dynamic Component
- Implemented complete exception-safe execution. The system resolves up to 100 invalid custom label names. In case of more than 100 invalid custom label names - a special exception message returned for all other labels.
- Changes to the structure of the result of custom label resolve operation
The new format of the result of getCustomLabels
method:
{
"success": false,
"messages": {
"InvalidName": "Field $Label.InvalidName does not exist. Check spelling"
},
"labels": {
"InvalidName": "InvalidName",
"Greetings": "Hello!"
}
}
v0.1
Initial release with a base functionality to resolve Custom Labels values by names in LWC