@projectcaluma/ember-form-builder 10.0.2 → 10.0.3

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.
Files changed (36) hide show
  1. package/addon/components/cfb-form-editor/question-list/item.hbs +4 -4
  2. package/addon/components/cfb-form-editor/question-list.hbs +2 -2
  3. package/addon/components/cfb-form-list.hbs +2 -2
  4. package/addon/components/cfb-navigation.hbs +1 -1
  5. package/addon/components/cfb-toggle-switch.hbs +1 -1
  6. package/addon/gql/fragments/field.graphql +23 -1
  7. package/addon/gql/fragments/form-info.graphql +1 -0
  8. package/addon/gql/fragments/question-info.graphql +1 -0
  9. package/addon/gql/mutations/add-form-question.graphql +2 -0
  10. package/addon/gql/mutations/remove-form-question.graphql +2 -0
  11. package/addon/gql/mutations/reorder-form-questions.graphql +2 -0
  12. package/addon/gql/mutations/save-action-button-question.graphql +1 -0
  13. package/addon/gql/mutations/save-calculated-float-question.graphql +1 -0
  14. package/addon/gql/mutations/save-choice-question.graphql +2 -0
  15. package/addon/gql/mutations/save-date-question.graphql +1 -0
  16. package/addon/gql/mutations/save-dynamic-choice-question.graphql +1 -0
  17. package/addon/gql/mutations/save-dynamic-multiple-choice-question.graphql +1 -0
  18. package/addon/gql/mutations/save-file-question.graphql +1 -0
  19. package/addon/gql/mutations/save-float-question.graphql +1 -0
  20. package/addon/gql/mutations/save-form-question.graphql +2 -0
  21. package/addon/gql/mutations/save-form.graphql +1 -0
  22. package/addon/gql/mutations/save-integer-question.graphql +1 -0
  23. package/addon/gql/mutations/save-multiple-choice-question.graphql +2 -0
  24. package/addon/gql/mutations/save-option.graphql +1 -0
  25. package/addon/gql/mutations/save-static-question.graphql +1 -0
  26. package/addon/gql/mutations/save-table-question.graphql +2 -0
  27. package/addon/gql/mutations/save-text-question.graphql +1 -0
  28. package/addon/gql/mutations/save-textarea-question.graphql +1 -0
  29. package/addon/gql/queries/check-form-slug.graphql +1 -0
  30. package/addon/gql/queries/check-question-slug.graphql +1 -0
  31. package/addon/gql/queries/form-editor-general.graphql +1 -0
  32. package/addon/gql/queries/form-editor-question.graphql +7 -0
  33. package/addon/gql/queries/form-list.graphql +1 -0
  34. package/addon/gql/queries/search-form-question.graphql +4 -0
  35. package/addon/gql/queries/search-question.graphql +3 -0
  36. package/package.json +10 -10
@@ -58,7 +58,7 @@
58
58
  {{/if}}
59
59
 
60
60
  <span
61
- class="{{if this.showFormLink "uk-width-auto" "uk-width-expand"}}
61
+ class="{{if this.showFormLink 'uk-width-auto' 'uk-width-expand'}}
62
62
  uk-margin-small-right uk-text-small uk-text-muted uk-text-truncate"
63
63
  >
64
64
  {{@question.label}}
@@ -83,13 +83,13 @@
83
83
  uk-tooltip="title: {{if
84
84
  this.hidden
85
85
  (t
86
- (concat "caluma.form-builder.question-list.hidden." this.hiddenType)
86
+ (concat 'caluma.form-builder.question-list.hidden.' this.hiddenType)
87
87
  )
88
88
  }}; pos: left"
89
89
  class="cfb-form-editor__question-list__item__type
90
90
  {{if
91
91
  this.hidden
92
- "cfb-form-editor__question-list__item__type--hidden"
92
+ 'cfb-form-editor__question-list__item__type--hidden'
93
93
  }}"
94
94
  @label={{t
95
95
  (concat "caluma.form-builder.question.types." @question.__typename)
@@ -105,7 +105,7 @@
105
105
  <span
106
106
  uk-tooltip="title: {{t
107
107
  (concat
108
- "caluma.form-builder.question-list.required." this.requiredType
108
+ 'caluma.form-builder.question-list.required.' this.requiredType
109
109
  )
110
110
  }}; pos: top-left"
