@sap/ux-specification 1.71.99 → 1.71.101

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +63 -32
  2. package/dist/documentation/runDocu-min.js +4 -4
  3. package/dist/documentation/runDocu-min.js.map +3 -3
  4. package/dist/documentation/styleDocu.css +4 -0
  5. package/dist/documentation/v2/v2-AnalyticalListPage.html +2 -2
  6. package/dist/documentation/v2/v2-ApplicationV2.html +2 -2
  7. package/dist/documentation/v2/v2-ListReport.html +2 -2
  8. package/dist/documentation/v2/v2-ObjectPage.html +2 -2
  9. package/dist/documentation/v2/v2-OverviewPage.html +2 -2
  10. package/dist/index-min.js +62 -65
  11. package/dist/index-min.js.map +4 -4
  12. package/dist/package.json +6 -7
  13. package/dist/schemas/v2/ObjectPageConfig.json +167 -111
  14. package/dist/schemas/v2/OverviewPageConfig.json +459 -397
  15. package/dist/src/api.js +1 -1
  16. package/dist/src/sync/common/decoration/control.d.ts +4 -0
  17. package/dist/src/sync/common/decoration/control.d.ts.map +1 -1
  18. package/dist/src/sync/common/decoration/control.js +8 -1
  19. package/dist/src/sync/common/decoration/control.js.map +1 -1
  20. package/dist/src/sync/common/generate/utils.d.ts.map +1 -1
  21. package/dist/src/sync/common/generate/utils.js +56 -47
  22. package/dist/src/sync/common/generate/utils.js.map +1 -1
  23. package/dist/src/sync/common/utils.d.ts.map +1 -1
  24. package/dist/src/sync/common/utils.js +51 -42
  25. package/dist/src/sync/common/utils.js.map +1 -1
  26. package/dist/src/sync/v2/application.d.ts +4 -3
  27. package/dist/src/sync/v2/application.d.ts.map +1 -1
  28. package/dist/src/sync/v2/application.js +17 -13
  29. package/dist/src/sync/v2/application.js.map +1 -1
  30. package/dist/src/sync/v2/export/controls/Card.d.ts +69 -77
  31. package/dist/src/sync/v2/export/controls/Card.d.ts.map +1 -1
  32. package/dist/src/sync/v2/export/controls/Card.js +99 -252
  33. package/dist/src/sync/v2/export/controls/Card.js.map +1 -1
  34. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts +14 -6
  35. package/dist/src/sync/v2/export/controls/ObjectPageTable.d.ts.map +1 -1
  36. package/dist/src/sync/v2/export/controls/ObjectPageTable.js +87 -27
  37. package/dist/src/sync/v2/export/controls/ObjectPageTable.js.map +1 -1
  38. package/dist/src/sync/v2/export/export.d.ts +2 -1
  39. package/dist/src/sync/v2/export/export.d.ts.map +1 -1
  40. package/dist/src/sync/v2/export/export.js +37 -61
  41. package/dist/src/sync/v2/export/export.js.map +1 -1
  42. package/dist/src/sync/v2/export/exportPage.d.ts.map +1 -1
  43. package/dist/src/sync/v2/export/exportPage.js +0 -14
  44. package/dist/src/sync/v2/export/exportPage.js.map +1 -1
  45. package/dist/src/sync/v2/export/pages/ObjectPage.d.ts +1 -0
  46. package/dist/src/sync/v2/export/pages/ObjectPage.d.ts.map +1 -1
  47. package/dist/src/sync/v2/export/pages/ObjectPage.js +18 -0
  48. package/dist/src/sync/v2/export/pages/ObjectPage.js.map +1 -1
  49. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts +12 -5
  50. package/dist/src/sync/v2/export/pages/OverviewPage.d.ts.map +1 -1
  51. package/dist/src/sync/v2/export/pages/OverviewPage.js +36 -10
  52. package/dist/src/sync/v2/export/pages/OverviewPage.js.map +1 -1
  53. package/dist/src/sync/v2/generate/analyticalListReport.d.ts.map +1 -1
  54. package/dist/src/sync/v2/generate/analyticalListReport.js +55 -4
  55. package/dist/src/sync/v2/generate/analyticalListReport.js.map +1 -1
  56. package/dist/src/sync/v2/import/pages/objectPage.d.ts.map +1 -1
  57. package/dist/src/sync/v2/import/pages/objectPage.js +7 -1
  58. package/dist/src/sync/v2/import/pages/objectPage.js.map +1 -1
  59. package/dist/src/sync/v2/import/pages/overviewPage.d.ts.map +1 -1
  60. package/dist/src/sync/v2/import/pages/overviewPage.js +63 -53
  61. package/dist/src/sync/v2/import/pages/overviewPage.js.map +1 -1
  62. package/package.json +6 -7
