@sapui5/sap.viz 1.140.0 → 1.141.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/package.json +1 -1
- package/src/sap/viz/.library +1 -1
- package/src/sap/viz/library.js +194 -1
- package/src/sap/viz/libs/sap-viz-info-charts.js +827 -170
- package/src/sap/viz/libs/sap-viz-info-framework.js +329 -9
- package/src/sap/viz/resources/chart/templates/standard_fiori/template.js +24 -4
- package/src/sap/viz/themes/base/shared.less +15 -1
- package/src/sap/viz/ui5/controls/chartpopover/ContentPanel.js +1 -1
- package/src/sap/viz/ui5/core/BaseChartMetadata.js +1 -1
- package/src/sap/viz/ui5/theming/Util.js +37 -36
package/package.json
CHANGED
package/src/sap/viz/.library
CHANGED
package/src/sap/viz/library.js
CHANGED
|
@@ -283,7 +283,7 @@ sap.ui.define([
|
|
|
283
283
|
|
|
284
284
|
//@@end generated-elements-list
|
|
285
285
|
],
|
|
286
|
-
version: "1.
|
|
286
|
+
version: "1.141.0"
|
|
287
287
|
});
|
|
288
288
|
|
|
289
289
|
//@@begin generated-enums
|
|
@@ -2184,6 +2184,199 @@ sap.ui.define([
|
|
|
2184
2184
|
sap.viz.api.env.globalSettings({
|
|
2185
2185
|
'colorMapping': mapping
|
|
2186
2186
|
});
|
|
2187
|
+
|
|
2188
|
+
var accStyle = [
|
|
2189
|
+
// Semantic border styles
|
|
2190
|
+
'sapChart_Sequence_Bad_BorderColor',
|
|
2191
|
+
'sapChart_Sequence_Critical_BorderColor',
|
|
2192
|
+
'sapChart_Sequence_Good_BorderColor',
|
|
2193
|
+
'sapChart_Sequence_Neutral_BorderColor',
|
|
2194
|
+
'sapElement_BorderWidth',
|
|
2195
|
+
|
|
2196
|
+
// New border colors from AccColorPalette
|
|
2197
|
+
'sapChart_Sequence_1_BorderColor',
|
|
2198
|
+
'sapChart_Sequence_6_BorderColor',
|
|
2199
|
+
'sapChart_Sequence_12_BorderColor',
|
|
2200
|
+
|
|
2201
|
+
// New semantic text colors from AccColorPalette
|
|
2202
|
+
'sapChart_Sequence_Good_Plus3_TextColor',
|
|
2203
|
+
'sapChart_Sequence_Good_Plus2_TextColor',
|
|
2204
|
+
'sapChart_Sequence_Good_Plus1_TextColor',
|
|
2205
|
+
'sapChart_Sequence_Good_TextColor',
|
|
2206
|
+
'sapChart_Sequence_Good_Minus1_TextColor',
|
|
2207
|
+
'sapChart_Sequence_Good_Minus2_TextColor',
|
|
2208
|
+
'sapChart_Sequence_Critical_Plus3_TextColor',
|
|
2209
|
+
'sapChart_Sequence_Critical_Plus2_TextColor',
|
|
2210
|
+
'sapChart_Sequence_Critical_Plus1_TextColor',
|
|
2211
|
+
'sapChart_Sequence_Critical_TextColor',
|
|
2212
|
+
'sapChart_Sequence_Critical_Minus1_TextColor',
|
|
2213
|
+
'sapChart_Sequence_Critical_Minus2_TextColor',
|
|
2214
|
+
'sapChart_Sequence_Bad_Plus3_TextColor',
|
|
2215
|
+
'sapChart_Sequence_Bad_Plus2_TextColor',
|
|
2216
|
+
'sapChart_Sequence_Bad_Plus1_TextColor',
|
|
2217
|
+
'sapChart_Sequence_Bad_TextColor',
|
|
2218
|
+
'sapChart_Sequence_Bad_Minus1_TextColor',
|
|
2219
|
+
'sapChart_Sequence_Bad_Minus2_TextColor',
|
|
2220
|
+
'sapChart_Sequence_Neutral_Plus3_TextColor',
|
|
2221
|
+
'sapChart_Sequence_Neutral_Plus2_TextColor',
|
|
2222
|
+
'sapChart_Sequence_Neutral_Plus1_TextColor',
|
|
2223
|
+
'sapChart_Sequence_Neutral_TextColor',
|
|
2224
|
+
'sapChart_Sequence_Neutral_Minus1_TextColor',
|
|
2225
|
+
'sapChart_Sequence_Neutral_Minus2_TextColor',
|
|
2226
|
+
|
|
2227
|
+
// New sequence text colors from AccColorPalette
|
|
2228
|
+
'sapChart_Sequence_1_Minus2_TextColor',
|
|
2229
|
+
'sapChart_Sequence_1_Minus1_TextColor',
|
|
2230
|
+
'sapChart_Sequence_1_TextColor',
|
|
2231
|
+
'sapChart_Sequence_1_Plus1_TextColor',
|
|
2232
|
+
'sapChart_Sequence_1_Plus2_TextColor',
|
|
2233
|
+
'sapChart_Sequence_1_Plus3_TextColor',
|
|
2234
|
+
'sapChart_Sequence_2_Minus2_TextColor',
|
|
2235
|
+
'sapChart_Sequence_2_Minus1_TextColor',
|
|
2236
|
+
'sapChart_Sequence_2_TextColor',
|
|
2237
|
+
'sapChart_Sequence_2_Plus1_TextColor',
|
|
2238
|
+
'sapChart_Sequence_2_Plus2_TextColor',
|
|
2239
|
+
'sapChart_Sequence_2_Plus3_TextColor',
|
|
2240
|
+
'sapChart_Sequence_3_Minus2_TextColor',
|
|
2241
|
+
'sapChart_Sequence_3_Minus1_TextColor',
|
|
2242
|
+
'sapChart_Sequence_3_TextColor',
|
|
2243
|
+
'sapChart_Sequence_3_Plus1_TextColor',
|
|
2244
|
+
'sapChart_Sequence_3_Plus2_TextColor',
|
|
2245
|
+
'sapChart_Sequence_3_Plus3_TextColor',
|
|
2246
|
+
'sapChart_Sequence_6_Minus2_TextColor',
|
|
2247
|
+
'sapChart_Sequence_6_Minus1_TextColor',
|
|
2248
|
+
'sapChart_Sequence_6_TextColor',
|
|
2249
|
+
'sapChart_Sequence_6_Plus1_TextColor',
|
|
2250
|
+
'sapChart_Sequence_6_Plus2_TextColor',
|
|
2251
|
+
'sapChart_Sequence_6_Plus3_TextColor',
|
|
2252
|
+
'sapChart_Sequence_12_Minus2_TextColor',
|
|
2253
|
+
'sapChart_Sequence_12_Minus1_TextColor',
|
|
2254
|
+
'sapChart_Sequence_12_TextColor',
|
|
2255
|
+
'sapChart_Sequence_12_Plus1_TextColor',
|
|
2256
|
+
'sapChart_Sequence_12_Plus2_TextColor',
|
|
2257
|
+
'sapChart_Sequence_12_Plus3_TextColor',
|
|
2258
|
+
|
|
2259
|
+
// New text shadows from AccColorPalette
|
|
2260
|
+
'sapChart_Sequence_Good_Plus3_TextShadow',
|
|
2261
|
+
'sapChart_Sequence_Good_Plus2_TextShadow',
|
|
2262
|
+
'sapChart_Sequence_Good_Plus1_TextShadow',
|
|
2263
|
+
'sapChart_Sequence_Good_TextShadow',
|
|
2264
|
+
'sapChart_Sequence_Good_Minus1_TextShadow',
|
|
2265
|
+
'sapChart_Sequence_Good_Minus2_TextShadow',
|
|
2266
|
+
'sapChart_Sequence_Critical_Plus3_TextShadow',
|
|
2267
|
+
'sapChart_Sequence_Critical_Plus2_TextShadow',
|
|
2268
|
+
'sapChart_Sequence_Critical_Plus1_TextShadow',
|
|
2269
|
+
'sapChart_Sequence_Critical_TextShadow',
|
|
2270
|
+
'sapChart_Sequence_Critical_Minus1_TextShadow',
|
|
2271
|
+
'sapChart_Sequence_Critical_Minus2_TextShadow',
|
|
2272
|
+
'sapChart_Sequence_Bad_Plus3_TextShadow',
|
|
2273
|
+
'sapChart_Sequence_Bad_Plus2_TextShadow',
|
|
2274
|
+
'sapChart_Sequence_Bad_Plus1_TextShadow',
|
|
2275
|
+
'sapChart_Sequence_Bad_TextShadow',
|
|
2276
|
+
'sapChart_Sequence_Bad_Minus1_TextShadow',
|
|
2277
|
+
'sapChart_Sequence_Bad_Minus2_TextShadow',
|
|
2278
|
+
'sapChart_Sequence_Neutral_Plus3_TextShadow',
|
|
2279
|
+
'sapChart_Sequence_Neutral_Plus2_TextShadow',
|
|
2280
|
+
'sapChart_Sequence_Neutral_Plus1_TextShadow',
|
|
2281
|
+
'sapChart_Sequence_Neutral_TextShadow',
|
|
2282
|
+
'sapChart_Sequence_Neutral_Minus1_TextShadow',
|
|
2283
|
+
'sapChart_Sequence_Neutral_Minus2_TextShadow',
|
|
2284
|
+
'sapChart_Sequence_1_Minus2_TextShadow',
|
|
2285
|
+
'sapChart_Sequence_1_Minus1_TextShadow',
|
|
2286
|
+
'sapChart_Sequence_1_TextShadow',
|
|
2287
|
+
'sapChart_Sequence_1_Plus1_TextShadow',
|
|
2288
|
+
'sapChart_Sequence_1_Plus2_TextShadow',
|
|
2289
|
+
'sapChart_Sequence_1_Plus3_TextShadow',
|
|
2290
|
+
'sapChart_Sequence_2_Minus2_TextShadow',
|
|
2291
|
+
'sapChart_Sequence_2_Minus1_TextShadow',
|
|
2292
|
+
'sapChart_Sequence_2_TextShadow',
|
|
2293
|
+
'sapChart_Sequence_2_Plus1_TextShadow',
|
|
2294
|
+
'sapChart_Sequence_2_Plus2_TextShadow',
|
|
2295
|
+
'sapChart_Sequence_2_Plus3_TextShadow',
|
|
2296
|
+
'sapChart_Sequence_3_Minus2_TextShadow',
|
|
2297
|
+
'sapChart_Sequence_3_Minus1_TextShadow',
|
|
2298
|
+
'sapChart_Sequence_3_TextShadow',
|
|
2299
|
+
'sapChart_Sequence_3_Plus1_TextShadow',
|
|
2300
|
+
'sapChart_Sequence_3_Plus2_TextShadow',
|
|
2301
|
+
'sapChart_Sequence_3_Plus3_TextShadow',
|
|
2302
|
+
'sapChart_Sequence_6_Minus2_TextShadow',
|
|
2303
|
+
'sapChart_Sequence_6_Minus1_TextShadow',
|
|
2304
|
+
'sapChart_Sequence_6_TextShadow',
|
|
2305
|
+
'sapChart_Sequence_6_Plus1_TextShadow',
|
|
2306
|
+
'sapChart_Sequence_6_Plus2_TextShadow',
|
|
2307
|
+
'sapChart_Sequence_6_Plus3_TextShadow',
|
|
2308
|
+
'sapChart_Sequence_12_Minus2_TextShadow',
|
|
2309
|
+
'sapChart_Sequence_12_Minus1_TextShadow',
|
|
2310
|
+
'sapChart_Sequence_12_TextShadow',
|
|
2311
|
+
'sapChart_Sequence_12_Plus1_TextShadow',
|
|
2312
|
+
'sapChart_Sequence_12_Plus2_TextShadow',
|
|
2313
|
+
'sapChart_Sequence_12_Plus3_TextShadow',
|
|
2314
|
+
|
|
2315
|
+
//Semantic colors
|
|
2316
|
+
'sapChart_Sequence_Bad_Plus3',
|
|
2317
|
+
'sapChart_Sequence_Bad_Plus2',
|
|
2318
|
+
'sapChart_Sequence_Bad_Plus1',
|
|
2319
|
+
'sapChart_Sequence_Bad',
|
|
2320
|
+
'sapChart_Sequence_Bad_Minus1',
|
|
2321
|
+
'sapChart_Sequence_Bad_Minus2',
|
|
2322
|
+
'sapChart_Sequence_Critical_Plus3',
|
|
2323
|
+
'sapChart_Sequence_Critical_Plus2',
|
|
2324
|
+
'sapChart_Sequence_Critical_Plus1',
|
|
2325
|
+
'sapChart_Sequence_Critical',
|
|
2326
|
+
'sapChart_Sequence_Critical_Minus1',
|
|
2327
|
+
'sapChart_Sequence_Critical_Minus2',
|
|
2328
|
+
'sapChart_Sequence_Good_Plus3',
|
|
2329
|
+
'sapChart_Sequence_Good_Plus2',
|
|
2330
|
+
'sapChart_Sequence_Good_Plus1',
|
|
2331
|
+
'sapChart_Sequence_Good',
|
|
2332
|
+
'sapChart_Sequence_Good_Minus1',
|
|
2333
|
+
'sapChart_Sequence_Good_Minus2',
|
|
2334
|
+
'sapChart_Sequence_Neutral_Plus3',
|
|
2335
|
+
'sapChart_Sequence_Neutral_Plus2',
|
|
2336
|
+
'sapChart_Sequence_Neutral_Plus1',
|
|
2337
|
+
'sapChart_Sequence_Neutral',
|
|
2338
|
+
'sapChart_Sequence_Neutral_Minus1',
|
|
2339
|
+
'sapChart_Sequence_Neutral_Minus2',
|
|
2340
|
+
'sapChart_Sequence_1_Plus3',
|
|
2341
|
+
'sapChart_Sequence_1_Plus2',
|
|
2342
|
+
'sapChart_Sequence_1_Plus1',
|
|
2343
|
+
'sapChart_Sequence_1',
|
|
2344
|
+
'sapChart_Sequence_1_Minus1',
|
|
2345
|
+
'sapChart_Sequence_1_Minus2',
|
|
2346
|
+
'sapChart_Sequence_2_Plus3',
|
|
2347
|
+
'sapChart_Sequence_2_Plus2',
|
|
2348
|
+
'sapChart_Sequence_2_Plus1',
|
|
2349
|
+
'sapChart_Sequence_2',
|
|
2350
|
+
'sapChart_Sequence_2_Minus1',
|
|
2351
|
+
'sapChart_Sequence_2_Minus2',
|
|
2352
|
+
'sapChart_Sequence_3_Plus3',
|
|
2353
|
+
'sapChart_Sequence_3_Plus2',
|
|
2354
|
+
'sapChart_Sequence_3_Plus1',
|
|
2355
|
+
'sapChart_Sequence_3',
|
|
2356
|
+
'sapChart_Sequence_3_Minus1',
|
|
2357
|
+
'sapChart_Sequence_3_Minus2',
|
|
2358
|
+
'sapChart_Sequence_6_Plus3',
|
|
2359
|
+
'sapChart_Sequence_6_Plus2',
|
|
2360
|
+
'sapChart_Sequence_6_Plus1',
|
|
2361
|
+
'sapChart_Sequence_6',
|
|
2362
|
+
'sapChart_Sequence_6_Minus1',
|
|
2363
|
+
'sapChart_Sequence_6_Minus2',
|
|
2364
|
+
'sapChart_Sequence_12_Plus3',
|
|
2365
|
+
'sapChart_Sequence_12_Plus2',
|
|
2366
|
+
'sapChart_Sequence_12_Plus1',
|
|
2367
|
+
'sapChart_Sequence_12',
|
|
2368
|
+
'sapChart_Sequence_12_Minus1',
|
|
2369
|
+
'sapChart_Sequence_12_Minus2',
|
|
2370
|
+
'sapChart_Sequence_12_Minus3'
|
|
2371
|
+
];
|
|
2372
|
+
var accStyleMapping = Parameters.get({
|
|
2373
|
+
name: accStyle,
|
|
2374
|
+
callback: function() {}
|
|
2375
|
+
});
|
|
2376
|
+
|
|
2377
|
+
sap.viz.api.env.globalSettings({
|
|
2378
|
+
'accStyleMapping': accStyleMapping
|
|
2379
|
+
});
|
|
2187
2380
|
};
|
|
2188
2381
|
|
|
2189
2382
|
thisLib._changeTemplate = function(template) {
|