ember-inspector 4.13.1 → 4.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (564) hide show
  1. package/.ember-cli +1 -9
  2. package/.github/workflows/build.yml +33 -112
  3. package/.github/workflows/plan-release.yml +26 -48
  4. package/.github/workflows/publish.yml +129 -31
  5. package/.prettierignore +2 -13
  6. package/.prettierrc.js +10 -4
  7. package/.release-plan.json +13 -4
  8. package/.stylelintignore +8 -0
  9. package/.stylelintrc.js +10 -1
  10. package/.template-lintrc.js +2 -1
  11. package/.tool-versions +2 -2
  12. package/.watchmanconfig +1 -1
  13. package/CHANGELOG.md +137 -0
  14. package/DEVELOPMENT.md +50 -0
  15. package/PRIVACY.md +3 -0
  16. package/README.md +14 -50
  17. package/RELEASE.md +15 -50
  18. package/app/components/app-picker.hbs +2 -2
  19. package/app/components/component-tree-item.hbs +14 -14
  20. package/app/components/component-tree-toolbar.hbs +17 -3
  21. package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
  22. package/app/components/deprecation-item-source.hbs +1 -1
  23. package/app/components/deprecation-item.hbs +1 -1
  24. package/app/components/deprecations-toolbar.hbs +1 -1
  25. package/app/components/item-types.hbs +7 -7
  26. package/app/components/list-cell.hbs +3 -3
  27. package/app/components/list-content.hbs +4 -3
  28. package/app/components/list-content.ts +96 -0
  29. package/app/components/list.hbs +3 -3
  30. package/app/components/list.js +7 -7
  31. package/app/components/model-types-toolbar.hbs +3 -3
  32. package/app/components/object-inspector/component-parents.hbs +33 -0
  33. package/app/components/object-inspector/component-parents.js +43 -0
  34. package/app/components/object-inspector/dependent-keys.hbs +4 -4
  35. package/app/components/object-inspector/errors.hbs +4 -4
  36. package/app/components/object-inspector/properties-all.hbs +1 -1
  37. package/app/components/object-inspector/properties-base.js +2 -0
  38. package/app/components/object-inspector/properties-grouped.hbs +5 -5
  39. package/app/components/object-inspector/property.hbs +36 -34
  40. package/app/components/object-inspector/property.ts +34 -17
  41. package/app/components/object-inspector/sort-properties.js +12 -4
  42. package/app/components/object-inspector/toggle.hbs +9 -0
  43. package/app/components/object-inspector/toggle.js +6 -0
  44. package/app/components/object-inspector.hbs +11 -9
  45. package/app/components/object-inspector.js +1 -1
  46. package/app/components/promise-item.hbs +11 -11
  47. package/app/components/promise-item.js +8 -6
  48. package/app/components/promise-tree-toolbar.hbs +5 -5
  49. package/app/components/records-toolbar.hbs +2 -2
  50. package/app/components/render-item.hbs +4 -4
  51. package/app/components/render-item.ts +12 -9
  52. package/app/components/render-tree-toolbar.hbs +1 -1
  53. package/app/components/route-cell-name.hbs +1 -1
  54. package/app/components/route-cell-name.js +3 -2
  55. package/app/components/route-tree-toolbar.hbs +2 -2
  56. package/app/components/scroll-container.js +2 -0
  57. package/app/components/side-nav.hbs +5 -5
  58. package/app/components/side-nav.js +1 -1
  59. package/{lib/ui/addon/components → app/components/ui}/drag-handle.hbs +4 -4
  60. package/{lib/ui/addon/components → app/components/ui}/drag-handle.js +3 -1
  61. package/{lib/ui/addon/components → app/components/ui}/empty-message.hbs +1 -1
  62. package/{lib/ui/addon/components → app/components/ui}/error-page.hbs +3 -3
  63. package/{lib/ui/addon/components → app/components/ui}/resizable-column.js +1 -1
  64. package/{lib/ui/addon/components → app/components/ui}/toolbar-clear-button.hbs +1 -1
  65. package/{lib/ui/addon/components → app/components/ui}/toolbar-reload-button.hbs +1 -1
  66. package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.hbs +2 -2
  67. package/app/computed/{debounce.js → debounce.ts} +7 -5
  68. package/app/config/environment.d.ts +5 -2
  69. package/app/controllers/app-config.js +1 -0
  70. package/app/controllers/application.js +36 -71
  71. package/app/controllers/component-tree.js +26 -7
  72. package/app/controllers/container-type.js +2 -1
  73. package/app/controllers/container-types/{index.js → index.ts} +5 -2
  74. package/app/controllers/container-types.js +3 -6
  75. package/app/controllers/deprecations.js +16 -11
  76. package/app/controllers/libraries.js +1 -0
  77. package/app/controllers/model-types.js +7 -13
  78. package/app/controllers/promise-tree.ts +149 -0
  79. package/app/controllers/records.js +18 -26
  80. package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
  81. package/app/controllers/route-tree.js +7 -5
  82. package/app/helpers/build-style.js +1 -1
  83. package/app/index.html +1 -19
  84. package/app/initializers/setup.js +1 -1
  85. package/app/libs/promise-assembler.ts +249 -0
  86. package/app/libs/resizable-columns.js +10 -10
  87. package/app/models/{promise.js → promise.ts} +72 -69
  88. package/app/{router.js → router.ts} +1 -1
  89. package/app/routes/app-detected.js +3 -5
  90. package/app/routes/application.js +9 -13
  91. package/app/routes/deprecations.js +7 -16
  92. package/app/routes/launch.js +2 -1
  93. package/app/routes/libraries.js +2 -1
  94. package/app/routes/model-type.js +2 -3
  95. package/app/routes/model-types.ts +57 -0
  96. package/app/routes/promise-tree.ts +63 -0
  97. package/app/routes/records.ts +78 -0
  98. package/app/routes/render-tree.ts +93 -0
  99. package/app/routes/route-tree.js +0 -1
  100. package/app/routes/{tab.js → tab.ts} +9 -2
  101. package/app/routes/whats-new.js +6 -4
  102. package/app/services/adapters/{basic.js → basic.ts} +36 -30
  103. package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
  104. package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
  105. package/app/services/adapters/{web-extension.js → web-extension.ts} +46 -46
  106. package/app/services/adapters/websocket.ts +40 -0
  107. package/app/services/layout.ts +124 -0
  108. package/app/services/port.ts +195 -0
  109. package/app/services/storage/{local.js → local.ts} +7 -20
  110. package/app/services/storage/{memory.js → memory.ts} +6 -21
  111. package/app/services/{storage.js → storage.ts} +25 -23
  112. package/app/styles/app.scss +1 -0
  113. package/app/styles/base.scss +6 -2
  114. package/app/styles/colors.scss +33 -31
  115. package/app/styles/component_tree.scss +56 -51
  116. package/app/styles/dropdown.scss +2 -2
  117. package/app/styles/ember-table.scss +3 -3
  118. package/app/styles/mixin.scss +26 -26
  119. package/app/styles/object_inspector.scss +30 -21
  120. package/{lib/ui/addon/styles → app/styles/ui}/_disclosure-triangle.scss +3 -1
  121. package/{lib/ui/addon/styles → app/styles/ui}/_drag-handle.scss +7 -7
  122. package/{lib/ui/addon/styles → app/styles/ui}/_empty-message.scss +1 -1
  123. package/{lib/ui/addon/styles → app/styles/ui}/_error-page.scss +8 -7
  124. package/{lib/ui/addon/styles → app/styles/ui}/_list.scss +46 -45
  125. package/{lib/ui/addon/styles → app/styles/ui}/_nav.scss +29 -27
  126. package/app/styles/ui/_object-inspector-toggle.scss +4 -0
  127. package/{lib/ui/addon/styles → app/styles/ui}/_pill.scss +4 -4
  128. package/{lib/ui/addon/styles → app/styles/ui}/_send-to-console.scss +1 -1
  129. package/{lib/ui/addon/styles → app/styles/ui}/_split.scss +26 -20
  130. package/app/styles/ui/_ui.scss +13 -0
  131. package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_checkbox.scss +5 -5
  132. package/app/styles/ui/toolbar/_icon-button.scss +80 -0
  133. package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_index.scss +6 -5
  134. package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_radio.scss +10 -10
  135. package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_search.scss +5 -3
  136. package/app/styles/utils.scss +408 -122
  137. package/app/templates/application.hbs +22 -19
  138. package/app/templates/component-tree.hbs +4 -1
  139. package/app/templates/deprecations.hbs +2 -3
  140. package/app/templates/info.hbs +10 -10
  141. package/app/templates/promise-tree.hbs +1 -1
  142. package/app/templates/render-tree.hbs +1 -1
  143. package/app/templates/route-tree.hbs +1 -1
  144. package/app/utils/escape-reg-exp.ts +3 -2
  145. package/app/utils/nullish.ts +7 -0
  146. package/app/utils/parse-text.ts +4 -5
  147. package/app/utils/truncate.js +0 -1
  148. package/config/ember-cli-update.json +5 -3
  149. package/config/ember-try.js +117 -72
  150. package/config/environment.js +1 -1
  151. package/config/optional-features.json +2 -1
  152. package/dist/bookmarklet/load_inspector.js +31 -11
  153. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  154. package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  155. package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
  156. package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
  157. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +997 -156
  158. package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +560 -613
  159. package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  160. package/dist/bookmarklet/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
  161. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  162. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  163. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  164. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  165. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  166. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  167. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  168. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  169. package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  170. package/dist/bookmarklet/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
  171. package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +4 -841
  172. package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +4277 -5152
  173. package/dist/bookmarklet/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
  174. package/dist/bookmarklet/panes-3-16-0/basic-B1dkgN3d.js +149 -0
  175. package/dist/bookmarklet/panes-3-16-0/basic-debug.js +10 -0
  176. package/dist/bookmarklet/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
  177. package/dist/bookmarklet/panes-3-16-0/bookmarklet-debug.js +10 -0
  178. package/dist/bookmarklet/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
  179. package/dist/bookmarklet/panes-3-16-0/chrome-debug.js +10 -0
  180. package/dist/bookmarklet/panes-3-16-0/ember.js +166 -0
  181. package/dist/bookmarklet/panes-3-16-0/ember_debug.js +7 -11018
  182. package/dist/bookmarklet/panes-3-16-0/evented-BCTya3yE.js +62 -0
  183. package/dist/bookmarklet/panes-3-16-0/firefox-8F84zphP.js +30 -0
  184. package/dist/bookmarklet/panes-3-16-0/firefox-debug.js +10 -0
  185. package/dist/bookmarklet/panes-3-16-0/index.html +4 -23
  186. package/dist/bookmarklet/panes-3-16-0/internals-CRmXMEzb.js +12 -0
  187. package/dist/bookmarklet/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
  188. package/dist/bookmarklet/panes-3-16-0/main.js +7669 -0
  189. package/dist/bookmarklet/panes-3-16-0/port.js +108 -0
  190. package/dist/bookmarklet/panes-3-16-0/profile-node.js +60 -0
  191. package/dist/bookmarklet/panes-3-16-0/promise-assembler.js +218 -0
  192. package/dist/bookmarklet/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
  193. package/dist/bookmarklet/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
  194. package/dist/bookmarklet/panes-3-16-0/type-check.js +119 -0
  195. package/dist/bookmarklet/panes-3-16-0/version.js +90 -0
  196. package/dist/bookmarklet/panes-3-16-0/versions.js +4 -0
  197. package/dist/bookmarklet/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
  198. package/dist/bookmarklet/panes-3-16-0/websocket-BSUvUqER.js +58 -0
  199. package/dist/bookmarklet/panes-3-16-0/websocket-debug.js +10 -0
  200. package/dist/chrome/background.js +26 -21
  201. package/dist/chrome/boot.js +1 -1
  202. package/dist/chrome/content-script.js +12 -11
  203. package/dist/chrome/devtools.js +12 -3
  204. package/dist/chrome/manifest.json +4 -2
  205. package/dist/chrome/options.js +17 -12
  206. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  207. package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  208. package/dist/chrome/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
  209. package/dist/chrome/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
  210. package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +997 -156
  211. package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +560 -613
  212. package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  213. package/dist/chrome/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
  214. package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  215. package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  216. package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  217. package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  218. package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  219. package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  220. package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  221. package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  222. package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  223. package/dist/chrome/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
  224. package/dist/chrome/panes-3-16-0/assets/vendor.css +4 -841
  225. package/dist/chrome/panes-3-16-0/assets/vendor.js +4277 -5152
  226. package/dist/chrome/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
  227. package/dist/chrome/panes-3-16-0/basic-B1dkgN3d.js +149 -0
  228. package/dist/chrome/panes-3-16-0/basic-debug.js +10 -0
  229. package/dist/chrome/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
  230. package/dist/chrome/panes-3-16-0/bookmarklet-debug.js +10 -0
  231. package/dist/chrome/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
  232. package/dist/chrome/panes-3-16-0/chrome-debug.js +10 -0
  233. package/dist/chrome/panes-3-16-0/ember.js +166 -0
  234. package/dist/chrome/panes-3-16-0/ember_debug.js +7 -11018
  235. package/dist/chrome/panes-3-16-0/evented-BCTya3yE.js +62 -0
  236. package/dist/chrome/panes-3-16-0/firefox-8F84zphP.js +30 -0
  237. package/dist/chrome/panes-3-16-0/firefox-debug.js +10 -0
  238. package/dist/chrome/panes-3-16-0/index.html +4 -23
  239. package/dist/chrome/panes-3-16-0/internals-CRmXMEzb.js +12 -0
  240. package/dist/chrome/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
  241. package/dist/chrome/panes-3-16-0/main.js +7669 -0
  242. package/dist/chrome/panes-3-16-0/port.js +108 -0
  243. package/dist/chrome/panes-3-16-0/profile-node.js +60 -0
  244. package/dist/chrome/panes-3-16-0/promise-assembler.js +218 -0
  245. package/dist/chrome/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
  246. package/dist/chrome/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
  247. package/dist/chrome/panes-3-16-0/type-check.js +119 -0
  248. package/dist/chrome/panes-3-16-0/version.js +90 -0
  249. package/dist/chrome/panes-3-16-0/versions.js +4 -0
  250. package/dist/chrome/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
  251. package/dist/chrome/panes-3-16-0/websocket-BSUvUqER.js +58 -0
  252. package/dist/chrome/panes-3-16-0/websocket-debug.js +10 -0
  253. package/dist/chrome/scripts/in-page-script.js +19 -13
  254. package/dist/firefox/background.js +26 -21
  255. package/dist/firefox/boot.js +1 -1
  256. package/dist/firefox/content-script.js +12 -11
  257. package/dist/firefox/devtools.js +12 -3
  258. package/dist/firefox/manifest.json +4 -2
  259. package/dist/firefox/options.js +17 -12
  260. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  261. package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  262. package/dist/firefox/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
  263. package/dist/firefox/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
  264. package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +997 -156
  265. package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +560 -613
  266. package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
  267. package/dist/firefox/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
  268. package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
  269. package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
  270. package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
  271. package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
  272. package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
  273. package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
  274. package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
  275. package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
  276. package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
  277. package/dist/firefox/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
  278. package/dist/firefox/panes-3-16-0/assets/vendor.css +4 -841
  279. package/dist/firefox/panes-3-16-0/assets/vendor.js +4277 -5152
  280. package/dist/firefox/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
  281. package/dist/firefox/panes-3-16-0/basic-B1dkgN3d.js +149 -0
  282. package/dist/firefox/panes-3-16-0/basic-debug.js +10 -0
  283. package/dist/firefox/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
  284. package/dist/firefox/panes-3-16-0/bookmarklet-debug.js +10 -0
  285. package/dist/firefox/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
  286. package/dist/firefox/panes-3-16-0/chrome-debug.js +10 -0
  287. package/dist/firefox/panes-3-16-0/ember.js +166 -0
  288. package/dist/firefox/panes-3-16-0/ember_debug.js +7 -11018
  289. package/dist/firefox/panes-3-16-0/evented-BCTya3yE.js +62 -0
  290. package/dist/firefox/panes-3-16-0/firefox-8F84zphP.js +30 -0
  291. package/dist/firefox/panes-3-16-0/firefox-debug.js +10 -0
  292. package/dist/firefox/panes-3-16-0/index.html +4 -23
  293. package/dist/firefox/panes-3-16-0/internals-CRmXMEzb.js +12 -0
  294. package/dist/firefox/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
  295. package/dist/firefox/panes-3-16-0/main.js +7669 -0
  296. package/dist/firefox/panes-3-16-0/port.js +108 -0
  297. package/dist/firefox/panes-3-16-0/profile-node.js +60 -0
  298. package/dist/firefox/panes-3-16-0/promise-assembler.js +218 -0
  299. package/dist/firefox/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
  300. package/dist/firefox/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
  301. package/dist/firefox/panes-3-16-0/type-check.js +119 -0
  302. package/dist/firefox/panes-3-16-0/version.js +90 -0
  303. package/dist/firefox/panes-3-16-0/versions.js +4 -0
  304. package/dist/firefox/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
  305. package/dist/firefox/panes-3-16-0/websocket-BSUvUqER.js +58 -0
  306. package/dist/firefox/panes-3-16-0/websocket-debug.js +10 -0
  307. package/dist/firefox/scripts/in-page-script.js +19 -13
  308. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
  309. package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
  310. package/dist/websocket/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
  311. package/dist/websocket/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
  312. package/dist/websocket/assets/ember-inspector.css +997 -156
  313. package/dist/websocket/assets/ember-inspector.js +560 -613
  314. package/dist/websocket/assets/svg/ellipsis.svg +3 -3
  315. package/dist/websocket/assets/svg/focus-point-round.svg +9 -0
  316. package/dist/websocket/assets/svg/nav-bug.svg +1 -1
  317. package/dist/websocket/assets/svg/nav-components.svg +2 -2
  318. package/dist/websocket/assets/svg/nav-container.svg +1 -1
  319. package/dist/websocket/assets/svg/nav-data.svg +1 -1
  320. package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
  321. package/dist/websocket/assets/svg/nav-info.svg +3 -3
  322. package/dist/websocket/assets/svg/nav-promises.svg +2 -2
  323. package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
  324. package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
  325. package/dist/websocket/assets/svg/sidebar-toggle-trailing.svg +9 -0
  326. package/dist/websocket/assets/vendor.css +4 -841
  327. package/dist/websocket/assets/vendor.js +4277 -5152
  328. package/dist/websocket/base-object-HAEdWjmg.js +59 -0
  329. package/dist/websocket/basic-B1dkgN3d.js +149 -0
  330. package/dist/websocket/basic-debug.js +10 -0
  331. package/dist/websocket/bookmarklet-BZWtwuX-.js +32 -0
  332. package/dist/websocket/bookmarklet-debug.js +10 -0
  333. package/dist/websocket/chrome-P6FSEUf1.js +10 -0
  334. package/dist/websocket/chrome-debug.js +10 -0
  335. package/dist/websocket/ember.js +166 -0
  336. package/dist/websocket/ember_debug.js +7 -11018
  337. package/dist/websocket/evented-BCTya3yE.js +62 -0
  338. package/dist/websocket/firefox-8F84zphP.js +30 -0
  339. package/dist/websocket/firefox-debug.js +10 -0
  340. package/dist/websocket/index.html +4 -23
  341. package/dist/websocket/internals-CRmXMEzb.js +12 -0
  342. package/dist/websocket/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
  343. package/dist/websocket/main.js +7669 -0
  344. package/dist/websocket/port.js +108 -0
  345. package/dist/websocket/profile-node.js +60 -0
  346. package/dist/websocket/promise-assembler.js +218 -0
  347. package/dist/websocket/runloop-6_0lpzTA.js +1138 -0
  348. package/dist/websocket/start-inspector-BIYQArZn.js +334 -0
  349. package/dist/websocket/type-check.js +119 -0
  350. package/dist/websocket/version.js +90 -0
  351. package/dist/websocket/versions.js +4 -0
  352. package/dist/websocket/web-extension-OWnXJ_XK.js +144 -0
  353. package/dist/websocket/websocket-BSUvUqER.js +58 -0
  354. package/dist/websocket/websocket-debug.js +10 -0
  355. package/ember-cli-build.js +31 -140
  356. package/ember_debug/adapters/basic.js +10 -29
  357. package/ember_debug/adapters/bookmarklet.js +1 -0
  358. package/ember_debug/adapters/firefox.js +3 -3
  359. package/ember_debug/adapters/web-extension.js +6 -5
  360. package/ember_debug/adapters/websocket.js +2 -2
  361. package/ember_debug/babel.config.cjs +11 -0
  362. package/ember_debug/container-debug.js +1 -1
  363. package/ember_debug/data-debug.js +7 -8
  364. package/ember_debug/debug-port.js +1 -1
  365. package/ember_debug/deprecation-debug.js +14 -14
  366. package/ember_debug/entrypoints/basic-debug.js +10 -0
  367. package/ember_debug/entrypoints/bookmarklet-debug.js +10 -0
  368. package/ember_debug/entrypoints/chrome-debug.js +10 -0
  369. package/ember_debug/entrypoints/firefox-debug.js +10 -0
  370. package/ember_debug/entrypoints/websocket-debug.js +10 -0
  371. package/ember_debug/general-debug.js +4 -4
  372. package/ember_debug/lib/boot-ember-inspector.js +9 -0
  373. package/ember_debug/lib/get-applications.js +28 -0
  374. package/ember_debug/lib/load-ember-debug-in-webpage.js +32 -0
  375. package/ember_debug/lib/send-apps.js +14 -0
  376. package/ember_debug/lib/send-version-miss.js +38 -0
  377. package/ember_debug/lib/setup-instance-initializer.js +17 -0
  378. package/ember_debug/lib/start-inspector.js +195 -0
  379. package/ember_debug/lib/version-test.js +73 -0
  380. package/ember_debug/lib/versions.js +3 -0
  381. package/ember_debug/libs/capture-render-tree.js +1 -2
  382. package/ember_debug/libs/promise-assembler.js +5 -4
  383. package/ember_debug/libs/render-tree.js +37 -44
  384. package/ember_debug/libs/source-map.js +7 -6
  385. package/ember_debug/libs/view-inspection.js +25 -17
  386. package/ember_debug/main.js +18 -21
  387. package/ember_debug/models/profile-manager.js +6 -6
  388. package/ember_debug/models/profile-node.js +1 -1
  389. package/ember_debug/models/promise.js +2 -2
  390. package/ember_debug/object-inspector.js +74 -65
  391. package/ember_debug/package.json +27 -0
  392. package/ember_debug/port.js +5 -4
  393. package/ember_debug/promise-debug.js +5 -5
  394. package/ember_debug/render-debug.js +5 -5
  395. package/ember_debug/rollup.config.js +24 -0
  396. package/ember_debug/route-debug.js +10 -9
  397. package/ember_debug/services/session.js +2 -2
  398. package/ember_debug/utils/classify.js +1 -1
  399. package/ember_debug/utils/ember/object/internals.js +1 -11
  400. package/ember_debug/utils/ember/own-runloop.js +1 -1
  401. package/ember_debug/utils/ember/runloop.js +7 -10
  402. package/ember_debug/utils/ember-object-names.js +11 -9
  403. package/ember_debug/utils/ember.js +222 -40
  404. package/ember_debug/utils/evented.js +1 -1
  405. package/ember_debug/utils/get-object-name.js +3 -3
  406. package/ember_debug/utils/type-check.js +9 -5
  407. package/ember_debug/view-debug.js +12 -6
  408. package/eslint.config.mjs +173 -0
  409. package/gulpfile.js +1 -1
  410. package/package.json +97 -95
  411. package/patches/ember-cli-inject-live-reload.patch +16 -0
  412. package/pnpm-workspace.yaml +3 -0
  413. package/public/assets/svg/ellipsis.svg +3 -3
  414. package/public/assets/svg/focus-point-round.svg +9 -0
  415. package/public/assets/svg/nav-bug.svg +1 -1
  416. package/public/assets/svg/nav-components.svg +2 -2
  417. package/public/assets/svg/nav-container.svg +1 -1
  418. package/public/assets/svg/nav-data.svg +1 -1
  419. package/public/assets/svg/nav-deprecations.svg +3 -3
  420. package/public/assets/svg/nav-info.svg +3 -3
  421. package/public/assets/svg/nav-promises.svg +2 -2
  422. package/public/assets/svg/nav-render-performance.svg +2 -2
  423. package/public/assets/svg/nav-route-tree.svg +7 -7
  424. package/public/assets/svg/sidebar-toggle-trailing.svg +9 -0
  425. package/scripts/download-panes.js +1 -1
  426. package/skeletons/bookmarklet/load_inspector.js +31 -11
  427. package/skeletons/web-extension/background.js +26 -21
  428. package/skeletons/web-extension/boot.js +1 -1
  429. package/skeletons/web-extension/content-script.js +12 -11
  430. package/skeletons/web-extension/devtools.js +12 -3
  431. package/skeletons/web-extension/manifest.json +3 -1
  432. package/skeletons/web-extension/options.js +17 -12
  433. package/skeletons/web-extension/scripts/in-page-script.js +19 -13
  434. package/testem.js +0 -1
  435. package/tests/acceptance/app-picker-test.js +4 -4
  436. package/tests/acceptance/component-tree-test.js +96 -57
  437. package/tests/acceptance/container-test.js +0 -2
  438. package/tests/acceptance/data-test.js +14 -11
  439. package/tests/acceptance/deprecation-test.js +8 -12
  440. package/tests/acceptance/info-test.js +2 -2
  441. package/tests/acceptance/object-inspector-test.js +62 -110
  442. package/tests/acceptance/promise-test.js +1 -11
  443. package/tests/acceptance/render-tree-test.js +2 -2
  444. package/tests/acceptance/route-tree-test.js +12 -14
  445. package/tests/acceptance/whats-new-test.js +11 -11
  446. package/tests/ember_debug/container-debug-test.js +5 -14
  447. package/tests/ember_debug/deprecation-debug-test.js +15 -6
  448. package/tests/ember_debug/ember-data-test.js +7 -1
  449. package/tests/ember_debug/ember-debug-test.js +13 -13
  450. package/tests/ember_debug/object-inspector-test.js +115 -50
  451. package/tests/ember_debug/profile-manager-test.js +153 -170
  452. package/tests/ember_debug/profile-node-test.js +9 -5
  453. package/tests/ember_debug/promise-assembler-test.js +18 -10
  454. package/tests/ember_debug/promise-debug-test.js +19 -15
  455. package/tests/ember_debug/render-debug-test.js +8 -1
  456. package/tests/ember_debug/route-debug-test.js +14 -8
  457. package/tests/ember_debug/view-debug-test.js +267 -183
  458. package/tests/helpers/{index.js → index.ts} +6 -5
  459. package/tests/helpers/setup-ember-debug-test.js +22 -2
  460. package/tests/index.html +1 -2
  461. package/tests/integration/injection-test.js +37 -81
  462. package/tests/test-adapter.js +15 -15
  463. package/tests/test-helper.js +6 -4
  464. package/tests/unit/check-current-route-test.js +0 -4
  465. package/tests/unit/resizable-columns-test.js +53 -51
  466. package/tests/unit/utils/parse-text-test.js +3 -3
  467. package/tests/unit/utils/search-match-test.js +5 -5
  468. package/tests/unit/utils/type-check-test.js +27 -0
  469. package/tsconfig.json +3 -1
  470. package/types/ember-inspector/index.d.ts +2 -1
  471. package/types/global.d.ts +1 -7
  472. package/.eslintignore +0 -33
  473. package/.eslintrc.js +0 -86
  474. package/app/components/list-content.js +0 -130
  475. package/app/controllers/promise-tree.js +0 -130
  476. package/app/libs/promise-assembler.js +0 -169
  477. package/app/routes/model-types.js +0 -47
  478. package/app/routes/promise-tree.js +0 -48
  479. package/app/routes/records.js +0 -55
  480. package/app/routes/render-tree.js +0 -66
  481. package/app/services/adapters/websocket.js +0 -31
  482. package/app/services/layout.js +0 -39
  483. package/app/services/port.js +0 -90
  484. package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
  485. package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
  486. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  487. package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  488. package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
  489. package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
  490. package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
  491. package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
  492. package/dist/chrome/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
  493. package/dist/chrome/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
  494. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  495. package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  496. package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
  497. package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
  498. package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
  499. package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
  500. package/dist/firefox/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
  501. package/dist/firefox/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
  502. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  503. package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  504. package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
  505. package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
  506. package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
  507. package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
  508. package/dist/websocket/assets/chunk.143.76a242242ec46a377266.js +0 -28
  509. package/dist/websocket/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
  510. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
  511. package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
  512. package/dist/websocket/assets/fonts/Inter-Bold.woff +0 -0
  513. package/dist/websocket/assets/fonts/Inter-Bold.woff2 +0 -0
  514. package/dist/websocket/assets/fonts/Inter-Regular.woff +0 -0
  515. package/dist/websocket/assets/fonts/Inter-Regular.woff2 +0 -0
  516. package/ember_debug/.eslintrc.js +0 -13
  517. package/ember_debug/utils/ember/debug.js +0 -20
  518. package/ember_debug/utils/ember/instrumentation.js +0 -11
  519. package/ember_debug/utils/ember/loader.js +0 -22
  520. package/ember_debug/utils/rsvp.js +0 -20
  521. package/ember_debug/vendor/loader.js +0 -54
  522. package/ember_debug/vendor/startup-wrapper.js +0 -399
  523. package/lib/ui/addon/styles/_object-inspector-toggle.scss +0 -12
  524. package/lib/ui/addon/styles/addon.scss +0 -13
  525. package/lib/ui/addon/styles/toolbar/_icon-button.scss +0 -61
  526. package/lib/ui/app/components/ui/disclosure-triangle.js +0 -1
  527. package/lib/ui/app/components/ui/disclosure.js +0 -1
  528. package/lib/ui/app/components/ui/drag-handle.js +0 -1
  529. package/lib/ui/app/components/ui/draggable-column.js +0 -1
  530. package/lib/ui/app/components/ui/empty-message.js +0 -1
  531. package/lib/ui/app/components/ui/error-page.js +0 -1
  532. package/lib/ui/app/components/ui/open-links-in-new-window.js +0 -1
  533. package/lib/ui/app/components/ui/resizable-column.js +0 -1
  534. package/lib/ui/app/components/ui/send-to-console.js +0 -1
  535. package/lib/ui/app/components/ui/toolbar-clear-button.js +0 -1
  536. package/lib/ui/app/components/ui/toolbar-divider.js +0 -1
  537. package/lib/ui/app/components/ui/toolbar-reload-button.js +0 -1
  538. package/lib/ui/app/components/ui/toolbar-search-field.js +0 -1
  539. package/lib/ui/app/components/ui/warning-message.js +0 -1
  540. package/lib/ui/index.js +0 -34
  541. package/lib/ui/package.json +0 -13
  542. package/public/assets/fonts/Inter-Bold.woff +0 -0
  543. package/public/assets/fonts/Inter-Bold.woff2 +0 -0
  544. package/public/assets/fonts/Inter-Regular.woff +0 -0
  545. package/public/assets/fonts/Inter-Regular.woff2 +0 -0
  546. package/tests/helpers/trigger-port.js +0 -6
  547. /package/app/{app.js → app.ts} +0 -0
  548. /package/{lib/ui/addon/components → app/components/ui}/disclosure-triangle.hbs +0 -0
  549. /package/{lib/ui/addon/components → app/components/ui}/disclosure.hbs +0 -0
  550. /package/{lib/ui/addon/components → app/components/ui}/disclosure.js +0 -0
  551. /package/{lib/ui/addon/components → app/components/ui}/draggable-column.hbs +0 -0
  552. /package/{lib/ui/addon/components → app/components/ui}/draggable-column.js +0 -0
  553. /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.hbs +0 -0
  554. /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.js +0 -0
  555. /package/{lib/ui/addon/components → app/components/ui}/resizable-column.hbs +0 -0
  556. /package/{lib/ui/addon/components → app/components/ui}/send-to-console.hbs +0 -0
  557. /package/{lib/ui/addon/components → app/components/ui}/toolbar-divider.hbs +0 -0
  558. /package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.js +0 -0
  559. /package/{lib/ui/addon/components → app/components/ui}/warning-message.hbs +0 -0
  560. /package/app/controllers/{info.js → info.ts} +0 -0
  561. /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
  562. /package/{lib/ui/addon/styles → app/styles/ui}/_goto-source.scss +0 -0
  563. /package/{lib/ui/addon/styles → app/styles/ui}/_warning.scss +0 -0
  564. /package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_divider.scss +0 -0
