forked from forcedotcom/commerce-on-lightning-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilderProductPricing.js-meta.xml
More file actions
83 lines (83 loc) · 3.34 KB
/
builderProductPricing.js-meta.xml
File metadata and controls
83 lines (83 loc) · 3.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8" ?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<isExposed>true</isExposed>
<masterLabel>Custom Product Pricing Information</masterLabel>
<description>Displays pricing information for products.</description>
<targets>
<target>lightningCommunity__Page</target>
<target>lightningCommunity__Default</target>
</targets>
<targetConfigs>
<targetConfig targets="lightningCommunity__Default">
<property label="Show Actual Price" name="showNegotiatedPrice" type="Boolean" default="true" />
<property label="Actual Price Text Color" name="negotiatedPriceTextColor" type="Color" />
<property
label="Actual Price Text Size"
name="negotiatedPriceTextSize"
type="String"
datasource="small,medium,large"
default="small"
/>
<property
label="Actual Price Label"
name="negotiatedPriceLabel"
type="String"
default="Your Price"
translatable="true"
/>
<property label="Show Original Price" name="showOriginalPrice" type="Boolean" default="true" />
<property label="Original Price Text Color" name="originalPriceTextColor" type="Color" />
<property
label="Original Price Text Size"
name="originalPriceTextSize"
type="String"
datasource="small,medium,large"
default="small"
/>
<property
label="Original Price Label"
name="originalPriceLabel"
type="String"
default="Original Price"
translatable="true"
/>
<property
label="Unavailable Price Label"
name="unavailablePriceLabel"
type="String"
default="Price Unavailable"
translatable="true"
/>
<property label="Show Tax Indication" name="showTaxIndication" type="Boolean" default="true" />
<property
label="Tax Label"
name="taxIncludedLabel"
type="String"
default="Tax Included"
translatable="true"
/>
<property label="Tax Label Color" name="taxLabelColor" type="Color" />
<property
label="Tax Label Size"
name="taxLabelSize"
type="String"
datasource="small,medium,large"
default="medium"
/>
<property label="Product Data Binding" name="product" type="String" default="{!Product.Details}" />
<property
label="Product Pricing Data Binding"
name="productPricing"
type="String"
default="{!Product.Pricing}"
/>
<property label="Product Tax Data Binding" name="productTax" type="String" default="{!Product.Tax}" />
<property
label="Product Variant Data Binding"
name="productVariant"
type="String"
default="{!Product.SelectedVariant}"
/>
</targetConfig>
</targetConfigs>
</LightningComponentBundle>