@heroku/ember-hk-components 0.21.2 → 1.21.4

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.
@@ -1,5 +1,6 @@
1
1
  import Component from '@ember/component';
2
2
  import { alias, bool } from '@ember/object/computed';
3
+ import { computed } from '@ember/object';
3
4
  import layout from '@heroku/ember-hk-components/templates/components/hk-validation-errors-list';
4
5
 
5
6
  export default Component.extend({
@@ -7,4 +8,7 @@ export default Component.extend({
7
8
  tagName: '',
8
9
  hasValidationErrors: bool('validationErrors'),
9
10
  validationErrorMessages: alias('validationErrors.validation'),
11
+ errorsListId: computed('property', function() {
12
+ return `validation-errors-${this.get('property')}`;
13
+ }),
10
14
  });
@@ -1,8 +1,8 @@
1
1
  {{yield (hash
2
- value=value
3
- isValidating=isValidating
4
- isValid=isValid
5
- isInvalid=isInvalid
6
- errors=validationErrors
7
- errorsList=(component 'hk-validation-errors-list' validationErrors=validationErrors property=property)
8
- )}}
2
+ value=this.value
3
+ isValidating=this.isValidating
4
+ isValid=this.isValid
5
+ isInvalid=this.isInvalid
6
+ errors=this.validationErrors
7
+ errorsList=(component 'hk-validation-errors-list' validationErrors=this.validationErrors property=this.property)
8
+ )}}
@@ -1,8 +1,8 @@
1
1
  <ul
