@projectcaluma/ember-testing 12.2.0 → 12.3.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.
@@ -44,6 +44,7 @@ type ActionButtonQuestion implements Question & Node {
44
44
  action: ButtonAction!
45
45
  color: ButtonColor!
46
46
  validateOnEnter: Boolean!
47
+ showValidation: Boolean!
47
48
  }
48
49
 
49
50
  input AddFormQuestionInput {
@@ -1874,6 +1875,7 @@ enum JSONLookupMode {
1874
1875
  CONTAINS
1875
1876
  ICONTAINS
1876
1877
  IN
1878
+ INTERSECTS
1877
1879
  GTE
1878
1880
  GT
1879
1881
  LTE
@@ -2633,6 +2635,7 @@ input SaveActionButtonQuestionInput {
2633
2635
  action: ButtonAction!
2634
2636
  color: ButtonColor!
2635
2637
  validateOnEnter: Boolean!
2638
+ showValidation: Boolean!
2636
2639
  clientMutationId: String
2637
2640
  }
2638
2641
 
@@ -88,6 +88,9 @@ export default Factory.extend({
88
88
  if (question.validateOnEnter === undefined) {
89
89
  question.update({ validateOnEnter: false });
90
90
  }
91
+ if (question.showValidation === undefined) {
92
+ question.update({ showValidation: false });
93
+ }
91
94
  }
92
95
  },
93
96
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectcaluma/ember-testing",
3
- "version": "12.2.0",
3
+ "version": "12.3.0",
4
4
  "description": "Ember addon for testing with Caluma addons.",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -40,7 +40,7 @@
40
40
  "ember-cli-terser": "4.0.2",
41
41
  "ember-load-initializers": "2.1.2",
42
42
  "ember-qunit": "7.0.0",
43
- "ember-resolver": "10.1.1",
43
+ "ember-resolver": "11.0.0",
44
44
  "ember-source": "4.12.3",
45
45
  "ember-source-channel-url": "3.0.0",
46
46
  "ember-try": "2.0.0",