-
Notifications
You must be signed in to change notification settings - Fork 0
/
ControlManifest.Input.xml
61 lines (60 loc) · 3.55 KB
/
ControlManifest.Input.xml
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
<?xml version="1.0" encoding="utf-8" ?>
<manifest>
<control namespace="Dev" constructor="SpreadSheet" version="0.0.1" display-name-key="SpreadSheet" description-key="SpreadSheet description" control-type="virtual" >
<!--external-service-usage node declares whether this 3rd party PCF control is using external service or not, if yes, this control will be considered as premium and please also add the external domain it is using.
If it is not using any external service, please set the enabled="false" and DO NOT add any domain below. The "enabled" will be false by default.
Example1:
<external-service-usage enabled="true">
<domain>www.Microsoft.com</domain>
</external-service-usage>
Example2:
<external-service-usage enabled="false">
</external-service-usage>
-->
<external-service-usage enabled="false">
<!--UNCOMMENT TO ADD EXTERNAL DOMAINS
<domain></domain>
<domain></domain>
-->
</external-service-usage>
<!-- property node identifies a specific, configurable piece of data that the control expects from CDS -->
<property name="jsonDataIn" display-name-key="jsonDataIn" description-key="Json Data to autopopulate data in PCF" of-type="SingleLine.Text" usage="input" required="true" />
<property name="SaveData" display-name-key="SaveData" description-key="SaveData , Change boolean value so Data from PCF Converted As Json" of-type="TwoOptions" usage="bound" required="true" />
<property name="CopyData" display-name-key="CopyData" description-key="CopyData , Change boolean value so Data from PCF Copied to Clipboard" of-type="TwoOptions" usage="bound" required="true" />
<property name="jsonDataOut" display-name-key="jsonDataOut" description-key="Json Data to autopopulate data in PCF" of-type="SingleLine.Text" usage="bound" required="true" />
<property name="Year" display-name-key="Year" description-key="Year" of-type="SingleLine.Text" usage="bound" required="true" />
<property name="FiscelYear" display-name-key="FiscelYear" description-key="FiscelYear" of-type="TwoOptions" usage="bound" required="true" />
<!--
Property node's of-type attribute can be of-type-group attribute.
Example:
<type-group name="numbers">
<type>Whole.None</type>
<type>Currency</type>
<type>FP</type>
<type>Decimal</type>
</type-group>
<property name="sampleProperty" display-name-key="Property_Display_Key" description-key="Property_Desc_Key" of-type-group="numbers" usage="bound" required="true" />
-->
<resources>
<code path="index.ts" order="1"/>
<platform-library name="React" version="16.8.6" />
<platform-library name="Fluent" version="8.29.0" />
<!-- UNCOMMENT TO ADD MORE RESOURCES
<css path="css/SpreadSheet.css" order="1" />
<resx path="strings/SpreadSheet.1033.resx" version="1.0.0" />
-->
</resources>
<!-- UNCOMMENT TO ENABLE THE SPECIFIED API
<feature-usage>
<uses-feature name="Device.captureAudio" required="true" />
<uses-feature name="Device.captureImage" required="true" />
<uses-feature name="Device.captureVideo" required="true" />
<uses-feature name="Device.getBarcodeValue" required="true" />
<uses-feature name="Device.getCurrentPosition" required="true" />
<uses-feature name="Device.pickFile" required="true" />
<uses-feature name="Utility" required="true" />
<uses-feature name="WebAPI" required="true" />
</feature-usage>
-->
</control>
</manifest>