| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Ui5\Enums; |
| 4: | |
| 5: | /** |
| 6: | * Enumeration of possible load states for sap.m.TileContent and sap.m.GenericTile controls. |
| 7: | * Used to represent and visualize the current status of data loading or error conditions. |
| 8: | * |
| 9: | * @see https://sdk.openui5.org/api/sap.m.LoadState |
| 10: | */ |
| 11: | enum LoadState: string |
| 12: | { |
| 13: | /** |
| 14: | * Content is currently loading. A busy indicator will be shown. |
| 15: | */ |
| 16: | case Loading = 'Loading'; |
| 17: | |
| 18: | /** |
| 19: | * Content is successfully loaded and will be displayed. |
| 20: | */ |
| 21: | case Loaded = 'Loaded'; |
| 22: | |
| 23: | /** |
| 24: | * Content loading failed. An error placeholder will be displayed. |
| 25: | */ |
| 26: | case Failed = 'Failed'; |
| 27: | |
| 28: | /** |
| 29: | * Content is not available or intentionally disabled. An empty state will be shown. |
| 30: | */ |
| 31: | case Disabled = 'Disabled'; |
| 32: | } |
| 33: |