@@ -0,0 +1,173 @@
1
+ /**
2
+ * Debugging:
3
+ * https://eslint.org/docs/latest/use/configure/debug
4
+ * ----------------------------------------------------
5
+ *
6
+ * Print a file's calculated configuration
7
+ *
8
+ * npx eslint --print-config path/to/file.js
9
+ *
10
+ * Inspecting the config
11
+ *
12
+ * npx eslint --inspect-config
13
+ *
14
+ */
15
+ import globals from 'globals';
16
+ import js from '@eslint/js';
17
+
18
+ import ts from 'typescript-eslint';
19
+
20
+ import ember from 'eslint-plugin-ember/recommended';
21
+
22
+ import prettier from 'eslint-plugin-prettier/recommended';
23
+ import qunit from 'eslint-plugin-qunit';
24
+ import n from 'eslint-plugin-n';
25
+
26
+ import babelParser from '@babel/eslint-parser';
27
+
28
+ const parserOptions = {
29
+ esm: {
30
+ js: {
31
+ ecmaFeatures: { modules: true },
32
+ ecmaVersion: 'latest',
33
+ requireConfigFile: false,
34
+ babelOptions: {
35
+ plugins: [
36
+ [
37
+ '@babel/plugin-proposal-decorators',
38
+ { decoratorsBeforeExport: true },
39
+ ],
40
+ ],
41
+ },
42
+ },
43
+ ts: {
44
+ projectService: true,
45
+ tsconfigRootDir: import.meta.dirname,
46
+ },
47
+ },
48
+ };
49
+
50
+ export default ts.config(
51
+ js.configs.recommended,
52
+ ember.configs.base,
53
+ ember.configs.gjs,
54
+ ember.configs.gts,
55
+ prettier,
56
+ /**
57
+ * Ignores must be in their own object
58
+ * https://eslint.org/docs/latest/use/configure/ignore
59
+ */
60
+ {
61
+ ignores: [
62
+ 'dist/',
63
+ 'ember_debug/dist/',
64
+ 'node_modules/',
65
+ 'coverage/',
66
+ '!**/.*',
67
+ 'vendor/',
68
+ 'dist_prev/',
69
+ 'skeletons/',
70
+ 'ember_debug/vendor/startup-wrapper.js',
71
+ ],
72
+ },
73
+ /**
74
+ * https://eslint.org/docs/latest/use/configure/configuration-files#configuring-linter-options
75
+ */
76
+ {
77
+ linterOptions: {
78
+ reportUnusedDisableDirectives: 'error',
79
+ },
80
+ },
81
+ { rules: { 'no-prototype-builtins': 'off', 'no-useless-escape': 'off' } },
82
+ {
83
+ files: ['**/*.js'],
84
+ languageOptions: {
85
+ parser: babelParser,
86
+ },
87
+ },
88
+ {
89
+ files: ['**/*.{js,gjs}'],
90
+ languageOptions: {
91
+ parserOptions: parserOptions.esm.js,
92
+ globals: {
93
+ ...globals.browser,
94
+ basicContext: false,
95
+ requireModule: false,
96
+ },
97
+ },
98
+ },
99
+ {
100
+ files: ['**/*.{ts,gts}'],
101
+ languageOptions: {
102
+ parser: ember.parser,
103
+ parserOptions: parserOptions.esm.ts,
104
+ },
105
+ extends: [...ts.configs.recommendedTypeChecked, ember.configs.gts],
106
+ rules: {
107
+ '@typescript-eslint/no-unused-vars': [
108
+ 'error',
109
+ {
110
+ argsIgnorePattern: '^_',
111
+ },
112
+ ],
113
+ },
114
+ },
115
+ {
116
+ files: ['tests/**/*-test.{js,gjs,ts,gts}'],
117
+ plugins: {
118
+ qunit,
119
+ },
120
+ },
121
+ /**
122
+ * CJS node files
123
+ */
124
+ {
125
+ files: [
126
+ '**/*.cjs',
127
+ 'config/**/*.js',
128
+ 'lib/*/index.js',
129
+ 'scripts/**/*.js',
130
+ 'testem.js',
131
+ 'testem*.js',
132
+ '.prettierrc.js',
133
+ '.stylelintrc.js',
134
+ '.template-lintrc.js',
135
+ 'babel.config.js',
136
+ 'ember-cli-build.js',
137
+ 'gulpfile.js',
138
+ ],
139
+ plugins: {
140
+ n,
141
+ },
142
+
143
+ languageOptions: {
144
+ sourceType: 'script',
145
+ ecmaVersion: 'latest',
146
+ globals: {
147
+ ...globals.node,
148
+ basicContext: false,
149
+ requireModule: false,
150
+ },
151
+ },
152
+ },
153
+ /**
154
+ * ESM node files
155
+ */
156
+ {
157
+ files: ['**/*.mjs'],
158
+ plugins: {
159
+ n,
160
+ },
161
+
162
+ languageOptions: {
163
+ sourceType: 'module',
164
+ ecmaVersion: 'latest',
165
+ parserOptions: parserOptions.esm.js,
166
+ globals: {
167
+ ...globals.node,
168
+ basicContext: false,
169
+ requireModule: false,
170
+ },
171
+ },
172
+ },
173
+ );
package/gulpfile.js CHANGED
@@ -5,7 +5,7 @@ const del = require('del');
5
5
  const pkg = require('./package.json');