@@ -6,282 +6,299 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
- exports.TableCard = exports.LinklistCard = exports.StackCard = exports.AnalyticalCard = exports.ListCard = exports.CustomCard = exports.CommonCardSettings = void 0;
9
+ exports.TableCard = exports.TableCardSettings = exports.LinklistCard = exports.LinkListCardSettings = exports.StackCard = exports.StackCardSettings = exports.AnalyticalCard = exports.AnalyticalCardSettings = exports.ListCard = exports.ListCardSettings = exports.CustomCard = exports.CommonCardSettings = exports.DefaultSpanObject = exports.ChartSettingsType = exports.exportDefaultSpan = void 0;
10
10
  const decorators_1 = require("../../../common/decoration/decorators");
11
11
  const application_1 = require("../../application");
12
- class CommonCardSettings {
12
+ function exportDefaultSpan(manifestSection, configPart, key) {
13
+ const value = configPart[key];
14
+ if (value === 'auto') {
15
+ manifestSection[key] = value;
16
+ } // else = object properties, handled by own sync rules
17
+ }
18
+ exports.exportDefaultSpan = exportDefaultSpan;
19
+ class ChartSettingsType {
13
20
  }
14
21
  __decorate([
15
22
  (0, decorators_1.syncRule)({
16
23
  manifest: {
17
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
24
+ path: () => (0, application_1.getOVPsettingPath)() + '/chartSettings'
18
25
  }
19
26
  })
20
- ], CommonCardSettings.prototype, "entitySet", void 0);
27
+ ], ChartSettingsType.prototype, "showDataLabel", void 0);
28
+ exports.ChartSettingsType = ChartSettingsType;
29
+ class DefaultSpanObject {
30
+ }
21
31
  __decorate([
22
32
  (0, decorators_1.syncRule)({
23
33
  manifest: {
24
34
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
25
35
  }
26
36
  })
27
- ], CommonCardSettings.prototype, "title", void 0);
37
+ ], DefaultSpanObject.prototype, "cols", void 0);
28
38
  __decorate([
29
39
  (0, decorators_1.syncRule)({
30
40
  manifest: {
31
41
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
32
42
  }
33
43
  })
34
- ], CommonCardSettings.prototype, "subTitle", void 0);
44
+ ], DefaultSpanObject.prototype, "rows", void 0);
35
45
  __decorate([
36
46
  (0, decorators_1.syncRule)({
37
47
  manifest: {
38
48
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
39
49
  }
40
50
  })
41
- ], CommonCardSettings.prototype, "identificationAnnotationPath", void 0);
51
+ ], DefaultSpanObject.prototype, "showOnlyHeader", void 0);
42
52
  __decorate([
43
53
  (0, decorators_1.syncRule)({
44
54
  manifest: {
45
55
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
46
56
  }
47
57
  })
48
- ], CommonCardSettings.prototype, "selectionAnnotationPath", void 0);
58
+ ], DefaultSpanObject.prototype, "minimumTitleRow", void 0);
49
59
  __decorate([
50
60
  (0, decorators_1.syncRule)({
51
61
  manifest: {
52
62
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
53
63
  }
54
64
  })
55
- ], CommonCardSettings.prototype, "presentationAnnotationPath", void 0);
65
+ ], DefaultSpanObject.prototype, "minimumSubTitleRow", void 0);
66
+ exports.DefaultSpanObject = DefaultSpanObject;
67
+ class CommonCardSettings {
68
+ }
56
69
  __decorate([
57
70
  (0, decorators_1.syncRule)({
58
71
  manifest: {
59
72
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
60
73
  }
61
74
  })
62
- ], CommonCardSettings.prototype, "defaultSpan", void 0);
75
+ ], CommonCardSettings.prototype, "entitySet", void 0);
63
76
  __decorate([
64
77
  (0, decorators_1.syncRule)({
65
78
  manifest: {
66
79
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
67
80
  }
68
81
  })
69
- ], CommonCardSettings.prototype, "requireAppAuthorization", void 0);
82
+ ], CommonCardSettings.prototype, "title", void 0);
70
83
  __decorate([
71
84
  (0, decorators_1.syncRule)({
72
85
  manifest: {
73
86
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
74
87
  }
75
88
  })
76
- ], CommonCardSettings.prototype, "tabs", void 0);
89
+ ], CommonCardSettings.prototype, "subTitle", void 0);
77
90
  __decorate([
78
91
  (0, decorators_1.syncRule)({
79
92
  manifest: {
80
93
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
81
94
  }
82
95
  })
83
- ], CommonCardSettings.prototype, "addODataSelect", void 0);
84
- exports.CommonCardSettings = CommonCardSettings;
85
- class CustomCard extends CommonCardSettings {
86
- }
96
+ ], CommonCardSettings.prototype, "annotationPath", void 0);
87
97
  __decorate([
88
98
  (0, decorators_1.syncRule)({
89
99
  manifest: {
90
100
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
91
101
  }
92
102
  })
93
- ], CustomCard.prototype, "model", void 0);
103
+ ], CommonCardSettings.prototype, "dataPointAnnotationPath", void 0);
94
104
  __decorate([
95
105
  (0, decorators_1.syncRule)({
96
106
  manifest: {
97
107
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
98
108
  }
99
109
  })
100
- ], CustomCard.prototype, "template", void 0);
110
+ ], CommonCardSettings.prototype, "selectionPresentationAnnotationPath", void 0);
101
111
  __decorate([
102
112
  (0, decorators_1.syncRule)({
103
113
  manifest: {
104
114
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
105
115
  }
106
116
  })
107
- ], CustomCard.prototype, "settings", void 0);
117
+ ], CommonCardSettings.prototype, "kpiAnnotationPath", void 0);
108
118
  __decorate([
109
119
  (0, decorators_1.syncRule)({
110
120
  manifest: {
111
121
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
112
122
  }
113
123
  })
114
- ], CustomCard.prototype, "itemText", void 0);
124
+ ], CommonCardSettings.prototype, "category", void 0);
115
125
  __decorate([
116
126
  (0, decorators_1.syncRule)({
117
127
  manifest: {
118
128
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
119
129
  }
120
130
  })
121
- ], CustomCard.prototype, "valueSelectionInfo", void 0);
131
+ ], CommonCardSettings.prototype, "dynamicSubtitleAnnotationPath", void 0);
122
132
  __decorate([
123
133
  (0, decorators_1.syncRule)({
124
134
  manifest: {
125
135
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
126
136
  }
127
137
  })
128
- ], CustomCard.prototype, "staticContent", void 0);
138
+ ], CommonCardSettings.prototype, "valueSelectionInfo", void 0);
129
139
  __decorate([
130
140
  (0, decorators_1.syncRule)({
131
141
  manifest: {
132
142
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
133
143
  }
134
144
  })
135
- ], CustomCard.prototype, "listFlavor", void 0);
145
+ ], CommonCardSettings.prototype, "showFilterInHeader", void 0);
136
146
  __decorate([
137
147
  (0, decorators_1.syncRule)({
138
148
  manifest: {
139
149
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
140
150
  }
141
151
  })
142
- ], CustomCard.prototype, "listType", void 0);
152
+ ], CommonCardSettings.prototype, "sortBy", void 0);
143
153
  __decorate([
144
154
  (0, decorators_1.syncRule)({
145
155
  manifest: {
146
156
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
147
157
  }
148
158
  })
149
- ], CustomCard.prototype, "sortBy", void 0);
159
+ ], CommonCardSettings.prototype, "sortOrder", void 0);
150
160
  __decorate([
151
161
  (0, decorators_1.syncRule)({
152
162
  manifest: {
153
163
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
154
164
  }
155
165
  })
156
- ], CustomCard.prototype, "sortOrder", void 0);
166
+ ], CommonCardSettings.prototype, "identificationAnnotationPath", void 0);
157
167
  __decorate([
158
168
  (0, decorators_1.syncRule)({
159
169
  manifest: {
160
170
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
161
171
  }
162
172
  })
163
- ], CustomCard.prototype, "annotationPath", void 0);
173
+ ], CommonCardSettings.prototype, "selectionAnnotationPath", void 0);
164
174
  __decorate([
165
175
  (0, decorators_1.syncRule)({
166
176
  manifest: {
167
177
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
168
178
  }
169
179
  })
170
- ], CustomCard.prototype, "chartAnnotationPath", void 0);
180
+ ], CommonCardSettings.prototype, "presentationAnnotationPath", void 0);
171
181
  __decorate([
172
182
  (0, decorators_1.syncRule)({
173
183
  manifest: {
174
184
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
175
185
  }
176
186
  })
177
- ], CustomCard.prototype, "dataPointAnnotationPath", void 0);
187
+ ], CommonCardSettings.prototype, "enableLocaleCurrencyFormatting", void 0);
178
188
  __decorate([
179
189
  (0, decorators_1.syncRule)({
180
190
  manifest: {
181
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
191
+ path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys),
192
+ export: exportDefaultSpan
182
193
  }
183
194
  })
184
- ], CustomCard.prototype, "kpiAnnotationPath", void 0);
195
+ ], CommonCardSettings.prototype, "defaultSpan", void 0);
185
196
  __decorate([
186
197
  (0, decorators_1.syncRule)({
187
198
  manifest: {
188
199
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
189
200
  }
190
201
  })
191
- ], CustomCard.prototype, "selectionPresentationAnnotationPath", void 0);
202
+ ], CommonCardSettings.prototype, "requireAppAuthorization", void 0);
192
203
  __decorate([
193
204
  (0, decorators_1.syncRule)({
194
205
  manifest: {
195
206
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
196
207
  }
197
208
  })
198
- ], CustomCard.prototype, "dynamicSubtitleAnnotationPath", void 0);
209
+ ], CommonCardSettings.prototype, "showSortingInHeader", void 0);
199
210
  __decorate([
200
211
  (0, decorators_1.syncRule)({
201
212
  manifest: {
202
213
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
203
214
  }
204
215
  })
205
- ], CustomCard.prototype, "ignoreSapText", void 0);
216
+ ], CommonCardSettings.prototype, "tabs", void 0);
206
217
  __decorate([
207
218
  (0, decorators_1.syncRule)({
208
219
  manifest: {
209
220
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
210
221
  }
211
222
  })
212
- ], CustomCard.prototype, "objectStreamCardsSettings", void 0);
223
+ ], CommonCardSettings.prototype, "addODataSelect", void 0);
213
224
  __decorate([
214
225
  (0, decorators_1.syncRule)({
215
226
  manifest: {
216
227
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
217
228
  }
218
229
  })
219
- ], CustomCard.prototype, "enableLocaleCurrencyFormatting", void 0);
230
+ ], CommonCardSettings.prototype, "showRefresh", void 0);
220
231
  __decorate([
221
232
  (0, decorators_1.syncRule)({
222
233
  manifest: {
223
234
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
224
235
  }
225
236
  })
226
- ], CustomCard.prototype, "navigation", void 0);
237
+ ], CommonCardSettings.prototype, "customParams", void 0);
238
+ exports.CommonCardSettings = CommonCardSettings;
239
+ class CustomCard {
240
+ }
227
241
  __decorate([
228
242
  (0, decorators_1.syncRule)({
229
243
  manifest: {
230
244
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
231
245
  }
232
246
  })
233
- ], CustomCard.prototype, "showFilterInHeader", void 0);
247
+ ], CustomCard.prototype, "model", void 0);
234
248
  __decorate([
235
249
  (0, decorators_1.syncRule)({
236
250
  manifest: {
237
251
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
238
252
  }
239
253
  })
240
- ], CustomCard.prototype, "showSortingInHeader", void 0);
254
+ ], CustomCard.prototype, "template", void 0);
241
255
  __decorate([
242
256
  (0, decorators_1.syncRule)({
243
257
  manifest: {
244
258
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
245
259
  }
246
260
  })
247
- ], CustomCard.prototype, "imageSupported", void 0);
261
+ ], CustomCard.prototype, "settings", void 0);
262
+ exports.CustomCard = CustomCard;
263
+ class ListCardSettings extends CommonCardSettings {
264
+ }
248
265
  __decorate([
249
266
  (0, decorators_1.syncRule)({
250
267
  manifest: {
251
268
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
252
269
  }
253
270
  })
254
- ], CustomCard.prototype, "showLineItemDetail", void 0);
271
+ ], ListCardSettings.prototype, "showLineItemDetail", void 0);
255
272
  __decorate([
256
273
  (0, decorators_1.syncRule)({
257
274
  manifest: {
258
275
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
259
276
  }
260
277
  })
261
- ], CustomCard.prototype, "showLabelText", void 0);
278
+ ], ListCardSettings.prototype, "imageSupported", void 0);
262
279
  __decorate([
263
280
  (0, decorators_1.syncRule)({
264
281
  manifest: {
265
282
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
266
283
  }
267
284
  })
268
- ], CustomCard.prototype, "customParams", void 0);
285
+ ], ListCardSettings.prototype, "enableAddToInsights", void 0);
269
286
  __decorate([
270
287
  (0, decorators_1.syncRule)({
271
288
  manifest: {
272
289
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
273
290
  }
274
291
  })
275
- ], CustomCard.prototype, "chartProperties", void 0);
292
+ ], ListCardSettings.prototype, "listFlavor", void 0);
276
293
  __decorate([
277
294
  (0, decorators_1.syncRule)({
278
295
  manifest: {
279
296
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
280
297
  }
281
298
  })
282
- ], CustomCard.prototype, "colorPalette", void 0);
283
- exports.CustomCard = CustomCard;
284
- class ListCard extends CommonCardSettings {
299
+ ], ListCardSettings.prototype, "listType", void 0);
300
+ exports.ListCardSettings = ListCardSettings;
301
+ class ListCard {
285
302
  }
