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

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.c8707b06d2f496a0d15d.js +40 -0
  109. package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
  135. package/dist/chrome/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
  162. package/dist/firefox/panes-3-16-0/assets/chunk.582.6d68f76dc5c8ba2b48a8.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.c8707b06d2f496a0d15d.js +40 -0
  183. package/dist/websocket/assets/chunk.582.6d68f76dc5c8ba2b48a8.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
@@ -157,6 +157,10 @@
157
157
  }
158
158
  .flatpickr-months .flatpickr-prev-month,
159
159
  .flatpickr-months .flatpickr-next-month {
160
+ -webkit-user-select: none;
161
+ -moz-user-select: none;
162
+ -ms-user-select: none;
163
+ user-select: none;
160
164
  text-decoration: none;
161
165
  cursor: pointer;
162
166
  position: absolute;
@@ -1423,15 +1427,15 @@ ol .occluded-content {
1423
1427
  z-index: 500;
1424
1428
  }
1425
1429
 
1426
- .drag-handle--right {
1430
+ .drag-handle-right {
1427
1431
  margin-right: calc(var(--drag-handle-width) / 2 * -1);
1428
1432
  }
1429
1433
 
1430
- .drag-handle--left {
1434
+ .drag-handle-left {
1431
1435
  margin-left: calc(var(--drag-handle-width) / 2 * -1);
1432
1436
  }
1433
1437
 
1434
- .drag-handle__border {
1438
+ .drag-handle-border {
1435
1439
  border-left: 1px solid var(--base06);
1436
1440
  margin-left: calc(var(--drag-handle-width) / 2);
1437
1441
  width: 1px;
@@ -1440,17 +1444,17 @@ ol .occluded-content {
1440
1444
  .drag-handle:active {
1441
1445
  width: var(--drag-handle-active-width);
1442
1446
  }
1443
- .drag-handle:active.drag-handle--right {
1447
+ .drag-handle:active.drag-handle-right {
1444
1448
  margin-right: calc(var(--drag-handle-active-width) / 2 * -1);
1445
1449
  }
1446
- .drag-handle:active.drag-handle--left {
1450
+ .drag-handle:active.drag-handle-left {
1447
1451
  margin-left: calc(var(--drag-handle-active-width) / 2 * -1);
1448
1452
  }
1449
- .drag-handle:active .drag-handle__border {
1453
+ .drag-handle:active .drag-handle-border {
1450
1454
  margin-left: calc(var(--drag-handle-active-width) / 2);
1451
1455
  }
1452
1456
 
1453
- .drag-handle--faded {
1457
+ .drag-handle-faded {
1454
1458
  opacity: 0.3;
1455
1459
  }
1456
1460
 
@@ -1458,7 +1462,7 @@ ol .occluded-content {
1458
1462
  fill: var(--base07);
1459
1463
  }
1460
1464
 
1461
- .empty-message__content {
1465
+ .empty-message-content {
1462
1466
  max-width: 40rem;
1463
1467
  }
1464
1468
 
@@ -1468,48 +1472,49 @@ ol .occluded-content {
1468
1472
  An error with possible reasons and solutions.
1469
1473
  For example: when application is not detected.
1470
1474
  */
1471
- .error-page__content {
1475
+ .error-page-content {
1472
1476
  border: 1px solid var(--base04);
1473
1477
  width: 530px;
1474
1478
  }
1475
- .error-page__content ul {
1479
+ .error-page-content ul {
1476
1480
  list-style-type: disc;
1477
1481
  padding-left: var(--unit4);
1478
1482
  }
1479
- .error-page__content li {
1483
+ .error-page-content li {
1480
1484
  padding: 2px 0;
1481
1485
  }
1482
- .error-page__content a {
1486
+ .error-page-content a {
1483
1487
  color: var(--spec01);
1484
1488
  text-decoration: none;
1485
1489
  }
1486
1490
 
1487
- .error-page__header {
1491
+ .error-page-header {
1488
1492
  border-bottom: 1px solid var(--base04);
1489
1493
  top: -25px;
1490
1494
  }
1491
- .error-page__header .tomster {
1495
+ .error-page-header .tomster {
1492
1496
  transform: translateY(90px);
1493
1497
  flex-shrink: 0;
1494
1498
  height: 89px;
1495
1499
  width: 128px;
1496
- animation: tomsterReveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
1500
+ animation: tomster-reveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
1497
1501
  animation-delay: 0.75s;
1498
1502
  animation-fill-mode: forwards;
1499
1503
  }
1500
1504
 
1501
- @keyframes tomsterReveal {
1505
+ @keyframes tomster-reveal {
1502
1506
  from {
1503
1507
  transform: translateY(90px);
1504
1508
  }
1505
1509
  to {
1506
- transform: translateY(0px);
1510
+ transform: translateY(0);
1507
1511
  }
1508
1512
  }
1509
- .error-page__body {
1513
+ .error-page-body {
1510
1514
  border-bottom: 1px solid var(--base04);
1511
1515
  }
1512
1516
 
1517
+ /* stylelint-disable no-duplicate-selectors */
1513
1518
  .list {
1514
1519
  background: var(--base00);
1515
1520
  box-sizing: border-box;
@@ -1519,7 +1524,7 @@ ol .occluded-content {
1519
1524
  position: relative;
1520
1525
  }
1521
1526
 
1522
- .list__content {
1527
+ .list-content {
1523
1528
  overflow: scroll;
1524
1529
  transform: translateZ(0);
1525
1530
  }
@@ -1534,7 +1539,7 @@ ol .occluded-content {
1534
1539
  width: 100%;
1535
1540
  }
1536
1541
 
1537
- .list__header {
1542
+ .list-header {
1538
1543
  border-bottom: 1px solid var(--base05);
1539
1544
  height: 30px;
1540
1545
  overflow: hidden;
@@ -1543,10 +1548,10 @@ ol .occluded-content {
1543
1548
  text-align: left;
1544
1549
  user-select: none;
1545
1550
  }
1546
- .list__header .list__row {
1551
+ .list-header .list-row {
1547
1552
  background: var(--base00);
1548
1553
  }
1549
- .list__header .list__cell {
1554
+ .list-header .list-cell {
1550
1555
  color: var(--inherit);
1551
1556
  font-weight: normal;
1552
1557
  opacity: 1;
@@ -1555,22 +1560,22 @@ ol .occluded-content {
1555
1560
  position: relative;
1556
1561
  }
1557
1562
 
1558
- .list:not(.list_no-alternate-color) .list__content .list__row {
1563
+ .list:not(.list-no-alternate-color) .list-content .list-row {
1559
1564
  background: var(--base02);
1560
1565
  }
1561
- .list:not(.list_no-alternate-color) .list__content .list__row.striped {
1566
+ .list:not(.list-no-alternate-color) .list-content .list-row.striped {
1562
1567
  background: var(--base00);
1563
1568
  }
1564
1569
 
1565
- .list.list--css-striping .list__row:nth-child(even) {
1570
+ .list.list-css-striping .list-row:nth-child(even) {
1566
1571
  background: var(--base00);
1567
1572
  }
1568
1573
 
1569
- .list__cell-content {
1574
+ .list-cell-content {
1570
1575
  width: 100%;
1571
1576
  }
1572
1577
 
1573
- .list__cell {
1578
+ .list-cell {
1574
1579
  box-sizing: border-box;
1575
1580
  line-height: 30px;
1576
1581
  min-height: 30px;
@@ -1580,41 +1585,41 @@ ol .occluded-content {
1580
1585
  text-overflow: ellipsis;
1581
1586
  white-space: nowrap;
1582
1587
  }
1583
- .list__cell_size_small {
1588
+ .list-cell-size-small {
1584
1589
  flex: none;
1585
1590
  width: 50px;
1586
1591
  }
1587
- .list__cell_size_medium {
1592
+ .list-cell-size-medium {
1588
1593
  flex: none;
1589
1594
  width: 130px;
1590
1595
  }
1591
- .list__cell_size_larger {
1596
+ .list-cell-size-larger {
1592
1597
  flex: none;
1593
1598
  width: 350px;
1594
1599
  }
1595
- .list__cell_size_large {
1600
+ .list-cell-size-large {
1596
1601
  flex: none;
1597
1602
  width: 250px;
1598
1603
  }
1599
- .list__cell_size_huge {
1604
+ .list-cell-size-huge {
1600
1605
  flex: none;
1601
1606
  width: 450px;
1602
1607
  }
1603
- .list__cell_value_numeric {
1608
+ .list-cell-value-numeric {
1604
1609
  font-family: var(--font-monospace);
1605
1610
  min-width: 65px;
1606
1611
  padding-right: 10px;
1607
1612
  text-align: right;
1608
1613
  }
1609
- .list__cell_main {
1614
+ .list-cell-main {
1610
1615
  font-weight: bold;
1611
1616
  }
1612
- .list__cell_spacer {
1617
+ .list-cell-spacer {
1613
1618
  border: none;
1614
1619
  flex: none;
1615
1620
  width: 0;
1616
1621
  }
1617
- .list__cell_clickable {
1622
+ .list-cell-clickable {
1618
1623
  cursor: pointer;
1619
1624
  }
1620
1625
 
@@ -1622,7 +1627,7 @@ ol .occluded-content {
1622
1627
  * Content in a cell that should not take the entire
1623
1628
  * space. Usually because it has a $E after it.
1624
1629
  */
1625
- .list__cell-partial {
1630
+ .list-cell-partial {
1626
1631
  display: inline-block;
1627
1632
  float: left;
1628
1633
  max-width: calc(100% - 40px);
@@ -1631,11 +1636,11 @@ ol .occluded-content {
1631
1636
  white-space: nowrap;
1632
1637
  }
1633
1638
 
1634
- .list__cell-partial_clickable {
1639
+ .list-cell-partial-clickable {
1635
1640
  cursor: pointer;
1636
1641
  }
1637
1642
 
1638
- .list__cell-partial_size_medium {
1643
+ .list-cell-partial-size-medium {
1639
1644
  max-width: calc(100% - 60px);
1640
1645
  }
1641
1646
 
@@ -1643,35 +1648,35 @@ ol .occluded-content {
1643
1648
  * For example a $E icon to the right
1644
1649
  * of a cell.
1645
1650
  */
1646
- .list__cell-helper {
1651
+ .list-cell-helper {
1647
1652
  float: right;
1648
1653
  margin-right: 5px;
1649
1654
  }
1650
1655
 
1651
- .list__link {
1656
+ .list-link {
1652
1657
  cursor: pointer;
1653
1658
  }
1654
1659
 
1655
- .list__row:hover .list__cell {
1660
+ .list-row:hover .list-cell {
1656
1661
  opacity: 1;
1657
1662
  }
1658
- .list__row:hover .list__cell_clickable {
1663
+ .list-row:hover .list-cell-clickable {
1659
1664
  text-decoration: underline;
1660
1665
  }
1661
- .list__row:hover .list__cell-partial_clickable {
1666
+ .list-row:hover .list-cell-partial-clickable {
1662
1667
  text-decoration: underline;
1663
1668
  }
1664
- .list__row:hover .list__link {
1669
+ .list-row:hover .list-link {
1665
1670
  text-decoration: underline;
1666
1671
  }
1667
1672
 
1668
- .list__row_highlight .list__cell,
1669
- .list__cell_highlight {
1673
+ .list-row-highlight .list-cell,
1674
+ .list-cell-highlight {
1670
1675
  opacity: 1;
1671
1676
  }
1672
1677
 
1673
1678
  /* ARROW FOR COLLAPSING AND EXPANDING */
1674
- .list__cell-arrow {
1679
+ .list-cell-arrow {
1675
1680
  cursor: pointer;
1676
1681
  display: block;
1677
1682
  float: left;
@@ -1679,7 +1684,7 @@ ol .occluded-content {
1679
1684
  position: relative;
1680
1685
  width: 15px;
1681
1686
  }
1682
- .list__cell-arrow:before {
1687
+ .list-cell-arrow::before {
1683
1688
  color: var(--base10);
1684
1689
  font-size: 75%;
1685
1690
  position: absolute;
@@ -1688,34 +1693,34 @@ ol .occluded-content {
1688
1693
  }
1689
1694
 
1690
1695
  /* cell expanding/collapsing */
1691
- .list__cell_arrow_expanded,
1692
- .list__cell_arrow_collapsed {
1696
+ .list-cell-arrow-expanded,
1697
+ .list-cell-arrow-collapsed {
1693
1698
  cursor: pointer;
1694
1699
  }
1695
1700
 
1696
- .list__cell_arrow_collapsed .list__cell-arrow:before {
1701
+ .list-cell-arrow-collapsed .list-cell-arrow::before {
1697
1702
  content: "▶";
1698
1703
  }
1699
1704
 
1700
- .list__cell_arrow_expanded .list__cell-arrow:before {
1705
+ .list-cell-arrow-expanded .list-cell-arrow::before {
1701
1706
  content: "▼";
1702
1707
  }
1703
1708
 
1704
- .list__row_arrow_collapsed,
1705
- .list__row_arrow_expanded {
1709
+ .list-row-arrow-collapsed,
1710
+ .list-row-arrow-expanded {
1706
1711
  cursor: pointer;
1707
1712
  position: relative;
1708
1713
  }
1709
1714
 
1710
- .list__row_arrow_collapsed .list__cell-arrow:before {
1715
+ .list-row-arrow-collapsed .list-cell-arrow::before {
1711
1716
  content: "▶";
1712
1717
  }
1713
1718
 
1714
- .list__row_arrow_expanded .list__cell-arrow:before {
1719
+ .list-row-arrow-expanded .list-cell-arrow::before {
1715
1720
  content: "▼";
1716
1721
  }
1717
1722
 
1718
- .nav__title {
1723
+ .nav-title {
1719
1724
  color: var(--base09);
1720
1725
  cursor: default;
1721
1726
  font-size: 1.2rem;
@@ -1740,7 +1745,7 @@ ol .occluded-content {
1740
1745
  ===========
1741
1746
  Anchor tag
1742
1747
  */
1743
- .nav__item {
1748
+ .nav-item {
1744
1749
  align-items: center;
1745
1750
  color: var(--base15);
1746
1751
  cursor: default;
@@ -1753,16 +1758,16 @@ ol .occluded-content {
1753
1758
  text-overflow: ellipsis;
1754
1759
  white-space: nowrap;
1755
1760
  }
1756
- .nav__item:focus {
1761
+ .nav-item:focus {
1757
1762
  outline: none;
1758
1763
  }
1759
1764
 
1760
- .nav__item.active {
1765
+ .nav-item.active {
1761
1766
  background: var(--focus);
1762
1767
  color: var(--focus-text);
1763
1768
  }
1764
1769
 
1765
- .app.inactive .nav__item.active {
1770
+ .app.inactive .nav-item.active {
1766
1771
  background: var(--base06);
1767
1772
  }
1768
1773
 
@@ -1771,44 +1776,44 @@ ol .occluded-content {
1771
1776
  ===========
1772
1777
  Main text of Nav Item
1773
1778
  */
1774
- .nav__item-label {
1779
+ .nav-item-label {
1775
1780
  flex-grow: 1;
1776
1781
  font-size: 1.3rem;
1777
1782
  }
1778
1783
 
1779
- .nav--collapsed .nav__item-label,
1780
- .nav--collapsed .nav__item .pill {
1784
+ .nav-collapsed .nav-item-label,
1785
+ .nav-collapsed .nav-item .pill {
1781
1786
  display: none;
1782
1787
  }
1783
1788
 
1784
- .nav__item-icon {
1789
+ .nav-item-icon {
1785
1790
  flex-shrink: 0;
1786
1791
  height: 22px;
1787
1792
  margin-right: 7px;
1788
1793
  width: 22px;
1789
1794
  }
1790
1795
 
1791
- .nav__icon-stroke {
1796
+ .nav-icon-stroke {
1792
1797
  fill: var(--base12);
1793
1798
  }
1794
1799
 
1795
- .nav__item.active .nav__icon-stroke {
1800
+ .nav-item.active .nav-icon-stroke {
1796
1801
  fill: var(--focus-text);
1797
1802
  }
1798
1803
 
1799
1804
  /* Custom navs */
1800
- .nav--main .nav__item {
1805
+ .nav-main .nav-item {
1801
1806
  height: 38px;
1802
1807
  line-height: 38px;
1803
1808
  padding-left: 12px;
1804
1809
  }
1805
1810
 
1806
- .nav--main .pill {
1811
+ .nav-main .pill {
1807
1812
  margin-right: var(--unit1);
1808
1813
  margin-left: var(--unit1);
1809
1814
  }
1810
1815
 
1811
- .nav.nav--main .nav__title {
1816
+ .nav.nav-main .nav-title {
1812
1817
  padding-left: 14px;
1813
1818
  }
1814
1819
 
@@ -1832,26 +1837,26 @@ ol .occluded-content {
1832
1837
  fill: var(--base12);
1833
1838
  }
1834
1839
 
1835
- .nav__footer.nav--expanded {
1840
+ .nav-footer.nav-expanded {
1836
1841
  display: grid;
1837
1842
  grid-template: "left center right" 38px/auto 1fr auto;
1838
1843
  height: 38px;
1839
1844
  }
1840
1845
 
1841
- .nav__footer.nav--collapsed {
1846
+ .nav-footer.nav-collapsed {
1842
1847
  display: grid;
1843
1848
  grid-template: "left" 32px "right" 32px;
1844
1849
  height: auto;
1845
1850
  }
1846
1851
 
1847
- .nav__overflow.nav__overflow--active {
1852
+ .nav-overflow.nav-overflow-active {
1848
1853
  background-color: var(--focus);
1849
1854
  }
1850
- .nav__overflow.nav__overflow--active .nav__icon-stroke {
1855
+ .nav-overflow.nav-overflow-active .nav-icon-stroke {
1851
1856
  fill: var(--focus-text);
1852
1857
  }
1853
1858
 
1854
- .nav__overflow select {
1859
+ .nav-overflow select {
1855
1860
  height: 38px;
1856
1861
  }
1857
1862
 
@@ -1873,16 +1878,16 @@ ol .occluded-content {
1873
1878
  background: var(--pill-bg-active);
1874
1879
  }
1875
1880
 
1876
- .pill--small {
1881
+ .pill-small {
1877
1882
  font-size: 1rem;
1878
1883
  padding: 2px 4px;
1879
1884
  }
1880
1885
 
1881
- .pill--text {
1886
+ .pill-text {
1882
1887
  font-family: var(--font-sans-serif);
1883
1888
  }
1884
1889
 
1885
- .pill--blue {
1890
+ .pill-blue {
1886
1891
  background: var(--focus);
1887
1892
  color: var(--focus-text);
1888
1893
  }
@@ -1915,7 +1920,7 @@ ol .occluded-content {
1915
1920
  transform: translateY(1px);
1916
1921
  }
1917
1922
 
1918
- .send-to-console--chevron-only svg {
1923
+ .send-to-console-chevron-only svg {
1919
1924
  position: relative;
1920
1925
  top: -1px;
1921
1926
  }
@@ -1948,14 +1953,14 @@ ol .occluded-content {
1948
1953
  transform: translateY(1px);
1949
1954
  }
1950
1955
 
1951
- .object-inspector-toggle.toolbar__icon-button {
1956
+ .object-inspector-toggle.toolbar-icon-button {
1952
1957
  margin-right: 0;
1953
1958
  max-height: var(--toolbar-height);
1954
1959
  padding-right: 6px;
1955
1960
  padding-left: 6px;
1956
1961
  transform: scaleX(-1);
1957
1962
  }
1958
- .object-inspector-toggle.toolbar__icon-button:active {
1963
+ .object-inspector-toggle.toolbar-icon-button:active {
1959
1964
  transform: translate(1px, 1px) scaleX(-1);
1960
1965
  }
1961
1966
 
@@ -1966,18 +1971,15 @@ ol .occluded-content {
1966
1971
  */
1967
1972
  /* .split: The container for one or more panels */
1968
1973
  .split {
1969
- bottom: 0;
1974
+ inset: 0;
1970
1975
  display: flex;
1971
1976
  flex: auto;
1972
1977
  flex-direction: row;
1973
- left: 0;
1974
1978
  position: absolute;
1975
- right: 0;
1976
- top: 0;
1977
1979
  }
1978
1980
 
1979
- /* .split__panel: Contains a body, and optional header and footer elements */
1980
- .split__panel {
1981
+ /* .split-panel: Contains a body, and optional header and footer elements */
1982
+ .split-panel {
1981
1983
  display: flex;
1982
1984
  flex: auto;
1983
1985
  flex-direction: column;
@@ -1985,14 +1987,14 @@ ol .occluded-content {
1985
1987
  overflow: hidden;
1986
1988
  }
1987
1989
 
1988
- .split__panel__hd,
1989
- .split__panel__bd,
1990
- .split__panel__ft {
1990
+ .split-panel-hd,
1991
+ .split-panel-bd,
1992
+ .split-panel-ft {
1991
1993
  position: relative;
1992
1994
  }
1993
1995
 
1994
- .split__panel__hd,
1995
- .split__panel__ft {
1996
+ .split-panel-hd,
1997
+ .split-panel-ft {
1996
1998
  border-color: var(--base03);
1997
1999
  box-sizing: border-box;
1998
2000
  display: flex;
@@ -2000,14 +2002,14 @@ ol .occluded-content {
2000
2002
  flex-direction: column;
2001
2003
  }
2002
2004
 
2003
- .split__panel__hd {
2005
+ .split-panel-hd {
2004
2006
  background: var(--base00);
2005
2007
  border-bottom-style: solid;
2006
2008
  border-bottom-width: 1px;
2007
2009
  min-height: 29px;
2008
2010
  }
2009
2011
 
2010
- .split__panel__bd {
2012
+ .split-panel-bd {
2011
2013
  background: var(--base00);
2012
2014
  flex: auto;
2013
2015
  overflow: scroll;
@@ -2015,7 +2017,7 @@ ol .occluded-content {
2015
2017
  width: auto;
2016
2018
  }
2017
2019
 
2018
- .split__panel__ft {
2020
+ .split-panel-ft {
2019
2021
  background: var(--base01);
2020
2022
  border-top-style: solid;
2021
2023
  border-top-width: 1px;
@@ -2023,26 +2025,26 @@ ol .occluded-content {
2023
2025
  justify-content: center;
2024
2026
  }
2025
2027
 
2026
- .split__panel,
2027
- .split__panel__bd {
2028
+ .split-panel,
2029
+ .split-panel-bd {
2028
2030
  height: 100%;
2029
2031
  }
2030
2032
 
2031
2033
  /* Custom panels */
2032
- .split__panel--sidebar-1 .split__panel__bd {
2034
+ .split-panel-sidebar-1 .split-panel-bd {
2033
2035
  background: var(--base01);
2034
2036
  }
2035
2037
 
2036
- .split__panel--sidebar-2 .split__panel__bd {
2038
+ .split-panel-sidebar-2 .split-panel-bd {
2037
2039
  background: var(--base01);
2038
2040
  }
2039
2041
 
2040
2042
  /* Fix main list-view scrolling */
2041
- .split--main > .split__panel > .split__panel__bd {
2043
+ .split-main > .split-panel > .split-panel-bd {
2042
2044
  overflow: hidden;
2043
2045
  }
2044
2046
 
2045
- .split--main > .split__panel--sidebar-1 > .split__panel__bd {
2047
+ .split-main > .split-panel-sidebar-1 > .split-panel-bd {
2046
2048
  overflow-y: auto;
2047
2049
  }
2048
2050
 
@@ -2071,7 +2073,7 @@ ol .occluded-content {
2071
2073
  margin-right: 5px;
2072
2074
  }
2073
2075
 
2074
- .toolbar__checkbox {
2076
+ .toolbar-checkbox {
2075
2077
  height: 100%;
2076
2078
  margin-left: 4px;
2077
2079
  margin-right: 4px;
@@ -2079,24 +2081,24 @@ ol .occluded-content {
2079
2081
  white-space: nowrap;
2080
2082
  }
2081
2083
 
2082
- .toolbar__checkbox label {
2084
+ .toolbar-checkbox label {
2083
2085
  display: block;
2084
2086
  height: 100%;
2085
2087
  line-height: var(--toolbar-height);
2086
2088
  }
2087
2089
 
2088
- .toolbar__checkbox input {
2090
+ .toolbar-checkbox input {
2089
2091
  margin: 0;
2090
2092
  }
2091
2093
 
2092
2094
  /*
2093
2095
  if first item in toolbar, create extra clickable space
2094
2096
  */
2095
- .toolbar__checkbox:first-child {
2097
+ .toolbar-checkbox:first-child {
2096
2098
  margin-left: 0;
2097
2099
  }
2098
2100
 
2099
- .toolbar__checkbox:first-child label {
2101
+ .toolbar-checkbox:first-child label {
2100
2102
  margin-left: 0;
2101
2103
  padding-left: 8px;
2102
2104
  }
@@ -2106,7 +2108,7 @@ ol .occluded-content {
2106
2108
  width: 1px;
2107
2109
  }
2108
2110
 
2109
- .toolbar__icon-button {
2111
+ .toolbar-icon-button {
2110
2112
  align-items: center;
2111
2113
  background: transparent;
2112
2114
  border: 0 transparent none;
@@ -2117,63 +2119,60 @@ ol .occluded-content {
2117
2119
  padding: 0 2px;
2118
2120
  vertical-align: top;
2119
2121
  /* if first item in toolbar, create extra clickable space on left side */
2122
+ /*
2123
+ SVG colors
2124
+ */
2125
+ /*
2126
+ Modifier:
2127
+ .active (highlighted)
2128
+ */
2129
+ /*
2130
+ Modifier
2131
+ .disabled
2132
+ */
2120
2133
  }
2121
- .toolbar__icon-button:first-child {
2134
+ .toolbar-icon-button:first-child {
2122
2135
  margin-left: 0;
2123
2136
  padding-left: 10px;
2124
2137
  }
2125
- .toolbar__icon-button:focus {
2138
+ .toolbar-icon-button:focus {
2126
2139
  outline: none;
2127
2140
  }
2128
- .toolbar__icon-button:active {
2141
+ .toolbar-icon-button:active {
2129
2142
  transform: translate(1px, 1px);
2130
2143
  }
2131
-
2132
- /*
2133
- SVG colors
2134
- */
2135
- .toolbar__icon-button .svg-stroke {
2144
+ .toolbar-icon-button .svg-stroke {
2136
2145
  stroke: var(--base11);
2137
2146
  }
2138
- .toolbar__icon-button .svg-fill {
2147
+ .toolbar-icon-button .svg-fill {
2139
2148
  fill: var(--base11);
2140
2149
  }
2141
- .toolbar__icon-button:hover .svg-stroke {
2150
+ .toolbar-icon-button:hover .svg-stroke {
2142
2151
  stroke: var(--base13);
2143
2152
  }
2144
- .toolbar__icon-button:hover .svg-fill {
2153
+ .toolbar-icon-button:hover .svg-fill {
2145
2154
  fill: var(--base13);
2146
2155
  }
2147
-
2148
- /*
2149
- Modifier:
2150
- .active (highlighted)
2151
- */
2152
- .toolbar__icon-button.active .svg-stroke {
2156
+ .toolbar-icon-button.active .svg-stroke {
2153
2157
  stroke: var(--focus);
2154
2158
  }
2155
- .toolbar__icon-button.active .svg-fill {
2159
+ .toolbar-icon-button.active .svg-fill {
2156
2160
  fill: var(--focus);
2157
2161
  }
2158
-
2159
- /*
2160
- Modifier
2161
- .disabled
2162
- */
2163
- .toolbar__icon-button.disabled {
2162
+ .toolbar-icon-button.disabled {
2164
2163
  pointer-events: none;
2165
2164
  }
2166
- .toolbar__icon-button.disabled:active {
2165
+ .toolbar-icon-button.disabled:active {
2167
2166
  transform: none;
2168
2167
  }
2169
- .toolbar__icon-button.disabled .svg-stroke {
2168
+ .toolbar-icon-button.disabled .svg-stroke {
2170
2169
  stroke: var(--base05);
2171
2170
  }
2172
- .toolbar__icon-button.disabled .svg-fill {
2171
+ .toolbar-icon-button.disabled .svg-fill {
2173
2172
  fill: var(--base05);
2174
2173
  }
2175
2174
 
2176
- .toolbar__radio {
2175
+ .toolbar-radio {
2177
2176
  background: var(--base02);
2178
2177
  border: none;
2179
2178
  border-radius: 2px;
@@ -2189,44 +2188,44 @@ ol .occluded-content {
2189
2188
  vertical-align: middle;
2190
2189
  }
2191
2190
 
2192
- .toolbar__radio:active,
2193
- .toolbar__radio:hover,
2194
- .toolbar__radio:focus,
2195
- .toolbar__radio.active {
2191
+ .toolbar-radio:active,
2192
+ .toolbar-radio:hover,
2193
+ .toolbar-radio:focus,
2194
+ .toolbar-radio.active {
2196
2195
  outline: none;
2197
2196
  }
2198
2197
 
2199
- .toolbar__radio--first {
2198
+ .toolbar-radio-first {
2200
2199
  margin-left: 4px;
2201
2200
  }
2202
2201
 
2203
- .toolbar__radio--last {
2202
+ .toolbar-radio-last {
2204
2203
  margin-right: 4px;
2205
2204
  }
2206
2205
 
2207
- .toolbar__radio:hover {
2206
+ .toolbar-radio:hover {
2208
2207
  background: var(--base04);
2209
2208
  }
2210
2209
 
2211
- .toolbar__radio:active {
2210
+ .toolbar-radio:active {
2212
2211
  background: var(--base00);
2213
2212
  }
2214
2213
 
2215
- .toolbar__radio.active {
2214
+ .toolbar-radio.active {
2216
2215
  background: var(--focus);
2217
2216
  color: var(--focus-text);
2218
2217
  }
2219
2218
 
2220
- .toolbar__search input {
2219
+ .toolbar-search input {
2221
2220
  border: 1px solid var(--base05);
2222
2221
  height: calc(var(--toolbar-height) - 7px);
2223
2222
  width: 175px;
2224
2223
  }
2225
2224
 
2226
- .toolbar__search-clear-button {
2225
+ .toolbar-search-clear-button {
2227
2226
  top: 3px;
2228
2227
  }
2229
- .toolbar__search-clear-button svg path {
2228
+ .toolbar-search-clear-button svg path {
2230
2229
  fill: var(--base11);
2231
2230
  }
2232
2231