Skip to content

Commit 78f4b6d

Browse files
Added package xml and project json. Updated README.md to added deploy button.
1 parent b209fce commit 78f4b6d

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# The Salesforce Character Counting Component
22

3+
<a href="https://githubsfdeploy.herokuapp.com?owner=Coding-With-The-Force&repo=Salesforce_Character_Counting_Component&ref=main">
4+
<img alt="Deploy to Salesforce"
5+
src="https://raw.githubusercontent.com/afawcett/githubsfdeploy/master/deploy.png">
6+
</a>
7+
38
Ever wished you could see how many characters were left when entering text into a
49
text field in Salesforce?? Well this is the answer. It works on every field in every
510
field combination and it's completely driven by field sets! No custom code ever again!

manifest/package.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Package xmlns="http://soap.sforce.com/2006/04/metadata">
3+
<types>
4+
<members>character_counting_component</members>
5+
<members>character_counter_record_edit_form</members>
6+
<members>character_counter_record_view_form</members>
7+
<name>LightningComponentBundle</name>
8+
</types>
9+
<types>
10+
<members>Character_Counting_Component_Controller</members>
11+
<members>Character_Counting_Component_Service</members>
12+
<name>ApexClass</name>
13+
</types>
14+
<version>53.0</version>
15+
</Package>

sfdx-project.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"packageDirectories": [
3+
{
4+
"path": "force-app",
5+
"default": true
6+
}
7+
],
8+
"name": "The_Character_Counting_Component",
9+
"namespace": "",
10+
"sfdcLoginUrl": "https://login.salesforce.com",
11+
"sourceApiVersion": "54.0"
12+
}

0 commit comments

Comments
 (0)