@projectcaluma/ember-form 11.0.0-beta.27 → 11.0.0-beta.29
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.
| 
         @@ -9,7 +9,7 @@ 
     | 
|
| 
       9 
9 
     | 
    
         
             
                {{will-destroy this.unregisterComponent}}
         
     | 
| 
       10 
10 
     | 
    
         
             
              >
         
     | 
| 
       11 
11 
     | 
    
         
             
                {{#if this.labelVisible}}
         
     | 
| 
       12 
     | 
    
         
            -
                  <CfField:: 
     | 
| 
      
 12 
     | 
    
         
            +
                  <CfField::Label @field={{@field}} />
         
     | 
| 
       13 
13 
     | 
    
         
             
                {{/if}}
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
       15 
15 
     | 
    
         
             
                <div class="uk-flex">
         
     | 
| 
         @@ -28,7 +28,7 @@ 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  </div>
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
       30 
30 
     | 
    
         
             
                  {{#if (and @field.question.raw.infoText this.infoTextVisible)}}
         
     | 
| 
       31 
     | 
    
         
            -
                    <CfField:: 
     | 
| 
      
 31 
     | 
    
         
            +
                    <CfField::Info @text={{@field.question.raw.infoText}} />
         
     | 
| 
       32 
32 
     | 
    
         
             
                  {{/if}}
         
     | 
| 
       33 
33 
     | 
    
         | 
| 
       34 
34 
     | 
    
         
             
                  {{#if this.saveIndicatorVisible}}
         
     | 
| 
         @@ -65,11 +65,11 @@ 
     | 
|
| 
       65 
65 
     | 
    
         
             
                </div>
         
     | 
| 
       66 
66 
     | 
    
         | 
| 
       67 
67 
     | 
    
         
             
                {{#if (and @field.question.raw.hintText this.hintTextVisible)}}
         
     | 
| 
       68 
     | 
    
         
            -
                  <CfField:: 
     | 
| 
      
 68 
     | 
    
         
            +
                  <CfField::Hint @field={{@field}} />
         
     | 
| 
       69 
69 
     | 
    
         
             
                {{/if}}
         
     | 
| 
       70 
70 
     | 
    
         | 
| 
       71 
71 
     | 
    
         
             
                {{#if @field.errors.length}}
         
     | 
| 
       72 
     | 
    
         
            -
                  <CfField:: 
     | 
| 
      
 72 
     | 
    
         
            +
                  <CfField::Errors @field={{@field}} />
         
     | 
| 
       73 
73 
     | 
    
         
             
                {{/if}}
         
     | 
| 
       74 
74 
     | 
    
         
             
              </div>
         
     | 
| 
       75 
75 
     | 
    
         
             
            {{/if}}
         
     | 
| 
         @@ -9,7 +9,7 @@ import { hasQuestionType } from "@projectcaluma/ember-core/helpers/has-question- 
     | 
|
| 
       9 
9 
     | 
    
         
             
             * Component to display a label and input for a certain field of a document.
         
     | 
| 
       10 
10 
     | 
    
         
             
             *
         
     | 
| 
       11 
11 
     | 
    
         
             
             * ```hbs
         
     | 
| 
       12 
     | 
    
         
            -
             *  
     | 
| 
      
 12 
     | 
    
         
            +
             * <CfField @field={{this.someField}} />
         
     | 
| 
       13 
13 
     | 
    
         
             
             * ```
         
     | 
| 
       14 
14 
     | 
    
         
             
             *
         
     | 
| 
       15 
15 
     | 
    
         
             
             * You can disable the field by passing `disabled=true`.
         
     | 
    
        package/package.json
    CHANGED
    
    | 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            {
         
     | 
| 
       2 
2 
     | 
    
         
             
              "name": "@projectcaluma/ember-form",
         
     | 
| 
       3 
     | 
    
         
            -
              "version": "11.0.0-beta. 
     | 
| 
      
 3 
     | 
    
         
            +
              "version": "11.0.0-beta.29",
         
     | 
| 
       4 
4 
     | 
    
         
             
              "description": "Ember addon for rendering Caluma forms.",
         
     | 
| 
       5 
5 
     | 
    
         
             
              "keywords": [
         
     | 
| 
       6 
6 
     | 
    
         
             
                "ember-addon"
         
     | 
| 
         @@ -19,23 +19,23 @@ 
     | 
|
| 
       19 
19 
     | 
    
         
             
                "@embroider/util": "^1.8.3",
         
     | 
| 
       20 
20 
     | 
    
         
             
                "@glimmer/component": "^1.1.2",
         
     | 
| 
       21 
21 
     | 
    
         
             
                "@glimmer/tracking": "^1.1.2",
         
     | 
| 
       22 
     | 
    
         
            -
                "@projectcaluma/ember-core": "^11.0.0-beta. 
     | 
| 
      
 22 
     | 
    
         
            +
                "@projectcaluma/ember-core": "^11.0.0-beta.29",
         
     | 
| 
       23 
23 
     | 
    
         
             
                "ember-apollo-client": "~4.0.2",
         
     | 
| 
       24 
24 
     | 
    
         
             
                "ember-auto-import": "^2.4.2",
         
     | 
| 
       25 
25 
     | 
    
         
             
                "ember-autoresize-modifier": "^0.5.0",
         
     | 
| 
       26 
26 
     | 
    
         
             
                "ember-cli-babel": "^7.26.11",
         
     | 
| 
       27 
     | 
    
         
            -
                "ember-cli-htmlbars": "^6.1. 
     | 
| 
      
 27 
     | 
    
         
            +
                "ember-cli-htmlbars": "^6.1.1",
         
     | 
| 
       28 
28 
     | 
    
         
             
                "ember-cli-showdown": "^6.0.1",
         
     | 
| 
       29 
29 
     | 
    
         
             
                "ember-composable-helpers": "^5.0.0",
         
     | 
| 
       30 
     | 
    
         
            -
                "ember-concurrency": "^2.3. 
     | 
| 
      
 30 
     | 
    
         
            +
                "ember-concurrency": "^2.3.7",
         
     | 
| 
       31 
31 
     | 
    
         
             
                "ember-fetch": "^8.1.2",
         
     | 
| 
       32 
32 
     | 
    
         
             
                "ember-in-viewport": "^4.0.2",
         
     | 
| 
       33 
33 
     | 
    
         
             
                "ember-intl": "^5.7.2",
         
     | 
| 
       34 
34 
     | 
    
         
             
                "ember-math-helpers": "^2.18.2",
         
     | 
| 
       35 
35 
     | 
    
         
             
                "ember-pikaday": "^4.0.0",
         
     | 
| 
       36 
36 
     | 
    
         
             
                "ember-power-select": "^6.0.1",
         
     | 
| 
       37 
     | 
    
         
            -
                "ember-resources": "^5. 
     | 
| 
       38 
     | 
    
         
            -
                "ember-uikit": "^6. 
     | 
| 
      
 37 
     | 
    
         
            +
                "ember-resources": "^5.4.0",
         
     | 
| 
      
 38 
     | 
    
         
            +
                "ember-uikit": "^6.1.0",
         
     | 
| 
       39 
39 
     | 
    
         
             
                "ember-validators": "^4.1.2",
         
     | 
| 
       40 
40 
     | 
    
         
             
                "graphql": "^15.8.0",
         
     | 
| 
       41 
41 
     | 
    
         
             
                "jexl": "^2.3.0",
         
     | 
| 
         @@ -45,13 +45,13 @@ 
     | 
|
| 
       45 
45 
     | 
    
         
             
              },
         
     | 
| 
       46 
46 
     | 
    
         
             
              "devDependencies": {
         
     | 
| 
       47 
47 
     | 
    
         
             
                "@ember/optional-features": "2.0.0",
         
     | 
| 
       48 
     | 
    
         
            -
                "@ember/test-helpers": "2. 
     | 
| 
      
 48 
     | 
    
         
            +
                "@ember/test-helpers": "2.7.0",
         
     | 
| 
       49 
49 
     | 
    
         
             
                "@embroider/test-setup": "1.8.3",
         
     | 
| 
       50 
50 
     | 
    
         
             
                "@faker-js/faker": "7.5.0",
         
     | 
| 
       51 
     | 
    
         
            -
                "@projectcaluma/ember-testing": "11.0.0-beta. 
     | 
| 
       52 
     | 
    
         
            -
                "@projectcaluma/ember-workflow": "^11.0.0-beta. 
     | 
| 
      
 51 
     | 
    
         
            +
                "@projectcaluma/ember-testing": "11.0.0-beta.29",
         
     | 
| 
      
 52 
     | 
    
         
            +
                "@projectcaluma/ember-workflow": "^11.0.0-beta.29",
         
     | 
| 
       53 
53 
     | 
    
         
             
                "broccoli-asset-rev": "3.0.0",
         
     | 
| 
       54 
     | 
    
         
            -
                "ember-cli": " 
     | 
| 
      
 54 
     | 
    
         
            +
                "ember-cli": "4.7.0",
         
     | 
| 
       55 
55 
     | 
    
         
             
                "ember-cli-code-coverage": "1.0.3",
         
     | 
| 
       56 
56 
     | 
    
         
             
                "ember-cli-dependency-checker": "3.3.1",
         
     | 
| 
       57 
57 
     | 
    
         
             
                "ember-cli-inject-live-reload": "2.1.0",
         
     | 
| 
         @@ -59,12 +59,10 @@ 
     | 
|
| 
       59 
59 
     | 
    
         
             
                "ember-cli-sri": "2.1.1",
         
     | 
| 
       60 
60 
     | 
    
         
             
                "ember-cli-terser": "4.0.2",
         
     | 
| 
       61 
61 
     | 
    
         
             
                "ember-disable-prototype-extensions": "1.1.3",
         
     | 
| 
       62 
     | 
    
         
            -
                "ember-export-application-global": "2.0.1",
         
     | 
| 
       63 
62 
     | 
    
         
             
                "ember-load-initializers": "2.1.2",
         
     | 
| 
       64 
     | 
    
         
            -
                "ember-maybe-import-regenerator": "1.0.0",
         
     | 
| 
       65 
63 
     | 
    
         
             
                "ember-qunit": "5.1.5",
         
     | 
| 
       66 
64 
     | 
    
         
             
                "ember-resolver": "8.0.3",
         
     | 
| 
       67 
     | 
    
         
            -
                "ember-source": " 
     | 
| 
      
 65 
     | 
    
         
            +
                "ember-source": "4.7.0",
         
     | 
| 
       68 
66 
     | 
    
         
             
                "ember-source-channel-url": "3.0.0",
         
     | 
| 
       69 
67 
     | 
    
         
             
                "ember-try": "2.0.0",
         
     | 
| 
       70 
68 
     | 
    
         
             
                "loader.js": "4.7.0",
         
     | 
| 
         @@ -72,11 +70,11 @@ 
     | 
|
| 
       72 
70 
     | 
    
         
             
                "npm-run-all": "4.1.5",
         
     | 
| 
       73 
71 
     | 
    
         
             
                "qunit": "2.19.1",
         
     | 
| 
       74 
72 
     | 
    
         
             
                "qunit-dom": "2.0.0",
         
     | 
| 
       75 
     | 
    
         
            -
                "uuid": " 
     | 
| 
      
 73 
     | 
    
         
            +
                "uuid": "9.0.0",
         
     | 
| 
       76 
74 
     | 
    
         
             
                "webpack": "5.74.0"
         
     | 
| 
       77 
75 
     | 
    
         
             
              },
         
     | 
| 
       78 
76 
     | 
    
         
             
              "peerDependencies": {
         
     | 
| 
       79 
     | 
    
         
            -
                "@projectcaluma/ember-workflow": "^11.0.0-beta. 
     | 
| 
      
 77 
     | 
    
         
            +
                "@projectcaluma/ember-workflow": "^11.0.0-beta.29"
         
     | 
| 
       80 
78 
     | 
    
         
             
              },
         
     | 
| 
       81 
79 
     | 
    
         
             
              "peerDependenciesMeta": {
         
     | 
| 
       82 
80 
     | 
    
         
             
                "@projectcaluma/ember-workflow": {
         
     | 
| 
         @@ -84,7 +82,7 @@ 
     | 
|
| 
       84 
82 
     | 
    
         
             
                }
         
     | 
| 
       85 
83 
     | 
    
         
             
              },
         
     | 
| 
       86 
84 
     | 
    
         
             
              "engines": {
         
     | 
| 
       87 
     | 
    
         
            -
                "node": " 
     | 
| 
      
 85 
     | 
    
         
            +
                "node": "14.* || >= 16"
         
     | 
| 
       88 
86 
     | 
    
         
             
              },
         
     | 
| 
       89 
87 
     | 
    
         
             
              "ember": {
         
     | 
| 
       90 
88 
     | 
    
         
             
                "edition": "octane"
         
     |