| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Ui5\Enums; |
| 4: | |
| 5: | /** |
| 6: | * Enumeration of possible value color settings. |
| 7: | * |
| 8: | * Used in sap.m.NumericContent and other tile-related controls to indicate |
| 9: | * the semantic meaning or status of a value (e.g., positive, negative, critical). |
| 10: | * |
| 11: | * @see https://sdk.openui5.org/api/sap.m.ValueColor |
| 12: | */ |
| 13: | enum ValueColor: string |
| 14: | { |
| 15: | |
| 16: | /** |
| 17: | * Critical color. Indicates a borderline or attention-required value (typically orange). |
| 18: | */ |
| 19: | case Critical = 'Critical'; |
| 20: | |
| 21: | /** |
| 22: | * Error color. Indicates a problematic or unhealthy value or trend (typically red). |
| 23: | */ |
| 24: | case Error = 'Error'; |
| 25: | |
| 26: | /** |
| 27: | * Good color. Indicates a positive or healthy value or trend (typically green). |
| 28: | */ |
| 29: | case Good = 'Good'; |
| 30: | |
| 31: | /** |
| 32: | * Neutral color (default). Indicates a value without specific semantic meaning. |
| 33: | */ |
| 34: | case Neutral = 'Neutral'; |
| 35: | |
| 36: | /** |
| 37: | * Good color. Indicates a positive or healthy value or trend (typically green). |
| 38: | */ |
| 39: | case None = 'None'; |
| 40: | } |
| 41: |