6
6
  let versionedPane = `panes-${pkg.emberVersionsSupported[0].replace(
7
7
  /\./g,
8
- '-'
8
+ '-',
9
9
  )}`;
10
10
 
11
11
  function compress(baseSrc, archiveName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-inspector",
3
- "version": "4.13.1",
3
+ "version": "4.15.0",
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,88 @@
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-cors": "^0.0.2",
66
+ "ember-cli-dependency-checker": "^3.3.3",
67
+ "ember-cli-deprecation-workflow": "^2.2.0",
68
+ "ember-cli-htmlbars": "^6.3.0",
77
69
  "ember-cli-inject-live-reload": "^2.1.0",
78
70
  "ember-cli-sass": "^11.0.1",
79
- "ember-cli-stylelint": "^4.0.0",
80
71
  "ember-cli-terser": "^4.0.2",
81
- "ember-cli-typescript": "^5.2.1",
72
+ "ember-cli-typescript": "^5.3.0",
82
73
  "ember-cli-version-checker": "^5.1.2",
83
- "ember-concurrency": "^3.0.0",
74
+ "ember-concurrency": "^3.1.1",
84
75
  "ember-decorators": "^6.1.1",
76
+ "ember-event-helpers": "^0.1.1",
85
77
  "ember-fetch": "^8.1.2",
86
78
  "ember-flatpickr": "^4.0.0",
87
79
  "ember-in-element-polyfill": "^1.0.1",
88
- "ember-load-initializers": "^2.1.2",
80
+ "ember-load-initializers": "^3.0.1",
89
81
  "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",
82
+ "ember-modifier": "^4.2.0",
83
+ "ember-on-resize-modifier": "^1.1.0",
84
+ "ember-qunit": "^8.1.1",
85
+ "ember-resolver": "^13.1.0",
86
+ "ember-router-service-refresh-polyfill": "^1.1.0",
87
+ "ember-showdown": "1.0.0-beta.1",
88
+ "ember-sinon-qunit": "^7.5.0",
89
+ "ember-source": "^5.0.0",
97
90
  "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",
91
+ "ember-svg-jar": "^2.6.0",
92
+ "ember-table": "^5.0.6",
93
+ "ember-template-lint": "^6.0.0",
101
94
  "ember-test-selectors": "^6.0.0",
102
- "ember-truth-helpers": "^3.0.0",
95
+ "ember-truth-helpers": "^3.1.1",
103
96
  "ember-try": "^3.0.0",
104
97
  "ember-wormhole": "^0.6.0",
105
98
  "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",
99
+ "eslint": "^9.17.0",
100
+ "eslint-config-prettier": "^9.1.0",
101
+ "eslint-plugin-ember": "^12.3.3",
102
+ "eslint-plugin-n": "^17.15.1",
103
+ "eslint-plugin-prettier": "^5.2.1",
104
+ "eslint-plugin-qunit": "^8.1.2",
112
105
  "fstream": "^1.0.12",
113
- "got": "^11.8.2",
106
+ "globals": "^15.14.0",
114
107
  "gulp": "^4.0.2",
115
108
  "gulp-zip": "^5.1.0",
116
109
  "loader.js": "^4.7.0",
117
110
  "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",
111
+ "pretender": "^3.4.7",
112
+ "prettier": "^3.4.2",
113
+ "prettier-plugin-ember-template-tag": "^2.0.4",
114
+ "qunit": "^2.23.1",
115
+ "qunit-dom": "^3.4.0",
116
+ "release-it": "^15.11.0",
123
117
  "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",
118
+ "release-plan": "^0.17.0",
119
+ "sass": "^1.79.4",
120
+ "source-map-js": "^1.2.1",
121
+ "stylelint": "^16.13.2",
122
+ "stylelint-config-standard-scss": "^14.0.0",
123
+ "stylelint-prettier": "^5.0.2",
124
+ "tracked-built-ins": "^3.4.0",
129
125
  "tracked-toolbox": "^2.0.0",
130
- "typescript": "^5.1.6",
131
- "webpack": "^5.88.1",
132
- "yauzl": "^2.10.0"
126
+ "typescript": "^5.7.2",
127
+ "typescript-eslint": "^8.18.2",
128
+ "webpack": "^5.97.1",
129
+ "ember-debug": "0.0.0"
133
130
  },