286
303
  __decorate([
287
304
  (0, decorators_1.syncRule)({
@@ -297,71 +314,60 @@ __decorate([
297
314
  }
298
315
  })
299
316
  ], ListCard.prototype, "template", void 0);
317
+ exports.ListCard = ListCard;
318
+ class AnalyticalCardSettings extends CommonCardSettings {
319
+ }
300
320
  __decorate([
301
321
  (0, decorators_1.syncRule)({
302
322
  manifest: {
303
323
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
304
324
  }
305
325
  })
306
- ], ListCard.prototype, "settings", void 0);
307
- __decorate([
308
- (0, decorators_1.syncRule)({
309
- manifest: {
310
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
311
- }
312
- })
313
- ], ListCard.prototype, "listCardSettings", void 0);
314
- __decorate([
315
- (0, decorators_1.syncRule)({
316
- manifest: {
317
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
318
- }
319
- })
320
- ], ListCard.prototype, "listFlavor", void 0);
326
+ ], AnalyticalCardSettings.prototype, "chartAnnotationPath", void 0);
321
327
  __decorate([
322
328
  (0, decorators_1.syncRule)({
323
329
  manifest: {
324
330
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
325
331
  }
326
332
  })
327
- ], ListCard.prototype, "listType", void 0);
333
+ ], AnalyticalCardSettings.prototype, "ignoreSapText", void 0);
328
334
  __decorate([
329
335
  (0, decorators_1.syncRule)({
330
336
  manifest: {
331
337
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
332
338
  }
333
339
  })
334
- ], ListCard.prototype, "annotationPath", void 0);
340
+ ], AnalyticalCardSettings.prototype, "enableAddToInsights", void 0);
335
341
  __decorate([
336
342
  (0, decorators_1.syncRule)({
337
343
  manifest: {
338
344
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
339
345
  }
340
346
  })
341
- ], ListCard.prototype, "valueSelectionInfo", void 0);
347
+ ], AnalyticalCardSettings.prototype, "navigation", void 0);
342
348
  __decorate([
343
349
  (0, decorators_1.syncRule)({
344
350
  manifest: {
345
351
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
346
352
  }
347
353
  })
348
- ], ListCard.prototype, "sortBy", void 0);
354
+ ], AnalyticalCardSettings.prototype, "valueSelectionInfo", void 0);
349
355
  __decorate([
350
356
  (0, decorators_1.syncRule)({
351
357
  manifest: {
352
358
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
353
359
  }
354
360
  })
355
- ], ListCard.prototype, "sortOrder", void 0);
361
+ ], AnalyticalCardSettings.prototype, "chartProperties", void 0);
356
362
  __decorate([
357
363
  (0, decorators_1.syncRule)({
358
364
  manifest: {
359
365
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
360
366
  }
361
367
  })
362
- ], ListCard.prototype, "dataPointAnnotationPath", void 0);
363
- exports.ListCard = ListCard;
364
- class AnalyticalCard extends CommonCardSettings {
368
+ ], AnalyticalCardSettings.prototype, "colorPalette", void 0);
369
+ exports.AnalyticalCardSettings = AnalyticalCardSettings;
370
+ class AnalyticalCard {
365
371
  }
