ember-validated-form 6.2.0 → 7.0.0
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,3 +1,20 @@
|
|
|
1
|
+
# [7.0.0](https://github.com/adfinis/ember-validated-form/compare/v6.2.0...v7.0.0) (2023-11-21)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### chore
|
|
5
|
+
|
|
6
|
+
* **deps:** update ember and dependencies ([fc26b0b](https://github.com/adfinis/ember-validated-form/commit/fc26b0be302c24dafccad37a53dc7dd2bcc59bc9))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* allow html attributes to be passed to wrapping form element ([b29f4d8](https://github.com/adfinis/ember-validated-form/commit/b29f4d88133aa58a9613aa9bf9f1f6a2761a7974))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### BREAKING CHANGES
|
|
15
|
+
|
|
16
|
+
* **deps:** Drop support for Ember v3.
|
|
17
|
+
|
|
1
18
|
# [6.2.0](https://github.com/adfinis/ember-validated-form/compare/v6.1.2...v6.2.0) (2023-02-23)
|
|
2
19
|
|
|
3
20
|
|
|
@@ -86,9 +86,9 @@
|
|
|
86
86
|
@update={{@update}}
|
|
87
87
|
...attributes
|
|
88
88
|
/>
|
|
89
|
-
{{else if
|
|
90
|
-
(eq @type "date") (not-eq this.dateComponent this.inputComponent)
|
|
91
|
-
|
|
89
|
+
{{else if
|
|
90
|
+
(and (eq @type "date") (not-eq this.dateComponent this.inputComponent))
|
|
91
|
+
}}
|
|
92
92
|
<this.dateComponent
|
|
93
93
|
@autocomplete={{@autocomplete}}
|
|
94
94
|
@autofocus={{@autofocus}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-validated-form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "Easily create forms with client-side validations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -20,44 +20,49 @@
|
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"build": "ember build --environment=production",
|
|
23
|
-
"lint": "
|
|
24
|
-
"lint:
|
|
23
|
+
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
|
|
24
|
+
"lint:css": "stylelint \"**/*.css\"",
|
|
25
|
+
"lint:css:fix": "concurrently \"npm:lint:css -- --fix\"",
|
|
26
|
+
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
|
|
25
27
|
"lint:hbs": "ember-template-lint .",
|
|
26
28
|
"lint:hbs:fix": "ember-template-lint . --fix",
|
|
27
29
|
"lint:js": "eslint . --cache",
|
|
28
30
|
"lint:js:fix": "eslint . --fix",
|
|
29
31
|
"start": "ember serve",
|
|
30
|
-
"test": "
|
|
32
|
+
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
|
|
31
33
|
"test:ember": "ember test",
|
|
32
34
|
"test:ember-compatibility": "ember try:each",
|
|
33
35
|
"prepare": "husky install"
|
|
34
36
|
},
|
|
35
37
|
"dependencies": {
|
|
36
|
-
"@embroider/macros": "^1.
|
|
37
|
-
"@embroider/util": "^1.
|
|
38
|
+
"@embroider/macros": "^1.10.0",
|
|
39
|
+
"@embroider/util": "^1.10.0",
|
|
38
40
|
"@glimmer/component": "^1.1.2",
|
|
39
41
|
"@glimmer/tracking": "^1.1.2",
|
|
40
42
|
"ember-changeset": "^4.1.2",
|
|
41
43
|
"ember-changeset-validations": "^4.1.1",
|
|
42
44
|
"ember-cli-babel": "^7.26.11",
|
|
43
|
-
"ember-cli-htmlbars": "^6.
|
|
45
|
+
"ember-cli-htmlbars": "^6.2.0",
|
|
44
46
|
"ember-truth-helpers": "^3.1.1"
|
|
45
47
|
},
|
|
46
48
|
"devDependencies": {
|
|
47
|
-
"@adfinis
|
|
48
|
-
"@adfinis
|
|
49
|
+
"@adfinis/eslint-config": "2.0.0",
|
|
50
|
+
"@adfinis/semantic-release-config": "4.0.0",
|
|
51
|
+
"@babel/eslint-parser": "7.21.3",
|
|
52
|
+
"@babel/plugin-proposal-decorators": "7.21.0",
|
|
49
53
|
"@ember/optional-features": "2.0.0",
|
|
50
|
-
"@ember/
|
|
51
|
-
"@
|
|
54
|
+
"@ember/string": "3.0.1",
|
|
55
|
+
"@ember/test-helpers": "2.9.3",
|
|
56
|
+
"@embroider/test-setup": "2.1.1",
|
|
52
57
|
"@fortawesome/ember-fontawesome": "0.4.1",
|
|
53
|
-
"@fortawesome/free-solid-svg-icons": "6.
|
|
54
|
-
"babel-eslint": "10.1.0",
|
|
58
|
+
"@fortawesome/free-solid-svg-icons": "6.4.0",
|
|
55
59
|
"broccoli-asset-rev": "3.0.0",
|
|
56
|
-
"
|
|
57
|
-
"ember-
|
|
58
|
-
"ember-cli
|
|
60
|
+
"concurrently": "8.0.1",
|
|
61
|
+
"ember-auto-import": "2.6.3",
|
|
62
|
+
"ember-cli": "4.12.1",
|
|
63
|
+
"ember-cli-addon-docs": "5.2.0",
|
|
59
64
|
"ember-cli-dependency-checker": "3.3.1",
|
|
60
|
-
"ember-cli-deploy": "
|
|
65
|
+
"ember-cli-deploy": "2.0.0",
|
|
61
66
|
"ember-cli-deploy-build": "2.0.0",
|
|
62
67
|
"ember-cli-deploy-git": "1.3.4",
|
|
63
68
|
"ember-cli-deploy-git-ci": "1.0.1",
|
|
@@ -65,33 +70,37 @@
|
|
|
65
70
|
"ember-cli-sri": "2.1.1",
|
|
66
71
|
"ember-cli-terser": "4.0.2",
|
|
67
72
|
"ember-cli-test-loader": "3.0.0",
|
|
68
|
-
"ember-concurrency": "
|
|
69
|
-
"ember-data": "4.
|
|
70
|
-
"ember-
|
|
71
|
-
"ember-flatpickr": "3.2.3",
|
|
73
|
+
"ember-concurrency": "3.0.0",
|
|
74
|
+
"ember-data": "4.12.0",
|
|
75
|
+
"ember-flatpickr": "4.0.0",
|
|
72
76
|
"ember-load-initializers": "2.1.2",
|
|
73
|
-
"ember-qunit": "6.
|
|
74
|
-
"ember-resolver": "
|
|
75
|
-
"ember-source": "4.
|
|
77
|
+
"ember-qunit": "6.2.0",
|
|
78
|
+
"ember-resolver": "10.0.0",
|
|
79
|
+
"ember-source": "4.12.0",
|
|
76
80
|
"ember-source-channel-url": "3.0.0",
|
|
77
|
-
"ember-template-lint": "
|
|
78
|
-
"ember-template-lint-plugin-prettier": "4.
|
|
81
|
+
"ember-template-lint": "5.7.2",
|
|
82
|
+
"ember-template-lint-plugin-prettier": "4.1.0",
|
|
79
83
|
"ember-try": "2.0.0",
|
|
80
|
-
"eslint": "
|
|
81
|
-
"eslint-config-prettier": "8.
|
|
82
|
-
"eslint-plugin-ember": "11.2
|
|
83
|
-
"eslint-plugin-import": "2.
|
|
84
|
-
"eslint-plugin-
|
|
84
|
+
"eslint": "8.39.0",
|
|
85
|
+
"eslint-config-prettier": "8.8.0",
|
|
86
|
+
"eslint-plugin-ember": "11.5.2",
|
|
87
|
+
"eslint-plugin-import": "2.27.5",
|
|
88
|
+
"eslint-plugin-n": "15.7.0",
|
|
85
89
|
"eslint-plugin-prettier": "4.2.1",
|
|
86
|
-
"eslint-plugin-qunit": "7.3.
|
|
90
|
+
"eslint-plugin-qunit": "7.3.4",
|
|
87
91
|
"husky": "8.0.3",
|
|
88
|
-
"lint-staged": "13.
|
|
92
|
+
"lint-staged": "13.2.1",
|
|
89
93
|
"loader.js": "4.7.0",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"qunit": "2.19.3",
|
|
94
|
+
"prettier": "2.8.8",
|
|
95
|
+
"qunit": "2.19.4",
|
|
93
96
|
"qunit-dom": "2.0.0",
|
|
94
|
-
"
|
|
97
|
+
"stylelint": "15.10.3",
|
|
98
|
+
"stylelint-config-standard": "33.0.0",
|
|
99
|
+
"stylelint-prettier": "3.0.0",
|
|
100
|
+
"webpack": "5.88.2"
|
|
101
|
+
},
|
|
102
|
+
"peerDependencies": {
|
|
103
|
+
"ember-source": "^4.0.0"
|
|
95
104
|
},
|
|
96
105
|
"engines": {
|
|
97
106
|
"node": "14.* || 16.* || >= 18"
|
|
@@ -104,12 +113,13 @@
|
|
|
104
113
|
"demoURL": "https://adfinis.github.io/ember-validated-form"
|
|
105
114
|
},
|
|
106
115
|
"release": {
|
|
107
|
-
"extends": "@adfinis
|
|
116
|
+
"extends": "@adfinis/semantic-release-config"
|
|
108
117
|
},
|
|
109
118
|
"lint-staged": {
|
|
110
119
|
"*.js": "eslint --cache --fix",
|
|
111
120
|
"*.hbs": "ember-template-lint --fix",
|
|
112
|
-
"*.
|
|
121
|
+
"*.css": "stylelint --fix",
|
|
122
|
+
"*.{json,md,yml}": "prettier --write"
|
|
113
123
|
},
|
|
114
124
|
"commitlint": {
|
|
115
125
|
"extends": [
|