forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilderProductPricingTiers.js-meta.xml
More file actions
55 lines (54 loc) · 2.25 KB
/
builderProductPricingTiers.js-meta.xml
File metadata and controls
55 lines (54 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8" ?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<isExposed>true</isExposed>
<targets>
<target>lightningCommunity__Page</target>
<target>lightningCommunity__Default</target>
</targets>
<masterLabel>Custom Product Pricing Tiers</masterLabel>
<description>Displays pricing information for products with discount tiers.</description>
<targetConfigs>
<targetConfig targets="lightningCommunity__Default">
<property
label="Quantity Row Label"
name="quantityRowLabel"
type="String"
translatable="true"
default="Quantity"
/>
<property
label="Discount Row Label"
name="discountRowLabel"
type="String"
translatable="true"
default="Discount per Unit"
/>
<property
label="Tier Border Radius (0px - 100px)"
name="borderRadius"
type="Integer"
min="0"
max="100"
default="0"
/>
<property label="Tier Background Color" name="backgroundColor" type="Color" default="rgba(0,0,0,0)" />
<property label="Tier Row Title Text Color" name="rowTitleTextColor" type="Color" />
<property label="Tier Column Title Text Color" name="labelTextColor" type="Color" />
<property label="Tier Price Text Color" name="textColor" type="Color" />
<property label="Tier Price Text Border Color" name="borderColor" type="Color" />
<property
label="Product Pricing Data Binding"
name="productPricing"
type="String"
default="{!Product.Pricing}"
/>
<property label="Product Data Binding" name="product" type="String" default="{!Product.Details}" />
<property
label="Product Variant Selection Data Binding"
name="productVariant"
type="String"
default="{!Product.SelectedVariant}"
/>
</targetConfig>
</targetConfigs>
</LightningComponentBundle>