-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
447f89e
commit 7929d13
Showing
6 changed files
with
137 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
<?php | ||
|
||
namespace Savannabits\Flatpickr\Enums; | ||
enum FlatpickrMode: string { | ||
case RANGE = 'range'; | ||
case SINGLE = 'single'; | ||
case MULTIPLE = 'multiple'; | ||
case TIME = 'time'; | ||
|
||
enum FlatpickrMode: string | ||
{ | ||
case RANGE = 'range'; | ||
case SINGLE = 'single'; | ||
case MULTIPLE = 'multiple'; | ||
case TIME = 'time'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
<?php | ||
|
||
namespace Savannabits\Flatpickr\Enums; | ||
enum FlatpickrMonthSelectorType: string { | ||
|
||
enum FlatpickrMonthSelectorType: string | ||
{ | ||
case DROPDOWN = 'dropdown'; | ||
case STATIK = 'static'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
<?php | ||
|
||
namespace Savannabits\Flatpickr\Enums; | ||
|
||
enum FlatpickrPosition: string | ||
{ | ||
case AUTO = "auto"; | ||
case ABOVE = "above"; | ||
case BELOW = "below"; | ||
case AUTO_LEFT = "auto left"; | ||
case AUTO_CENTER = "auto center"; | ||
case AUTO_RIGHT = "auto right"; | ||
case ABOVE_LEFT = "above left"; | ||
case ABOVE_CENTER = "above center"; | ||
case ABOVE_RIGHT = "above right"; | ||
case BELOW_LEFT = "below left"; | ||
case BELOW_CENTER = "below center"; | ||
case BELOW_RIGHT = "below right"; | ||
case AUTO = 'auto'; | ||
case ABOVE = 'above'; | ||
case BELOW = 'below'; | ||
case AUTO_LEFT = 'auto left'; | ||
case AUTO_CENTER = 'auto center'; | ||
case AUTO_RIGHT = 'auto right'; | ||
case ABOVE_LEFT = 'above left'; | ||
case ABOVE_CENTER = 'above center'; | ||
case ABOVE_RIGHT = 'above right'; | ||
case BELOW_LEFT = 'below left'; | ||
case BELOW_CENTER = 'below center'; | ||
case BELOW_RIGHT = 'below right'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.