111
111
  title={{t
@@ -42,8 +42,8 @@
42
42
  <input
43
43
  class="uk-search-input"
44
44
  type="search"
45
- placeholder="{{t "caluma.form-builder.global.search"}}..."
46
- aria-label="{{t "caluma.form-builder.global.search"}}"
45
+ placeholder="{{t 'caluma.form-builder.global.search'}}..."
46
+ aria-label="{{t 'caluma.form-builder.global.search'}}"
47
47
  value={{this.search}}
48
48
  {{on "input" (fn (mut this.search))}}
49
49
  />
@@ -31,8 +31,8 @@
31
31
  data-test-form-search-input
32
32
  class="uk-search-input"
33
33
  type="search"
34
- placeholder="{{t "caluma.form-builder.global.search"}}..."
35
- aria-label="{{t "caluma.form-builder.global.search"}}"
34
+ placeholder="{{t 'caluma.form-builder.global.search'}}..."
35
+ aria-label="{{t 'caluma.form-builder.global.search'}}"
36
36
  value={{this.search}}
37
37
  {{on "input" (fn this.setFilter "search")}}
38
38
  />
@@ -4,7 +4,7 @@
4
4
  <LinkTo
5
5
  @route={{crumb.routeName}}
6
6
  class="uk-text-large uk-text-truncate cfb-navigation__item__link
7
- {{if crumb.disabled "uk-disabled"}}"
7
+ {{if crumb.disabled 'uk-disabled'}}"
8
8
  >
9
9
  {{crumb.title}}
10
10
  </LinkTo>
@@ -1,4 +1,4 @@
1
- <div class="uk-flex uk-flex-column {{unless @noMargin "uk-margin"}}">
1
+ <div class="uk-flex uk-flex-column {{unless @noMargin 'uk-margin'}}">
2
2
  <@labelComponent />
3
3
 
4
4
  <div class="uk-form-controls" ...attributes>
@@ -1,9 +1,10 @@
1
1
  # We can not symlink this file so an exact copy exists in another package:
2
- # packages/form/addon/gql/fragments/field.graphql
2
+ # packages/form-builder/addon/gql/fragments/field.graphql
3
3
  #
4
4
  # When changing this file the other must also receive the same changes.
5
5
 
6
6
  fragment SimpleQuestion on Question {
7
+ id
7
8
  slug
8
9
  label
9
10
  isRequired
@@ -14,6 +15,7 @@ fragment SimpleQuestion on Question {
14
15
  textMinLength: minLength
15
16
  textMaxLength: maxLength
16
17
  textDefaultAnswer: defaultAnswer {
18
+ id
17
19
  value
18
20
  }
19
21
  placeholder
@@ -22,6 +24,7 @@ fragment SimpleQuestion on Question {
22
24
  textareaMinLength: minLength
23
25
  textareaMaxLength: maxLength
24
26
  textareaDefaultAnswer: defaultAnswer {
27
+ id
25
28
  value
26
29
  }
27
30
  placeholder
@@ -30,6 +33,7 @@ fragment SimpleQuestion on Question {
30
33
  integerMinValue: minValue
31
34
  integerMaxValue: maxValue
32
35
  integerDefaultAnswer: defaultAnswer {
36
+ id
33
37
  value
34
38
  }
35
39
  placeholder
@@ -38,6 +42,7 @@ fragment SimpleQuestion on Question {
38
42
  floatMinValue: minValue
39
43
  floatMaxValue: maxValue
40
44
  floatDefaultAnswer: defaultAnswer {
45
+ id
41
46
  value
42
47
  }
43
48
  placeholder
@@ -46,6 +51,7 @@ fragment SimpleQuestion on Question {
46
51
  choiceOptions: options {
47
52
  edges {
48
53
  node {
54
+ id
49
55
  slug
50
56
  label
51
57
  isArchived
@@ -53,6 +59,7 @@ fragment SimpleQuestion on Question {
53
59
  }
54
60
  }
55
61
  choiceDefaultAnswer: defaultAnswer {
62
+ id
56
63
  value
57
64
  }
58
65
  }
@@ -60,6 +67,7 @@ fragment SimpleQuestion on Question {
60
67
  multipleChoiceOptions: options {
61
68
  edges {
62
69
  node {
70
+ id
63
71
  slug
64
72
  label
65
73
  isArchived
@@ -67,11 +75,13 @@ fragment SimpleQuestion on Question {
67
75
  }
68
76
  }
69
77
  multipleChoiceDefaultAnswer: defaultAnswer {
78
+ id
70
79
  value
71
80
  }
72
81
  }
73
82
  ... on DateQuestion {
74
83
  dateDefaultAnswer: defaultAnswer {
84
+ id
75
85
  value
76
86
  }
77
87
  }
@@ -89,8 +99,10 @@ fragment SimpleQuestion on Question {
89
99
  }
90
100
 
91
101
  fragment FieldTableQuestion on Question {
102
+ id
92
103
  ... on TableQuestion {
93
104
  rowForm {
105
+ id
94
106
  slug
95
107
  questions {
96
108
  edges {
@@ -101,6 +113,7 @@ fragment FieldTableQuestion on Question {
101
113
  }
102
114
  }
103
115
  tableDefaultAnswer: defaultAnswer {
116
+ id
104
117
  value {
105
118
  id
106
119
  answers {
@@ -108,6 +121,7 @@ fragment FieldTableQuestion on Question {
108
121
  node {
109
122
  id
110
123
  question {
124
+ id
111
125
  slug
112
126
  }
113
127
  ... on StringAnswer {
@@ -134,10 +148,12 @@ fragment FieldTableQuestion on Question {
134
148
  }
135
149
 
136
150
  fragment FieldQuestion on Question {
151
+ id
137
152
  ...SimpleQuestion
138
153
  ...FieldTableQuestion
139
154
  ... on FormQuestion {
140
155
  subForm {
156
+ id
141
157
  slug
142
158
  name
143
159
  questions {
@@ -145,10 +161,12 @@ fragment FieldQuestion on Question {
145
161
  node {
146
162
  # This part here limits our query to 2 level deep nested forms. This
147
163
  # has to be solved in another way!
164
+ id
148
165
  ...SimpleQuestion
149
166
  ...FieldTableQuestion
150
167
  ... on FormQuestion {
151
168
  subForm {
169
+ id
152
170
  slug
153
171
  name
154
172
  questions {
@@ -171,6 +189,7 @@ fragment FieldQuestion on Question {
171
189
  fragment SimpleAnswer on Answer {
172
190
  id
173
191
  question {
192
+ id
174
193
  slug
175
194
  }
176
195
  ... on StringAnswer {
@@ -187,6 +206,7 @@ fragment SimpleAnswer on Answer {
187
206
  }
188
207
  ... on FileAnswer {
189
208
  fileValue: value {
209
+ id
190
210
  uploadUrl
191
211
  downloadUrl
192
212
  metadata
@@ -199,11 +219,13 @@ fragment SimpleAnswer on Answer {
199
219
  }
200
220
 
201
221
  fragment FieldAnswer on Answer {
222
+ id
202
223
  ...SimpleAnswer
203
224
  ... on TableAnswer {
204
225
  tableValue: value {
205
226
  id
206
227
  form {
228
+ id
207
229
  slug
208
230
  questions {
209
231
  edges {
@@ -1,4 +1,5 @@
1
1
  fragment FormInfo on Form {
2
+ id
2
3
  name
3
4
  slug
4
5
  description
@@ -1,4 +1,5 @@
1
1
  fragment QuestionInfo on Question {
2
+ id
2
3
  slug
3
4
  label
4
5
  isRequired
@@ -4,10 +4,12 @@
4
4
  mutation AddFormQuestion($input: AddFormQuestionInput!, $search: String) {
5
5
  addFormQuestion(input: $input) {
6
6
  form {
7
+ id
7
8
  ...FormInfo
8
9
  questions(search: $search) {
9
10
  edges {
10
11
  node {
12
+ id
11
13
  ...QuestionInfo
12
14
  }
13
15
  }
@@ -4,10 +4,12 @@
4
4
  mutation RemoveFormQuestion($input: RemoveFormQuestionInput!, $search: String) {
5
5
  removeFormQuestion(input: $input) {
6
6
  form {
7
+ id
7
8
  ...FormInfo
8
9
  questions(search: $search) {
9
10
  edges {
10
11
  node {
12
+ id
11
13
  ...QuestionInfo
12
14
  }
13
15
  }
@@ -7,10 +7,12 @@ mutation ReorderFormQuestions(
7
7
  ) {
8
8
  reorderFormQuestions(input: $input) {
9
9
  form {
10
+ id
10
11
  ...FormInfo
11
12
  questions(search: $search) {
12
13
  edges {
13
14
  node {
15
+ id
14
16
  ...QuestionInfo
15
17
  }
16
18
  }
@@ -3,6 +3,7 @@
3
3
  mutation SaveActionButtonQuestion($input: SaveActionButtonQuestionInput!) {
4
4
  saveActionButtonQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on ActionButtonQuestion {
8
9
  action
@@ -5,6 +5,7 @@ mutation SaveCalculatedFloatQuestion(
5
5
  ) {
6
6
  saveCalculatedFloatQuestion(input: $input) {
7
7
  question {
8
+ id
8
9
  ...QuestionInfo
9
10
  ... on CalculatedFloatQuestion {
10
11
  calcExpression
@@ -3,11 +3,13 @@
3
3
  mutation SaveChoiceQuestion($input: SaveChoiceQuestionInput!) {
4
4
  saveChoiceQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on ChoiceQuestion {
8
9
  options {
9
10
  edges {
10
11
  node {
12
+ id
11
13
  label
12
14
  slug
13
15
  }
@@ -3,6 +3,7 @@
3
3
  mutation SaveDateQuestion($input: SaveDateQuestionInput!) {
4
4
  saveDateQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  }
8
9
  clientMutationId
@@ -3,6 +3,7 @@
3
3
  mutation SaveDynamicChoiceQuestion($input: SaveDynamicChoiceQuestionInput!) {
4
4
  saveDynamicChoiceQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on DynamicChoiceQuestion {
8
9
  dataSource
@@ -5,6 +5,7 @@ mutation SaveDynamicMultipleChoiceQuestion(
5
5
  ) {
6
6
  saveDynamicMultipleChoiceQuestion(input: $input) {
7
7
  question {
8
+ id
8
9
  ...QuestionInfo
9
10
  ... on DynamicMultipleChoiceQuestion {
10
11
  dataSource
@@ -3,6 +3,7 @@
3
3
  mutation SaveFileQuestion($input: SaveFileQuestionInput!) {
4
4
  saveFileQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  }
8
9
  clientMutationId
@@ -3,6 +3,7 @@
3
3
  mutation SaveFloatQuestion($input: SaveFloatQuestionInput!) {
4
4
  saveFloatQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on FloatQuestion {
8
9
  floatMinValue: minValue
@@ -3,9 +3,11 @@
3
3
  mutation SaveFormQuestion($input: SaveFormQuestionInput!) {
4
4
  saveFormQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on FormQuestion {
8
9
  subForm {
10
+ id
9
11
  slug
10
12
  }
11
13
  }
@@ -3,6 +3,7 @@
3
3
  mutation SaveForm($input: SaveFormInput!) {
4
4
  saveForm(input: $input) {
5
5
  form {
6
+ id
6
7
  ...FormInfo
7
8
  }
8
9
  clientMutationId
@@ -3,6 +3,7 @@
3
3
  mutation SaveIntegerQuestion($input: SaveIntegerQuestionInput!) {
4
4
  saveIntegerQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on IntegerQuestion {
8
9
  integerMinValue: minValue
@@ -3,11 +3,13 @@
3
3
  mutation SaveMultipleChoiceQuestion($input: SaveMultipleChoiceQuestionInput!) {
4
4
  saveMultipleChoiceQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on MultipleChoiceQuestion {
8
9
  options {
9
10
  edges {
10
11
  node {
12
+ id
11
13
  label
12
14
  slug
13
15
  }
@@ -1,6 +1,7 @@
1
1
  mutation SaveOption($input: SaveOptionInput!) {
2
2
  saveOption(input: $input) {
3
3
  option {
4
+ id
4
5
  label
5
6
  slug
6
7
  }
@@ -3,6 +3,7 @@
3
3
  mutation SaveStaticQuestion($input: SaveStaticQuestionInput!) {
4
4
  saveStaticQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on StaticQuestion {
8
9
  staticContent
@@ -3,9 +3,11 @@
3
3
  mutation SaveTableQuestion($input: SaveTableQuestionInput!) {
4
4
  saveTableQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on TableQuestion {
8
9
  rowForm {
10
+ id
9
11
  slug
10
12
  }
11
13
  }
@@ -3,6 +3,7 @@
3
3
  mutation SaveTextQuestion($input: SaveTextQuestionInput!) {
4
4
  saveTextQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on TextQuestion {
8
9
  minLength
@@ -3,6 +3,7 @@
3
3
  mutation SaveTextareaQuestion($input: SaveTextareaQuestionInput!) {
4
4
  saveTextareaQuestion(input: $input) {
5
5
  question {
6
+ id
6
7
  ...QuestionInfo
7
8
  ... on TextareaQuestion {
8
9
  minLength
@@ -2,6 +2,7 @@ query CheckFormSlug($slug: String!) {
2
2
  allForms(filter: [{ slug: $slug }]) {
3
3
  edges {
4
4
  node {
5
+ id
5
6
  slug
6
7
  }
7
8
  }
@@ -2,6 +2,7 @@ query CheckQuestionSlug($slug: String!) {
2
2
  allQuestions(filter: [{ slug: $slug }]) {
3
3
  edges {
4
4
  node {
5
+ id
5
6
  slug
6
7
  }
7
8
  }
@@ -4,6 +4,7 @@ query FormEditorGeneral($slug: String!) {
4
4
  allForms(filter: [{ slug: $slug }]) {
5
5
  edges {
6
6
  node {
7
+ id
7
8
  ...FormInfo
8
9
  }
9
10
  }
@@ -5,6 +5,7 @@ query FormEditorQuestion($slug: String!) {
5
5
  allQuestions(filter: [{ slug: $slug }]) {
6
6
  edges {
7
7
  node {
8
+ id
8
9
  ...QuestionInfo
9
10
  ... on IntegerQuestion {
10
11
  integerMaxValue: maxValue
@@ -52,6 +53,7 @@ query FormEditorQuestion($slug: String!) {
52
53
  options {
53
54
  edges {
54
55
  node {
56
+ id
55
57
  label
56
58
  slug
57
59
  isArchived
@@ -67,6 +69,7 @@ query FormEditorQuestion($slug: String!) {
67
69
  options {
68
70
  edges {
69
71
  node {
72
+ id
70
73
  label
71
74
  slug
72
75
  isArchived
@@ -86,10 +89,12 @@ query FormEditorQuestion($slug: String!) {
86
89
  }
87
90
  ... on TableQuestion {
88
91
  rowForm {
92
+ id
89
93
  slug
90
94
  questions {
91
95
  edges {
92
96
  node {
97
+ id
93
98
  slug
94
99
  label
95
100
  }
@@ -101,6 +106,7 @@ query FormEditorQuestion($slug: String!) {
101
106
  tableValue: value {
102
107
  id
103
108
  form {
109
+ id
104
110
  slug
105
111
  questions {
106
112
  edges {
@@ -122,6 +128,7 @@ query FormEditorQuestion($slug: String!) {
122
128
  }
123
129
  ... on FormQuestion {
124
130
  subForm {
131
+ id
125
132
  slug
126
133
  }
127
134
  }
@@ -4,6 +4,7 @@ query FormList($filter: [FormFilterSetType], $order: [FormOrderSetType]) {
4
4
  allForms(filter: $filter, order: $order) {
5
5
  edges {
6
6
  node {
7
+ id
7
8
  ...FormInfo
8
9
  }
9
10
  }
@@ -4,19 +4,23 @@ query SearchFormQuestion($slug: String!, $search: String, $archived: Boolean) {
4
4
  allForms(filter: [{ slug: $slug }]) {
5
5
  edges {
6
6
  node {
7
+ id
7
8
  slug
8
9
  questions(search: $search, isArchived: $archived) {
9
10
  edges {
10
11
  node {
12
+ id
11
13
  ...QuestionInfo
12
14
  ... on FormQuestion {
13
15
  subForm {
16
+ id
14
17
  slug
15
18
  name
16
19
  }
17
20
  }
18
21
  ... on TableQuestion {
19
22
  rowForm {
23
+ id
20
24
  slug
21
25
  name
22
26
  }
@@ -22,15 +22,18 @@ query SearchQuestion(
22
22
  totalCount
23
23
  edges {
24
24
  node {
25
+ id
25
26
  ...QuestionInfo
26
27
  ... on FormQuestion {
27
28
  subForm {
29
+ id
28
30
  slug
29
31
  name
30
32
  }
31
33
  }
32
34
  ... on TableQuestion {
33
35
  rowForm {
36
+ id
34
37
  slug
35
38
  name
36
39
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectcaluma/ember-form-builder",
3
- "version": "10.0.2",
3
+ "version": "10.0.3",
4
4
  "description": "Ember engine for building Caluma forms.",
5
5
  "keywords": [
6
6
  "ember-addon",
@@ -15,18 +15,18 @@
15
15
  "test:ember-compatibility": "ember try:each"
16
16
  },
17
17
  "dependencies": {
18
- "@ember/render-modifiers": "^2.0.0",
18
+ "@ember/render-modifiers": "^2.0.2",
19
19
  "@glimmer/component": "^1.0.4",
20
20
  "@glimmer/tracking": "^1.0.4",
21
- "@projectcaluma/ember-core": "^10.0.2",
22
- "@projectcaluma/ember-form": "^10.0.2",
21
+ "@projectcaluma/ember-core": "^10.1.0",
22
+ "@projectcaluma/ember-form": "^10.0.3",
23
23
  "codejar": "^3.5.0",
24
24
  "ember-apollo-client": "^3.2.0",
25
25
  "ember-auto-import": "^2.2.3",
26
26
  "ember-changeset": "^3.15.0",
27
27
  "ember-changeset-validations": "^3.16.0",
28
28
  "ember-cli-babel": "^7.26.6",
29
- "ember-cli-htmlbars": "^6.0.0",
29
+ "ember-cli-htmlbars": "^6.0.1",
30
30
  "ember-composable-helpers": "^4.5.0",
31
31
  "ember-concurrency": "^2.2.0",
32
32
  "ember-concurrency-decorators": "^2.0.3",
@@ -34,7 +34,7 @@
34
34
  "ember-fetch": "^8.0.4",
35
35
  "ember-math-helpers": "^2.18.0",
36
36
  "ember-pikaday": "^3.0.0",
37
- "ember-power-select": "^4.1.7",
37
+ "ember-power-select": "^5.0.3",
38
38
  "ember-test-selectors": "^6.0.0",
39
39
  "ember-uikit": "^4.0.0",
40
40
  "ember-validated-form": "^5.0.0",
@@ -47,7 +47,7 @@
47
47
  "devDependencies": {
48
48
  "@ember/optional-features": "2.0.0",
49
49
  "@ember/test-helpers": "2.6.0",
50
- "@embroider/test-setup": "0.47.2",
50
+ "@embroider/test-setup": "0.48.1",
51
51
  "@projectcaluma/ember-testing": "10.0.0",
52
52
  "broccoli-asset-rev": "3.0.0",
53
53
  "ember-cli": "3.28.4",
@@ -57,7 +57,7 @@
57
57
  "ember-cli-mirage": "2.2.0",
58
58
  "ember-cli-sri": "2.1.1",
59
59
  "ember-cli-terser": "4.0.2",
60
- "ember-data": "3.28.3",
60
+ "ember-data": "3.28.4",
61
61
  "ember-disable-prototype-extensions": "1.1.3",
62
62
  "ember-engines": "0.8.20",
63
63
  "ember-export-application-global": "2.0.1",
@@ -65,7 +65,7 @@
65
65
  "ember-maybe-import-regenerator": "1.0.0",
66
66
  "ember-qunit": "5.1.5",
67
67
  "ember-resolver": "8.0.3",
68
- "ember-source": "3.28.6",
68
+ "ember-source": "3.28.8",
69
69
  "ember-source-channel-url": "3.0.0",
70
70
  "ember-try": "2.0.0",
71
71
  "faker": "5.5.3",
@@ -73,7 +73,7 @@
73
73
  "npm-run-all": "4.1.5",
74
74
  "qunit": "2.17.2",
75
75
  "qunit-dom": "2.0.0",
76
- "webpack": "5.64.1"
76
+ "webpack": "5.65.0"
77
77
  },
78
78
  "engines": {
79
79
  "node": "12.* || 14.* || >= 16"