134
131
  "engines": {
135
- "node": "14.* || 16.* || >= 18"
132
+ "node": ">= 22",
133
+ "pnpm": "^9.0.0"
134
+ },
135
+ "volta": {
136
+ "node": "22.17.1",
137
+ "pnpm": "9.12.1"
136
138
  },
137
139
  "publishConfig": {
138
140
  "registry": "https://registry.npmjs.org"
@@ -140,11 +142,6 @@
140
142
  "ember": {
141
143
  "edition": "octane"
142
144
  },
143
- "ember-addon": {
144
- "paths": [
145
- "lib/ui"
146
- ]
147
- },
148
145
  "emberVersionsSupported": [
149
146
  "3.16.0",
150
147
  ""
@@ -172,26 +169,31 @@
172
169
  "publish": false
173
170
  }
174
171
  },
175
- "volta": {
176
- "node": "18.18.2",
177
- "pnpm": "8.10.2"
178
- },
179
172
  "scripts": {
180
- "build": "ember build",
181
- "build:production": "EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && gulp compress:chrome && gulp compress:firefox && gulp clean-tmp",
173
+ "build": "pnpm build:ember-debug && ember build",
174
+ "build:ember-debug": "pnpm --filter ember-debug build",
175
+ "build:production": "pnpm build:ember-debug && EMBER_ENV=production node scripts/download-panes.js && ember build --environment production && gulp compress:chrome && gulp compress:firefox && gulp clean-tmp",
182
176
  "changelog": "github_changelog_generator -u emberjs -p ember-inspector --since-tag v3.8.0",
183
177
  "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:\"",
178
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
179
+ "lint:css": "stylelint \"**/*.scss\"",
180
+ "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
181
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto",
186
182
  "lint:hbs": "ember-template-lint .",
187
183
  "lint:hbs:fix": "ember-template-lint . --fix",
188
184
  "lint:js": "eslint . --cache",
185
+ "lint:js:fix": "eslint . --fix",
186
+ "lint:types": "tsc --noEmit",
189
187
  "lock-version": "pnpm build:production && pnpm compress:panes",
190
188
  "serve:bookmarklet": "ember serve --port 9191",
191
- "lint:js:fix": "eslint . --fix",
192
189
  "start": "ember serve",
193
- "test": "concurrently \"npm:lint\" \"npm:test:*\" --names \"lint,test:\"",
194
- "test:ember": "COVERAGE=true ember test",
195
- "watch": "ember build --watch"
190
+ "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto",
191
+ "test:ember": "pnpm build:ember-debug && COVERAGE=true ember test",
192
+ "watch": "pnpm '/watch:/'",
193
+ "watch-test": "pnpm '/watch-test:/'",
194
+ "watch-test:ember-debug": "pnpm --filter ember-debug watch",
195
+ "watch-test:inspector-ui": "ember test --serv",
196
+ "watch:ember-debug": "pnpm --filter ember-debug watch",
197
+ "watch:inspector-ui": "ember build --watch"
196
198
  }
