@projectcaluma/ember-form 10.0.1 → 11.0.0-beta.10
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 +1181 -0
- package/addon/components/cf-content.hbs +36 -41
- package/addon/components/cf-content.js +48 -29
- package/addon/components/cf-field/info.hbs +2 -2
- package/addon/components/cf-field/info.js +0 -15
- package/addon/components/cf-field/input/action-button.hbs +18 -19
- package/addon/components/cf-field/input/action-button.js +9 -7
- package/addon/components/cf-field/input/checkbox.hbs +6 -2
- package/addon/components/cf-field/input/checkbox.js +9 -29
- package/addon/components/cf-field/input/date.hbs +8 -5
- package/addon/components/cf-field/input/date.js +28 -10
- package/addon/components/cf-field/input/file.hbs +2 -2
- package/addon/components/cf-field/input/file.js +10 -11
- package/addon/components/cf-field/input/float.hbs +4 -4
- package/addon/components/cf-field/input/integer.hbs +5 -5
- package/addon/components/cf-field/input/radio.hbs +4 -1
- package/addon/components/cf-field/input/static.hbs +1 -1
- package/addon/components/cf-field/input/table.hbs +24 -24
- package/addon/components/cf-field/input/table.js +12 -10
- package/addon/components/cf-field/input/text.hbs +5 -5
- package/addon/components/cf-field/input/textarea.hbs +6 -5
- package/addon/components/cf-field/input.hbs +10 -1
- package/addon/components/cf-field/input.js +1 -1
- package/addon/components/cf-field/label.hbs +1 -1
- package/addon/components/cf-field-value.hbs +22 -7
- package/addon/components/cf-field-value.js +8 -38
- package/addon/components/cf-field.hbs +14 -6
- package/addon/components/cf-field.js +22 -8
- package/addon/components/cf-navigation-item.hbs +2 -2
- package/addon/components/cf-navigation.hbs +4 -1
- package/addon/components/document-validity.js +17 -2
- package/addon/gql/fragments/field.graphql +45 -0
- package/addon/gql/mutations/save-document-table-answer.graphql +1 -1
- package/addon/gql/mutations/save-document.graphql +1 -0
- package/addon/gql/queries/{get-document-answers.graphql → document-answers.graphql} +2 -1
- package/addon/gql/queries/{get-document-forms.graphql → document-forms.graphql} +2 -1
- package/addon/gql/queries/{get-document-used-dynamic-options.graphql → document-used-dynamic-options.graphql} +2 -1
- package/addon/gql/queries/{get-dynamic-options.graphql → dynamic-options.graphql} +2 -1
- package/addon/gql/queries/{get-fileanswer-info.graphql → fileanswer-info.graphql} +2 -1
- package/addon/helpers/get-widget.js +50 -0
- package/addon/lib/answer.js +108 -72
- package/addon/lib/base.js +32 -23
- package/addon/lib/dependencies.js +36 -71
- package/addon/lib/document.js +92 -96
- package/addon/lib/field.js +374 -407
- package/addon/lib/fieldset.js +46 -47
- package/addon/lib/form.js +27 -15
- package/addon/lib/navigation.js +211 -192
- package/addon/lib/question.js +103 -94
- package/addon/services/caluma-store.js +10 -6
- package/app/helpers/get-widget.js +4 -0
- package/blueprints/@projectcaluma/ember-form/index.js +1 -0
- package/package.json +30 -25
- package/addon/components/cf-navigation.js +0 -9
- package/addon/instance-initializers/setup-pikaday-i18n.js +0 -35
package/CHANGELOG.md
ADDED
@@ -0,0 +1,1181 @@
|
|
1
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.10](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.9...@projectcaluma/ember-form-v11.0.0-beta.10) (2022-02-09)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **form:** always trigger data fetching in cf-content ([3fab675](https://github.com/projectcaluma/ember-caluma/commit/3fab675fca0559cd4164d4d62b44b9d9b74e4a5c))
|
7
|
+
|
8
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.9](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.8...@projectcaluma/ember-form-v11.0.0-beta.9) (2022-02-07)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **action-button:** only hide action button visually if disabled ([e292f09](https://github.com/projectcaluma/ember-caluma/commit/e292f093c33efd0b99a73674f8f83de5f496bf40))
|
14
|
+
* **deps:** remove moment altogether and update ember-pikday ([b2f7fa2](https://github.com/projectcaluma/ember-caluma/commit/b2f7fa28fa076897addd36e5964c926c671508ff))
|
15
|
+
* **form:** change file download actions to query and network-only ([aa4458e](https://github.com/projectcaluma/ember-caluma/commit/aa4458e944263f0f00ba1684a4f7bbfa83d2efea))
|
16
|
+
|
17
|
+
|
18
|
+
### BREAKING CHANGES
|
19
|
+
|
20
|
+
* **deps:** The host app now needs to opt-in to use the default
|
21
|
+
pikaday styles: https://github.com/adopted-ember-addons/ember-pikaday#styles
|
22
|
+
|
23
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.8](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.7...@projectcaluma/ember-form-v11.0.0-beta.8) (2022-02-03)
|
24
|
+
|
25
|
+
|
26
|
+
### Bug Fixes
|
27
|
+
|
28
|
+
* dye file upload button in default color ([ad9e1b8](https://github.com/projectcaluma/ember-caluma/commit/ad9e1b8ed18c8228c495142af1bbe1f2c219c088))
|
29
|
+
* **form:** fix isNew state of answers without backend object ([c10129f](https://github.com/projectcaluma/ember-caluma/commit/c10129ffe76d7751cd0105c71fc4ba010323e2e4))
|
30
|
+
|
31
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.7](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.6...@projectcaluma/ember-form-v11.0.0-beta.7) (2022-02-03)
|
32
|
+
|
33
|
+
|
34
|
+
### Bug Fixes
|
35
|
+
|
36
|
+
* **validation:** sync format validator validation with backend ([ee66968](https://github.com/projectcaluma/ember-caluma/commit/ee66968230b9f0e4c5a4df8bdb3f8e58b44b5b82))
|
37
|
+
|
38
|
+
|
39
|
+
### BREAKING CHANGES
|
40
|
+
|
41
|
+
* **validation:** Use the `formatValidators` property of the backend to store and read
|
42
|
+
format validators instead of the `meta.formatValidators` so the backend
|
43
|
+
validates as well. For more information on how to migrate check the
|
44
|
+
migration guide to v11.
|
45
|
+
|
46
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.6](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.5...@projectcaluma/ember-form-v11.0.0-beta.6) (2022-02-02)
|
47
|
+
|
48
|
+
|
49
|
+
### Bug Fixes
|
50
|
+
|
51
|
+
* **action-button:** hide field wrapper if action button is not displayed ([1d4b701](https://github.com/projectcaluma/ember-caluma/commit/1d4b701af35d48d072001f3295b905b1065daffe))
|
52
|
+
* render static questions ([28fff94](https://github.com/projectcaluma/ember-caluma/commit/28fff9487e4ad3153fe267db4b66208ad858aaac))
|
53
|
+
* **table:** fix styling of table fields ([30c5903](https://github.com/projectcaluma/ember-caluma/commit/30c590389ed82c37ebf666f1484501c66ca8f0bb))
|
54
|
+
|
55
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.5](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.4...@projectcaluma/ember-form-v11.0.0-beta.5) (2022-02-01)
|
56
|
+
|
57
|
+
|
58
|
+
### Bug Fixes
|
59
|
+
|
60
|
+
* **document-validity:** wait to validate until the UI has finished saving values ([9ec5330](https://github.com/projectcaluma/ember-caluma/commit/9ec5330905046604f95ab42985a29a5e0dc369a4))
|
61
|
+
* **form:** use component save task instead of field for loading indicator ([6de510d](https://github.com/projectcaluma/ember-caluma/commit/6de510d19a3608b7cd40092908d562a152ef03bd))
|
62
|
+
|
63
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.4](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.3...@projectcaluma/ember-form-v11.0.0-beta.4) (2022-02-01)
|
64
|
+
|
65
|
+
|
66
|
+
### Bug Fixes
|
67
|
+
|
68
|
+
* **form:** fix closing of info modal ([b46095a](https://github.com/projectcaluma/ember-caluma/commit/b46095aa3b31bc1b2035a0818778edaa8fd9c745))
|
69
|
+
|
70
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.3](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.2...@projectcaluma/ember-form-v11.0.0-beta.3) (2022-01-24)
|
71
|
+
|
72
|
+
|
73
|
+
### chore
|
74
|
+
|
75
|
+
* **deps:** update ember-uikit to v5 beta ([6568d39](https://github.com/projectcaluma/ember-caluma/commit/6568d398216d33b44da5b659830ca3c200dd7012))
|
76
|
+
|
77
|
+
|
78
|
+
### BREAKING CHANGES
|
79
|
+
|
80
|
+
* **deps:** All `@projectcaluma/ember-*` packages now require
|
81
|
+
`ember-uikit` v5+.
|
82
|
+
|
83
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.2](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.1...@projectcaluma/ember-form-v11.0.0-beta.2) (2022-01-18)
|
84
|
+
|
85
|
+
|
86
|
+
### Bug Fixes
|
87
|
+
|
88
|
+
* **deps:** update @projectcaluma/ember-testing [skip ci] ([371d144](https://github.com/projectcaluma/ember-caluma/commit/371d1440a69cad682c1274ddbaeb46deef62376d))
|
89
|
+
* **deps:** update @projectcaluma/ember-workflow [skip ci] ([e1232c8](https://github.com/projectcaluma/ember-caluma/commit/e1232c8d6929360b30a5c2a6777203f24255da94))
|
90
|
+
* **form:** fix dependencies for ember-autoresize-modifier ([242007a](https://github.com/projectcaluma/ember-caluma/commit/242007a9b5010fc99824b7f03d8102095904403f))
|
91
|
+
* **form:** fix styling of table buttons ([ec44fef](https://github.com/projectcaluma/ember-caluma/commit/ec44feffd2571b0492102d6a2c2926fa0476a91c))
|
92
|
+
* **form:** fix transition to next navigable item if current is not ([850ff55](https://github.com/projectcaluma/ember-caluma/commit/850ff55564d26c2e8b5842acfd9500a0caa19864))
|
93
|
+
|
94
|
+
|
95
|
+
### Features
|
96
|
+
|
97
|
+
* **form:** add vertical option for checkbox and radio questions ([ca778ab](https://github.com/projectcaluma/ember-caluma/commit/ca778ab4ead7107a44688e8b3c5a034769f9dba4))
|
98
|
+
* **form:** enable autoresize for textarea questions ([428820f](https://github.com/projectcaluma/ember-caluma/commit/428820f2bdf842ebeb0393a70c5556ceceab9e4e))
|
99
|
+
|
100
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.1](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v10.0.3...@projectcaluma/ember-form-v11.0.0-beta.1) (2022-01-07)
|
101
|
+
|
102
|
+
|
103
|
+
### Bug Fixes
|
104
|
+
|
105
|
+
* **core:** override apollo service instead of serving a mixin ([e86796e](https://github.com/projectcaluma/ember-caluma/commit/e86796e801dc5a2a5b1331b87bc9261509443605)), closes [#529](https://github.com/projectcaluma/ember-caluma/issues/529)
|
106
|
+
* **deps:** update @projectcaluma/ember-core [skip ci] ([1e6af2d](https://github.com/projectcaluma/ember-caluma/commit/1e6af2dc2f29347897e605cc7144721abc2b44d7))
|
107
|
+
* **deps:** update @projectcaluma/ember-testing [skip ci] ([0c339df](https://github.com/projectcaluma/ember-caluma/commit/0c339df93880ffba0023552fa326b313df7bcec3))
|
108
|
+
* **deps:** update @projectcaluma/ember-workflow [skip ci] ([07686c1](https://github.com/projectcaluma/ember-caluma/commit/07686c1e061fc4fc13715a3638cfad7b0a1197fe))
|
109
|
+
* **testing:** use schema collection for handlers ([e4b54a3](https://github.com/projectcaluma/ember-caluma/commit/e4b54a3db136a35053896b677c5d52a18cdbe3a6))
|
110
|
+
|
111
|
+
|
112
|
+
### chore
|
113
|
+
|
114
|
+
* remove support for IE11 ([b6d002e](https://github.com/projectcaluma/ember-caluma/commit/b6d002e002a5caf7549af19a67ecfab5e22fc3e9))
|
115
|
+
|
116
|
+
|
117
|
+
### Features
|
118
|
+
|
119
|
+
* **form:** allow overriding loading state of cf-content ([a276b57](https://github.com/projectcaluma/ember-caluma/commit/a276b57d3c055f43b4d3de316c75a861179e7865))
|
120
|
+
* **form:** refactor lib layer to native classes ([ea2bd0d](https://github.com/projectcaluma/ember-caluma/commit/ea2bd0daaa10eba110ba1e464da4c5089cb53c82))
|
121
|
+
|
122
|
+
|
123
|
+
### BREAKING CHANGES
|
124
|
+
|
125
|
+
* **core:** The apollo service mixin was removed in favor of
|
126
|
+
directly overriding the service. For more information on how to migrate,
|
127
|
+
please visit the v11 migration guide.
|
128
|
+
* This removes all support for Internet Explorer 11.
|
129
|
+
* **form:** This commit refactors the whole lib layer of
|
130
|
+
@projectcaluma/ember-form from EmberObject to native classes which
|
131
|
+
brings various changes for the consuming apps. For instructions on how
|
132
|
+
to migrate to this version, please check the guide in the interactive
|
133
|
+
documentation.
|
134
|
+
|
135
|
+
# [@projectcaluma/ember-form-v10.0.3](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v10.0.2...@projectcaluma/ember-form-v10.0.3) (2021-12-15)
|
136
|
+
|
137
|
+
|
138
|
+
### Bug Fixes
|
139
|
+
|
140
|
+
* **deps:** update @projectcaluma/ember-core [skip ci] ([27fb674](https://github.com/projectcaluma/ember-caluma/commit/27fb674f465bb78f3aed48c896259879d54a4de5))
|
141
|
+
* **deps:** update @projectcaluma/ember-workflow [skip ci] ([ff1990b](https://github.com/projectcaluma/ember-caluma/commit/ff1990b9025760371d3c7a7ae98bff6213291820))
|
142
|
+
|
143
|
+
# [@projectcaluma/ember-form-v10.0.2](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v10.0.1...@projectcaluma/ember-form-v10.0.2) (2021-11-26)
|
144
|
+
|
145
|
+
|
146
|
+
### Bug Fixes
|
147
|
+
|
148
|
+
* **deps:** update @projectcaluma/ember-core [skip ci] ([d2accca](https://github.com/projectcaluma/ember-caluma/commit/d2accca7678fe49cba53b1aef3224ff7a055b631))
|
149
|
+
* **deps:** update @projectcaluma/ember-testing [skip ci] ([90a4a05](https://github.com/projectcaluma/ember-caluma/commit/90a4a056baea2fe8b4d080f5de20c774d6224ed7))
|
150
|
+
* **deps:** update @projectcaluma/ember-workflow [skip ci] ([6796dd6](https://github.com/projectcaluma/ember-caluma/commit/6796dd657ec76d661101919d3970eecf1e6fab6a))
|
151
|
+
* replace fragment symlink with a copy ([457e7a8](https://github.com/projectcaluma/ember-caluma/commit/457e7a82863d62fe56f59049f4cd6f31de5d8796))
|
152
|
+
|
153
|
+
# [@projectcaluma/ember-form-v10.0.1](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v10.0.0...@projectcaluma/ember-form-v10.0.1) (2021-11-25)
|
154
|
+
|
155
|
+
|
156
|
+
### Bug Fixes
|
157
|
+
|
158
|
+
* **deps:** update @projectcaluma/ember-core [skip ci] ([397f5ba](https://github.com/projectcaluma/ember-caluma/commit/397f5bae7fe2795a1e5824f450f666dee4a030d5))
|
159
|
+
|
160
|
+
# [@projectcaluma/ember-form-v10.0.0](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.3.0...@projectcaluma/ember-form-v10.0.0) (2021-11-25)
|
161
|
+
|
162
|
+
|
163
|
+
### Bug Fixes
|
164
|
+
|
165
|
+
* **form:** return default value for answer transform if empty ([ed703bc](https://github.com/projectcaluma/ember-caluma/commit/ed703bc2505e0ec59ec5b5ed6df4e0bb4f93db12))
|
166
|
+
|
167
|
+
|
168
|
+
### chore
|
169
|
+
|
170
|
+
* **deps:** update dependencies and drop support for node 10 ([51d6dee](https://github.com/projectcaluma/ember-caluma/commit/51d6deeda9811518622ba0cefd8d3876651dab4f))
|
171
|
+
|
172
|
+
|
173
|
+
### Features
|
174
|
+
|
175
|
+
* **action-button:** improve detection of work item for action button ([f00b7b0](https://github.com/projectcaluma/ember-caluma/commit/f00b7b06ac114c5bee2267132518c13ee1502ad0))
|
176
|
+
|
177
|
+
|
178
|
+
### BREAKING CHANGES
|
179
|
+
|
180
|
+
* **deps:** Remove support for node v10
|
181
|
+
|
182
|
+
# [@projectcaluma/ember-form-v9.3.0](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.2.0...@projectcaluma/ember-form-v9.3.0) (2021-11-16)
|
183
|
+
|
184
|
+
|
185
|
+
### Bug Fixes
|
186
|
+
|
187
|
+
* **form:** update design for input type "file" ([438c8ab](https://github.com/projectcaluma/ember-caluma/commit/438c8ab7d6cb6d419fa3c531ebf699ee19fc2bcf))
|
188
|
+
|
189
|
+
|
190
|
+
### Features
|
191
|
+
|
192
|
+
* **form:** add new question type action button ([fab0f93](https://github.com/projectcaluma/ember-caluma/commit/fab0f93c0c2caa21fd9d05784d7fe6290eecbfe8))
|
193
|
+
* **form:** refactor table to glimmer and add invalid indicator ([9d9d877](https://github.com/projectcaluma/ember-caluma/commit/9d9d87758e23866d19cec3c300c065df6962ffd2)), closes [#455](https://github.com/projectcaluma/ember-caluma/issues/455)
|
194
|
+
|
195
|
+
# [@projectcaluma/ember-form-v9.2.0](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.1.2...@projectcaluma/ember-form-v9.2.0) (2021-11-11)
|
196
|
+
|
197
|
+
|
198
|
+
### Features
|
199
|
+
|
200
|
+
* **form:** add delete functionality for uploaded files ([#1625](https://github.com/projectcaluma/ember-caluma/issues/1625)) ([45e8718](https://github.com/projectcaluma/ember-caluma/commit/45e871893c6fde296a5a53789985cf891d2b7de9))
|
201
|
+
|
202
|
+
# [@projectcaluma/ember-form-v9.1.2](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.1.1...@projectcaluma/ember-form-v9.1.2) (2021-11-05)
|
203
|
+
|
204
|
+
|
205
|
+
### Bug Fixes
|
206
|
+
|
207
|
+
* **form:** safely call validate in document-validity ([#1623](https://github.com/projectcaluma/ember-caluma/issues/1623)) ([12794c0](https://github.com/projectcaluma/ember-caluma/commit/12794c0357060c48a17b4f482c8fa87730fead19))
|
208
|
+
* **form:** set formquestion as optional ([#1600](https://github.com/projectcaluma/ember-caluma/issues/1600)) ([674d486](https://github.com/projectcaluma/ember-caluma/commit/674d486b9c5fad6330c24dda7870b21eecb0da18))
|
209
|
+
|
210
|
+
# [@projectcaluma/ember-form-v9.1.1](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.1.0...@projectcaluma/ember-form-v9.1.1) (2021-10-14)
|
211
|
+
|
212
|
+
|
213
|
+
### Bug Fixes
|
214
|
+
|
215
|
+
* update version numbers ([e30424f](https://github.com/projectcaluma/ember-caluma/commit/e30424f9e1387e8756f0725861205d6f5234cfab))
|
216
|
+
|
217
|
+
# [@projectcaluma/ember-form-v9.1.0](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.0.3...@projectcaluma/ember-form-v9.1.0) (2021-10-13)
|
218
|
+
|
219
|
+
|
220
|
+
### Features
|
221
|
+
|
222
|
+
* **form:** add validity callbacks for document validity component ([998f327](https://github.com/projectcaluma/ember-caluma/commit/998f3275ae7b92b3ad7572d5199aa141f315e4cb))
|
223
|
+
|
224
|
+
# [@projectcaluma/ember-form-v9.0.3](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.0.2...@projectcaluma/ember-form-v9.0.3) (2021-10-12)
|
225
|
+
|
226
|
+
|
227
|
+
### Bug Fixes
|
228
|
+
|
229
|
+
* **form:** show calculated value in calc field ([e09aa77](https://github.com/projectcaluma/ember-caluma/commit/e09aa77c5d1cce12752443af04d2689d244cd49a))
|
230
|
+
|
231
|
+
# [@projectcaluma/ember-form-v9.0.2](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.0.1...@projectcaluma/ember-form-v9.0.2) (2021-09-30)
|
232
|
+
|
233
|
+
|
234
|
+
### Bug Fixes
|
235
|
+
|
236
|
+
* **form-builder:** fix default values for table questions ([1548502](https://github.com/projectcaluma/ember-caluma/commit/154850271161b06ca845286d655f38a56a298327))
|
237
|
+
* **info:** pass on attributes for info icon component ([db264d8](https://github.com/projectcaluma/ember-caluma/commit/db264d8c401bfc9823a3d90823850a2636aeeee8))
|
238
|
+
|
239
|
+
# [@projectcaluma/ember-form-v9.0.1](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v9.0.0...@projectcaluma/ember-form-v9.0.1) (2021-09-14)
|
240
|
+
|
241
|
+
|
242
|
+
### Bug Fixes
|
243
|
+
|
244
|
+
* **form:** reset displayed form if it doesn't exist in form ([aa61cfa](https://github.com/projectcaluma/ember-caluma/commit/aa61cfa598557d78aa82926ffd6a461f86e89b92))
|
245
|
+
|
246
|
+
# @projectcaluma/ember-form v9.0.0 (2021-09-13)
|
247
|
+
|
248
|
+
### chore
|
249
|
+
|
250
|
+
* deps: update ember-auto-import to v2 (34242f9)
|
251
|
+
|
252
|
+
### Features
|
253
|
+
|
254
|
+
* move to monorepo structure with multiple packages (676df5f)
|
255
|
+
|
256
|
+
### BREAKING CHANGES
|
257
|
+
|
258
|
+
* deps: ember-caluma now requires ember-auto-import v2+
|
259
|
+
* This will completely change the way ember-caluma is used. A migration guide will be added in time.
|
260
|
+
|
261
|
+
# [8.0.0](https://github.com/projectcaluma/ember-caluma/compare/v7.5.0...v8.0.0) (2021-08-20)
|
262
|
+
|
263
|
+
|
264
|
+
### Bug Fixes
|
265
|
+
|
266
|
+
* **gql:** replace deprecated filters and fix dynamic option filter ([e2e099a](https://github.com/projectcaluma/ember-caluma/commit/e2e099a16028dfe5192848e6a4cc4de07dc07b0e))
|
267
|
+
|
268
|
+
|
269
|
+
### Features
|
270
|
+
|
271
|
+
* **validation:** switch default for validateOnEnter ([ee57ed5](https://github.com/projectcaluma/ember-caluma/commit/ee57ed51c596c74989785ee1e8737dcc5d9a606f))
|
272
|
+
|
273
|
+
|
274
|
+
### BREAKING CHANGES
|
275
|
+
|
276
|
+
* **validation:** The `validateOnEnter` parameter for the
|
277
|
+
`DocumentValidity` component is now `false` instead of `true` since this
|
278
|
+
is the default use case.
|
279
|
+
|
280
|
+
# [7.5.0](https://github.com/projectcaluma/ember-caluma/compare/v7.4.0...v7.5.0) (2021-08-11)
|
281
|
+
|
282
|
+
|
283
|
+
### Bug Fixes
|
284
|
+
|
285
|
+
* **cfb:** improve badge styling after uikit update ([6476b4a](https://github.com/projectcaluma/ember-caluma/commit/6476b4ae2441a9984ecebc1e5a65f9326df4199f))
|
286
|
+
* **demo-app:** added required "validation" route to router and added corresponding translations. ([513e58a](https://github.com/projectcaluma/ember-caluma/commit/513e58ad093a601ce0f9a43b67959aeace082acb))
|
287
|
+
* **file upload:** don't use formdata for minio upload ([52fde60](https://github.com/projectcaluma/ember-caluma/commit/52fde60364ca82435479046be35bc33c1f488fc9)), closes [#1287](https://github.com/projectcaluma/ember-caluma/issues/1287)
|
288
|
+
* **info modal:** glimmer syntax ([b6b2b24](https://github.com/projectcaluma/ember-caluma/commit/b6b2b245fdda3a978b7c90f5833bac38345d73e3))
|
289
|
+
* **task-button:** fix filter for fetching the task ([332c480](https://github.com/projectcaluma/ember-caluma/commit/332c4807e16ba0a51407016b31163238ac9fd4ce))
|
290
|
+
* **task-button:** only render button if work item is ready ([f24191c](https://github.com/projectcaluma/ember-caluma/commit/f24191cec99502a301642113f727c2adb4f0e147))
|
291
|
+
* add ember-in-viewport to blueprint ([57d1710](https://github.com/projectcaluma/ember-caluma/commit/57d1710cd4a47741517c8bf43122c8d284a2ffc1))
|
292
|
+
|
293
|
+
|
294
|
+
### Features
|
295
|
+
|
296
|
+
* **buttons:** add willMutate hook for work item and task buttons ([3672a52](https://github.com/projectcaluma/ember-caluma/commit/3672a52e788ad9e1dc6ac2c4e9960f99f4449cb7))
|
297
|
+
* **cfb:** link sub- & rowforms in question list ([4034427](https://github.com/projectcaluma/ember-caluma/commit/4034427d2898e79d012ff9fcf5dbc7df6fdb5e41))
|
298
|
+
* **cfb:** make sub- & rowforms searchable ([66e483f](https://github.com/projectcaluma/ember-caluma/commit/66e483fcb972b300b14394d5e7eac46eb79aa003))
|
299
|
+
* **cfb:** mark conditionally required / hidden questions ([f91e07e](https://github.com/projectcaluma/ember-caluma/commit/f91e07e49cfcd33eb363f9be063d987584c4acc0))
|
300
|
+
* **document-validity:** allow manual triggering of validation ([8388a0a](https://github.com/projectcaluma/ember-caluma/commit/8388a0a99a87e1eaa780b38f3c0ff0ea1ab3cd6f))
|
301
|
+
* add widget override "hidden" ([cfa8122](https://github.com/projectcaluma/ember-caluma/commit/cfa81220326c0bda7b901a22dbe595c329f18c1a))
|
302
|
+
|
303
|
+
# [7.4.0](https://github.com/projectcaluma/ember-caluma/compare/v7.3.0...v7.4.0) (2021-07-16)
|
304
|
+
|
305
|
+
|
306
|
+
### Features
|
307
|
+
|
308
|
+
* add document validity check component ([#1448](https://github.com/projectcaluma/ember-caluma/issues/1448)) ([98ef13c](https://github.com/projectcaluma/ember-caluma/commit/98ef13c92edee11233c54f52fee1fe08fc762e15))
|
309
|
+
|
310
|
+
# [7.3.0](https://github.com/projectcaluma/ember-caluma/compare/v7.2.0...v7.3.0) (2021-06-25)
|
311
|
+
|
312
|
+
|
313
|
+
### Features
|
314
|
+
|
315
|
+
* add task button ([#1423](https://github.com/projectcaluma/ember-caluma/issues/1423)) ([823eff1](https://github.com/projectcaluma/ember-caluma/commit/823eff146dc1cea05cc44857f0850ba175aadced))
|
316
|
+
|
317
|
+
# [7.2.0](https://github.com/projectcaluma/ember-caluma/compare/v7.1.1...v7.2.0) (2021-06-22)
|
318
|
+
|
319
|
+
|
320
|
+
### Bug Fixes
|
321
|
+
|
322
|
+
* **docs:** add user documentation for workitembutton ([47ef3e1](https://github.com/projectcaluma/ember-caluma/commit/47ef3e19ec0e6673d02de75e4da55caaf1d29036))
|
323
|
+
* **work-item-button:** add docs and improve component ([71cb7a2](https://github.com/projectcaluma/ember-caluma/commit/71cb7a290f1152d6f178d2d29e2fe91bfe038f11))
|
324
|
+
|
325
|
+
|
326
|
+
### Features
|
327
|
+
|
328
|
+
* **jexl:** allow optional answer transforms with default value ([1ba4e7e](https://github.com/projectcaluma/ember-caluma/commit/1ba4e7e224f10026435251cd0d53ce35b111bf0a))
|
329
|
+
* **work-item-button:** add success and error hooks ([8d50b15](https://github.com/projectcaluma/ember-caluma/commit/8d50b1553b5d73776bd02371c0dec9fdb3d74771))
|
330
|
+
* add work item button component ([4daa9cf](https://github.com/projectcaluma/ember-caluma/commit/4daa9cfd477d4d5b5be2aa33446093fb075e4bbf))
|
331
|
+
|
332
|
+
## [7.1.1](https://github.com/projectcaluma/ember-caluma/compare/v7.1.0...v7.1.1) (2021-05-31)
|
333
|
+
|
334
|
+
|
335
|
+
### Bug Fixes
|
336
|
+
|
337
|
+
* **tests:** update graphql schema to fix testing ([c928c07](https://github.com/projectcaluma/ember-caluma/commit/c928c079dbc4ea9b1b1ac6c0153c1a259722f456))
|
338
|
+
|
339
|
+
# [7.1.0](https://github.com/projectcaluma/ember-caluma/compare/v7.0.6...v7.1.0) (2021-05-17)
|
340
|
+
|
341
|
+
|
342
|
+
### Bug Fixes
|
343
|
+
|
344
|
+
* **form-builder:** fix refreshing of page when submitting search form ([5df89ec](https://github.com/projectcaluma/ember-caluma/commit/5df89ecedfae9594a9c9747848258bdcae08c79c))
|
345
|
+
* **jexl:** fix edge case where field is not found ([769d6a8](https://github.com/projectcaluma/ember-caluma/commit/769d6a88fe7e3da8128424984045a909f5527e62))
|
346
|
+
* feedback from code review ([fdd979e](https://github.com/projectcaluma/ember-caluma/commit/fdd979e53a5c7ce7c1cf3fa10f2d3d05a8dba092))
|
347
|
+
|
348
|
+
|
349
|
+
### Features
|
350
|
+
|
351
|
+
* **form builder:** add syntax highlighting for markdown and jexl ([155c2ce](https://github.com/projectcaluma/ember-caluma/commit/155c2ce056145dc1f839f0dec9bc29ffef77f50c))
|
352
|
+
|
353
|
+
## [7.0.6](https://github.com/projectcaluma/ember-caluma/compare/v7.0.5...v7.0.6) (2021-04-09)
|
354
|
+
|
355
|
+
|
356
|
+
### Bug Fixes
|
357
|
+
|
358
|
+
* **docs:** fix broken link to snippet ([9faea24](https://github.com/projectcaluma/ember-caluma/commit/9faea240c6cdae6aed179b7a2c3cb513ce506cef))
|
359
|
+
|
360
|
+
## [7.0.5](https://github.com/projectcaluma/ember-caluma/compare/v7.0.4...v7.0.5) (2021-03-31)
|
361
|
+
|
362
|
+
|
363
|
+
### Bug Fixes
|
364
|
+
|
365
|
+
* **label:** fix optional chaining ([2db71fa](https://github.com/projectcaluma/ember-caluma/commit/2db71fae949f661e24556f61637bca0d41a9ae49))
|
366
|
+
|
367
|
+
## [7.0.4](https://github.com/projectcaluma/ember-caluma/compare/v7.0.3...v7.0.4) (2021-03-24)
|
368
|
+
|
369
|
+
|
370
|
+
### Bug Fixes
|
371
|
+
|
372
|
+
* **field:** add all table columns as dependency if followed by stringify ([44bbf29](https://github.com/projectcaluma/ember-caluma/commit/44bbf29705c27928fb99fdfca4770db780201516))
|
373
|
+
* **field:** fix field dependencies for optional property ([26e564e](https://github.com/projectcaluma/ember-caluma/commit/26e564e4a556d06db3508c65855d58ba43bf1e64))
|
374
|
+
|
375
|
+
## [7.0.3](https://github.com/projectcaluma/ember-caluma/compare/v7.0.2...v7.0.3) (2021-03-17)
|
376
|
+
|
377
|
+
|
378
|
+
### Bug Fixes
|
379
|
+
|
380
|
+
* **jexl:** remove hidden columns from table value in JEXL ([3e93019](https://github.com/projectcaluma/ember-caluma/commit/3e930193d2030292707e378e4ed0ae1942576d82))
|
381
|
+
|
382
|
+
## [7.0.2](https://github.com/projectcaluma/ember-caluma/compare/v7.0.1...v7.0.2) (2021-03-16)
|
383
|
+
|
384
|
+
|
385
|
+
### Bug Fixes
|
386
|
+
|
387
|
+
* **cfb:** fix jexl requiredness evaluation and refactor component ([745773c](https://github.com/projectcaluma/ember-caluma/commit/745773cb2e2dee0c30efecc2e710aa3201a37060))
|
388
|
+
|
389
|
+
## [7.0.1](https://github.com/projectcaluma/ember-caluma/compare/v7.0.0...v7.0.1) (2021-03-16)
|
390
|
+
|
391
|
+
|
392
|
+
### Bug Fixes
|
393
|
+
|
394
|
+
* use concurrency decorators for compatibility ([083136a](https://github.com/projectcaluma/ember-caluma/commit/083136ab5776704e12abe256a6f871f2dd6252f2))
|
395
|
+
|
396
|
+
# [7.0.0](https://github.com/projectcaluma/ember-caluma/compare/v6.10.2...v7.0.0) (2021-03-16)
|
397
|
+
|
398
|
+
|
399
|
+
### Bug Fixes
|
400
|
+
|
401
|
+
* **date:** use UTC for dates to avoid timezone problems ([4d943dd](https://github.com/projectcaluma/ember-caluma/commit/4d943dd7672f007fa17bc55ea358ef61f2db7dd6))
|
402
|
+
* **form:** display archived options if selected ([8b8e5c7](https://github.com/projectcaluma/ember-caluma/commit/8b8e5c76df840a0b8ca835434ba25f0ff03f4390))
|
403
|
+
* **helper:** allow calling has-question-type with a nullish parameter ([67886fc](https://github.com/projectcaluma/ember-caluma/commit/67886fcc186aae4605c4bc9440ebee73c91947a0))
|
404
|
+
|
405
|
+
|
406
|
+
### Features
|
407
|
+
|
408
|
+
* **cfb:** implement search and pagination of forms ([b4400c5](https://github.com/projectcaluma/ember-caluma/commit/b4400c53986d719880259bd53a9fce45d0c89050))
|
409
|
+
* **jexl:** improve mapby and add stringify transform ([9510e77](https://github.com/projectcaluma/ember-caluma/commit/9510e774057685e9d85564e6ed7595ef2324bca1))
|
410
|
+
|
411
|
+
|
412
|
+
* chore(options)!: remove getNamespace and setNamespace methods ([613bf36](https://github.com/projectcaluma/ember-caluma/commit/613bf3657b7bff29f4e3329d0d87d27957507cb0))
|
413
|
+
* chore(deps)!: drop support for older ember LTS version 2.20 ([018a689](https://github.com/projectcaluma/ember-caluma/commit/018a6899b9f835b59dbe1a115aaf4d432682d719))
|
414
|
+
* chore(deps)!: update ember-apollo-client and migrate to apollo client v3 ([b914262](https://github.com/projectcaluma/ember-caluma/commit/b914262b5ced3a027d4fd8390c72aa0ade94e4a8))
|
415
|
+
|
416
|
+
|
417
|
+
### BREAKING CHANGES
|
418
|
+
|
419
|
+
* This removes the `getNamespace` and `setNamespace` methods on the options service and replaces them with real getters and setters:
|
420
|
+
```js
|
421
|
+
// before
|
422
|
+
|
423
|
+
calumaOptions.setNamespace("Test Test");
|
424
|
+
calumaOptions.getNamespace(); // "test-test"
|
425
|
+
|
426
|
+
// after
|
427
|
+
|
428
|
+
calumaOptions.namespace = "Test Test";
|
429
|
+
calumaOptions.namespace; // "test-test"
|
430
|
+
```
|
431
|
+
* This removes guaranteed support for ember LTS 2.20 and adds support for the newly active LTS 2.24
|
432
|
+
* This updates `ember-apollo-client` and therefore `apollo-client` to v3 which introduces various breaking changes. Read the [migration guide](tests/dummy/app/templates/docs/migration.md) for further instructions.
|
433
|
+
|
434
|
+
## [6.10.2](https://github.com/projectcaluma/ember-caluma/compare/v6.10.1...v6.10.2) (2021-02-15)
|
435
|
+
|
436
|
+
|
437
|
+
### Bug Fixes
|
438
|
+
|
439
|
+
* **field:** some questions do not have an answer, handle this correctly ([#1240](https://github.com/projectcaluma/ember-caluma/issues/1240)) ([f163748](https://github.com/projectcaluma/ember-caluma/commit/f1637489d590936bf20ffd2a98a96145f9a84c6e))
|
440
|
+
|
441
|
+
## [6.10.1](https://github.com/projectcaluma/ember-caluma/compare/v6.10.0...v6.10.1) (2021-02-15)
|
442
|
+
|
443
|
+
|
444
|
+
### Bug Fixes
|
445
|
+
|
446
|
+
* **jexl:** fix jexl dependency gathering for empty tables ([#1239](https://github.com/projectcaluma/ember-caluma/issues/1239)) ([22c68d3](https://github.com/projectcaluma/ember-caluma/commit/22c68d395129c653112e26fa4d760d3ad661ec39))
|
447
|
+
|
448
|
+
# [6.10.0](https://github.com/projectcaluma/ember-caluma/compare/v6.9.3...v6.10.0) (2021-02-15)
|
449
|
+
|
450
|
+
|
451
|
+
### Bug Fixes
|
452
|
+
|
453
|
+
* **jexl:** fix division by 0 in avg transform ([#1233](https://github.com/projectcaluma/ember-caluma/issues/1233)) ([0f7ef59](https://github.com/projectcaluma/ember-caluma/commit/0f7ef596159e9fd2d3e9929b596bc0dd6e803132))
|
454
|
+
* **jexl:** fix validation of numbers in transforms ([#1234](https://github.com/projectcaluma/ember-caluma/issues/1234)) ([27f3324](https://github.com/projectcaluma/ember-caluma/commit/27f3324ac382eed221eba807cc4220cfd09ef20b))
|
455
|
+
* **navigation:** set validated fields to dirty and check for that ([2975356](https://github.com/projectcaluma/ember-caluma/commit/29753561d0b9d53fd6c0a05fb5e0b96a1376cf5b))
|
456
|
+
|
457
|
+
|
458
|
+
### Features
|
459
|
+
|
460
|
+
* **jexl:** add transforms for mathematical functions ([#1230](https://github.com/projectcaluma/ember-caluma/issues/1230)) ([e7c1974](https://github.com/projectcaluma/ember-caluma/commit/e7c1974f079cfba18997cc23d9465d3dcdc6b4e2))
|
461
|
+
|
462
|
+
## [6.9.3](https://github.com/projectcaluma/ember-caluma/compare/v6.9.2...v6.9.3) (2021-02-04)
|
463
|
+
|
464
|
+
|
465
|
+
### Bug Fixes
|
466
|
+
|
467
|
+
* pin uikit ([12523f4](https://github.com/projectcaluma/ember-caluma/commit/12523f456fcaf343b0fc39593c908cfada535cfe))
|
468
|
+
* **deps:** add resolution to fix @babel/parser to 7.12.11 ([2333c88](https://github.com/projectcaluma/ember-caluma/commit/2333c8873dd1e97b66b17981d3a2dfe3103e5722))
|
469
|
+
* **form:** add fields used in mapby transforms to dependencies ([adedd7e](https://github.com/projectcaluma/ember-caluma/commit/adedd7e50c3e848481949c6413c5268bce575680))
|
470
|
+
* **question/default:** ignore question's widgetOverride ([0e0f9cc](https://github.com/projectcaluma/ember-caluma/commit/0e0f9cc98a5d7b98d200938db62269103ef6d46b))
|
471
|
+
|
472
|
+
## [6.9.2](https://github.com/projectcaluma/ember-caluma/compare/v6.9.1...v6.9.2) (2021-01-28)
|
473
|
+
|
474
|
+
|
475
|
+
### Bug Fixes
|
476
|
+
|
477
|
+
* **form-builder:** fix missing question on answer for default value ([#1204](https://github.com/projectcaluma/ember-caluma/issues/1204)) ([c1c6173](https://github.com/projectcaluma/ember-caluma/commit/c1c6173638da7dfca275c97158733c5dca441ad5))
|
478
|
+
|
479
|
+
## [6.9.1](https://github.com/projectcaluma/ember-caluma/compare/v6.9.0...v6.9.1) (2021-01-26)
|
480
|
+
|
481
|
+
|
482
|
+
### Bug Fixes
|
483
|
+
|
484
|
+
* **form-builder:** fix fieldset on generated field for the default value ([a5f9dcd](https://github.com/projectcaluma/ember-caluma/commit/a5f9dcde7ad04c97eaed982447e8595f698739fe))
|
485
|
+
|
486
|
+
# [6.9.0](https://github.com/projectcaluma/ember-caluma/compare/v6.8.0...v6.9.0) (2021-01-22)
|
487
|
+
|
488
|
+
|
489
|
+
### Features
|
490
|
+
|
491
|
+
* **jexl:** allow usage of form meta in question jexl ([2956db5](https://github.com/projectcaluma/ember-caluma/commit/2956db5ef74f896f7234b641d7e15da6336067cc))
|
492
|
+
|
493
|
+
# [6.8.0](https://github.com/projectcaluma/ember-caluma/compare/v6.7.0...v6.8.0) (2021-01-22)
|
494
|
+
|
495
|
+
|
496
|
+
### Bug Fixes
|
497
|
+
|
498
|
+
* **cfb:** clean up options code ([5a4073d](https://github.com/projectcaluma/ember-caluma/commit/5a4073d0297a7782f1a2655e653c601c5f236c88))
|
499
|
+
* **cfb:** fix recalculation issue in default values ([f549637](https://github.com/projectcaluma/ember-caluma/commit/f549637735596b215849d9170188cae28516e839))
|
500
|
+
* **cfb:** improve options sorting code ([d5a2591](https://github.com/projectcaluma/ember-caluma/commit/d5a25912d694f66d69ace55d61fea777bf9b5a33))
|
501
|
+
|
502
|
+
|
503
|
+
### Features
|
504
|
+
|
505
|
+
* **cfb:** implement reordering of question options ([3928a7c](https://github.com/projectcaluma/ember-caluma/commit/3928a7cd797127672f61d65179b3bd38a44d5fcf))
|
506
|
+
* **cfb:** use uk-sortable component for options sorting ([eba83f7](https://github.com/projectcaluma/ember-caluma/commit/eba83f7382f9cd5dabd80c833958df4ae684c04a))
|
507
|
+
|
508
|
+
# [6.7.0](https://github.com/projectcaluma/ember-caluma/compare/v6.6.1...v6.7.0) (2021-01-14)
|
509
|
+
|
510
|
+
|
511
|
+
### Features
|
512
|
+
|
513
|
+
* **cfb:** add input for default values ([48a6a7b](https://github.com/projectcaluma/ember-caluma/commit/48a6a7b4aee78e718e3b7dd8b580b659361a2cb4))
|
514
|
+
* **form:** show calculated fields in form and compute their value live ([2f47be2](https://github.com/projectcaluma/ember-caluma/commit/2f47be22535cbaae7856c949efc6c5b2ba38663c))
|
515
|
+
* **form-builder:** add calculated fields for the form builder ([dab9ee8](https://github.com/projectcaluma/ember-caluma/commit/dab9ee84708642bc054d2a98da15b5f9b14dd5d6))
|
516
|
+
|
517
|
+
## [6.6.1](https://github.com/projectcaluma/ember-caluma/compare/v6.6.0...v6.6.1) (2020-11-30)
|
518
|
+
|
519
|
+
|
520
|
+
### Bug Fixes
|
521
|
+
|
522
|
+
* **nav:** fix navigation hidden state and computed key in field ([2a149ca](https://github.com/projectcaluma/ember-caluma/commit/2a149cad7c2302311a854ecb631b70ba87eb73f4))
|
523
|
+
|
524
|
+
# [6.6.0](https://github.com/projectcaluma/ember-caluma/compare/v6.5.2...v6.6.0) (2020-11-26)
|
525
|
+
|
526
|
+
|
527
|
+
### Features
|
528
|
+
|
529
|
+
* **nav:** implement navigation states for default answers ([0e32e9e](https://github.com/projectcaluma/ember-caluma/commit/0e32e9eac486a6c22e0d11304a149ffbdfc97e50))
|
530
|
+
|
531
|
+
## [6.5.2](https://github.com/projectcaluma/ember-caluma/compare/v6.5.1...v6.5.2) (2020-11-24)
|
532
|
+
|
533
|
+
|
534
|
+
### Bug Fixes
|
535
|
+
|
536
|
+
* **config:** fix power select limit default config ([1a1dec1](https://github.com/projectcaluma/ember-caluma/commit/1a1dec1217ef284471474be714264b1502face9d))
|
537
|
+
|
538
|
+
## [6.5.1](https://github.com/projectcaluma/ember-caluma/compare/v6.5.0...v6.5.1) (2020-11-18)
|
539
|
+
|
540
|
+
|
541
|
+
### Bug Fixes
|
542
|
+
|
543
|
+
* **deps:** update ember-changeset and ember-changeset-validations ([c66cc8e](https://github.com/projectcaluma/ember-caluma/commit/c66cc8ec485513d1fb9b90ed520990b2f30dca72))
|
544
|
+
|
545
|
+
# [6.5.0](https://github.com/projectcaluma/ember-caluma/compare/v6.4.0...v6.5.0) (2020-11-17)
|
546
|
+
|
547
|
+
|
548
|
+
### Bug Fixes
|
549
|
+
|
550
|
+
* **form:** don't throw when typename is undefined in cf-field/input ([34b4a36](https://github.com/projectcaluma/ember-caluma/commit/34b4a36bd2c0e20d20bd81c556fd8fb8688d7988))
|
551
|
+
* **test:** fix test selector ([2c15fa5](https://github.com/projectcaluma/ember-caluma/commit/2c15fa5dba46e766fd6dcf8c58ea9ab5470a2483))
|
552
|
+
* change maximum slug length to fit backend implementation ([1da4e29](https://github.com/projectcaluma/ember-caluma/commit/1da4e297525577640b1377ab86cefe7a798601a2))
|
553
|
+
|
554
|
+
|
555
|
+
### Features
|
556
|
+
|
557
|
+
* **cf-field:** make options limit configurable ([#1097](https://github.com/projectcaluma/ember-caluma/issues/1097)) ([2a819c0](https://github.com/projectcaluma/ember-caluma/commit/2a819c081830054f36cf891bf31909e6a2b92b67))
|
558
|
+
* **cfb:** add paging to question list ([#1064](https://github.com/projectcaluma/ember-caluma/issues/1064)) ([2c80035](https://github.com/projectcaluma/ember-caluma/commit/2c80035e52ab00c7b023c95241d44d91cc112362))
|
559
|
+
* **cfb:** add seperation between archived and active forms ([#1054](https://github.com/projectcaluma/ember-caluma/issues/1054)) ([bda4c79](https://github.com/projectcaluma/ember-caluma/commit/bda4c79fe4778f36786b7dcac819fcc0806fff87))
|
560
|
+
* **lib:** add a debug transform which logs to console ([#1098](https://github.com/projectcaluma/ember-caluma/issues/1098)) ([8ed447b](https://github.com/projectcaluma/ember-caluma/commit/8ed447b64a830b6b3b4419fe2d2d8682642021f9))
|
561
|
+
|
562
|
+
|
563
|
+
### Reverts
|
564
|
+
|
565
|
+
* Revert "chore(deps): bump moment from 2.24.0 to 2.29.1 (#1059)" (#1100) ([dc404e6](https://github.com/projectcaluma/ember-caluma/commit/dc404e63a2190f7b13cf44a06e14261581ab05e5)), closes [#1059](https://github.com/projectcaluma/ember-caluma/issues/1059) [#1100](https://github.com/projectcaluma/ember-caluma/issues/1100)
|
566
|
+
|
567
|
+
# [6.4.0](https://github.com/projectcaluma/ember-caluma/compare/v6.3.0...v6.4.0) (2020-10-19)
|
568
|
+
|
569
|
+
|
570
|
+
### Features
|
571
|
+
|
572
|
+
* **caluma-query:** allow `queryOptions` to be set on `fetch` ([547d08d](https://github.com/projectcaluma/ember-caluma/commit/547d08d7897d85242a8524b61bc0d2a494f4cfa8))
|
573
|
+
|
574
|
+
# [6.3.0](https://github.com/projectcaluma/ember-caluma/compare/v6.2.1...v6.3.0) (2020-10-06)
|
575
|
+
|
576
|
+
|
577
|
+
### Bug Fixes
|
578
|
+
|
579
|
+
* **blueprints:** add ember-composable-helpers to host app dependencies ([9526fff](https://github.com/projectcaluma/ember-caluma/commit/9526fff961b2adb50beae87787a437fd1cb74970))
|
580
|
+
* **dependencies:** update @glimmer/component and pin jexl ([8e9471d](https://github.com/projectcaluma/ember-caluma/commit/8e9471df6f9bf5bc39818a81d2c3ebbd7c577706))
|
581
|
+
* **deps:** update jexl to 2.3.0 ([da041bc](https://github.com/projectcaluma/ember-caluma/commit/da041bc5d41b3034e3252ae27754c09a31d5021e))
|
582
|
+
|
583
|
+
|
584
|
+
### Features
|
585
|
+
|
586
|
+
* **caluma-query:** allow passing of options to apollo query method ([9b27d14](https://github.com/projectcaluma/ember-caluma/commit/9b27d145110bef10970feb11083efc206d55754b))
|
587
|
+
* **query:** add a case query ([d63228b](https://github.com/projectcaluma/ember-caluma/commit/d63228bbe127a8d646d6c84b84b406d14dc32dc8))
|
588
|
+
|
589
|
+
## [6.2.1](https://github.com/projectcaluma/ember-caluma/compare/v6.2.0...v6.2.1) (2020-09-02)
|
590
|
+
|
591
|
+
|
592
|
+
### Bug Fixes
|
593
|
+
|
594
|
+
* **embed:** render power select in place ([20d7f76](https://github.com/projectcaluma/ember-caluma/commit/20d7f76971549298ce677afa2e51aa759feb1546))
|
595
|
+
* **queries:** fix pagination parameters ([c1cf6c9](https://github.com/projectcaluma/ember-caluma/commit/c1cf6c91c69e118f4c9fb4b445c002720bcb72fe))
|
596
|
+
|
597
|
+
# [6.2.0](https://github.com/projectcaluma/ember-caluma/compare/v6.1.2...v6.2.0) (2020-08-26)
|
598
|
+
|
599
|
+
|
600
|
+
### Features
|
601
|
+
|
602
|
+
* add queries for fetching work items ([ef2daff](https://github.com/projectcaluma/ember-caluma/commit/ef2daff7a573298e09db5fa94ca10b74a5f73d85))
|
603
|
+
|
604
|
+
## [6.1.2](https://github.com/projectcaluma/ember-caluma/compare/v6.1.1...v6.1.2) (2020-07-23)
|
605
|
+
|
606
|
+
|
607
|
+
### Bug Fixes
|
608
|
+
|
609
|
+
* fix ember-power-select ([6a0ce3c](https://github.com/projectcaluma/ember-caluma/commit/6a0ce3ca2959392f5fa086c708568c0dfed7ac2c))
|
610
|
+
|
611
|
+
## [6.1.1](https://github.com/projectcaluma/ember-caluma/compare/v6.1.0...v6.1.1) (2020-06-04)
|
612
|
+
|
613
|
+
|
614
|
+
### Bug Fixes
|
615
|
+
|
616
|
+
* **deps:** add resolutions to fix build ([2fa230c](https://github.com/projectcaluma/ember-caluma/commit/2fa230cefb8622ebf2b8b3ea22d9f0561b18ee3e))
|
617
|
+
* **dummy:** fix moment config for dummy app ([e335fe2](https://github.com/projectcaluma/ember-caluma/commit/e335fe2ed63f1d4127acd509ebfead1fc717ed11))
|
618
|
+
* **i18n:** only use primary locale in http headers ([7f36264](https://github.com/projectcaluma/ember-caluma/commit/7f3626463ae74ad99e189733cf8e6df7d6acc823))
|
619
|
+
|
620
|
+
# [6.1.0](https://github.com/projectcaluma/ember-caluma/compare/v6.0.0...v6.1.0) (2020-03-26)
|
621
|
+
|
622
|
+
|
623
|
+
### Features
|
624
|
+
|
625
|
+
* **jexl:** add info object to context ([#805](https://github.com/projectcaluma/ember-caluma/issues/805)) ([c8ff839](https://github.com/projectcaluma/ember-caluma/commit/c8ff83996591f762fc1037faee902ccf75118631))
|
626
|
+
|
627
|
+
# [6.0.0](https://github.com/projectcaluma/ember-caluma/compare/v5.1.0...v6.0.0) (2020-03-25)
|
628
|
+
|
629
|
+
|
630
|
+
### Features
|
631
|
+
|
632
|
+
* **deps:** drop support for ember 3.12 ([6fa06e1](https://github.com/projectcaluma/ember-caluma/commit/6fa06e14802c84949be23e670b2f505f40e940eb))
|
633
|
+
* **utils:** increase slugify max-length to 127 ([3c647ea](https://github.com/projectcaluma/ember-caluma/commit/3c647ea16bea0e88e177bc3713bc63ad1a8fc8de))
|
634
|
+
* **validation:** add minlength validation for text fields ([b34fc47](https://github.com/projectcaluma/ember-caluma/commit/b34fc47bd523e369d71871c609543838c84beed3))
|
635
|
+
|
636
|
+
|
637
|
+
### BREAKING CHANGES
|
638
|
+
|
639
|
+
* **deps:** The support for the former ember LTS version 3.12 was
|
640
|
+
dropped since we only support the latest LTS version which is now 3.16.
|
641
|
+
|
642
|
+
This change happened in 4eaecdb163a7cd6159d488c414dcf2b8afd98c27 where
|
643
|
+
we forgot to mark it as a breaking change which is why this commit is
|
644
|
+
empty.
|
645
|
+
|
646
|
+
# [5.1.0](https://github.com/projectcaluma/ember-caluma/compare/v5.0.0...v5.1.0) (2020-03-03)
|
647
|
+
|
648
|
+
|
649
|
+
### Features
|
650
|
+
|
651
|
+
* **a11y:** various improvements for accessibility ([3185fc8](https://github.com/projectcaluma/ember-caluma/commit/3185fc83e2db128847599f808b4b732e12c16e7a))
|
652
|
+
* **utils:** increase slugify max-length to 150 ([5c2093e](https://github.com/projectcaluma/ember-caluma/commit/5c2093eb7a0dd5bfd9cd0de7fd42fb673077ec71))
|
653
|
+
|
654
|
+
# [5.0.0](https://github.com/projectcaluma/ember-caluma/compare/v4.1.0...v5.0.0) (2020-02-13)
|
655
|
+
|
656
|
+
|
657
|
+
### Bug Fixes
|
658
|
+
|
659
|
+
* **form:** do not run validators on empty values ([a3d996e](https://github.com/projectcaluma/ember-caluma/commit/a3d996e36e4063a27e5173ae6da1a6821dc27ea4))
|
660
|
+
|
661
|
+
|
662
|
+
### Features
|
663
|
+
|
664
|
+
* remove support for node v8.x ([42f84d3](https://github.com/projectcaluma/ember-caluma/commit/42f84d304d4d9081839e80851d2f8cba83ce2d1b))
|
665
|
+
|
666
|
+
|
667
|
+
### BREAKING CHANGES
|
668
|
+
|
669
|
+
* Node v8.x is no longer supported
|
670
|
+
|
671
|
+
# [4.1.0](https://github.com/projectcaluma/ember-caluma/compare/v4.0.5...v4.1.0) (2020-01-06)
|
672
|
+
|
673
|
+
|
674
|
+
### Features
|
675
|
+
|
676
|
+
* **form:** include parent fields in find field method ([1e5b8ea](https://github.com/projectcaluma/ember-caluma/commit/1e5b8ea4c575c086b63553d2c4f1aa6cde6fb36c))
|
677
|
+
|
678
|
+
## [4.0.5](https://github.com/projectcaluma/ember-caluma/compare/v4.0.4...v4.0.5) (2019-12-27)
|
679
|
+
|
680
|
+
|
681
|
+
### Bug Fixes
|
682
|
+
|
683
|
+
* remove FormAnswer ([548f1b1](https://github.com/projectcaluma/ember-caluma/commit/548f1b1273f7944047b14f02008d198fcadaef5d))
|
684
|
+
* **document:** fix wrong computed property key ([544f0aa](https://github.com/projectcaluma/ember-caluma/commit/544f0aaa371f95a9b0f77f788421cf0d789e9e22))
|
685
|
+
* **form:** add proper table validation ([7c6787b](https://github.com/projectcaluma/ember-caluma/commit/7c6787bf5e78d823bf175f60024eb0ad5db0213e))
|
686
|
+
* **form:** fix isNew property for empty answers ([2491dbf](https://github.com/projectcaluma/ember-caluma/commit/2491dbf4658ff66573e1db0d815bacdcb5a731db))
|
687
|
+
* **form:** use parent documents jexl context for table row documents ([aedf903](https://github.com/projectcaluma/ember-caluma/commit/aedf903fed5ec3f3a9756f1d82daffa9b6a573ae))
|
688
|
+
|
689
|
+
## [4.0.4](https://github.com/projectcaluma/ember-caluma/compare/v4.0.3...v4.0.4) (2019-12-11)
|
690
|
+
|
691
|
+
|
692
|
+
### Bug Fixes
|
693
|
+
|
694
|
+
* **form:** fix JEXL answer transform for table values ([9049a0e](https://github.com/projectcaluma/ember-caluma/commit/9049a0e2dda46236913b84344f1892b0f30dcd58))
|
695
|
+
|
696
|
+
## [4.0.3](https://github.com/projectcaluma/ember-caluma/compare/v4.0.2...v4.0.3) (2019-12-06)
|
697
|
+
|
698
|
+
|
699
|
+
### Bug Fixes
|
700
|
+
|
701
|
+
* **deps:** update ember-uikit to v2.0.1 ([0b19859](https://github.com/projectcaluma/ember-caluma/commit/0b19859e4ea519a872be10e808becdade2c47721))
|
702
|
+
|
703
|
+
## [4.0.2](https://github.com/projectcaluma/ember-caluma/compare/v4.0.1...v4.0.2) (2019-12-02)
|
704
|
+
|
705
|
+
|
706
|
+
### Bug Fixes
|
707
|
+
|
708
|
+
* **field:** don't pass `value` to save mutation if null ([4e05609](https://github.com/projectcaluma/ember-caluma/commit/4e05609f19d80c2ad3b4f792b313e165c2908207))
|
709
|
+
|
710
|
+
## [4.0.1](https://github.com/projectcaluma/ember-caluma/compare/v4.0.0...v4.0.1) (2019-11-28)
|
711
|
+
|
712
|
+
|
713
|
+
### Bug Fixes
|
714
|
+
|
715
|
+
* **form:** fix cf-field-value for choice and multiple choice questions ([2afabb9](https://github.com/projectcaluma/ember-caluma/commit/2afabb99482309b3c4e66e88f9483ab821c536e7))
|
716
|
+
* change disabled to readonly where applicable ([15f487a](https://github.com/projectcaluma/ember-caluma/commit/15f487a94a1ef893a822909811562a40ede5960a))
|
717
|
+
|
718
|
+
# [4.0.0](https://github.com/projectcaluma/ember-caluma/compare/v3.0.1...v4.0.0) (2019-11-21)
|
719
|
+
|
720
|
+
|
721
|
+
### Bug Fixes
|
722
|
+
|
723
|
+
* **form:** transform empty string answers to null ([d3a736c](https://github.com/projectcaluma/ember-caluma/commit/d3a736c9445b5e73ba4935d9d415284641478dfe))
|
724
|
+
|
725
|
+
|
726
|
+
### Features
|
727
|
+
|
728
|
+
* **form:** allow empty values for answers ([7e52e23](https://github.com/projectcaluma/ember-caluma/commit/7e52e23440a0241d8315d16a5a492ef8ed1d4419))
|
729
|
+
|
730
|
+
|
731
|
+
### BREAKING CHANGES
|
732
|
+
|
733
|
+
* **form:** Only works with caluma v4.0.0 (https://github.com/projectcaluma/caluma/pull/791)
|
734
|
+
|
735
|
+
## [3.0.1](https://github.com/projectcaluma/ember-caluma/compare/v3.0.0...v3.0.1) (2019-11-06)
|
736
|
+
|
737
|
+
|
738
|
+
### Bug Fixes
|
739
|
+
|
740
|
+
* **form:** fix search for powerselect inputs ([34b57fb](https://github.com/projectcaluma/ember-caluma/commit/34b57fbc2861f74cecce4da076b231c9a6969092))
|
741
|
+
|
742
|
+
# [3.0.0](https://github.com/projectcaluma/ember-caluma/compare/v2.5.0...v3.0.0) (2019-11-06)
|
743
|
+
|
744
|
+
|
745
|
+
### Bug Fixes
|
746
|
+
|
747
|
+
* **jexl:** allow falsey values for intersects operator without breaking ([4fbb73f](https://github.com/projectcaluma/ember-caluma/commit/4fbb73fd790fbe10e1800d598c5df958b6040b28))
|
748
|
+
* **navigation:** fix navigation to show base form questions ([#565](https://github.com/projectcaluma/ember-caluma/issues/565)) ([5f38df0](https://github.com/projectcaluma/ember-caluma/commit/5f38df0b273bda24a78d6f43af488e5eb623d602)), closes [#460](https://github.com/projectcaluma/ember-caluma/issues/460)
|
749
|
+
* **table:** don't re-save existing rows after edit ([e5cd5ef](https://github.com/projectcaluma/ember-caluma/commit/e5cd5ef1d2c4562a55d8744a9093d6d4f23529bd))
|
750
|
+
* **table:** remove row documents on delete ([395e4e4](https://github.com/projectcaluma/ember-caluma/commit/395e4e4f162dbbd5cd28e2acddd724aadf21aaa7))
|
751
|
+
* **table:** skip empty dates in table view ([97f5758](https://github.com/projectcaluma/ember-caluma/commit/97f5758570aea2f5ff357e6edeb4dc5432a57483))
|
752
|
+
|
753
|
+
|
754
|
+
### chore
|
755
|
+
|
756
|
+
* remove support for ember 3.8 ([093d25b](https://github.com/projectcaluma/ember-caluma/commit/093d25b8cf0ee96d3d5d2148163412f1b4903e2c))
|
757
|
+
|
758
|
+
|
759
|
+
### Features
|
760
|
+
|
761
|
+
* **form:** handle old values of dynamic questions ([c9bbc36](https://github.com/projectcaluma/ember-caluma/commit/c9bbc36f82de9176ee33efe4eed1fa25864acf7c))
|
762
|
+
* **license:** switch license from MIT to LGPL-3.0-or-later ([b1163eb](https://github.com/projectcaluma/ember-caluma/commit/b1163ebf8071c1029eb867aae671dc6c059d8d98))
|
763
|
+
|
764
|
+
|
765
|
+
### BREAKING CHANGES
|
766
|
+
|
767
|
+
* **license:** Since the LGPL license is more restrictive than MIT,
|
768
|
+
this is marked as breaking
|
769
|
+
* **form:** This is a breaking change, since it will only work with
|
770
|
+
v3.0.0 or later of the caluma service.
|
771
|
+
* This will remove the support for the second last LTS
|
772
|
+
version of ember, since we support only the last LTS version which is
|
773
|
+
3.12 now.
|
774
|
+
|
775
|
+
# [2.5.0](https://github.com/projectcaluma/ember-caluma/compare/v2.4.0...v2.5.0) (2019-09-21)
|
776
|
+
|
777
|
+
|
778
|
+
### Bug Fixes
|
779
|
+
|
780
|
+
* **input/table:** add btnClose to modals ([5d1b42d](https://github.com/projectcaluma/ember-caluma/commit/5d1b42d))
|
781
|
+
* **translations:** shorten weekdays for french translations ([#533](https://github.com/projectcaluma/ember-caluma/issues/533)) ([0edca21](https://github.com/projectcaluma/ember-caluma/commit/0edca21))
|
782
|
+
|
783
|
+
|
784
|
+
### Features
|
785
|
+
|
786
|
+
* **input/options:** hide archived options ([ffbf840](https://github.com/projectcaluma/ember-caluma/commit/ffbf840))
|
787
|
+
* **options:** add (un)archive to form-builder ([d1483a3](https://github.com/projectcaluma/ember-caluma/commit/d1483a3))
|
788
|
+
|
789
|
+
# [2.4.0](https://github.com/projectcaluma/ember-caluma/compare/v2.3.1...v2.4.0) (2019-09-05)
|
790
|
+
|
791
|
+
|
792
|
+
### Bug Fixes
|
793
|
+
|
794
|
+
* **cf-content:** correct policy property name ([91e7b52](https://github.com/projectcaluma/ember-caluma/commit/91e7b52))
|
795
|
+
* **cfb-options:** options cannot be deleted from db ([3668c66](https://github.com/projectcaluma/ember-caluma/commit/3668c66))
|
796
|
+
* **ie11:** remove usage of queryManager which breaks in IE11 ([c424c0c](https://github.com/projectcaluma/ember-caluma/commit/c424c0c))
|
797
|
+
|
798
|
+
|
799
|
+
### Features
|
800
|
+
|
801
|
+
* **form:** allow forms to have a widget override ([9b25310](https://github.com/projectcaluma/ember-caluma/commit/9b25310))
|
802
|
+
* **options:** hide archived options ([5cd58d8](https://github.com/projectcaluma/ember-caluma/commit/5cd58d8))
|
803
|
+
* **table:** prompt before deleting rows ([a9e7b0c](https://github.com/projectcaluma/ember-caluma/commit/a9e7b0c))
|
804
|
+
|
805
|
+
## [2.3.1](https://github.com/projectcaluma/ember-caluma/compare/v2.3.0...v2.3.1) (2019-08-23)
|
806
|
+
|
807
|
+
|
808
|
+
### Bug Fixes
|
809
|
+
|
810
|
+
* **apollo:** remove deprecated usage of query manager ([e1cab58](https://github.com/projectcaluma/ember-caluma/commit/e1cab58))
|
811
|
+
|
812
|
+
# [2.3.0](https://github.com/projectcaluma/ember-caluma/compare/v2.2.3...v2.3.0) (2019-08-21)
|
813
|
+
|
814
|
+
|
815
|
+
### Features
|
816
|
+
|
817
|
+
* **translations:** add (partial) french translation ([961d203](https://github.com/projectcaluma/ember-caluma/commit/961d203))
|
818
|
+
|
819
|
+
## [2.2.3](https://github.com/projectcaluma/ember-caluma/compare/v2.2.2...v2.2.3) (2019-08-14)
|
820
|
+
|
821
|
+
|
822
|
+
### Bug Fixes
|
823
|
+
|
824
|
+
* **cf-content:** fix navigation teardown ([1bfc4d0](https://github.com/projectcaluma/ember-caluma/commit/1bfc4d0))
|
825
|
+
* **navigation:** truncate long navigation items ([c79c524](https://github.com/projectcaluma/ember-caluma/commit/c79c524))
|
826
|
+
|
827
|
+
## [2.2.2](https://github.com/projectcaluma/ember-caluma/compare/v2.2.1...v2.2.2) (2019-08-12)
|
828
|
+
|
829
|
+
|
830
|
+
### Bug Fixes
|
831
|
+
|
832
|
+
* **field:** don't delete non-existent answers ([53945b1](https://github.com/projectcaluma/ember-caluma/commit/53945b1))
|
833
|
+
* **multilang:** remove country code for translations ([1772591](https://github.com/projectcaluma/ember-caluma/commit/1772591))
|
834
|
+
|
835
|
+
## [2.2.1](https://github.com/projectcaluma/ember-caluma/compare/v2.2.0...v2.2.1) (2019-07-30)
|
836
|
+
|
837
|
+
|
838
|
+
### Bug Fixes
|
839
|
+
|
840
|
+
* **lib:** fix teardown of lib objects ([bd583a2](https://github.com/projectcaluma/ember-caluma/commit/bd583a2))
|
841
|
+
|
842
|
+
# [2.2.0](https://github.com/projectcaluma/ember-caluma/compare/v2.1.3...v2.2.0) (2019-07-24)
|
843
|
+
|
844
|
+
|
845
|
+
### Bug Fixes
|
846
|
+
|
847
|
+
* **deps:** fix usage of apollo for the new version ([6ec5842](https://github.com/projectcaluma/ember-caluma/commit/6ec5842))
|
848
|
+
|
849
|
+
|
850
|
+
### Features
|
851
|
+
|
852
|
+
* **multilang:** add language header to caluma requests as well ([48f976c](https://github.com/projectcaluma/ember-caluma/commit/48f976c))
|
853
|
+
|
854
|
+
## [2.1.3](https://github.com/projectcaluma/ember-caluma/compare/v2.1.2...v2.1.3) (2019-07-24)
|
855
|
+
|
856
|
+
|
857
|
+
### Bug Fixes
|
858
|
+
|
859
|
+
* **deps:** update dependency sass to v1.22.4 ([74d2810](https://github.com/projectcaluma/ember-caluma/commit/74d2810))
|
860
|
+
* **deps:** update jexl ([8040e05](https://github.com/projectcaluma/ember-caluma/commit/8040e05))
|
861
|
+
* **form:** fix premature access to validators which are not yet fetched ([df6a6e6](https://github.com/projectcaluma/ember-caluma/commit/df6a6e6))
|
862
|
+
* **form:** fix removing of table rows ([5ea7881](https://github.com/projectcaluma/ember-caluma/commit/5ea7881))
|
863
|
+
* **jexl:** fix handling of whitespace characters ([f783909](https://github.com/projectcaluma/ember-caluma/commit/f783909))
|
864
|
+
* **performance:** improve loading performance and caching ([7bcedab](https://github.com/projectcaluma/ember-caluma/commit/7bcedab))
|
865
|
+
* **performance:** improve performance of state calculations ([cb46c5b](https://github.com/projectcaluma/ember-caluma/commit/cb46c5b))
|
866
|
+
* **tests:** add failing test for whitespace jexl expressions ([ba7d236](https://github.com/projectcaluma/ember-caluma/commit/ba7d236))
|
867
|
+
|
868
|
+
## [2.1.2](https://github.com/projectcaluma/ember-caluma/compare/v2.1.1...v2.1.2) (2019-07-11)
|
869
|
+
|
870
|
+
|
871
|
+
### Bug Fixes
|
872
|
+
|
873
|
+
* **deps:** update dependency ember-auto-import to v1.5.2 ([755af94](https://github.com/projectcaluma/ember-caluma/commit/755af94))
|
874
|
+
* **form:** fix saving of table answers ([ad88efb](https://github.com/projectcaluma/ember-caluma/commit/ad88efb))
|
875
|
+
* **lib:** fix recomputing of the optional state ([13f4fee](https://github.com/projectcaluma/ember-caluma/commit/13f4fee))
|
876
|
+
|
877
|
+
## [2.1.1](https://github.com/projectcaluma/ember-caluma/compare/v2.1.0...v2.1.1) (2019-07-09)
|
878
|
+
|
879
|
+
|
880
|
+
### Bug Fixes
|
881
|
+
|
882
|
+
* **form-builder:** make sure apollo is initialized properly ([8496daa](https://github.com/projectcaluma/ember-caluma/commit/8496daa))
|
883
|
+
* **intl:** update deprecated macro to new syntax ([565f18a](https://github.com/projectcaluma/ember-caluma/commit/565f18a))
|
884
|
+
|
885
|
+
# [2.1.0](https://github.com/projectcaluma/ember-caluma/compare/v2.0.3...v2.1.0) (2019-07-09)
|
886
|
+
|
887
|
+
|
888
|
+
### Bug Fixes
|
889
|
+
|
890
|
+
* **deps:** update dependency ember-auto-import to v1.5.0 ([67a1328](https://github.com/projectcaluma/ember-caluma/commit/67a1328))
|
891
|
+
* **deps:** update dependency ember-fetch to v6.7.0 ([c2a0d5a](https://github.com/projectcaluma/ember-caluma/commit/c2a0d5a))
|
892
|
+
* **deps:** update dependency ember-intl to v4.0.1 ([2f3c772](https://github.com/projectcaluma/ember-caluma/commit/2f3c772))
|
893
|
+
* **form:** fix removing of empty answers ([bd6eb15](https://github.com/projectcaluma/ember-caluma/commit/bd6eb15))
|
894
|
+
|
895
|
+
|
896
|
+
### Features
|
897
|
+
|
898
|
+
* add format validation to text and textarea ([de6d46f](https://github.com/projectcaluma/ember-caluma/commit/de6d46f))
|
899
|
+
|
900
|
+
This requires the host app to pass the new `validator` service to the form-builder engine:
|
901
|
+
```js
|
902
|
+
// app/app.js
|
903
|
+
const App = Application.extend({
|
904
|
+
// ...
|
905
|
+
|
906
|
+
engines: {
|
907
|
+
emberCaluma: {
|
908
|
+
dependencies: {
|
909
|
+
services: [
|
910
|
+
// ...
|
911
|
+
"validator"
|
912
|
+
]
|
913
|
+
}
|
914
|
+
}
|
915
|
+
}
|
916
|
+
});
|
917
|
+
```
|
918
|
+
|
919
|
+
## [2.0.3](https://github.com/projectcaluma/ember-caluma/compare/v2.0.2...v2.0.3) (2019-07-05)
|
920
|
+
|
921
|
+
|
922
|
+
### Bug Fixes
|
923
|
+
|
924
|
+
* **deps:** update dependency graphql to v14.4.2 ([1d3c2ba](https://github.com/projectcaluma/ember-caluma/commit/1d3c2ba))
|
925
|
+
* **deps:** update dependency sass to v1.22.3 ([2f0b59e](https://github.com/projectcaluma/ember-caluma/commit/2f0b59e))
|
926
|
+
* **dummy:** change cf-form to cf-content ([46db6aa](https://github.com/projectcaluma/ember-caluma/commit/46db6aa))
|
927
|
+
* **lib:** fix library object initialization to prevent loops ([86f14dc](https://github.com/projectcaluma/ember-caluma/commit/86f14dc))
|
928
|
+
* **uk-modal:** add DDAU handler ([c0f3130](https://github.com/projectcaluma/ember-caluma/commit/c0f3130))
|
929
|
+
|
930
|
+
## [2.0.2](https://github.com/projectcaluma/ember-caluma/compare/v2.0.1...v2.0.2) (2019-07-03)
|
931
|
+
|
932
|
+
|
933
|
+
### Bug Fixes
|
934
|
+
|
935
|
+
* **form:** fix new state of fields and fieldset initialization ([03a1b7c](https://github.com/projectcaluma/ember-caluma/commit/03a1b7c))
|
936
|
+
|
937
|
+
## [2.0.1](https://github.com/projectcaluma/ember-caluma/compare/v2.0.0...v2.0.1) (2019-07-02)
|
938
|
+
|
939
|
+
|
940
|
+
### Bug Fixes
|
941
|
+
|
942
|
+
* **ie11:** fix checkboxes in IE11 ([6131128](https://github.com/projectcaluma/ember-caluma/commit/6131128))
|
943
|
+
|
944
|
+
# [2.0.0](https://github.com/projectcaluma/ember-caluma/compare/v1.2.4...v2.0.0) (2019-07-02)
|
945
|
+
|
946
|
+
|
947
|
+
### Features
|
948
|
+
|
949
|
+
* **lib:** support flat answers ([b602056](https://github.com/projectcaluma/ember-caluma/commit/b602056))
|
950
|
+
|
951
|
+
|
952
|
+
### BREAKING CHANGES
|
953
|
+
|
954
|
+
* **lib:** The whole lib layer changed since we moved to the new
|
955
|
+
API structure. However, the cf-content component still works the same
|
956
|
+
way as before.
|
957
|
+
|
958
|
+
## [1.2.4](https://github.com/projectcaluma/ember-caluma/compare/v1.2.3...v1.2.4) (2019-07-02)
|
959
|
+
|
960
|
+
|
961
|
+
### Bug Fixes
|
962
|
+
|
963
|
+
* **deps:** update dependency sass to v1.22.2 ([3881d3c](https://github.com/projectcaluma/ember-caluma/commit/3881d3c))
|
964
|
+
* **deps:** update ember infrastructure ([7a63a38](https://github.com/projectcaluma/ember-caluma/commit/7a63a38))
|
965
|
+
* **form:** fix wrong updating of the answer value ([091831e](https://github.com/projectcaluma/ember-caluma/commit/091831e))
|
966
|
+
|
967
|
+
## [1.2.3](https://github.com/projectcaluma/ember-caluma/compare/v1.2.2...v1.2.3) (2019-07-01)
|
968
|
+
|
969
|
+
|
970
|
+
### Bug Fixes
|
971
|
+
|
972
|
+
* **deps:** update dependency ember-fetch to v6.6.0 ([cfc9e85](https://github.com/projectcaluma/ember-caluma/commit/cfc9e85))
|
973
|
+
* **deps:** update dependency ember-math-helpers to v2.11.3 ([bd205da](https://github.com/projectcaluma/ember-caluma/commit/bd205da))
|
974
|
+
* **deps:** update dependency graphql to v14.4.0 ([ed9fdb4](https://github.com/projectcaluma/ember-caluma/commit/ed9fdb4))
|
975
|
+
* **deps:** update dependency graphql to v14.4.1 ([c0bf301](https://github.com/projectcaluma/ember-caluma/commit/c0bf301))
|
976
|
+
* **deps:** update dependency sass to v1.22.1 ([9a86dc0](https://github.com/projectcaluma/ember-caluma/commit/9a86dc0))
|
977
|
+
* **form:** fix resetting of values on slow input ([e07388a](https://github.com/projectcaluma/ember-caluma/commit/e07388a))
|
978
|
+
|
979
|
+
## [1.2.2](https://github.com/projectcaluma/ember-caluma/compare/v1.2.1...v1.2.2) (2019-06-25)
|
980
|
+
|
981
|
+
|
982
|
+
### Bug Fixes
|
983
|
+
|
984
|
+
* **deps:** update dependency ember-cli-string-helpers to v3 ([fc4d0c3](https://github.com/projectcaluma/ember-caluma/commit/fc4d0c3))
|
985
|
+
* **deps:** update dependency ember-math-helpers to v2.11.2 ([13241bc](https://github.com/projectcaluma/ember-caluma/commit/13241bc))
|
986
|
+
* **deps:** update dependency graphql-tools to v4.0.5 ([094f60c](https://github.com/projectcaluma/ember-caluma/commit/094f60c))
|
987
|
+
* **deps:** update dependency sass to v1.22.0 ([4d94453](https://github.com/projectcaluma/ember-caluma/commit/4d94453))
|
988
|
+
* **form:** add missing validation function for form questions ([c9a4a0f](https://github.com/projectcaluma/ember-caluma/commit/c9a4a0f))
|
989
|
+
* **form:** fix answer handling of powerselect widget ([cb37130](https://github.com/projectcaluma/ember-caluma/commit/cb37130))
|
990
|
+
* **form:** fix loading of subforms and improve error handling ([b47cd4d](https://github.com/projectcaluma/ember-caluma/commit/b47cd4d))
|
991
|
+
* **form:** fix wrong answer when clicking checkboxes too fast ([8b8bc30](https://github.com/projectcaluma/ember-caluma/commit/8b8bc30))
|
992
|
+
* **table:** allow tables to have documents as value ([017515f](https://github.com/projectcaluma/ember-caluma/commit/017515f))
|
993
|
+
|
994
|
+
## [1.2.1](https://github.com/projectcaluma/ember-caluma/compare/v1.2.0...v1.2.1) (2019-06-19)
|
995
|
+
|
996
|
+
|
997
|
+
### Bug Fixes
|
998
|
+
|
999
|
+
* **table:** fix answer handling of table questions ([7923168](https://github.com/projectcaluma/ember-caluma/commit/7923168))
|
1000
|
+
|
1001
|
+
# [1.2.0](https://github.com/projectcaluma/ember-caluma/compare/v1.1.0...v1.2.0) (2019-06-18)
|
1002
|
+
|
1003
|
+
|
1004
|
+
### Bug Fixes
|
1005
|
+
|
1006
|
+
* **deps:** update dependency ember-cli-babel to v7.8.0 ([c46c575](https://github.com/projectcaluma/ember-caluma/commit/c46c575))
|
1007
|
+
|
1008
|
+
|
1009
|
+
### Features
|
1010
|
+
|
1011
|
+
* **form:** pass form and root form as context for jexl expressions ([619ef0c](https://github.com/projectcaluma/ember-caluma/commit/619ef0c))
|
1012
|
+
|
1013
|
+
# [1.1.0](https://github.com/projectcaluma/ember-caluma/compare/v1.0.2...v1.1.0) (2019-06-17)
|
1014
|
+
|
1015
|
+
|
1016
|
+
### Bug Fixes
|
1017
|
+
|
1018
|
+
* **babel:** remove obsolete babel config ([53846bf](https://github.com/projectcaluma/ember-caluma/commit/53846bf))
|
1019
|
+
* **deps:** remove tough-cookie resolution ([9dd9506](https://github.com/projectcaluma/ember-caluma/commit/9dd9506))
|
1020
|
+
* **deps:** update dependency apollo-link-context to v1.0.18 ([5449909](https://github.com/projectcaluma/ember-caluma/commit/5449909))
|
1021
|
+
* **deps:** update dependency ember-auto-import to v1.4.1 ([144e81c](https://github.com/projectcaluma/ember-caluma/commit/144e81c))
|
1022
|
+
* **deps:** update dependency ember-intl to v4 ([3536974](https://github.com/projectcaluma/ember-caluma/commit/3536974))
|
1023
|
+
* **form builder:** fix float inputs ([6c111e5](https://github.com/projectcaluma/ember-caluma/commit/6c111e5))
|
1024
|
+
* **intl:** update the ember-intl config to the latest version ([41522fa](https://github.com/projectcaluma/ember-caluma/commit/41522fa))
|
1025
|
+
|
1026
|
+
|
1027
|
+
### Features
|
1028
|
+
|
1029
|
+
* **form:** prevent displaying of empty forms ([5cbf7d3](https://github.com/projectcaluma/ember-caluma/commit/5cbf7d3))
|
1030
|
+
|
1031
|
+
## [1.0.2](https://github.com/projectcaluma/ember-caluma/compare/v1.0.1...v1.0.2) (2019-06-13)
|
1032
|
+
|
1033
|
+
|
1034
|
+
### Bug Fixes
|
1035
|
+
|
1036
|
+
* **deps:** remove dependency to liquid-fire ([d0d7d60](https://github.com/projectcaluma/ember-caluma/commit/d0d7d60))
|
1037
|
+
* **deps:** update dependency ember-auto-import to v1.4.0 ([5a86384](https://github.com/projectcaluma/ember-caluma/commit/5a86384))
|
1038
|
+
* **deps:** update dependency ember-changeset to v2.1.2 ([b2c2e95](https://github.com/projectcaluma/ember-caluma/commit/b2c2e95))
|
1039
|
+
* **deps:** update dependency ember-concurrency to v1 ([e29c588](https://github.com/projectcaluma/ember-caluma/commit/e29c588))
|
1040
|
+
* **deps:** update dependency ember-uikit to v0.8.2 ([4990142](https://github.com/projectcaluma/ember-caluma/commit/4990142))
|
1041
|
+
* **deps:** update dependency sass to v1.21.0 ([ea032d5](https://github.com/projectcaluma/ember-caluma/commit/ea032d5))
|
1042
|
+
* **form:** improve initial loading performance ([fa4046b](https://github.com/projectcaluma/ember-caluma/commit/fa4046b))
|
1043
|
+
* **linting:** fix linting error happening since the prettier update ([9d61840](https://github.com/projectcaluma/ember-caluma/commit/9d61840))
|
1044
|
+
* **table-date:** correctly render date questions in table rows ([b07aa82](https://github.com/projectcaluma/ember-caluma/commit/b07aa82))
|
1045
|
+
|
1046
|
+
## [1.0.1](https://github.com/projectcaluma/ember-caluma/compare/v1.0.0...v1.0.1) (2019-06-06)
|
1047
|
+
|
1048
|
+
|
1049
|
+
### Bug Fixes
|
1050
|
+
|
1051
|
+
* **form:** allow stacking of info modals ([bab5166](https://github.com/projectcaluma/ember-caluma/commit/bab5166))
|
1052
|
+
|
1053
|
+
# [1.0.0](https://github.com/projectcaluma/ember-caluma/compare/v0.3.0...v1.0.0) (2019-05-31)
|
1054
|
+
|
1055
|
+
|
1056
|
+
### Bug Fixes
|
1057
|
+
|
1058
|
+
* **deps:** update dependency ember-changeset to v2.1.1 ([e0be925](https://github.com/projectcaluma/ember-caluma/commit/e0be925))
|
1059
|
+
* **deps:** update dependency ember-cli-string-helpers to v2.1.0 ([e2d77c5](https://github.com/projectcaluma/ember-caluma/commit/e2d77c5))
|
1060
|
+
* **deps:** update dependency ember-concurrency to v0.10.1 ([c8259be](https://github.com/projectcaluma/ember-caluma/commit/c8259be))
|
1061
|
+
* **deps:** update dependency graphql to v14.3.1 ([782a11e](https://github.com/projectcaluma/ember-caluma/commit/782a11e))
|
1062
|
+
* **deps:** update ember-cli-mirage to v1.0.0 ([0ff0e23](https://github.com/projectcaluma/ember-caluma/commit/0ff0e23))
|
1063
|
+
|
1064
|
+
|
1065
|
+
### Features
|
1066
|
+
|
1067
|
+
* **mirage:** add option to disable mirage support ([93531d1](https://github.com/projectcaluma/ember-caluma/commit/93531d1))
|
1068
|
+
* **navigation:** add previous / next pagination ([6aea609](https://github.com/projectcaluma/ember-caluma/commit/6aea609))
|
1069
|
+
* **navigation:** allow customization of the navigation ([fe61ca8](https://github.com/projectcaluma/ember-caluma/commit/fe61ca8))
|
1070
|
+
|
1071
|
+
|
1072
|
+
### BREAKING CHANGES
|
1073
|
+
|
1074
|
+
* **navigation:** this changes the way a form is used in the host
|
1075
|
+
application. Before, the `cf-navigation` component rendered the whole
|
1076
|
+
navigation and the form in it. Now there is a wrapper component
|
1077
|
+
`cf-content` which yields or renders the form and the navigation. This
|
1078
|
+
way the host app is able to customize where to render the navigation and
|
1079
|
+
the form. Also the host app does not need to pass the `section` and
|
1080
|
+
`subSection` query parameters since they are taken directly from the
|
1081
|
+
router.
|
1082
|
+
|
1083
|
+
Before:
|
1084
|
+
```hbs
|
1085
|
+
{{cf-navigation
|
1086
|
+
documentId=documentId
|
1087
|
+
context=context
|
1088
|
+
section=section
|
1089
|
+
subSection=subSection
|
1090
|
+
}}
|
1091
|
+
```
|
1092
|
+
|
1093
|
+
After:
|
1094
|
+
```hbs
|
1095
|
+
{{cf-content documentId=documentId context=context}}
|
1096
|
+
```
|
1097
|
+
* **deps:** This change requires the users of ember-caluma to
|
1098
|
+
manually add faker and ember-auto-import to their devDependencies:
|
1099
|
+
|
1100
|
+
`yarn add -D faker ember-auto-import`
|
1101
|
+
|
1102
|
+
This is necessary because ember-cli-mirage stopped including faker in
|
1103
|
+
their build. Since we expose factories using faker to the host app, they
|
1104
|
+
need to install this.
|
1105
|
+
|
1106
|
+
# [0.3.0](https://github.com/projectcaluma/ember-caluma/compare/v0.2.0...v0.3.0) (2019-05-27)
|
1107
|
+
|
1108
|
+
|
1109
|
+
### Features
|
1110
|
+
|
1111
|
+
* **field:** recompute optional property on value or hidden changes ([fd18d43](https://github.com/projectcaluma/ember-caluma/commit/fd18d43))
|
1112
|
+
|
1113
|
+
# [0.2.0](https://github.com/projectcaluma/ember-caluma/compare/v0.1.0...v0.2.0) (2019-05-22)
|
1114
|
+
|
1115
|
+
|
1116
|
+
### Bug Fixes
|
1117
|
+
|
1118
|
+
* **cf-navigation:** add compute watcher on hidden state ([#225](https://github.com/projectcaluma/ember-caluma/issues/225)) ([41ba470](https://github.com/projectcaluma/ember-caluma/commit/41ba470))
|
1119
|
+
* **cf-navigation:** add minor safety checks ([#217](https://github.com/projectcaluma/ember-caluma/issues/217)) ([cf3ca9e](https://github.com/projectcaluma/ember-caluma/commit/cf3ca9e))
|
1120
|
+
* **deps:** remove obsolete dependency ([be4dbad](https://github.com/projectcaluma/ember-caluma/commit/be4dbad))
|
1121
|
+
* **deps:** update @adfinis-sygroup/semantic-release-config ([2225e00](https://github.com/projectcaluma/ember-caluma/commit/2225e00))
|
1122
|
+
* **deps:** update dependency ember-uikit to ^0.8.0 ([#219](https://github.com/projectcaluma/ember-caluma/issues/219)) ([28a841b](https://github.com/projectcaluma/ember-caluma/commit/28a841b))
|
1123
|
+
* **deps:** update dependency ember-uikit to v0.8.1 ([#223](https://github.com/projectcaluma/ember-caluma/issues/223)) ([b892a50](https://github.com/projectcaluma/ember-caluma/commit/b892a50))
|
1124
|
+
* **deps:** update dependency graphql to v14.3.0 ([#208](https://github.com/projectcaluma/ember-caluma/issues/208)) ([6cf38cc](https://github.com/projectcaluma/ember-caluma/commit/6cf38cc))
|
1125
|
+
* **deps:** update dependency sass to v1.20.1 ([#196](https://github.com/projectcaluma/ember-caluma/issues/196)) ([1d7a944](https://github.com/projectcaluma/ember-caluma/commit/1d7a944))
|
1126
|
+
* **field:** drop running requests on next ([aa5f99c](https://github.com/projectcaluma/ember-caluma/commit/aa5f99c))
|
1127
|
+
* **field:** fix invalid state of a field ([8c3d6b4](https://github.com/projectcaluma/ember-caluma/commit/8c3d6b4))
|
1128
|
+
* **form builder:** fix handling of existing metadata ([4d9071f](https://github.com/projectcaluma/ember-caluma/commit/4d9071f))
|
1129
|
+
* **form builder:** fix usage of nested properties in the question editor ([97a59a5](https://github.com/projectcaluma/ember-caluma/commit/97a59a5))
|
1130
|
+
* **ie 11:** add "manual" polyfill for array.flat ([#199](https://github.com/projectcaluma/ember-caluma/issues/199)) ([fde3a0f](https://github.com/projectcaluma/ember-caluma/commit/fde3a0f))
|
1131
|
+
* **mirage:** update mirage schema and fix generic scalar type ([c1cdaa1](https://github.com/projectcaluma/ember-caluma/commit/c1cdaa1))
|
1132
|
+
* **navigation:** fix document states in navigation ([480b67b](https://github.com/projectcaluma/ember-caluma/commit/480b67b))
|
1133
|
+
* **powerselect:** render correct slected option for choice questions ([#254](https://github.com/projectcaluma/ember-caluma/issues/254)) ([837ca8c](https://github.com/projectcaluma/ember-caluma/commit/837ca8c))
|
1134
|
+
* **table:** dialog didn't reopen ([#243](https://github.com/projectcaluma/ember-caluma/issues/243)) ([7754585](https://github.com/projectcaluma/ember-caluma/commit/7754585))
|
1135
|
+
* **table:** disable form in table on disabled question ([c79a380](https://github.com/projectcaluma/ember-caluma/commit/c79a380))
|
1136
|
+
* **table:** fix table rendering for dynamic choice fields ([#239](https://github.com/projectcaluma/ember-caluma/issues/239)) ([5d40c13](https://github.com/projectcaluma/ember-caluma/commit/5d40c13))
|
1137
|
+
* **translations:** add missing translations ([e786b52](https://github.com/projectcaluma/ember-caluma/commit/e786b52))
|
1138
|
+
* consider empty but required fields ([#220](https://github.com/projectcaluma/ember-caluma/issues/220)) ([3538471](https://github.com/projectcaluma/ember-caluma/commit/3538471))
|
1139
|
+
* **validation:** add validation for static, fix multiple choice ([#228](https://github.com/projectcaluma/ember-caluma/issues/228)) ([7ab76a7](https://github.com/projectcaluma/ember-caluma/commit/7ab76a7))
|
1140
|
+
* do not display warning if no override ([3c2bf1d](https://github.com/projectcaluma/ember-caluma/commit/3c2bf1d))
|
1141
|
+
* remove jexl logic and hide toggle ([#233](https://github.com/projectcaluma/ember-caluma/issues/233)) ([9627dec](https://github.com/projectcaluma/ember-caluma/commit/9627dec))
|
1142
|
+
|
1143
|
+
|
1144
|
+
### Features
|
1145
|
+
|
1146
|
+
* **cf-form:** all passing context information to cf-form, cf-navigation ([7372e4d](https://github.com/projectcaluma/ember-caluma/commit/7372e4d))
|
1147
|
+
* **cf-form:** allow passing context information to cf-form, cf-navigation ([#218](https://github.com/projectcaluma/ember-caluma/issues/218)) ([2955dc6](https://github.com/projectcaluma/ember-caluma/commit/2955dc6))
|
1148
|
+
* add jexl textarea for isRequired ([#232](https://github.com/projectcaluma/ember-caluma/issues/232)) ([7b3e16a](https://github.com/projectcaluma/ember-caluma/commit/7b3e16a))
|
1149
|
+
* add table column display configuration ([#237](https://github.com/projectcaluma/ember-caluma/issues/237)) ([88a1ae9](https://github.com/projectcaluma/ember-caluma/commit/88a1ae9)), closes [#236](https://github.com/projectcaluma/ember-caluma/issues/236)
|
1150
|
+
* **cf-navigation:** add disabled attribute ([#242](https://github.com/projectcaluma/ember-caluma/issues/242)) ([926b9de](https://github.com/projectcaluma/ember-caluma/commit/926b9de))
|
1151
|
+
* **cf-navigation:** add possibility to pass custom headers ([#255](https://github.com/projectcaluma/ember-caluma/issues/255)) ([16e4448](https://github.com/projectcaluma/ember-caluma/commit/16e4448))
|
1152
|
+
* **form:** enable widget overrides for forms ([581de15](https://github.com/projectcaluma/ember-caluma/commit/581de15))
|
1153
|
+
* **jexl:** support jexl referencing TableQuestions ([#229](https://github.com/projectcaluma/ember-caluma/issues/229)) ([858d95e](https://github.com/projectcaluma/ember-caluma/commit/858d95e))
|
1154
|
+
* **table:** remove action buttons in disabled state ([#238](https://github.com/projectcaluma/ember-caluma/issues/238)) ([9037a3b](https://github.com/projectcaluma/ember-caluma/commit/9037a3b))
|
1155
|
+
* **table:** show spinner while saving ([fe4fc33](https://github.com/projectcaluma/ember-caluma/commit/fe4fc33))
|
1156
|
+
|
1157
|
+
# [0.1.0](https://github.com/projectcaluma/ember-caluma/compare/v0.0.4...v0.1.0) (2019-05-08)
|
1158
|
+
|
1159
|
+
|
1160
|
+
### Bug Fixes
|
1161
|
+
|
1162
|
+
* **cf-navigation:** auto-link empty form sections to first subsection ([#185](https://github.com/projectcaluma/ember-caluma/issues/185)) ([a50a442](https://github.com/projectcaluma/ember-caluma/commit/a50a442))
|
1163
|
+
* **deps:** downgrade to jexl 1.x for IE 11 compat ([#197](https://github.com/projectcaluma/ember-caluma/issues/197)) ([cca7d03](https://github.com/projectcaluma/ember-caluma/commit/cca7d03))
|
1164
|
+
* **deps:** Move ember-cli-showdown to dependencies ([#171](https://github.com/projectcaluma/ember-caluma/issues/171)) ([2dca978](https://github.com/projectcaluma/ember-caluma/commit/2dca978))
|
1165
|
+
* **deps:** update dependency ember-cli-sass to v10 ([#32](https://github.com/projectcaluma/ember-caluma/issues/32)) ([2877c64](https://github.com/projectcaluma/ember-caluma/commit/2877c64))
|
1166
|
+
* **deps:** update dependency ember-composable-helpers to v2.3.1 ([#156](https://github.com/projectcaluma/ember-caluma/issues/156)) ([0a1498d](https://github.com/projectcaluma/ember-caluma/commit/0a1498d))
|
1167
|
+
* **info:** replace drop by modal ([#193](https://github.com/projectcaluma/ember-caluma/issues/193)) ([ea2a026](https://github.com/projectcaluma/ember-caluma/commit/ea2a026))
|
1168
|
+
* **jexl:** add custom intersects operator to jexl AST parser ([#183](https://github.com/projectcaluma/ember-caluma/issues/183)) ([30ddf10](https://github.com/projectcaluma/ember-caluma/commit/30ddf10))
|
1169
|
+
* **jexl:** don't consider the value of hidden fields in JEXL expr. ([#198](https://github.com/projectcaluma/ember-caluma/issues/198)) ([f934741](https://github.com/projectcaluma/ember-caluma/commit/f934741))
|
1170
|
+
* **table:** render download links for file questions in tables ([#187](https://github.com/projectcaluma/ember-caluma/issues/187)) ([25cfd80](https://github.com/projectcaluma/ember-caluma/commit/25cfd80))
|
1171
|
+
* **translations:** add missing german translations ([#152](https://github.com/projectcaluma/ember-caluma/issues/152)) ([dba21ec](https://github.com/projectcaluma/ember-caluma/commit/dba21ec))
|
1172
|
+
* **validation:** ignore hidden required fields ([#175](https://github.com/projectcaluma/ember-caluma/issues/175)) ([2d1f490](https://github.com/projectcaluma/ember-caluma/commit/2d1f490))
|
1173
|
+
|
1174
|
+
|
1175
|
+
### Features
|
1176
|
+
|
1177
|
+
* **form:** add support for static question ([#169](https://github.com/projectcaluma/ember-caluma/issues/169)) ([17afa26](https://github.com/projectcaluma/ember-caluma/commit/17afa26))
|
1178
|
+
* **jexl:** add "interesects" binary operator ([#176](https://github.com/projectcaluma/ember-caluma/issues/176)) ([502c747](https://github.com/projectcaluma/ember-caluma/commit/502c747))
|
1179
|
+
* **jexl:** add cross-form jexl resolution ([#154](https://github.com/projectcaluma/ember-caluma/issues/154)) ([c137e29](https://github.com/projectcaluma/ember-caluma/commit/c137e29)), closes [/github.com/projectcaluma/caluma/pull/398#discussion_r279346810](https://github.com//github.com/projectcaluma/caluma/pull/398/issues/discussion_r279346810)
|
1180
|
+
* **jexl:** add support for multiline expressions ([#177](https://github.com/projectcaluma/ember-caluma/issues/177)) ([8fb2b6b](https://github.com/projectcaluma/ember-caluma/commit/8fb2b6b))
|
1181
|
+
* **tooling:** add semantic release ([#200](https://github.com/projectcaluma/ember-caluma/issues/200)) ([64b943c](https://github.com/projectcaluma/ember-caluma/commit/64b943c))
|