| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Ui5\Enums; |
| 4: | |
| 5: | /** |
| 6: | * Describes the behavior of tiles when displayed on a small-screened phone (374px wide and lower). |
| 7: | * |
| 8: | * @see https://sdk.openui5.org/api/sap.m.TileSizeBehavior |
| 9: | */ |
| 10: | enum TileSizeBehavior: string |
| 11: | { |
| 12: | |
| 13: | /** |
| 14: | * Default behavior: Tiles adapt to the size of the screen, getting smaller on small screens. |
| 15: | */ |
| 16: | case Responsive = 'Responsive'; |
| 17: | |
| 18: | /** |
| 19: | * Tiles are small all the time, regardless of the actual screen size. |
| 20: | */ |
| 21: | case Small = 'Small'; |
| 22: | } |
| 23: |