366
372
  __decorate([
367
373
  (0, decorators_1.syncRule)({
@@ -377,43 +383,32 @@ __decorate([
377
383
  }
378
384
  })
379
385
  ], AnalyticalCard.prototype, "template", void 0);
386
+ exports.AnalyticalCard = AnalyticalCard;
387
+ class StackCardSettings extends CommonCardSettings {
388
+ }
380
389
  __decorate([
381
390
  (0, decorators_1.syncRule)({
382
391
  manifest: {
383
392
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
384
393
  }
385
394
  })
386
- ], AnalyticalCard.prototype, "settings", void 0);
387
- __decorate([
388
- (0, decorators_1.syncRule)({
389
- manifest: {
390
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
391
- }
392
- })
393
- ], AnalyticalCard.prototype, "analyticalCardSettings", void 0);
394
- __decorate([
395
- (0, decorators_1.syncRule)({
396
- manifest: {
397
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
398
- }
399
- })
400
- ], AnalyticalCard.prototype, "chartAnnotationPath", void 0);
395
+ ], StackCardSettings.prototype, "itemText", void 0);
401
396
  __decorate([
402
397
  (0, decorators_1.syncRule)({
403
398
  manifest: {
404
399
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
405
400
  }
406
401
  })
407
- ], AnalyticalCard.prototype, "dataPointAnnotationPath", void 0);
402
+ ], StackCardSettings.prototype, "objectStreamCardsNavigationProperty", void 0);
408
403
  __decorate([
409
404
  (0, decorators_1.syncRule)({
410
405
  manifest: {
411
406
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
412
407
  }
413
408
  })
414
- ], AnalyticalCard.prototype, "valueSelectionInfo", void 0);
415
- exports.AnalyticalCard = AnalyticalCard;
416
- class StackCard extends CommonCardSettings {
409
+ ], StackCardSettings.prototype, "objectStreamCardsSettings", void 0);
410
+ exports.StackCardSettings = StackCardSettings;
411
+ class StackCard {
417
412
  }
