@sapui5/ts-types 1.129.1 → 1.130.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.
Files changed (69) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -0
  3. package/types/sap.apf.d.ts +1 -1
  4. package/types/sap.ca.ui.d.ts +1 -1
  5. package/types/sap.chart.d.ts +1 -1
  6. package/types/sap.collaboration.d.ts +1 -1
  7. package/types/sap.cux.home.d.ts +42 -41
  8. package/types/sap.esh.search.ui.d.ts +1 -1
  9. package/types/sap.f.d.ts +83 -1
  10. package/types/sap.fe.base.d.ts +1 -1
  11. package/types/sap.fe.controls.d.ts +3 -0
  12. package/types/sap.fe.core.d.ts +45 -6
  13. package/types/sap.fe.ina.d.ts +1 -1
  14. package/types/sap.fe.macros.d.ts +508 -233
  15. package/types/sap.fe.navigation.d.ts +1 -1
  16. package/types/sap.fe.placeholder.d.ts +1 -1
  17. package/types/sap.fe.plugins.managecache.d.ts +1 -1
  18. package/types/sap.fe.templates.d.ts +5 -2
  19. package/types/sap.fe.test.d.ts +1 -1
  20. package/types/sap.fe.tools.d.ts +1 -1
  21. package/types/sap.feedback.ui.d.ts +1 -1
  22. package/types/sap.gantt.d.ts +727 -204
  23. package/types/sap.insights.d.ts +1 -1
  24. package/types/sap.m.d.ts +1291 -3674
  25. package/types/sap.makit.d.ts +1 -1
  26. package/types/sap.me.d.ts +1 -1
  27. package/types/sap.ndc.d.ts +1 -1
  28. package/types/sap.ovp.d.ts +1 -1
  29. package/types/sap.rules.ui.d.ts +1 -1
  30. package/types/sap.sac.df.d.ts +99 -16
  31. package/types/sap.suite.ui.commons.d.ts +232 -123
  32. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  33. package/types/sap.suite.ui.microchart.d.ts +251 -70
  34. package/types/sap.tnt.d.ts +1 -1
  35. package/types/sap.ui.codeeditor.d.ts +1 -1
  36. package/types/sap.ui.commons.d.ts +1 -1
  37. package/types/sap.ui.comp.d.ts +1 -25
  38. package/types/sap.ui.core.d.ts +116 -109
  39. package/types/sap.ui.dt.d.ts +1 -1
  40. package/types/sap.ui.export.d.ts +1 -1
  41. package/types/sap.ui.fl.d.ts +3 -1
  42. package/types/sap.ui.generic.app.d.ts +1 -1
  43. package/types/sap.ui.generic.template.d.ts +1 -1
  44. package/types/sap.ui.integration.d.ts +22 -5
  45. package/types/sap.ui.layout.d.ts +1 -1
  46. package/types/sap.ui.mdc.d.ts +269 -234
  47. package/types/sap.ui.richtexteditor.d.ts +1 -1
  48. package/types/sap.ui.rta.d.ts +1 -1
  49. package/types/sap.ui.suite.d.ts +1 -1
  50. package/types/sap.ui.support.d.ts +1 -1
  51. package/types/sap.ui.table.d.ts +6 -11
  52. package/types/sap.ui.testrecorder.d.ts +1 -1
  53. package/types/sap.ui.unified.d.ts +1 -1
  54. package/types/sap.ui.ux3.d.ts +1 -1
  55. package/types/sap.ui.vbm.d.ts +1 -1
  56. package/types/sap.ui.vk.d.ts +1 -1
  57. package/types/sap.ui.vtm.d.ts +1 -1
  58. package/types/sap.ui.webc.common.d.ts +1 -1
  59. package/types/sap.ui.webc.fiori.d.ts +1 -1
  60. package/types/sap.ui.webc.main.d.ts +1 -1
  61. package/types/sap.uiext.inbox.d.ts +1 -1
  62. package/types/sap.ushell.d.ts +1 -1
  63. package/types/sap.ushell_abap.d.ts +1 -1
  64. package/types/sap.uxap.d.ts +1 -1
  65. package/types/sap.viz.d.ts +1 -1
  66. package/types/sap.webanalytics.core.d.ts +1 -1
  67. package/types/sap.zen.commons.d.ts +1 -1
  68. package/types/sap.zen.crosstab.d.ts +1 -1
  69. package/types/sap.zen.dsh.d.ts +1 -1
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.129.0
1
+ // For Library Version: 1.130.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace suite {
@@ -213,9 +213,12 @@ declare namespace sap {
213
213
  interface $AreaMicroChartItemSettings
214
214
  extends sap.ui.core.$ElementSettings {
215
215
  /**
216
- * The graphic element color.
216
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
217
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
218
+ * 2.0 release.
217
219
  */
218
220
  color?:
221
+ | sap.suite.ui.microchart.MicroChartColorType
219
222
  | sap.m.ValueCSSColor
220
223
  | sap.ui.base.ManagedObject.PropertyBindingInfo
221
224
  | `{${string}}`;
@@ -241,9 +244,12 @@ declare namespace sap {
241
244
  interface $AreaMicroChartLabelSettings
242
245
  extends sap.ui.core.$ElementSettings {
243
246
  /**
244
- * The graphic element color.
247
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
248
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
249
+ * 2.0 release.
245
250
  */
246
251
  color?:
252
+ | sap.suite.ui.microchart.MicroChartColorType
247
253
  | sap.m.ValueCSSColor
248
254
  | sap.ui.base.ManagedObject.PropertyBindingInfo
249
255
  | `{${string}}`;
@@ -643,9 +649,12 @@ declare namespace sap {
643
649
  interface $ColumnMicroChartDataSettings
644
650
  extends sap.ui.core.$ElementSettings {
645
651
  /**
646
- * The graphic element color.
652
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
653
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
654
+ * 2.0 release.
647
655
  */
648
656
  color?:
657
+ | sap.suite.ui.microchart.MicroChartColorType
649
658
  | sap.m.ValueCSSColor
650
659
  | sap.ui.base.ManagedObject.PropertyBindingInfo
651
660
  | `{${string}}`;
@@ -681,9 +690,12 @@ declare namespace sap {
681
690
  interface $ColumnMicroChartLabelSettings
682
691
  extends sap.ui.core.$ElementSettings {
683
692
  /**
684
- * The graphic element color.
693
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
694
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
695
+ * 2.0 release.
685
696
  */
686
697
  color?:
698
+ | sap.suite.ui.microchart.MicroChartColorType
687
699
  | sap.m.ValueCSSColor
688
700
  | sap.ui.base.ManagedObject.PropertyBindingInfo
689
701
  | `{${string}}`;
@@ -835,9 +847,12 @@ declare namespace sap {
835
847
  | `{${string}}`;
836
848
 
837
849
  /**
838
- * The semantic color of the value.
850
+ * The semantic color of the value. For SAPUI5 1.x releases, we are going to use string as the type for
851
+ * Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the
852
+ * SAPUI5 2.0 release.
839
853
  */
840
854
  color?:
855
+ | sap.suite.ui.microchart.MicroChartColorType
841
856
  | sap.m.ValueCSSColor
842
857
  | sap.ui.base.ManagedObject.PropertyBindingInfo
843
858
  | `{${string}}`;
@@ -911,12 +926,11 @@ declare namespace sap {
911
926
  | sap.ui.base.ManagedObject.PropertyBindingInfo;
912
927
 
913
928
  /**
914
- * The semantic color of the delta value.
929
+ * The semantic color of the delta value. For SAPUI5 1.x releases, we are going to use string as the type
930
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from
931
+ * the SAPUI5 2.0 release.
915
932
  */
916
- color?:
917
- | sap.m.ValueCSSColor
918
- | sap.ui.base.ManagedObject.PropertyBindingInfo
919
- | `{${string}}`;
933
+ color?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
920
934
 
921
935
  /**
922
936
  * The view of the chart. If not set, the `Normal` view is used by default.
@@ -1137,9 +1151,11 @@ declare namespace sap {
1137
1151
  /**
1138
1152
  * The color of the sector representing the fraction value.
1139
1153
  * The same color is used for the fraction value label defined either by the `fraction` property or by the
1140
- * `fractionLabel` property.
1154
+ * `fractionLabel` property. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
1155
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
1141
1156
  */
1142
1157
  color?:
1158
+ | sap.suite.ui.microchart.MicroChartColorType
1143
1159
  | sap.m.ValueCSSColor
1144
1160
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1145
1161
  | `{${string}}`;
@@ -1798,8 +1814,12 @@ declare namespace sap {
1798
1814
  * Determines the color of the emphasized point. The property has an effect only if the 'show' property
1799
1815
  * is true. If at least one emphasized point has a color different from Neutral, the graph is grey; otherwise,
1800
1816
  * the graph is blue.
1817
+ *
1818
+ * For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts instead of sap.m.ValueCSSColor.
1819
+ * The value (or type, or property) will only support MicroChartColorType from the SAPUI5 2.0 release.
1801
1820
  */
1802
1821
  color?:
1822
+ | sap.suite.ui.microchart.MicroChartColorType
1803
1823
  | sap.m.ValueCSSColor
1804
1824
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1805
1825
  | `{${string}}`;
@@ -1930,9 +1950,12 @@ declare namespace sap {
1930
1950
  | `{${string}}`;
1931
1951
 
1932
1952
  /**
1933
- * The color shown in the completed path.
1953
+ * The color shown in the completed path. For SAPUI5 1.x releases, we are going to use string as the type
1954
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value (or type, or property) will only support MicroChartColorType
1955
+ * from the SAPUI5 2.0 release.
1934
1956
  */
1935
1957
  valueColor?:
1958
+ | sap.suite.ui.microchart.MicroChartColorType
1936
1959
  | sap.m.ValueCSSColor
1937
1960
  | sap.ui.base.ManagedObject.PropertyBindingInfo
1938
1961
  | `{${string}}`;
@@ -2131,9 +2154,11 @@ declare namespace sap {
2131
2154
  | `{${string}}`;
2132
2155
 
2133
2156
  /**
2134
- * The color of the bar.
2157
+ * The color of the bar. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
2158
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
2135
2159
  */
2136
2160
  valueColor?:
2161
+ | sap.suite.ui.microchart.MicroChartColorType
2137
2162
  | sap.m.ValueCSSColor
2138
2163
  | sap.ui.base.ManagedObject.PropertyBindingInfo
2139
2164
  | `{${string}}`;
@@ -3369,14 +3394,18 @@ declare namespace sap {
3369
3394
  /**
3370
3395
  * Gets current value of property {@link #getColor color}.
3371
3396
  *
3372
- * The graphic element color.
3397
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
3398
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
3399
+ * 2.0 release.
3373
3400
  *
3374
- * Default value is `"Neutral"`.
3401
+ * Default value is `MicroChartColorType.Neutral`.
3375
3402
  *
3376
3403
  *
3377
3404
  * @returns Value of property `color`
3378
3405
  */
3379
- getColor(): sap.m.ValueCSSColor;
3406
+ getColor():
3407
+ | sap.suite.ui.microchart.MicroChartColorType
3408
+ | sap.m.ValueCSSColor;
3380
3409
  /**
3381
3410
  * Gets content of aggregation {@link #getPoints points}.
3382
3411
  *
@@ -3447,11 +3476,13 @@ declare namespace sap {
3447
3476
  /**
3448
3477
  * Sets a new value for property {@link #getColor color}.
3449
3478
  *
3450
- * The graphic element color.
3479
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
3480
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
3481
+ * 2.0 release.
3451
3482
  *
3452
3483
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3453
3484
  *
3454
- * Default value is `"Neutral"`.
3485
+ * Default value is `MicroChartColorType.Neutral`.
3455
3486
  *
3456
3487
  *
3457
3488
  * @returns Reference to `this` in order to allow method chaining
@@ -3460,7 +3491,9 @@ declare namespace sap {
3460
3491
  /**
3461
3492
  * New value for property `color`
3462
3493
  */
3463
- sColor?: sap.m.ValueCSSColor
3494
+ sColor?:
3495
+ | sap.suite.ui.microchart.MicroChartColorType
3496
+ | sap.m.ValueCSSColor
3464
3497
  ): this;
3465
3498
  /**
3466
3499
  * Sets a new value for property {@link #getTitle title}.
@@ -3560,14 +3593,18 @@ declare namespace sap {
3560
3593
  /**
3561
3594
  * Gets current value of property {@link #getColor color}.
3562
3595
  *
3563
- * The graphic element color.
3596
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
3597
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
3598
+ * 2.0 release.
3564
3599
  *
3565
- * Default value is `"Neutral"`.
3600
+ * Default value is `MicroChartColorType.Neutral`.
3566
3601
  *
3567
3602
  *
3568
3603
  * @returns Value of property `color`
3569
3604
  */
3570
- getColor(): sap.m.ValueCSSColor;
3605
+ getColor():
3606
+ | sap.suite.ui.microchart.MicroChartColorType
3607
+ | sap.m.ValueCSSColor;
3571
3608
  /**
3572
3609
  * Gets current value of property {@link #getLabel label}.
3573
3610
  *
@@ -3582,11 +3619,13 @@ declare namespace sap {
3582
3619
  /**
3583
3620
  * Sets a new value for property {@link #getColor color}.
3584
3621
  *
3585
- * The graphic element color.
3622
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
3623
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
3624
+ * 2.0 release.
3586
3625
  *
3587
3626
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3588
3627
  *
3589
- * Default value is `"Neutral"`.
3628
+ * Default value is `MicroChartColorType.Neutral`.
3590
3629
  *
3591
3630
  *
3592
3631
  * @returns Reference to `this` in order to allow method chaining
@@ -3595,7 +3634,9 @@ declare namespace sap {
3595
3634
  /**
3596
3635
  * New value for property `color`
3597
3636
  */
3598
- sColor?: sap.m.ValueCSSColor
3637
+ sColor?:
3638
+ | sap.suite.ui.microchart.MicroChartColorType
3639
+ | sap.m.ValueCSSColor
3599
3640
  ): this;
3600
3641
  /**
3601
3642
  * Sets a new value for property {@link #getLabel label}.
@@ -5653,14 +5694,18 @@ declare namespace sap {
5653
5694
  /**
5654
5695
  * Gets current value of property {@link #getColor color}.
5655
5696
  *
5656
- * The graphic element color.
5697
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
5698
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
5699
+ * 2.0 release.
5657
5700
  *
5658
- * Default value is `"Neutral"`.
5701
+ * Default value is `MicroChartColorType.Neutral`.
5659
5702
  *
5660
5703
  *
5661
5704
  * @returns Value of property `color`
5662
5705
  */
5663
- getColor(): sap.m.ValueCSSColor;
5706
+ getColor():
5707
+ | sap.suite.ui.microchart.MicroChartColorType
5708
+ | sap.m.ValueCSSColor;
5664
5709
  /**
5665
5710
  * Gets current value of property {@link #getDisplayValue displayValue}.
5666
5711
  *
@@ -5694,11 +5739,13 @@ declare namespace sap {
5694
5739
  /**
5695
5740
  * Sets a new value for property {@link #getColor color}.
5696
5741
  *
5697
- * The graphic element color.
5742
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
5743
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
5744
+ * 2.0 release.
5698
5745
  *
5699
5746
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5700
5747
  *
5701
- * Default value is `"Neutral"`.
5748
+ * Default value is `MicroChartColorType.Neutral`.
5702
5749
  *
5703
5750
  *
5704
5751
  * @returns Reference to `this` in order to allow method chaining
@@ -5707,7 +5754,9 @@ declare namespace sap {
5707
5754
  /**
5708
5755
  * New value for property `color`
5709
5756
  */
5710
- sColor?: sap.m.ValueCSSColor
5757
+ sColor?:
5758
+ | sap.suite.ui.microchart.MicroChartColorType
5759
+ | sap.m.ValueCSSColor
5711
5760
  ): this;
5712
5761
  /**
5713
5762
  * Sets a new value for property {@link #getDisplayValue displayValue}.
@@ -5835,14 +5884,18 @@ declare namespace sap {
5835
5884
  /**
5836
5885
  * Gets current value of property {@link #getColor color}.
5837
5886
  *
5838
- * The graphic element color.
5887
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
5888
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
5889
+ * 2.0 release.
5839
5890
  *
5840
- * Default value is `"Neutral"`.
5891
+ * Default value is `MicroChartColorType.Neutral`.
5841
5892
  *
5842
5893
  *
5843
5894
  * @returns Value of property `color`
5844
5895
  */
5845
- getColor(): sap.m.ValueCSSColor;
5896
+ getColor():
5897
+ | sap.suite.ui.microchart.MicroChartColorType
5898
+ | sap.m.ValueCSSColor;
5846
5899
  /**
5847
5900
  * Gets current value of property {@link #getLabel label}.
5848
5901
  *
@@ -5857,11 +5910,13 @@ declare namespace sap {
5857
5910
  /**
5858
5911
  * Sets a new value for property {@link #getColor color}.
5859
5912
  *
5860
- * The graphic element color.
5913
+ * The graphic element color. For SAPUI5 1.x releases, we are going to use string as the type for Micro
5914
+ * Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5
5915
+ * 2.0 release.
5861
5916
  *
5862
5917
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
5863
5918
  *
5864
- * Default value is `"Neutral"`.
5919
+ * Default value is `MicroChartColorType.Neutral`.
5865
5920
  *
5866
5921
  *
5867
5922
  * @returns Reference to `this` in order to allow method chaining
@@ -5870,7 +5925,9 @@ declare namespace sap {
5870
5925
  /**
5871
5926
  * New value for property `color`
5872
5927
  */
5873
- sColor?: sap.m.ValueCSSColor
5928
+ sColor?:
5929
+ | sap.suite.ui.microchart.MicroChartColorType
5930
+ | sap.m.ValueCSSColor
5874
5931
  ): this;
5875
5932
  /**
5876
5933
  * Sets a new value for property {@link #getLabel label}.
@@ -6670,14 +6727,18 @@ declare namespace sap {
6670
6727
  /**
6671
6728
  * Gets current value of property {@link #getColor color}.
6672
6729
  *
6673
- * The semantic color of the value.
6730
+ * The semantic color of the value. For SAPUI5 1.x releases, we are going to use string as the type for
6731
+ * Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the
6732
+ * SAPUI5 2.0 release.
6674
6733
  *
6675
- * Default value is `"Neutral"`.
6734
+ * Default value is `MicroChartColorType.Neutral`.
6676
6735
  *
6677
6736
  *
6678
6737
  * @returns Value of property `color`
6679
6738
  */
6680
- getColor(): sap.m.ValueCSSColor;
6739
+ getColor():
6740
+ | sap.suite.ui.microchart.MicroChartColorType
6741
+ | sap.m.ValueCSSColor;
6681
6742
  /**
6682
6743
  * Gets current value of property {@link #getDisplayValue displayValue}.
6683
6744
  *
@@ -6714,11 +6775,13 @@ declare namespace sap {
6714
6775
  /**
6715
6776
  * Sets a new value for property {@link #getColor color}.
6716
6777
  *
6717
- * The semantic color of the value.
6778
+ * The semantic color of the value. For SAPUI5 1.x releases, we are going to use string as the type for
6779
+ * Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the
6780
+ * SAPUI5 2.0 release.
6718
6781
  *
6719
6782
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6720
6783
  *
6721
- * Default value is `"Neutral"`.
6784
+ * Default value is `MicroChartColorType.Neutral`.
6722
6785
  *
6723
6786
  *
6724
6787
  * @returns Reference to `this` in order to allow method chaining
@@ -6727,7 +6790,9 @@ declare namespace sap {
6727
6790
  /**
6728
6791
  * New value for property `color`
6729
6792
  */
6730
- sColor?: sap.m.ValueCSSColor
6793
+ sColor?:
6794
+ | sap.suite.ui.microchart.MicroChartColorType
6795
+ | sap.m.ValueCSSColor
6731
6796
  ): this;
6732
6797
  /**
6733
6798
  * Sets a new value for property {@link #getDisplayValue displayValue}.
@@ -6962,14 +7027,16 @@ declare namespace sap {
6962
7027
  /**
6963
7028
  * Gets current value of property {@link #getColor color}.
6964
7029
  *
6965
- * The semantic color of the delta value.
7030
+ * The semantic color of the delta value. For SAPUI5 1.x releases, we are going to use string as the type
7031
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from
7032
+ * the SAPUI5 2.0 release.
6966
7033
  *
6967
- * Default value is `"Neutral"`.
7034
+ * Default value is `MicroChartColorType.Neutral`.
6968
7035
  *
6969
7036
  *
6970
7037
  * @returns Value of property `color`
6971
7038
  */
6972
- getColor(): sap.m.ValueCSSColor;
7039
+ getColor(): string;
6973
7040
  /**
6974
7041
  * Gets current value of property {@link #getDeltaDisplayValue deltaDisplayValue}.
6975
7042
  *
@@ -7125,11 +7192,13 @@ declare namespace sap {
7125
7192
  /**
7126
7193
  * Sets a new value for property {@link #getColor color}.
7127
7194
  *
7128
- * The semantic color of the delta value.
7195
+ * The semantic color of the delta value. For SAPUI5 1.x releases, we are going to use string as the type
7196
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from
7197
+ * the SAPUI5 2.0 release.
7129
7198
  *
7130
7199
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7131
7200
  *
7132
- * Default value is `"Neutral"`.
7201
+ * Default value is `MicroChartColorType.Neutral`.
7133
7202
  *
7134
7203
  *
7135
7204
  * @returns Reference to `this` in order to allow method chaining
@@ -7138,7 +7207,7 @@ declare namespace sap {
7138
7207
  /**
7139
7208
  * New value for property `color`
7140
7209
  */
7141
- sColor?: sap.m.ValueCSSColor
7210
+ sColor?: string
7142
7211
  ): this;
7143
7212
  /**
7144
7213
  * Sets a new value for property {@link #getDeltaDisplayValue deltaDisplayValue}.
@@ -8123,14 +8192,17 @@ declare namespace sap {
8123
8192
  *
8124
8193
  * The color of the sector representing the fraction value.
8125
8194
  * The same color is used for the fraction value label defined either by the `fraction` property or by the
8126
- * `fractionLabel` property.
8195
+ * `fractionLabel` property. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
8196
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
8127
8197
  *
8128
- * Default value is `"Neutral"`.
8198
+ * Default value is `MicroChartColorType.Neutral`.
8129
8199
  *
8130
8200
  *
8131
8201
  * @returns Value of property `color`
8132
8202
  */
8133
- getColor(): sap.m.ValueCSSColor;
8203
+ getColor():
8204
+ | sap.suite.ui.microchart.MicroChartColorType
8205
+ | sap.m.ValueCSSColor;
8134
8206
  /**
8135
8207
  * Gets current value of property {@link #getFormattedLabel formattedLabel}.
8136
8208
  *
@@ -8181,11 +8253,12 @@ declare namespace sap {
8181
8253
  *
8182
8254
  * The color of the sector representing the fraction value.
8183
8255
  * The same color is used for the fraction value label defined either by the `fraction` property or by the
8184
- * `fractionLabel` property.
8256
+ * `fractionLabel` property. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
8257
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
8185
8258
  *
8186
8259
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8187
8260
  *
8188
- * Default value is `"Neutral"`.
8261
+ * Default value is `MicroChartColorType.Neutral`.
8189
8262
  *
8190
8263
  *
8191
8264
  * @returns Reference to `this` in order to allow method chaining
@@ -8194,7 +8267,9 @@ declare namespace sap {
8194
8267
  /**
8195
8268
  * New value for property `color`
8196
8269
  */
8197
- sColor?: sap.m.ValueCSSColor
8270
+ sColor?:
8271
+ | sap.suite.ui.microchart.MicroChartColorType
8272
+ | sap.m.ValueCSSColor
8198
8273
  ): this;
8199
8274
  /**
8200
8275
  * Sets a new value for property {@link #getFormattedLabel formattedLabel}.
@@ -11739,12 +11814,17 @@ declare namespace sap {
11739
11814
  * is true. If at least one emphasized point has a color different from Neutral, the graph is grey; otherwise,
11740
11815
  * the graph is blue.
11741
11816
  *
11742
- * Default value is `"Neutral"`.
11817
+ * For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts instead of sap.m.ValueCSSColor.
11818
+ * The value (or type, or property) will only support MicroChartColorType from the SAPUI5 2.0 release.
11819
+ *
11820
+ * Default value is `MicroChartColorType.Neutral`.
11743
11821
  *
11744
11822
  *
11745
11823
  * @returns Value of property `color`
11746
11824
  */
11747
- getColor(): sap.m.ValueCSSColor;
11825
+ getColor():
11826
+ | sap.suite.ui.microchart.MicroChartColorType
11827
+ | sap.m.ValueCSSColor;
11748
11828
  /**
11749
11829
  * Gets current value of property {@link #getShow show}.
11750
11830
  *
@@ -11763,9 +11843,12 @@ declare namespace sap {
11763
11843
  * is true. If at least one emphasized point has a color different from Neutral, the graph is grey; otherwise,
11764
11844
  * the graph is blue.
11765
11845
  *
11846
+ * For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts instead of sap.m.ValueCSSColor.
11847
+ * The value (or type, or property) will only support MicroChartColorType from the SAPUI5 2.0 release.
11848
+ *
11766
11849
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
11767
11850
  *
11768
- * Default value is `"Neutral"`.
11851
+ * Default value is `MicroChartColorType.Neutral`.
11769
11852
  *
11770
11853
  *
11771
11854
  * @returns Reference to `this` in order to allow method chaining
@@ -11774,7 +11857,9 @@ declare namespace sap {
11774
11857
  /**
11775
11858
  * New value for property `color`
11776
11859
  */
11777
- sColor?: sap.m.ValueCSSColor
11860
+ sColor?:
11861
+ | sap.suite.ui.microchart.MicroChartColorType
11862
+ | sap.m.ValueCSSColor
11778
11863
  ): this;
11779
11864
  /**
11780
11865
  * Sets a new value for property {@link #getShow show}.
@@ -12462,14 +12547,18 @@ declare namespace sap {
12462
12547
  /**
12463
12548
  * Gets current value of property {@link #getValueColor valueColor}.
12464
12549
  *
12465
- * The color shown in the completed path.
12550
+ * The color shown in the completed path. For SAPUI5 1.x releases, we are going to use string as the type
12551
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value (or type, or property) will only support MicroChartColorType
12552
+ * from the SAPUI5 2.0 release.
12466
12553
  *
12467
- * Default value is `"Neutral"`.
12554
+ * Default value is `MicroChartColorType.Neutral`.
12468
12555
  *
12469
12556
  *
12470
12557
  * @returns Value of property `valueColor`
12471
12558
  */
12472
- getValueColor(): sap.m.ValueCSSColor;
12559
+ getValueColor():
12560
+ | sap.suite.ui.microchart.MicroChartColorType
12561
+ | sap.m.ValueCSSColor;
12473
12562
  /**
12474
12563
  * Gets current value of property {@link #getWidth width}.
12475
12564
  *
@@ -12648,11 +12737,13 @@ declare namespace sap {
12648
12737
  /**
12649
12738
  * Sets a new value for property {@link #getValueColor valueColor}.
12650
12739
  *
12651
- * The color shown in the completed path.
12740
+ * The color shown in the completed path. For SAPUI5 1.x releases, we are going to use string as the type
12741
+ * for Micro Charts instead of sap.m.ValueCSSColor. The value (or type, or property) will only support MicroChartColorType
12742
+ * from the SAPUI5 2.0 release.
12652
12743
  *
12653
12744
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
12654
12745
  *
12655
- * Default value is `"Neutral"`.
12746
+ * Default value is `MicroChartColorType.Neutral`.
12656
12747
  *
12657
12748
  *
12658
12749
  * @returns Reference to `this` in order to allow method chaining
@@ -12661,7 +12752,9 @@ declare namespace sap {
12661
12752
  /**
12662
12753
  * New value for property `valueColor`
12663
12754
  */
12664
- sValueColor?: sap.m.ValueCSSColor
12755
+ sValueColor?:
12756
+ | sap.suite.ui.microchart.MicroChartColorType
12757
+ | sap.m.ValueCSSColor
12665
12758
  ): this;
12666
12759
  /**
12667
12760
  * Sets a new value for property {@link #getWidth width}.
@@ -13314,12 +13407,15 @@ declare namespace sap {
13314
13407
  /**
13315
13408
  * Gets current value of property {@link #getValueColor valueColor}.
13316
13409
  *
13317
- * The color of the bar.
13410
+ * The color of the bar. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
13411
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
13318
13412
  *
13319
13413
  *
13320
13414
  * @returns Value of property `valueColor`
13321
13415
  */
13322
- getValueColor(): sap.m.ValueCSSColor;
13416
+ getValueColor():
13417
+ | sap.suite.ui.microchart.MicroChartColorType
13418
+ | sap.m.ValueCSSColor;
13323
13419
  /**
13324
13420
  * Sets a new value for property {@link #getDisplayValue displayValue}.
13325
13421
  *
@@ -13357,7 +13453,8 @@ declare namespace sap {
13357
13453
  /**
13358
13454
  * Sets a new value for property {@link #getValueColor valueColor}.
13359
13455
  *
13360
- * The color of the bar.
13456
+ * The color of the bar. For SAPUI5 1.x releases, we are going to use string as the type for Micro Charts
13457
+ * instead of sap.m.ValueCSSColor. The value will only support MicroChartColorType from the SAPUI5 2.0 release.
13361
13458
  *
13362
13459
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
13363
13460
  *
@@ -13368,7 +13465,9 @@ declare namespace sap {
13368
13465
  /**
13369
13466
  * New value for property `valueColor`
13370
13467
  */
13371
- sValueColor?: sap.m.ValueCSSColor
13468
+ sValueColor?:
13469
+ | sap.suite.ui.microchart.MicroChartColorType
13470
+ | sap.m.ValueCSSColor
13372
13471
  ): this;
13373
13472
  }
13374
13473
  /**
@@ -13544,6 +13643,88 @@ declare namespace sap {
13544
13643
  */
13545
13644
  Solid = "Solid",
13546
13645
  }
13646
+ /**
13647
+ * Colors to highlight certain UI chart elements.
13648
+ *
13649
+ * Instead of the `ValueState`, semantic colors must be defined by the application.
13650
+ *
13651
+ * This enum is part of the 'sap/suite/ui/microchart/library' module export and must be accessed by the
13652
+ * property 'MicroChartColorType'.
13653
+ * See:
13654
+ * {@link fiori:/how-to-use-semantic-colors/ Semantic Colors}
13655
+ *
13656
+ * @since 1.129
13657
+ */
13658
+ enum MicroChartColorType {
13659
+ /**
13660
+ * Critical value color.
13661
+ */
13662
+ Critical = "Critical",
13663
+ /**
13664
+ * Bad value color.
13665
+ */
13666
+ Error = "Error",
13667
+ /**
13668
+ * Good value color.
13669
+ */
13670
+ Good = "Good",
13671
+ /**
13672
+ * Neutral value color.
13673
+ */
13674
+ Neutral = "Neutral",
13675
+ /**
13676
+ * None value color.
13677
+ */
13678
+ None = "None",
13679
+ /**
13680
+ * Sequence1 value colors.
13681
+ */
13682
+ Sequence1 = "Sequence1",
13683
+ /**
13684
+ * Sequence10 value colors.
13685
+ */
13686
+ Sequence10 = "Sequence10",
13687
+ /**
13688
+ * Sequence11 value colors.
13689
+ */
13690
+ Sequence11 = "Sequence11",
13691
+ /**
13692
+ * Sequence12 value colors.
13693
+ */
13694
+ Sequence12 = "Sequence12",
13695
+ /**
13696
+ * Sequence2 value colors.
13697
+ */
13698
+ Sequence2 = "Sequence2",
13699
+ /**
13700
+ * Sequence3 value colors.
13701
+ */
13702
+ Sequence3 = "Sequence3",
13703
+ /**
13704
+ * Sequence4 value colors.
13705
+ */
13706
+ Sequence4 = "Sequence4",
13707
+ /**
13708
+ * Sequence5 value colors.
13709
+ */
13710
+ Sequence5 = "Sequence5",
13711
+ /**
13712
+ * Sequence6 value colors.
13713
+ */
13714
+ Sequence6 = "Sequence6",
13715
+ /**
13716
+ * Sequence7 value colors.
13717
+ */
13718
+ Sequence7 = "Sequence7",
13719
+ /**
13720
+ * Sequence8 value colors.
13721
+ */
13722
+ Sequence8 = "Sequence8",
13723
+ /**
13724
+ * Sequence9 value colors.
13725
+ */
13726
+ Sequence9 = "Sequence9",
13727
+ }
13547
13728
  /**
13548
13729
  * Event object of the AreaMicroChart#press event.
13549
13730
  */