@financial-times/o-autocomplete 1.7.0 → 1.7.2
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
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [1.7.2](https://www.github.com/Financial-Times/origami/compare/o-autocomplete-v1.7.1...o-autocomplete-v1.7.2) (2022-12-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* require 3.3.0 or higher ([fc180c6](https://www.github.com/Financial-Times/origami/commit/fc180c619755daa1b7bfe65509f354cf0de113bf))
|
|
9
|
+
|
|
10
|
+
### [1.7.1](https://www.github.com/Financial-Times/origami/compare/o-autocomplete-v1.7.0...o-autocomplete-v1.7.1) (2022-12-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* handle dynamic input changes when validating forms ([69ac478](https://www.github.com/Financial-Times/origami/commit/69ac4780922aded1dd4ce9b62b8437c454f0adba))
|
|
16
|
+
|
|
3
17
|
## [1.7.0](https://www.github.com/Financial-Times/origami/compare/o-autocomplete-v1.6.2...o-autocomplete-v1.7.0) (2022-09-14)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import '../../../main.js';
|
|
2
|
-
import
|
|
3
|
-
|
|
2
|
+
import '@financial-times/o-forms';
|
|
3
|
+
|
|
4
4
|
/**
|
|
5
5
|
* @typedef {Function} PopulateOptions
|
|
6
6
|
* @property {Array<string>} options - The options which match the rext which was typed into the autocomplete by the user
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import '../../../main.js';
|
|
2
2
|
import {debounce} from '@financial-times/o-utils';
|
|
3
|
-
import
|
|
4
|
-
|
|
3
|
+
import '@financial-times/o-forms';
|
|
4
|
+
|
|
5
5
|
/**
|
|
6
6
|
* @typedef {Function} PopulateOptions
|
|
7
7
|
* @property {Array<string>} options - The options which match the rext which was typed into the autocomplete by the user
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/o-autocomplete",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "An origami component for autocomplete inputs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"autocomplete",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "bash ../../scripts/component/build.bash",
|
|
24
24
|
"test": "bash ../../scripts/component/test.bash",
|
|
25
|
+
"debug:js": "bash ../../scripts/component/debug-js.bash",
|
|
25
26
|
"lint": "bash ../../scripts/component/lint.bash",
|
|
26
27
|
"watch": "bash ../../scripts/component/watch.bash"
|
|
27
28
|
},
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@financial-times/o-forms": "^9.2.0",
|
|
45
|
-
"@financial-times/o-normalise": "^3.
|
|
46
|
+
"@financial-times/o-normalise": "^3.3.0",
|
|
46
47
|
"@financial-times/o-utils": "^2.1.0"
|
|
47
48
|
},
|
|
48
49
|
"dependencies": {
|