@projectcaluma/ember-distribution 11.0.0-beta.24 → 11.0.0-beta.25
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,6 +3,6 @@
|
|
3
3
|
{{if this.config.ui.small 'inquiry-divider--small' 'uk-margin'}}"
|
4
4
|
>
|
5
5
|
<div class="inquiry-divider__icon uk-flex uk-flex-center uk-flex-middle">
|
6
|
-
<UkIcon @icon={{this.status.icon}} uk-tooltip
|
6
|
+
<UkIcon @icon={{this.status.icon}} {{uk-tooltip this.status.label}} />
|
7
7
|
</div>
|
8
8
|
</div>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<LinkTo
|
4
4
|
@route="new"
|
5
5
|
class="uk-icon-button"
|
6
|
-
uk-tooltip
|
6
|
+
{{uk-tooltip (t "caluma.distribution.new.title")}}
|
7
7
|
data-test-new-inquiry
|
8
8
|
>
|
9
9
|
<UkIcon @icon="plus" />
|
@@ -13,7 +13,7 @@
|
|
13
13
|
<button
|
14
14
|
type="button"
|
15
15
|
class="uk-icon-button"
|
16
|
-
uk-tooltip
|
16
|
+
{{uk-tooltip (t "caluma.distribution.send")}}
|
17
17
|
data-test-send-pending-inquiries
|
18
18
|
{{on "click" (perform this.sendInquiries)}}
|
19
19
|
>
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<button
|
29
29
|
type="button"
|
30
30
|
class="uk-icon-button"
|
31
|
-
uk-tooltip
|
31
|
+
{{uk-tooltip (t "caluma.distribution.complete")}}
|
32
32
|
data-test-complete-distribution
|
33
33
|
{{on "click" (perform this.completeDistribution)}}
|
34
34
|
>
|
@@ -43,7 +43,7 @@
|
|
43
43
|
<button
|
44
44
|
type="button"
|
45
45
|
class="uk-icon-button"
|
46
|
-
uk-tooltip
|
46
|
+
{{uk-tooltip (t "caluma.distribution.reopen")}}
|
47
47
|
data-test-reopen-distribution
|
48
48
|
{{on "click" (perform this.reopenDistribution)}}
|
49
49
|
>
|
@@ -2,12 +2,12 @@
|
|
2
2
|
<UkIcon
|
3
3
|
@icon="clock"
|
4
4
|
class="uk-margin-small-right uk-text-{{this.deadline.color}}"
|
5
|
-
uk-tooltip
|
5
|
+
{{uk-tooltip (format-date this.deadline.value)}}
|
6
6
|
/>
|
7
7
|
{{/if}}
|
8
8
|
|
9
9
|
<UkIcon
|
10
10
|
@icon={{this.status.icon}}
|
11
11
|
class="uk-text-{{this.status.color}}"
|
12
|
-
uk-tooltip
|
12
|
+
{{uk-tooltip this.status.label}}
|
13
13
|
/>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@projectcaluma/ember-distribution",
|
3
|
-
"version": "11.0.0-beta.
|
3
|
+
"version": "11.0.0-beta.25",
|
4
4
|
"description": "Ember engine for the Caluma distribution module.",
|
5
5
|
"keywords": [
|
6
6
|
"ember-addon",
|
@@ -22,9 +22,9 @@
|
|
22
22
|
"@embroider/macros": "^1.8.3",
|
23
23
|
"@glimmer/component": "^1.1.2",
|
24
24
|
"@glimmer/tracking": "^1.1.2",
|
25
|
-
"@projectcaluma/ember-core": "^11.0.0-beta.
|
26
|
-
"@projectcaluma/ember-form": "^11.0.0-beta.
|
27
|
-
"@projectcaluma/ember-workflow": "^11.0.0-beta.
|
25
|
+
"@projectcaluma/ember-core": "^11.0.0-beta.25",
|
26
|
+
"@projectcaluma/ember-form": "^11.0.0-beta.25",
|
27
|
+
"@projectcaluma/ember-workflow": "^11.0.0-beta.25",
|
28
28
|
"ember-apollo-client": "~4.0.2",
|
29
29
|
"ember-auto-import": "^2.4.2",
|
30
30
|
"ember-can": "^4.2.0",
|
@@ -35,14 +35,14 @@
|
|
35
35
|
"ember-fetch": "^8.1.2",
|
36
36
|
"ember-intl": "^5.7.2",
|
37
37
|
"ember-pikaday": "^4.0.0",
|
38
|
-
"ember-resources": "^5.
|
38
|
+
"ember-resources": "^5.3.0",
|
39
39
|
"ember-svg-jar": "^2.3.4",
|
40
40
|
"ember-test-selectors": "^6.0.0",
|
41
|
-
"ember-uikit": "^
|
41
|
+
"ember-uikit": "^6.0.0",
|
42
42
|
"graphql": "^15.8.0",
|
43
43
|
"graphql-tag": "^2.12.6",
|
44
44
|
"lodash.merge": "^4.6.2",
|
45
|
-
"luxon": "^3.0.
|
45
|
+
"luxon": "^3.0.2",
|
46
46
|
"tracked-toolbox": "^1.2.3"
|
47
47
|
},
|
48
48
|
"devDependencies": {
|
@@ -50,7 +50,7 @@
|
|
50
50
|
"@ember/test-helpers": "2.8.1",
|
51
51
|
"@embroider/test-setup": "1.8.3",
|
52
52
|
"@faker-js/faker": "7.4.0",
|
53
|
-
"@projectcaluma/ember-testing": "11.0.0-beta.
|
53
|
+
"@projectcaluma/ember-testing": "11.0.0-beta.25",
|
54
54
|
"broccoli-asset-rev": "3.0.0",
|
55
55
|
"ember-cli": "3.28.5",
|
56
56
|
"ember-cli-code-coverage": "1.0.3",
|