terrier-engine 4.67.2 → 4.67.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -898,7 +898,7 @@ function serializeRawInputData(filters: FilterInput[], data: Record<string, stri
|
|
|
898
898
|
}
|
|
899
899
|
const period = Dates.serializePeriod(range)
|
|
900
900
|
filter.input_value = period
|
|
901
|
-
|
|
901
|
+
break
|
|
902
902
|
case 'direct':
|
|
903
903
|
switch (filter.column_type) {
|
|
904
904
|
case 'cents':
|
|
@@ -908,7 +908,7 @@ function serializeRawInputData(filters: FilterInput[], data: Record<string, stri
|
|
|
908
908
|
default:
|
|
909
909
|
filter.input_value = data[filter.id]
|
|
910
910
|
}
|
|
911
|
-
|
|
911
|
+
break
|
|
912
912
|
case 'inclusion':
|
|
913
913
|
const values: string[] = []
|
|
914
914
|
for (const value of filter.possible_values || []) {
|
|
@@ -917,7 +917,7 @@ function serializeRawInputData(filters: FilterInput[], data: Record<string, stri
|
|
|
917
917
|
}
|
|
918
918
|
}
|
|
919
919
|
filter.input_value = values.join(',')
|
|
920
|
-
|
|
920
|
+
break
|
|
921
921
|
}
|
|
922
922
|
}
|
|
923
923
|
}
|
package/package.json
CHANGED
|
@@ -62,4 +62,6 @@ export type TinyModalGlobals = {
|
|
|
62
62
|
noticeAlert: (title: string, body: string, action?: TinyModalAlertAction, options?: TinyModalAlertOptions) => Promise<void>
|
|
63
63
|
alertAlert: (title: string, body: string, action?: TinyModalAlertAction, options?: TinyModalAlertOptions) => Promise<void>
|
|
64
64
|
}
|
|
65
|
+
showAlertLoadingOverlay: () => void
|
|
66
|
+
removeAlertLoadingOverlay: () => void
|
|
65
67
|
}
|