| 1: | <?php |
| 2: | |
| 3: | namespace LaravelUi5\Core\Ui5\Enums; |
| 4: | |
| 5: | /** |
| 6: | * Enum for possible frame size types for sap.m.TileContent and sap.m.GenericTile control. |
| 7: | * |
| 8: | * @see https://sdk.openui5.org/api/sap.m.FrameType |
| 9: | */ |
| 10: | enum FrameType: string |
| 11: | { |
| 12: | /** |
| 13: | * The Auto frame type that adjusts the size of the control to the content. |
| 14: | * Support for this type in sap.m.GenericTile is deprecated since 1.48.0. |
| 15: | * |
| 16: | * Corresponds to: FrameType.Auto |
| 17: | */ |
| 18: | case Auto = 'Auto'; |
| 19: | |
| 20: | /** |
| 21: | * The 2x1 frame type. Note: The 2x1 frame type is currently only supported for Generic tile. |
| 22: | */ |
| 23: | case OneByHalf = 'OneByHalf'; |
| 24: | |
| 25: | /** |
| 26: | * The 2x2 frame type. |
| 27: | */ |
| 28: | case OneByOne = 'OneByOne'; |
| 29: | |
| 30: | /** |
| 31: | * The 4x1 frame type. Note: The 4x1 frame type is currently only supported for Generic tile. |
| 32: | */ |
| 33: | case TwoByHalf = 'TwoByHalf'; |
| 34: | |
| 35: | /** |
| 36: | * The 4x2 frame type. |
| 37: | */ |
| 38: | case TwoByOne = 'TwoByOne'; |
| 39: | } |
| 40: |