-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This release fixes a bug that caused the Record Type screen component to have non-deterministic sort order (most likely in order of the Record Types getting created). With this release, changes are made so that the component shows the record types in alphabetical order based on Label/Name. Some other syntax cleanup and other non-functional changes were made to prepare for more configuration options and enhancements moving forward. * updated scratch org settings * cleanup WIP * cleaner syntax for boolean conversion * removed unnecessary semicolons * changing public apis to getters with private props * cleaning up syntax * implementing a default sort: ascending by name * add linting to project * cleaning up syntax * rename scratch def file * additional test recordtype * clean syntax * new release 0.5 package IDs
- Loading branch information
Showing
14 changed files
with
16,394 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
**/lwc/**/*.css | ||
**/lwc/**/*.html | ||
**/lwc/**/*.json | ||
**/lwc/**/*.svg | ||
**/lwc/**/*.xml | ||
**/aura/**/*.auradoc | ||
**/aura/**/*.cmp | ||
**/aura/**/*.css | ||
**/aura/**/*.design | ||
**/aura/**/*.evt | ||
**/aura/**/*.json | ||
**/aura/**/*.svg | ||
**/aura/**/*.tokens | ||
**/aura/**/*.xml | ||
**/aura/**/*.app | ||
.sfdx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 6 additions & 5 deletions
11
config/project-scratch-installtesting.json → config/installorg-scratch-def.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
{ | ||
"orgName": "RecordType Picker Install Testing", | ||
"edition": "Enterprise", | ||
"features": [] | ||
} | ||
{ | ||
"orgName": "RecordType Picker Install Testing", | ||
"edition": "Enterprise", | ||
"features": [], | ||
"hasSampleData": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
{ | ||
"orgName": "RecordType Picker Development", | ||
"edition": "Developer", | ||
"features": [] | ||
"features": [], | ||
"settings": { | ||
"userManagementSettings": { | ||
"enableEnhancedPermsetMgmt": true, | ||
"enableEnhancedProfileMgmt": true, | ||
"enableNewProfileUI": true | ||
} | ||
} | ||
} |
Oops, something went wrong.