ember-inspector 4.13.1-alpha.2024.8.9 → 4.13.1-alpha.2025.6.7

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 (367) hide show
  1. package/README.md +10 -2
  2. package/app/components/app-picker.hbs +2 -2
  3. package/app/components/component-tree-item.hbs +13 -13
  4. package/app/components/component-tree-toolbar.hbs +3 -3
  5. package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
  6. package/app/components/deprecation-item-source.hbs +1 -1
  7. package/app/components/deprecation-item.hbs +1 -1
  8. package/app/components/deprecations-toolbar.hbs +1 -1
  9. package/app/components/item-types.hbs +7 -7
  10. package/app/components/list-cell.hbs +3 -3
  11. package/app/components/list-content.hbs +4 -3
  12. package/app/components/list-content.ts +96 -0
  13. package/app/components/list.hbs +3 -3
  14. package/app/components/list.js +7 -7
  15. package/app/components/model-types-toolbar.hbs +3 -3
  16. package/app/components/object-inspector/dependent-keys.hbs +4 -4
  17. package/app/components/object-inspector/errors.hbs +4 -4
  18. package/app/components/object-inspector/properties-all.hbs +1 -1
  19. package/app/components/object-inspector/properties-grouped.hbs +5 -5
  20. package/app/components/object-inspector/property.hbs +16 -16
  21. package/app/components/object-inspector/property.ts +26 -17
  22. package/app/components/object-inspector/sort-properties.js +12 -4
  23. package/app/components/object-inspector.hbs +8 -8
  24. package/app/components/object-inspector.js +1 -1
  25. package/app/components/promise-item.hbs +11 -11
  26. package/app/components/promise-item.js +8 -6
  27. package/app/components/promise-tree-toolbar.hbs +5 -5
  28. package/app/components/records-toolbar.hbs +2 -2
  29. package/app/components/render-item.hbs +4 -4
  30. package/app/components/render-item.ts +12 -9
  31. package/app/components/render-tree-toolbar.hbs +1 -1
  32. package/app/components/route-cell-name.hbs +1 -1
  33. package/app/components/route-cell-name.js +3 -2
  34. package/app/components/route-tree-toolbar.hbs +2 -2
  35. package/app/components/scroll-container.js +2 -0
  36. package/app/components/side-nav.hbs +5 -5
  37. package/app/components/side-nav.js +1 -1
  38. package/app/computed/{debounce.js → debounce.ts} +7 -5
  39. package/app/config/environment.d.ts +5 -2
  40. package/app/controllers/app-config.js +1 -0
  41. package/app/controllers/application.js +33 -34
  42. package/app/controllers/component-tree.js +3 -2
  43. package/app/controllers/container-type.js +2 -1
  44. package/app/controllers/container-types/{index.js → index.ts} +5 -2
  45. package/app/controllers/container-types.js +3 -6
  46. package/app/controllers/deprecations.js +16 -11
  47. package/app/controllers/libraries.js +1 -0
  48. package/app/controllers/model-types.js +1 -0
  49. package/app/controllers/promise-tree.ts +149 -0
  50. package/app/controllers/records.js +18 -26
  51. package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
  52. package/app/controllers/route-tree.js +7 -5
  53. package/app/helpers/build-style.js +1 -1
  54. package/app/initializers/setup.js +1 -1
  55. package/app/libs/promise-assembler.ts +249 -0
  56. package/app/libs/resizable-columns.js +10 -10
  57. package/app/models/{promise.js → promise.ts} +72 -69
  58. package/app/{router.js → router.ts} +1 -1
  59. package/app/routes/app-detected.js +3 -5
  60. package/app/routes/application.js +6 -12
  61. package/app/routes/deprecations.js +7 -16
  62. package/app/routes/launch.js +2 -1
  63. package/app/routes/libraries.js +2 -1
  64. package/app/routes/model-type.js +2 -3
  65. package/app/routes/model-types.ts +57 -0
  66. package/app/routes/promise-tree.ts +63 -0
  67. package/app/routes/records.ts +78 -0
  68. package/app/routes/render-tree.ts +93 -0
  69. package/app/routes/route-tree.js +0 -1
  70. package/app/routes/{tab.js → tab.ts} +9 -2
  71. package/app/routes/whats-new.js +1 -1
  72. package/app/services/adapters/{basic.js → basic.ts} +36 -30
  73. package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
  74. package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
  75. package/app/services/adapters/{web-extension.js → web-extension.ts} +43 -46
  76. package/app/services/adapters/websocket.ts +40 -0
  77. package/app/services/layout.ts +88 -0
  78. package/app/services/port.ts +195 -0
  79. package/app/services/storage/{local.js → local.ts} +7 -20
  80. package/app/services/storage/{memory.js → memory.ts} +6 -21
  81. package/app/services/{storage.js → storage.ts} +9 -20
  82. package/app/styles/base.scss +4 -2
  83. package/app/styles/colors.scss +33 -31
  84. package/app/styles/component_tree.scss +56 -51
  85. package/app/styles/dropdown.scss +2 -2
  86. package/app/styles/ember-table.scss +3 -3
  87. package/app/styles/mixin.scss +26 -26
  88. package/app/styles/object_inspector.scss +22 -21
  89. package/app/styles/utils.scss +408 -122
  90. package/app/templates/application.hbs +11 -11
  91. package/app/templates/component-tree.hbs +1 -1
  92. package/app/templates/deprecations.hbs +2 -3
  93. package/app/templates/info.hbs +10 -10
  94. package/app/templates/promise-tree.hbs +1 -1
  95. package/app/templates/render-tree.hbs +1 -1
  96. package/app/templates/route-tree.hbs +1 -1
  97. package/app/utils/escape-reg-exp.ts +3 -2
  98. package/app/utils/nullish.ts +7 -0
  99. package/app/utils/parse-text.ts +4 -5
  100. package/app/utils/truncate.js +0 -1
  101. package/config/ember-cli-update.json +5 -3
  102. package/config/ember-try.js +117 -72
  103. package/config/environment.js +1 -1
  104. package/config/optional-features.json +2 -1
  105. package/dist/bookmarklet/load_inspector.js +30 -11
  106. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  107. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  108. package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  109. package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  110. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +150 -155
  111. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +486 -590
  112. package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  113. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  114. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  115. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  116. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  117. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  118. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  119. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  120. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  121. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  122. package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +147 -148
  123. package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +5153 -5980
  124. package/dist/bookmarklet/panes-3-16-0/ember_debug.js +250 -268
  125. package/dist/bookmarklet/panes-3-16-0/index.html +3 -4
  126. package/dist/chrome/background.js +26 -21
  127. package/dist/chrome/boot.js +1 -1
  128. package/dist/chrome/content-script.js +11 -11
  129. package/dist/chrome/devtools.js +12 -3
  130. package/dist/chrome/manifest.json +2 -2
  131. package/dist/chrome/options.js +17 -12
  132. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  133. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  134. package/dist/chrome/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  135. package/dist/chrome/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  136. package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +150 -155
  137. package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +486 -590
  138. package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  139. package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  140. package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  141. package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  142. package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  143. package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  144. package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  145. package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  146. package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  147. package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  148. package/dist/chrome/panes-3-16-0/assets/vendor.css +147 -148
  149. package/dist/chrome/panes-3-16-0/assets/vendor.js +5153 -5980
  150. package/dist/chrome/panes-3-16-0/ember_debug.js +250 -268
  151. package/dist/chrome/panes-3-16-0/index.html +3 -4
  152. package/dist/chrome/scripts/in-page-script.js +19 -13
  153. package/dist/firefox/background.js +26 -21
  154. package/dist/firefox/boot.js +1 -1
  155. package/dist/firefox/content-script.js +11 -11
  156. package/dist/firefox/devtools.js +12 -3
  157. package/dist/firefox/manifest.json +2 -2
  158. package/dist/firefox/options.js +17 -12
  159. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  160. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  161. package/dist/firefox/panes-3-16-0/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  162. package/dist/firefox/panes-3-16-0/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  163. package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +150 -155
  164. package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +486 -590
  165. package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  166. package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  167. package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  168. package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  169. package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  170. package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  171. package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  172. package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  173. package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  174. package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  175. package/dist/firefox/panes-3-16-0/assets/vendor.css +147 -148
  176. package/dist/firefox/panes-3-16-0/assets/vendor.js +5153 -5980
  177. package/dist/firefox/panes-3-16-0/ember_debug.js +250 -268
  178. package/dist/firefox/panes-3-16-0/index.html +3 -4
  179. package/dist/firefox/scripts/in-page-script.js +19 -13
  180. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  181. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  182. package/dist/websocket/assets/chunk.524.6a5edcbbcf29cbe1b167.js +40 -0
  183. package/dist/websocket/assets/chunk.582.b77d8494154b524e9f91.js +42 -0
  184. package/dist/websocket/assets/ember-inspector.css +150 -155
  185. package/dist/websocket/assets/ember-inspector.js +486 -590
  186. package/dist/websocket/assets/svg/ellipsis.svg +3 -3
  187. package/dist/websocket/assets/svg/nav-bug.svg +1 -1
  188. package/dist/websocket/assets/svg/nav-components.svg +2 -2
  189. package/dist/websocket/assets/svg/nav-container.svg +1 -1
  190. package/dist/websocket/assets/svg/nav-data.svg +1 -1
  191. package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
  192. package/dist/websocket/assets/svg/nav-info.svg +3 -3
  193. package/dist/websocket/assets/svg/nav-promises.svg +2 -2
  194. package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
  195. package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
  196. package/dist/websocket/assets/vendor.css +147 -148
  197. package/dist/websocket/assets/vendor.js +5153 -5980
  198. package/dist/websocket/ember_debug.js +250 -268
  199. package/dist/websocket/index.html +3 -4
  200. package/ember-cli-build.js +11 -11
  201. package/ember_debug/adapters/basic.js +2 -1
  202. package/ember_debug/adapters/bookmarklet.js +1 -0
  203. package/ember_debug/adapters/firefox.js +3 -3
  204. package/ember_debug/adapters/web-extension.js +2 -1
  205. package/ember_debug/data-debug.js +5 -6
  206. package/ember_debug/deprecation-debug.js +8 -8
  207. package/ember_debug/general-debug.js +1 -1
  208. package/ember_debug/libs/capture-render-tree.js +0 -1
  209. package/ember_debug/libs/promise-assembler.js +1 -0
  210. package/ember_debug/libs/render-tree.js +13 -12
  211. package/ember_debug/libs/source-map.js +5 -4
  212. package/ember_debug/libs/view-inspection.js +12 -12
  213. package/ember_debug/main.js +1 -1
  214. package/ember_debug/models/profile-manager.js +2 -1
  215. package/ember_debug/object-inspector.js +19 -18
  216. package/ember_debug/port.js +1 -0
  217. package/ember_debug/promise-debug.js +1 -1
  218. package/ember_debug/route-debug.js +3 -2
  219. package/ember_debug/services/session.js +1 -1
  220. package/ember_debug/utils/classify.js +1 -1
  221. package/ember_debug/utils/ember/debug.js +2 -0
  222. package/ember_debug/utils/ember/loader.js +2 -2
  223. package/ember_debug/utils/ember/runloop.js +2 -0
  224. package/ember_debug/utils/ember-object-names.js +2 -2
  225. package/ember_debug/utils/ember.js +9 -3
  226. package/ember_debug/utils/evented.js +1 -1
  227. package/ember_debug/utils/get-object-name.js +2 -2
  228. package/ember_debug/utils/rsvp.js +1 -0
  229. package/ember_debug/utils/type-check.js +5 -1
  230. package/ember_debug/vendor/startup-wrapper.js +4 -1
  231. package/ember_debug/view-debug.js +3 -2
  232. package/eslint.config.mjs +172 -0
  233. package/gulpfile.js +1 -1
  234. package/lib/ui/addon/components/drag-handle.hbs +4 -4
  235. package/lib/ui/addon/components/drag-handle.js +3 -1
  236. package/lib/ui/addon/components/empty-message.hbs +1 -1
  237. package/lib/ui/addon/components/error-page.hbs +3 -3
  238. package/lib/ui/addon/components/resizable-column.js +1 -1
  239. package/lib/ui/addon/components/toolbar-clear-button.hbs +1 -1
  240. package/lib/ui/addon/components/toolbar-reload-button.hbs +1 -1
  241. package/lib/ui/addon/components/toolbar-search-field.hbs +2 -2
  242. package/lib/ui/addon/styles/_disclosure-triangle.scss +3 -1
  243. package/lib/ui/addon/styles/_drag-handle.scss +7 -7
  244. package/lib/ui/addon/styles/_empty-message.scss +1 -1
  245. package/lib/ui/addon/styles/_error-page.scss +8 -7
  246. package/lib/ui/addon/styles/_list.scss +46 -45
  247. package/lib/ui/addon/styles/_nav.scss +29 -27
  248. package/lib/ui/addon/styles/_object-inspector-toggle.scss +5 -5
  249. package/lib/ui/addon/styles/_pill.scss +4 -4
  250. package/lib/ui/addon/styles/_send-to-console.scss +1 -1
  251. package/lib/ui/addon/styles/_split.scss +17 -20
  252. package/lib/ui/addon/styles/addon.scss +13 -13
  253. package/lib/ui/addon/styles/toolbar/_checkbox.scss +5 -5
  254. package/lib/ui/addon/styles/toolbar/_icon-button.scss +44 -25
  255. package/lib/ui/addon/styles/toolbar/_index.scss +6 -5
  256. package/lib/ui/addon/styles/toolbar/_radio.scss +10 -10
  257. package/lib/ui/addon/styles/toolbar/_search.scss +5 -3
  258. package/package.json +85 -86
  259. package/public/assets/svg/ellipsis.svg +3 -3
  260. package/public/assets/svg/nav-bug.svg +1 -1
  261. package/public/assets/svg/nav-components.svg +2 -2
  262. package/public/assets/svg/nav-container.svg +1 -1
  263. package/public/assets/svg/nav-data.svg +1 -1
  264. package/public/assets/svg/nav-deprecations.svg +3 -3
  265. package/public/assets/svg/nav-info.svg +3 -3
  266. package/public/assets/svg/nav-promises.svg +2 -2
  267. package/public/assets/svg/nav-render-performance.svg +2 -2
  268. package/public/assets/svg/nav-route-tree.svg +7 -7
  269. package/scripts/download-panes.js +1 -1
  270. package/skeletons/bookmarklet/load_inspector.js +30 -11
  271. package/skeletons/web-extension/background.js +26 -21
  272. package/skeletons/web-extension/boot.js +1 -1
  273. package/skeletons/web-extension/content-script.js +11 -11
  274. package/skeletons/web-extension/devtools.js +12 -3
  275. package/skeletons/web-extension/manifest.json +2 -2
  276. package/skeletons/web-extension/options.js +17 -12
  277. package/skeletons/web-extension/scripts/in-page-script.js +19 -13
  278. package/testem.js +0 -1
  279. package/tests/acceptance/app-picker-test.js +4 -4
  280. package/tests/acceptance/component-tree-test.js +43 -57
  281. package/tests/acceptance/container-test.js +0 -2
  282. package/tests/acceptance/data-test.js +8 -10
  283. package/tests/acceptance/deprecation-test.js +8 -12
  284. package/tests/acceptance/info-test.js +2 -2
  285. package/tests/acceptance/object-inspector-test.js +62 -110
  286. package/tests/acceptance/promise-test.js +1 -11
  287. package/tests/acceptance/render-tree-test.js +2 -2
  288. package/tests/acceptance/route-tree-test.js +12 -14
  289. package/tests/acceptance/whats-new-test.js +3 -3
  290. package/tests/ember_debug/container-debug-test.js +4 -4
  291. package/tests/ember_debug/deprecation-debug-test.js +8 -5
  292. package/tests/ember_debug/ember-debug-test.js +1 -4
  293. package/tests/ember_debug/object-inspector-test.js +44 -44
  294. package/tests/ember_debug/profile-manager-test.js +140 -165
  295. package/tests/ember_debug/profile-node-test.js +3 -3
  296. package/tests/ember_debug/promise-assembler-test.js +12 -9
  297. package/tests/ember_debug/promise-debug-test.js +5 -6
  298. package/tests/ember_debug/route-debug-test.js +8 -7
  299. package/tests/ember_debug/view-debug-test.js +179 -181
  300. package/tests/helpers/{index.js → index.ts} +6 -5
  301. package/tests/helpers/setup-ember-debug-test.js +14 -0
  302. package/tests/integration/injection-test.js +12 -13
  303. package/tests/test-adapter.js +15 -15
  304. package/tests/test-helper.js +6 -1
  305. package/tests/unit/check-current-route-test.js +0 -4
  306. package/tests/unit/resizable-columns-test.js +53 -51
  307. package/tests/unit/utils/parse-text-test.js +3 -3
  308. package/tests/unit/utils/search-match-test.js +5 -5
  309. package/tests/unit/utils/type-check-test.js +22 -0
  310. package/tsconfig.json +3 -1
  311. package/types/ember-inspector/index.d.ts +2 -1
  312. package/types/global.d.ts +1 -7
  313. package/.editorconfig +0 -19
  314. package/.ember-cli +0 -15
  315. package/.eslintignore +0 -33
  316. package/.eslintrc.js +0 -86
  317. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -30
  318. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  319. package/.github/dependabot.yml +0 -14
  320. package/.github/pull_request_template.md +0 -4
  321. package/.github/workflows/build.yml +0 -339
  322. package/.github/workflows/plan-release.yml +0 -83
  323. package/.github/workflows/publish.yml +0 -60
  324. package/.prettierignore +0 -25
  325. package/.prettierrc.js +0 -14
  326. package/.release-plan.json +0 -17
  327. package/.stylelintrc.js +0 -3
  328. package/.template-lintrc.js +0 -12
  329. package/.tool-versions +0 -2
  330. package/.watchmanconfig +0 -3
  331. package/app/components/.gitkeep +0 -0
  332. package/app/components/list-content.js +0 -130
  333. package/app/controllers/.gitkeep +0 -0
  334. package/app/controllers/promise-tree.js +0 -130
  335. package/app/helpers/.gitkeep +0 -0
  336. package/app/libs/promise-assembler.js +0 -169
  337. package/app/models/.gitkeep +0 -0
  338. package/app/routes/.gitkeep +0 -0
  339. package/app/routes/model-types.js +0 -47
  340. package/app/routes/promise-tree.js +0 -48
  341. package/app/routes/records.js +0 -55
  342. package/app/routes/render-tree.js +0 -66
  343. package/app/services/adapters/websocket.js +0 -31
  344. package/app/services/layout.js +0 -39
  345. package/app/services/port.js +0 -90
  346. package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
  347. package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
  348. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  349. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  350. package/dist/chrome/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
  351. package/dist/chrome/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
  352. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  353. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  354. package/dist/firefox/panes-3-16-0/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
  355. package/dist/firefox/panes-3-16-0/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
  356. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  357. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  358. package/dist/websocket/assets/chunk.143.143ca772b0b28102c74a.js +0 -28
  359. package/dist/websocket/assets/chunk.178.b50e140d1ed8777b583e.js +0 -9
  360. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  361. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  362. package/ember_debug/.eslintrc.js +0 -13
  363. package/tests/helpers/trigger-port.js +0 -6
  364. package/tests/unit/.gitkeep +0 -0
  365. /package/app/{app.js → app.ts} +0 -0
  366. /package/app/controllers/{info.js → info.ts} +0 -0
  367. /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
