Skip to content

Commit

Permalink
New 4.3.0 Package
Browse files Browse the repository at this point in the history
  • Loading branch information
ericrsmith35 committed Jul 22, 2024
1 parent 0110d92 commit 8448b9d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions flow_screen_components/datatable/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ https://unofficialsf.com/flow-action-and-screen-component-basepacks/

---
**Install Datatable**
[Version 4.2.1 (Production or Developer)](https://login.salesforce.com/packaging/installPackage.apexp?p0=04t5G000004fz7wQAA)
[Version 4.2.1 (Sandbox)](https://test.salesforce.com/packaging/installPackage.apexp?p0=04t5G000004fz7wQAA)
[Version 4.3.0 (Production or Developer)](https://login.salesforce.com/packaging/installPackage.apexp?p0=04t5G000004fz81QAA)
[Version 4.3.0 (Sandbox)](https://test.salesforce.com/packaging/installPackage.apexp?p0=04t5G000004fz81QAA)

---
**Starting with the Winter '21 Release, Salesforce requires that a User's Profile or Permission Set is given specific permission to access any @AuraEnabled Apex Method.**
Expand All @@ -72,7 +72,7 @@ A Permission Set (**USF Flow Screen Component - Datatable**) is included with th
---
# Release Notes

## 07/xx/24 - Eric Smith - Version 4.2.2
## 07/22/24 - Eric Smith - Version 4.3.0
**Updates:**
- Added additional output attributes for Apex Defined records (outputRemovedRowsString & outputRemainingRowsString)
- Added an option to display the number of selected records in the table header
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,10 @@ export default class Datatable extends LightningElement {
get showRowNumbers() {
return (this.cb_showRowNumbers == CB_TRUE) ? true : false;
}
set showRowNumbers(value) {
this._showRowNumbers = value;
}
_showRowNumbers;
@api cb_showRowNumbers;

@api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ console.log("DATATABLE: isCommunity, isFlowBuilder:", isCommunity, isFlowBuilder

const getConstants = () => {
return {
VERSION_NUMBER : '4.2.2', // Current Source Code Version #
VERSION_NUMBER : '4.3.0', // Current Source Code Version #
MAXROWCOUNT : 2000, // Limit the total number of records to be handled by this component
ROUNDWIDTH : 5, // Used to round off the column widths during Config Mode to nearest value
WIZROWCOUNT : 6, // Number of records to display in the Column Wizard datatable
Expand All @@ -50,8 +50,8 @@ const getConstants = () => {
REMOVE_ROW_ICON : 'utility:close', // Default Icon for the Remove Row button
REMOVE_ROW_COLOR : 'remove-icon', // Default Color for the Remove Row button
REMOVE_ROW_SIDE : 'Right', // Default Side for the Remove Row button
SHOW_DEBUG_INFO : true, // Set to true to show sensitive debug info in the console and debug logs
DEBUG_INFO_PREFIX : 'DATATABLE: ' // Prefix to be used for debug info in the console
DEBUG_INFO_PREFIX : 'DATATABLE: ', // Prefix to be used for debug info in the console
SHOW_DEBUG_INFO : false // Set to true to show sensitive debug info in the console and debug logs
}
}

Expand Down
3 changes: 2 additions & 1 deletion flow_screen_components/datatable/sfdx-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
"[email protected]": "04t5G000004XZk9QAG",
"[email protected]": "04t5G000004XZknQAG",
"[email protected]": "04t5G000004XZlHQAW",
"[email protected]": "04t5G000004fz7wQAA"
"[email protected]": "04t5G000004fz7wQAA",
"[email protected]": "04t5G000004fz81QAA"
}
}

0 comments on commit 8448b9d

Please sign in to comment.