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.
- package/.ember-cli +1 -9
- package/.github/workflows/build.yml +33 -112
- package/.github/workflows/plan-release.yml +26 -48
- package/.github/workflows/publish.yml +129 -31
- package/.prettierignore +2 -13
- package/.prettierrc.js +10 -4
- package/.release-plan.json +13 -4
- package/.stylelintignore +8 -0
- package/.stylelintrc.js +10 -1
- package/.template-lintrc.js +2 -1
- package/.tool-versions +2 -2
- package/.watchmanconfig +1 -1
- package/CHANGELOG.md +137 -0
- package/DEVELOPMENT.md +50 -0
- package/PRIVACY.md +3 -0
- package/README.md +14 -50
- package/RELEASE.md +15 -50
- package/app/components/app-picker.hbs +2 -2
- package/app/components/component-tree-item.hbs +14 -14
- package/app/components/component-tree-toolbar.hbs +17 -3
- package/app/components/{date-property-field.js → date-property-field.ts} +6 -5
- package/app/components/deprecation-item-source.hbs +1 -1
- package/app/components/deprecation-item.hbs +1 -1
- package/app/components/deprecations-toolbar.hbs +1 -1
- package/app/components/item-types.hbs +7 -7
- package/app/components/list-cell.hbs +3 -3
- package/app/components/list-content.hbs +4 -3
- package/app/components/list-content.ts +96 -0
- package/app/components/list.hbs +3 -3
- package/app/components/list.js +7 -7
- package/app/components/model-types-toolbar.hbs +3 -3
- package/app/components/object-inspector/component-parents.hbs +33 -0
- package/app/components/object-inspector/component-parents.js +43 -0
- package/app/components/object-inspector/dependent-keys.hbs +4 -4
- package/app/components/object-inspector/errors.hbs +4 -4
- package/app/components/object-inspector/properties-all.hbs +1 -1
- package/app/components/object-inspector/properties-base.js +2 -0
- package/app/components/object-inspector/properties-grouped.hbs +5 -5
- package/app/components/object-inspector/property.hbs +36 -34
- package/app/components/object-inspector/property.ts +34 -17
- package/app/components/object-inspector/sort-properties.js +12 -4
- package/app/components/object-inspector/toggle.hbs +9 -0
- package/app/components/object-inspector/toggle.js +6 -0
- package/app/components/object-inspector.hbs +11 -9
- package/app/components/object-inspector.js +1 -1
- package/app/components/promise-item.hbs +11 -11
- package/app/components/promise-item.js +8 -6
- package/app/components/promise-tree-toolbar.hbs +5 -5
- package/app/components/records-toolbar.hbs +2 -2
- package/app/components/render-item.hbs +4 -4
- package/app/components/render-item.ts +12 -9
- package/app/components/render-tree-toolbar.hbs +1 -1
- package/app/components/route-cell-name.hbs +1 -1
- package/app/components/route-cell-name.js +3 -2
- package/app/components/route-tree-toolbar.hbs +2 -2
- package/app/components/scroll-container.js +2 -0
- package/app/components/side-nav.hbs +5 -5
- package/app/components/side-nav.js +1 -1
- package/{lib/ui/addon/components → app/components/ui}/drag-handle.hbs +4 -4
- package/{lib/ui/addon/components → app/components/ui}/drag-handle.js +3 -1
- package/{lib/ui/addon/components → app/components/ui}/empty-message.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/error-page.hbs +3 -3
- package/{lib/ui/addon/components → app/components/ui}/resizable-column.js +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-clear-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-reload-button.hbs +1 -1
- package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.hbs +2 -2
- package/app/computed/{debounce.js → debounce.ts} +7 -5
- package/app/config/environment.d.ts +5 -2
- package/app/controllers/app-config.js +1 -0
- package/app/controllers/application.js +36 -71
- package/app/controllers/component-tree.js +26 -7
- package/app/controllers/container-type.js +2 -1
- package/app/controllers/container-types/{index.js → index.ts} +5 -2
- package/app/controllers/container-types.js +3 -6
- package/app/controllers/deprecations.js +16 -11
- package/app/controllers/libraries.js +1 -0
- package/app/controllers/model-types.js +7 -13
- package/app/controllers/promise-tree.ts +149 -0
- package/app/controllers/records.js +18 -26
- package/app/controllers/{render-tree.js → render-tree.ts} +54 -45
- package/app/controllers/route-tree.js +7 -5
- package/app/helpers/build-style.js +1 -1
- package/app/index.html +1 -19
- package/app/initializers/setup.js +1 -1
- package/app/libs/promise-assembler.ts +249 -0
- package/app/libs/resizable-columns.js +10 -10
- package/app/models/{promise.js → promise.ts} +72 -69
- package/app/{router.js → router.ts} +1 -1
- package/app/routes/app-detected.js +3 -5
- package/app/routes/application.js +9 -13
- package/app/routes/deprecations.js +7 -16
- package/app/routes/launch.js +2 -1
- package/app/routes/libraries.js +2 -1
- package/app/routes/model-type.js +2 -3
- package/app/routes/model-types.ts +57 -0
- package/app/routes/promise-tree.ts +63 -0
- package/app/routes/records.ts +78 -0
- package/app/routes/render-tree.ts +93 -0
- package/app/routes/route-tree.js +0 -1
- package/app/routes/{tab.js → tab.ts} +9 -2
- package/app/routes/whats-new.js +6 -4
- package/app/services/adapters/{basic.js → basic.ts} +36 -30
- package/app/services/adapters/{bookmarklet.js → bookmarklet.ts} +17 -24
- package/app/services/adapters/{chrome.js → chrome.ts} +1 -2
- package/app/services/adapters/{web-extension.js → web-extension.ts} +46 -46
- package/app/services/adapters/websocket.ts +40 -0
- package/app/services/layout.ts +124 -0
- package/app/services/port.ts +195 -0
- package/app/services/storage/{local.js → local.ts} +7 -20
- package/app/services/storage/{memory.js → memory.ts} +6 -21
- package/app/services/{storage.js → storage.ts} +25 -23
- package/app/styles/app.scss +1 -0
- package/app/styles/base.scss +6 -2
- package/app/styles/colors.scss +33 -31
- package/app/styles/component_tree.scss +56 -51
- package/app/styles/dropdown.scss +2 -2
- package/app/styles/ember-table.scss +3 -3
- package/app/styles/mixin.scss +26 -26
- package/app/styles/object_inspector.scss +30 -21
- package/{lib/ui/addon/styles → app/styles/ui}/_disclosure-triangle.scss +3 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_drag-handle.scss +7 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_empty-message.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_error-page.scss +8 -7
- package/{lib/ui/addon/styles → app/styles/ui}/_list.scss +46 -45
- package/{lib/ui/addon/styles → app/styles/ui}/_nav.scss +29 -27
- package/app/styles/ui/_object-inspector-toggle.scss +4 -0
- package/{lib/ui/addon/styles → app/styles/ui}/_pill.scss +4 -4
- package/{lib/ui/addon/styles → app/styles/ui}/_send-to-console.scss +1 -1
- package/{lib/ui/addon/styles → app/styles/ui}/_split.scss +26 -20
- package/app/styles/ui/_ui.scss +13 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_checkbox.scss +5 -5
- package/app/styles/ui/toolbar/_icon-button.scss +80 -0
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_index.scss +6 -5
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_radio.scss +10 -10
- package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_search.scss +5 -3
- package/app/styles/utils.scss +408 -122
- package/app/templates/application.hbs +22 -19
- package/app/templates/component-tree.hbs +4 -1
- package/app/templates/deprecations.hbs +2 -3
- package/app/templates/info.hbs +10 -10
- package/app/templates/promise-tree.hbs +1 -1
- package/app/templates/render-tree.hbs +1 -1
- package/app/templates/route-tree.hbs +1 -1
- package/app/utils/escape-reg-exp.ts +3 -2
- package/app/utils/nullish.ts +7 -0
- package/app/utils/parse-text.ts +4 -5
- package/app/utils/truncate.js +0 -1
- package/config/ember-cli-update.json +5 -3
- package/config/ember-try.js +117 -72
- package/config/environment.js +1 -1
- package/config/optional-features.json +2 -1
- package/dist/bookmarklet/load_inspector.js +31 -11
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/bookmarklet/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/bookmarklet/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/bookmarklet/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/bookmarklet/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/bookmarklet/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/bookmarklet/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/bookmarklet/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/bookmarklet/panes-3-16-0/basic-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/bookmarklet/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/ember.js +166 -0
- package/dist/bookmarklet/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/bookmarklet/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/bookmarklet/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/bookmarklet/panes-3-16-0/index.html +4 -23
- package/dist/bookmarklet/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/bookmarklet/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/bookmarklet/panes-3-16-0/main.js +7669 -0
- package/dist/bookmarklet/panes-3-16-0/port.js +108 -0
- package/dist/bookmarklet/panes-3-16-0/profile-node.js +60 -0
- package/dist/bookmarklet/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/bookmarklet/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/bookmarklet/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/bookmarklet/panes-3-16-0/type-check.js +119 -0
- package/dist/bookmarklet/panes-3-16-0/version.js +90 -0
- package/dist/bookmarklet/panes-3-16-0/versions.js +4 -0
- package/dist/bookmarklet/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/bookmarklet/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/chrome/background.js +26 -21
- package/dist/chrome/boot.js +1 -1
- package/dist/chrome/content-script.js +12 -11
- package/dist/chrome/devtools.js +12 -3
- package/dist/chrome/manifest.json +4 -2
- package/dist/chrome/options.js +17 -12
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/chrome/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/chrome/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/chrome/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/chrome/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/chrome/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/chrome/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/chrome/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/chrome/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/chrome/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/chrome/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/chrome/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/chrome/panes-3-16-0/basic-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/chrome/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/chrome/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/ember.js +166 -0
- package/dist/chrome/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/chrome/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/chrome/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/chrome/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/chrome/panes-3-16-0/index.html +4 -23
- package/dist/chrome/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/chrome/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/chrome/panes-3-16-0/main.js +7669 -0
- package/dist/chrome/panes-3-16-0/port.js +108 -0
- package/dist/chrome/panes-3-16-0/profile-node.js +60 -0
- package/dist/chrome/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/chrome/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/chrome/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/chrome/panes-3-16-0/type-check.js +119 -0
- package/dist/chrome/panes-3-16-0/version.js +90 -0
- package/dist/chrome/panes-3-16-0/versions.js +4 -0
- package/dist/chrome/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/chrome/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/chrome/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/chrome/scripts/in-page-script.js +19 -13
- package/dist/firefox/background.js +26 -21
- package/dist/firefox/boot.js +1 -1
- package/dist/firefox/content-script.js +12 -11
- package/dist/firefox/devtools.js +12 -3
- package/dist/firefox/manifest.json +4 -2
- package/dist/firefox/options.js +17 -12
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.css +997 -156
- package/dist/firefox/panes-3-16-0/assets/ember-inspector.js +560 -613
- package/dist/firefox/panes-3-16-0/assets/svg/ellipsis.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/focus-point-round.svg +9 -0
- package/dist/firefox/panes-3-16-0/assets/svg/nav-bug.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-components.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-container.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-data.svg +1 -1
- package/dist/firefox/panes-3-16-0/assets/svg/nav-deprecations.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-info.svg +3 -3
- package/dist/firefox/panes-3-16-0/assets/svg/nav-promises.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-render-performance.svg +2 -2
- package/dist/firefox/panes-3-16-0/assets/svg/nav-route-tree.svg +7 -7
- package/dist/firefox/panes-3-16-0/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/firefox/panes-3-16-0/assets/vendor.css +4 -841
- package/dist/firefox/panes-3-16-0/assets/vendor.js +4277 -5152
- package/dist/firefox/panes-3-16-0/base-object-HAEdWjmg.js +59 -0
- package/dist/firefox/panes-3-16-0/basic-B1dkgN3d.js +149 -0
- package/dist/firefox/panes-3-16-0/basic-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/firefox/panes-3-16-0/bookmarklet-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-P6FSEUf1.js +10 -0
- package/dist/firefox/panes-3-16-0/chrome-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/ember.js +166 -0
- package/dist/firefox/panes-3-16-0/ember_debug.js +7 -11018
- package/dist/firefox/panes-3-16-0/evented-BCTya3yE.js +62 -0
- package/dist/firefox/panes-3-16-0/firefox-8F84zphP.js +30 -0
- package/dist/firefox/panes-3-16-0/firefox-debug.js +10 -0
- package/dist/firefox/panes-3-16-0/index.html +4 -23
- package/dist/firefox/panes-3-16-0/internals-CRmXMEzb.js +12 -0
- package/dist/firefox/panes-3-16-0/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/firefox/panes-3-16-0/main.js +7669 -0
- package/dist/firefox/panes-3-16-0/port.js +108 -0
- package/dist/firefox/panes-3-16-0/profile-node.js +60 -0
- package/dist/firefox/panes-3-16-0/promise-assembler.js +218 -0
- package/dist/firefox/panes-3-16-0/runloop-6_0lpzTA.js +1138 -0
- package/dist/firefox/panes-3-16-0/start-inspector-BIYQArZn.js +334 -0
- package/dist/firefox/panes-3-16-0/type-check.js +119 -0
- package/dist/firefox/panes-3-16-0/version.js +90 -0
- package/dist/firefox/panes-3-16-0/versions.js +4 -0
- package/dist/firefox/panes-3-16-0/web-extension-OWnXJ_XK.js +144 -0
- package/dist/firefox/panes-3-16-0/websocket-BSUvUqER.js +58 -0
- package/dist/firefox/panes-3-16-0/websocket-debug.js +10 -0
- package/dist/firefox/scripts/in-page-script.js +19 -13
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js +1135 -0
- package/dist/websocket/assets/chunk.443.86a005e528b587663b78.js.LICENSE.txt +18 -0
- package/dist/websocket/assets/chunk.524.aca67dc376e8cd35b522.js +40 -0
- package/dist/websocket/assets/chunk.582.d3d80e94c4f59dc3b65d.js +42 -0
- package/dist/websocket/assets/ember-inspector.css +997 -156
- package/dist/websocket/assets/ember-inspector.js +560 -613
- package/dist/websocket/assets/svg/ellipsis.svg +3 -3
- package/dist/websocket/assets/svg/focus-point-round.svg +9 -0
- package/dist/websocket/assets/svg/nav-bug.svg +1 -1
- package/dist/websocket/assets/svg/nav-components.svg +2 -2
- package/dist/websocket/assets/svg/nav-container.svg +1 -1
- package/dist/websocket/assets/svg/nav-data.svg +1 -1
- package/dist/websocket/assets/svg/nav-deprecations.svg +3 -3
- package/dist/websocket/assets/svg/nav-info.svg +3 -3
- package/dist/websocket/assets/svg/nav-promises.svg +2 -2
- package/dist/websocket/assets/svg/nav-render-performance.svg +2 -2
- package/dist/websocket/assets/svg/nav-route-tree.svg +7 -7
- package/dist/websocket/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/dist/websocket/assets/vendor.css +4 -841
- package/dist/websocket/assets/vendor.js +4277 -5152
- package/dist/websocket/base-object-HAEdWjmg.js +59 -0
- package/dist/websocket/basic-B1dkgN3d.js +149 -0
- package/dist/websocket/basic-debug.js +10 -0
- package/dist/websocket/bookmarklet-BZWtwuX-.js +32 -0
- package/dist/websocket/bookmarklet-debug.js +10 -0
- package/dist/websocket/chrome-P6FSEUf1.js +10 -0
- package/dist/websocket/chrome-debug.js +10 -0
- package/dist/websocket/ember.js +166 -0
- package/dist/websocket/ember_debug.js +7 -11018
- package/dist/websocket/evented-BCTya3yE.js +62 -0
- package/dist/websocket/firefox-8F84zphP.js +30 -0
- package/dist/websocket/firefox-debug.js +10 -0
- package/dist/websocket/index.html +4 -23
- package/dist/websocket/internals-CRmXMEzb.js +12 -0
- package/dist/websocket/load-ember-debug-in-webpage-DCWcJhQm.js +29 -0
- package/dist/websocket/main.js +7669 -0
- package/dist/websocket/port.js +108 -0
- package/dist/websocket/profile-node.js +60 -0
- package/dist/websocket/promise-assembler.js +218 -0
- package/dist/websocket/runloop-6_0lpzTA.js +1138 -0
- package/dist/websocket/start-inspector-BIYQArZn.js +334 -0
- package/dist/websocket/type-check.js +119 -0
- package/dist/websocket/version.js +90 -0
- package/dist/websocket/versions.js +4 -0
- package/dist/websocket/web-extension-OWnXJ_XK.js +144 -0
- package/dist/websocket/websocket-BSUvUqER.js +58 -0
- package/dist/websocket/websocket-debug.js +10 -0
- package/ember-cli-build.js +31 -140
- package/ember_debug/adapters/basic.js +10 -29
- package/ember_debug/adapters/bookmarklet.js +1 -0
- package/ember_debug/adapters/firefox.js +3 -3
- package/ember_debug/adapters/web-extension.js +6 -5
- package/ember_debug/adapters/websocket.js +2 -2
- package/ember_debug/babel.config.cjs +11 -0
- package/ember_debug/container-debug.js +1 -1
- package/ember_debug/data-debug.js +7 -8
- package/ember_debug/debug-port.js +1 -1
- package/ember_debug/deprecation-debug.js +14 -14
- package/ember_debug/entrypoints/basic-debug.js +10 -0
- package/ember_debug/entrypoints/bookmarklet-debug.js +10 -0
- package/ember_debug/entrypoints/chrome-debug.js +10 -0
- package/ember_debug/entrypoints/firefox-debug.js +10 -0
- package/ember_debug/entrypoints/websocket-debug.js +10 -0
- package/ember_debug/general-debug.js +4 -4
- package/ember_debug/lib/boot-ember-inspector.js +9 -0
- package/ember_debug/lib/get-applications.js +28 -0
- package/ember_debug/lib/load-ember-debug-in-webpage.js +32 -0
- package/ember_debug/lib/send-apps.js +14 -0
- package/ember_debug/lib/send-version-miss.js +38 -0
- package/ember_debug/lib/setup-instance-initializer.js +17 -0
- package/ember_debug/lib/start-inspector.js +195 -0
- package/ember_debug/lib/version-test.js +73 -0
- package/ember_debug/lib/versions.js +3 -0
- package/ember_debug/libs/capture-render-tree.js +1 -2
- package/ember_debug/libs/promise-assembler.js +5 -4
- package/ember_debug/libs/render-tree.js +37 -44
- package/ember_debug/libs/source-map.js +7 -6
- package/ember_debug/libs/view-inspection.js +25 -17
- package/ember_debug/main.js +18 -21
- package/ember_debug/models/profile-manager.js +6 -6
- package/ember_debug/models/profile-node.js +1 -1
- package/ember_debug/models/promise.js +2 -2
- package/ember_debug/object-inspector.js +74 -65
- package/ember_debug/package.json +27 -0
- package/ember_debug/port.js +5 -4
- package/ember_debug/promise-debug.js +5 -5
- package/ember_debug/render-debug.js +5 -5
- package/ember_debug/rollup.config.js +24 -0
- package/ember_debug/route-debug.js +10 -9
- package/ember_debug/services/session.js +2 -2
- package/ember_debug/utils/classify.js +1 -1
- package/ember_debug/utils/ember/object/internals.js +1 -11
- package/ember_debug/utils/ember/own-runloop.js +1 -1
- package/ember_debug/utils/ember/runloop.js +7 -10
- package/ember_debug/utils/ember-object-names.js +11 -9
- package/ember_debug/utils/ember.js +222 -40
- package/ember_debug/utils/evented.js +1 -1
- package/ember_debug/utils/get-object-name.js +3 -3
- package/ember_debug/utils/type-check.js +9 -5
- package/ember_debug/view-debug.js +12 -6
- package/eslint.config.mjs +173 -0
- package/gulpfile.js +1 -1
- package/package.json +97 -95
- package/patches/ember-cli-inject-live-reload.patch +16 -0
- package/pnpm-workspace.yaml +3 -0
- package/public/assets/svg/ellipsis.svg +3 -3
- package/public/assets/svg/focus-point-round.svg +9 -0
- package/public/assets/svg/nav-bug.svg +1 -1
- package/public/assets/svg/nav-components.svg +2 -2
- package/public/assets/svg/nav-container.svg +1 -1
- package/public/assets/svg/nav-data.svg +1 -1
- package/public/assets/svg/nav-deprecations.svg +3 -3
- package/public/assets/svg/nav-info.svg +3 -3
- package/public/assets/svg/nav-promises.svg +2 -2
- package/public/assets/svg/nav-render-performance.svg +2 -2
- package/public/assets/svg/nav-route-tree.svg +7 -7
- package/public/assets/svg/sidebar-toggle-trailing.svg +9 -0
- package/scripts/download-panes.js +1 -1
- package/skeletons/bookmarklet/load_inspector.js +31 -11
- package/skeletons/web-extension/background.js +26 -21
- package/skeletons/web-extension/boot.js +1 -1
- package/skeletons/web-extension/content-script.js +12 -11
- package/skeletons/web-extension/devtools.js +12 -3
- package/skeletons/web-extension/manifest.json +3 -1
- package/skeletons/web-extension/options.js +17 -12
- package/skeletons/web-extension/scripts/in-page-script.js +19 -13
- package/testem.js +0 -1
- package/tests/acceptance/app-picker-test.js +4 -4
- package/tests/acceptance/component-tree-test.js +96 -57
- package/tests/acceptance/container-test.js +0 -2
- package/tests/acceptance/data-test.js +14 -11
- package/tests/acceptance/deprecation-test.js +8 -12
- package/tests/acceptance/info-test.js +2 -2
- package/tests/acceptance/object-inspector-test.js +62 -110
- package/tests/acceptance/promise-test.js +1 -11
- package/tests/acceptance/render-tree-test.js +2 -2
- package/tests/acceptance/route-tree-test.js +12 -14
- package/tests/acceptance/whats-new-test.js +11 -11
- package/tests/ember_debug/container-debug-test.js +5 -14
- package/tests/ember_debug/deprecation-debug-test.js +15 -6
- package/tests/ember_debug/ember-data-test.js +7 -1
- package/tests/ember_debug/ember-debug-test.js +13 -13
- package/tests/ember_debug/object-inspector-test.js +115 -50
- package/tests/ember_debug/profile-manager-test.js +153 -170
- package/tests/ember_debug/profile-node-test.js +9 -5
- package/tests/ember_debug/promise-assembler-test.js +18 -10
- package/tests/ember_debug/promise-debug-test.js +19 -15
- package/tests/ember_debug/render-debug-test.js +8 -1
- package/tests/ember_debug/route-debug-test.js +14 -8
- package/tests/ember_debug/view-debug-test.js +267 -183
- package/tests/helpers/{index.js → index.ts} +6 -5
- package/tests/helpers/setup-ember-debug-test.js +22 -2
- package/tests/index.html +1 -2
- package/tests/integration/injection-test.js +37 -81
- package/tests/test-adapter.js +15 -15
- package/tests/test-helper.js +6 -4
- package/tests/unit/check-current-route-test.js +0 -4
- package/tests/unit/resizable-columns-test.js +53 -51
- package/tests/unit/utils/parse-text-test.js +3 -3
- package/tests/unit/utils/search-match-test.js +5 -5
- package/tests/unit/utils/type-check-test.js +27 -0
- package/tsconfig.json +3 -1
- package/types/ember-inspector/index.d.ts +2 -1
- package/types/global.d.ts +1 -7
- package/.eslintignore +0 -33
- package/.eslintrc.js +0 -86
- package/app/components/list-content.js +0 -130
- package/app/controllers/promise-tree.js +0 -130
- package/app/libs/promise-assembler.js +0 -169
- package/app/routes/model-types.js +0 -47
- package/app/routes/promise-tree.js +0 -48
- package/app/routes/records.js +0 -55
- package/app/routes/render-tree.js +0 -66
- package/app/services/adapters/websocket.js +0 -31
- package/app/services/layout.js +0 -39
- package/app/services/port.js +0 -90
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/bookmarklet/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/bookmarklet/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/chrome/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/chrome/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/chrome/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/firefox/panes-3-16-0/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/firefox/panes-3-16-0/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/firefox/panes-3-16-0/assets/fonts/Inter-Regular.woff2 +0 -0
- package/dist/websocket/assets/chunk.143.76a242242ec46a377266.js +0 -28
- package/dist/websocket/assets/chunk.178.b6064b368cf24cc346ec.js +0 -9
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js +0 -2620
- package/dist/websocket/assets/chunk.359.0be5d21f60d2b5d6d423.js.LICENSE.txt +0 -67
- package/dist/websocket/assets/fonts/Inter-Bold.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Bold.woff2 +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff +0 -0
- package/dist/websocket/assets/fonts/Inter-Regular.woff2 +0 -0
- package/ember_debug/.eslintrc.js +0 -13
- package/ember_debug/utils/ember/debug.js +0 -20
- package/ember_debug/utils/ember/instrumentation.js +0 -11
- package/ember_debug/utils/ember/loader.js +0 -22
- package/ember_debug/utils/rsvp.js +0 -20
- package/ember_debug/vendor/loader.js +0 -54
- package/ember_debug/vendor/startup-wrapper.js +0 -399
- package/lib/ui/addon/styles/_object-inspector-toggle.scss +0 -12
- package/lib/ui/addon/styles/addon.scss +0 -13
- package/lib/ui/addon/styles/toolbar/_icon-button.scss +0 -61
- package/lib/ui/app/components/ui/disclosure-triangle.js +0 -1
- package/lib/ui/app/components/ui/disclosure.js +0 -1
- package/lib/ui/app/components/ui/drag-handle.js +0 -1
- package/lib/ui/app/components/ui/draggable-column.js +0 -1
- package/lib/ui/app/components/ui/empty-message.js +0 -1
- package/lib/ui/app/components/ui/error-page.js +0 -1
- package/lib/ui/app/components/ui/open-links-in-new-window.js +0 -1
- package/lib/ui/app/components/ui/resizable-column.js +0 -1
- package/lib/ui/app/components/ui/send-to-console.js +0 -1
- package/lib/ui/app/components/ui/toolbar-clear-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-divider.js +0 -1
- package/lib/ui/app/components/ui/toolbar-reload-button.js +0 -1
- package/lib/ui/app/components/ui/toolbar-search-field.js +0 -1
- package/lib/ui/app/components/ui/warning-message.js +0 -1
- package/lib/ui/index.js +0 -34
- package/lib/ui/package.json +0 -13
- package/public/assets/fonts/Inter-Bold.woff +0 -0
- package/public/assets/fonts/Inter-Bold.woff2 +0 -0
- package/public/assets/fonts/Inter-Regular.woff +0 -0
- package/public/assets/fonts/Inter-Regular.woff2 +0 -0
- package/tests/helpers/trigger-port.js +0 -6
- /package/app/{app.js → app.ts} +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure-triangle.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/disclosure.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/draggable-column.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/open-links-in-new-window.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/resizable-column.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/send-to-console.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-divider.hbs +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/toolbar-search-field.js +0 -0
- /package/{lib/ui/addon/components → app/components/ui}/warning-message.hbs +0 -0
- /package/app/controllers/{info.js → info.ts} +0 -0
- /package/app/services/adapters/{firefox.js → firefox.ts} +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_goto-source.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/_warning.scss +0 -0
- /package/{lib/ui/addon/styles → app/styles/ui}/toolbar/_divider.scss +0 -0
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
:root {
|
|
3
3
|
/* stylelint-disable value-keyword-case */
|
|
4
|
-
--font-sans-serif:
|
|
5
|
-
|
|
4
|
+
--font-sans-serif: system-ui, sans-serif, "Apple Color Emoji",
|
|
5
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
6
|
+
--font-monospace: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo,
|
|
7
|
+
Consolas, "DejaVu Sans Mono", monospace, "Apple Color Emoji",
|
|
8
|
+
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
6
9
|
/* stylelint-enable value-keyword-case */
|
|
7
10
|
--inherit: inherit;
|
|
8
11
|
--unit0: 0;
|
|
@@ -66,7 +69,7 @@ code {
|
|
|
66
69
|
font-family: var(--font-monospace);
|
|
67
70
|
}
|
|
68
71
|
|
|
69
|
-
.theme
|
|
72
|
+
.theme-light {
|
|
70
73
|
--base00: #ffffff;
|
|
71
74
|
--base01: #f3f3f3;
|
|
72
75
|
--base02: #ededed;
|
|
@@ -87,7 +90,7 @@ code {
|
|
|
87
90
|
--spec01: #ff0000;
|
|
88
91
|
--spec02: #990000;
|
|
89
92
|
--spec03: #000099;
|
|
90
|
-
--spec04: #
|
|
93
|
+
--spec04: #3f81ee;
|
|
91
94
|
--spec05: #7c027c;
|
|
92
95
|
--spec06: #ecf1fa;
|
|
93
96
|
--spec07: #cd61a7;
|
|
@@ -96,56 +99,56 @@ code {
|
|
|
96
99
|
--white: #ffffff;
|
|
97
100
|
--inherit: inherit;
|
|
98
101
|
--transparent: transparent;
|
|
99
|
-
--focus: #
|
|
102
|
+
--focus: #3f81ee;
|
|
100
103
|
--focus-text: var(--white);
|
|
101
|
-
--component-name: #
|
|
102
|
-
--component-brackets-selected:
|
|
103
|
-
--component-attr: #
|
|
104
|
-
--component-highlighted-bg: #
|
|
105
|
-
--pill-bg:
|
|
106
|
-
--pill-bg-active:
|
|
104
|
+
--component-name: #1171e8;
|
|
105
|
+
--component-brackets-selected: rgb(255 255 255 / 40%);
|
|
106
|
+
--component-attr: #db00a9;
|
|
107
|
+
--component-highlighted-bg: #f2f2f3;
|
|
108
|
+
--pill-bg: rgb(0 0 0 / 10%);
|
|
109
|
+
--pill-bg-active: rgb(255 255 255 / 30%);
|
|
107
110
|
--warning-text: #735c0f;
|
|
108
111
|
--tracked-icon-bg: var(--spec03);
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
.theme
|
|
114
|
+
.theme-dark {
|
|
112
115
|
--base00: #242424;
|
|
113
116
|
--base01: #242424;
|
|
114
117
|
--base02: #121212;
|
|
115
118
|
--base03: #292929;
|
|
116
|
-
--base04: #
|
|
119
|
+
--base04: #2e2e2e;
|
|
117
120
|
--base05: #353535;
|
|
118
|
-
--base06: #
|
|
119
|
-
--base07: #
|
|
121
|
+
--base06: #4c4c4c;
|
|
122
|
+
--base07: #5c5c5c;
|
|
120
123
|
--base08: #777777;
|
|
121
124
|
--base09: #888888;
|
|
122
|
-
--base10: #
|
|
125
|
+
--base10: #8c8c8c;
|
|
123
126
|
--base11: #989898;
|
|
124
|
-
--base12: #
|
|
125
|
-
--base13: #
|
|
126
|
-
--base14: #
|
|
127
|
-
--base15: #
|
|
128
|
-
--spec00: #
|
|
129
|
-
--spec01: #
|
|
130
|
-
--spec02: #
|
|
131
|
-
--spec03: #
|
|
132
|
-
--spec04: #
|
|
133
|
-
--spec05: #
|
|
134
|
-
--spec06: #
|
|
127
|
+
--base12: #aaaaaa;
|
|
128
|
+
--base13: #bfbfbf;
|
|
129
|
+
--base14: #cccccc;
|
|
130
|
+
--base15: #dddddd;
|
|
131
|
+
--spec00: #00013d;
|
|
132
|
+
--spec01: #00ffff;
|
|
133
|
+
--spec02: #66ffff;
|
|
134
|
+
--spec03: #ffff66;
|
|
135
|
+
--spec04: #c07e11;
|
|
136
|
+
--spec05: #83fd83;
|
|
137
|
+
--spec06: #130e05;
|
|
135
138
|
--spec07: #cd61a7;
|
|
136
139
|
--spec08: #7fb56d;
|
|
137
140
|
--spec09: #328509;
|
|
138
141
|
--white: #ffffff;
|
|
139
142
|
--inherit: inherit;
|
|
140
143
|
--transparent: transparent;
|
|
141
|
-
--focus: #
|
|
144
|
+
--focus: #2270ec;
|
|
142
145
|
--focus-text: var(--white);
|
|
143
|
-
--component-name: #
|
|
144
|
-
--component-brackets-selected:
|
|
145
|
-
--component-attr: #
|
|
146
|
+
--component-name: #77beff;
|
|
147
|
+
--component-brackets-selected: rgb(255 255 255 / 40%);
|
|
148
|
+
--component-attr: #fe7ae9;
|
|
146
149
|
--component-highlighted-bg: #333333;
|
|
147
|
-
--pill-bg:
|
|
148
|
-
--pill-bg-active:
|
|
150
|
+
--pill-bg: rgb(255 255 255 / 20%);
|
|
151
|
+
--pill-bg-active: rgb(255 255 255 / 30%);
|
|
149
152
|
--warning-text: #8ca3f0;
|
|
150
153
|
--tracked-icon-bg: #5e5eb5;
|
|
151
154
|
}
|
|
@@ -167,7 +170,6 @@ code {
|
|
|
167
170
|
}
|
|
168
171
|
|
|
169
172
|
.sticky {
|
|
170
|
-
position: -webkit-sticky;
|
|
171
173
|
position: sticky;
|
|
172
174
|
}
|
|
173
175
|
|
|
@@ -188,10 +190,7 @@ code {
|
|
|
188
190
|
}
|
|
189
191
|
|
|
190
192
|
.inset-0 {
|
|
191
|
-
|
|
192
|
-
left: 0;
|
|
193
|
-
right: 0;
|
|
194
|
-
top: 0;
|
|
193
|
+
inset: 0;
|
|
195
194
|
}
|
|
196
195
|
|
|
197
196
|
.overflow-auto {
|
|
@@ -873,7 +872,7 @@ code {
|
|
|
873
872
|
}
|
|
874
873
|
|
|
875
874
|
.fill-current {
|
|
876
|
-
fill:
|
|
875
|
+
fill: currentcolor;
|
|
877
876
|
}
|
|
878
877
|
|
|
879
878
|
.cursor-default {
|
|
@@ -1053,34 +1052,31 @@ code {
|
|
|
1053
1052
|
* and will extend past the overflow point.
|
|
1054
1053
|
*/
|
|
1055
1054
|
}
|
|
1056
|
-
.component-tree-
|
|
1055
|
+
.component-tree-item-actions {
|
|
1057
1056
|
min-height: 22px;
|
|
1058
1057
|
opacity: 0;
|
|
1059
1058
|
right: var(--unit1);
|
|
1060
1059
|
/**
|
|
1061
|
-
*
|
|
1060
|
+
* -actions is position:sticky so it is always visible and on top.
|
|
1062
1061
|
* Due to margins and padding on various elements, it was
|
|
1063
|
-
* difficult to keep the background of
|
|
1062
|
+
* difficult to keep the background of -actions on top
|
|
1064
1063
|
* of .tree-item text and align with the .tree-item background.
|
|
1065
|
-
* This pseudo element is 100% of the width of
|
|
1064
|
+
* This pseudo element is 100% of the width of -actions plus
|
|
1066
1065
|
* a little extra to guarantee alignment.
|
|
1067
1066
|
*/
|
|
1068
1067
|
/**
|
|
1069
|
-
*
|
|
1068
|
+
* -actions is position:sticky so it is always visible and on top.
|
|
1070
1069
|
* :before is a gradient to soften the edge when overlaying text.
|
|
1071
1070
|
*/
|
|
1072
1071
|
}
|
|
1073
|
-
.component-tree-
|
|
1072
|
+
.component-tree-item-actions::after {
|
|
1074
1073
|
border-bottom-right-radius: var(--unit1);
|
|
1075
1074
|
border-top-right-radius: var(--unit1);
|
|
1076
|
-
|
|
1075
|
+
inset: 0 calc(var(--unit1) * -1);
|
|
1077
1076
|
content: "";
|
|
1078
|
-
left: calc(var(--unit1) * -1);
|
|
1079
1077
|
position: absolute;
|
|
1080
|
-
right: calc(var(--unit1) * -1);
|
|
1081
|
-
top: 0;
|
|
1082
1078
|
}
|
|
1083
|
-
.component-tree-
|
|
1079
|
+
.component-tree-item-actions::before {
|
|
1084
1080
|
bottom: 0;
|
|
1085
1081
|
content: "";
|
|
1086
1082
|
left: calc(var(--unit3) * -1);
|
|
@@ -1088,12 +1084,12 @@ code {
|
|
|
1088
1084
|
top: 0;
|
|
1089
1085
|
width: var(--unit3);
|
|
1090
1086
|
}
|
|
1091
|
-
.component-tree-
|
|
1087
|
+
.component-tree-item-action:focus {
|
|
1092
1088
|
outline: none;
|
|
1093
1089
|
}
|
|
1094
|
-
.component-tree-
|
|
1095
|
-
.component-tree-
|
|
1096
|
-
.component-tree-
|
|
1090
|
+
.component-tree-item-action polygon,
|
|
1091
|
+
.component-tree-item-action rect,
|
|
1092
|
+
.component-tree-item-action path {
|
|
1097
1093
|
fill: var(--base15);
|
|
1098
1094
|
}
|
|
1099
1095
|
.component-tree-item .component-tree-item-background {
|
|
@@ -1105,34 +1101,34 @@ code {
|
|
|
1105
1101
|
.component-tree-item:hover .component-tree-item-background {
|
|
1106
1102
|
background-color: var(--component-highlighted-bg);
|
|
1107
1103
|
}
|
|
1108
|
-
.component-tree-item:hover .component-tree-
|
|
1104
|
+
.component-tree-item:hover .component-tree-item-actions {
|
|
1109
1105
|
opacity: 1;
|
|
1110
1106
|
}
|
|
1111
|
-
.component-tree-item:hover .component-tree-
|
|
1107
|
+
.component-tree-item:hover .component-tree-item-actions::after {
|
|
1112
1108
|
background-color: var(--component-highlighted-bg);
|
|
1113
1109
|
}
|
|
1114
|
-
.component-tree-item:hover .component-tree-
|
|
1110
|
+
.component-tree-item:hover .component-tree-item-actions::before {
|
|
1115
1111
|
background: linear-gradient(to right, var(--transparent), var(--component-highlighted-bg) 75%);
|
|
1116
1112
|
}
|
|
1117
1113
|
|
|
1118
|
-
.component-tree-
|
|
1114
|
+
.component-tree-item-tag .component-name {
|
|
1119
1115
|
color: var(--component-name);
|
|
1120
1116
|
}
|
|
1121
|
-
.component-tree-
|
|
1117
|
+
.component-tree-item-tag .bracket-token {
|
|
1122
1118
|
color: var(--base09);
|
|
1123
1119
|
}
|
|
1124
|
-
.component-tree-
|
|
1120
|
+
.component-tree-item-tag .key-token {
|
|
1125
1121
|
color: var(--component-attr);
|
|
1126
1122
|
}
|
|
1127
|
-
.component-tree-
|
|
1123
|
+
.component-tree-item-tag .value-token {
|
|
1128
1124
|
color: var(--spec03);
|
|
1129
1125
|
}
|
|
1130
|
-
.component-tree-
|
|
1126
|
+
.component-tree-item-tag .arg-value-token {
|
|
1131
1127
|
background: none;
|
|
1132
1128
|
border: none;
|
|
1133
1129
|
padding: 0 2px;
|
|
1134
1130
|
}
|
|
1135
|
-
.component-tree-
|
|
1131
|
+
.component-tree-item-tag .arg-value-token:hover {
|
|
1136
1132
|
background-color: var(--spec03);
|
|
1137
1133
|
color: var(--base00);
|
|
1138
1134
|
cursor: pointer;
|
|
@@ -1142,55 +1138,55 @@ code {
|
|
|
1142
1138
|
* Modifier
|
|
1143
1139
|
* highlighted - the component currently being previewed
|
|
1144
1140
|
*/
|
|
1145
|
-
.component-tree-item.component-tree-item
|
|
1141
|
+
.component-tree-item.component-tree-item-highlighted {
|
|
1146
1142
|
background-color: var(--component-highlighted-bg);
|
|
1147
1143
|
border-radius: 0;
|
|
1148
1144
|
}
|
|
1149
1145
|
|
|
1150
|
-
.component-tree-item
|
|
1151
|
-
.component-tree-item
|
|
1152
|
-
.component-tree-item
|
|
1153
|
-
.component-tree-item
|
|
1146
|
+
.component-tree-item-pinned .component-tree-item-tag .component-name,
|
|
1147
|
+
.component-tree-item-pinned .component-tree-item-tag .bracket-token,
|
|
1148
|
+
.component-tree-item-pinned .component-tree-item-tag .key-token,
|
|
1149
|
+
.component-tree-item-pinned .component-tree-item-tag .value-token {
|
|
1154
1150
|
color: var(--focus-text);
|
|
1155
1151
|
}
|
|
1156
1152
|
|
|
1157
|
-
.component-tree-
|
|
1158
|
-
.component-tree-
|
|
1159
|
-
.component-tree-item-
|
|
1160
|
-
.component-tree-item-
|
|
1153
|
+
.component-tree-item-bracket::before,
|
|
1154
|
+
.component-tree-item-bracket::after,
|
|
1155
|
+
.component-tree-item-classic-bracket::before,
|
|
1156
|
+
.component-tree-item-classic-bracket::after {
|
|
1161
1157
|
color: var(--base09);
|
|
1162
1158
|
}
|
|
1163
1159
|
|
|
1164
|
-
.component-tree-
|
|
1160
|
+
.component-tree-item-has-modifier::after {
|
|
1165
1161
|
content: "" !important;
|
|
1166
1162
|
}
|
|
1167
1163
|
|
|
1168
|
-
.component-tree-
|
|
1164
|
+
.component-tree-item-closing::before {
|
|
1169
1165
|
content: ">";
|
|
1170
1166
|
margin-left: -13px;
|
|
1171
1167
|
}
|
|
1172
1168
|
|
|
1173
|
-
.component-tree-
|
|
1169
|
+
.component-tree-item-self-closing::before {
|
|
1174
1170
|
content: "/>";
|
|
1175
1171
|
}
|
|
1176
1172
|
|
|
1177
|
-
.component-tree-
|
|
1173
|
+
.component-tree-item-bracket::before {
|
|
1178
1174
|
content: "<";
|
|
1179
1175
|
}
|
|
1180
1176
|
|
|
1181
|
-
.component-tree-
|
|
1177
|
+
.component-tree-item-bracket::after {
|
|
1182
1178
|
content: ">";
|
|
1183
1179
|
}
|
|
1184
1180
|
|
|
1185
|
-
.component-tree-
|
|
1181
|
+
.component-tree-item-bracket.component-tree-item-bracket-self-closing::after {
|
|
1186
1182
|
content: "/>";
|
|
1187
1183
|
}
|
|
1188
1184
|
|
|
1189
|
-
.component-tree-item-
|
|
1185
|
+
.component-tree-item-classic-bracket::before {
|
|
1190
1186
|
content: "{{";
|
|
1191
1187
|
}
|
|
1192
1188
|
|
|
1193
|
-
.component-tree-item-
|
|
1189
|
+
.component-tree-item-classic-bracket::after {
|
|
1194
1190
|
content: "}}";
|
|
1195
1191
|
}
|
|
1196
1192
|
|
|
@@ -1198,43 +1194,43 @@ code {
|
|
|
1198
1194
|
* Modifier
|
|
1199
1195
|
* selected - user clicked on component
|
|
1200
1196
|
*/
|
|
1201
|
-
.component-tree-item.component-tree-item
|
|
1197
|
+
.component-tree-item.component-tree-item-pinned {
|
|
1202
1198
|
background: var(--focus);
|
|
1203
1199
|
color: var(--focus-text);
|
|
1204
1200
|
}
|
|
1205
|
-
.component-tree-item.component-tree-item
|
|
1201
|
+
.component-tree-item.component-tree-item-pinned:hover {
|
|
1206
1202
|
background: var(--focus);
|
|
1207
1203
|
}
|
|
1208
|
-
.component-tree-item.component-tree-item
|
|
1204
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-background {
|
|
1209
1205
|
background: var(--focus);
|
|
1210
1206
|
}
|
|
1211
|
-
.component-tree-item.component-tree-item
|
|
1207
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-actions {
|
|
1212
1208
|
opacity: 1;
|
|
1213
1209
|
}
|
|
1214
|
-
.component-tree-item.component-tree-item
|
|
1210
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-actions::after {
|
|
1215
1211
|
background: var(--focus);
|
|
1216
1212
|
}
|
|
1217
|
-
.component-tree-item.component-tree-item
|
|
1213
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-actions::before {
|
|
1218
1214
|
background: linear-gradient(to right, var(--transparent), var(--focus) 75%);
|
|
1219
1215
|
}
|
|
1220
|
-
.component-tree-item.component-tree-item
|
|
1221
|
-
.component-tree-item.component-tree-item
|
|
1216
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-bracket::before,
|
|
1217
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-bracket::after {
|
|
1222
1218
|
color: var(--component-backets-selected);
|
|
1223
1219
|
}
|
|
1224
|
-
.component-tree-item.component-tree-item
|
|
1225
|
-
.component-tree-item.component-tree-item
|
|
1220
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-expand,
|
|
1221
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-action {
|
|
1226
1222
|
opacity: 1;
|
|
1227
1223
|
}
|
|
1228
|
-
.component-tree-item.component-tree-item
|
|
1229
|
-
.component-tree-item.component-tree-item
|
|
1230
|
-
.component-tree-item.component-tree-item
|
|
1231
|
-
.component-tree-item.component-tree-item
|
|
1232
|
-
.component-tree-item.component-tree-item
|
|
1233
|
-
.component-tree-item.component-tree-item
|
|
1224
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-expand polygon,
|
|
1225
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-expand rect,
|
|
1226
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-expand path,
|
|
1227
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-action polygon,
|
|
1228
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-action rect,
|
|
1229
|
+
.component-tree-item.component-tree-item-pinned .component-tree-item-action path {
|
|
1234
1230
|
fill: var(--focus-text);
|
|
1235
1231
|
}
|
|
1236
1232
|
|
|
1237
|
-
.component-tree-item
|
|
1233
|
+
.component-tree-item-component {
|
|
1238
1234
|
color: var(--base09);
|
|
1239
1235
|
}
|
|
1240
1236
|
|
|
@@ -1256,13 +1252,13 @@ code {
|
|
|
1256
1252
|
padding-left: 70px;
|
|
1257
1253
|
}
|
|
1258
1254
|
|
|
1259
|
-
.
|
|
1255
|
+
.dropdown-arrow {
|
|
1260
1256
|
right: 5px;
|
|
1261
1257
|
top: 50%;
|
|
1262
1258
|
transform: translateY(-50%);
|
|
1263
1259
|
}
|
|
1264
1260
|
|
|
1265
|
-
.
|
|
1261
|
+
.dropdown-collapsed-icon {
|
|
1266
1262
|
left: 12px;
|
|
1267
1263
|
top: 7px;
|
|
1268
1264
|
}
|
|
@@ -1274,15 +1270,15 @@ code {
|
|
|
1274
1270
|
It could be the object's own properties
|
|
1275
1271
|
or a mixin the object extends
|
|
1276
1272
|
*/
|
|
1277
|
-
.
|
|
1273
|
+
.mixin-name {
|
|
1278
1274
|
border-bottom: 1px solid var(--base03);
|
|
1279
1275
|
padding: 4px 2px 4px 22px;
|
|
1280
1276
|
z-index: 1;
|
|
1281
1277
|
}
|
|
1282
|
-
.
|
|
1278
|
+
.mixin-name:active {
|
|
1283
1279
|
background-color: var(--base02);
|
|
1284
1280
|
}
|
|
1285
|
-
.
|
|
1281
|
+
.mixin-name::before {
|
|
1286
1282
|
color: var(--base10);
|
|
1287
1283
|
content: "▶";
|
|
1288
1284
|
font-size: 75%;
|
|
@@ -1294,112 +1290,112 @@ code {
|
|
|
1294
1290
|
transition: all 0.1s;
|
|
1295
1291
|
}
|
|
1296
1292
|
|
|
1297
|
-
.
|
|
1293
|
+
.mixin-props-no .mixin-name::before {
|
|
1298
1294
|
opacity: 0;
|
|
1299
1295
|
}
|
|
1300
1296
|
|
|
1301
|
-
.
|
|
1297
|
+
.mixin-state-expanded .mixin-name::before {
|
|
1302
1298
|
transform: rotate(90deg);
|
|
1303
1299
|
}
|
|
1304
1300
|
|
|
1305
|
-
.
|
|
1301
|
+
.mixin-properties {
|
|
1306
1302
|
border-bottom: 1px solid var(--base03);
|
|
1307
1303
|
padding: 3px 0 5px;
|
|
1308
1304
|
}
|
|
1309
1305
|
|
|
1310
|
-
.
|
|
1306
|
+
.mixin-property {
|
|
1311
1307
|
min-height: 19px;
|
|
1312
1308
|
padding-bottom: 1px;
|
|
1313
1309
|
padding-top: 1px;
|
|
1314
1310
|
}
|
|
1315
|
-
.
|
|
1311
|
+
.mixin-property button {
|
|
1316
1312
|
background: none;
|
|
1317
1313
|
border: none;
|
|
1318
1314
|
margin: 0;
|
|
1319
1315
|
padding: 0;
|
|
1320
1316
|
}
|
|
1321
|
-
.
|
|
1317
|
+
.mixin-property .pad {
|
|
1322
1318
|
flex-shrink: 0;
|
|
1323
1319
|
width: 22px;
|
|
1324
1320
|
}
|
|
1325
|
-
.
|
|
1326
|
-
.
|
|
1321
|
+
.mixin-property .mixin-calc-btn svg path,
|
|
1322
|
+
.mixin-property .mixin-calc-btn svg circle {
|
|
1327
1323
|
fill: var(--spec07);
|
|
1328
1324
|
}
|
|
1329
|
-
.
|
|
1325
|
+
.mixin-property .mixin-send-btn {
|
|
1330
1326
|
opacity: 0;
|
|
1331
1327
|
padding-right: 6px;
|
|
1332
1328
|
}
|
|
1333
|
-
.
|
|
1329
|
+
.mixin-property .mixin-cp-toggle {
|
|
1334
1330
|
outline: none;
|
|
1335
1331
|
width: 22px;
|
|
1336
1332
|
}
|
|
1337
|
-
.
|
|
1333
|
+
.mixin-property .mixin-cp-toggle svg {
|
|
1338
1334
|
transform: rotate(-90deg) translateY(1px);
|
|
1339
1335
|
transition: all 0.2s;
|
|
1340
1336
|
}
|
|
1341
|
-
.
|
|
1337
|
+
.mixin-property .mixin-cp-toggle-expanded svg {
|
|
1342
1338
|
transform: rotate(0deg);
|
|
1343
1339
|
}
|
|
1344
1340
|
|
|
1345
1341
|
/* Buttons */
|
|
1346
|
-
.
|
|
1342
|
+
.mixin-property-overridden-by {
|
|
1347
1343
|
display: none;
|
|
1348
1344
|
}
|
|
1349
1345
|
|
|
1350
|
-
.
|
|
1346
|
+
.mixin-property-name {
|
|
1351
1347
|
max-width: 50%;
|
|
1352
1348
|
}
|
|
1353
1349
|
|
|
1354
|
-
.
|
|
1350
|
+
.mixin-property-value {
|
|
1355
1351
|
flex: 1;
|
|
1356
1352
|
min-height: 14px;
|
|
1357
1353
|
}
|
|
1358
1354
|
|
|
1359
|
-
.
|
|
1355
|
+
.mixin-property-value-txt {
|
|
1360
1356
|
border: 1px solid var(--base09);
|
|
1361
1357
|
}
|
|
1362
1358
|
|
|
1363
|
-
.
|
|
1359
|
+
.mixin-property .type-function {
|
|
1364
1360
|
color: var(--base08);
|
|
1365
1361
|
}
|
|
1366
1362
|
|
|
1367
|
-
.
|
|
1363
|
+
.mixin-property .type-object {
|
|
1368
1364
|
color: var(--base11);
|
|
1369
1365
|
}
|
|
1370
1366
|
|
|
1371
|
-
.
|
|
1372
|
-
.
|
|
1373
|
-
.
|
|
1367
|
+
.mixin-property .type-ember-object,
|
|
1368
|
+
.mixin-property .type-object,
|
|
1369
|
+
.mixin-property .type-array {
|
|
1374
1370
|
cursor: pointer;
|
|
1375
1371
|
}
|
|
1376
1372
|
|
|
1377
|
-
.
|
|
1378
|
-
.
|
|
1373
|
+
.mixin-property .type-null,
|
|
1374
|
+
.mixin-property .type-boolean {
|
|
1379
1375
|
color: var(--spec03);
|
|
1380
1376
|
}
|
|
1381
1377
|
|
|
1382
|
-
.
|
|
1378
|
+
.mixin-property .type-descriptor {
|
|
1383
1379
|
color: var(--spec02);
|
|
1384
1380
|
cursor: pointer;
|
|
1385
1381
|
}
|
|
1386
1382
|
|
|
1387
|
-
.
|
|
1383
|
+
.mixin-property .type-service {
|
|
1388
1384
|
color: var(--spec09);
|
|
1389
1385
|
}
|
|
1390
1386
|
|
|
1391
|
-
.
|
|
1387
|
+
.mixin-property:not(.mixin-property-state-overridden):hover {
|
|
1392
1388
|
background-color: var(--base01);
|
|
1393
1389
|
}
|
|
1394
1390
|
|
|
1395
|
-
.
|
|
1391
|
+
.mixin-property-state-overridden:hover .mixin-property-overridden-by {
|
|
1396
1392
|
display: inline;
|
|
1397
1393
|
}
|
|
1398
1394
|
|
|
1399
|
-
.
|
|
1395
|
+
.mixin-property:not(.mixin-property-state-overridden):hover .mixin-send-btn {
|
|
1400
1396
|
opacity: 1;
|
|
1401
1397
|
}
|
|
1402
|
-
.
|
|
1398
|
+
.mixin-property:not(.mixin-property-state-overridden):hover .mixin-send-btn:active {
|
|
1403
1399
|
opacity: 0.5;
|
|
1404
1400
|
}
|
|
1405
1401
|
|
|
@@ -1411,16 +1407,16 @@ code {
|
|
|
1411
1407
|
border-bottom: 1px solid var(--base03);
|
|
1412
1408
|
min-height: 30px;
|
|
1413
1409
|
}
|
|
1414
|
-
.object-inspector-toolbar.toolbar .
|
|
1410
|
+
.object-inspector-toolbar.toolbar .toolbar-radio-first {
|
|
1415
1411
|
margin-left: 7px;
|
|
1416
1412
|
}
|
|
1417
1413
|
|
|
1418
|
-
.
|
|
1414
|
+
.mixin-property-dependency-list {
|
|
1419
1415
|
margin-bottom: 5px;
|
|
1420
1416
|
margin-top: 2px;
|
|
1421
1417
|
padding-top: 2px;
|
|
1422
1418
|
}
|
|
1423
|
-
.
|
|
1419
|
+
.mixin-property-dependency-list > svg {
|
|
1424
1420
|
height: 10px;
|
|
1425
1421
|
left: 28px;
|
|
1426
1422
|
position: absolute;
|
|
@@ -1428,11 +1424,11 @@ code {
|
|
|
1428
1424
|
width: 19px;
|
|
1429
1425
|
}
|
|
1430
1426
|
|
|
1431
|
-
.
|
|
1427
|
+
.mixin-property-dependency-item {
|
|
1432
1428
|
margin-bottom: 2px;
|
|
1433
1429
|
margin-left: 55px;
|
|
1434
1430
|
}
|
|
1435
|
-
.
|
|
1431
|
+
.mixin-property-dependency-item::before {
|
|
1436
1432
|
background-color: var(--base08);
|
|
1437
1433
|
content: "";
|
|
1438
1434
|
height: 8px;
|
|
@@ -1441,77 +1437,84 @@ code {
|
|
|
1441
1437
|
top: -5px;
|
|
1442
1438
|
width: 1px;
|
|
1443
1439
|
}
|
|
1444
|
-
.
|
|
1440
|
+
.mixin-property-dependency-item svg {
|
|
1445
1441
|
bottom: 2px;
|
|
1446
1442
|
left: -13px;
|
|
1447
1443
|
position: absolute;
|
|
1448
1444
|
}
|
|
1449
|
-
.
|
|
1445
|
+
.mixin-property-dependency-item svg ellipse {
|
|
1450
1446
|
fill: var(--base00);
|
|
1451
1447
|
stroke: var(--base08);
|
|
1452
1448
|
}
|
|
1453
1449
|
|
|
1454
|
-
.
|
|
1450
|
+
.mixin-property-dependency-name.subkey {
|
|
1455
1451
|
left: -11px;
|
|
1456
1452
|
position: relative;
|
|
1457
1453
|
}
|
|
1458
1454
|
|
|
1459
|
-
.
|
|
1455
|
+
.mixin-property-dependency-item:first-child::before {
|
|
1460
1456
|
display: none;
|
|
1461
1457
|
}
|
|
1462
1458
|
|
|
1463
|
-
.
|
|
1459
|
+
.mixin-property-icon-container {
|
|
1464
1460
|
width: 22px;
|
|
1465
1461
|
}
|
|
1466
1462
|
|
|
1467
|
-
.
|
|
1463
|
+
.mixin-property-icon {
|
|
1468
1464
|
height: 17px;
|
|
1469
1465
|
line-height: 17px;
|
|
1470
1466
|
width: 17px;
|
|
1471
1467
|
}
|
|
1472
1468
|
|
|
1473
|
-
.
|
|
1469
|
+
.mixin-property-icon-service {
|
|
1474
1470
|
background-color: var(--spec08);
|
|
1475
1471
|
}
|
|
1476
|
-
.
|
|
1472
|
+
.mixin-property-icon-service::before {
|
|
1477
1473
|
content: "S";
|
|
1478
1474
|
}
|
|
1479
1475
|
|
|
1480
|
-
.
|
|
1476
|
+
.mixin-property-icon-computed {
|
|
1481
1477
|
background-color: var(--spec07);
|
|
1482
1478
|
}
|
|
1483
|
-
.
|
|
1479
|
+
.mixin-property-icon-computed::before {
|
|
1484
1480
|
content: "C";
|
|
1485
1481
|
}
|
|
1486
1482
|
|
|
1487
|
-
.
|
|
1483
|
+
.mixin-property-icon-property {
|
|
1488
1484
|
background-color: var(--base06);
|
|
1489
1485
|
}
|
|
1490
|
-
.
|
|
1486
|
+
.mixin-property-icon-property::before {
|
|
1491
1487
|
content: "P";
|
|
1492
1488
|
}
|
|
1493
1489
|
|
|
1494
|
-
.
|
|
1490
|
+
.mixin-property-icon-getter {
|
|
1495
1491
|
background-color: var(--spec07);
|
|
1496
1492
|
}
|
|
1497
|
-
.
|
|
1493
|
+
.mixin-property-icon-getter::before {
|
|
1498
1494
|
content: "G";
|
|
1499
1495
|
}
|
|
1500
1496
|
|
|
1501
|
-
.
|
|
1497
|
+
.mixin-property-icon-function {
|
|
1502
1498
|
background-color: var(--base08);
|
|
1503
1499
|
}
|
|
1504
|
-
.
|
|
1500
|
+
.mixin-property-icon-function::before {
|
|
1505
1501
|
content: "ƒ";
|
|
1506
1502
|
}
|
|
1507
1503
|
|
|
1508
|
-
.
|
|
1504
|
+
.mixin-property-icon-tracked {
|
|
1509
1505
|
background-color: var(--tracked-icon-bg);
|
|
1510
1506
|
}
|
|
1511
|
-
.
|
|
1507
|
+
.mixin-property-icon-tracked::before {
|
|
1512
1508
|
content: "T";
|
|
1513
1509
|
}
|
|
1514
1510
|
|
|
1511
|
+
.mixin-property-icon-owner {
|
|
1512
|
+
background-color: var(--spec02);
|
|
1513
|
+
}
|
|
1514
|
+
.mixin-property-icon-owner::before {
|
|
1515
|
+
content: "O";
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1515
1518
|
.route-cell-objects .is-link {
|
|
1516
1519
|
margin-right: 2px;
|
|
1517
1520
|
}
|
|
@@ -1601,14 +1604,14 @@ code {
|
|
|
1601
1604
|
.ember-table th.is-sortable:hover {
|
|
1602
1605
|
background: var(--base04);
|
|
1603
1606
|
}
|
|
1604
|
-
.ember-table .et-sort-indicator
|
|
1607
|
+
.ember-table .et-sort-indicator::before {
|
|
1605
1608
|
content: "▾";
|
|
1606
1609
|
display: inline-block;
|
|
1607
1610
|
font-size: 1.4rem;
|
|
1608
1611
|
line-height: 1;
|
|
1609
1612
|
transform: rotate(0);
|
|
1610
1613
|
}
|
|
1611
|
-
.ember-table .et-sort-indicator.is-ascending
|
|
1614
|
+
.ember-table .et-sort-indicator.is-ascending::before {
|
|
1612
1615
|
transform: rotate(180deg);
|
|
1613
1616
|
}
|
|
1614
1617
|
.ember-table .et-header-resize-area {
|
|
@@ -1691,4 +1694,842 @@ code {
|
|
|
1691
1694
|
.ember-table tr.is-selected.is-selectable:hover td {
|
|
1692
1695
|
background: var(--focus);
|
|
1693
1696
|
color: var(--focus-text);
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
.disclosure-triangle {
|
|
1700
|
+
padding: 0 2px;
|
|
1701
|
+
}
|
|
1702
|
+
.disclosure-triangle:focus {
|
|
1703
|
+
outline: none;
|
|
1704
|
+
}
|
|
1705
|
+
.disclosure-triangle svg {
|
|
1706
|
+
transition-duration: 0.1s;
|
|
1707
|
+
transition-property: transform;
|
|
1708
|
+
}
|
|
1709
|
+
.disclosure-triangle.collapsed svg {
|
|
1710
|
+
transform: rotate(-90deg);
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
/**
|
|
1714
|
+
DRAG-HANDLE
|
|
1715
|
+
===========
|
|
1716
|
+
The drag handle used for resizing elements
|
|
1717
|
+
*/
|
|
1718
|
+
:root {
|
|
1719
|
+
--drag-handle-width: 6px;
|
|
1720
|
+
--drag-handle-active-width: 60px;
|
|
1721
|
+
}
|
|
1722
|
+
|
|
1723
|
+
.drag-handle {
|
|
1724
|
+
width: var(--drag-handle-width);
|
|
1725
|
+
z-index: 500;
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
.drag-handle-right {
|
|
1729
|
+
margin-right: calc(var(--drag-handle-width) / 2 * -1);
|
|
1730
|
+
}
|
|
1731
|
+
|
|
1732
|
+
.drag-handle-left {
|
|
1733
|
+
margin-left: calc(var(--drag-handle-width) / 2 * -1);
|
|
1734
|
+
}
|
|
1735
|
+
|
|
1736
|
+
.drag-handle-border {
|
|
1737
|
+
border-left: 1px solid var(--base06);
|
|
1738
|
+
margin-left: calc(var(--drag-handle-width) / 2);
|
|
1739
|
+
width: 1px;
|
|
1740
|
+
}
|
|
1741
|
+
|
|
1742
|
+
.drag-handle:active {
|
|
1743
|
+
width: var(--drag-handle-active-width);
|
|
1744
|
+
}
|
|
1745
|
+
.drag-handle:active.drag-handle-right {
|
|
1746
|
+
margin-right: calc(var(--drag-handle-active-width) / 2 * -1);
|
|
1747
|
+
}
|
|
1748
|
+
.drag-handle:active.drag-handle-left {
|
|
1749
|
+
margin-left: calc(var(--drag-handle-active-width) / 2 * -1);
|
|
1750
|
+
}
|
|
1751
|
+
.drag-handle:active .drag-handle-border {
|
|
1752
|
+
margin-left: calc(var(--drag-handle-active-width) / 2);
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.drag-handle-faded {
|
|
1756
|
+
opacity: 0.3;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
.empty-message svg path {
|
|
1760
|
+
fill: var(--base07);
|
|
1761
|
+
}
|
|
1762
|
+
|
|
1763
|
+
.empty-message-content {
|
|
1764
|
+
max-width: 40rem;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
/**
|
|
1768
|
+
ERROR-PAGE
|
|
1769
|
+
===========
|
|
1770
|
+
An error with possible reasons and solutions.
|
|
1771
|
+
For example: when application is not detected.
|
|
1772
|
+
*/
|
|
1773
|
+
.error-page-content {
|
|
1774
|
+
border: 1px solid var(--base04);
|
|
1775
|
+
width: 530px;
|
|
1776
|
+
}
|
|
1777
|
+
.error-page-content ul {
|
|
1778
|
+
list-style-type: disc;
|
|
1779
|
+
padding-left: var(--unit4);
|
|
1780
|
+
}
|
|
1781
|
+
.error-page-content li {
|
|
1782
|
+
padding: 2px 0;
|
|
1783
|
+
}
|
|
1784
|
+
.error-page-content a {
|
|
1785
|
+
color: var(--spec01);
|
|
1786
|
+
text-decoration: none;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
.error-page-header {
|
|
1790
|
+
border-bottom: 1px solid var(--base04);
|
|
1791
|
+
top: -25px;
|
|
1792
|
+
}
|
|
1793
|
+
.error-page-header .tomster {
|
|
1794
|
+
transform: translateY(90px);
|
|
1795
|
+
flex-shrink: 0;
|
|
1796
|
+
height: 89px;
|
|
1797
|
+
width: 128px;
|
|
1798
|
+
animation: tomster-reveal 0.4s cubic-bezier(0.19, 1, 0.22, 1);
|
|
1799
|
+
animation-delay: 0.75s;
|
|
1800
|
+
animation-fill-mode: forwards;
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
@keyframes tomster-reveal {
|
|
1804
|
+
from {
|
|
1805
|
+
transform: translateY(90px);
|
|
1806
|
+
}
|
|
1807
|
+
to {
|
|
1808
|
+
transform: translateY(0);
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
.error-page-body {
|
|
1812
|
+
border-bottom: 1px solid var(--base04);
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
/* stylelint-disable no-duplicate-selectors */
|
|
1816
|
+
.list {
|
|
1817
|
+
background: var(--base00);
|
|
1818
|
+
box-sizing: border-box;
|
|
1819
|
+
font-size: 1.1rem;
|
|
1820
|
+
height: 100%;
|
|
1821
|
+
overflow: hidden;
|
|
1822
|
+
position: relative;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
.list-content {
|
|
1826
|
+
overflow: scroll;
|
|
1827
|
+
transform: translateZ(0);
|
|
1828
|
+
}
|
|
1829
|
+
|
|
1830
|
+
.list table {
|
|
1831
|
+
border-collapse: separate;
|
|
1832
|
+
border-spacing: 0;
|
|
1833
|
+
left: 0;
|
|
1834
|
+
position: absolute;
|
|
1835
|
+
table-layout: fixed;
|
|
1836
|
+
top: 0;
|
|
1837
|
+
width: 100%;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.list-header {
|
|
1841
|
+
border-bottom: 1px solid var(--base05);
|
|
1842
|
+
height: 30px;
|
|
1843
|
+
overflow: hidden;
|
|
1844
|
+
overflow-y: scroll;
|
|
1845
|
+
position: relative;
|
|
1846
|
+
text-align: left;
|
|
1847
|
+
user-select: none;
|
|
1848
|
+
}
|
|
1849
|
+
.list-header .list-row {
|
|
1850
|
+
background: var(--base00);
|
|
1851
|
+
}
|
|
1852
|
+
.list-header .list-cell {
|
|
1853
|
+
color: var(--inherit);
|
|
1854
|
+
font-weight: normal;
|
|
1855
|
+
opacity: 1;
|
|
1856
|
+
padding: 0;
|
|
1857
|
+
padding-left: 5px;
|
|
1858
|
+
position: relative;
|
|
1859
|
+
}
|
|
1860
|
+
|
|
1861
|
+
.list:not(.list-no-alternate-color) .list-content .list-row {
|
|
1862
|
+
background: var(--base02);
|
|
1863
|
+
}
|
|
1864
|
+
.list:not(.list-no-alternate-color) .list-content .list-row.striped {
|
|
1865
|
+
background: var(--base00);
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
.list.list-css-striping .list-row:nth-child(even) {
|
|
1869
|
+
background: var(--base00);
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
.list-cell-content {
|
|
1873
|
+
width: 100%;
|
|
1874
|
+
}
|
|
1875
|
+
|
|
1876
|
+
.list-cell {
|
|
1877
|
+
box-sizing: border-box;
|
|
1878
|
+
line-height: 30px;
|
|
1879
|
+
min-height: 30px;
|
|
1880
|
+
opacity: 0.7;
|
|
1881
|
+
overflow: hidden;
|
|
1882
|
+
padding-left: 5px;
|
|
1883
|
+
text-overflow: ellipsis;
|
|
1884
|
+
white-space: nowrap;
|
|
1885
|
+
}
|
|
1886
|
+
.list-cell-size-small {
|
|
1887
|
+
flex: none;
|
|
1888
|
+
width: 50px;
|
|
1889
|
+
}
|
|
1890
|
+
.list-cell-size-medium {
|
|
1891
|
+
flex: none;
|
|
1892
|
+
width: 130px;
|
|
1893
|
+
}
|
|
1894
|
+
.list-cell-size-larger {
|
|
1895
|
+
flex: none;
|
|
1896
|
+
width: 350px;
|
|
1897
|
+
}
|
|
1898
|
+
.list-cell-size-large {
|
|
1899
|
+
flex: none;
|
|
1900
|
+
width: 250px;
|
|
1901
|
+
}
|
|
1902
|
+
.list-cell-size-huge {
|
|
1903
|
+
flex: none;
|
|
1904
|
+
width: 450px;
|
|
1905
|
+
}
|
|
1906
|
+
.list-cell-value-numeric {
|
|
1907
|
+
font-family: var(--font-monospace);
|
|
1908
|
+
min-width: 65px;
|
|
1909
|
+
padding-right: 10px;
|
|
1910
|
+
text-align: right;
|
|
1911
|
+
}
|
|
1912
|
+
.list-cell-main {
|
|
1913
|
+
font-weight: bold;
|
|
1914
|
+
}
|
|
1915
|
+
.list-cell-spacer {
|
|
1916
|
+
border: none;
|
|
1917
|
+
flex: none;
|
|
1918
|
+
width: 0;
|
|
1919
|
+
}
|
|
1920
|
+
.list-cell-clickable {
|
|
1921
|
+
cursor: pointer;
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
/**
|
|
1925
|
+
* Content in a cell that should not take the entire
|
|
1926
|
+
* space. Usually because it has a $E after it.
|
|
1927
|
+
*/
|
|
1928
|
+
.list-cell-partial {
|
|
1929
|
+
display: inline-block;
|
|
1930
|
+
float: left;
|
|
1931
|
+
max-width: calc(100% - 40px);
|
|
1932
|
+
overflow: hidden;
|
|
1933
|
+
text-overflow: ellipsis;
|
|
1934
|
+
white-space: nowrap;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.list-cell-partial-clickable {
|
|
1938
|
+
cursor: pointer;
|
|
1939
|
+
}
|
|
1940
|
+
|
|
1941
|
+
.list-cell-partial-size-medium {
|
|
1942
|
+
max-width: calc(100% - 60px);
|
|
1943
|
+
}
|
|
1944
|
+
|
|
1945
|
+
/**
|
|
1946
|
+
* For example a $E icon to the right
|
|
1947
|
+
* of a cell.
|
|
1948
|
+
*/
|
|
1949
|
+
.list-cell-helper {
|
|
1950
|
+
float: right;
|
|
1951
|
+
margin-right: 5px;
|
|
1952
|
+
}
|
|
1953
|
+
|
|
1954
|
+
.list-link {
|
|
1955
|
+
cursor: pointer;
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
.list-row:hover .list-cell {
|
|
1959
|
+
opacity: 1;
|
|
1960
|
+
}
|
|
1961
|
+
.list-row:hover .list-cell-clickable {
|
|
1962
|
+
text-decoration: underline;
|
|
1963
|
+
}
|
|
1964
|
+
.list-row:hover .list-cell-partial-clickable {
|
|
1965
|
+
text-decoration: underline;
|
|
1966
|
+
}
|
|
1967
|
+
.list-row:hover .list-link {
|
|
1968
|
+
text-decoration: underline;
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
.list-row-highlight .list-cell,
|
|
1972
|
+
.list-cell-highlight {
|
|
1973
|
+
opacity: 1;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
/* ARROW FOR COLLAPSING AND EXPANDING */
|
|
1977
|
+
.list-cell-arrow {
|
|
1978
|
+
cursor: pointer;
|
|
1979
|
+
display: block;
|
|
1980
|
+
float: left;
|
|
1981
|
+
height: 30px;
|
|
1982
|
+
position: relative;
|
|
1983
|
+
width: 15px;
|
|
1984
|
+
}
|
|
1985
|
+
.list-cell-arrow::before {
|
|
1986
|
+
color: var(--base10);
|
|
1987
|
+
font-size: 75%;
|
|
1988
|
+
position: absolute;
|
|
1989
|
+
right: 5px;
|
|
1990
|
+
top: 0;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
/* cell expanding/collapsing */
|
|
1994
|
+
.list-cell-arrow-expanded,
|
|
1995
|
+
.list-cell-arrow-collapsed {
|
|
1996
|
+
cursor: pointer;
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
.list-cell-arrow-collapsed .list-cell-arrow::before {
|
|
2000
|
+
content: "▶";
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
.list-cell-arrow-expanded .list-cell-arrow::before {
|
|
2004
|
+
content: "▼";
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
.list-row-arrow-collapsed,
|
|
2008
|
+
.list-row-arrow-expanded {
|
|
2009
|
+
cursor: pointer;
|
|
2010
|
+
position: relative;
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
.list-row-arrow-collapsed .list-cell-arrow::before {
|
|
2014
|
+
content: "▶";
|
|
2015
|
+
}
|
|
2016
|
+
|
|
2017
|
+
.list-row-arrow-expanded .list-cell-arrow::before {
|
|
2018
|
+
content: "▼";
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.nav-title {
|
|
2022
|
+
color: var(--base09);
|
|
2023
|
+
cursor: default;
|
|
2024
|
+
font-size: 1.2rem;
|
|
2025
|
+
height: 22px;
|
|
2026
|
+
line-height: 22px;
|
|
2027
|
+
margin: 2px 0 0;
|
|
2028
|
+
overflow: hidden;
|
|
2029
|
+
padding: 0 var(--unit1);
|
|
2030
|
+
text-overflow: ellipsis;
|
|
2031
|
+
white-space: nowrap;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.nav ul {
|
|
2035
|
+
list-style-type: none;
|
|
2036
|
+
margin: 0;
|
|
2037
|
+
padding: 0;
|
|
2038
|
+
user-select: none;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
/**
|
|
2042
|
+
Nav Item
|
|
2043
|
+
===========
|
|
2044
|
+
Anchor tag
|
|
2045
|
+
*/
|
|
2046
|
+
.nav-item {
|
|
2047
|
+
align-items: center;
|
|
2048
|
+
color: var(--base15);
|
|
2049
|
+
cursor: default;
|
|
2050
|
+
display: flex;
|
|
2051
|
+
height: 24px;
|
|
2052
|
+
line-height: 24px;
|
|
2053
|
+
overflow: hidden;
|
|
2054
|
+
padding: 0 var(--unit1);
|
|
2055
|
+
text-decoration: none;
|
|
2056
|
+
text-overflow: ellipsis;
|
|
2057
|
+
white-space: nowrap;
|
|
2058
|
+
}
|
|
2059
|
+
.nav-item:focus {
|
|
2060
|
+
outline: none;
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
.nav-item.active {
|
|
2064
|
+
background: var(--focus);
|
|
2065
|
+
color: var(--focus-text);
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
.app.inactive .nav-item.active {
|
|
2069
|
+
background: var(--base06);
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
/**
|
|
2073
|
+
Nav Item Label
|
|
2074
|
+
===========
|
|
2075
|
+
Main text of Nav Item
|
|
2076
|
+
*/
|
|
2077
|
+
.nav-item-label {
|
|
2078
|
+
flex-grow: 1;
|
|
2079
|
+
font-size: 1.3rem;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
.nav-collapsed .nav-item-label,
|
|
2083
|
+
.nav-collapsed .nav-item .pill {
|
|
2084
|
+
display: none;
|
|
2085
|
+
}
|
|
2086
|
+
|
|
2087
|
+
.nav-item-icon {
|
|
2088
|
+
flex-shrink: 0;
|
|
2089
|
+
height: 22px;
|
|
2090
|
+
margin-right: 7px;
|
|
2091
|
+
width: 22px;
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.nav-icon-stroke {
|
|
2095
|
+
fill: var(--base12);
|
|
2096
|
+
}
|
|
2097
|
+
|
|
2098
|
+
.nav-item.active .nav-icon-stroke {
|
|
2099
|
+
fill: var(--focus-text);
|
|
2100
|
+
}
|
|
2101
|
+
|
|
2102
|
+
/* Custom navs */
|
|
2103
|
+
.nav-main .nav-item {
|
|
2104
|
+
height: 38px;
|
|
2105
|
+
line-height: 38px;
|
|
2106
|
+
padding-left: 12px;
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
.nav-main .pill {
|
|
2110
|
+
margin-right: var(--unit1);
|
|
2111
|
+
margin-left: var(--unit1);
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
.nav.nav-main .nav-title {
|
|
2115
|
+
padding-left: 14px;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
/* Flip path on Promises icon */
|
|
2119
|
+
.promises-icon-circle {
|
|
2120
|
+
transform: scaleX(-1);
|
|
2121
|
+
transform-origin: 18px;
|
|
2122
|
+
}
|
|
2123
|
+
|
|
2124
|
+
.navigation-submit-issue {
|
|
2125
|
+
grid-area: left;
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
.navigation-toggle {
|
|
2129
|
+
grid-area: right;
|
|
2130
|
+
}
|
|
2131
|
+
.navigation-toggle .svg-stroke {
|
|
2132
|
+
stroke: var(--base12);
|
|
2133
|
+
}
|
|
2134
|
+
.navigation-toggle .svg-fill {
|
|
2135
|
+
fill: var(--base12);
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
.nav-footer.nav-expanded {
|
|
2139
|
+
display: grid;
|
|
2140
|
+
grid-template: "left center right" 38px/auto 1fr auto;
|
|
2141
|
+
height: 38px;
|
|
2142
|
+
}
|
|
2143
|
+
|
|
2144
|
+
.nav-footer.nav-collapsed {
|
|
2145
|
+
display: grid;
|
|
2146
|
+
grid-template: "left" 32px "right" 32px;
|
|
2147
|
+
height: auto;
|
|
2148
|
+
}
|
|
2149
|
+
|
|
2150
|
+
.nav-overflow.nav-overflow-active {
|
|
2151
|
+
background-color: var(--focus);
|
|
2152
|
+
}
|
|
2153
|
+
.nav-overflow.nav-overflow-active .nav-icon-stroke {
|
|
2154
|
+
fill: var(--focus-text);
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
.nav-overflow select {
|
|
2158
|
+
height: 38px;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.pill {
|
|
2162
|
+
background: var(--pill-bg);
|
|
2163
|
+
border-radius: 8px;
|
|
2164
|
+
cursor: inherit;
|
|
2165
|
+
display: inline-block;
|
|
2166
|
+
font-family: var(--font-monospace);
|
|
2167
|
+
font-size: 1.2rem;
|
|
2168
|
+
line-height: 12px;
|
|
2169
|
+
margin: 0 2px;
|
|
2170
|
+
padding: 2px 6px;
|
|
2171
|
+
position: relative;
|
|
2172
|
+
vertical-align: middle;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
.active > .pill {
|
|
2176
|
+
background: var(--pill-bg-active);
|
|
2177
|
+
}
|
|
2178
|
+
|
|
2179
|
+
.pill-small {
|
|
2180
|
+
font-size: 1rem;
|
|
2181
|
+
padding: 2px 4px;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
.pill-text {
|
|
2185
|
+
font-family: var(--font-sans-serif);
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
.pill-blue {
|
|
2189
|
+
background: var(--focus);
|
|
2190
|
+
color: var(--focus-text);
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
.send-to-console {
|
|
2194
|
+
background: none;
|
|
2195
|
+
border: none;
|
|
2196
|
+
border-bottom: 1px solid transparent;
|
|
2197
|
+
color: var(--base15);
|
|
2198
|
+
cursor: pointer;
|
|
2199
|
+
margin: 0;
|
|
2200
|
+
outline: none;
|
|
2201
|
+
padding: 0;
|
|
2202
|
+
}
|
|
2203
|
+
.send-to-console svg {
|
|
2204
|
+
vertical-align: middle;
|
|
2205
|
+
}
|
|
2206
|
+
.send-to-console .send-chevron {
|
|
2207
|
+
fill: var(--focus);
|
|
2208
|
+
}
|
|
2209
|
+
.send-to-console .send-text {
|
|
2210
|
+
fill: var(--base12);
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2213
|
+
.send-to-console:hover {
|
|
2214
|
+
border-bottom-color: var(--focus);
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
.send-to-console:active {
|
|
2218
|
+
transform: translateY(1px);
|
|
2219
|
+
}
|
|
2220
|
+
|
|
2221
|
+
.send-to-console-chevron-only svg {
|
|
2222
|
+
position: relative;
|
|
2223
|
+
top: -1px;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
.goto-source {
|
|
2227
|
+
background: none;
|
|
2228
|
+
border: none;
|
|
2229
|
+
border-bottom: 1px solid transparent;
|
|
2230
|
+
color: var(--base15);
|
|
2231
|
+
cursor: pointer;
|
|
2232
|
+
margin: 0;
|
|
2233
|
+
outline: none;
|
|
2234
|
+
padding: 0;
|
|
2235
|
+
}
|
|
2236
|
+
.goto-source svg {
|
|
2237
|
+
vertical-align: middle;
|
|
2238
|
+
}
|
|
2239
|
+
.goto-source .send-chevron {
|
|
2240
|
+
fill: var(--focus);
|
|
2241
|
+
}
|
|
2242
|
+
.goto-source .send-text {
|
|
2243
|
+
fill: var(--base12);
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
.goto-source:hover {
|
|
2247
|
+
border-bottom-color: var(--focus);
|
|
2248
|
+
}
|
|
2249
|
+
|
|
2250
|
+
.goto-source:active {
|
|
2251
|
+
transform: translateY(1px);
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
.object-inspector-toggle.toolbar-icon-button {
|
|
2255
|
+
max-height: var(--toolbar-height);
|
|
2256
|
+
padding-inline: 6px;
|
|
2257
|
+
}
|
|
2258
|
+
|
|
2259
|
+
/**
|
|
2260
|
+
SPLIT
|
|
2261
|
+
=====
|
|
2262
|
+
Vertically split panels
|
|
2263
|
+
*/
|
|
2264
|
+
/* .split: The container for one or more panels */
|
|
2265
|
+
.split {
|
|
2266
|
+
inset: 0;
|
|
2267
|
+
display: flex;
|
|
2268
|
+
flex: auto;
|
|
2269
|
+
flex-direction: row;
|
|
2270
|
+
position: absolute;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
/* .split-panel: Contains a body, and optional header and footer elements */
|
|
2274
|
+
.split-panel {
|
|
2275
|
+
display: flex;
|
|
2276
|
+
flex: auto;
|
|
2277
|
+
flex-direction: column;
|
|
2278
|
+
position: relative;
|
|
2279
|
+
overflow: hidden;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.split-panel-hd,
|
|
2283
|
+
.split-panel-bd,
|
|
2284
|
+
.split-panel-ft {
|
|
2285
|
+
position: relative;
|
|
2286
|
+
}
|
|
2287
|
+
|
|
2288
|
+
.split-panel-hd,
|
|
2289
|
+
.split-panel-ft {
|
|
2290
|
+
border-color: var(--base03);
|
|
2291
|
+
box-sizing: border-box;
|
|
2292
|
+
display: flex;
|
|
2293
|
+
flex: none;
|
|
2294
|
+
flex-direction: column;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
.split-panel-hd {
|
|
2298
|
+
background: var(--base00);
|
|
2299
|
+
border-bottom-style: solid;
|
|
2300
|
+
border-bottom-width: 1px;
|
|
2301
|
+
min-height: 29px;
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
.split-panel-bd {
|
|
2305
|
+
background: var(--base00);
|
|
2306
|
+
flex: auto;
|
|
2307
|
+
overflow: scroll;
|
|
2308
|
+
max-width: 100%;
|
|
2309
|
+
width: auto;
|
|
2310
|
+
}
|
|
2311
|
+
|
|
2312
|
+
.split-panel-ft {
|
|
2313
|
+
background: var(--base01);
|
|
2314
|
+
border-top-style: solid;
|
|
2315
|
+
border-top-width: 1px;
|
|
2316
|
+
height: 23px;
|
|
2317
|
+
justify-content: center;
|
|
2318
|
+
}
|
|
2319
|
+
|
|
2320
|
+
.split-panel,
|
|
2321
|
+
.split-panel-bd {
|
|
2322
|
+
height: 100%;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
/* Custom panels */
|
|
2326
|
+
.split-panel-hd-row {
|
|
2327
|
+
flex-flow: row;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
.split-panel-sidebar-1 .split-panel-bd {
|
|
2331
|
+
background: var(--base01);
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
.split-panel-sidebar-2 .split-panel-bd {
|
|
2335
|
+
background: var(--base01);
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
/* Fix main list-view scrolling */
|
|
2339
|
+
.split-main > .split-panel > .split-panel-bd {
|
|
2340
|
+
overflow: hidden;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
.split-main > .split-panel-sidebar-1 > .split-panel-bd {
|
|
2344
|
+
overflow-y: auto;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
/* There is better ways to do this, but they create more complicated CSS */
|
|
2348
|
+
.split-panel-hd-row .spacer {
|
|
2349
|
+
flex: 1 1 100%;
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
:root {
|
|
2353
|
+
--toolbar-height: 28px;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
.toolbar {
|
|
2357
|
+
align-items: center;
|
|
2358
|
+
display: flex;
|
|
2359
|
+
flex-direction: row;
|
|
2360
|
+
min-height: var(--toolbar-height);
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
.toolbar > * {
|
|
2364
|
+
flex: none;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2367
|
+
.toolbar .send-to-console {
|
|
2368
|
+
margin-left: 5px;
|
|
2369
|
+
margin-right: 5px;
|
|
2370
|
+
}
|
|
2371
|
+
|
|
2372
|
+
.toolbar .goto-source {
|
|
2373
|
+
margin-left: 5px;
|
|
2374
|
+
margin-right: 5px;
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
.toolbar-checkbox {
|
|
2378
|
+
height: 100%;
|
|
2379
|
+
margin-left: 4px;
|
|
2380
|
+
margin-right: 4px;
|
|
2381
|
+
overflow: hidden;
|
|
2382
|
+
white-space: nowrap;
|
|
2383
|
+
}
|
|
2384
|
+
|
|
2385
|
+
.toolbar-checkbox label {
|
|
2386
|
+
display: block;
|
|
2387
|
+
height: 100%;
|
|
2388
|
+
line-height: var(--toolbar-height);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
.toolbar-checkbox input {
|
|
2392
|
+
margin: 0;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2395
|
+
/*
|
|
2396
|
+
if first item in toolbar, create extra clickable space
|
|
2397
|
+
*/
|
|
2398
|
+
.toolbar-checkbox:first-child {
|
|
2399
|
+
margin-left: 0;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
.toolbar-checkbox:first-child label {
|
|
2403
|
+
margin-left: 0;
|
|
2404
|
+
padding-left: 8px;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
.toolbar .divider {
|
|
2408
|
+
height: calc(var(--toolbar-height) - 10px);
|
|
2409
|
+
width: 1px;
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
.toolbar-icon-button {
|
|
2413
|
+
align-items: center;
|
|
2414
|
+
background: transparent;
|
|
2415
|
+
border: 0 transparent none;
|
|
2416
|
+
display: flex;
|
|
2417
|
+
height: var(--toolbar-height);
|
|
2418
|
+
margin-left: 2px;
|
|
2419
|
+
margin-right: 2px;
|
|
2420
|
+
padding: 0 2px;
|
|
2421
|
+
vertical-align: top;
|
|
2422
|
+
/* if first item in toolbar, create extra clickable space on left side */
|
|
2423
|
+
/*
|
|
2424
|
+
SVG colors
|
|
2425
|
+
*/
|
|
2426
|
+
/*
|
|
2427
|
+
Modifier:
|
|
2428
|
+
.active (highlighted)
|
|
2429
|
+
*/
|
|
2430
|
+
/*
|
|
2431
|
+
Modifier
|
|
2432
|
+
.disabled
|
|
2433
|
+
*/
|
|
2434
|
+
}
|
|
2435
|
+
.toolbar-icon-button:first-child {
|
|
2436
|
+
margin-left: 0;
|
|
2437
|
+
padding-left: 10px;
|
|
2438
|
+
}
|
|
2439
|
+
.toolbar-icon-button:focus {
|
|
2440
|
+
outline: none;
|
|
2441
|
+
}
|
|
2442
|
+
.toolbar-icon-button:active {
|
|
2443
|
+
transform: translate(1px, 1px);
|
|
2444
|
+
}
|
|
2445
|
+
.toolbar-icon-button .svg-stroke {
|
|
2446
|
+
stroke: var(--base11);
|
|
2447
|
+
}
|
|
2448
|
+
.toolbar-icon-button .svg-fill {
|
|
2449
|
+
fill: var(--base11);
|
|
2450
|
+
}
|
|
2451
|
+
.toolbar-icon-button:hover .svg-stroke {
|
|
2452
|
+
stroke: var(--base13);
|
|
2453
|
+
}
|
|
2454
|
+
.toolbar-icon-button:hover .svg-fill {
|
|
2455
|
+
fill: var(--base13);
|
|
2456
|
+
}
|
|
2457
|
+
.toolbar-icon-button.active .svg-stroke {
|
|
2458
|
+
stroke: var(--focus);
|
|
2459
|
+
}
|
|
2460
|
+
.toolbar-icon-button.active .svg-fill {
|
|
2461
|
+
fill: var(--focus);
|
|
2462
|
+
}
|
|
2463
|
+
.toolbar-icon-button.disabled {
|
|
2464
|
+
pointer-events: none;
|
|
2465
|
+
}
|
|
2466
|
+
.toolbar-icon-button.disabled:active {
|
|
2467
|
+
transform: none;
|
|
2468
|
+
}
|
|
2469
|
+
.toolbar-icon-button.disabled .svg-stroke {
|
|
2470
|
+
stroke: var(--base05);
|
|
2471
|
+
}
|
|
2472
|
+
.toolbar-icon-button.disabled .svg-fill {
|
|
2473
|
+
fill: var(--base05);
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.toolbar-radio {
|
|
2477
|
+
background: var(--base02);
|
|
2478
|
+
border: none;
|
|
2479
|
+
border-radius: 2px;
|
|
2480
|
+
color: var(--base14);
|
|
2481
|
+
cursor: default;
|
|
2482
|
+
display: inline-block;
|
|
2483
|
+
font-size: 1.2rem;
|
|
2484
|
+
line-height: 18px;
|
|
2485
|
+
margin-left: 2px;
|
|
2486
|
+
margin-right: 2px;
|
|
2487
|
+
padding: 0 6px;
|
|
2488
|
+
position: relative;
|
|
2489
|
+
vertical-align: middle;
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.toolbar-radio:active,
|
|
2493
|
+
.toolbar-radio:hover,
|
|
2494
|
+
.toolbar-radio:focus,
|
|
2495
|
+
.toolbar-radio.active {
|
|
2496
|
+
outline: none;
|
|
2497
|
+
}
|
|
2498
|
+
|
|
2499
|
+
.toolbar-radio-first {
|
|
2500
|
+
margin-left: 4px;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
.toolbar-radio-last {
|
|
2504
|
+
margin-right: 4px;
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
.toolbar-radio:hover {
|
|
2508
|
+
background: var(--base04);
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
.toolbar-radio:active {
|
|
2512
|
+
background: var(--base00);
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
.toolbar-radio.active {
|
|
2516
|
+
background: var(--focus);
|
|
2517
|
+
color: var(--focus-text);
|
|
2518
|
+
}
|
|
2519
|
+
|
|
2520
|
+
.toolbar-search input {
|
|
2521
|
+
border: 1px solid var(--base05);
|
|
2522
|
+
height: calc(var(--toolbar-height) - 7px);
|
|
2523
|
+
width: 175px;
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
.toolbar-search-clear-button {
|
|
2527
|
+
top: 3px;
|
|
2528
|
+
}
|
|
2529
|
+
.toolbar-search-clear-button svg path {
|
|
2530
|
+
fill: var(--base11);
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.warning {
|
|
2534
|
+
color: var(--warning-text);
|
|
1694
2535
|
}
|