2
- class="list pl0 red mv2 f5 normal lh-copy {{unless hasValidationErrors 'clip'}}"
3
- id={{errorsListId}}
4
- data-test-target={{concat 'validation-errors-' property}}>
5
- {{#each validationErrorMessages as |message|}}
2
+ class="list pl0 red mv2 f5 normal lh-copy {{unless this.hasValidationErrors 'clip'}}"
3
+ id={{this.errorsListId}}
4
+ data-test-target={{concat 'validation-errors-' this.property}}>
5
+ {{#each this.validationErrorMessages as |message|}}
6
6
  <li>{{message}}</li>
7
7
  {{/each}}
8
8
  </ul>
package/app.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "ember-hk-components",
3
3
  "description": "Ember Hk Components",
4
- "stack": "heroku-20",
4
+ "stack": "heroku-24",
5
5
  "buildpacks": [
6
6
  { "url": "heroku/nodejs" },
7
7
  { "url": "https://github.com/heroku/heroku-buildpack-ember-cli" },
8
- { "url": "https://github.com/heroku/heroku-buildpack-static" }
8
+ { "url": "heroku-community/nginx"}
9
9
  ],
10
10
  "env": {
11
11
  "NPM_CONFIG_PRODUCTION": "false"
@@ -17,7 +17,7 @@
17
17
  "NODE_ENV": "test"
18
18
  },
19
19
  "buildpacks": [
20
- { "url": "https://github.com/heroku/heroku-buildpack-google-chrome" },
20
+ { "url": "https://github.com/heroku/heroku-buildpack-chrome-for-testing" },
21
21
  { "url": "heroku/nodejs" }
22
22
  ]
23
23
  }
@@ -0,0 +1,104 @@
1
+ daemon off;
2
+ # stay attached to the dyno process, run in Procfile / web
3
+
4
+ pid /app/nginx.pid;
5
+ # /app is $HOME & working directory of Heroku dyno
6
+
7
+ error_log stderr error;
8
+ # As documented for Nginx, but we still see error during start-up in log:
9
+ # > nginx: [alert] could not open error log file: open() "./logs/error.log"
10
+
11
+ worker_processes <%= ENV['NGINX_WORKERS'] || 4 %>;
12
+ # Heroku dynos have at least 4 cores.
13
+
14
+ events {
15
+ use epoll;
16
+ accept_mutex on;
17
+ worker_connections <%= ENV['NGINX_WORKER_CONNECTIONS'] || 1024 %>;
18
+ }
19
+
20
+ http {
21
+ gzip on;
22
+ gzip_comp_level 2;
23
+ gzip_min_length 512;
24
+ gzip_proxied any; # Heroku router sends Via header
25
+
26
+ server_tokens off;
27
+
28
+ log_format l2met 'measure#nginx.service=$request_time request_id=$http_x_request_id';
29
+ access_log off;
30
+ # Remote IP, request path, HTTP status, & timestamp are all logged by Heroku Router, so not useful to include here.
31
+
32
+ include mime.types;
33
+ default_type application/octet-stream;
34
+ sendfile on;
35
+
36
+ client_body_timeout <%= ENV['NGINX_CLIENT_BODY_TIMEOUT'] || 5 %>;
37
+ # Must read the body in 5 seconds.
38
+
39
+ server {
40
+ listen <%= ENV["PORT"] %>;
41
+ server_name _;
42
+ keepalive_timeout 5;
43
+ client_max_body_size <%= ENV['NGINX_CLIENT_MAX_BODY_SIZE'] || 1 %>M;
44
+
45
+ ## HTTPS Only
46
+ if ($http_x_forwarded_proto != "https") {
47
+ return 301 https://$host$request_uri;
48
+ }
49
+
50
+ ## Document root
51
+ root /app/dist;
52
+
53
+ location / {
54
+ ## Clean URLs: match on extensionless requests.
55
+ try_files $uri $uri/ $uri.html =404;
56
+
57
+ ## Single-page app client-side routing: returns index.html if the requested path doesn't exist.
58
+ ## When enabled, the client-side app must handle its own 404 errors.
59
+ error_page 404 = /index.html;
60
+
61
+ add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
62
+ add_header Pragma "no-cache";
63
+ expires epoch;
64
+ add_header Strict-Transport-Security "max-age=31536000; includeSubDomains;";
65
+ add_header X-Download-Options "noopen";
66
+ add_header X-Content-Type-Options "nosniff";
67
+ add_header X-Frame-Options "SAMEORIGIN";
68
+ add_header X-XSS-Protection "1; mode=block";
69
+ }
70
+
71
+ ## Define specific behaviors for sub directories and other locations.
72
+ location /assets {
73
+ expires 6d;
74
+ add_header Cache-Control public;
75
+ }
76
+
77
+ location /robot.txt {
78
+ expires 6d;
79
+ add_header Cache-Control public;
80
+ }
81
+
82
+ location /crossdomain.xml {
83
+ expires 6d;
84
+ add_header Cache-Control public;
85
+ }
86
+
87
+ ## Custom error pages
88
+ # error_page 404 /404.html;
89
+ # error_page 500 /500.html;
90
+ }
91
+
92
+ ## Canonical Host: redirect to a canonical hostname.
93
+ ## Multiple server blocks may be used, one for each hostname to redirect from.
94
+ # server {
95
+ # server_name some-other-name.example.com;
96
+ # return 301 https://canonical-name.example.com$request_uri;
97
+ # }
98
+ # server {
99
+ # server_name yet-another-name.example.com;
100
+ # return 301 https://canonical-name.example.com$request_uri;
101
+ # }
102
+ # …
103
+ }
104
+
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@heroku/ember-hk-components",
3
- "version": "0.21.2",
3
+ "version": "1.21.4",
4
4
  "description": "Ember HK Components",
5
5
  "keywords": [
6
6
  "ember-addon"
7
7
  ],
8
8
  "repository": "https://github.com/heroku/ember-hk-components",
9
- "author": "heroku-front-end@salesforce.com",
9
+ "author": "Heroku",
10
10
  "directories": {
11
11
  "doc": "doc",
12
12
  "test": "tests"
@@ -15,20 +15,21 @@
15
15
  "build": "ember build",
16
16
  "lint:hbs": "ember-template-lint .",
17
17
  "lint:js": "eslint .",
18
- "lint": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*",
18
+ "lint": "pnpm run lint:js && pnpm run lint:hbs",
19
19
  "lint:hbs:fix": "ember-template-lint . --fix",
20
20
  "start": "ember server",
21
- "test": "npm-run-all test:ember",
21
+ "test": "pnpm run test:ember",
22
22
  "test:ember": "ember test",
23
23
  "test:ember-compatibility": "ember try:each",
24
- "changelog": "lerna-changelog"
24
+ "changelog": "lerna-changelog",
25
+ "preinstall": "npx only-allow pnpm"
25
26
  },
26
27
  "dependencies": {
27
28
  "@heroku/ember-malibu-icon": "^1.6.0",
28
29
  "body-scroll-lock": "^3.1.5",
29
30
  "ember-auto-import": "^2.6.0",
30
- "ember-changeset": "4.0.0",
31
- "ember-changeset-validations": "^2.2.1",
31
+ "ember-changeset": "^4.0.0",
32
+ "ember-changeset-validations": "^4.0.0",
32
33
  "ember-cli-babel": "^7.26.11",
33
34
  "ember-cli-htmlbars": "^6.1.1",
34
35
  "ember-focus-trap": "^1.0.1",
@@ -36,6 +37,7 @@
36
37
  "ember-wormhole": "^0.6.0"
37
38
  },
38
39
  "devDependencies": {
40
+ "@babel/eslint-parser": "^7.28.4",
39
41
  "@ember/optional-features": "^2.0.0",
40
42
  "@ember/test-helpers": "^2.9.3",
41
43
  "@glimmer/component": "^1.1.2",
@@ -43,9 +45,8 @@
43
45
  "babel-eslint": "^10.1.0",
44
46
  "broccoli-asset-rev": "^3.0.0",
45
47
  "chai": "^4.3.7",
46
- "ember-a11y-testing": "^4.4.0",
48
+ "ember-a11y-testing": "^5.2.1",
47
49
  "ember-cli": "~3.28.6",
48
- "ember-cli-chai": "^0.5.0",
49
50
  "ember-cli-dependency-checker": "^3.3.1",
50
51
  "ember-cli-eyeglass": "^7.1.0",
51
52
  "ember-cli-inject-live-reload": "^2.1.0",
@@ -74,10 +75,7 @@
74
75
  "qunit": "^2.19.3",
75
76
  "qunit-dom": "^2.0.0",
76
77
  "sass": "1.57.1",
77
- "webpack": "5.75.0"
78
- },
79
- "engines": {
80
- "node": "14.x || 16.x"
78
+ "webpack": "5.76.0"
81
79
  },
82
80
  "changelog": {
83
81
  "repo": "heroku/ember-hk-components",
@@ -94,5 +92,14 @@
94
92
  },
95
93
  "ember-addon": {
96
94
  "configPath": "tests/dummy/config"
95
+ },
96
+ "resolutions": {
97
+ "ansi-html": "^0.0.8",
98
+ "braces": "npm:braces@^3.0.3",
99
+ "consolidate": "npm:@ladjs/consolidate@^1.0.0",
100
+ "json5": "^2.2.3",
101
+ "lodash.template": "npm:lodash@^4.17.21",
102
+ "rollup": "^4.50.1",
103
+ "validated-changeset": "1.4.1"
97
104
  }
98
105
  }
@@ -0,0 +1,4 @@
1
+ onlyBuiltDependencies:
2
+ - core-js
3
+ - es5-ext
4
+ - fsevents
package/.eslintcache DELETED
@@ -1 +0,0 @@
1
- [{"/Users/eblack/salesforce-workspace/ember-hk-components/.eslintrc.js":"1","/Users/eblack/salesforce-workspace/ember-hk-components/.prettierrc.js":"2","/Users/eblack/salesforce-workspace/ember-hk-components/.template-lintrc.js":"3","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/async-button.js":"4","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-autofocus-input.js":"5","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-button.js":"6","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-field-validations.js":"7","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-form-group.js":"8","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-inline-edit.js":"9","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-input-with-validation-status.js":"10","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-input.js":"11","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-label.js":"12","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-search-input.js":"13","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-select.js":"14","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/breakout.js":"15","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/confirmable-action.js":"16","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/content.js":"17","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/footer.js":"18","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/header.js":"19","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/overlay.js":"20","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel.js":"21","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-textarea.js":"22","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-validation-errors-list.js":"23","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well/body.js":"24","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well/headline.js":"25","/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well.js":"26","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-autofocus-input.js":"27","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-button.js":"28","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-field-validations.js":"29","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-form-group.js":"30","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-inline-edit.js":"31","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-input-with-validation-status.js":"32","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-input.js":"33","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-label.js":"34","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-search-input.js":"35","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-select.js":"36","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/breakout.js":"37","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/confirmable-action.js":"38","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/content.js":"39","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/footer.js":"40","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/header.js":"41","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/overlay.js":"42","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel.js":"43","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-textarea.js":"44","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-validation-errors-list.js":"45","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well/body.js":"46","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well/headline.js":"47","/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well.js":"48","/Users/eblack/salesforce-workspace/ember-hk-components/config/ember-try.js":"49","/Users/eblack/salesforce-workspace/ember-hk-components/config/environment.js":"50","/Users/eblack/salesforce-workspace/ember-hk-components/ember-cli-build.js":"51","/Users/eblack/salesforce-workspace/ember-hk-components/index.js":"52","/Users/eblack/salesforce-workspace/ember-hk-components/testem.js":"53","/Users/eblack/salesforce-workspace/ember-hk-components/tests/.eslintrc.js":"54","/Users/eblack/salesforce-workspace/ember-hk-components/tests/acceptance/documentation-accessibility-test.js":"55","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/app.js":"56","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/components/fix-snippet-accessibility.js":"57","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/controllers/freestyle.js":"58","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/resolver.js":"59","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/router.js":"60","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/services/ember-freestyle.js":"61","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/validations/model-validations.js":"62","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/config/environment.js":"63","/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/config/targets.js":"64","/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/destroy-app.js":"65","/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/resolver.js":"66","/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/start-app.js":"67","/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/test-model-validations.js":"68","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-button-test.js":"69","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-field-validations-test.js":"70","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-form-group-test.js":"71","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-inline-edit-test.js":"72","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-input-test.js":"73","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-input-with-validation-status-test.js":"74","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-search-input-test.js":"75","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-select-test.js":"76","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-slide-panel/content-test.js":"77","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-slide-panel-test.js":"78","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-textarea-test.js":"79","/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-well-test.js":"80","/Users/eblack/salesforce-workspace/ember-hk-components/tests/test-helper.js":"81"},{"size":2247,"mtime":1644349974272,"results":"82","hashOfConfig":"83"},{"size":58,"mtime":1644347857121,"results":"84","hashOfConfig":"83"},{"size":363,"mtime":1644350338172,"results":"85","hashOfConfig":"83"},{"size":2943,"mtime":1643232936796,"results":"86","hashOfConfig":"83"},{"size":345,"mtime":1643232936796,"results":"87","hashOfConfig":"83"},{"size":2135,"mtime":1643232936796,"results":"88","hashOfConfig":"83"},{"size":3640,"mtime":1644354892912,"results":"89","hashOfConfig":"83"},{"size":509,"mtime":1643232936797,"results":"90","hashOfConfig":"83"},{"size":5560,"mtime":1643232936797,"results":"91","hashOfConfig":"83"},{"size":1224,"mtime":1643232936797,"results":"92","hashOfConfig":"83"},{"size":618,"mtime":1643232936797,"results":"93","hashOfConfig":"83"},{"size":261,"mtime":1643232936797,"results":"94","hashOfConfig":"83"},{"size":452,"mtime":1643232936798,"results":"95","hashOfConfig":"83"},{"size":435,"mtime":1643232936798,"results":"96","hashOfConfig":"83"},{"size":1094,"mtime":1643232936798,"results":"97","hashOfConfig":"83"},{"size":464,"mtime":1643232936798,"results":"98","hashOfConfig":"83"},{"size":785,"mtime":1643663449308,"results":"99","hashOfConfig":"83"},{"size":354,"mtime":1643232936799,"results":"100","hashOfConfig":"83"},{"size":613,"mtime":1643232936799,"results":"101","hashOfConfig":"83"},{"size":462,"mtime":1643232936799,"results":"102","hashOfConfig":"83"},{"size":3509,"mtime":1643232936798,"results":"103","hashOfConfig":"83"},{"size":318,"mtime":1643232936799,"results":"104","hashOfConfig":"83"},{"size":371,"mtime":1643232936799,"results":"105","hashOfConfig":"83"},{"size":247,"mtime":1643232936800,"results":"106","hashOfConfig":"83"},{"size":265,"mtime":1643232936800,"results":"107","hashOfConfig":"83"},{"size":229,"mtime":1643232936799,"results":"108","hashOfConfig":"83"},{"size":84,"mtime":1643232936803,"results":"109","hashOfConfig":"83"},{"size":75,"mtime":1643232936803,"results":"110","hashOfConfig":"83"},{"size":87,"mtime":1643232936804,"results":"111","hashOfConfig":"83"},{"size":80,"mtime":1643237148921,"results":"112","hashOfConfig":"83"},{"size":80,"mtime":1643232936804,"results":"113","hashOfConfig":"83"},{"size":98,"mtime":1643232936804,"results":"114","hashOfConfig":"83"},{"size":75,"mtime":1643237155246,"results":"115","hashOfConfig":"83"},{"size":75,"mtime":1643232936804,"results":"116","hashOfConfig":"83"},{"size":81,"mtime":1643232936804,"results":"117","hashOfConfig":"83"},{"size":76,"mtime":1643232936805,"results":"118","hashOfConfig":"83"},{"size":90,"mtime":1643232936805,"results":"119","hashOfConfig":"83"},{"size":100,"mtime":1643232936805,"results":"120","hashOfConfig":"83"},{"size":88,"mtime":1643656806892,"results":"121","hashOfConfig":"83"},{"size":87,"mtime":1643232936805,"results":"122","hashOfConfig":"83"},{"size":87,"mtime":1643232936805,"results":"123","hashOfConfig":"83"},{"size":88,"mtime":1643232936806,"results":"124","hashOfConfig":"83"},{"size":80,"mtime":1643232936805,"results":"125","hashOfConfig":"83"},{"size":78,"mtime":1643232936806,"results":"126","hashOfConfig":"83"},{"size":92,"mtime":1643232936806,"results":"127","hashOfConfig":"83"},{"size":78,"mtime":1643232936806,"results":"128","hashOfConfig":"83"},{"size":82,"mtime":1643232936806,"results":"129","hashOfConfig":"83"},{"size":73,"mtime":1643232936806,"results":"130","hashOfConfig":"83"},{"size":1676,"mtime":1644348140881,"results":"131","hashOfConfig":"83"},{"size":486,"mtime":1644348154404,"results":"132","hashOfConfig":"83"},{"size":598,"mtime":1644347857146,"results":"133","hashOfConfig":"83"},{"size":344,"mtime":1644348038821,"results":"134","hashOfConfig":"83"},{"size":589,"mtime":1644348088816,"results":"135","hashOfConfig":"83"},{"size":55,"mtime":1643232936808,"results":"136","hashOfConfig":"137"},{"size":509,"mtime":1643232936808,"results":"138","hashOfConfig":"137"},{"size":387,"mtime":1643745958234,"results":"139","hashOfConfig":"137"},{"size":965,"mtime":1643232936809,"results":"140","hashOfConfig":"137"},{"size":2180,"mtime":1643232936810,"results":"141","hashOfConfig":"137"},{"size":65,"mtime":1643662420466,"results":"142","hashOfConfig":"137"},{"size":281,"mtime":1644348220866,"results":"143","hashOfConfig":"137"},{"size":143,"mtime":1643232936811,"results":"144","hashOfConfig":"137"},{"size":1390,"mtime":1643232936812,"results":"145","hashOfConfig":"137"},{"size":1242,"mtime":1644347857122,"results":"146","hashOfConfig":"137"},{"size":314,"mtime":1644347857123,"results":"147","hashOfConfig":"137"},{"size":122,"mtime":1643232936813,"results":"148","hashOfConfig":"137"},{"size":255,"mtime":1643232936814,"results":"149","hashOfConfig":"137"},{"size":512,"mtime":1643232936814,"results":"150","hashOfConfig":"137"},{"size":222,"mtime":1643232936814,"results":"151","hashOfConfig":"137"},{"size":4858,"mtime":1643232936815,"results":"152","hashOfConfig":"137"},{"size":9069,"mtime":1644354957163,"results":"153","hashOfConfig":"137"},{"size":5860,"mtime":1643232936815,"results":"154","hashOfConfig":"137"},{"size":4477,"mtime":1643232936815,"results":"155","hashOfConfig":"137"},{"size":4451,"mtime":1643232936815,"results":"156","hashOfConfig":"137"},{"size":4329,"mtime":1643232936816,"results":"157","hashOfConfig":"137"},{"size":1062,"mtime":1643232936816,"results":"158","hashOfConfig":"137"},{"size":3804,"mtime":1643232936816,"results":"159","hashOfConfig":"137"},{"size":1714,"mtime":1643232936816,"results":"160","hashOfConfig":"137"},{"size":14248,"mtime":1643663496002,"results":"161","hashOfConfig":"137"},{"size":3766,"mtime":1643232936817,"results":"162","hashOfConfig":"137"},{"size":2533,"mtime":1643232936817,"results":"163","hashOfConfig":"137"},{"size":452,"mtime":1644348190060,"results":"164","hashOfConfig":"137"},{"filePath":"165","messages":"166","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"1yues5r",{"filePath":"167","messages":"168","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"169","messages":"170","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"171","messages":"172","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"173","messages":"174","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"175","messages":"176","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"177","messages":"178","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"179","messages":"180","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"181","messages":"182","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"183","messages":"184","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"185","messages":"186","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"187","messages":"188","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"189","messages":"190","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"191","messages":"192","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"193","messages":"194","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"195","messages":"196","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"197","messages":"198","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"199","messages":"200","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"201","messages":"202","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"203","messages":"204","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"205","messages":"206","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"207","messages":"208","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"209","messages":"210","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"211","messages":"212","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"213","messages":"214","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"215","messages":"216","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"217","messages":"218","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"219","messages":"220","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"221","messages":"222","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"223","messages":"224","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"225","messages":"226","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"227","messages":"228","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"229","messages":"230","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"231","messages":"232","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"233","messages":"234","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"235","messages":"236","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"237","messages":"238","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"239","messages":"240","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"241","messages":"242","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"243","messages":"244","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"245","messages":"246","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"247","messages":"248","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"249","messages":"250","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"251","messages":"252","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"253","messages":"254","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"255","messages":"256","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"257","messages":"258","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"259","messages":"260","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"261","messages":"262","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"263","messages":"264","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"265","messages":"266","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"267","messages":"268","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"269","messages":"270","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"271","messages":"272","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"r9k6xr",{"filePath":"273","messages":"274","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"275","messages":"276","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"277","messages":"278","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"279","messages":"280","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"281","messages":"282","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"283","messages":"284","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"285","messages":"286","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"287","messages":"288","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"289","messages":"290","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"291","messages":"292","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"293","messages":"294","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"295","messages":"296","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"297","messages":"298","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"299","messages":"300","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"301","messages":"302","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"303","messages":"304","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"305","messages":"306","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"307","messages":"308","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"309","messages":"310","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"311","messages":"312","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"313","messages":"314","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"315","messages":"316","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"317","messages":"318","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"319","messages":"320","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"321","messages":"322","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"323","messages":"324","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"325","messages":"326","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/eblack/salesforce-workspace/ember-hk-components/.eslintrc.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/.prettierrc.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/.template-lintrc.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/async-button.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-autofocus-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-button.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-field-validations.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-form-group.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-inline-edit.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-input-with-validation-status.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-label.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-search-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-select.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/breakout.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/confirmable-action.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/content.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/footer.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/header.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel/overlay.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-slide-panel.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-textarea.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-validation-errors-list.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well/body.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well/headline.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/addon/components/hk-well.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-autofocus-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-button.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-field-validations.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-form-group.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-inline-edit.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-input-with-validation-status.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-label.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-search-input.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-select.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/breakout.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/confirmable-action.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/content.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/footer.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/header.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel/overlay.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-slide-panel.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-textarea.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-validation-errors-list.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well/body.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well/headline.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/app/components/hk-well.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/config/ember-try.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/config/environment.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/ember-cli-build.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/index.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/testem.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/.eslintrc.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/acceptance/documentation-accessibility-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/app.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/components/fix-snippet-accessibility.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/controllers/freestyle.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/resolver.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/router.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/services/ember-freestyle.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/app/validations/model-validations.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/config/environment.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/dummy/config/targets.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/destroy-app.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/resolver.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/start-app.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/helpers/test-model-validations.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-button-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-field-validations-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-form-group-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-inline-edit-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-input-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-input-with-validation-status-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-search-input-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-select-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-slide-panel/content-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-slide-panel-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-textarea-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/integration/components/hk-well-test.js",[],"/Users/eblack/salesforce-workspace/ember-hk-components/tests/test-helper.js",[]]