418
413
  __decorate([
419
414
  (0, decorators_1.syncRule)({
@@ -429,36 +424,32 @@ __decorate([
429
424
  }
430
425
  })
431
426
  ], StackCard.prototype, "template", void 0);
427
+ exports.StackCard = StackCard;
428
+ class LinkListCardSettings extends CommonCardSettings {
429
+ }
432
430
  __decorate([
433
431
  (0, decorators_1.syncRule)({
434
432
  manifest: {
435
433
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
436
434
  }
437
435
  })
438
- ], StackCard.prototype, "settings", void 0);
439
- __decorate([
440
- (0, decorators_1.syncRule)({
441
- manifest: {
442
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
443
- }
444
- })
445
- ], StackCard.prototype, "stackCardSettings", void 0);
436
+ ], LinkListCardSettings.prototype, "listFlavor", void 0);
446
437
  __decorate([
447
438
  (0, decorators_1.syncRule)({
448
439
  manifest: {
449
440
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
450
441
  }
451
442
  })
452
- ], StackCard.prototype, "itemText", void 0);
443
+ ], LinkListCardSettings.prototype, "headerAnnotationPath", void 0);
453
444
  __decorate([
454
445
  (0, decorators_1.syncRule)({
455
446
  manifest: {
456
447
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
457
448
  }
458
449
  })
459
- ], StackCard.prototype, "objectStreamCardsNavigationProperty", void 0);
460
- exports.StackCard = StackCard;
461
- class LinklistCard extends CommonCardSettings {
450
+ ], LinkListCardSettings.prototype, "staticContent", void 0);
451
+ exports.LinkListCardSettings = LinkListCardSettings;
452
+ class LinklistCard {
462
453
  }
