@digigov/text-search 1.1.0-2a507fd6 → 1.1.1
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.
- package/CHANGELOG.md +18 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/src/search/lang/gr/encoder.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,23 @@
|
|
|
1
1
|
# Change Log - @digigov/text-search
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Mon, 29 Jan 2024 17:45:11 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 1.1.1
|
|
6
|
+
Mon, 29 Jan 2024 17:45:11 GMT
|
|
7
|
+
|
|
8
|
+
_Version update only_
|
|
9
|
+
|
|
10
|
+
## 1.1.0
|
|
11
|
+
Mon, 29 Jan 2024 10:46:50 GMT
|
|
12
|
+
|
|
13
|
+
### Minor changes
|
|
14
|
+
|
|
15
|
+
- Upgrade typescript to v5
|
|
16
|
+
|
|
17
|
+
## 1.0.1
|
|
18
|
+
Tue, 19 Dec 2023 15:00:14 GMT
|
|
19
|
+
|
|
20
|
+
_Version update only_
|
|
4
21
|
|
|
5
22
|
## 1.0.0
|
|
6
23
|
Fri, 15 Dec 2023 15:23:56 GMT
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -22,6 +22,6 @@ export function encodeGreek(str: string) {
|
|
|
22
22
|
.toLowerCase()
|
|
23
23
|
.normalize('NFD')
|
|
24
24
|
.replace(diacriticsRegex, '')
|
|
25
|
-
.replace(greekCharsRegex, (match) => greekToGreeklishMap[match])
|
|
25
|
+
.replace(greekCharsRegex, (match) => (greekToGreeklishMap as any)[match])
|
|
26
26
|
.split(whitespaceRegex);
|
|
27
27
|
}
|