ember-validated-form 5.2.2 → 5.3.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 +16 -0
- package/README.md +1 -1
- package/addon/components/validated-input/-themes/uikit/render.hbs +8 -0
- package/addon/components/validated-input/render.hbs +8 -0
- package/addon/components/validated-input/types/checkbox-group.hbs +1 -0
- package/addon/components/validated-input/types/checkbox.hbs +1 -0
- package/addon/components/validated-input/types/input.hbs +1 -1
- package/addon/components/validated-input/types/radio-group.hbs +1 -0
- package/addon/components/validated-input/types/select.hbs +1 -1
- package/addon/components/validated-input/types/select.js +1 -0
- package/addon/components/validated-input/types/textarea.hbs +1 -1
- package/addon/components/validated-input.hbs +2 -0
- package/blueprints/ember-validated-form/index.js +1 -0
- package/package.json +25 -31
- package/.github/ISSUE_TEMPLATE/bug_report.md +0 -9
- package/.github/dependabot.yml +0 -11
- package/.github/workflows/deploy.yml +0 -28
- package/.github/workflows/release.yml +0 -25
- package/.github/workflows/test.yml +0 -84
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
# [5.3.0](https://github.com/adfinis-sygroup/ember-validated-form/compare/v5.2.2...v5.3.0) (2022-02-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* addon docs root url ([7d8151f](https://github.com/adfinis-sygroup/ember-validated-form/commit/7d8151fa9d854cdf9595f27347fa57652e58ef10))
|
|
7
|
+
* **blueprint:** add ember-truth-helpers to default blueprint ([a401589](https://github.com/adfinis-sygroup/ember-validated-form/commit/a401589dab6d013f5d659865927919346655295d))
|
|
8
|
+
* **deps:** move required deps to dependencies instead of devDependencies ([46629ce](https://github.com/adfinis-sygroup/ember-validated-form/commit/46629ceb48210bbc58898c299a9388ce7fa816ec))
|
|
9
|
+
* new link to docs ([c1073e5](https://github.com/adfinis-sygroup/ember-validated-form/commit/c1073e55e3a916ed393e33bcf4a045124c320967))
|
|
10
|
+
* **select:** pass prompt argument down to input component ([64a1377](https://github.com/adfinis-sygroup/ember-validated-form/commit/64a1377d64618fa880b332f8a693e1c7f1a321f7))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* pass attributes to input components ([dc0417d](https://github.com/adfinis-sygroup/ember-validated-form/commit/dc0417d125fe4c20cb59b76531ae4f7391258259))
|
|
16
|
+
|
|
1
17
|
## [5.2.2](https://github.com/adfinis-sygroup/ember-validated-form/compare/v5.2.1...v5.2.2) (2022-02-10)
|
|
2
18
|
|
|
3
19
|
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ Easily create forms with client side validations.
|
|
|
9
9
|
|
|
10
10
|

|
|
11
11
|
|
|
12
|
-
Want to try it yourself? [View the docs here.](https://adfinis
|
|
12
|
+
Want to try it yourself? [View the docs here.](https://docs.adfinis.com/ember-validated-form/)
|
|
13
13
|
|
|
14
14
|
# Contributing
|
|
15
15
|
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
{{! template-lint-disable no-autofocus-attribute }}
|
|
1
2
|
<div class={{this.class}}>
|
|
2
3
|
{{#if (not-eq @type "checkbox")}}
|
|
3
4
|
<@labelComponent />
|
|
@@ -18,10 +19,12 @@
|
|
|
18
19
|
@options={{@options}}
|
|
19
20
|
@optionTargetPath={{@optionTargetPath}}
|
|
20
21
|
@optionValuePath={{@optionValuePath}}
|
|
22
|
+
@prompt={{@prompt}}
|
|
21
23
|
@promptIsSelectable={{@promptIsSelectable}}
|
|
22
24
|
@setDirty={{@setDirty}}
|
|
23
25
|
@update={{@update}}
|
|
24
26
|
@value={{@value}}
|
|
27
|
+
...attributes
|
|
25
28
|
/>
|
|
26
29
|
{{/let}}
|
|
27
30
|
{{else if (or (eq @type "radioGroup") (eq @type "radio-group"))}}
|
|
@@ -36,6 +39,7 @@
|
|
|
36
39
|
@setDirty={{@setDirty}}
|
|
37
40
|
@update={{@update}}
|
|
38
41
|
@value={{@value}}
|
|
42
|
+
...attributes
|
|
39
43
|
/>
|
|
40
44
|
{{/let}}
|
|
41
45
|
{{else if (or (eq @type "checkboxGroup") (eq @type "checkbox-group"))}}
|
|
@@ -50,6 +54,7 @@
|
|
|
50
54
|
@setDirty={{@setDirty}}
|
|
51
55
|
@update={{@update}}
|
|
52
56
|
@value={{@value}}
|
|
57
|
+
...attributes
|
|
53
58
|
/>
|
|
54
59
|
{{/let}}
|
|
55
60
|
{{else if (eq @type "checkbox")}}
|
|
@@ -65,6 +70,7 @@
|
|
|
65
70
|
@setDirty={{@setDirty}}
|
|
66
71
|
@update={{@update}}
|
|
67
72
|
@value={{@value}}
|
|
73
|
+
...attributes
|
|
68
74
|
/>
|
|
69
75
|
{{/let}}
|
|
70
76
|
{{else if (eq @type "textarea")}}
|
|
@@ -83,6 +89,7 @@
|
|
|
83
89
|
@isValid={{@isValid}}
|
|
84
90
|
@setDirty={{@setDirty}}
|
|
85
91
|
@update={{@update}}
|
|
92
|
+
...attributes
|
|
86
93
|
/>
|
|
87
94
|
{{/let}}
|
|
88
95
|
{{else}}
|
|
@@ -100,6 +107,7 @@
|
|
|
100
107
|
@isValid={{@isValid}}
|
|
101
108
|
@setDirty={{@setDirty}}
|
|
102
109
|
@update={{@update}}
|
|
110
|
+
...attributes
|
|
103
111
|
/>
|
|
104
112
|
{{/let}}
|
|
105
113
|
{{/if}}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
{{! template-lint-disable no-autofocus-attribute }}
|
|
1
2
|
<div class={{this.class}}>
|
|
2
3
|
{{#if (not-eq @type "checkbox")}}
|
|
3
4
|
<@labelComponent />
|
|
@@ -17,10 +18,12 @@
|
|
|
17
18
|
@options={{@options}}
|
|
18
19
|
@optionTargetPath={{@optionTargetPath}}
|
|
19
20
|
@optionValuePath={{@optionValuePath}}
|
|
21
|
+
@prompt={{@prompt}}
|
|
20
22
|
@promptIsSelectable={{@promptIsSelectable}}
|
|
21
23
|
@setDirty={{@setDirty}}
|
|
22
24
|
@update={{@update}}
|
|
23
25
|
@value={{@value}}
|
|
26
|
+
...attributes
|
|
24
27
|
/>
|
|
25
28
|
{{/let}}
|
|
26
29
|
{{else if (or (eq @type "radioGroup") (eq @type "radio-group"))}}
|
|
@@ -35,6 +38,7 @@
|
|
|
35
38
|
@setDirty={{@setDirty}}
|
|
36
39
|
@update={{@update}}
|
|
37
40
|
@value={{@value}}
|
|
41
|
+
...attributes
|
|
38
42
|
/>
|
|
39
43
|
{{/let}}
|
|
40
44
|
{{else if (or (eq @type "checkboxGroup") (eq @type "checkbox-group"))}}
|
|
@@ -49,6 +53,7 @@
|
|
|
49
53
|
@setDirty={{@setDirty}}
|
|
50
54
|
@update={{@update}}
|
|
51
55
|
@value={{@value}}
|
|
56
|
+
...attributes
|
|
52
57
|
/>
|
|
53
58
|
{{/let}}
|
|
54
59
|
{{else if (eq @type "checkbox")}}
|
|
@@ -64,6 +69,7 @@
|
|
|
64
69
|
@setDirty={{@setDirty}}
|
|
65
70
|
@update={{@update}}
|
|
66
71
|
@value={{@value}}
|
|
72
|
+
...attributes
|
|
67
73
|
/>
|
|
68
74
|
{{/let}}
|
|
69
75
|
{{else if (eq @type "textarea")}}
|
|
@@ -82,6 +88,7 @@
|
|
|
82
88
|
@isValid={{@isValid}}
|
|
83
89
|
@setDirty={{@setDirty}}
|
|
84
90
|
@update={{@update}}
|
|
91
|
+
...attributes
|
|
85
92
|
/>
|
|
86
93
|
{{/let}}
|
|
87
94
|
{{else}}
|
|
@@ -99,6 +106,7 @@
|
|
|
99
106
|
@isValid={{@isValid}}
|
|
100
107
|
@setDirty={{@setDirty}}
|
|
101
108
|
@update={{@update}}
|
|
109
|
+
...attributes
|
|
102
110
|
/>
|
|
103
111
|
{{/let}}
|
|
104
112
|
{{/if}}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
<select
|
|
2
2
|
class={{this.class}}
|
|
3
|
-
...attributes
|
|
4
3
|
name={{@name}}
|
|
5
4
|
id={{@inpudId}}
|
|
6
5
|
disabled={{@disabled}}
|
|
7
6
|
multiple={{@multiple}}
|
|
8
7
|
{{on "change" this.onUpdate}}
|
|
9
8
|
{{on "blur" this.onBlur}}
|
|
9
|
+
...attributes
|
|
10
10
|
>
|
|
11
11
|
{{#if (or @prompt @includeBlank)}}
|
|
12
12
|
<option
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
@isInvalid={{this.isInvalid}}
|
|
49
49
|
@placeholder={{@placeholder}}
|
|
50
50
|
@class={{@class}}
|
|
51
|
+
@prompt={{@prompt}}
|
|
51
52
|
@promptIsSelectable={{@promptIsSelectable}}
|
|
52
53
|
@optionLabelPath={{@optionLabelPath}}
|
|
53
54
|
@optionValuePath={{@optionValuePath}}
|
|
@@ -69,6 +70,7 @@
|
|
|
69
70
|
(and this.showValidity this.errors)
|
|
70
71
|
(component this.errorComponent errors=this.errors)
|
|
71
72
|
}}
|
|
73
|
+
...attributes
|
|
72
74
|
/>
|
|
73
75
|
{{/let}}
|
|
74
76
|
{{/if}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-validated-form",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.0",
|
|
4
4
|
"description": "Easily create forms with client-side validations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"directories": {
|
|
15
15
|
"test": "tests"
|
|
16
16
|
},
|
|
17
|
-
"homepage": "https://adfinis
|
|
17
|
+
"homepage": "https://docs.adfinis.com/ember-validated-form",
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/adfinis-sygroup/ember-validated-form/issues"
|
|
20
20
|
},
|
|
@@ -33,9 +33,13 @@
|
|
|
33
33
|
"prepare": "husky install"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
+
"@glimmer/component": "^1.0.4",
|
|
37
|
+
"@glimmer/tracking": "^1.0.4",
|
|
36
38
|
"ember-auto-import": "^2.4.0",
|
|
37
|
-
"ember-
|
|
38
|
-
"ember-
|
|
39
|
+
"ember-changeset": "^4.0.0-beta.5",
|
|
40
|
+
"ember-changeset-validations": "^4.0.0-beta.3",
|
|
41
|
+
"ember-cli-babel": "^7.26.11",
|
|
42
|
+
"ember-cli-htmlbars": "^6.0.1",
|
|
39
43
|
"ember-truth-helpers": "^3.0.0"
|
|
40
44
|
},
|
|
41
45
|
"devDependencies": {
|
|
@@ -43,17 +47,13 @@
|
|
|
43
47
|
"@adfinis-sygroup/semantic-release-config": "3.4.0",
|
|
44
48
|
"@ember/optional-features": "2.0.0",
|
|
45
49
|
"@ember/test-helpers": "2.6.0",
|
|
46
|
-
"@embroider/test-setup": "1.
|
|
47
|
-
"@fortawesome/ember-fontawesome": "0.3.
|
|
48
|
-
"@fortawesome/free-solid-svg-icons": "
|
|
49
|
-
"@glimmer/component": "1.0.4",
|
|
50
|
-
"@glimmer/tracking": "1.0.4",
|
|
50
|
+
"@embroider/test-setup": "1.2.0",
|
|
51
|
+
"@fortawesome/ember-fontawesome": "0.3.2",
|
|
52
|
+
"@fortawesome/free-solid-svg-icons": "6.0.0",
|
|
51
53
|
"babel-eslint": "10.1.0",
|
|
52
54
|
"broccoli-asset-rev": "3.0.0",
|
|
53
|
-
"ember-
|
|
54
|
-
"ember-
|
|
55
|
-
"ember-cli": "3.28.1",
|
|
56
|
-
"ember-cli-addon-docs": "4.2.2",
|
|
55
|
+
"ember-cli": "4.1.1",
|
|
56
|
+
"ember-cli-addon-docs": "ember-learn/ember-cli-addon-docs#667701d60650cf7af51611dbff9abf1879776421",
|
|
57
57
|
"ember-cli-dependency-checker": "3.2.0",
|
|
58
58
|
"ember-cli-deploy": "1.0.2",
|
|
59
59
|
"ember-cli-deploy-build": "2.0.0",
|
|
@@ -64,37 +64,31 @@
|
|
|
64
64
|
"ember-cli-terser": "4.0.2",
|
|
65
65
|
"ember-cli-test-loader": "3.0.0",
|
|
66
66
|
"ember-concurrency": "2.2.1",
|
|
67
|
-
"ember-data": "
|
|
67
|
+
"ember-data": "4.1.0",
|
|
68
68
|
"ember-disable-prototype-extensions": "1.1.3",
|
|
69
69
|
"ember-load-initializers": "2.1.2",
|
|
70
|
-
"ember-maybe-import-regenerator": "1.0.0",
|
|
71
|
-
"ember-power-select": "5.0.3",
|
|
72
70
|
"ember-qunit": "5.1.5",
|
|
73
71
|
"ember-resolver": "8.0.3",
|
|
74
|
-
"ember-source": "
|
|
72
|
+
"ember-source": "4.2.0",
|
|
75
73
|
"ember-source-channel-url": "3.0.0",
|
|
76
|
-
"ember-template-lint": "
|
|
77
|
-
"ember-template-lint-plugin-prettier": "
|
|
78
|
-
"ember-try": "
|
|
74
|
+
"ember-template-lint": "4.1.0",
|
|
75
|
+
"ember-template-lint-plugin-prettier": "4.0.0",
|
|
76
|
+
"ember-try": "2.0.0",
|
|
79
77
|
"eslint": "7.32.0",
|
|
80
|
-
"eslint-config-prettier": "8.
|
|
81
|
-
"eslint-plugin-ember": "10.5.
|
|
78
|
+
"eslint-config-prettier": "8.4.0",
|
|
79
|
+
"eslint-plugin-ember": "10.5.9",
|
|
82
80
|
"eslint-plugin-import": "2.25.4",
|
|
83
81
|
"eslint-plugin-node": "11.1.0",
|
|
84
82
|
"eslint-plugin-prettier": "4.0.0",
|
|
85
|
-
"eslint-plugin-qunit": "
|
|
83
|
+
"eslint-plugin-qunit": "7.2.0",
|
|
86
84
|
"husky": "7.0.4",
|
|
87
|
-
"lint-staged": "12.3.
|
|
85
|
+
"lint-staged": "12.3.4",
|
|
88
86
|
"loader.js": "4.7.0",
|
|
89
87
|
"npm-run-all": "4.1.5",
|
|
90
88
|
"prettier": "2.5.1",
|
|
91
|
-
"qunit": "2.
|
|
89
|
+
"qunit": "2.18.0",
|
|
92
90
|
"qunit-dom": "2.0.0",
|
|
93
|
-
"webpack": "5.
|
|
94
|
-
},
|
|
95
|
-
"resolutions": {
|
|
96
|
-
"@embroider/macros": "^1.1.0",
|
|
97
|
-
"@embroider/util": "^1.1.0"
|
|
91
|
+
"webpack": "5.69.1"
|
|
98
92
|
},
|
|
99
93
|
"engines": {
|
|
100
94
|
"node": "12.* || 14.* || >= 16"
|
|
@@ -104,7 +98,7 @@
|
|
|
104
98
|
},
|
|
105
99
|
"ember-addon": {
|
|
106
100
|
"configPath": "tests/dummy/config",
|
|
107
|
-
"demoURL": "https://adfinis
|
|
101
|
+
"demoURL": "https://docs.adfinis.com/ember-validated-form"
|
|
108
102
|
},
|
|
109
103
|
"release": {
|
|
110
104
|
"extends": "@adfinis-sygroup/semantic-release-config"
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Bug report
|
|
3
|
-
about: Template for bug reports
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
--
|
|
7
|
-
If possible, please consider creating a basic reproduction of your issue with Ember Twiddle. You can use this twiddle as a starting point:
|
|
8
|
-
|
|
9
|
-
https://ember-twiddle.com/3691a8576c35ff149bfc26a564ec5437
|
package/.github/dependabot.yml
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
name: Deploy
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
release:
|
|
8
|
-
types: [published]
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
deploy:
|
|
12
|
-
name: Deploy
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
steps:
|
|
15
|
-
- uses: actions/checkout@v2
|
|
16
|
-
- uses: actions/setup-node@v2
|
|
17
|
-
with:
|
|
18
|
-
node-version: 14
|
|
19
|
-
|
|
20
|
-
- name: Install Dependencies
|
|
21
|
-
run: yarn install
|
|
22
|
-
|
|
23
|
-
- name: Deploy to Github Pages
|
|
24
|
-
run: yarn ember deploy production
|
|
25
|
-
env:
|
|
26
|
-
CI: true
|
|
27
|
-
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
|
|
28
|
-
ADDON_DOCS_UPDATE_LATEST: true
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
name: Release
|
|
2
|
-
|
|
3
|
-
on: workflow_dispatch
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
release:
|
|
7
|
-
name: Release
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
steps:
|
|
10
|
-
- uses: actions/checkout@v2
|
|
11
|
-
with:
|
|
12
|
-
fetch-depth: 0
|
|
13
|
-
persist-credentials: false
|
|
14
|
-
- uses: actions/setup-node@v2
|
|
15
|
-
with:
|
|
16
|
-
node-version: 14
|
|
17
|
-
|
|
18
|
-
- name: Install dependencies
|
|
19
|
-
run: yarn install
|
|
20
|
-
|
|
21
|
-
- name: Release on NPM
|
|
22
|
-
env:
|
|
23
|
-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
24
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
25
|
-
run: yarn semantic-release
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
name: Test
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches:
|
|
6
|
-
- main
|
|
7
|
-
pull_request:
|
|
8
|
-
branches:
|
|
9
|
-
- main
|
|
10
|
-
|
|
11
|
-
jobs:
|
|
12
|
-
lint:
|
|
13
|
-
name: Lint
|
|
14
|
-
runs-on: [ubuntu-latest]
|
|
15
|
-
|
|
16
|
-
strategy:
|
|
17
|
-
matrix:
|
|
18
|
-
target: [js, hbs]
|
|
19
|
-
|
|
20
|
-
steps:
|
|
21
|
-
- uses: actions/checkout@v2
|
|
22
|
-
- uses: actions/setup-node@v2
|
|
23
|
-
with:
|
|
24
|
-
node-version: 14
|
|
25
|
-
|
|
26
|
-
- name: Install dependencies
|
|
27
|
-
run: yarn install
|
|
28
|
-
|
|
29
|
-
- name: Lint ${{ matrix.target }}
|
|
30
|
-
run: yarn lint:${{ matrix.target }}
|
|
31
|
-
|
|
32
|
-
test:
|
|
33
|
-
name: Tests
|
|
34
|
-
needs: [lint]
|
|
35
|
-
runs-on: [ubuntu-latest]
|
|
36
|
-
|
|
37
|
-
steps:
|
|
38
|
-
- uses: actions/checkout@v2
|
|
39
|
-
- uses: actions/setup-node@v2
|
|
40
|
-
with:
|
|
41
|
-
node-version: 14
|
|
42
|
-
|
|
43
|
-
- name: Install dependencies (no lockfile)
|
|
44
|
-
run: yarn install --no-lockfile
|
|
45
|
-
|
|
46
|
-
- name: Run tests (floating dependencies)
|
|
47
|
-
run: yarn test:ember
|
|
48
|
-
|
|
49
|
-
- name: Install dependencies
|
|
50
|
-
run: yarn install
|
|
51
|
-
|
|
52
|
-
- name: Run tests
|
|
53
|
-
run: yarn test:ember
|
|
54
|
-
env:
|
|
55
|
-
COVERAGE: true
|
|
56
|
-
|
|
57
|
-
- name: Upload coverage report to Codecov
|
|
58
|
-
uses: codecov/codecov-action@v1
|
|
59
|
-
with:
|
|
60
|
-
file: ./coverage/lcov.info
|
|
61
|
-
|
|
62
|
-
try-one:
|
|
63
|
-
name: Additional Tests
|
|
64
|
-
needs: [test]
|
|
65
|
-
runs-on: [ubuntu-latest]
|
|
66
|
-
|
|
67
|
-
strategy:
|
|
68
|
-
matrix:
|
|
69
|
-
scenario:
|
|
70
|
-
- ember-lts-3.24
|
|
71
|
-
- ember-lts-3.28
|
|
72
|
-
- ember-release
|
|
73
|
-
|
|
74
|
-
steps:
|
|
75
|
-
- uses: actions/checkout@v2
|
|
76
|
-
- uses: actions/setup-node@v2
|
|
77
|
-
with:
|
|
78
|
-
node-version: 14
|
|
79
|
-
|
|
80
|
-
- name: Install dependencies
|
|
81
|
-
run: yarn install
|
|
82
|
-
|
|
83
|
-
- name: Run tests
|
|
84
|
-
run: yarn ember try:one ${{ matrix.scenario }}
|