@projectcaluma/ember-form 14.10.3 → 14.11.1
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/cf-content.hbs +4 -4
- package/addon/components/cf-content.js +9 -0
- package/addon/components/cf-field/input/date.js +7 -14
- package/addon/components/cf-field/input/float.js +3 -4
- package/addon/components/cf-field/input/powerselect.js +6 -5
- package/addon/components/cf-field/input/radio.js +1 -1
- package/addon/components/cf-field/label.js +5 -9
- package/addon/components/cf-form-wrapper.hbs +1 -0
- package/addon/components/cf-form.hbs +1 -1
- package/package.json +5 -5
|
@@ -29,16 +29,16 @@
|
|
|
29
29
|
{{yield content}}
|
|
30
30
|
{{else if (gt this.document.fieldsets.length 1)}}
|
|
31
31
|
<div uk-grid>
|
|
32
|
-
<div class=
|
|
33
|
-
<div class="uk-width-
|
|
32
|
+
<div class={{this.navigationWidth}}><content.navigation /></div>
|
|
33
|
+
<div class="uk-width-expand">
|
|
34
34
|
{{yield to="formHeader"}}
|
|
35
|
-
<content.form />
|
|
35
|
+
<content.form ...attributes />
|
|
36
36
|
<hr />
|
|
37
37
|
<content.pagination />
|
|
38
38
|
</div>
|
|
39
39
|
</div>
|
|
40
40
|
{{else}}
|
|
41
|
-
<content.form />
|
|
41
|
+
<content.form ...attributes />
|
|
42
42
|
{{/if}}
|
|
43
43
|
{{/let}}
|
|
44
44
|
{{else}}
|
|
@@ -139,6 +139,15 @@ export default class CfContentComponent extends Component {
|
|
|
139
139
|
);
|
|
140
140
|
}
|
|
141
141
|
|
|
142
|
+
get navigationWidth() {
|
|
143
|
+
const classes = this.args.navigationWidth ?? [
|
|
144
|
+
"uk-width-1",
|
|
145
|
+
"uk-width-1-3@m",
|
|
146
|
+
];
|
|
147
|
+
|
|
148
|
+
return classes.join(" ");
|
|
149
|
+
}
|
|
150
|
+
|
|
142
151
|
fetchData = task({ drop: true }, async () => {
|
|
143
152
|
if (this.document) destroy(this.document);
|
|
144
153
|
if (this.navigation) destroy(this.navigation);
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { getOwner } from "@ember/application";
|
|
2
1
|
import { action } from "@ember/object";
|
|
3
2
|
import { inject as service } from "@ember/service";
|
|
4
3
|
import Component from "@glimmer/component";
|
|
5
4
|
import { tracked } from "@glimmer/tracking";
|
|
6
5
|
import { DateTime } from "luxon";
|
|
7
6
|
|
|
7
|
+
import getConfig from "@projectcaluma/ember-core/utils/get-config";
|
|
8
|
+
|
|
8
9
|
export default class CfFieldInputDateComponent extends Component {
|
|
9
10
|
@service intl;
|
|
10
11
|
|
|
@@ -14,21 +15,13 @@ export default class CfFieldInputDateComponent extends Component {
|
|
|
14
15
|
return this.intl.primaryLocale.split("-")[0];
|
|
15
16
|
}
|
|
16
17
|
|
|
17
|
-
get config() {
|
|
18
|
-
return getOwner(this).resolveRegistration("config:environment");
|
|
19
|
-
}
|
|
20
|
-
|
|
21
18
|
get dateFormat() {
|
|
22
|
-
const
|
|
23
|
-
FLATPICKR_DATE_FORMAT = {
|
|
24
|
-
de: "d.m.Y",
|
|
25
|
-
fr: "d.m.Y",
|
|
26
|
-
en: "m/d/Y",
|
|
27
|
-
},
|
|
28
|
-
FLATPICKR_DATE_FORMAT_DEFAULT = "m/d/Y",
|
|
29
|
-
} = this.config["ember-caluma"] || {};
|
|
19
|
+
const config = getConfig(this);
|
|
30
20
|
|
|
31
|
-
return
|
|
21
|
+
return (
|
|
22
|
+
config.FLATPICKR_DATE_FORMAT[this.locale] ??
|
|
23
|
+
config.FLATPICKR_DATE_FORMAT_DEFAULT
|
|
24
|
+
);
|
|
32
25
|
}
|
|
33
26
|
|
|
34
27
|
@action
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { getOwner } from "@ember/application";
|
|
2
1
|
import { action } from "@ember/object";
|
|
3
2
|
import Component from "@glimmer/component";
|
|
4
3
|
|
|
4
|
+
import getConfig from "@projectcaluma/ember-core/utils/get-config";
|
|
5
|
+
|
|
5
6
|
export default class CfFieldInputFloatComponent extends Component {
|
|
6
7
|
get disabled() {
|
|
7
8
|
return this.args.disabled || this.args.field?.question.isCalculated;
|
|
@@ -12,9 +13,7 @@ export default class CfFieldInputFloatComponent extends Component {
|
|
|
12
13
|
return this.args.field.question.raw.floatStep;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
|
-
|
|
16
|
-
const { floatStep = 0.001 } = config["ember-caluma"] || {};
|
|
17
|
-
return floatStep;
|
|
16
|
+
return getConfig(this).floatStep;
|
|
18
17
|
}
|
|
19
18
|
|
|
20
19
|
/**
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { getOwner } from "@ember/application";
|
|
2
1
|
import { action } from "@ember/object";
|
|
3
2
|
import { inject as service } from "@ember/service";
|
|
4
3
|
import { ensureSafeComponent } from "@embroider/util";
|
|
@@ -6,6 +5,8 @@ import Component from "@glimmer/component";
|
|
|
6
5
|
import PowerSelectComponent from "ember-power-select/components/power-select";
|
|
7
6
|
import PowerSelectMultipleComponent from "ember-power-select/components/power-select-multiple";
|
|
8
7
|
|
|
8
|
+
import getConfig from "@projectcaluma/ember-core/utils/get-config";
|
|
9
|
+
|
|
9
10
|
/**
|
|
10
11
|
* Dropdown component for the single and multiple choice question type
|
|
11
12
|
*
|
|
@@ -39,10 +40,10 @@ export default class CfFieldInputPowerselectComponent extends Component {
|
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
get searchEnabled() {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
return (
|
|
44
|
+
this.args.field?.options?.length >
|
|
45
|
+
getConfig(this).powerSelectEnableSearchLimit
|
|
46
|
+
);
|
|
46
47
|
}
|
|
47
48
|
|
|
48
49
|
get placeholder() {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { action } from "@ember/object";
|
|
2
2
|
import Component from "@glimmer/component";
|
|
3
3
|
|
|
4
|
-
export default class
|
|
4
|
+
export default class CfFieldInputRadio extends Component {
|
|
5
5
|
isAnswerRemoved = (option) => {
|
|
6
6
|
return (
|
|
7
7
|
this.args.compare &&
|
|
@@ -1,20 +1,16 @@
|
|
|
1
|
-
import { getOwner } from "@ember/application";
|
|
2
1
|
import Component from "@glimmer/component";
|
|
3
2
|
|
|
3
|
+
import getConfig from "@projectcaluma/ember-core/utils/get-config";
|
|
4
|
+
|
|
4
5
|
/**
|
|
5
6
|
* Label component of the CfField
|
|
6
7
|
*
|
|
7
8
|
* @class CfFieldLabelComponent
|
|
8
9
|
*/
|
|
9
10
|
export default class CfFieldLabelComponent extends Component {
|
|
10
|
-
get config() {
|
|
11
|
-
return getOwner(this).resolveRegistration("config:environment");
|
|
12
|
-
}
|
|
13
|
-
|
|
14
11
|
get useMandatoryAsterisk() {
|
|
15
|
-
|
|
16
|
-
this.
|
|
17
|
-
|
|
18
|
-
return this.args.useMandatoryAsterisk ?? USE_MANDATORY_ASTERISK;
|
|
12
|
+
return (
|
|
13
|
+
this.args.useMandatoryAsterisk ?? getConfig(this).USE_MANDATORY_ASTERISK
|
|
14
|
+
);
|
|
19
15
|
}
|
|
20
16
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-form",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.11.1",
|
|
4
4
|
"description": "Ember addon for rendering Caluma forms.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"luxon": "^3.5.0",
|
|
40
40
|
"reactiveweb": "^1.3.0",
|
|
41
41
|
"tracked-toolbox": "^2.0.0",
|
|
42
|
-
"@projectcaluma/ember-core": "^14.
|
|
42
|
+
"@projectcaluma/ember-core": "^14.11.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@ember/optional-features": "2.3.0",
|
|
@@ -74,12 +74,12 @@
|
|
|
74
74
|
"uikit": "3.25.6",
|
|
75
75
|
"uuid": "13.0.0",
|
|
76
76
|
"webpack": "5.104.1",
|
|
77
|
-
"@projectcaluma/ember-testing": "14.
|
|
78
|
-
"@projectcaluma/ember-workflow": "14.
|
|
77
|
+
"@projectcaluma/ember-testing": "14.11.1",
|
|
78
|
+
"@projectcaluma/ember-workflow": "14.11.1"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"ember-source": ">= 4.0.0",
|
|
82
|
-
"@projectcaluma/ember-workflow": "^14.
|
|
82
|
+
"@projectcaluma/ember-workflow": "^14.11.1"
|
|
83
83
|
},
|
|
84
84
|
"dependenciesMeta": {
|
|
85
85
|
"@projectcaluma/ember-core": {
|