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
- return
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
- return
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
- return
920
+ break
921
921
  }
922
922
  }
923
923
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "files": [
5
5
  "*"
6
6
  ],
7
- "version": "4.67.2",
7
+ "version": "4.67.4",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "https://github.com/Terrier-Tech/terrier-engine"
@@ -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
  }