463
454
  __decorate([
464
455
  (0, decorators_1.syncRule)({
@@ -474,106 +465,25 @@ __decorate([
474
465
  }
475
466
  })
476
467
  ], LinklistCard.prototype, "template", void 0);
468
+ exports.LinklistCard = LinklistCard;
469
+ class TableCardSettings extends CommonCardSettings {
470
+ }
477
471
  __decorate([
478
472
  (0, decorators_1.syncRule)({
479
473
  manifest: {
480
474
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
481
475
  }
482
476
  })
483
- ], LinklistCard.prototype, "settings", void 0);
484
- __decorate([
485
- (0, decorators_1.syncRule)({
486
- manifest: {
487
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
488
- }
489
- })
490
- ], LinklistCard.prototype, "linkListCardSettings", void 0);
491
- __decorate([
492
- (0, decorators_1.syncRule)({
493
- manifest: {
494
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
495
- }
496
- })
497
- ], LinklistCard.prototype, "title", void 0);
498
- __decorate([
499
- (0, decorators_1.syncRule)({
500
- manifest: {
501
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
502
- }
503
- })
504
- ], LinklistCard.prototype, "subTitle", void 0);
505
- __decorate([
506
- (0, decorators_1.syncRule)({
507
- manifest: {
508
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
509
- }
510
- })
511
- ], LinklistCard.prototype, "targetUri", void 0);
512
- __decorate([
513
- (0, decorators_1.syncRule)({
514
- manifest: {
515
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
516
- }
517
- })
518
- ], LinklistCard.prototype, "listFlavor", void 0);
519
- __decorate([
520
- (0, decorators_1.syncRule)({
521
- manifest: {
522
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
523
- }
524
- })
525
- ], LinklistCard.prototype, "sortBy", void 0);
526
- __decorate([
527
- (0, decorators_1.syncRule)({
528
- manifest: {
529
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
530
- }
531
- })
532
- ], LinklistCard.prototype, "sortOrder", void 0);
533
- __decorate([
534
- (0, decorators_1.syncRule)({
535
- manifest: {
536
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
537
- }
538
- })
539
- ], LinklistCard.prototype, "headerAnnotationPath", void 0);
540
- __decorate([
541
- (0, decorators_1.syncRule)({
542
- manifest: {
543
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
544
- }
545
- })
546
- ], LinklistCard.prototype, "identificationAnnotationPath", void 0);
547
- __decorate([
548
- (0, decorators_1.syncRule)({
549
- manifest: {
550
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
551
- }
552
- })
553
- ], LinklistCard.prototype, "defaultSpan", void 0);
554
- __decorate([
555
- (0, decorators_1.syncRule)({
556
- manifest: {
557
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
558
- }
559
- })
560
- ], LinklistCard.prototype, "staticContent", void 0);
561
- __decorate([
562
- (0, decorators_1.syncRule)({
563
- manifest: {
564
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
565
- }
566
- })
567
- ], LinklistCard.prototype, "requireAppAuthorization", void 0);
477
+ ], TableCardSettings.prototype, "showLineItemDetail", void 0);
568
478
  __decorate([
569
479
  (0, decorators_1.syncRule)({
570
480
  manifest: {
571
481
  path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
572
482
  }
573
483
  })
574
- ], LinklistCard.prototype, "annotationPath", void 0);
575
- exports.LinklistCard = LinklistCard;
576
- class TableCard extends CommonCardSettings {
484
+ ], TableCardSettings.prototype, "enableAddToInsights", void 0);
485
+ exports.TableCardSettings = TableCardSettings;
486
+ class TableCard {
577
487
  }
