@projectcaluma/ember-core 11.0.0-beta.8 → 11.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/CHANGELOG.md +11 -0
- package/addon/-private/possible-types.js +4 -4
- package/addon/services/caluma-options.js +12 -0
- package/package.json +28 -28
- package/config/environment.js +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
# [@projectcaluma/ember-core-v11.0.0-beta.9](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.8...@projectcaluma/ember-core-v11.0.0-beta.9) (2022-08-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
* feat!: add multi file upload (#2040) ([c4fd004](https://github.com/projectcaluma/ember-caluma/commit/c4fd0049654b2d2e5ea62e5909a45d89cb888b40)), closes [#2040](https://github.com/projectcaluma/ember-caluma/issues/2040)
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
### BREAKING CHANGES
|
|
8
|
+
|
|
9
|
+
* This requires the caluma backend version v8.0.0-beta.12
|
|
10
|
+
or later.
|
|
11
|
+
|
|
1
12
|
# [@projectcaluma/ember-core-v11.0.0-beta.8](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-core-v11.0.0-beta.7...@projectcaluma/ember-core-v11.0.0-beta.8) (2022-08-02)
|
|
2
13
|
|
|
3
14
|
|
|
@@ -11,7 +11,7 @@ export default {
|
|
|
11
11
|
"DateQuestion",
|
|
12
12
|
"TableQuestion",
|
|
13
13
|
"FormQuestion",
|
|
14
|
-
"
|
|
14
|
+
"FilesQuestion",
|
|
15
15
|
"StaticQuestion",
|
|
16
16
|
"CalculatedFloatQuestion",
|
|
17
17
|
"ActionButtonQuestion",
|
|
@@ -35,7 +35,7 @@ export default {
|
|
|
35
35
|
"DateQuestion",
|
|
36
36
|
"TableQuestion",
|
|
37
37
|
"FormQuestion",
|
|
38
|
-
"
|
|
38
|
+
"FilesQuestion",
|
|
39
39
|
"StaticQuestion",
|
|
40
40
|
"StringAnswer",
|
|
41
41
|
"ListAnswer",
|
|
@@ -43,7 +43,7 @@ export default {
|
|
|
43
43
|
"FloatAnswer",
|
|
44
44
|
"DateAnswer",
|
|
45
45
|
"TableAnswer",
|
|
46
|
-
"
|
|
46
|
+
"FilesAnswer",
|
|
47
47
|
"File",
|
|
48
48
|
"CalculatedFloatQuestion",
|
|
49
49
|
"ActionButtonQuestion",
|
|
@@ -62,7 +62,7 @@ export default {
|
|
|
62
62
|
"FloatAnswer",
|
|
63
63
|
"DateAnswer",
|
|
64
64
|
"TableAnswer",
|
|
65
|
-
"
|
|
65
|
+
"FilesAnswer",
|
|
66
66
|
],
|
|
67
67
|
Task: ["SimpleTask", "CompleteWorkflowFormTask", "CompleteTaskFormTask"],
|
|
68
68
|
DynamicQuestion: ["DynamicChoiceQuestion", "DynamicMultipleChoiceQuestion"],
|
|
@@ -66,6 +66,18 @@ export default class CalumaOptionsService extends Service {
|
|
|
66
66
|
return Object.values(this._overrides);
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
/**
|
|
70
|
+
* Defines the behavior used when sending a reminder for
|
|
71
|
+
* an overdue inquiry. It should at least update the meta
|
|
72
|
+
* data on the inquiry work-item to update the reminder
|
|
73
|
+
* history and perform any application-specific behavior
|
|
74
|
+
* to send reminder notifications.
|
|
75
|
+
*
|
|
76
|
+
* @method sendReminderDistributionInquiry
|
|
77
|
+
* @param {String} inquiryId
|
|
78
|
+
*/
|
|
79
|
+
async sendReminderDistributionInquiry() {}
|
|
80
|
+
|
|
69
81
|
groupIdentifierProperty = "id";
|
|
70
82
|
groupNameProperty = "name";
|
|
71
83
|
resolveGroups(identifiers) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-core",
|
|
3
|
-
"version": "11.0.0
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"description": "Ember core addon for working with Caluma.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -9,24 +9,24 @@
|
|
|
9
9
|
"homepage": "https://docs.caluma.io/ember-caluma",
|
|
10
10
|
"repository": "github:projectcaluma/ember-caluma",
|
|
11
11
|
"scripts": {
|
|
12
|
-
"test": "npm
|
|
12
|
+
"test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
|
|
13
13
|
"test:ember": "ember test",
|
|
14
14
|
"test:ember-compatibility": "ember try:each"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@apollo/client": "^3.
|
|
18
|
-
"@ember/string": "^3.0.
|
|
17
|
+
"@apollo/client": "^3.7.5",
|
|
18
|
+
"@ember/string": "^3.0.1",
|
|
19
19
|
"@glimmer/tracking": "^1.1.2",
|
|
20
20
|
"ember-apollo-client": "~4.0.2",
|
|
21
|
-
"ember-auto-import": "^2.
|
|
21
|
+
"ember-auto-import": "^2.6.0",
|
|
22
22
|
"ember-cli-babel": "^7.26.11",
|
|
23
|
-
"ember-cli-htmlbars": "^6.
|
|
24
|
-
"ember-concurrency": "^2.
|
|
25
|
-
"ember-fetch": "^8.1.
|
|
23
|
+
"ember-cli-htmlbars": "^6.2.0",
|
|
24
|
+
"ember-concurrency": "^2.3.7",
|
|
25
|
+
"ember-fetch": "^8.1.2",
|
|
26
26
|
"ember-inflector": "^4.0.2",
|
|
27
27
|
"ember-intl": "^5.7.2",
|
|
28
|
-
"ember-resources": "^5.
|
|
29
|
-
"ember-uikit": "^
|
|
28
|
+
"ember-resources": "^5.6.2",
|
|
29
|
+
"ember-uikit": "^6.1.1",
|
|
30
30
|
"graphql": "^15.8.0",
|
|
31
31
|
"graphql-tag": "^2.12.6",
|
|
32
32
|
"jexl": "^2.3.0",
|
|
@@ -35,38 +35,38 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@ember/optional-features": "2.0.0",
|
|
38
|
-
"@ember/render-modifiers": "2.0.
|
|
39
|
-
"@ember/test-helpers": "2.
|
|
40
|
-
"@embroider/test-setup": "1.
|
|
41
|
-
"@embroider/util": "^1.
|
|
42
|
-
"@faker-js/faker": "7.
|
|
38
|
+
"@ember/render-modifiers": "2.0.5",
|
|
39
|
+
"@ember/test-helpers": "2.7.0",
|
|
40
|
+
"@embroider/test-setup": "2.1.1",
|
|
41
|
+
"@embroider/util": "^1.9.0",
|
|
42
|
+
"@faker-js/faker": "7.6.0",
|
|
43
43
|
"@glimmer/component": "1.1.2",
|
|
44
|
-
"@projectcaluma/ember-testing": "11.0.0
|
|
44
|
+
"@projectcaluma/ember-testing": "11.0.0",
|
|
45
45
|
"broccoli-asset-rev": "3.0.0",
|
|
46
|
-
"
|
|
47
|
-
"ember-cli
|
|
46
|
+
"concurrently": "7.6.0",
|
|
47
|
+
"ember-cli": "4.9.2",
|
|
48
|
+
"ember-cli-code-coverage": "2.0.0",
|
|
48
49
|
"ember-cli-dependency-checker": "3.3.1",
|
|
49
50
|
"ember-cli-inject-live-reload": "2.1.0",
|
|
50
51
|
"ember-cli-mirage": "3.0.0-alpha.3",
|
|
51
52
|
"ember-cli-sri": "2.1.1",
|
|
52
53
|
"ember-cli-terser": "4.0.2",
|
|
53
|
-
"ember-disable-prototype-extensions": "1.1.3",
|
|
54
|
-
"ember-export-application-global": "2.0.1",
|
|
55
54
|
"ember-load-initializers": "2.1.2",
|
|
56
|
-
"ember-
|
|
57
|
-
"ember-
|
|
58
|
-
"ember-
|
|
59
|
-
"ember-source": "3.28.9",
|
|
55
|
+
"ember-qunit": "6.1.1",
|
|
56
|
+
"ember-resolver": "8.1.0",
|
|
57
|
+
"ember-source": "4.10.0",
|
|
60
58
|
"ember-source-channel-url": "3.0.0",
|
|
61
59
|
"ember-try": "2.0.0",
|
|
62
60
|
"loader.js": "4.7.0",
|
|
63
|
-
"
|
|
64
|
-
"qunit": "2.19.1",
|
|
61
|
+
"qunit": "2.19.4",
|
|
65
62
|
"qunit-dom": "2.0.0",
|
|
66
|
-
"webpack": "5.
|
|
63
|
+
"webpack": "5.75.0"
|
|
64
|
+
},
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"ember-source": "^3.28.0 || ^4.0.0"
|
|
67
67
|
},
|
|
68
68
|
"engines": {
|
|
69
|
-
"node": "
|
|
69
|
+
"node": "14.* || 16.* || >= 18"
|
|
70
70
|
},
|
|
71
71
|
"ember": {
|
|
72
72
|
"edition": "octane"
|