@microsoft/sp-adaptive-card-extension-base 1.18.0 → 1.18.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eeec822e-c28a-46b4-affc-7058e4c1aa80.manifest.json +265 -78
- package/dist/index-internal-beta.d.ts +84 -23
- package/dist/index-internal-public.d.ts +11 -1
- package/dist/index-internal.d.ts +258 -21
- package/dist/sp-adaptive-card-extension-base_default_7984c4cece7584c4bdf4.js +1 -0
- package/dist/sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js +1 -0
- package/dist/sp-adaptive-card-extension-base_qps-ploc_7984c4cece7584c4bdf4.js +1 -0
- package/dist/sp-adaptive-card-extension-base_qps-ploca_7984c4cece7584c4bdf4.js +1 -0
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-commonjs/AdaptiveCardExtensionContext.js +15 -2
- package/lib-commonjs/AdaptiveCardExtensionLoader.js +1 -0
- package/lib-commonjs/BaseAdaptiveCardExtension.js +1 -8
- package/lib-commonjs/common/Killswitches.js +9 -3
- package/lib-commonjs/index.js +3 -3
- package/lib-commonjs/interfaces/IHostContext.js +0 -4
- package/lib-commonjs/isolation/{CardViewParametersUtils.js → RenderArgumentsUtils.js} +44 -18
- package/package.json +17 -16
- package/dist/sp-adaptive-card-extension-base_default_24619a0c86367aa8564f.js +0 -1
- package/dist/sp-adaptive-card-extension-base_en-us_24619a0c86367aa8564f.js +0 -1
- package/dist/sp-adaptive-card-extension-base_qps-ploc_24619a0c86367aa8564f.js +0 -1
- package/dist/sp-adaptive-card-extension-base_qps-ploca_24619a0c86367aa8564f.js +0 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"id": "eeec822e-c28a-46b4-affc-7058e4c1aa80",
|
|
4
4
|
"alias": "SpAdaptiveCardBase",
|
|
5
5
|
"componentType": "Library",
|
|
6
|
-
"version": "1.18.
|
|
6
|
+
"version": "1.18.1",
|
|
7
7
|
"loaderConfig": {
|
|
8
8
|
"internalModuleBaseUrls": [
|
|
9
9
|
"https://localhost:4321/dist/"
|
|
@@ -13,71 +13,263 @@
|
|
|
13
13
|
"sp-adaptive-card-extension-base": {
|
|
14
14
|
"type": "localizedPath",
|
|
15
15
|
"paths": {
|
|
16
|
-
"default":
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"en-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"en-
|
|
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
|
-
|
|
16
|
+
"default": {
|
|
17
|
+
"path": "sp-adaptive-card-extension-base_default_7984c4cece7584c4bdf4.js",
|
|
18
|
+
"integrity": "sha256-4gnT77sIcACRXTxJ3yAkWdE/8zAUOU8vQxmWcdjXjq8="
|
|
19
|
+
},
|
|
20
|
+
"en-US": {
|
|
21
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
22
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
23
|
+
},
|
|
24
|
+
"qps-ploca": {
|
|
25
|
+
"path": "sp-adaptive-card-extension-base_qps-ploca_7984c4cece7584c4bdf4.js",
|
|
26
|
+
"integrity": "sha256-me0Et8kFJHJfvCB7claNFaPdaIlO8LuZk3L/TPZDl+w="
|
|
27
|
+
},
|
|
28
|
+
"qps-ploc": {
|
|
29
|
+
"path": "sp-adaptive-card-extension-base_qps-ploc_7984c4cece7584c4bdf4.js",
|
|
30
|
+
"integrity": "sha256-JEtK9UL+r9VNOemrmJKz5mIcOnJI+jQoUEubmGk8gls="
|
|
31
|
+
},
|
|
32
|
+
"en-GB": {
|
|
33
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
34
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
35
|
+
},
|
|
36
|
+
"en-NZ": {
|
|
37
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
38
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
39
|
+
},
|
|
40
|
+
"en-IE": {
|
|
41
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
42
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
43
|
+
},
|
|
44
|
+
"en-AU": {
|
|
45
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
46
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
47
|
+
},
|
|
48
|
+
"bn": {
|
|
49
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
50
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
51
|
+
},
|
|
52
|
+
"chr": {
|
|
53
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
54
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
55
|
+
},
|
|
56
|
+
"dv": {
|
|
57
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
58
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
59
|
+
},
|
|
60
|
+
"div": {
|
|
61
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
62
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
63
|
+
},
|
|
64
|
+
"en": {
|
|
65
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
66
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
67
|
+
},
|
|
68
|
+
"fil": {
|
|
69
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
70
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
71
|
+
},
|
|
72
|
+
"haw": {
|
|
73
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
74
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
75
|
+
},
|
|
76
|
+
"iu": {
|
|
77
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
78
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
79
|
+
},
|
|
80
|
+
"lo": {
|
|
81
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
82
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
83
|
+
},
|
|
84
|
+
"moh": {
|
|
85
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
86
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
87
|
+
},
|
|
88
|
+
"sq": {
|
|
89
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
90
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
91
|
+
},
|
|
92
|
+
"am": {
|
|
93
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
94
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
95
|
+
},
|
|
96
|
+
"hy": {
|
|
97
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
98
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
99
|
+
},
|
|
100
|
+
"mk": {
|
|
101
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
102
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
103
|
+
},
|
|
104
|
+
"bs": {
|
|
105
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
106
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
107
|
+
},
|
|
108
|
+
"my": {
|
|
109
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
110
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
111
|
+
},
|
|
112
|
+
"dz": {
|
|
113
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
114
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
115
|
+
},
|
|
116
|
+
"en-CY": {
|
|
117
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
118
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
119
|
+
},
|
|
120
|
+
"en-EG": {
|
|
121
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
122
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
123
|
+
},
|
|
124
|
+
"en-IL": {
|
|
125
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
126
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
127
|
+
},
|
|
128
|
+
"en-IS": {
|
|
129
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
130
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
131
|
+
},
|
|
132
|
+
"en-JO": {
|
|
133
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
134
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
135
|
+
},
|
|
136
|
+
"en-KE": {
|
|
137
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
138
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
139
|
+
},
|
|
140
|
+
"en-KW": {
|
|
141
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
142
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
143
|
+
},
|
|
144
|
+
"en-MK": {
|
|
145
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
146
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
147
|
+
},
|
|
148
|
+
"en-MT": {
|
|
149
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
150
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
151
|
+
},
|
|
152
|
+
"en-PK": {
|
|
153
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
154
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
155
|
+
},
|
|
156
|
+
"en-QA": {
|
|
157
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
158
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
159
|
+
},
|
|
160
|
+
"en-SA": {
|
|
161
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
162
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
163
|
+
},
|
|
164
|
+
"en-LK": {
|
|
165
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
166
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
167
|
+
},
|
|
168
|
+
"en-AE": {
|
|
169
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
170
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
171
|
+
},
|
|
172
|
+
"en-VN": {
|
|
173
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
174
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
175
|
+
},
|
|
176
|
+
"is": {
|
|
177
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
178
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
179
|
+
},
|
|
180
|
+
"km": {
|
|
181
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
182
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
183
|
+
},
|
|
184
|
+
"kh": {
|
|
185
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
186
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
187
|
+
},
|
|
188
|
+
"mt": {
|
|
189
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
190
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
191
|
+
},
|
|
192
|
+
"fa": {
|
|
193
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
194
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
195
|
+
},
|
|
196
|
+
"gd": {
|
|
197
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
198
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
199
|
+
},
|
|
200
|
+
"sr-Cyrl-BA": {
|
|
201
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
202
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
203
|
+
},
|
|
204
|
+
"sr-Latn-BA": {
|
|
205
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
206
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
207
|
+
},
|
|
208
|
+
"sd": {
|
|
209
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
210
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
211
|
+
},
|
|
212
|
+
"si": {
|
|
213
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
214
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
215
|
+
},
|
|
216
|
+
"so": {
|
|
217
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
218
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
219
|
+
},
|
|
220
|
+
"ti-ET": {
|
|
221
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
222
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
223
|
+
},
|
|
224
|
+
"uz": {
|
|
225
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
226
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
227
|
+
},
|
|
228
|
+
"en-SG": {
|
|
229
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
230
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
231
|
+
},
|
|
232
|
+
"en-HK": {
|
|
233
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
234
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
235
|
+
},
|
|
236
|
+
"en-MY": {
|
|
237
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
238
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
239
|
+
},
|
|
240
|
+
"en-PH": {
|
|
241
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
242
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
243
|
+
},
|
|
244
|
+
"en-TT": {
|
|
245
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
246
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
247
|
+
},
|
|
248
|
+
"en-AZ": {
|
|
249
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
250
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
251
|
+
},
|
|
252
|
+
"en-BH": {
|
|
253
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
254
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
255
|
+
},
|
|
256
|
+
"en-BN": {
|
|
257
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
258
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
259
|
+
},
|
|
260
|
+
"en-ID": {
|
|
261
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
262
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
263
|
+
},
|
|
264
|
+
"mi": {
|
|
265
|
+
"path": "sp-adaptive-card-extension-base_en-us_7984c4cece7584c4bdf4.js",
|
|
266
|
+
"integrity": "sha256-jMIRv3K7qd66XOUUI9kDeCN1CEngkpvKf8gwhO9YGwg="
|
|
267
|
+
}
|
|
79
268
|
},
|
|
80
|
-
"defaultPath":
|
|
269
|
+
"defaultPath": {
|
|
270
|
+
"path": "sp-adaptive-card-extension-base_default_7984c4cece7584c4bdf4.js",
|
|
271
|
+
"integrity": "sha256-4gnT77sIcACRXTxJ3yAkWdE/8zAUOU8vQxmWcdjXjq8="
|
|
272
|
+
}
|
|
81
273
|
},
|
|
82
274
|
"tslib": {
|
|
83
275
|
"type": "component",
|
|
@@ -87,47 +279,42 @@
|
|
|
87
279
|
"@microsoft/sp-http-base": {
|
|
88
280
|
"type": "component",
|
|
89
281
|
"id": "8496636c-2300-4915-abef-20de64c98d8b",
|
|
90
|
-
"version": "1.18.
|
|
282
|
+
"version": "1.18.1"
|
|
91
283
|
},
|
|
92
284
|
"@ms/sp-telemetry": {
|
|
93
285
|
"type": "component",
|
|
94
286
|
"id": "8217e442-8ed3-41fd-957d-b112e841286a",
|
|
95
|
-
"version": "0.
|
|
287
|
+
"version": "0.31.35"
|
|
96
288
|
},
|
|
97
289
|
"@microsoft/sp-component-base": {
|
|
98
290
|
"type": "component",
|
|
99
291
|
"id": "467dc675-7cc5-4709-8aac-78e3b71bd2f6",
|
|
100
|
-
"version": "1.18.
|
|
292
|
+
"version": "1.18.1"
|
|
101
293
|
},
|
|
102
294
|
"@microsoft/sp-loader": {
|
|
103
295
|
"type": "component",
|
|
104
296
|
"id": "1c6c9123-7aac-41f3-a376-3caea41ed83f",
|
|
105
|
-
"version": "1.18.
|
|
106
|
-
},
|
|
107
|
-
"@ms/odsp-core-bundle": {
|
|
108
|
-
"type": "component",
|
|
109
|
-
"id": "2e09fb9b-13bb-48f2-859f-97d6fff71176",
|
|
110
|
-
"version": "1.3.297"
|
|
297
|
+
"version": "1.18.1"
|
|
111
298
|
},
|
|
112
299
|
"@microsoft/sp-lodash-subset": {
|
|
113
300
|
"type": "component",
|
|
114
301
|
"id": "73e1dc6c-8441-42cc-ad47-4bd3659f8a3a",
|
|
115
|
-
"version": "1.18.
|
|
302
|
+
"version": "1.18.1"
|
|
116
303
|
},
|
|
117
304
|
"@microsoft/sp-core-library": {
|
|
118
305
|
"type": "component",
|
|
119
306
|
"id": "7263c7d0-1d6a-45ec-8d85-d4d1d234171b",
|
|
120
|
-
"version": "1.18.
|
|
307
|
+
"version": "1.18.1"
|
|
121
308
|
},
|
|
122
309
|
"@microsoft/sp-page-context": {
|
|
123
310
|
"type": "component",
|
|
124
311
|
"id": "1c4541f7-5c31-41aa-9fa8-fbc9dc14c0a8",
|
|
125
|
-
"version": "1.18.
|
|
312
|
+
"version": "1.18.1"
|
|
126
313
|
},
|
|
127
314
|
"@microsoft/sp-diagnostics": {
|
|
128
315
|
"type": "component",
|
|
129
316
|
"id": "78359e4b-07c2-43c6-8d0b-d060b4d577e8",
|
|
130
|
-
"version": "1.18.
|
|
317
|
+
"version": "1.18.1"
|
|
131
318
|
}
|
|
132
319
|
}
|
|
133
320
|
}
|
|
@@ -28,11 +28,11 @@ import type { IOpenUrlAction } from 'adaptivecards/lib/schema';
|
|
|
28
28
|
import type { IPropertyPaneAccessor } from '@microsoft/sp-webpart-base';
|
|
29
29
|
import type { IPropertyPaneConfiguration } from '@microsoft/sp-property-pane';
|
|
30
30
|
import type { IPropertyPaneGroup } from '@microsoft/sp-property-pane';
|
|
31
|
-
import type { ISDKs } from '@microsoft/sp-webpart-base';
|
|
32
31
|
import type { ISerializedServerProcessedData } from '@microsoft/sp-component-base';
|
|
33
32
|
import type { IShowCardAction } from 'adaptivecards/lib/schema';
|
|
34
33
|
import type { ISubmitAction } from 'adaptivecards/lib/schema';
|
|
35
34
|
import type { ITextBlock } from 'adaptivecards/lib/schema';
|
|
35
|
+
import type * as microsoftTeams from '@microsoft/teams-js-v2';
|
|
36
36
|
import { PageContext } from '@microsoft/sp-page-context';
|
|
37
37
|
import { ServiceKey } from '@microsoft/sp-core-library';
|
|
38
38
|
import { ServiceScope } from '@microsoft/sp-core-library';
|
|
@@ -58,6 +58,7 @@ export declare class AdaptiveCardExtensionContext extends BaseComponentContext {
|
|
|
58
58
|
private _location;
|
|
59
59
|
private _logACEEditCustomerPromiseFailure;
|
|
60
60
|
private _hostContext?;
|
|
61
|
+
private _sdks;
|
|
61
62
|
/* Excluded from this release type: __constructor */
|
|
62
63
|
/* Excluded from this release type: _host */
|
|
63
64
|
/**
|
|
@@ -65,11 +66,13 @@ export declare class AdaptiveCardExtensionContext extends BaseComponentContext {
|
|
|
65
66
|
*/
|
|
66
67
|
get propertyPane(): IPropertyPaneAccessor | undefined;
|
|
67
68
|
get deviceContext(): DeviceContext;
|
|
69
|
+
/* Excluded from this release type: hostContext */
|
|
68
70
|
/**
|
|
69
71
|
* @beta
|
|
70
|
-
*
|
|
72
|
+
*
|
|
73
|
+
* Provides a sdk that gets current context of device. See {@link IPartialSDKs}
|
|
71
74
|
*/
|
|
72
|
-
get
|
|
75
|
+
get sdks(): IPartialSDKs | undefined;
|
|
73
76
|
/**
|
|
74
77
|
* @beta
|
|
75
78
|
* Provides a promise that gets current location of the device
|
|
@@ -987,11 +990,7 @@ export declare type GenericCardViewFooterParameters = CardViewActionsFooterParam
|
|
|
987
990
|
|
|
988
991
|
/* Excluded from this release type: _getRenderArgumentsForMessaging */
|
|
989
992
|
|
|
990
|
-
|
|
991
|
-
* HostTheme is a variable with 3 possible values: light, dark and undefined, used to define theme of VCM app.
|
|
992
|
-
* @beta
|
|
993
|
-
*/
|
|
994
|
-
export declare type HostTheme = 'light' | 'dark' | undefined;
|
|
993
|
+
/* Excluded from this release type: HostTheme */
|
|
995
994
|
|
|
996
995
|
/**
|
|
997
996
|
* The object passed to {@link IAdaptiveCardExtensionActionView.onAction} when an Adaptive Card Action is executed.
|
|
@@ -1883,21 +1882,7 @@ export declare interface IGetLocationCardAction {
|
|
|
1883
1882
|
parameters?: IGetLocationActionParameters;
|
|
1884
1883
|
}
|
|
1885
1884
|
|
|
1886
|
-
|
|
1887
|
-
* IHostContext is an object which is passed to Adaptive card context for card developers to access VCM theme.
|
|
1888
|
-
* @beta
|
|
1889
|
-
*/
|
|
1890
|
-
export declare interface IHostContext {
|
|
1891
|
-
/**
|
|
1892
|
-
*
|
|
1893
|
-
* theme is used to define what the the current colour scheme for the VCM app. It has currently 3 values
|
|
1894
|
-
light: If VCM is in light mode, we use the theme 'light',
|
|
1895
|
-
dark: If VCM is in dark mode, we use the theme 'dark',
|
|
1896
|
-
undefined: For web and Teams app desktop we get the value undefined.
|
|
1897
|
-
* @beta
|
|
1898
|
-
*/
|
|
1899
|
-
theme: HostTheme;
|
|
1900
|
-
}
|
|
1885
|
+
/* Excluded from this release type: IHostContext */
|
|
1901
1886
|
|
|
1902
1887
|
/* Excluded from this release type: _IHTMLQuickViewRenderParameters */
|
|
1903
1888
|
|
|
@@ -2109,6 +2094,82 @@ export declare interface INotificationResponse {
|
|
|
2109
2094
|
*/
|
|
2110
2095
|
export declare type IOnBeforeActionArguments = IActionArguments | IQuickViewActionArguments | IExternalLinkActionArguments | IShowLocationCardAction;
|
|
2111
2096
|
|
|
2097
|
+
/**
|
|
2098
|
+
* Provides access to the Teams SDK and Teams context. Only provided when the web part is loaded in Teams.
|
|
2099
|
+
*
|
|
2100
|
+
* Currently We are providing only Partial Contextual Information.
|
|
2101
|
+
*
|
|
2102
|
+
* @beta
|
|
2103
|
+
*/
|
|
2104
|
+
export declare interface IPartialMicrosoftTeams {
|
|
2105
|
+
/**
|
|
2106
|
+
* Partial Microsoft Teams SDK.
|
|
2107
|
+
*/
|
|
2108
|
+
teamsJs: IPartialTeamsJs;
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
/**
|
|
2112
|
+
* Conditional set of SDKs provided by SPFx dependent on the environment.
|
|
2113
|
+
*
|
|
2114
|
+
* Currently we are providing only Partial SDKs.
|
|
2115
|
+
* @beta
|
|
2116
|
+
*/
|
|
2117
|
+
export declare interface IPartialSDKs {
|
|
2118
|
+
/**
|
|
2119
|
+
* Contextual information about the current Microsoft Teams tab. This object will only be defined if
|
|
2120
|
+
* a component is being hosted in Microsoft Teams.
|
|
2121
|
+
*
|
|
2122
|
+
* @remarks
|
|
2123
|
+
* For more information, please see:
|
|
2124
|
+
* {@link https://docs.microsoft.com/en-us/javascript/api/@microsoft/teams-js/?view=msteams-client-js-latest}
|
|
2125
|
+
*
|
|
2126
|
+
* Currently We are providing only Partial Contextual Information.
|
|
2127
|
+
*/
|
|
2128
|
+
microsoftTeams?: IPartialMicrosoftTeams;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2131
|
+
/**
|
|
2132
|
+
* Partial teams context
|
|
2133
|
+
*
|
|
2134
|
+
* @beta
|
|
2135
|
+
*/
|
|
2136
|
+
export declare interface IPartialTeamsContext {
|
|
2137
|
+
/**
|
|
2138
|
+
* Properties about the current session for your app
|
|
2139
|
+
*/
|
|
2140
|
+
app: {
|
|
2141
|
+
/**
|
|
2142
|
+
* Represents application information.
|
|
2143
|
+
* We will provide only theme information.
|
|
2144
|
+
*
|
|
2145
|
+
* @remarks "default" | "dark" are only supported values.
|
|
2146
|
+
*/
|
|
2147
|
+
appInfo: Pick<microsoftTeams.app.AppInfo, 'theme'>;
|
|
2148
|
+
};
|
|
2149
|
+
}
|
|
2150
|
+
|
|
2151
|
+
/**
|
|
2152
|
+
* Provides access to the Teams SDK and Teams context. Only provided when the web part is loaded in Teams.
|
|
2153
|
+
*
|
|
2154
|
+
* @beta
|
|
2155
|
+
*/
|
|
2156
|
+
export declare interface IPartialTeamsJs {
|
|
2157
|
+
/**
|
|
2158
|
+
* Namespace to interact with Teams app initialization and lifecycle.
|
|
2159
|
+
*
|
|
2160
|
+
* @remarks
|
|
2161
|
+
* Currently we are providing only partial contextual information of Teams app.
|
|
2162
|
+
*/
|
|
2163
|
+
app: {
|
|
2164
|
+
/**
|
|
2165
|
+
* Retrieves the current context the frame is running in.
|
|
2166
|
+
*
|
|
2167
|
+
* @returns Promise that will resolve with the {@link IPartialTeamsContext} object.
|
|
2168
|
+
*/
|
|
2169
|
+
getContext: () => Promise<IPartialTeamsContext>;
|
|
2170
|
+
};
|
|
2171
|
+
}
|
|
2172
|
+
|
|
2112
2173
|
/**
|
|
2113
2174
|
* The data parameters for {@link BasePrimaryTextCardView}.
|
|
2114
2175
|
*
|
|
@@ -27,11 +27,11 @@ import type { IOpenUrlAction } from 'adaptivecards/lib/schema';
|
|
|
27
27
|
import type { IPropertyPaneAccessor } from '@microsoft/sp-webpart-base';
|
|
28
28
|
import type { IPropertyPaneConfiguration } from '@microsoft/sp-property-pane';
|
|
29
29
|
import type { IPropertyPaneGroup } from '@microsoft/sp-property-pane';
|
|
30
|
-
import type { ISDKs } from '@microsoft/sp-webpart-base';
|
|
31
30
|
import type { ISerializedServerProcessedData } from '@microsoft/sp-component-base';
|
|
32
31
|
import type { IShowCardAction } from 'adaptivecards/lib/schema';
|
|
33
32
|
import type { ISubmitAction } from 'adaptivecards/lib/schema';
|
|
34
33
|
import type { ITextBlock } from 'adaptivecards/lib/schema';
|
|
34
|
+
import type * as microsoftTeams from '@microsoft/teams-js-v2';
|
|
35
35
|
import { PageContext } from '@microsoft/sp-page-context';
|
|
36
36
|
import { ServiceKey } from '@microsoft/sp-core-library';
|
|
37
37
|
import { ServiceScope } from '@microsoft/sp-core-library';
|
|
@@ -57,6 +57,7 @@ export declare class AdaptiveCardExtensionContext extends BaseComponentContext {
|
|
|
57
57
|
private _location;
|
|
58
58
|
private _logACEEditCustomerPromiseFailure;
|
|
59
59
|
private _hostContext?;
|
|
60
|
+
private _sdks;
|
|
60
61
|
/* Excluded from this release type: __constructor */
|
|
61
62
|
/* Excluded from this release type: _host */
|
|
62
63
|
/**
|
|
@@ -65,6 +66,7 @@ export declare class AdaptiveCardExtensionContext extends BaseComponentContext {
|
|
|
65
66
|
get propertyPane(): IPropertyPaneAccessor | undefined;
|
|
66
67
|
get deviceContext(): DeviceContext;
|
|
67
68
|
/* Excluded from this release type: hostContext */
|
|
69
|
+
/* Excluded from this release type: sdks */
|
|
68
70
|
/* Excluded from this release type: location */
|
|
69
71
|
/* Excluded from this release type: _logEditCustomerPromiseFailure */
|
|
70
72
|
}
|
|
@@ -1933,6 +1935,14 @@ export declare function ImageCardView(configuration: IImageCardViewConfiguration
|
|
|
1933
1935
|
*/
|
|
1934
1936
|
export declare type IOnBeforeActionArguments = IActionArguments | IQuickViewActionArguments | IExternalLinkActionArguments | IShowLocationCardAction;
|
|
1935
1937
|
|
|
1938
|
+
/* Excluded from this release type: IPartialMicrosoftTeams */
|
|
1939
|
+
|
|
1940
|
+
/* Excluded from this release type: IPartialSDKs */
|
|
1941
|
+
|
|
1942
|
+
/* Excluded from this release type: IPartialTeamsContext */
|
|
1943
|
+
|
|
1944
|
+
/* Excluded from this release type: IPartialTeamsJs */
|
|
1945
|
+
|
|
1936
1946
|
/**
|
|
1937
1947
|
* The data parameters for {@link BasePrimaryTextCardView}.
|
|
1938
1948
|
*
|