@@ -1,13 +1,13 @@
1
- @import 'disclosure-triangle';
2
- @import 'drag-handle';
3
- @import 'empty-message';
4
- @import 'error-page';
5
- @import 'list';
6
- @import 'nav';
7
- @import 'pill';
8
- @import 'send-to-console';
9
- @import 'goto-source';
10
- @import 'object-inspector-toggle';
11
- @import 'split';
12
- @import 'toolbar/index';
13
- @import 'warning';
1
+ @import "disclosure-triangle";
2
+ @import "drag-handle";
3
+ @import "empty-message";
4
+ @import "error-page";
5
+ @import "list";
6
+ @import "nav";
7
+ @import "pill";
8
+ @import "send-to-console";
9
+ @import "goto-source";
10
+ @import "object-inspector-toggle";
11
+ @import "split";
12
+ @import "toolbar/index";
13
+ @import "warning";
@@ -1,4 +1,4 @@
1
- .toolbar__checkbox {
1
+ .toolbar-checkbox {
2
2
  height: 100%;
3
3
  margin-left: 4px;
4
4
  margin-right: 4px;
@@ -6,24 +6,24 @@
6
6
  white-space: nowrap;
7
7
  }
8
8
 
9
- .toolbar__checkbox label {
9
+ .toolbar-checkbox label {
10
10
  display: block;
11
11
  height: 100%;
12
12
  line-height: var(--toolbar-height);
13
13
  }
14
14
 
15
- .toolbar__checkbox input {
15
+ .toolbar-checkbox input {
16
16
  margin: 0;
17
17
  }
18
18
 
19
19
  /*
20
20
  if first item in toolbar, create extra clickable space
21
21
  */
22
- .toolbar__checkbox:first-child {
22
+ .toolbar-checkbox:first-child {
23
23
  margin-left: 0;
24
24
  }
25
25
 
26
- .toolbar__checkbox:first-child label {
26
+ .toolbar-checkbox:first-child label {
27
27
  margin-left: 0;
28
28
  padding-left: 8px;
29
29
  }
@@ -1,4 +1,4 @@
1
- .toolbar__icon-button {
1
+ .toolbar-icon-button {
2
2
  align-items: center;
3
3
  background: transparent;
4
4
  border: 0 transparent none;
@@ -22,40 +22,59 @@
22
22
  &:active {
23
23
  transform: translate(1px, 1px);
24
24
  }
25
- }
26
-
27
25
 
28
- /*
26
+ /*
29
27
  SVG colors
30
- */
31
- .toolbar__icon-button {
32
- .svg-stroke { stroke: var(--base11); }
33
- .svg-fill { fill: var(--base11); }
28
+ */
34
29
 
35
- &:hover {
36
- .svg-stroke { stroke: var(--base13); }
37
- .svg-fill { fill: var(--base13); }
30
+ .svg-stroke {
31
+ stroke: var(--base11);
32
+ }
33
+
34
+ .svg-fill {
35
+ fill: var(--base11);
38
36
  }
39
- }
40
37
 
38
+ &:hover {
39
+ .svg-stroke {
40
+ stroke: var(--base13);
41
+ }
41
42
 
42
- /*
43
+ .svg-fill {
44
+ fill: var(--base13);
45
+ }
46
+ }
47
+
48
+ /*
43
49
  Modifier:
44
50
  .active (highlighted)
45
- */
46
- .toolbar__icon-button {
47
- &.active .svg-stroke { stroke: var(--focus); }
48
- &.active .svg-fill { fill: var(--focus); }
49
- }
51
+ */
52
+ &.active .svg-stroke {
53
+ stroke: var(--focus);
54
+ }
50
55
 
56
+ &.active .svg-fill {
57
+ fill: var(--focus);
58
+ }
51
59
 
52
- /*
60
+ /*
53
61
  Modifier
54
62
  .disabled
55
- */
56
- .toolbar__icon-button {
57
- &.disabled { pointer-events: none; }
58
- &.disabled:active { transform: none; }
59
- &.disabled .svg-stroke { stroke: var(--base05); }
60
- &.disabled .svg-fill { fill: var(--base05); }
63
+ */
64
+
65
+ &.disabled {
66
+ pointer-events: none;
67
+ }
68
+
69
+ &.disabled:active {
70
+ transform: none;
71
+ }
72
+
73
+ &.disabled .svg-stroke {
74
+ stroke: var(--base05);
75
+ }
76
+
77
+ &.disabled .svg-fill {
78
+ fill: var(--base05);
79
+ }
61
80
  }
@@ -17,13 +17,14 @@
17
17
  margin-left: 5px;
18
18
  margin-right: 5px;
19
19
  }
20
+
20
21
  .toolbar .goto-source {
21
22
  margin-left: 5px;
22
23
  margin-right: 5px;
23
24
  }
24
25
 
25
- @import 'checkbox';
26
- @import 'divider';
27
- @import 'icon-button';
28
- @import 'radio';
29
- @import 'search';
26
+ @import "checkbox";
27
+ @import "divider";
28
+ @import "icon-button";
29
+ @import "radio";
30
+ @import "search";
@@ -1,4 +1,4 @@
1
- .toolbar__radio {
1
+ .toolbar-radio {
2
2
  background: var(--base02);
3
3
  border: none;
4
4
  border-radius: 2px;
@@ -14,30 +14,30 @@
14
14
  vertical-align: middle;
15
15
  }
16
16
 
17
- .toolbar__radio:active,
18
- .toolbar__radio:hover,
19
- .toolbar__radio:focus,
20
- .toolbar__radio.active {
17
+ .toolbar-radio:active,
18
+ .toolbar-radio:hover,
19
+ .toolbar-radio:focus,
20
+ .toolbar-radio.active {
21
21
  outline: none;
22
22
  }
23
23
 
24
- .toolbar__radio--first {
24
+ .toolbar-radio-first {
25
25
  margin-left: 4px;
26
26
  }
27
27
 
28
- .toolbar__radio--last {
28
+ .toolbar-radio-last {
29
29
  margin-right: 4px;
30
30
  }
31
31
 
32
- .toolbar__radio:hover {
32
+ .toolbar-radio:hover {
33
33
  background: var(--base04);
34
34
  }
35
35
 
36
- .toolbar__radio:active {
36
+ .toolbar-radio:active {
37
37
  background: var(--base00);
38
38
  }
39
39
 
40
- .toolbar__radio.active {
40
+ .toolbar-radio.active {
41
41
  background: var(--focus);
42
42
  color: var(--focus-text);
43
43
  }
@@ -1,13 +1,15 @@
1
- .toolbar__search input {
1
+ .toolbar-search input {
2
2
  border: 1px solid var(--base05);
3
3
  height: calc(var(--toolbar-height) - 7px);
4
4
  width: 175px;
5
5
  }
6
6
 
7
- .toolbar__search-clear-button {
7
+ .toolbar-search-clear-button {
8
8
  top: 3px;
9
9
 
10
10
  svg {
11
- path { fill: var(--base11); }
11
+ path {
12
+ fill: var(--base11);
13
+ }
12
14
  }
13
15
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-inspector",
3
- "version": "4.13.1-alpha.2024.8.9+6e95d79",
3
+ "version": "4.13.1-alpha.2025.6.7+f3062c3",
4
4
  "description": "Extends developer tools to allow you to better inspect your Ember.js apps.",
5
5
  "repository": "https://github.com/emberjs/ember-inspector",
6
6
  "license": "MIT",
@@ -9,50 +9,40 @@
9
9
  "doc": "doc",
10
10
  "test": "tests"
11
11
  },
12
+ "dependencies": {
13
+ "got": "^11.8.6",
14
+ "rimraf": "^5.0.10",
15
+ "yauzl": "^2.10.0"
16
+ },
12
17
  "devDependencies": {
13
- "release-plan": "^0.8.0",
14
- "@babel/eslint-parser": "^7.16.0",
15
- "@babel/helper-call-delegate": "^7.12.13",
16
- "@babel/plugin-proposal-decorators": "^7.16.0",
18
+ "@babel/core": "^7.26.0",
19
+ "@babel/eslint-parser": "^7.25.9",
20
+ "@babel/plugin-proposal-decorators": "^7.25.9",
17
21
  "@ember/edition-utils": "^1.2.0",
18
22
  "@ember/legacy-built-in-components": "^0.4.2",
19
- "@ember/optional-features": "^2.0.0",
23
+ "@ember/optional-features": "^2.2.0",
20
24
  "@ember/render-modifiers": "^2.1.0",
21
- "@ember/string": "^3.1.1",
22
- "@ember/test-helpers": "^2.8.1",
25
+ "@ember/string": "^4.0.0",
26
+ "@ember/test-helpers": "^4.0.4",
27
+ "@eslint/js": "^9.17.0",
23
28
  "@glimmer/component": "^1.1.2",
24
29
  "@glimmer/tracking": "^1.1.2",
30
+ "@glint/environment-ember-loose": "^1.5.0",
31
+ "@glint/environment-ember-template-imports": "^1.5.0",
32
+ "@glint/template": "^1.5.0",
25
33
  "@html-next/vertical-collection": "^4.0.2",
26
- "@tsconfig/ember": "^3.0.0",
34
+ "@tsconfig/ember": "^3.0.8",
27
35
  "@types/chrome": "^0.0.250",
28
- "@types/ember": "^4.0.3",
29
- "@types/ember-qunit": "^6.1.1",
30
- "@types/ember-resolver": "^9.0.0",
31
- "@types/ember__application": "^4.0.5",
32
- "@types/ember__array": "^4.0.3",
33
- "@types/ember__component": "^4.0.12",
34
- "@types/ember__controller": "^4.0.4",
35
- "@types/ember__debug": "^4.0.3",
36
- "@types/ember__destroyable": "^4.0.1",
37
- "@types/ember__engine": "^4.0.4",
38
- "@types/ember__error": "^4.0.2",
39
- "@types/ember__object": "^4.0.5",
40
- "@types/ember__polyfills": "^4.0.1",
41
- "@types/ember__routing": "^4.0.12",
42
- "@types/ember__runloop": "^4.0.2",
43
- "@types/ember__service": "^4.0.2",
44
- "@types/ember__string": "^3.0.10",
45
- "@types/ember__template": "^4.0.1",
46
- "@types/ember__test": "^4.0.1",
47
- "@types/ember__test-helpers": "^2.9.1",
48
- "@types/ember__utils": "^4.0.2",
49
- "@types/qunit": "^2.19.4",
50
- "@types/rsvp": "^4.0.4",
36
+ "@types/eslint__js": "^8.42.3",
37
+ "@types/qunit": "^2.19.12",
38
+ "@types/rsvp": "^4.0.9",
39
+ "@typescript-eslint/eslint-plugin": "^8.18.2",
40
+ "@typescript-eslint/parser": "^8.18.2",
51
41
  "amd-name-resolver": "^1.3.1",
52
42
  "babel-plugin-module-resolver": "^4.1.0",
53
43
  "babel-plugin-transform-commonjs": "^1.1.6",
54
44
  "babel-plugin-transform-es2015-modules-amd": "^6.24.1",
55
- "backburner.js": "^2.7.0",
45
+ "backburner.js": "^2.8.0",
56
46
  "basiccontext": "^3.5.1",
57
47
  "broccoli-asset-rev": "^3.0.0",
58
48
  "broccoli-babel-transpiler": "^7.8.1",
@@ -63,76 +53,86 @@
63
53
  "broccoli-stew": "^3.0.0",
64
54
  "broccoli-string-replace": "^0.1.2",
65
55
  "codeclimate-test-reporter": "^0.5.1",
66
- "compare-versions": "^4.1.3",
67
- "concurrently": "^8.2.0",
56
+ "compare-versions": "^4.1.4",
57
+ "concurrently": "^9.1.0",
68
58
  "del": "^6.1.1",
69
- "ember-auto-import": "^2.6.3",
70
- "ember-cli": "~4.9.2",
71
- "ember-cli-app-version": "^6.0.1",
59
+ "ember-auto-import": "^2.10.0",
60
+ "ember-cli": "~6.1.0",
61
+ "ember-cli-app-version": "^7.0.0",
72
62
  "ember-cli-babel": "^8.2.0",
73
- "ember-cli-code-coverage": "^1.0.2",
74
- "ember-cli-dependency-checker": "^3.3.1",
75
- "ember-cli-deprecation-workflow": "^2.0.0",
76
- "ember-cli-htmlbars": "^6.1.1",
63
+ "ember-cli-clean-css": "^3.0.0",
64
+ "ember-cli-code-coverage": "^1.0.3",
65
+ "ember-cli-dependency-checker": "^3.3.3",
66
+ "ember-cli-deprecation-workflow": "^2.2.0",
67
+ "ember-cli-htmlbars": "^6.3.0",
77
68
  "ember-cli-inject-live-reload": "^2.1.0",
78
69
  "ember-cli-sass": "^11.0.1",
79
- "ember-cli-stylelint": "^4.0.0",
80
70
  "ember-cli-terser": "^4.0.2",
81
- "ember-cli-typescript": "^5.2.1",
71
+ "ember-cli-typescript": "^5.3.0",
82
72
  "ember-cli-version-checker": "^5.1.2",
83
- "ember-concurrency": "^3.0.0",
73
+ "ember-concurrency": "^3.1.1",
84
74
  "ember-decorators": "^6.1.1",
75
+ "ember-event-helpers": "^0.1.1",
85
76
  "ember-fetch": "^8.1.2",
86
77
  "ember-flatpickr": "^4.0.0",
87
78
  "ember-in-element-polyfill": "^1.0.1",
88
- "ember-load-initializers": "^2.1.2",
79
+ "ember-load-initializers": "^3.0.1",
89
80
  "ember-math-helpers": "^4.0.0",
90
- "ember-on-resize-modifier": "^1.0.0",
91
- "ember-qunit": "^6.1.1",
92
- "ember-resolver": "^10.0.0",
93
- "ember-router-service-refresh-polyfill": "^1.0.1",
94
- "ember-showdown": "^1.0.0-beta.1",
95
- "ember-sinon-qunit": "^7.1.4",
96
- "ember-source": "~4.12.0",
81
+ "ember-modifier": "^4.2.0",
82
+ "ember-on-resize-modifier": "^1.1.0",
83
+ "ember-qunit": "^8.1.1",
84
+ "ember-resolver": "^13.1.0",
85
+ "ember-router-service-refresh-polyfill": "^1.1.0",
86
+ "ember-showdown": "1.0.0-beta.1",
87
+ "ember-sinon-qunit": "^7.5.0",
88
+ "ember-source": "^5.0.0",
97
89
  "ember-source-channel-url": "^3.0.0",
98
- "ember-svg-jar": "^2.4.6",
99
- "ember-table": "^5.0.1",
100
- "ember-template-lint": "^5.2.0",
90
+ "ember-svg-jar": "^2.6.0",
91
+ "ember-table": "^5.0.6",
92
+ "ember-template-lint": "^6.0.0",
101
93
  "ember-test-selectors": "^6.0.0",
102
- "ember-truth-helpers": "^3.0.0",
94
+ "ember-truth-helpers": "^3.1.1",
103
95
  "ember-try": "^3.0.0",
104
96
  "ember-wormhole": "^0.6.0",
105
97
  "ensure-posix-path": "^1.1.1",
106
- "eslint": "^8.17.0",
107
- "eslint-config-prettier": "^8.5.0",
108
- "eslint-plugin-ember": "^11.2.1",
109
- "eslint-plugin-node": "^11.1.0",
110
- "eslint-plugin-prettier": "^4.2.1",
111
- "eslint-plugin-qunit": "^7.3.4",
98
+ "eslint": "^9.17.0",
99
+ "eslint-config-prettier": "^9.1.0",
100
+ "eslint-plugin-ember": "^12.3.3",
101
+ "eslint-plugin-n": "^17.15.1",
102
+ "eslint-plugin-prettier": "^5.2.1",
103
+ "eslint-plugin-qunit": "^8.1.2",
112
104
  "fstream": "^1.0.12",
113
- "got": "^11.8.2",
105
+ "globals": "^15.14.0",
114
106
  "gulp": "^4.0.2",
115
107
  "gulp-zip": "^5.1.0",
116
108
  "loader.js": "^4.7.0",
117
109
  "normalize.css": "8.0.1",
118
- "pretender": "^3.4.3",
119
- "prettier": "^2.8.1",
120
- "qunit": "^2.19.3",
121
- "qunit-dom": "^3.0.0",
122
- "release-it": "^15.6.0",
110
+ "pretender": "^3.4.7",
111
+ "prettier": "^3.4.2",
112
+ "prettier-plugin-ember-template-tag": "^2.0.4",
113
+ "qunit": "^2.23.1",
114
+ "qunit-dom": "^3.4.0",
115
+ "release-it": "^15.11.0",
123
116
  "release-it-lerna-changelog": "^5.0.0",
124
- "rimraf": "^5.0.1",
125
- "sass": "^1.63.6",
126
- "source-map-js": "^1.0.2",
127
- "stylelint": "^15.10.1",
128
- "stylelint-config-ship-shape": "^0.7.0",
117
+ "release-plan": "^0.16.0",
118
+ "sass": "^1.79.4",
119
+ "source-map-js": "^1.2.1",
120
+ "stylelint": "^16.13.2",
121
+ "stylelint-config-standard-scss": "^14.0.0",
122
+ "stylelint-prettier": "^5.0.2",
123
+ "tracked-built-ins": "^3.4.0",
129
124
  "tracked-toolbox": "^2.0.0",
130
- "typescript": "^5.1.6",
131
- "webpack": "^5.88.1",
132
- "yauzl": "^2.10.0"
125
+ "typescript": "^5.7.2",
126
+ "typescript-eslint": "^8.18.2",
127
+ "webpack": "^5.97.1"
133
128
  },
134
129
  "engines": {
135
- "node": "14.* || 16.* || >= 18"
130
+ "node": ">= 18",
131
+ "pnpm": "^9.0.0"
132
+ },
133
+ "volta": {
134
+ "node": "18.20.4",
135
+ "pnpm": "9.12.1"
136
136
  },
137
137
  "publishConfig": {
138
138
  "registry": "https://registry.npmjs.org"
@@ -172,25 +172,24 @@
172
172
  "publish": false
173
173
  }
174
174
  },
175
- "volta": {
176
- "node": "18.18.2",
177
- "pnpm": "8.10.2"
178
- },
179
175
  "scripts": {
180
176
  "build": "ember build",
181
177
  "build:production": "EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && gulp compress:chrome && gulp compress:firefox && gulp clean-tmp",
182
178
  "changelog": "github_changelog_generator -u emberjs -p ember-inspector --since-tag v3.8.0",
183
179
  "compress:panes": "gulp compress:chrome-pane && gulp compress:firefox-pane && gulp compress:bookmarklet-pane",
184
- "lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
185
- "lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
180
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
181
+ "lint:css": "stylelint \"**/*.scss\"",
182
+ "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
183
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto",
186
184
  "lint:hbs": "ember-template-lint .",
187
185
  "lint:hbs:fix": "ember-template-lint . --fix",
188
186
  "lint:js": "eslint . --cache",
187
+ "lint:js:fix": "eslint . --fix",
188
+ "lint:types": "tsc --noEmit",
189
189
  "lock-version": "pnpm build:production && pnpm compress:panes",
190
190
  "serve:bookmarklet": "ember serve --port 9191",
191
- "lint:js:fix": "eslint . --fix",
192
191
  "start": "ember serve",
193
- "test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
192
+ "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto",
194
193
  "test:ember": "COVERAGE=true ember test",
195
194
  "watch": "ember build --watch"
196
195
  }
@@ -1,5 +1,5 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 20 20" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg">
2
- <circle class="nav__icon-stroke" cx="3.75" cy="10" r="1.25" />
3
- <circle class="nav__icon-stroke" cx="10" cy="10" r="1.25" />
4
- <circle class="nav__icon-stroke" cx="16.25" cy="10" r="1.25" />
2
+ <circle class="nav-icon-stroke" cx="3.75" cy="10" r="1.25" />
3
+ <circle class="nav-icon-stroke" cx="10" cy="10" r="1.25" />
4
+ <circle class="nav-icon-stroke" cx="16.25" cy="10" r="1.25" />
5
5
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg">
2
- <path class="nav__icon-stroke" d="M24.4794 9.4926V8.2105C24.4794 7.14209 24.1768 6.07367 23.5716 5.00525C23.1681 3.93683 22.4621 3.18894 21.4534 2.76158C20.4447 2.12053 19.3352 1.8 18.1248 1.8C17.1161 1.8 16.1075 2.12053 15.0988 2.76158C14.2919 3.18894 13.5858 3.93683 12.9806 5.00525C12.3754 6.07367 12.0728 7.14209 12.0728 8.2105V9.4926H10.2572L6.92858 5.96683L5.71818 7.24892L9.04678 10.7747V11.0952C8.23985 13.0184 7.83638 15.0484 7.83638 17.1852V18.7878H3.59998V20.711H8.13898C8.54245 22.8478 9.24852 24.7709 10.2572 26.4804L6.02078 30.9678L7.53378 32.2499L11.4676 28.083C12.4763 29.3651 13.4849 30.3267 14.4936 30.9678C15.704 31.3951 16.9144 31.6088 18.1248 31.6088C19.5369 31.6088 20.7473 31.3951 21.756 30.9678C22.9664 30.3267 24.0759 29.472 25.0846 28.4036L25.3872 28.083L29.321 32.5704L30.5314 30.9678L26.295 26.4804C27.3037 24.7709 28.0097 22.8478 28.4132 20.711H32.9522V18.7878H28.7158V17.1852C28.7158 15.0484 28.4132 12.9115 27.808 10.7747H27.5054L30.834 7.24892L29.6236 5.96683L26.295 9.4926H24.4794ZM13.8884 9.4926V8.2105C13.8884 6.9284 14.2919 5.85998 15.0988 5.00525C16.1075 4.15052 17.217 3.72315 18.4274 3.72315C19.6378 3.72315 20.6465 4.15052 21.4534 5.00525C22.2603 5.85998 22.6638 6.9284 22.6638 8.2105V9.4926H13.8884ZM25.9924 11.4157V11.7363C26.5976 13.4457 26.9002 15.262 26.9002 17.1852C26.9002 19.1083 26.6985 20.8178 26.295 22.3136C25.8915 23.8094 25.1855 25.1983 24.1768 26.4804C23.3699 27.5488 22.4621 28.4036 21.4534 29.0446C20.4447 29.6857 19.3352 30.0062 18.1248 30.0062C17.1161 30.0062 16.1075 29.6857 15.0988 29.0446C14.0901 28.4036 13.1823 27.5488 12.3754 26.4804C11.5685 25.1983 10.8624 23.8094 10.2572 22.3136C9.85372 20.8178 9.65199 19.1083 9.65199 17.1852C9.65199 15.262 9.95459 13.4457 10.5598 11.7363V11.4157H25.9924Z" fill="#666666"/>
2
+ <path class="nav-icon-stroke" d="M24.4794 9.4926V8.2105C24.4794 7.14209 24.1768 6.07367 23.5716 5.00525C23.1681 3.93683 22.4621 3.18894 21.4534 2.76158C20.4447 2.12053 19.3352 1.8 18.1248 1.8C17.1161 1.8 16.1075 2.12053 15.0988 2.76158C14.2919 3.18894 13.5858 3.93683 12.9806 5.00525C12.3754 6.07367 12.0728 7.14209 12.0728 8.2105V9.4926H10.2572L6.92858 5.96683L5.71818 7.24892L9.04678 10.7747V11.0952C8.23985 13.0184 7.83638 15.0484 7.83638 17.1852V18.7878H3.59998V20.711H8.13898C8.54245 22.8478 9.24852 24.7709 10.2572 26.4804L6.02078 30.9678L7.53378 32.2499L11.4676 28.083C12.4763 29.3651 13.4849 30.3267 14.4936 30.9678C15.704 31.3951 16.9144 31.6088 18.1248 31.6088C19.5369 31.6088 20.7473 31.3951 21.756 30.9678C22.9664 30.3267 24.0759 29.472 25.0846 28.4036L25.3872 28.083L29.321 32.5704L30.5314 30.9678L26.295 26.4804C27.3037 24.7709 28.0097 22.8478 28.4132 20.711H32.9522V18.7878H28.7158V17.1852C28.7158 15.0484 28.4132 12.9115 27.808 10.7747H27.5054L30.834 7.24892L29.6236 5.96683L26.295 9.4926H24.4794ZM13.8884 9.4926V8.2105C13.8884 6.9284 14.2919 5.85998 15.0988 5.00525C16.1075 4.15052 17.217 3.72315 18.4274 3.72315C19.6378 3.72315 20.6465 4.15052 21.4534 5.00525C22.2603 5.85998 22.6638 6.9284 22.6638 8.2105V9.4926H13.8884ZM25.9924 11.4157V11.7363C26.5976 13.4457 26.9002 15.262 26.9002 17.1852C26.9002 19.1083 26.6985 20.8178 26.295 22.3136C25.8915 23.8094 25.1855 25.1983 24.1768 26.4804C23.3699 27.5488 22.4621 28.4036 21.4534 29.0446C20.4447 29.6857 19.3352 30.0062 18.1248 30.0062C17.1161 30.0062 16.1075 29.6857 15.0988 29.0446C14.0901 28.4036 13.1823 27.5488 12.3754 26.4804C11.5685 25.1983 10.8624 23.8094 10.2572 22.3136C9.85372 20.8178 9.65199 19.1083 9.65199 17.1852C9.65199 15.262 9.95459 13.4457 10.5598 11.7363V11.4157H25.9924Z" fill="#666666"/>
3
3
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg version="1.1" width="36" height="36" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <rect class="nav__icon-stroke" x="12" y="11" width="2" height="19"></rect>
3
- <path class="nav__icon-stroke" d="M32,4H4A2,2,0,0,0,2,6V30a2,2,0,0,0,2,2H32a2,2,0,0,0,2-2V6A2,2,0,0,0,32,4ZM4,6H32v4.2H4ZM4,30V11.8H32V30Z"></path>
2
+ <rect class="nav-icon-stroke" x="12" y="11" width="2" height="19"></rect>
3
+ <path class="nav-icon-stroke" d="M32,4H4A2,2,0,0,0,2,6V30a2,2,0,0,0,2,2H32a2,2,0,0,0,2-2V6A2,2,0,0,0,32,4ZM4,6H32v4.2H4ZM4,30V11.8H32V30Z"></path>
4
4
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg">
2
- <path class="nav__icon-stroke" d="M32.43,8.35l-13-6.21a1,1,0,0,0-.87,0l-15,7.24a1,1,0,0,0-.57.9V26.83a1,1,0,0,0,.6.92l13,6.19a1,1,0,0,0,.87,0l15-7.24a1,1,0,0,0,.57-.9V9.25A1,1,0,0,0,32.43,8.35ZM19,4.15,29.93,9.37l-5.05,2.44L14.21,6.46ZM17,15.64,6,10.41l5.9-2.85L22.6,12.91ZM5,12.13,16,17.4V31.46L5,26.2ZM18,31.45V17.36l13-6.29v14.1Z"></path>
2
+ <path class="nav-icon-stroke" d="M32.43,8.35l-13-6.21a1,1,0,0,0-.87,0l-15,7.24a1,1,0,0,0-.57.9V26.83a1,1,0,0,0,.6.92l13,6.19a1,1,0,0,0,.87,0l15-7.24a1,1,0,0,0,.57-.9V9.25A1,1,0,0,0,32.43,8.35ZM19,4.15,29.93,9.37l-5.05,2.44L14.21,6.46ZM17,15.64,6,10.41l5.9-2.85L22.6,12.91ZM5,12.13,16,17.4V31.46L5,26.2ZM18,31.45V17.36l13-6.29v14.1Z"></path>
3
3
  </svg>
@@ -1,3 +1,3 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <path class="nav__icon-stroke" d="M33,6.69h0c-.18-3.41-9.47-4.33-15-4.33S3,3.29,3,6.78V29.37c0,3.49,9.43,4.43,15,4.43s15-.93,15-4.43V6.78s0,0,0,0S33,6.7,33,6.69Zm-2,7.56c-.33.86-5.06,2.45-13,2.45A37.45,37.45,0,0,1,7,15.34v2.08A43.32,43.32,0,0,0,18,18.7c4,0,9.93-.48,13-2v5.17c-.33.86-5.06,2.45-13,2.45A37.45,37.45,0,0,1,7,22.92V25a43.32,43.32,0,0,0,11,1.28c4,0,9.93-.48,13-2v5.1c-.35.86-5.08,2.45-13,2.45S5.3,30.2,5,29.37V6.82C5.3,6,10,4.36,18,4.36c7.77,0,12.46,1.53,13,2.37-.52.87-5.21,2.39-13,2.39A37.6,37.6,0,0,1,7,7.76V9.85a43.53,43.53,0,0,0,11,1.27c4,0,9.93-.48,13-2Z"></path>
2
+ <path class="nav-icon-stroke" d="M33,6.69h0c-.18-3.41-9.47-4.33-15-4.33S3,3.29,3,6.78V29.37c0,3.49,9.43,4.43,15,4.43s15-.93,15-4.43V6.78s0,0,0,0S33,6.7,33,6.69Zm-2,7.56c-.33.86-5.06,2.45-13,2.45A37.45,37.45,0,0,1,7,15.34v2.08A43.32,43.32,0,0,0,18,18.7c4,0,9.93-.48,13-2v5.17c-.33.86-5.06,2.45-13,2.45A37.45,37.45,0,0,1,7,22.92V25a43.32,43.32,0,0,0,11,1.28c4,0,9.93-.48,13-2v5.1c-.35.86-5.08,2.45-13,2.45S5.3,30.2,5,29.37V6.82C5.3,6,10,4.36,18,4.36c7.77,0,12.46,1.53,13,2.37-.52.87-5.21,2.39-13,2.39A37.6,37.6,0,0,1,7,7.76V9.85a43.53,43.53,0,0,0,11,1.27c4,0,9.93-.48,13-2Z"></path>
3
3
  </svg>
@@ -1,5 +1,5 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <circle class="nav__icon-stroke" cx="18" cy="26.06" r="1.33"></circle>
3
- <path class="nav__icon-stroke" d="M18,22.61a1,1,0,0,1-1-1v-12a1,1,0,1,1,2,0v12A1,1,0,0,1,18,22.61Z"></path>
4
- <path class="nav__icon-stroke" d="M15.0620782,1.681196 C15.6298819,0.649266355 16.7109091,0.0102219396 17.885,0.0102219396 C19.0590909,0.0102219396 20.1401181,0.649266355 20.7086433,1.68252129 L34.598644,27.2425225 C35.1407746,28.2401397 35.1174345,29.4495373 34.5372161,30.4254943 C33.9569977,31.4014514 32.905671,31.9996984 31.77,32 L4.02239323,31.9997492 C2.87409009,32.0254699 1.79902843,31.4375753 1.20106335,30.4569126 C0.603098265,29.4762499 0.572777899,28.2513179 1.12207818,27.241196 L15.0620782,1.681196 Z M2.87850767,28.1977282 C2.67060966,28.5800376 2.6820975,29.0441423 2.9086557,29.4156977 C3.1352139,29.7872532 3.5425354,30.0099959 4,30 L31.7697344,30 C32.1999191,29.9998858 32.5982478,29.7732208 32.8180821,29.4034482 C33.0379164,29.0336757 33.0467595,28.5754567 32.8413567,28.1974787 L18.9538739,2.64208195 C18.7394236,2.25234436 18.3298419,2.01022194 17.885,2.01022194 C17.4406889,2.01022194 17.0315538,2.25176692 16.8168946,2.64068753 L2.87850767,28.1977282 Z"></path>
2
+ <circle class="nav-icon-stroke" cx="18" cy="26.06" r="1.33"></circle>
3
+ <path class="nav-icon-stroke" d="M18,22.61a1,1,0,0,1-1-1v-12a1,1,0,1,1,2,0v12A1,1,0,0,1,18,22.61Z"></path>
4
+ <path class="nav-icon-stroke" d="M15.0620782,1.681196 C15.6298819,0.649266355 16.7109091,0.0102219396 17.885,0.0102219396 C19.0590909,0.0102219396 20.1401181,0.649266355 20.7086433,1.68252129 L34.598644,27.2425225 C35.1407746,28.2401397 35.1174345,29.4495373 34.5372161,30.4254943 C33.9569977,31.4014514 32.905671,31.9996984 31.77,32 L4.02239323,31.9997492 C2.87409009,32.0254699 1.79902843,31.4375753 1.20106335,30.4569126 C0.603098265,29.4762499 0.572777899,28.2513179 1.12207818,27.241196 L15.0620782,1.681196 Z M2.87850767,28.1977282 C2.67060966,28.5800376 2.6820975,29.0441423 2.9086557,29.4156977 C3.1352139,29.7872532 3.5425354,30.0099959 4,30 L31.7697344,30 C32.1999191,29.9998858 32.5982478,29.7732208 32.8180821,29.4034482 C33.0379164,29.0336757 33.0467595,28.5754567 32.8413567,28.1974787 L18.9538739,2.64208195 C18.7394236,2.25234436 18.3298419,2.01022194 17.885,2.01022194 C17.4406889,2.01022194 17.0315538,2.25176692 16.8168946,2.64068753 L2.87850767,28.1977282 Z"></path>
5
5
  </svg>
@@ -1,5 +1,5 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <circle class="nav__icon-stroke" cx="17.97" cy="10.45" r="1.4"></circle>
3
- <path class="nav__icon-stroke" d="M21,25H19V14.1H16a1,1,0,0,0,0,2h1V25H15a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z"></path>
4
- <path class="nav__icon-stroke" d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"></path>
2
+ <circle class="nav-icon-stroke" cx="17.97" cy="10.45" r="1.4"></circle>
3
+ <path class="nav-icon-stroke" d="M21,25H19V14.1H16a1,1,0,0,0,0,2h1V25H15a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z"></path>
4
+ <path class="nav-icon-stroke" d="M18,34A16,16,0,1,1,34,18,16,16,0,0,1,18,34ZM18,4A14,14,0,1,0,32,18,14,14,0,0,0,18,4Z"></path>
5
5
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <path class="nav__icon-stroke" d="M18,9.83a1,1,0,0,0-1,1v8.72l5.9,4A1,1,0,0,0,24,21.88l-5-3.39V10.83A1,1,0,0,0,18,9.83Z"></path>
3
- <path class="nav__icon-stroke promises-icon-circle" d="M18,2A16.09,16.09,0,0,0,4,10.26V5.2a1,1,0,0,0-2,0V14h8.8a1,1,0,0,0,0-2H5.35A14,14,0,1,1,8.58,28.35a1,1,0,0,0-1.35,1.48A16,16,0,1,0,18,2Z"></path>
2
+ <path class="nav-icon-stroke" d="M18,9.83a1,1,0,0,0-1,1v8.72l5.9,4A1,1,0,0,0,24,21.88l-5-3.39V10.83A1,1,0,0,0,18,9.83Z"></path>
3
+ <path class="nav-icon-stroke promises-icon-circle" d="M18,2A16.09,16.09,0,0,0,4,10.26V5.2a1,1,0,0,0-2,0V14h8.8a1,1,0,0,0,0-2H5.35A14,14,0,1,1,8.58,28.35a1,1,0,0,0-1.35,1.48A16,16,0,1,0,18,2Z"></path>
4
4
  </svg>
@@ -1,4 +1,4 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <path class="nav__icon-stroke" d="M25.18,12.32l-5.91,5.81a3,3,0,1,0,1.41,1.42l5.92-5.81Z"></path>
3
- <path class="nav__icon-stroke" d="M18,4.25A16.49,16.49,0,0,0,5.4,31.4l.3.35H30.3l.3-.35A16.49,16.49,0,0,0,18,4.25Zm11.34,25.5H6.66a14.43,14.43,0,0,1-3.11-7.84H7v-2H3.55A14.41,14.41,0,0,1,7,11.29l2.45,2.45,1.41-1.41L8.43,9.87A14.41,14.41,0,0,1,17,6.29v3.5h2V6.3a14.47,14.47,0,0,1,13.4,13.61H28.92v2h3.53A14.43,14.43,0,0,1,29.34,29.75Z"></path>
2
+ <path class="nav-icon-stroke" d="M25.18,12.32l-5.91,5.81a3,3,0,1,0,1.41,1.42l5.92-5.81Z"></path>
3
+ <path class="nav-icon-stroke" d="M18,4.25A16.49,16.49,0,0,0,5.4,31.4l.3.35H30.3l.3-.35A16.49,16.49,0,0,0,18,4.25Zm11.34,25.5H6.66a14.43,14.43,0,0,1-3.11-7.84H7v-2H3.55A14.41,14.41,0,0,1,7,11.29l2.45,2.45,1.41-1.41L8.43,9.87A14.41,14.41,0,0,1,17,6.29v3.5h2V6.3a14.47,14.47,0,0,1,13.4,13.61H28.92v2h3.53A14.43,14.43,0,0,1,29.34,29.75Z"></path>
4
4
  </svg>
@@ -1,9 +1,9 @@
1
1
  <svg aria-hidden="true" version="1.1" width="20" height="20" viewBox="0 0 36 36" preserveAspectRatio="xMidYMid meet" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
- <path class="nav__icon-stroke" d="M27,22V14a2,2,0,0,0-2-2H11a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H25A2,2,0,0,0,27,22ZM11,14H25v8H11Z"></path>
3
- <rect class="nav__icon-stroke" x="19" y="6" width="4" height="2"></rect>
4
- <rect class="nav__icon-stroke" x="25.01" y="6" width="1.97" height="2"></rect>
5
- <path class="nav__icon-stroke" d="M5.8,8H16.87V6h-11L7.78,4.08a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L2,7,6.37,11.4a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41Z"></path>
6
- <path class="nav__icon-stroke" d="M29.61,24.68a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42L30.1,28H19v2H30.2l-2,2a1,1,0,0,0,0,1.41,1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29L34,29.05Z"></path>
7
- <rect class="nav__icon-stroke" x="13" y="28" width="4" height="2"></rect>
8
- <rect class="nav__icon-stroke" x="9" y="28" width="1.97" height="2"></rect>
2
+ <path class="nav-icon-stroke" d="M27,22V14a2,2,0,0,0-2-2H11a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H25A2,2,0,0,0,27,22ZM11,14H25v8H11Z"></path>
3
+ <rect class="nav-icon-stroke" x="19" y="6" width="4" height="2"></rect>
4
+ <rect class="nav-icon-stroke" x="25.01" y="6" width="1.97" height="2"></rect>
5
+ <path class="nav-icon-stroke" d="M5.8,8H16.87V6h-11L7.78,4.08a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L2,7,6.37,11.4a1,1,0,0,0,1.41,0,1,1,0,0,0,0-1.41Z"></path>
6
+ <path class="nav-icon-stroke" d="M29.61,24.68a1,1,0,0,0-1.41,0,1,1,0,0,0,0,1.42L30.1,28H19v2H30.2l-2,2a1,1,0,0,0,0,1.41,1,1,0,0,0,.7.29,1,1,0,0,0,.71-.29L34,29.05Z"></path>
7
+ <rect class="nav-icon-stroke" x="13" y="28" width="4" height="2"></rect>
8
+ <rect class="nav-icon-stroke" x="9" y="28" width="1.97" height="2"></rect>
9
9
  </svg>
@@ -40,7 +40,7 @@ async function downloadPane(paneFolder, dist) {
40
40
  `https://github.com/emberjs/ember-inspector/blob/panes/${paneFolder}/${dist}.zip?raw=true`,
41
41
  {
42
42
  responseType: 'buffer',
43
- }
43
+ },
44
44
  );
45
45
 
46
46
  await unzip(response.body, `dist_prev/production/${dist}/${paneFolder}`);