Skip to content

Commit

Permalink
#4041 Improve date picker
Browse files Browse the repository at this point in the history
  • Loading branch information
stroomdev66 committed Mar 4, 2024
1 parent 9505a1a commit 469fea3
Show file tree
Hide file tree
Showing 9 changed files with 283 additions and 223 deletions.
12 changes: 6 additions & 6 deletions stroom-app/src/main/resources/ui/noauth/swagger/stroom.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions stroom-app/src/main/resources/ui/noauth/swagger/stroom.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8883,6 +8883,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down Expand Up @@ -9461,6 +9462,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down Expand Up @@ -10347,6 +10349,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down Expand Up @@ -10624,6 +10627,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down Expand Up @@ -12127,6 +12131,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down Expand Up @@ -13102,6 +13107,7 @@ components:
- AUTO_REFRESH
- BACKWARD
- BORDERED_CIRCLE
- CALENDAR
- CANCEL
- CASE_SENSITIVE
- CLEAR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@
*
* <h3>Example</h3> {@example com.google.gwt.examples.DateTimeFormatExample}
*/
@SuppressWarnings({"checkstyle:LineLength", "checkstyle:FileLength", "checkstyle:MultipleVariableDeclarations"})
public class DateTimeFormatImpl implements DateTimeFormat {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static native double parse(String dateString) /*-{
* Returns the internal millisecond representation of the specified UTC date
* and time.
*/
public static native double UTC(int year,
public static native double utc(int year,
int month,
int dayOfMonth,
int hours,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
*/
public abstract class MonthSelector extends DatePickerComponent {

}
}
Loading

0 comments on commit 469fea3

Please sign in to comment.