-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add iso year and week feature (#386)
* feat: add iso datetime function * fix: dataTable * fix: color combo box * fix: time unit * chore: change week def to duckdb * fix: dataTable
- Loading branch information
Showing
13 changed files
with
708 additions
and
34 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
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
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,11 +1,20 @@ | ||
export const COUNT_FIELD_ID = 'gw_count_fid'; | ||
export const DATE_TIME_DRILL_LEVELS = [ | ||
"year", "quarter", "month", "week", "day", "hour", "minute", "second" | ||
] as const; | ||
export const DATE_TIME_DRILL_LEVELS = ['year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', 'iso_year', 'iso_week'] as const; | ||
export const DATE_TIME_FEATURE_LEVELS = [ | ||
"year", "quarter", "month", "week", "weekday", "day", "hour", "minute", "second" | ||
'year', | ||
'quarter', | ||
'month', | ||
'week', | ||
'weekday', | ||
'day', | ||
'hour', | ||
'minute', | ||
'second', | ||
'iso_year', | ||
'iso_week', | ||
'iso_weekday', | ||
] as const; | ||
|
||
export const MEA_KEY_ID = 'gw_mea_key_fid'; | ||
export const MEA_VAL_ID = 'gw_mea_val_fid'; | ||
export const PAINT_FIELD_ID = 'gw_paint_fid'; | ||
export const PAINT_FIELD_ID = 'gw_paint_fid'; |
Oops, something went wrong.