197
199
  }
@@ -0,0 +1,16 @@
1
+ diff --git a/CHANGELOG.md b/CHANGELOG.md
2
+ deleted file mode 100644
3
+ index 6b246174165e3519b57dbb1fdd16a05731175763..0000000000000000000000000000000000000000
4
+ diff --git a/lib/index.js b/lib/index.js
5
+ index f28830e01df9778fcef712ccd546566bfc34a0cc..cd38a87d6b90ebe0d7154d6a8d5a27d011098a64 100644
6
+ --- a/lib/index.js
7
+ +++ b/lib/index.js
8
+ @@ -48,7 +48,7 @@ module.exports = {
9
+
10
+ let self = this;
11
+ // maintaining `baseURL` for backwards compatibility. See: http://emberjs.com/blog/2016/04/28/baseURL.html
12
+ - let baseURL = options.liveReloadBaseUrl || options.rootURL || options.baseURL;
13
+ + let baseURL = options.liveReloadBaseUrl || options.rootURL;
14
+ if (this.parent) {
15
+ let checker = new VersionChecker(this.parent);
16
+ let depedency = checker.for('ember-cli');
@@ -0,0 +1,3 @@
1
+ packages:
2
+ - .
3
+ - ember_debug
@@ -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>
@@ -0,0 +1,9 @@
1
+ <svg width="800px" height="800px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
3
+ <g transform="translate(-300.000000, -4439.000000)">
4
+ <g transform="translate(56.000000, 160.000000)" class="svg-fill">
5
+ <path class="svg-fill" d="M264,4281 L264,4286 C264,4286.552 263.552,4287 263,4287 C262.448,4287 262,4286.552 262,4286 L262,4282 C262,4281.448 261.552,4281 261,4281 L257,4281 C256.448,4281 256,4280.552 256,4280 C256,4279.448 256.448,4279 257,4279 L262,4279 C263.105,4279 264,4279.895 264,4281 L264,4281 Z M262,4299 L257,4299 C256.448,4299 256,4298.552 256,4298 C256,4297.448 256.448,4297 257,4297 L261,4297 C261.552,4297 262,4296.552 262,4296 L262,4292 C262,4291.448 262.448,4291 263,4291 C263.552,4291 264,4291.448 264,4292 L264,4297 C264,4298.105 263.105,4299 262,4299 L262,4299 Z M244,4297 L244,4292 C244,4291.448 244.448,4291 245,4291 C245.552,4291 246,4291.448 246,4292 L246,4296 C246,4296.552 246.448,4297 247,4297 L251,4297 C251.552,4297 252,4297.448 252,4298 C252,4298.552 251.552,4299 251,4299 L246,4299 C244.895,4299 244,4298.105 244,4297 L244,4297 Z M244,4286 L244,4281 C244,4279.895 244.895,4279 246,4279 L251,4279 C251.552,4279 252,4279.448 252,4280 C252,4280.552 251.552,4281 251,4281 L247,4281 C246.448,4281 246,4281.448 246,4282 L246,4286 C246,4286.552 245.552,4287 245,4287 C244.448,4287 244,4286.552 244,4286 L244,4286 Z M244.01,4289 L244,4289.01 L244,4288.99 L244.01,4289 Z M254,4291 C252.897,4291 252,4290.103 252,4289 C252,4287.897 252.897,4287 254,4287 C255.103,4287 256,4287.897 256,4289 C256,4290.103 255.103,4291 254,4291 L254,4291 Z M257.859,4290 L259,4290 C259.552,4290 260,4289.552 260,4289 C260,4288.448 259.552,4288 259,4288 L257.859,4288 C257.496,4286.599 256.401,4285.504 255,4285.141 L255,4284 C255,4283.448 254.552,4283 254,4283 C253.448,4283 253,4283.448 253,4284 L253,4285.141 C251.599,4285.504 250.504,4286.599 250.141,4288 L249,4288 C248.448,4288 248,4288.448 248,4289 C248,4289.552 248.448,4290 249,4290 L250.141,4290 C250.504,4291.401 251.599,4292.496 253,4292.859 L253,4294 C253,4294.552 253.448,4295 254,4295 C254.552,4295 255,4294.552 255,4294 L255,4292.859 C256.401,4292.496 257.496,4291.401 257.859,4290 L257.859,4290 Z" id="focus_point_round-[#844]"></path>
6
+ </g>
7
+ </g>
8
+ </g>
9
+ </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>
@@ -0,0 +1,9 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path class="svg-stroke" d="M14.5 1.5H1.5C0.947715 1.5 0.5 1.94772 0.5 2.5V13.5C0.5 14.0523 0.947715 14.5 1.5 14.5H14.5C15.0523 14.5 15.5 14.0523 15.5 13.5V2.5C15.5 1.94772 15.0523 1.5 14.5 1.5Z" />
3
+ <g transform="matrix(-1,0,0,1,16,0)">
4
+ <path class="svg-stroke" d="M6.5 2V14" />
5
+ <path class="svg-stroke" d="M5 4L2 4" />
6
+ <path class="svg-stroke" d="M5 6L2 6" />
7
+ <path class="svg-stroke" d="M5 8L2 8" />
8
+ </g>
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}`);