578
488
  __decorate([
579
489
  (0, decorators_1.syncRule)({
@@ -589,68 +499,5 @@ __decorate([
589
499
  }
590
500
  })
591
501
  ], TableCard.prototype, "template", void 0);
592
- __decorate([
593
- (0, decorators_1.syncRule)({
594
- manifest: {
595
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
596
- }
597
- })
598
- ], TableCard.prototype, "disableTableCardFlexibility", void 0);
599
- __decorate([
600
- (0, decorators_1.syncRule)({
601
- manifest: {
602
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
603
- }
604
- })
605
- ], TableCard.prototype, "settings", void 0);
606
- __decorate([
607
- (0, decorators_1.syncRule)({
608
- manifest: {
609
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
610
- }
611
- })
612
- ], TableCard.prototype, "tableCardSettings", void 0);
613
- __decorate([
614
- (0, decorators_1.syncRule)({
615
- manifest: {
616
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
617
- }
618
- })
619
- ], TableCard.prototype, "annotationPath", void 0);
620
- __decorate([
621
- (0, decorators_1.syncRule)({
622
- manifest: {
623
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
624
- }
625
- })
626
- ], TableCard.prototype, "listFlavor", void 0);
627
- __decorate([
628
- (0, decorators_1.syncRule)({
629
- manifest: {
630
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
631
- }
632
- })
633
- ], TableCard.prototype, "listType", void 0);
634
- __decorate([
635
- (0, decorators_1.syncRule)({
636
- manifest: {
637
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
638
- }
639
- })
640
- ], TableCard.prototype, "dataPointAnnotationPath", void 0);
641
- __decorate([
642
- (0, decorators_1.syncRule)({
643
- manifest: {
644
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
645
- }
646
- })
647
- ], TableCard.prototype, "selectionPresentationAnnotationPath", void 0);
648
- __decorate([
649
- (0, decorators_1.syncRule)({
650
- manifest: {
651
- path: (cardKeys) => (0, application_1.getCardSettingsPath)(cardKeys)
652
- }
653
- })
654
- ], TableCard.prototype, "valueSelectionInfo", void 0);
655
502
  exports.TableCard = TableCard;
656
503
  //# sourceMappingURL=Card.js.map