This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
office-addin-cc.manifest.xml
130 lines (129 loc) · 6.94 KB
/
office-addin-cc.manifest.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?xml version="1.0" encoding="utf-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
<Id>19105ba6-566f-45bf-8d06-c80a4f22214f</Id>
<Version>1.0</Version>
<ProviderName>Demo</ProviderName>
<DefaultLocale>en-US</DefaultLocale>
<DisplayName DefaultValue="Office Js - CC Demo" />
<Description DefaultValue="Office Js - CC Demo" />
<IconUrl DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/icon-filled.png" />
<HighResolutionIconUrl DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/icon-filled.png" />
<AppDomains>
</AppDomains>
<Hosts>
<Host Name="Workbook"/>
</Hosts>
<Requirements>
<Sets DefaultMinVersion="1.4">
<Set Name="ExcelApi" MinVersion="1.4"/>
</Sets>
</Requirements>
<DefaultSettings>
<SourceLocation DefaultValue="https://localhost:4200" />
</DefaultSettings>
<Permissions>ReadWriteDocument</Permissions>
<!--BeginAddinCommandsMode integration-->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="VersionOverridesV1_0">
<Hosts>
<Host xsi:type="Workbook">
<DesktopFormFactor>
<GetStarted>
<!--Title of the Getting Started callout. resid points to a ShortString resource -->
<Title resid="CC.GetStarted.Title"/>
<!--Description of the Getting Started callout. resid points to a LongString resource -->
<Description resid="CC.GetStarted.Description"/>
<!--Not used right now but you need to provide a valid resource. We will add code in the future to consume this URL.
resid points to a Url resource -->
<LearnMoreUrl resid="CC.GetStarted.LearnMoreUrl"/>
</GetStarted>
<!--Function file is an html page that includes the javascript where functions for ExecuteAction will be called.
Think of the FunctionFile as the "code behind" ExecuteFunction -->
<!-- <FunctionFile resid="FunctionFileUrl" /> -->
<!--PrimaryCommandSurface==Main Office Ribbon-->
<ExtensionPoint xsi:type="PrimaryCommandSurface">
<!--Use OfficeTab to extend an existing Tab. Use CustomTab to create a new tab -->
<!-- Documentation includes all the IDs currently tested to work -->
<CustomTab id="CCTab">
<!--Group. Ensure you provide a unique id. Recommendation for any IDs is to namespace using your companyname-->
<Group id="CC.DemoGroup">
<!--Label for your group. resid must point to a ShortString resource -->
<Label resid="DemoLabel" />
<!--Icons. Required sizes 16,31,80, optional 20, 24, 40, 48, 64. Strongly recommended to provide all sizes for great UX -->
<!--Use PNG icons and remember that all URLs on the resources section must use HTTPS -->
<Icon>
<bt:Image size="16" resid="logo_16x16" />
<bt:Image size="32" resid="logo_32x32" />
<bt:Image size="80" resid="logo_80x80" />
</Icon>
<Control xsi:type="Button" id="CC.DemoButton">
<Label resid="DemoLabel" />
<Supertip>
<Title resid="DemoLabel" />
<Description resid="toolTip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="logo_16x16" />
<bt:Image size="32" resid="logo_32x32" />
<bt:Image size="80" resid="logo_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>CC-demo</TaskpaneId>
<SourceLocation resid="DemoUrl" />
<Title resid="DemoTitle" />
</Action>
</Control>
<Control xsi:type="Button" id="CC.ServiceButton">
<Label resid="ServiceLabel" />
<Supertip>
<Title resid="ServiceLabel" />
<Description resid="toolTip" />
</Supertip>
<Icon>
<bt:Image size="16" resid="logo_16x16" />
<bt:Image size="32" resid="logo_32x32" />
<bt:Image size="80" resid="logo_80x80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<TaskpaneId>CC-ServiceWorkerUrl</TaskpaneId>
<SourceLocation resid="ServiceWorkerUrl" />
<Title resid="ServiceTitle" />
</Action>
</Control>
</Group>
<!--Custom Tab Label is name seen in the Ribbon (i.e standard tab names are Home, Data, View, etc...) -->
<Label resid="CCTabLabel"></Label>
</CustomTab>
</ExtensionPoint>
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="logo_16x16" DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/icon-16.png"></bt:Image>
<bt:Image id="logo_32x32" DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/icon-32.png"></bt:Image>
<bt:Image id="logo_80x80" DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/icon-80.png"></bt:Image>
<bt:Image id="logo_filled" DefaultValue="https://raw.githubusercontent.com/OfficeDev/Office-Addin-TaskPane-React/master/assets/logo-filled.png"></bt:Image>
</bt:Images>
<bt:Urls>
<bt:Url id="DemoUrl" DefaultValue="https://localhost:4200"></bt:Url>
<bt:Url id="ServiceWorkerUrl" DefaultValue="https://localhost:4300"></bt:Url>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="CCTabLabel" DefaultValue="CC - Demo"></bt:String>
<bt:String id="DemoLabel" DefaultValue="Community Call Demo"></bt:String>
<bt:String id="DemoTitle" DefaultValue="Community Call Demo"></bt:String>
<bt:String id="ServiceLabel" DefaultValue="Service Worker - Demo"></bt:String>
<bt:String id="ServiceTitle" DefaultValue="Service Worker - Demo"></bt:String>
<bt:String id="CC.GetStarted.Title" DefaultValue="Community Call Demo"></bt:String>
</bt:ShortStrings>
<bt:LongStrings>
<!-- LongStrings max characters==250 -->
<bt:String id="toolTip" DefaultValue="Multiple Buttons Tooltip"></bt:String>
<bt:String id="CC.GetStarted.Description" DefaultValue="Community Call Demo - Showing off different Web APIs"></bt:String>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</OfficeApp>