@projectcaluma/ember-form-builder 13.2.2 → 14.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/addon/components/cfb-form-editor/question.hbs +8 -0
- package/addon/components/cfb-form-editor/question.js +2 -0
- package/addon/gql/mutations/save-float-question.graphql +1 -0
- package/addon/gql/queries/form-editor-question.graphql +1 -0
- package/addon/validations/question.js +4 -0
- package/package.json +4 -4
- package/translations/de.yaml +1 -0
- package/translations/en.yaml +1 -0
- package/translations/fr.yaml +1 -0
- package/translations/it.yaml +1 -0
|
@@ -97,6 +97,7 @@ export default class CfbFormEditorQuestion extends Component {
|
|
|
97
97
|
integerMaxValue: null,
|
|
98
98
|
floatMinValue: null,
|
|
99
99
|
floatMaxValue: null,
|
|
100
|
+
floatStep: null,
|
|
100
101
|
minLength: null,
|
|
101
102
|
maxLength: null,
|
|
102
103
|
defaultAnswer: null,
|
|
@@ -253,6 +254,7 @@ export default class CfbFormEditorQuestion extends Component {
|
|
|
253
254
|
return {
|
|
254
255
|
minValue: parseFloat(changeset.get("floatMinValue")),
|
|
255
256
|
maxValue: parseFloat(changeset.get("floatMaxValue")),
|
|
257
|
+
step: parseFloat(changeset.get("floatStep")),
|
|
256
258
|
placeholder: changeset.get("placeholder"),
|
|
257
259
|
hintText: changeset.get("hintText"),
|
|
258
260
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-form-builder",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.0",
|
|
4
4
|
"description": "Ember engine for building Caluma forms.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"lodash.isequal": "^4.5.0",
|
|
49
49
|
"reactiveweb": "^1.3.0",
|
|
50
50
|
"uikit": "^3.22.0",
|
|
51
|
-
"@projectcaluma/ember-core": "^
|
|
52
|
-
"@projectcaluma/ember-form": "^
|
|
51
|
+
"@projectcaluma/ember-core": "^14.0.0",
|
|
52
|
+
"@projectcaluma/ember-form": "^14.0.0"
|
|
53
53
|
},
|
|
54
54
|
"//": [
|
|
55
55
|
"TODO: remove obsolete dependency to `ember-data` which is only necessary",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"qunit-dom": "3.4.0",
|
|
86
86
|
"sinon": "19.0.2",
|
|
87
87
|
"webpack": "5.97.1",
|
|
88
|
-
"@projectcaluma/ember-testing": "
|
|
88
|
+
"@projectcaluma/ember-testing": "14.0.0"
|
|
89
89
|
},
|
|
90
90
|
"peerDependencies": {
|
|
91
91
|
"ember-engines": "^0.11.0",
|
package/translations/de.yaml
CHANGED
package/translations/en.yaml
CHANGED
package/translations/fr.yaml
CHANGED
package/translations/it.yaml
CHANGED