@projectcaluma/ember-distribution 13.2.0 → 13.2.2
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.
|
@@ -1,23 +1,25 @@
|
|
|
1
1
|
{{! template-lint-disable require-presentational-children }}
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
<
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
</
|
|
15
|
-
|
|
16
|
-
{{#
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
2
|
+
{{#if @type.groups.length}}
|
|
3
|
+
<tr
|
|
4
|
+
class="uk-background-muted uk-text-bold"
|
|
5
|
+
role="button"
|
|
6
|
+
{{on "click" (fn (mut this.isExpanded) (not this.isExpanded))}}
|
|
7
|
+
data-test-group-type={{@type.name}}
|
|
8
|
+
>
|
|
9
|
+
<td colspan="3" class="">
|
|
10
|
+
<div class="uk-flex uk-flex-between">
|
|
11
|
+
{{t @type.name}}
|
|
12
|
+
<UkIcon @icon={{if this.isExpanded "chevron-up" "chevron-down"}} />
|
|
13
|
+
</div>
|
|
14
|
+
</td>
|
|
15
|
+
</tr>
|
|
16
|
+
{{#if this.isExpanded}}
|
|
17
|
+
{{#each @type.groups as |group|}}
|
|
18
|
+
<CdInquiryNewForm::Group
|
|
19
|
+
@group={{group}}
|
|
20
|
+
@selectedGroups={{@selectedGroups}}
|
|
21
|
+
@updateSelectedGroups={{@updateSelectedGroups}}
|
|
22
|
+
/>
|
|
23
|
+
{{/each}}
|
|
24
|
+
{{/if}}
|
|
23
25
|
{{/if}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-distribution",
|
|
3
|
-
"version": "13.2.
|
|
3
|
+
"version": "13.2.2",
|
|
4
4
|
"description": "Ember engine for the Caluma distribution module.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@babel/core": "^7.26.0",
|
|
14
14
|
"@ember/legacy-built-in-components": "^0.5.0",
|
|
15
15
|
"@ember/string": "^3.1.1 || ^4.0.0",
|
|
16
|
-
"@embroider/macros": "^1.16.
|
|
16
|
+
"@embroider/macros": "^1.16.10",
|
|
17
17
|
"@glimmer/component": "^1.1.2",
|
|
18
18
|
"@glimmer/tracking": "^1.1.2",
|
|
19
19
|
"ember-apollo-client": "~4.0.2",
|
|
@@ -25,28 +25,31 @@
|
|
|
25
25
|
"ember-engines-router-service": "^0.6.0",
|
|
26
26
|
"ember-fetch": "^8.1.2",
|
|
27
27
|
"ember-flatpickr": "^8.0.1",
|
|
28
|
-
"ember-intl": "^7.
|
|
28
|
+
"ember-intl": "^7.1.1",
|
|
29
|
+
"ember-load-initializers": "^2.1.2 || ^3.0.1",
|
|
30
|
+
"ember-resolver": "^12.0.1 || ^13.1.0",
|
|
29
31
|
"ember-svg-jar": "^2.6.0",
|
|
32
|
+
"ember-template-imports": "^4.2.0",
|
|
30
33
|
"ember-test-selectors": "^7.0.0",
|
|
31
34
|
"ember-uikit": "^9.1.3",
|
|
32
35
|
"flatpickr": "^4.6.13",
|
|
33
|
-
"graphql": "^15.
|
|
36
|
+
"graphql": "^15.10.1",
|
|
34
37
|
"graphql-tag": "^2.12.6",
|
|
35
38
|
"lodash.merge": "^4.6.2",
|
|
36
39
|
"luxon": "^3.5.0",
|
|
37
40
|
"reactiveweb": "^1.3.0",
|
|
38
41
|
"tracked-toolbox": "^2.0.0",
|
|
39
|
-
"@projectcaluma/ember-core": "^13.2.
|
|
40
|
-
"@projectcaluma/ember-form": "^13.2.
|
|
41
|
-
"@projectcaluma/ember-workflow": "^13.2.
|
|
42
|
+
"@projectcaluma/ember-core": "^13.2.2",
|
|
43
|
+
"@projectcaluma/ember-form": "^13.2.2",
|
|
44
|
+
"@projectcaluma/ember-workflow": "^13.2.2"
|
|
42
45
|
},
|
|
43
46
|
"devDependencies": {
|
|
44
47
|
"@ember/optional-features": "2.2.0",
|
|
45
48
|
"@ember/test-helpers": "4.0.4",
|
|
46
49
|
"@embroider/test-setup": "4.0.0",
|
|
47
|
-
"@faker-js/faker": "9.
|
|
50
|
+
"@faker-js/faker": "9.3.0",
|
|
48
51
|
"broccoli-asset-rev": "3.0.0",
|
|
49
|
-
"ember-cli": "
|
|
52
|
+
"ember-cli": "6.1.0",
|
|
50
53
|
"ember-cli-clean-css": "3.0.0",
|
|
51
54
|
"ember-cli-code-coverage": "3.1.0",
|
|
52
55
|
"ember-cli-dependency-checker": "3.3.3",
|
|
@@ -56,20 +59,18 @@
|
|
|
56
59
|
"ember-cli-sri": "2.1.1",
|
|
57
60
|
"ember-cli-terser": "4.0.2",
|
|
58
61
|
"ember-engines": "0.11.0",
|
|
59
|
-
"ember-
|
|
60
|
-
"ember-
|
|
61
|
-
"ember-resolver": "12.0.1",
|
|
62
|
-
"ember-source": "5.11.0",
|
|
62
|
+
"ember-qunit": "9.0.1",
|
|
63
|
+
"ember-source": "6.1.0",
|
|
63
64
|
"ember-source-channel-url": "3.0.0",
|
|
64
65
|
"ember-try": "3.0.0",
|
|
65
66
|
"loader.js": "4.7.0",
|
|
66
67
|
"miragejs": "0.1.48",
|
|
67
|
-
"qunit": "2.
|
|
68
|
+
"qunit": "2.23.1",
|
|
68
69
|
"qunit-dom": "3.4.0",
|
|
69
|
-
"sass": "1.
|
|
70
|
-
"uikit": "3.
|
|
71
|
-
"webpack": "5.
|
|
72
|
-
"@projectcaluma/ember-testing": "13.2.
|
|
70
|
+
"sass": "1.83.4",
|
|
71
|
+
"uikit": "3.22.0",
|
|
72
|
+
"webpack": "5.97.1",
|
|
73
|
+
"@projectcaluma/ember-testing": "13.2.2"
|
|
73
74
|
},
|
|
74
75
|
"peerDependencies": {
|
|
75
76
|
"ember-engines": "^0.11.0",
|